From 4eea2fc2f7bbc8d951b5fdce1b9fccd83b87bb58 Mon Sep 17 00:00:00 2001 From: p4snporwf <1295712548@qq.com> Date: Wed, 31 Dec 2025 13:49:59 +0800 Subject: [PATCH] ADD file via upload --- bootstrap-table-af-ZA.js | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 bootstrap-table-af-ZA.js diff --git a/bootstrap-table-af-ZA.js b/bootstrap-table-af-ZA.js new file mode 100644 index 0000000..1c7ff88 --- /dev/null +++ b/bootstrap-table-af-ZA.js @@ -0,0 +1,40 @@ +/** + * Bootstrap Table Afrikaans translation + * Author: Phillip Kruger + */ +(function ($) { + 'use strict'; + + $.fn.bootstrapTable.locales['af-ZA'] = { + formatLoadingMessage: function () { + return 'Besig om te laai, wag asseblief ...'; + }, + formatRecordsPerPage: function (pageNumber) { + return pageNumber + ' rekords per bladsy'; + }, + formatShowingRows: function (pageFrom, pageTo, totalRows) { + return 'Resultate ' + pageFrom + ' tot ' + pageTo + ' van ' + totalRows + ' rye'; + }, + formatSearch: function () { + return 'Soek'; + }, + formatNoMatches: function () { + return 'Geen rekords gevind nie'; + }, + formatPaginationSwitch: function () { + return 'Wys/verberg bladsy nummering'; + }, + formatRefresh: function () { + return 'Herlaai'; + }, + formatToggle: function () { + return 'Wissel'; + }, + formatColumns: function () { + return 'Kolomme'; + } + }; + + $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['af-ZA']); + +})(jQuery);