Added translation

This commit is contained in:
2026-05-18 01:04:52 +03:30
parent 762110dcec
commit e4ee983393
5 changed files with 8 additions and 0 deletions

View File

@@ -66,6 +66,7 @@
"Clear search or switch categories.": "امسح البحث أو بدّل الفئات.", "Clear search or switch categories.": "امسح البحث أو بدّل الفئات.",
"Click here to resend the verification email.": "انقر هنا لإعادة إرسال بريد التحقق.", "Click here to resend the verification email.": "انقر هنا لإعادة إرسال بريد التحقق.",
"Close": "إغلاق", "Close": "إغلاق",
"Closed": "مغلق",
"Confirm": "تأكيد", "Confirm": "تأكيد",
"Confirm password": "تأكيد كلمة المرور", "Confirm password": "تأكيد كلمة المرور",
"Confirm your password": "أكد كلمة المرور", "Confirm your password": "أكد كلمة المرور",

View File

@@ -66,6 +66,7 @@
"Clear search or switch categories.": "Clear search or switch categories.", "Clear search or switch categories.": "Clear search or switch categories.",
"Click here to resend the verification email.": "Click here to resend the verification email.", "Click here to resend the verification email.": "Click here to resend the verification email.",
"Close": "Close", "Close": "Close",
"Closed": "Closed",
"Confirm": "Confirm", "Confirm": "Confirm",
"Confirm password": "Confirm password", "Confirm password": "Confirm password",
"Confirm your password": "Confirm your password", "Confirm your password": "Confirm your password",

View File

@@ -66,6 +66,7 @@
"Clear search or switch categories.": "Borra la búsqueda o cambia de categoría.", "Clear search or switch categories.": "Borra la búsqueda o cambia de categoría.",
"Click here to resend the verification email.": "Haz clic aquí para reenviar el correo de verificación.", "Click here to resend the verification email.": "Haz clic aquí para reenviar el correo de verificación.",
"Close": "Cerrar", "Close": "Cerrar",
"Closed": "Cerrado",
"Confirm": "Confirmar", "Confirm": "Confirmar",
"Confirm password": "Confirmar contraseña", "Confirm password": "Confirmar contraseña",
"Confirm your password": "Confirma tu contraseña", "Confirm your password": "Confirma tu contraseña",

View File

@@ -66,6 +66,7 @@
"Clear search or switch categories.": "جستجو را پاک کنید یا دسته‌بندی را تغییر دهید.", "Clear search or switch categories.": "جستجو را پاک کنید یا دسته‌بندی را تغییر دهید.",
"Click here to resend the verification email.": "برای ارسال دوباره ایمیل تأیید اینجا کلیک کنید.", "Click here to resend the verification email.": "برای ارسال دوباره ایمیل تأیید اینجا کلیک کنید.",
"Close": "بستن", "Close": "بستن",
"Closed": "بسته",
"Confirm": "تأیید", "Confirm": "تأیید",
"Confirm password": "تأیید رمز عبور", "Confirm password": "تأیید رمز عبور",
"Confirm your password": "رمز عبور خود را تأیید کنید", "Confirm your password": "رمز عبور خود را تأیید کنید",

View File

@@ -20,6 +20,7 @@ class LocalizationTest extends TestCase
->where('fallbackLocale', config('app.fallback_locale')) ->where('fallbackLocale', config('app.fallback_locale'))
->where('translations.Live', __('Live')) ->where('translations.Live', __('Live'))
->where('translations.Password', __('Password')) ->where('translations.Password', __('Password'))
->where('translations.Closed', __('Closed'))
->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === __('Browse active channels by category or title.')) ->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === __('Browse active channels by category or title.'))
); );
} }
@@ -36,6 +37,7 @@ class LocalizationTest extends TestCase
->where('fallbackLocale', config('app.fallback_locale')) ->where('fallbackLocale', config('app.fallback_locale'))
->where('translations.Live', 'En vivo') ->where('translations.Live', 'En vivo')
->where('translations.Password', 'Contraseña') ->where('translations.Password', 'Contraseña')
->where('translations.Closed', 'Cerrado')
->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === 'Explora canales activos por categoría o título.') ->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === 'Explora canales activos por categoría o título.')
); );
} }
@@ -52,6 +54,7 @@ class LocalizationTest extends TestCase
->where('fallbackLocale', config('app.fallback_locale')) ->where('fallbackLocale', config('app.fallback_locale'))
->where('translations.Live', 'زنده') ->where('translations.Live', 'زنده')
->where('translations.Password', 'رمز عبور') ->where('translations.Password', 'رمز عبور')
->where('translations.Closed', 'بسته')
->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === 'کانال‌های فعال را بر اساس دسته‌بندی یا عنوان مرور کنید.') ->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === 'کانال‌های فعال را بر اساس دسته‌بندی یا عنوان مرور کنید.')
); );
} }
@@ -68,6 +71,7 @@ class LocalizationTest extends TestCase
->where('fallbackLocale', config('app.fallback_locale')) ->where('fallbackLocale', config('app.fallback_locale'))
->where('translations.Live', 'مباشر') ->where('translations.Live', 'مباشر')
->where('translations.Password', 'كلمة المرور') ->where('translations.Password', 'كلمة المرور')
->where('translations.Closed', 'مغلق')
->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === 'تصفح القنوات النشطة حسب الفئة أو العنوان.') ->where('translations', fn ($translations) => $translations->get('Browse active channels by category or title.') === 'تصفح القنوات النشطة حسب الفئة أو العنوان.')
); );
} }