| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /**
- * Bootstrap Table Italian translation
- * Author: Davide Renzi<davide.renzi@gmail.com>
- * Author: Davide Borsatto <davide.borsatto@gmail.com>
- * Author: Alessio Felicioni <alessio.felicioni@gmail.com>
- */
- ($ => {
- $.fn.bootstrapTable.locales['it-IT'] = {
- formatLoadingMessage () {
- return 'Caricamento in corso'
- },
- formatRecordsPerPage (pageNumber) {
- return `${pageNumber} elementi per pagina`
- },
- formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered < totalRows) {
- return `Visualizzazione da ${pageFrom} a ${pageTo} di ${totalRows} elementi (filtered from ${totalNotFiltered} total entries)`
- }
- return `Visualizzazione da ${pageFrom} a ${pageTo} di ${totalRows} elementi`
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- formatSearch () {
- return 'Cerca'
- },
- formatNoMatches () {
- return 'Nessun elemento trovato'
- },
- formatPaginationSwitch () {
- return 'Nascondi/Mostra paginazione'
- },
- formatRefresh () {
- return 'Aggiorna'
- },
- formatToggle () {
- return 'Attiva/Disattiva'
- },
- formatColumns () {
- return 'Colonne'
- },
- formatFullscreen () {
- return 'Fullscreen'
- },
- formatAllRows () {
- return 'Tutto'
- },
- formatAutoRefresh () {
- return 'Auto Refresh'
- },
- formatExport () {
- return 'Esporta dati'
- },
- formatClearFilters () {
- return 'Pulisci filtri'
- },
- formatJumpTo () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['it-IT'])
- })(jQuery)
|