Skip to content

Commit a0e42e4

Browse files
committed
1.4.5 Greek Locale
1 parent f74df7d commit a0e42e4

23 files changed

+77
-24
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "simple-react-validator",
33
"description": "A simple react form validator inspired by Laravel validation.",
44
"main": "dist/simple-react-validator.min.js",
5-
"version": "1.4.4",
5+
"version": "1.4.5",
66
"authors": [
77
"Stuart Yamartino"
88
],

dist/locale/el.js

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
// Simple React Validator v1.4.5 | Created By Dockwa | MIT License | 2017 - Present
2+
;(function(root, factory) {
3+
if (typeof define === 'function' && define.amd) {
4+
define(['simple-react-validator'], factory);
5+
} else if (typeof exports === 'object') {
6+
module.exports = factory(require('simple-react-validator'));
7+
} else {
8+
root.SimpleReactValidatorLocaleEl = factory(root.SimpleReactValidator);
9+
}
10+
}(this, function(SimpleReactValidator) {
11+
"use strict";
12+
13+
// Greek
14+
SimpleReactValidator.addLocale('el', {
15+
accepted: 'Πρέπει να αποδεχετείτε το πεδίο :attribute',
16+
after: 'Η ημ/νία :attribute πρέπει να είναι μετά από :date.',
17+
after_or_equal: 'Η ημ/νία :attribute πρέπει να είναι ίση με ή μετά από :date.',
18+
alpha: 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα',
19+
alpha_space: 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα και κενά.',
20+
alpha_num: 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα και αριθμούς.',
21+
alpha_num_space: 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα, κενά και αριθμούς.',
22+
alpha_num_dash: 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα, κενά και παύλες(-).',
23+
alpha_num_dash_space: 'Το πεδίο :attribute μπορεί να περιέχει μόνο αριθμούς, κενά και παύλες(-).',
24+
array: 'Το πεδίο :attribute πρέπει να είναι array.',
25+
before: 'Η ημ/νία πρέπει να είναι πριν από :date.',
26+
before_or_equal: 'Η ημ/νία πρέπει να είναι πριν ή ίση με :date.',
27+
between: 'Η τιμή του πεδίου :attribute πρέπει να βρίσκεται ανάμεσα από :min - :max:type.',
28+
"boolean": 'Το πεδίο :attribute πρέπει να είναι boolean',
29+
card_exp: 'To πεδίο :attribute πρέπει να είναι μια έγκυρη ημ/νία.',
30+
card_num: 'Το πεδίο :attribute πρέπει να είναι ένας έγκυρος αριθμός κάρτας.',
31+
currency: 'Το πεδίο :attribute πρέπει να έιναι ένα έγκυρο ποσό',
32+
date: 'Το πεδίο :attribute πρέπει να είναι μια έγκυρη ημ/νία.',
33+
date_equals: 'Η ημ/νία :attribute πρέπει να είναι ίδια με :date.',
34+
email: 'Το πεδίο :attribute πρέπει να είναι ένα έγκυρο email.',
35+
"in": 'To πεδίο :attribute πρέπει να περιέχει τις τιμές :values.',
36+
integer: 'Το πεδίο :attribute πρέπει να είναι ένας ακέραιος αριθμός.',
37+
max: 'Η τιμή του πεδίου :attribute δεν μπορεί να είναι μεγαλύτερη απο :max:type.',
38+
min: 'Η τιμή του πεδίου :attribute πρέπει να είναι τουλάχιστον :min:type.',
39+
not_in: 'Η επιλεγμένη τιμή :attribute δεν πρέπει να περιέχει :values.',
40+
not_regex: 'Η τιμή :attribute δεν πρέπει να ταιριάζει με το υπόδειγμα.',
41+
numeric: 'Η τιμή :attribute πρέπει να είναι αριθμός.',
42+
phone: 'Το πεδίο :attribute πρέπει να είναι ένας έγκυρος τηλεφωνικός αριθμός.',
43+
regex: 'Η τιμή του πεδίου :attribute πρέπει να ταιριάζει στο υπόδειγμα.',
44+
required: 'Το πεδίο :attribute είναι υποχρεωτικό.',
45+
size: 'Η τιμή του πεδίου :attribute πρέπει να ισούται με :size:type.',
46+
string: 'Ο τύπος του πεδίου :attribute πρέπει να ειναι string',
47+
"typeof": 'Η τιμή του πεδίου :attribute δεν ταιρίαζει με τον τύπο :type.',
48+
url: 'Η τιμή του πεδίου :attribute πρέπει να είναι της μορφής λινκ(url).'
49+
});
50+
return null;
51+
}));

dist/locale/es.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Simple React Validator v1.4.4 | Created By Dockwa | MIT License | 2017 - Present
1+
// Simple React Validator v1.4.5 | Created By Dockwa | MIT License | 2017 - Present
22
;(function(root, factory) {
33
if (typeof define === 'function' && define.amd) {
44
define(['simple-react-validator'], factory);

dist/locale/fa.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Simple React Validator v1.4.4 | Created By Dockwa | MIT License | 2017 - Present
1+
// Simple React Validator v1.4.5 | Created By Dockwa | MIT License | 2017 - Present
22
;(function(root, factory) {
33
if (typeof define === 'function' && define.amd) {
44
define(['simple-react-validator'], factory);

dist/locale/fr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Simple React Validator v1.4.4 | Created By Dockwa | MIT License | 2017 - Present
1+
// Simple React Validator v1.4.5 | Created By Dockwa | MIT License | 2017 - Present
22
;(function(root, factory) {
33
if (typeof define === 'function' && define.amd) {
44
define(['simple-react-validator'], factory);

dist/locale/id.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Simple React Validator v1.4.4 | Created By Dockwa | MIT License | 2017 - Present
1+
// Simple React Validator v1.4.5 | Created By Dockwa | MIT License | 2017 - Present
22
;(function(root, factory) {
33
if (typeof define === 'function' && define.amd) {
44
define(['simple-react-validator'], factory);

dist/locale/min/el.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locale/min/es.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locale/min/fa.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locale/min/fr.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locale/min/id.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)