Fixed both issues

This commit is contained in:
2026-05-18 01:01:25 +03:30
parent d9e49e124c
commit 762110dcec
8 changed files with 12 additions and 4 deletions

View File

@@ -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.') === 'تصفح القنوات النشطة حسب الفئة أو العنوان.')
);
}