diff options
Diffstat (limited to 'src/main/resources/static/plugins/jsgrid/i18n')
13 files changed, 617 insertions, 0 deletions
diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-de.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-de.js new file mode 100644 index 0000000..4bad06d --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-de.js @@ -0,0 +1,46 @@ +(function(jsGrid) { + + jsGrid.locales.de = { + grid: { + noDataContent: "Die Daten konnten nicht gefunden werden", + deleteConfirm: "Möchten Sie die Daten unwiederruflich löschen?", + pagerFormat: "Seiten: {first} {prev} {pages} {next} {last} {pageIndex} von {pageCount}", + pagePrevText: "<", + pageNextText: ">", + pageFirstText: "<<", + pageLastText: ">>", + loadMessage: "Bitte warten...", + invalidMessage: "Ihre Eingabe ist nicht zulässig!" + }, + + loadIndicator: { + message: "Lädt..." + }, + + fields: { + control: { + searchModeButtonTooltip: "Suche", + insertModeButtonTooltip: "Eintrag hinzufügen", + editButtonTooltip: "Bearbeiten", + deleteButtonTooltip: "Löschen", + searchButtonTooltip: "Eintrag finden", + clearFilterButtonTooltip: "Filter zurücksetzen", + insertButtonTooltip: "Hinzufügen", + updateButtonTooltip: "Speichern", + cancelEditButtonTooltip: "Abbrechen" + } + }, + + validators: { + required: { message: "Dies ist ein Pflichtfeld" }, + rangeLength: { message: "Die Länge der Eingabe liegt außerhalb des zulässigen Bereichs" }, + minLength: { message: "Die Eingabe ist zu kurz" }, + maxLength: { message: "Die Eingabe ist zu lang" }, + pattern: { message: "Die Eingabe entspricht nicht dem gewünschten Muster" }, + range: { message: "Der eingegebene Wert liegt außerhalb des zulässigen Bereichs" }, + min: { message: "Der eingegebene Wert ist zu niedrig" }, + max: { message: "Der eingegebene Wert ist zu hoch" } + } + }; + +}(jsGrid, jQuery)); diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-es.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-es.js new file mode 100644 index 0000000..e8fd7fe --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-es.js @@ -0,0 +1,46 @@ +(function(jsGrid) { + + jsGrid.locales.es = { + grid: { + noDataContent: "No encontrado", + deleteConfirm: "¿Está seguro?", + pagerFormat: "Paginas: {first} {prev} {pages} {next} {last} {pageIndex} de {pageCount}", + pagePrevText: "Anterior", + pageNextText: "Siguiente", + pageFirstText: "Primero", + pageLastText: "Ultimo", + loadMessage: "Por favor, espere...", + invalidMessage: "¡Datos no válidos!" + }, + + loadIndicator: { + message: "Cargando..." + }, + + fields: { + control: { + searchModeButtonTooltip: "Cambiar a búsqueda", + insertModeButtonTooltip: "Cambiar a inserción", + editButtonTooltip: "Editar", + deleteButtonTooltip: "Suprimir", + searchButtonTooltip: "Buscar", + clearFilterButtonTooltip: "Borrar filtro", + insertButtonTooltip: "Insertar", + updateButtonTooltip: "Actualizar", + cancelEditButtonTooltip: "Cancelar edición" + } + }, + + validators: { + required: { message: "Campo requerido" }, + rangeLength: { message: "La longitud del valor está fuera del intervalo definido" }, + minLength: { message: "La longitud del valor es demasiado corta" }, + maxLength: { message: "La longitud del valor es demasiado larga" }, + pattern: { message: "El valor no se ajusta al patrón definido" }, + range: { message: "Valor fuera del rango definido" }, + min: { message: "Valor demasiado bajo" }, + max: { message: "Valor demasiado alto" } + } + }; + +}(jsGrid, jQuery)); diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-fr.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-fr.js new file mode 100644 index 0000000..c0f6f71 --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-fr.js @@ -0,0 +1,47 @@ +(function(jsGrid) { + + jsGrid.locales.fr = { + grid: { + noDataContent: "Pas de données", + deleteConfirm: "Êtes-vous sûr ?", + pagerFormat: "Pages: {first} {prev} {pages} {next} {last} {pageIndex} de {pageCount}", + pagePrevText: "<", + pageNextText: ">", + pageFirstText: "<<", + pageLastText: ">>", + loadMessage: "Chargement en cours...", + invalidMessage: "Des données incorrectes sont entrés !" + }, + + loadIndicator: { + message: "Chargement en cours..." + }, + + fields: { + control: { + searchModeButtonTooltip: "Recherche", + insertModeButtonTooltip: "Ajouter une entrée", + editButtonTooltip: "Changer", + deleteButtonTooltip: "Effacer", + searchButtonTooltip: "Trouve", + clearFilterButtonTooltip: "Effacer", + insertButtonTooltip: "Ajouter", + updateButtonTooltip: "Sauvegarder", + cancelEditButtonTooltip: "Annuler" + } + }, + + validators: { + required: { message: "Champ requis" }, + rangeLength: { message: "Longueur de la valeur du champ est hors de la plage définie" }, + minLength: { message: "La valeur du champ est trop court" }, + maxLength: { message: "La valeur du champ est trop long" }, + pattern: { message: "La valeur du champ ne correspond pas à la configuration définie" }, + range: { message: "La valeur du champ est hors de la plage définie" }, + min: { message: "La valeur du champ est trop petit" }, + max: { message: "La valeur du champ est trop grande" } + } + }; + +}(jsGrid, jQuery)); + diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-he.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-he.js new file mode 100644 index 0000000..42c294c --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-he.js @@ -0,0 +1,46 @@ +(function(jsGrid) { + + jsGrid.locales.he = { + grid: { + noDataContent: "לא נמצא", + deleteConfirm: "האם אתה בטוח?", + pagerFormat: "עמודים: {first} {prev} {pages} {next} {last} {pageIndex} מתוך {pageCount}", + pagePrevText: "הקודם", + pageNextText: "הבא", + pageFirstText: "ראשון", + pageLastText: "אחרון", + loadMessage: "אנא המתן ...", + invalidMessage: "נתונים לא חוקיים!" + }, + + loadIndicator: { + message: "טוען..." + }, + + fields: { + control: { + searchModeButtonTooltip: "ביצוע חיפוש", + insertModeButtonTooltip: "ביצוע עריכת שורה", + editButtonTooltip: "עריכה", + deleteButtonTooltip: "מחיקה", + searchButtonTooltip: "חיפוש", + clearFilterButtonTooltip: "ניקוי מסנן", + insertButtonTooltip: "הכנסה", + updateButtonTooltip: "עדכון", + cancelEditButtonTooltip: "ביטול עריכה" + } + }, + + validators: { + required: { message: "שדה נדרש" }, + rangeLength: { message: "אורכו של הערך הוא מחוץ לטווח המוגדר" }, + minLength: { message: "אורכו של הערך קצר מדי" }, + maxLength: { message: "אורכו של הערך ארוך מדי" }, + pattern: { message: "אורכו של הערך ארוך מדי" }, + range: { message: "ערך מחוץ לטווח" }, + min: { message: "ערך נמוך מדי" }, + max: { message: "גבוה מדי" } + } + }; + +}(jsGrid, jQuery)); diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-ja.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-ja.js new file mode 100644 index 0000000..acc506f --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-ja.js @@ -0,0 +1,46 @@ +(function(jsGrid) {
+
+ jsGrid.locales.ja = {
+ grid: {
+ noDataContent: "データが見つかりません。",
+ deleteConfirm: "削除しますよろしですか。",
+ pagerFormat: "頁: {first} {prev} {pages} {next} {last} 【{pageIndex}/{pageCount}】",
+ pagePrevText: "前",
+ pageNextText: "次",
+ pageFirstText: "最初",
+ pageLastText: "最後",
+ loadMessage: "しばらくお待ちください…",
+ invalidMessage: "入力されたデータが不正です。"
+ },
+
+ loadIndicator: {
+ message: "処理中…"
+ },
+
+ fields: {
+ control: {
+ searchModeButtonTooltip: "検索モードへ",
+ insertModeButtonTooltip: "登録モードへ",
+ editButtonTooltip: "編集",
+ deleteButtonTooltip: "削除",
+ searchButtonTooltip: "フィルター",
+ clearFilterButtonTooltip: "クリア",
+ insertButtonTooltip: "登録",
+ updateButtonTooltip: "更新",
+ cancelEditButtonTooltip: "編集戻す"
+ }
+ },
+
+ validators: {
+ required: { message: "項目が必要です。" },
+ rangeLength: { message: "項目の桁数が範囲外です。" },
+ minLength: { message: "項目の桁数が超過しています。" },
+ maxLength: { message: "項目の桁数が不足しています。" },
+ pattern: { message: "項目の値がパターンに一致しません。" },
+ range: { message: "項目の値が範囲外です。" },
+ min: { message: "項目の値が超過しています。" },
+ max: { message: "項目の値が不足しています。" }
+ }
+ };
+
+}(jsGrid, jQuery));
\ No newline at end of file diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-ka.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-ka.js new file mode 100644 index 0000000..281a230 --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-ka.js @@ -0,0 +1,46 @@ +(function(jsGrid) { + + jsGrid.locales.ka = { + grid: { + noDataContent: "მონაცემები ცარიელია.", + deleteConfirm: "ნამდვილად გსურთ ჩანაწერის წაშლა?", + pagerFormat: "გვერდები: {first} {prev} {pages} {next} {last} {pageIndex} - {pageCount} დან.", + pagePrevText: "<", + pageNextText: ">", + pageFirstText: "<<", + pageLastText: ">>", + loadMessage: "გთხოვთ დაიცადოთ...", + invalidMessage: "შეყვანილია არასწორი მონაცემები!" + }, + + loadIndicator: { + message: "მიმდინარეობს ჩატვირთვა..." + }, + + fields: { + control: { + searchModeButtonTooltip: "ძებნა", + insertModeButtonTooltip: "ჩანაწერის დამატება", + editButtonTooltip: "შესწორება", + deleteButtonTooltip: "წაშლა", + searchButtonTooltip: "ძებნა", + clearFilterButtonTooltip: "ფილტრის გასუფთავება", + insertButtonTooltip: "დამატება", + updateButtonTooltip: "შენახვა", + cancelEditButtonTooltip: "გაუქმება" + } + }, + + validators: { + required: { message: "ველი აუცილებელია შესავსებად." }, + rangeLength: { message: "შეყვანილი ჩანაწერის ზომა არ ექვემდებარება დიაპაზონს." }, + minLength: { message: "შეყვანილი ჩანაწერის ზომა საკმაოდ პატარა არის." }, + maxLength: { message: "შეყვანილი ჩანაწერის ზომა საკმაოდ დიდი არის." }, + pattern: { message: "შეყვანილი მნიშვნელობა არ ემთხვევა მითითებულ შაბლონს." }, + range: { message: "შეყვანილი ინფორმაცია არ ჯდება დიაპაზონში." }, + min: { message: "შეყვანილი ინფორმაციის ზომა საკმაოდ პატარა არის." }, + max: { message: "შეყვანილი ინფორმაციის ზომა საკმაოდ დიდი არის." } + } + }; + +}(jsGrid, jQuery)); diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-pl.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-pl.js new file mode 100644 index 0000000..e5fbf41 --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-pl.js @@ -0,0 +1,62 @@ +(function(jsGrid) { + + jsGrid.locales.pl = { + grid: { + noDataContent: "Nie znaleziono", + deleteConfirm: "Czy jesteś pewien?", + pagerFormat: "Strony: {first} {prev} {pages} {next} {last} {pageIndex} z {pageCount}", + pagePrevText: "Poprzednia", + pageNextText: "Następna", + pageFirstText: "Pierwsza", + pageLastText: "Ostatnia", + loadMessage: "Proszę czekać...", + invalidMessage: "Wprowadzono nieprawidłowe dane!" + }, + + loadIndicator: { + message: "Ładowanie..." + }, + + fields: { + control: { + searchModeButtonTooltip: "Wyszukiwanie", + insertModeButtonTooltip: "Dodawanie", + editButtonTooltip: "Edytuj", + deleteButtonTooltip: "Usuń", + searchButtonTooltip: "Szukaj", + clearFilterButtonTooltip: "Wyczyść filtr", + insertButtonTooltip: "Dodaj", + updateButtonTooltip: "Aktualizuj", + cancelEditButtonTooltip: "Anuluj edytowanie" + } + }, + + validators: { + required: { + message: "Pole jest wymagane" + }, + rangeLength: { + message: "Długość wartości pola znajduje się poza zdefiniowanym zakresem" + }, + minLength: { + message: "Wartość pola jest zbyt krótka" + }, + maxLength: { + message: "Wartość pola jest zbyt długa" + }, + pattern: { + message: "Wartość pola nie zgadza się ze zdefiniowanym wzorem" + }, + range: { + message: "Wartość pola znajduje się poza zdefiniowanym zakresem" + }, + min: { + message: "Wartość pola jest zbyt mała" + }, + max: { + message: "Wartość pola jest zbyt duża" + } + } + }; + +}(jsGrid, jQuery)); diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-pt-br.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-pt-br.js new file mode 100644 index 0000000..d9df06c --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-pt-br.js @@ -0,0 +1,46 @@ +(function(jsGrid) { + + jsGrid.locales["pt-br"] = { + grid: { + noDataContent: "Não encontrado", + deleteConfirm: "Você tem certeza que deseja remover este item?", + pagerFormat: "Páginas: {first} {prev} {pages} {next} {last} {pageIndex} de {pageCount}", + pagePrevText: "Anterior", + pageNextText: "Seguinte", + pageFirstText: "Primeira", + pageLastText: "Última", + loadMessage: "Por favor, espere...", + invalidMessage: "Dados inválidos!" + }, + + loadIndicator: { + message: "Carregando..." + }, + + fields: { + control: { + searchModeButtonTooltip: "Mudar para busca", + insertModeButtonTooltip: "Mudar para inserção", + editButtonTooltip: "Editar", + deleteButtonTooltip: "Remover", + searchButtonTooltip: "Buscar", + clearFilterButtonTooltip: "Remover filtro", + insertButtonTooltip: "Adicionar", + updateButtonTooltip: "Atualizar", + cancelEditButtonTooltip: "Cancelar Edição" + } + }, + + validators: { + required: { message: "Campo obrigatório" }, + rangeLength: { message: "O valor esta fora do intervaldo definido" }, + minLength: { message: "O comprimento do valor é muito curto" }, + maxLength: { message: "O comprimento valor é muito longo" }, + pattern: { message: "O valor informado não é compatível com o padrão" }, + range: { message: "O valor informado esta fora do limite definido" }, + min: { message: "O valor é muito curto" }, + max: { message: "O valor é muito longo" } + } + }; + +}(jsGrid, jQuery)); diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-pt.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-pt.js new file mode 100644 index 0000000..25e3e1a --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-pt.js @@ -0,0 +1,46 @@ +(function(jsGrid) { + + jsGrid.locales.pt = { + grid: { + noDataContent: "Não encontrado", + deleteConfirm: "Você tem certeza que deseja remover este item?", + pagerFormat: "Páginas: {first} {prev} {pages} {next} {last} {pageIndex} de {pageCount}", + pagePrevText: "Anterior", + pageNextText: "Seguinte", + pageFirstText: "Primeira", + pageLastText: "Última", + loadMessage: "Por favor, espere...", + invalidMessage: "Dados inválidos!" + }, + + loadIndicator: { + message: "Carregando..." + }, + + fields: { + control: { + searchModeButtonTooltip: "Mudar para busca", + insertModeButtonTooltip: "Mudar para inserção", + editButtonTooltip: "Editar", + deleteButtonTooltip: "Remover", + searchButtonTooltip: "Buscar", + clearFilterButtonTooltip: "Remover filtro", + insertButtonTooltip: "Adicionar", + updateButtonTooltip: "Atualizar", + cancelEditButtonTooltip: "Cancelar Edição" + } + }, + + validators: { + required: { message: "Campo obrigatório" }, + rangeLength: { message: "O valor esta fora do intervaldo definido" }, + minLength: { message: "O comprimento do valor é muito curto" }, + maxLength: { message: "O comprimento valor é muito longo" }, + pattern: { message: "O valor informado não é compatível com o padrão" }, + range: { message: "O valor informado esta fora do limite definido" }, + min: { message: "O valor é muito curto" }, + max: { message: "O valor é muito longo" } + } + }; + +}(jsGrid, jQuery)); diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-ru.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-ru.js new file mode 100644 index 0000000..7fa469f --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-ru.js @@ -0,0 +1,47 @@ +(function(jsGrid) { + + jsGrid.locales.ru = { + grid: { + noDataContent: "Данных не найдено", + deleteConfirm: "Вы действительно хотите удалить запись?", + pagerFormat: "Страницы: {first} {prev} {pages} {next} {last} {pageIndex} из {pageCount}", + pagePrevText: "<", + pageNextText: ">", + pageFirstText: "<<", + pageLastText: ">>", + loadMessage: "Пожалуйста, подождите...", + invalidMessage: "Введены неверные данные!" + }, + + loadIndicator: { + message: "Загрузка..." + }, + + fields: { + control: { + searchModeButtonTooltip: "Поиск", + insertModeButtonTooltip: "Добавить запись", + editButtonTooltip: "Изменить", + deleteButtonTooltip: "Удалить", + searchButtonTooltip: "Найти", + clearFilterButtonTooltip: "Очистить фильтр", + insertButtonTooltip: "Добавить", + updateButtonTooltip: "Сохранить", + cancelEditButtonTooltip: "Отменить" + } + }, + + validators: { + required: { message: "Поле обязательно для заполения" }, + rangeLength: { message: "Длинна введенного значения вне допустимого диапазона" }, + minLength: { message: "Введенное значение слишком короткое" }, + maxLength: { message: "Введенное значение слишком длинное" }, + pattern: { message: "Введенное значение не соответствует заданному шаблону" }, + range: { message: "Введенное значение вне допустимого диапазона" }, + min: { message: "Введенное значение слишком маленькое" }, + max: { message: "Введенное значение слишком большое" } + } + }; + +}(jsGrid, jQuery)); + diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-tr.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-tr.js new file mode 100644 index 0000000..bbb7c5c --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-tr.js @@ -0,0 +1,47 @@ +(function(jsGrid) { + + jsGrid.locales.tr = { + grid: { + noDataContent: "Kayıt Bulunamadı", + deleteConfirm: "Emin misiniz ?", + pagerFormat: "Sayfalar: {first} {prev} {pages} {next} {last} {pageIndex} / {pageCount}", + pagePrevText: "<", + pageNextText: ">", + pageFirstText: "<<", + pageLastText: ">>", + loadMessage: "Lütfen bekleyiniz...", + invalidMessage: "Geçersiz veri girişi !" + }, + + loadIndicator: { + message: "Yükleniyor..." + }, + + fields: { + control: { + searchModeButtonTooltip: "Arama moduna geç", + insertModeButtonTooltip: "Yeni kayıt moduna geç", + editButtonTooltip: "Değiştir", + deleteButtonTooltip: "Sil", + searchButtonTooltip: "Bul", + clearFilterButtonTooltip: "Filtreyi temizle", + insertButtonTooltip: "Ekle", + updateButtonTooltip: "Güncelle", + cancelEditButtonTooltip: "Güncelleme iptali" + } + }, + + validators: { + required: { message: "Gerekli alandır" }, + rangeLength: { message: "Alan değerinin uzunluğu tanımlanan aralık dışındadır" }, + minLength: { message: "Alan değeri çok kısadır" }, + maxLength: { message: "Alan değeri çok uzundur" }, + pattern: { message: "Alan değeri tanımlanan şablon ile eşleşmiyor" }, + range: { message: "Alan değeri tanımlı aralığın dışındadır" }, + min: { message: "Alan değeri çok küçüktür" }, + max: { message: "Alan değeri çok büyüktür" } + } + }; + +}(jsGrid, jQuery)); + diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-zh-cn.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-zh-cn.js new file mode 100644 index 0000000..87c0055 --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-zh-cn.js @@ -0,0 +1,46 @@ +(function(jsGrid) { + + jsGrid.locales["zh-cn"] = { + grid: { + noDataContent: "暂无数据", + deleteConfirm: "确认删除?", + pagerFormat: "页码: {first} {prev} {pages} {next} {last} {pageIndex} / {pageCount}", + pagePrevText: "上一页", + pageNextText: "下一页", + pageFirstText: "第一页", + pageLastText: "最后页", + loadMessage: "请稍后...", + invalidMessage: "数据有误!" + }, + + loadIndicator: { + message: "载入中..." + }, + + fields: { + control: { + searchModeButtonTooltip: "切换为搜索", + insertModeButtonTooltip: "切换为新增", + editButtonTooltip: "编辑", + deleteButtonTooltip: "删除", + searchButtonTooltip: "搜索", + clearFilterButtonTooltip: "清空过滤", + insertButtonTooltip: "插入", + updateButtonTooltip: "更新", + cancelEditButtonTooltip: "取消编辑" + } + }, + + validators: { + required: { message: "字段必填" }, + rangeLength: { message: "字段值长度超过定义范围" }, + minLength: { message: "字段长度过短" }, + maxLength: { message: "字段长度过长" }, + pattern: { message: "字段值不符合定义规则" }, + range: { message: "字段值超过定义范围" }, + min: { message: "字段值太小" }, + max: { message: "字段值太大" } + } + }; + +}(jsGrid, jQuery)); diff --git a/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-zh-tw.js b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-zh-tw.js new file mode 100644 index 0000000..2a22845 --- /dev/null +++ b/src/main/resources/static/plugins/jsgrid/i18n/jsgrid-zh-tw.js @@ -0,0 +1,46 @@ +(function(jsGrid) { + + jsGrid.locales["zh-tw"] = { + grid: { + noDataContent: "暫無資料", + deleteConfirm: "確認刪除?", + pagerFormat: "頁碼: {first} {prev} {pages} {next} {last} {pageIndex} / {pageCount}", + pagePrevText: "上一頁", + pageNextText: "下一頁", + pageFirstText: "第一頁", + pageLastText: "最後一頁", + loadMessage: "請稍候...", + invalidMessage: "輸入資料不正確" + }, + + loadIndicator: { + message: "載入中..." + }, + + fields: { + control: { + searchModeButtonTooltip: "切換為搜尋", + insertModeButtonTooltip: "切換為新增", + editButtonTooltip: "編輯", + deleteButtonTooltip: "刪除", + searchButtonTooltip: "搜尋", + clearFilterButtonTooltip: "清除搜尋條件", + insertButtonTooltip: "新增", + updateButtonTooltip: "修改", + cancelEditButtonTooltip: "取消編輯" + } + }, + + validators: { + required: { message: "欄位必填" }, + rangeLength: { message: "欄位字串長度超出範圍" }, + minLength: { message: "欄位字串長度太短" }, + maxLength: { message: "欄位字串長度太長" }, + pattern: { message: "欄位字串不符合規則" }, + range: { message: "欄位數值超出範圍" }, + min: { message: "欄位數值太小" }, + max: { message: "欄位數值太大" } + } + }; + +}(jsGrid, jQuery)); |