diff options
author | hikalkan <hikalkan@gmail.com> | 2013-02-02 11:10:58 -0800 |
---|---|---|
committer | hikalkan <hikalkan@gmail.com> | 2013-02-02 11:10:58 -0800 |
commit | b9cc1ef09f28dd7453fd3b21c8d127beae74161c (patch) | |
tree | 76ff2aa37387ff6044369c259e8f0257b91b4de1 | |
parent | 54b12cf75defb08329fcc097643178036b145f98 (diff) | |
parent | a14fd99858936a1d52dde64622df96c42547d545 (diff) | |
download | jtable-b9cc1ef09f28dd7453fd3b21c8d127beae74161c.zip jtable-b9cc1ef09f28dd7453fd3b21c8d127beae74161c.tar.gz jtable-b9cc1ef09f28dd7453fd3b21c8d127beae74161c.tar.bz2 |
Merge pull request #179 from dongetto/patch-1
Hungarian localization.
-rw-r--r-- | lib/localization/jquery.jtable.hu | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/localization/jquery.jtable.hu b/lib/localization/jquery.jtable.hu new file mode 100644 index 0000000..73bd1fd --- /dev/null +++ b/lib/localization/jquery.jtable.hu @@ -0,0 +1,28 @@ +/* + jTable localization file for 'Hungarian' language. + Author: Erik Berman +*/ +(function ($) { + + $.extend(true, $.hik.jtable.prototype.options.messages, { + serverCommunicationError: 'Adatbázis hiba', + loadingMessage: 'Adatok betöltése...', + noDataAvailable: 'Nincs elérhető adat!', + addNewRecord: '+ Új hozzáadása', + editRecord: 'Módosít', + areYouSure: 'Biztos benne?', + deleteConfirmation: 'Az adat véglegesen törlődik. Biztos benne?', + save: 'Mentés', + saving: 'Mentés', + cancel: 'Mégse', + deleteText: 'Töröl', + deleting: 'Törlés', + error: 'Hiba', + close: 'Bezár', + cannotLoadOptionsFor: '{0} mező opciói nem elérhetőek!', + pagingInfo: 'Megjelenítve: {0} - {1} / Összesen: {2}', + canNotDeletedRecords: '{1} tételből {0} nem törölhető!', + deleteProggress: '{1} tételből {0} törölve, feldolgozás...' + }); + +})(jQuery); |