You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
11 months ago
|
/**
|
||
|
* Bootstrap Table Urdu translation
|
||
|
* Author: Malik <me@malikrizwan.com>
|
||
|
*/
|
||
|
(function ($) {
|
||
|
'use strict';
|
||
|
|
||
|
$.fn.bootstrapTable.locales['ur-PK'] = {
|
||
|
formatLoadingMessage: function () {
|
||
|
return 'براۓ مہربانی انتظار کیجئے';
|
||
|
},
|
||
|
formatRecordsPerPage: function (pageNumber) {
|
||
|
return pageNumber + ' ریکارڈز فی صفہ ';
|
||
|
},
|
||
|
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
||
|
return 'دیکھیں ' + pageFrom + ' سے ' + pageTo + ' کے ' + totalRows + 'ریکارڈز';
|
||
|
},
|
||
|
formatSearch: function () {
|
||
|
return 'تلاش';
|
||
|
},
|
||
|
formatNoMatches: function () {
|
||
|
return 'کوئی ریکارڈ نہیں ملا';
|
||
|
},
|
||
|
formatRefresh: function () {
|
||
|
return 'تازہ کریں';
|
||
|
},
|
||
|
formatToggle: function () {
|
||
|
return 'تبدیل کریں';
|
||
|
},
|
||
|
formatColumns: function () {
|
||
|
return 'کالم';
|
||
|
}
|
||
|
};
|
||
|
|
||
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ur-PK']);
|
||
|
|
||
|
})(jQuery);
|