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

Fixed line endings of "Localization/el-GR.js". #1

Merged
merged 1 commit into from
Dec 3, 2012
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
76 changes: 38 additions & 38 deletions Localization/el-GR.js
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
/// <reference path="../Src/knockout.validation.js" />
/************************************************
* This is an example localization page. All of these
* messages are the default messages for ko.validation
*
* Currently ko.validation only does a single parameter replacement
* on your message (indicated by the {0}).
*
* The parameter that you provide in your validation extender
* is what is passed to your message to do the {0} replacement.
*
* eg: myProperty.extend({ minLength: 5 });
* ... will provide a message of "Please enter at least 5 characters"
* when validated
*
* This message replacement obviously only works with primitives
* such as numbers and strings. We do not stringify complex objects
* or anything like that currently.
*/
ko.validation.localize({
required: 'Το πεδίο αυτό είναι υποχρεωτικό.',
min: 'Παρακαλώ εισάγετε μια τιμή μεγαλύτερη ή ίση από {0}.',
max: 'Παρακαλώ εισάγετε μια τιμή μικρότερη ή ίση από {0}.',
minLength: 'Παρακαλώ εισάγετε τουλάχιστον {0} χαρακτήρες.',
maxLength: 'Παρακαλώ εισάγετε το πολύ {0} χαρακτήρες.',
pattern: 'Παρακαλώ ελέγξτε την τιμή αυτή.',
step: 'Η τιμή πρέπει να αυξηθεί κατά {0}',
email: 'Η διεύθυνση email δεν έχει έγκυρη μορφή',
date: 'Παρακαλώ εισάγετε μια έγκυρη ημερομηνία',
dateISO: 'Παρακαλώ εισάγετε μια έγκυρη ημερομηνία',
number: 'Παρακαλώ εισάγετε έναν αριθμό',
digit: 'Παρακαλώ εισάγετε ένα ψηφίο',
phoneUS: 'Παρακαλώ εισάγετε έναν σωστό αριθμό τηλεφώνου',
equal: 'Οι τιμές πρέπει να είναι ίσες',
notEqual: 'Παρακαλώ επιλέξτε μια άλλη τιμή.',
unique: 'Παρακαλώ βεβαιωθείτε ότι η τιμή είναι μοναδική.'
/// <reference path="../Src/knockout.validation.js" />

/************************************************
* This is an example localization page. All of these
* messages are the default messages for ko.validation
*
* Currently ko.validation only does a single parameter replacement
* on your message (indicated by the {0}).
*
* The parameter that you provide in your validation extender
* is what is passed to your message to do the {0} replacement.
*
* eg: myProperty.extend({ minLength: 5 });
* ... will provide a message of "Please enter at least 5 characters"
* when validated
*
* This message replacement obviously only works with primitives
* such as numbers and strings. We do not stringify complex objects
* or anything like that currently.
*/

ko.validation.localize({
required: 'Το πεδίο αυτό είναι υποχρεωτικό.',
min: 'Παρακαλώ εισάγετε μια τιμή μεγαλύτερη ή ίση από {0}.',
max: 'Παρακαλώ εισάγετε μια τιμή μικρότερη ή ίση από {0}.',
minLength: 'Παρακαλώ εισάγετε τουλάχιστον {0} χαρακτήρες.',
maxLength: 'Παρακαλώ εισάγετε το πολύ {0} χαρακτήρες.',
pattern: 'Παρακαλώ ελέγξτε την τιμή αυτή.',
step: 'Η τιμή πρέπει να αυξηθεί κατά {0}',
email: 'Η διεύθυνση email δεν έχει έγκυρη μορφή',
date: 'Παρακαλώ εισάγετε μια έγκυρη ημερομηνία',
dateISO: 'Παρακαλώ εισάγετε μια έγκυρη ημερομηνία',
number: 'Παρακαλώ εισάγετε έναν αριθμό',
digit: 'Παρακαλώ εισάγετε ένα ψηφίο',
phoneUS: 'Παρακαλώ εισάγετε έναν σωστό αριθμό τηλεφώνου',
equal: 'Οι τιμές πρέπει να είναι ίσες',
notEqual: 'Παρακαλώ επιλέξτε μια άλλη τιμή.',
unique: 'Παρακαλώ βεβαιωθείτε ότι η τιμή είναι μοναδική.'
});