git-svn-id: file:///svn-source/pmgr/branches/ledger_transactions_20090605/site@110 97e9348a-65ac-dc4b-aefc-98561f571b83
108 lines
3.4 KiB
JavaScript
108 lines
3.4 KiB
JavaScript
;(function($){
|
|
/**
|
|
* jqGrid Polish Translation
|
|
* Piotr Roznicki roznicki@o2.pl
|
|
* http://www.roznicki.prv.pl
|
|
* Dual licensed under the MIT and GPL licenses:
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
* http://www.gnu.org/licenses/gpl.html
|
|
**/
|
|
$.jgrid = {};
|
|
|
|
$.jgrid.defaults = {
|
|
recordtext: "Wiersz(y)",
|
|
loadtext: "Ładowanie...",
|
|
pgtext : "/"
|
|
};
|
|
$.jgrid.search = {
|
|
caption: "Wyszukiwanie...",
|
|
Find: "Szukaj",
|
|
Reset: "Czyść",
|
|
odata : ['dokładnie', 'różne od', 'mniejsze od', 'mniejsze lub różne','większe od','większe lub różne', 'zacznij od','zakończ na','zawiera' ]
|
|
};
|
|
$.jgrid.edit = {
|
|
addCaption: "Dodaj rekord",
|
|
editCaption: "Edytuj rekord",
|
|
bSubmit: "Zapisz",
|
|
bCancel: "Anuluj",
|
|
bClose: "Zamknij",
|
|
processData: "Przetwarzanie...",
|
|
msg: {
|
|
required:"Pole jest wymagane",
|
|
number:"Proszę wpisać poprawną liczbę",
|
|
minValue:"wartość musi być większa lub równa",
|
|
maxValue:"wartość musi być mniejsza od",
|
|
email: "nie jest adresem e-mail",
|
|
integer: "Proszę wpisać poprawną liczbę",
|
|
date: "Please, enter valid date value"
|
|
}
|
|
};
|
|
$.jgrid.del = {
|
|
caption: "Usuwanie",
|
|
msg: "Usuń wybrany rekord(y)?",
|
|
bSubmit: "Usuń",
|
|
bCancel: "Anuluj",
|
|
processData: "Przetwarzanie..."
|
|
};
|
|
$.jgrid.nav = {
|
|
edittext: " ",
|
|
edittitle: "Edytuj wybrany wiersz",
|
|
addtext:" ",
|
|
addtitle: "Dodaj nowy wiersz",
|
|
deltext: " ",
|
|
deltitle: "Usuń wybrany wiersz",
|
|
searchtext: " ",
|
|
searchtitle: "Wyszukaj rekord",
|
|
refreshtext: "",
|
|
refreshtitle: "Przeładuj",
|
|
alertcap: "Uwaga",
|
|
alerttext: "Proszę wybrać wiersz"
|
|
};
|
|
// setcolumns module
|
|
$.jgrid.col ={
|
|
caption: "Pokaż/Ukryj kolumny",
|
|
bSubmit: "Zatwierdź",
|
|
bCancel: "Anuluj"
|
|
};
|
|
$.jgrid.errors = {
|
|
errcap : "Błąd",
|
|
nourl : "Brak adresu url",
|
|
norecords: "Brak danych",
|
|
model : "Length of colNames <> colModel!"
|
|
};
|
|
$.jgrid.formatter = {
|
|
integer : {thousandsSeparator: " ", defaulValue: 0},
|
|
number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaulValue: 0},
|
|
currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaulValue: 0},
|
|
date : {
|
|
dayNames: [
|
|
"Sun", "Mon", "Tue", "Wed", "Thr", "Fri", "Sat",
|
|
"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
|
|
],
|
|
monthNames: [
|
|
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
|
|
"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
|
|
],
|
|
AmPm : ["am","pm","AM","PM"],
|
|
S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
|
|
srcformat: 'Y-m-d',
|
|
newformat: 'd/m/Y',
|
|
masks : {
|
|
ISO8601Long:"Y-m-d H:i:s",
|
|
ISO8601Short:"Y-m-d",
|
|
ShortDate: "n/j/Y",
|
|
LongDate: "l, F d, Y",
|
|
FullDateTime: "l, F d, Y g:i:s A",
|
|
MonthDay: "F d",
|
|
ShortTime: "g:i A",
|
|
LongTime: "g:i:s A",
|
|
SortableDateTime: "Y-m-d\\TH:i:s",
|
|
UniversalSortableDateTime: "Y-m-d H:i:sO",
|
|
YearMonth: "F, Y"
|
|
},
|
|
reformatAfterEdit : false
|
|
},
|
|
baseLinkUrl: '',
|
|
showAction: 'show'
|
|
};
|
|
})(jQuery); |