Fixed both issues
This commit is contained in:
@@ -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.') === 'تصفح القنوات النشطة حسب الفئة أو العنوان.')
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user