diff options
author | Halil İbrahim Kalkan <hikalkan@gmail.com> | 2013-01-13 20:47:06 +0200 |
---|---|---|
committer | Halil İbrahim Kalkan <hikalkan@gmail.com> | 2013-01-13 20:47:06 +0200 |
commit | 714e396500d8ca31ccf5e0972c8a77b365365f4a (patch) | |
tree | 43cae707262293df88553dd6433863a42be04d2a /lib/localization/jquery.jtable.tr.js | |
parent | a08e406f31de23ff7fd8cb766fdd9f7f62fbd82d (diff) | |
download | jtable-714e396500d8ca31ccf5e0972c8a77b365365f4a.zip jtable-714e396500d8ca31ccf5e0972c8a77b365365f4a.tar.gz jtable-714e396500d8ca31ccf5e0972c8a77b365365f4a.tar.bz2 |
jTable version 2.0.0
All codebase revised and refactored.
All CSS re-written using less css. [#3]
Added metro style theme with 10 color options. [#2]
Added a basic theme that can be start point who want to create themes to
jTable.
Added methods: getRowByKey, selectRows. [#8]
Added field option: ajaxSettings.
Added feature: editing primary key's value. [#34]
Added feature: Allow updating a record with server response after
updateAction [#66]
Added ready-to-use localization scripts. [#67]
Fixed some issues. [#25, #29, #42, #46]
Set default values for key field as "edit: false" and "create: false"
Fixed some other minor bugs.
Removed standard theme.
Tested with latest jQuery libraries (jQuery v1.8.3 and jQuery UI
v1.9.2).
Diffstat (limited to 'lib/localization/jquery.jtable.tr.js')
-rw-r--r-- | lib/localization/jquery.jtable.tr.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/localization/jquery.jtable.tr.js b/lib/localization/jquery.jtable.tr.js new file mode 100644 index 0000000..8535a65 --- /dev/null +++ b/lib/localization/jquery.jtable.tr.js @@ -0,0 +1,28 @@ +/*
+ jTable localization file for 'Turkish' language.
+ Author: Halil İbrahim Kalkan
+*/
+(function ($) {
+
+ $.extend(true, $.hik.jtable.prototype.options.messages, {
+ serverCommunicationError: 'Sunucu ile iletişim kurulurken bir hata oluştu.',
+ loadingMessage: 'Kayıtlar yükleniyor...',
+ noDataAvailable: 'Hiç kayıt bulunmamaktadır!',
+ addNewRecord: '+ Yeni kayıt ekle',
+ editRecord: 'Kayıt düzenle',
+ areYouSure: 'Emin misiniz?',
+ deleteConfirmation: 'Bu kayıt silinecektir. Emin misiniz?',
+ save: 'Kaydet',
+ saving: 'Kaydediyor',
+ cancel: 'İptal',
+ deleteText: 'Sil',
+ deleting: 'Siliyor',
+ error: 'Hata',
+ close: 'Kapat',
+ cannotLoadOptionsFor: '{0} alanı için seçenekler yüklenemedi!',
+ pagingInfo: 'Toplam {2}, {0} ile {1} arası gösteriliyor',
+ canNotDeletedRecords: '{1} kayıttan {0} adedi silinemedi!',
+ deleteProggress: '{1} kayıttan {0} adedi silindi, devam ediliyor...'
+ });
+
+})(jQuery);
\ No newline at end of file |