mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-01-08 19:35:40 +00:00
30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
/* =========================================================
|
|
* bootstrap-gtreetable v2.2.1-alpha
|
|
* https://github.com/gilek/bootstrap-gtreetable
|
|
* =========================================================
|
|
* Copyright 2014 Maciej Kłak
|
|
* Licensed under MIT (https://github.com/gilek/bootstrap-gtreetable/blob/master/LICENSE)
|
|
* ========================================================= */
|
|
|
|
(function( $ ) {
|
|
$.fn.gtreetable.defaults.languages.pl = {
|
|
save: 'Zapisz',
|
|
cancel: 'Anuluj',
|
|
action: 'Akcja',
|
|
actions: {
|
|
createBefore: 'Dodaj przed',
|
|
createAfter: 'Dodaj po',
|
|
createFirstChild: 'Dodaj pierwszy',
|
|
createLastChild: 'Dodaj ostatni',
|
|
update: 'Edytuj',
|
|
'delete': 'Usuń'
|
|
},
|
|
messages: {
|
|
onDelete: 'Czy na pewno?',
|
|
onNewRootNotAllowed: 'Dodawania nowego węzła głównego jest zabronione.',
|
|
onMoveInDescendant: 'Wezeł nadrzędny nie może być potomnym.',
|
|
onMoveAsRoot: 'Przenosiny jako węzeł główny jest zabronione.'
|
|
}
|
|
};
|
|
}( jQuery ));
|