| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /**
- * 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 entries)`
- }
- return `Mostrant de ${pageFrom} fins ${pageTo} - total ${totalRows} resultats`
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- 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'
- },
- formatClearFilters () {
- return 'Clear filters'
- },
- formatJumpTo () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ca-ES'])
- })(jQuery)
|