forked from guillaumepotier/Parsley.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
yasuhiro.sakamoto
committed
May 6, 2022
1 parent
7975796
commit 102408d
Showing
10 changed files
with
159 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Validation errors messages for Parsley | ||
// Load this after Parsley | ||
|
||
Parsley.addMessages('hu', { | ||
dateiso: "A mező értéke csak érvényes dátum lehet (YYYY-MM-DD).", | ||
minwords: "Minimum %s szó megadása szükséges.", | ||
maxwords: "Maximum %s szó megadása engedélyezett.", | ||
words: "Minimum %s, maximum %s szó megadása szükséges.", | ||
gt: "A mező értéke nagyobb kell legyen.", | ||
gte: "A mező értéke nagyobb vagy egyenlő kell legyen.", | ||
lt: "A mező értéke kevesebb kell legyen.", | ||
lte: "A mező értéke kevesebb vagy egyenlő kell legyen.", | ||
notequalto: "Az érték különböző kell legyen." | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// This is included with the Parsley library itself, | ||
// thus there is no use in adding it to your project. | ||
|
||
|
||
Parsley.addMessages('hu', { | ||
defaultMessage: "Érvénytelen mező.", | ||
type: { | ||
email: "Érvénytelen email cím.", | ||
url: "Érvénytelen URL cím.", | ||
number: "Érvénytelen szám.", | ||
integer: "Érvénytelen egész szám.", | ||
digits: "Érvénytelen szám.", | ||
alphanum: "Érvénytelen alfanumerikus érték." | ||
}, | ||
notblank: "Ez a mező nem maradhat üresen.", | ||
required: "A mező kitöltése kötelező.", | ||
pattern: "Érvénytelen érték.", | ||
min: "A mező értéke nagyobb vagy egyenlő kell legyen mint %s.", | ||
max: "A mező értéke kisebb vagy egyenlő kell legyen mint %s.", | ||
range: "A mező értéke %s és %s közé kell essen.", | ||
minlength: "Legalább %s karakter megadása szükséges.", | ||
maxlength: "Legfeljebb %s karakter megadása engedélyezett.", | ||
length: "Nem megfelelő karakterszám. Minimum %s, maximum %s karakter adható meg.", | ||
mincheck: "Legalább %s értéket kell kiválasztani.", | ||
maxcheck: "Maximum %s értéket lehet kiválasztani.", | ||
check: "Legalább %s, legfeljebb %s értéket kell kiválasztani.", | ||
equalto: "A mező értéke nem egyező." | ||
}); | ||
|
||
Parsley.setLocale('hu'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Validation errors messages for Parsley | ||
// Load this after Parsley | ||
|
||
Parsley.addMessages('sl', { | ||
dateiso: "Vnesite datum v ISO obliki (YYYY-MM-DD).", | ||
minwords: "Vpis je prekratek. Vpisati morate najmnaj %s besed.", | ||
maxwords: "Vpis je predolg. Vpišete lahko največ %s besed.", | ||
words: "Dolžina vpisa je napačna. Dolžina je lahko samo med %s in %s besed.", | ||
gt: "Vpisani podatek mora biti večji.", | ||
gte: "Vpisani podatek mora biti enak ali večji.", | ||
lt: "Vpisani podatek mora biti manjši.", | ||
lte: "Vpisani podatek mora biti enak ali manjši.", | ||
notequalto: "Vpisana vrednost mora biti drugačna." | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// This is included with the Parsley library itself, | ||
// thus there is no use in adding it to your project. | ||
|
||
|
||
Parsley.addMessages('sl', { | ||
defaultMessage: "Podatek ne ustreza vpisnim kriterijem.", | ||
type: { | ||
email: "Vpišite pravilen email.", | ||
url: "Vpišite pravilen url naslov.", | ||
number: "Vpišite številko.", | ||
integer: "Vpišite celo število brez decimalnih mest.", | ||
digits: "Vpišite samo cifre.", | ||
alphanum: "Vpišite samo alfanumerične znake (cifre in črke)." | ||
}, | ||
notblank: "To polje ne sme biti prazno.", | ||
required: "To polje je obvezno.", | ||
pattern: "Podatek ne ustreza vpisnim kriterijem.", | ||
min: "Vrednost mora biti višja ali enaka kot %s.", | ||
max: "Vrednost mora biti nižja ali enaka kot %s.", | ||
range: "Vrednost mora biti med %s in %s.", | ||
minlength: "Vpis je prekratek. Mora imeti najmanj %s znakov.", | ||
maxlength: "Vpis je predolg. Lahko ima največ %s znakov.", | ||
length: "Število vpisanih znakov je napačno. Število znakov je lahko samo med %s in %s.", | ||
mincheck: "Izbrati morate vsaj %s možnosti.", | ||
maxcheck: "Izberete lahko največ %s možnosti.", | ||
check: "Število izbranih možnosti je lahko samo med %s in %s.", | ||
equalto: "Vnos mora biti enak." | ||
}); | ||
|
||
Parsley.setLocale('sl'); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.