UNPKG

1.48 kBJavaScriptView Raw
1/**
2 * Bootstrap Table Afrikaans translation
3 * Author: Phillip Kruger <phillip.kruger@gmail.com>
4 */
5($ => {
6 $.fn.bootstrapTable.locales['af-ZA'] = {
7 formatLoadingMessage () {
8 return 'Besig om te laai, wag asseblief'
9 },
10 formatRecordsPerPage (pageNumber) {
11 return `${pageNumber} rekords per bladsy`
12 },
13 formatShowingRows (pageFrom, pageTo, totalRows) {
14 return `Resultate ${pageFrom} tot ${pageTo} van ${totalRows} rye`
15 },
16 formatDetailPagination (totalRows) {
17 return `Showing ${totalRows} rows`
18 },
19 formatSearch () {
20 return 'Soek'
21 },
22 formatNoMatches () {
23 return 'Geen rekords gevind nie'
24 },
25 formatPaginationSwitch () {
26 return 'Wys/verberg bladsy nummering'
27 },
28 formatRefresh () {
29 return 'Herlaai'
30 },
31 formatToggle () {
32 return 'Wissel'
33 },
34 formatColumns () {
35 return 'Kolomme'
36 },
37 formatFullscreen () {
38 return 'Fullscreen'
39 },
40 formatAllRows () {
41 return 'All'
42 },
43 formatAutoRefresh () {
44 return 'Auto Refresh'
45 },
46 formatExport () {
47 return 'Export data'
48 },
49 formatClearFilters () {
50 return 'Clear filters'
51 },
52 formatJumpto () {
53 return 'GO'
54 },
55 formatAdvancedSearch () {
56 return 'Advanced search'
57 },
58 formatAdvancedCloseButton () {
59 return 'Close'
60 }
61 }
62
63 $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['af-ZA'])
64})(jQuery)