fixed that libra gets translated to arabic instead of keeping it as its a brand name

This commit is contained in:
Naser Mansour 2026-01-11 21:08:36 +02:00
parent 366cc1ed44
commit ceb2985f16
2 changed files with 2 additions and 2 deletions

View File

@ -9,5 +9,5 @@ return [
'legal' => 'قانوني', 'legal' => 'قانوني',
'terms' => 'شروط الخدمة', 'terms' => 'شروط الخدمة',
'privacy' => 'سياسة الخصوصية', 'privacy' => 'سياسة الخصوصية',
'copyright' => 'مكتب الميزان للمحاماة. جميع الحقوق محفوظة.', 'copyright' => 'مكتب ليبرا للمحاماة. جميع الحقوق محفوظة.',
]; ];

View File

@ -228,7 +228,7 @@ describe('Footer Translations', function () {
test('Arabic footer translations are loaded', function () { test('Arabic footer translations are loaded', function () {
expect(__('footer.terms', [], 'ar'))->toBe('شروط الخدمة'); expect(__('footer.terms', [], 'ar'))->toBe('شروط الخدمة');
expect(__('footer.privacy', [], 'ar'))->toBe('سياسة الخصوصية'); expect(__('footer.privacy', [], 'ar'))->toBe('سياسة الخصوصية');
expect(__('footer.copyright', [], 'ar'))->toBe('مكتب الميزان للمحاماة. جميع الحقوق محفوظة.'); expect(__('footer.copyright', [], 'ar'))->toBe('مكتب ليبرا للمحاماة. جميع الحقوق محفوظة.');
expect(__('footer.address', [], 'ar'))->toBe('العمارة الأمريكية - بجانب الشني - الطابق الرابع'); expect(__('footer.address', [], 'ar'))->toBe('العمارة الأمريكية - بجانب الشني - الطابق الرابع');
expect(__('footer.phone', [], 'ar'))->toBe('+970 599 353 502'); expect(__('footer.phone', [], 'ar'))->toBe('+970 599 353 502');
}); });