UNPKG

bootstrap-table

Version:

An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)

193 lines (146 loc) 3.36 kB
/** * Bootstrap Table Croatian translation * Author: Petra Štrbenac (petra.strbenac@gmail.com) * Author: Petra Štrbenac (petra.strbenac@gmail.com) */ $.fn.bootstrapTable.locales['hr-HR'] = $.fn.bootstrapTable.locales['hr'] = { formatAddLevel () { return 'Add Level' }, formatAdvancedCloseButton () { return 'Close' }, formatAdvancedSearch () { return 'Advanced search' }, formatAllRows () { return 'Sve' }, formatAutoRefresh () { return 'Auto Refresh' }, formatCancel () { return 'Cancel' }, formatClearSearch () { return 'Clear Search' }, formatColumn () { return 'Column' }, formatColumns () { return 'Kolone' }, formatColumnsToggleAll () { return 'Toggle all' }, formatCopyRows () { return 'Copy Rows' }, formatDeleteLevel () { return 'Delete Level' }, formatDetailPagination (totalRows) { return `Showing ${totalRows} rows` }, formatDuplicateAlertDescription () { return 'Please remove or change any duplicate column.' }, formatDuplicateAlertTitle () { return 'Duplicate(s) detected!' }, formatExport () { return 'Export data' }, formatFilterControlSwitch () { return 'Hide/Show controls' }, formatFilterControlSwitchHide () { return 'Hide controls' }, formatFilterControlSwitchShow () { return 'Show controls' }, formatFullscreen () { return 'Fullscreen' }, formatJumpTo () { return 'GO' }, formatLoadingMessage () { return 'Molimo pričekajte' }, formatMultipleSort () { return 'Multiple Sort' }, formatNoMatches () { return 'Nije pronađen niti jedan zapis' }, formatOrder () { return 'Order' }, formatPaginationSwitch () { return 'Prikaži/sakrij stranice' }, formatPaginationSwitchDown () { return 'Show pagination' }, formatPaginationSwitchUp () { return 'Hide pagination' }, formatPrint () { return 'Print' }, formatRecordsPerPage (pageNumber) { return `${pageNumber} broj zapisa po stranici` }, formatRefresh () { return 'Osvježi' }, formatSRPaginationNextText () { return 'next page' }, formatSRPaginationPageText (page) { return `to page ${page}` }, formatSRPaginationPreText () { return 'previous page' }, formatSearch () { return 'Pretraži' }, formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) { if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) { return `Prikazujem ${pageFrom}. - ${pageTo}. od ukupnog broja zapisa ${totalRows} (filtered from ${totalNotFiltered} total rows)` } return `Prikazujem ${pageFrom}. - ${pageTo}. od ukupnog broja zapisa ${totalRows}` }, formatSort () { return 'Sort' }, formatSortBy () { return 'Sort by' }, formatSortOrders () { return { asc: 'Ascending', desc: 'Descending' } }, formatThenBy () { return 'Then by' }, formatToggleCustomViewOff () { return 'Hide custom view' }, formatToggleCustomViewOn () { return 'Show custom view' }, formatToggleOff () { return 'Hide card view' }, formatToggleOn () { return 'Show card view' } } Object.assign($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['hr-HR'])