| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * Bootstrap Table Catalan translation
- * Authors: Marc Pina<iwalkalone69@gmail.com>
- * Claudi Martinez<claudix.kernel@gmail.com>
- */
- $.fn.bootstrapTable.locales['ca-ES'] = {
- formatLoadingMessage () {
- return 'Espereu, si us plau'
- },
- formatRecordsPerPage (pageNumber) {
- return `${pageNumber} resultats per pàgina`
- },
- formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return `Mostrant de ${pageFrom} fins ${pageTo} - total ${totalRows} resultats (filtered from ${totalNotFiltered} total rows)`
- }
- return `Mostrant de ${pageFrom} fins ${pageTo} - total ${totalRows} resultats`
- },
- formatSRPaginationPreText () {
- return 'previous page'
- },
- formatSRPaginationPageText (page) {
- return `to page ${page}`
- },
- formatSRPaginationNextText () {
- return 'next page'
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- formatClearSearch () {
- return 'Clear Search'
- },
- formatSearch () {
- return 'Cerca'
- },
- formatNoMatches () {
- return 'No s\'han trobat resultats'
- },
- formatPaginationSwitch () {
- return 'Amaga/Mostra paginació'
- },
- formatRefresh () {
- return 'Refresca'
- },
- formatToggle () {
- return 'Alterna formatació'
- },
- formatColumns () {
- return 'Columnes'
- },
- formatFullscreen () {
- return 'Fullscreen'
- },
- formatAllRows () {
- return 'Tots'
- },
- formatAutoRefresh () {
- return 'Auto Refresh'
- },
- formatExport () {
- return 'Export data'
- },
- formatJumpTo () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ca-ES'])
|