| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /**
- * 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, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return `Menampilkan ${pageFrom} sampai ${pageTo} dari ${totalRows} baris (filtered from ${totalNotFiltered} total rows)`
- }
- return `Menampilkan ${pageFrom} sampai ${pageTo} dari ${totalRows} baris`
- },
- formatSRPaginationPreText () {
- return 'previous page'
- },
- formatSRPaginationPageText (page) {
- return `to page ${page}`
- },
- formatSRPaginationNextText () {
- return 'next page'
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- formatClearSearch () {
- return 'Bersihkan filter'
- },
- formatSearch () {
- return 'Pencarian'
- },
- formatNoMatches () {
- return 'Tidak ditemukan data yang cocok'
- },
- formatPaginationSwitch () {
- return 'Sembunyikan/Tampilkan halaman'
- },
- formatPaginationSwitchDown () {
- return 'Show pagination'
- },
- formatPaginationSwitchUp () {
- return 'Hide pagination'
- },
- formatRefresh () {
- return 'Muat ulang'
- },
- formatToggle () {
- return 'Beralih'
- },
- formatToggleOn () {
- return 'Show card view'
- },
- formatToggleOff () {
- return 'Hide card view'
- },
- formatColumns () {
- return 'kolom'
- },
- formatFullscreen () {
- return 'Fullscreen'
- },
- formatAllRows () {
- return 'Semua'
- },
- formatAutoRefresh () {
- return 'Auto Refresh'
- },
- formatExport () {
- return 'Ekspor data'
- },
- formatJumpTo () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['id-ID'])
|