From 65063621a92880110744ae670ca5423265145087 Mon Sep 17 00:00:00 2001 From: Ilia Denisov Date: Thu, 2 Jul 2026 00:29:38 +0200 Subject: [PATCH] fix: landing smoke test --- ui/e2e/landing.spec.ts | 2 +- ui/src/lib/i18n/ru.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/e2e/landing.spec.ts b/ui/e2e/landing.spec.ts index 085cbda..d6177ad 100644 --- a/ui/e2e/landing.spec.ts +++ b/ui/e2e/landing.spec.ts @@ -11,7 +11,7 @@ test('landing shows the pitch, switches language via the dropdown, and toggles t // The language dropdown switches the copy to Russian. await page.getByRole('button', { name: 'Language' }).click(); await page.getByRole('menuitem', { name: /Русский/ }).click(); - await expect(page.getByText(/Играй в Скрэббл/)).toBeVisible(); + await expect(page.getByText(/Играй в «Эрудита»/)).toBeVisible(); // The theme toggle flips the document theme (ephemeral, light<->dark). const before = await page.evaluate(() => document.documentElement.getAttribute('data-theme')); diff --git a/ui/src/lib/i18n/ru.ts b/ui/src/lib/i18n/ru.ts index 511b166..10f2850 100644 --- a/ui/src/lib/i18n/ru.ts +++ b/ui/src/lib/i18n/ru.ts @@ -203,7 +203,7 @@ export const ru: Record = { 'feedback.banned': 'Отправка обратной связи недоступна', 'feedback.replyTitle': 'Ответ на ваше последнее сообщение', - 'landing.tagline': 'Играй в «Эрудит» с друзьями, случайным соперником или ИИ-роботом.', + 'landing.tagline': 'Играй в «Эрудита» с друзьями, случайным соперником или ИИ-роботом.', 'landing.playTelegram': 'Играть в Telegram', 'landing.playVK': 'Играть во ВКонтакте',