Skip to content

Commit

Permalink
Correct grammatical accuracy and consistency in Arabic translations (#58
Browse files Browse the repository at this point in the history
)

Fix: Correct Arabic translations in LocaleAr class

Improved grammatical accuracy and consistency in Arabic messages.
Ensured proper usage of diacritics and verb forms.
  • Loading branch information
aleemElmozogi authored May 19, 2024
1 parent d3f4a09 commit 93b2970
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions lib/src/i18n/ar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,27 @@ class LocaleAr implements FormValidatorLocale {

@override
String minLength(String v, int n) =>
'يجب أن يكون عدد الأحرف على الأقل $n حروف';
'يجب أن يكون عدد الأحرف على الأقل $n حرفًا';

@override
String maxLength(String v, int n) =>
'يجب أن لا يزيد عدد الأحرف عن $n حرف';

'يجب ألا يزيد عدد الأحرف عن $n حرفًا';

@override
String email(String v) => 'برجاء إدخال عنوان بريد إلكتروني صحيح';
String email(String v) => 'يرجى إدخال عنوان بريد إلكتروني صحيح';

@override
String phoneNumber(String v) => 'برجاء إدخال رقم هاتف صحيح';
String phoneNumber(String v) => 'يرجى إدخال رقم هاتف صحيح';

@override
String required() => 'برجاء ملء هذه الخانة';
String required() => 'يرجى ملء هذه الخانة';

@override
String ip(String v) => 'برجاء إدخال عنوان IP صحيح';
String ip(String v) => 'يرجى إدخال عنوان IP صحيح';

@override
String ipv6(String v) => 'برجاء إدخال عنوان IPv6 صحيح';
String ipv6(String v) => 'يرجى إدخال عنوان IPv6 صحيح';

@override
String url(String v) => 'برجاء إدخال عنوان URL صحيح';
String url(String v) => 'يرجى إدخال عنوان URL صحيح';
}

0 comments on commit 93b2970

Please sign in to comment.