bootstrap-table-id-ID.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /**
  2. * Bootstrap Table Indonesian translation
  3. * Author: Andre Gardiner<andre@sirdre.com>
  4. */
  5. $.fn.bootstrapTable.locales['id-ID'] = {
  6. formatLoadingMessage () {
  7. return 'Memuat, mohon tunggu'
  8. },
  9. formatRecordsPerPage (pageNumber) {
  10. return `${pageNumber} baris per halaman`
  11. },
  12. formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
  13. if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
  14. return `Menampilkan ${pageFrom} sampai ${pageTo} dari ${totalRows} baris (filtered from ${totalNotFiltered} total rows)`
  15. }
  16. return `Menampilkan ${pageFrom} sampai ${pageTo} dari ${totalRows} baris`
  17. },
  18. formatSRPaginationPreText () {
  19. return 'previous page'
  20. },
  21. formatSRPaginationPageText (page) {
  22. return `to page ${page}`
  23. },
  24. formatSRPaginationNextText () {
  25. return 'next page'
  26. },
  27. formatDetailPagination (totalRows) {
  28. return `Showing ${totalRows} rows`
  29. },
  30. formatClearSearch () {
  31. return 'Bersihkan filter'
  32. },
  33. formatSearch () {
  34. return 'Pencarian'
  35. },
  36. formatNoMatches () {
  37. return 'Tidak ditemukan data yang cocok'
  38. },
  39. formatPaginationSwitch () {
  40. return 'Sembunyikan/Tampilkan halaman'
  41. },
  42. formatPaginationSwitchDown () {
  43. return 'Show pagination'
  44. },
  45. formatPaginationSwitchUp () {
  46. return 'Hide pagination'
  47. },
  48. formatRefresh () {
  49. return 'Muat ulang'
  50. },
  51. formatToggle () {
  52. return 'Beralih'
  53. },
  54. formatToggleOn () {
  55. return 'Show card view'
  56. },
  57. formatToggleOff () {
  58. return 'Hide card view'
  59. },
  60. formatColumns () {
  61. return 'kolom'
  62. },
  63. formatFullscreen () {
  64. return 'Fullscreen'
  65. },
  66. formatAllRows () {
  67. return 'Semua'
  68. },
  69. formatAutoRefresh () {
  70. return 'Auto Refresh'
  71. },
  72. formatExport () {
  73. return 'Ekspor data'
  74. },
  75. formatJumpTo () {
  76. return 'GO'
  77. },
  78. formatAdvancedSearch () {
  79. return 'Advanced search'
  80. },
  81. formatAdvancedCloseButton () {
  82. return 'Close'
  83. }
  84. }
  85. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['id-ID'])