|
@@ -1,30 +1,44 @@
|
|
|
/**
|
|
/**
|
|
|
* Bootstrap Table French (Suisse) translation
|
|
* Bootstrap Table French (Suisse) translation
|
|
|
* Author: Nevets82 <Nevets82@gmail.com>
|
|
* Author: Nevets82 <Nevets82@gmail.com>
|
|
|
- */
|
|
|
|
|
|
|
+*/
|
|
|
|
|
|
|
|
$.fn.bootstrapTable.locales['fr-CH'] = {
|
|
$.fn.bootstrapTable.locales['fr-CH'] = {
|
|
|
- // General.
|
|
|
|
|
- formatAllRows () {
|
|
|
|
|
- return 'Tout'
|
|
|
|
|
|
|
+ formatCopyRows () {
|
|
|
|
|
+ return 'Copier les lignes'
|
|
|
},
|
|
},
|
|
|
- formatClearSearch () {
|
|
|
|
|
- return 'Effacer la recherche'
|
|
|
|
|
|
|
+ formatPrint () {
|
|
|
|
|
+ return 'Imprimer'
|
|
|
},
|
|
},
|
|
|
- formatColumns () {
|
|
|
|
|
- return 'Colonnes'
|
|
|
|
|
|
|
+ formatLoadingMessage () {
|
|
|
|
|
+ return 'Chargement en cours'
|
|
|
},
|
|
},
|
|
|
- formatColumnsToggleAll () {
|
|
|
|
|
- return 'Tout afficher'
|
|
|
|
|
|
|
+ formatRecordsPerPage (pageNumber) {
|
|
|
|
|
+ return `${pageNumber} lignes par page`
|
|
|
|
|
+ },
|
|
|
|
|
+ formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
|
|
+ if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
|
|
+ return `Affichage de ${pageFrom} à ${pageTo} sur ${totalRows} lignes (filtrées à partir de ${totalNotFiltered} lignes)`
|
|
|
|
|
+ }
|
|
|
|
|
+ return `Affichage de ${pageFrom} Ã ${pageTo} sur ${totalRows} lignes`
|
|
|
|
|
+ },
|
|
|
|
|
+ formatSRPaginationPreText () {
|
|
|
|
|
+ return 'page précédente'
|
|
|
|
|
+ },
|
|
|
|
|
+ formatSRPaginationPageText (page) {
|
|
|
|
|
+ return `vers la page ${page}`
|
|
|
|
|
+ },
|
|
|
|
|
+ formatSRPaginationNextText () {
|
|
|
|
|
+ return 'page suivante'
|
|
|
},
|
|
},
|
|
|
formatDetailPagination (totalRows) {
|
|
formatDetailPagination (totalRows) {
|
|
|
return `Affichage de ${totalRows} lignes`
|
|
return `Affichage de ${totalRows} lignes`
|
|
|
},
|
|
},
|
|
|
- formatFullscreen () {
|
|
|
|
|
- return 'Plein écran'
|
|
|
|
|
|
|
+ formatClearSearch () {
|
|
|
|
|
+ return 'Effacer la recherche'
|
|
|
},
|
|
},
|
|
|
- formatLoadingMessage () {
|
|
|
|
|
- return 'Chargement en cours'
|
|
|
|
|
|
|
+ formatSearch () {
|
|
|
|
|
+ return 'Rechercher'
|
|
|
},
|
|
},
|
|
|
formatNoMatches () {
|
|
formatNoMatches () {
|
|
|
return 'Aucun résultat'
|
|
return 'Aucun résultat'
|
|
@@ -38,63 +52,41 @@ $.fn.bootstrapTable.locales['fr-CH'] = {
|
|
|
formatPaginationSwitchUp () {
|
|
formatPaginationSwitchUp () {
|
|
|
return 'Masquer la pagination'
|
|
return 'Masquer la pagination'
|
|
|
},
|
|
},
|
|
|
- formatRecordsPerPage (pageNumber) {
|
|
|
|
|
- return `${pageNumber} lignes par page`
|
|
|
|
|
- },
|
|
|
|
|
formatRefresh () {
|
|
formatRefresh () {
|
|
|
return 'Actualiser'
|
|
return 'Actualiser'
|
|
|
},
|
|
},
|
|
|
- formatSearch () {
|
|
|
|
|
- return 'Rechercher'
|
|
|
|
|
- },
|
|
|
|
|
- formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
|
|
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
|
|
- return `Affichage de ${pageFrom} à ${pageTo} sur ${totalRows} lignes (filtrées à partir de ${totalNotFiltered} lignes)`
|
|
|
|
|
- }
|
|
|
|
|
- return `Affichage de ${pageFrom} Ã ${pageTo} sur ${totalRows} lignes`
|
|
|
|
|
- },
|
|
|
|
|
- formatSRPaginationNextText () {
|
|
|
|
|
- return 'page suivante'
|
|
|
|
|
- },
|
|
|
|
|
- formatSRPaginationPageText (page) {
|
|
|
|
|
- return `vers la page ${page}`
|
|
|
|
|
- },
|
|
|
|
|
- formatSRPaginationPreText () {
|
|
|
|
|
- return 'page précédente'
|
|
|
|
|
- },
|
|
|
|
|
formatToggleOn () {
|
|
formatToggleOn () {
|
|
|
return 'Afficher la vue en cartes'
|
|
return 'Afficher la vue en cartes'
|
|
|
},
|
|
},
|
|
|
formatToggleOff () {
|
|
formatToggleOff () {
|
|
|
return 'Cacher la vue en cartes'
|
|
return 'Cacher la vue en cartes'
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
- // Extension: Auto Refresh.
|
|
|
|
|
- formatAutoRefresh () {
|
|
|
|
|
- return 'Actualiser automatiquement'
|
|
|
|
|
|
|
+ formatColumns () {
|
|
|
|
|
+ return 'Colonnes'
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
- // Extension: Copy Rows.
|
|
|
|
|
- formatCopyRows () {
|
|
|
|
|
- return 'Copier les lignes'
|
|
|
|
|
|
|
+ formatColumnsToggleAll () {
|
|
|
|
|
+ return 'Tout afficher'
|
|
|
|
|
+ },
|
|
|
|
|
+ formatFullscreen () {
|
|
|
|
|
+ return 'Plein écran'
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
- // Extension: Custom View.
|
|
|
|
|
- formatToggleCustomViewOn () {
|
|
|
|
|
- return 'Afficher la vue personnalisée'
|
|
|
|
|
|
|
+ formatAllRows () {
|
|
|
|
|
+ return 'Tout'
|
|
|
},
|
|
},
|
|
|
- formatToggleCustomViewOff () {
|
|
|
|
|
- return 'Cacher la vue personnalisée'
|
|
|
|
|
|
|
+ formatAutoRefresh () {
|
|
|
|
|
+ return 'Actualiser automatiquement'
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
- // Extension: Export.
|
|
|
|
|
formatExport () {
|
|
formatExport () {
|
|
|
return 'Exporter'
|
|
return 'Exporter'
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
- // Extension: Filter Control.
|
|
|
|
|
- formatClearFilters () {
|
|
|
|
|
- return 'Retirer les filtres'
|
|
|
|
|
|
|
+ formatJumpTo () {
|
|
|
|
|
+ return 'Aller à '
|
|
|
|
|
+ },
|
|
|
|
|
+ formatAdvancedSearch () {
|
|
|
|
|
+ return 'Recherche avancée'
|
|
|
|
|
+ },
|
|
|
|
|
+ formatAdvancedCloseButton () {
|
|
|
|
|
+ return 'Fermer'
|
|
|
},
|
|
},
|
|
|
formatFilterControlSwitch () {
|
|
formatFilterControlSwitch () {
|
|
|
return 'Masquer/Afficher les contrôles'
|
|
return 'Masquer/Afficher les contrôles'
|
|
@@ -105,8 +97,15 @@ $.fn.bootstrapTable.locales['fr-CH'] = {
|
|
|
formatFilterControlSwitchShow () {
|
|
formatFilterControlSwitchShow () {
|
|
|
return 'Afficher les contrôles'
|
|
return 'Afficher les contrôles'
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
- // Extension: Multiple Sort.
|
|
|
|
|
|
|
+ formatToggleCustomViewOn () {
|
|
|
|
|
+ return 'Afficher la vue personnalisée'
|
|
|
|
|
+ },
|
|
|
|
|
+ formatToggleCustomViewOff () {
|
|
|
|
|
+ return 'Cacher la vue personnalisée'
|
|
|
|
|
+ },
|
|
|
|
|
+ formatClearFilters () {
|
|
|
|
|
+ return 'Retirer les filtres'
|
|
|
|
|
+ },
|
|
|
formatAddLevel () {
|
|
formatAddLevel () {
|
|
|
return 'Ajouter un niveau'
|
|
return 'Ajouter un niveau'
|
|
|
},
|
|
},
|
|
@@ -145,24 +144,6 @@ $.fn.bootstrapTable.locales['fr-CH'] = {
|
|
|
},
|
|
},
|
|
|
formatThenBy () {
|
|
formatThenBy () {
|
|
|
return 'Puis par'
|
|
return 'Puis par'
|
|
|
- },
|
|
|
|
|
-
|
|
|
|
|
- // Extension: Page Jump To.
|
|
|
|
|
- formatJumpTo () {
|
|
|
|
|
- return 'Aller à '
|
|
|
|
|
- },
|
|
|
|
|
-
|
|
|
|
|
- // Extension: Print.
|
|
|
|
|
- formatPrint () {
|
|
|
|
|
- return 'Imprimer'
|
|
|
|
|
- },
|
|
|
|
|
-
|
|
|
|
|
- // Extension: Toolbar.
|
|
|
|
|
- formatAdvancedCloseButton () {
|
|
|
|
|
- return 'Fermer'
|
|
|
|
|
- },
|
|
|
|
|
- formatAdvancedSearch () {
|
|
|
|
|
- return 'Recherche avancée'
|
|
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|