Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Correct grammatical accuracy and consistency in Arabic translations #58

Merged
merged 1 commit into from
May 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 صحيح';
}
Loading