1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | $.fn.bootstrapTable.locales['it-IT'] = $.fn.bootstrapTable.locales['it'] = {
|
9 | formatCopyRows () {
|
10 | return 'Copy Rows'
|
11 | },
|
12 | formatPrint () {
|
13 | return 'Print'
|
14 | },
|
15 | formatLoadingMessage () {
|
16 | return 'Caricamento in corso'
|
17 | },
|
18 | formatRecordsPerPage (pageNumber) {
|
19 | return `${pageNumber} elementi per pagina`
|
20 | },
|
21 | formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
|
22 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
23 | return `Visualizzazione da ${pageFrom} a ${pageTo} di ${totalRows} elementi (filtrati da ${totalNotFiltered} elementi totali)`
|
24 | }
|
25 |
|
26 | return `Visualizzazione da ${pageFrom} a ${pageTo} di ${totalRows} elementi`
|
27 | },
|
28 | formatSRPaginationPreText () {
|
29 | return 'pagina precedente'
|
30 | },
|
31 | formatSRPaginationPageText (page) {
|
32 | return `alla pagina ${page}`
|
33 | },
|
34 | formatSRPaginationNextText () {
|
35 | return 'pagina successiva'
|
36 | },
|
37 | formatDetailPagination (totalRows) {
|
38 | return `Mostrando ${totalRows} elementi`
|
39 | },
|
40 | formatClearSearch () {
|
41 | return 'Pulisci filtri'
|
42 | },
|
43 | formatSearch () {
|
44 | return 'Cerca'
|
45 | },
|
46 | formatNoMatches () {
|
47 | return 'Nessun elemento trovato'
|
48 | },
|
49 | formatPaginationSwitch () {
|
50 | return 'Nascondi/Mostra paginazione'
|
51 | },
|
52 | formatPaginationSwitchDown () {
|
53 | return 'Mostra paginazione'
|
54 | },
|
55 | formatPaginationSwitchUp () {
|
56 | return 'Nascondi paginazione'
|
57 | },
|
58 | formatRefresh () {
|
59 | return 'Aggiorna'
|
60 | },
|
61 | formatToggleOn () {
|
62 | return 'Mostra visuale a scheda'
|
63 | },
|
64 | formatToggleOff () {
|
65 | return 'Nascondi visuale a scheda'
|
66 | },
|
67 | formatColumns () {
|
68 | return 'Colonne'
|
69 | },
|
70 | formatColumnsToggleAll () {
|
71 | return 'Mostra tutte'
|
72 | },
|
73 | formatFullscreen () {
|
74 | return 'Schermo intero'
|
75 | },
|
76 | formatAllRows () {
|
77 | return 'Tutto'
|
78 | },
|
79 | formatAutoRefresh () {
|
80 | return 'Auto Aggiornamento'
|
81 | },
|
82 | formatExport () {
|
83 | return 'Esporta dati'
|
84 | },
|
85 | formatJumpTo () {
|
86 | return 'VAI'
|
87 | },
|
88 | formatAdvancedSearch () {
|
89 | return 'Filtri avanzati'
|
90 | },
|
91 | formatAdvancedCloseButton () {
|
92 | return 'Chiudi'
|
93 | },
|
94 | formatFilterControlSwitch () {
|
95 | return 'Hide/Show controls'
|
96 | },
|
97 | formatFilterControlSwitchHide () {
|
98 | return 'Hide controls'
|
99 | },
|
100 | formatFilterControlSwitchShow () {
|
101 | return 'Show controls'
|
102 | }
|
103 | }
|
104 |
|
105 | $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['it-IT'])
|