| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * Bootstrap Table Indonesian translation
- * Author: Andre Gardiner<andre@sirdre.com>
- */
- ($ => {
- $.fn.bootstrapTable.locales['id-ID'] = {
- formatLoadingMessage () {
- return 'Memuat, mohon tunggu'
- },
- formatRecordsPerPage (pageNumber) {
- return `${pageNumber} baris per halaman`
- },
- formatShowingRows (pageFrom, pageTo, totalRows) {
- return `Menampilkan ${pageFrom} sampai ${pageTo} dari ${totalRows} baris`
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- formatSearch () {
- return 'Pencarian'
- },
- formatNoMatches () {
- return 'Tidak ditemukan data yang cocok'
- },
- formatPaginationSwitch () {
- return 'Sembunyikan/Tampilkan halaman'
- },
- formatRefresh () {
- return 'Muat ulang'
- },
- formatToggle () {
- return 'Beralih'
- },
- formatColumns () {
- return 'kolom'
- },
- formatFullscreen () {
- return 'Fullscreen'
- },
- formatAllRows () {
- return 'Semua'
- },
- formatAutoRefresh () {
- return 'Auto Refresh'
- },
- formatExport () {
- return 'Ekspor data'
- },
- formatClearFilters () {
- return 'Bersihkan filter'
- },
- formatJumpto () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['id-ID'])
- })(jQuery)
|