Skip to content

Commit

Permalink
Added support for AR (generic) (#52)
Browse files Browse the repository at this point in the history
Please note that AR has multiple sub-genres, but this should work for a generic variation of this form.
  • Loading branch information
pklreak authored Dec 23, 2022
1 parent 8d778d7 commit f4641d0
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions lib/src/i18n/ar.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import '../locale.dart';

class LocaleAr implements FormValidatorLocale {
const LocaleAr();

@override
String name() => 'ar';

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

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


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

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

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

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

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

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

0 comments on commit f4641d0

Please sign in to comment.