Files
febbweiss.github.io/demo/filebrowser-durandal-widget/lib/knockout-validation/localization/tr-TR.js
ECAILLE Fabrice (externe) e2277667c5 Fix: add dependencies
2017-05-04 10:26:11 +02:00

40 lines
1.6 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* Localization file for Turkish - Turkey (tr-TR)
*/
(function(factory) {
// Module systems magic dance.
/*global require,ko.validation,define,module*/
if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
// CommonJS or Node
module.exports = factory(require('../'));
} else if (typeof define === 'function' && define['amd']) {
// AMD anonymous module
define(['knockout.validation'], factory);
} else {
// <script> tag: use the global `ko.validation` object
factory(ko.validation);
}
}(function(kv) {
if (!kv || typeof kv.defineLocale !== 'function') {
throw new Error('Knockout-Validation is required, please ensure it is loaded before this localization file');
}
return kv.defineLocale('tr-TR', {
required: 'Bu alanın doldurulması zorunludur.',
min: 'Lütfen {0} veya daha yüksek değer giriniz.',
max: 'Lütfen {0} veya daha düşük değer giriniz.',
minLength: 'Lütfen en az {0} karakter giriniz.',
maxLength: 'Lütfen en fazla {0} karakter giriniz.',
pattern: 'Lütfen bu alanı kontrol ediniz.',
step: 'Değer {0} arttırılmalı.',
email: 'Bu geçerli bir E-Mail adresi değil.',
date: 'Lütfen geçerli bir tarih giriniz.',
dateISO: 'Lütfen geçerli bir tarih giriniz.',
number: 'Lütfen bir sayı değeri giriniz.',
digit: 'Lütfen bir rakam değeri giriniz.',
phoneUS: 'Lütfen geçerli bir telefon numarası giriniz.',
equal: 'Değerler eşit olmalıdır.',
notEqual: 'Lütfen farklı bir değer seçiniz.',
unique: 'Lütfen değerin farklı olduğunu kontrol ediniz.'
});
}));