diff --git a/lang/ar.json b/lang/ar.json index 58e4e74..fa4b936 100644 --- a/lang/ar.json +++ b/lang/ar.json @@ -33,6 +33,7 @@ "Authentication code": "رمز المصادقة", "Avatar": "الصورة الرمزية", "Back": "رجوع", + "Browse active channels by category or title.": "تصفح القنوات النشطة حسب الفئة أو العنوان.", "Broadcast ended.": "انتهى البث.", "Broadcast is ready. Start streaming from OBS.": "البث جاهز. ابدأ البث من OBS.", "Broadcast prep": "تحضير البث", diff --git a/lang/en.json b/lang/en.json index f5fe549..21149c7 100644 --- a/lang/en.json +++ b/lang/en.json @@ -33,6 +33,7 @@ "Authentication code": "Authentication code", "Avatar": "Avatar", "Back": "Back", + "Browse active channels by category or title.": "Browse active channels by category or title.", "Broadcast ended.": "Broadcast ended.", "Broadcast is ready. Start streaming from OBS.": "Broadcast is ready. Start streaming from OBS.", "Broadcast prep": "Broadcast prep", diff --git a/lang/es.json b/lang/es.json index 08fc3cb..4dabb7d 100644 --- a/lang/es.json +++ b/lang/es.json @@ -33,6 +33,7 @@ "Authentication code": "Código de autenticación", "Avatar": "Avatar", "Back": "Volver", + "Browse active channels by category or title.": "Explora canales activos por categoría o título.", "Broadcast ended.": "La transmisión terminó.", "Broadcast is ready. Start streaming from OBS.": "La transmisión está lista. Empieza a transmitir desde OBS.", "Broadcast prep": "Preparación de transmisión", diff --git a/lang/fa.json b/lang/fa.json index 40c3eca..22a3472 100644 --- a/lang/fa.json +++ b/lang/fa.json @@ -33,6 +33,7 @@ "Authentication code": "کد احراز هویت", "Avatar": "آواتار", "Back": "بازگشت", + "Browse active channels by category or title.": "کانال‌های فعال را بر اساس دسته‌بندی یا عنوان مرور کنید.", "Broadcast ended.": "پخش پایان یافت.", "Broadcast is ready. Start streaming from OBS.": "پخش آماده است. از OBS شروع به پخش کنید.", "Broadcast prep": "آماده‌سازی پخش", diff --git a/resources/js/components/app-header.tsx b/resources/js/components/app-header.tsx index d38d6f3..ace4b27 100644 --- a/resources/js/components/app-header.tsx +++ b/resources/js/components/app-header.tsx @@ -70,7 +70,7 @@ export function AppHeader({ breadcrumbs = [] }: Props) { icon: LayoutGrid, }, { - title: 'Contact', + title: 'Contact admin', href: supportIndex(), icon: LifeBuoy, }, diff --git a/resources/js/components/app-sidebar.tsx b/resources/js/components/app-sidebar.tsx index ffee8b5..601cd1e 100644 --- a/resources/js/components/app-sidebar.tsx +++ b/resources/js/components/app-sidebar.tsx @@ -32,7 +32,7 @@ export function AppSidebar() { icon: LayoutGrid, }, { - title: 'Contact', + title: 'Contact admin', href: supportIndex(), icon: LifeBuoy, }, diff --git a/resources/js/pages/welcome.tsx b/resources/js/pages/welcome.tsx index 371e2a8..fc3543f 100644 --- a/resources/js/pages/welcome.tsx +++ b/resources/js/pages/welcome.tsx @@ -90,7 +90,7 @@ export default function Welcome({ href={supportIndex()} className="rounded-md px-3 py-2 hover:bg-accent hover:text-accent-foreground" > - {t('Contact')} + {t('Contact admin')} )} @@ -108,7 +108,7 @@ export default function Welcome({ diff --git a/tests/Feature/LocalizationTest.php b/tests/Feature/LocalizationTest.php index 3b66f46..07a14cd 100644 --- a/tests/Feature/LocalizationTest.php +++ b/tests/Feature/LocalizationTest.php @@ -20,6 +20,7 @@ class LocalizationTest extends TestCase ->where('fallbackLocale', config('app.fallback_locale')) ->where('translations.Live', __('Live')) ->where('translations.Password', __('Password')) + ->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === __('Browse active channels by category or title.')) ); } @@ -35,6 +36,7 @@ class LocalizationTest extends TestCase ->where('fallbackLocale', config('app.fallback_locale')) ->where('translations.Live', 'En vivo') ->where('translations.Password', 'Contraseña') + ->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === 'Explora canales activos por categoría o título.') ); } @@ -50,6 +52,7 @@ class LocalizationTest extends TestCase ->where('fallbackLocale', config('app.fallback_locale')) ->where('translations.Live', 'زنده') ->where('translations.Password', 'رمز عبور') + ->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === 'کانال‌های فعال را بر اساس دسته‌بندی یا عنوان مرور کنید.') ); } @@ -65,6 +68,7 @@ class LocalizationTest extends TestCase ->where('fallbackLocale', config('app.fallback_locale')) ->where('translations.Live', 'مباشر') ->where('translations.Password', 'كلمة المرور') + ->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === 'تصفح القنوات النشطة حسب الفئة أو العنوان.') ); }