bootstrap-table-id-ID.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**
  2. * Bootstrap Table Indonesian translation
  3. * Author: Andre Gardiner<andre@sirdre.com>
  4. */
  5. ($ => {
  6. $.fn.bootstrapTable.locales['id-ID'] = {
  7. formatLoadingMessage () {
  8. return 'Memuat, mohon tunggu'
  9. },
  10. formatRecordsPerPage (pageNumber) {
  11. return `${pageNumber} baris per halaman`
  12. },
  13. formatShowingRows (pageFrom, pageTo, totalRows) {
  14. return `Menampilkan ${pageFrom} sampai ${pageTo} dari ${totalRows} baris`
  15. },
  16. formatDetailPagination (totalRows) {
  17. return `Showing ${totalRows} rows`
  18. },
  19. formatSearch () {
  20. return 'Pencarian'
  21. },
  22. formatNoMatches () {
  23. return 'Tidak ditemukan data yang cocok'
  24. },
  25. formatPaginationSwitch () {
  26. return 'Sembunyikan/Tampilkan halaman'
  27. },
  28. formatRefresh () {
  29. return 'Muat ulang'
  30. },
  31. formatToggle () {
  32. return 'Beralih'
  33. },
  34. formatColumns () {
  35. return 'kolom'
  36. },
  37. formatFullscreen () {
  38. return 'Fullscreen'
  39. },
  40. formatAllRows () {
  41. return 'Semua'
  42. },
  43. formatAutoRefresh () {
  44. return 'Auto Refresh'
  45. },
  46. formatExport () {
  47. return 'Ekspor data'
  48. },
  49. formatClearFilters () {
  50. return 'Bersihkan filter'
  51. },
  52. formatJumpto () {
  53. return 'GO'
  54. },
  55. formatAdvancedSearch () {
  56. return 'Advanced search'
  57. },
  58. formatAdvancedCloseButton () {
  59. return 'Close'
  60. }
  61. }
  62. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['id-ID'])
  63. })(jQuery)