fix: update current duty display text for improved clarity
Some checks failed
CI / lint-and-test (push) Failing after 27s

- Changed the displayed text for current duty from "Текущее дежурство" to "Сейчас дежурит" to enhance user understanding.
- This update aligns with the recent efforts to unify language handling across the application.
This commit is contained in:
2026-03-03 00:12:04 +03:00
parent 70b9050cb7
commit 2de5c1cb81

View File

@@ -110,7 +110,7 @@ describe("currentDuty", () => {
}; };
const html = renderCurrentDutyContent(duty, "ru"); const html = renderCurrentDutyContent(duty, "ru");
expect(html).toContain("current-duty-live-dot"); expect(html).toContain("current-duty-live-dot");
expect(html).toContain("Текущее дежурство"); expect(html).toContain("Сейчас дежурит");
expect(html).toContain("Иванов Иван"); expect(html).toContain("Иванов Иван");
expect(html).toContain("Смена"); expect(html).toContain("Смена");
expect(html).toContain("current-duty-remaining"); expect(html).toContain("current-duty-remaining");