From ceb2985f16deccc0c344fd9c7a0319da6cb92f5b Mon Sep 17 00:00:00 2001 From: Naser Mansour Date: Sun, 11 Jan 2026 21:08:36 +0200 Subject: [PATCH] fixed that libra gets translated to arabic instead of keeping it as its a brand name --- lang/ar/footer.php | 2 +- tests/Feature/NavigationTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/ar/footer.php b/lang/ar/footer.php index 8ac9b1b..0fb6a2e 100644 --- a/lang/ar/footer.php +++ b/lang/ar/footer.php @@ -9,5 +9,5 @@ return [ 'legal' => 'قانوني', 'terms' => 'شروط الخدمة', 'privacy' => 'سياسة الخصوصية', - 'copyright' => 'مكتب الميزان للمحاماة. جميع الحقوق محفوظة.', + 'copyright' => 'مكتب ليبرا للمحاماة. جميع الحقوق محفوظة.', ]; diff --git a/tests/Feature/NavigationTest.php b/tests/Feature/NavigationTest.php index e487e67..ff7dfd5 100644 --- a/tests/Feature/NavigationTest.php +++ b/tests/Feature/NavigationTest.php @@ -228,7 +228,7 @@ describe('Footer Translations', function () { test('Arabic footer translations are loaded', function () { expect(__('footer.terms', [], 'ar'))->toBe('شروط الخدمة'); expect(__('footer.privacy', [], 'ar'))->toBe('سياسة الخصوصية'); - expect(__('footer.copyright', [], 'ar'))->toBe('مكتب الميزان للمحاماة. جميع الحقوق محفوظة.'); + expect(__('footer.copyright', [], 'ar'))->toBe('مكتب ليبرا للمحاماة. جميع الحقوق محفوظة.'); expect(__('footer.address', [], 'ar'))->toBe('العمارة الأمريكية - بجانب الشني - الطابق الرابع'); expect(__('footer.phone', [], 'ar'))->toBe('+970 599 353 502'); });