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

added Greek locale #203

Merged
merged 2 commits into from
Feb 21, 2020
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
37 changes: 37 additions & 0 deletions src/locale/el.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
// Greek
SimpleReactValidator.addLocale('el', {
accepted : 'Πρέπει να αποδεχετείτε το πεδίο :attribute',
after : 'Η ημ/νία :attribute πρέπει να είναι μετά από :date.',
after_or_equal : 'Η ημ/νία :attribute πρέπει να είναι ίση με ή μετά από :date.',
alpha : 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα',
alpha_space : 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα και κενά.',
alpha_num : 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα και αριθμούς.',
alpha_num_space : 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα, κενά και αριθμούς.',
alpha_num_dash : 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα, κενά και παύλες(-).',
alpha_num_dash_space : 'Το πεδίο :attribute μπορεί να περιέχει μόνο αριθμούς, κενά και παύλες(-).',
array : 'Το πεδίο :attribute πρέπει να είναι array.',
before : 'Η ημ/νία πρέπει να είναι πριν από :date.',
before_or_equal : 'Η ημ/νία πρέπει να είναι πριν ή ίση με :date.',
between : 'Η τιμή του πεδίου :attribute πρέπει να βρίσκεται ανάμεσα από :min - :max:type.',
boolean : 'Το πεδίο :attribute πρέπει να είναι boolean',
card_exp : 'To πεδίο :attribute πρέπει να είναι μια έγκυρη ημ/νία.',
card_num : 'Το πεδίο :attribute πρέπει να είναι ένας έγκυρος αριθμός κάρτας.',
currency : 'Το πεδίο :attribute πρέπει να έιναι ένα έγκυρο ποσό',
date : 'Το πεδίο :attribute πρέπει να είναι μια έγκυρη ημ/νία.',
date_equals : 'Η ημ/νία :attribute πρέπει να είναι ίδια με :date.',
email : 'Το πεδίο :attribute πρέπει να είναι ένα έγκυρο email.',
in : 'To πεδίο :attribute πρέπει να περιέχει τις τιμές :values.',
integer : 'Το πεδίο :attribute πρέπει να είναι ένας ακέραιος αριθμός.',
max : 'Η τιμή του πεδίου :attribute δεν μπορεί να είναι μεγαλύτερη απο :max:type.',
min : 'Η τιμή του πεδίου :attribute πρέπει να είναι τουλάχιστον :min:type.',
not_in : 'Η επιλεγμένη τιμή :attribute δεν πρέπει να περιέχει :values.',
not_regex : 'Η τιμή :attribute δεν πρέπει να ταιριάζει με το υπόδειγμα.',
numeric : 'Η τιμή :attribute πρέπει να είναι αριθμός.',
phone : 'Το πεδίο :attribute πρέπει να είναι ένας έγκυρος τηλεφωνικός αριθμός.',
regex : 'Η τιμή του πεδίου :attribute πρέπει να ταιριάζει στο υπόδειγμα.',
required : 'Το πεδίο :attribute είναι υποχρεωτικό.',
size : 'Η τιμή του πεδίου :attribute πρέπει να ισούται με :size:type.',
string : 'Ο τύπος του πεδίου :attribute πρέπει να ειναι string',
typeof : 'Η τιμή του πεδίου :attribute δεν ταιρίαζει με τον τύπο :type.',
url : 'Η τιμή του πεδίου :attribute πρέπει να είναι της μορφής λινκ(url).',
});