| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /**
- * Bootstrap Table French (Luxembourg) translation
- * Author: Nevets82 <Nevets82@gmail.com>
- * Editor: David Morais Ferreira (https://github.com/DavidMoraisFerreira/)
- */
- $.fn.bootstrapTable.locales['fr-LU'] = {
- formatCopyRows () {
- return 'Copier les lignes'
- },
- formatPrint () {
- return 'Imprimer'
- },
- formatLoadingMessage () {
- return 'Chargement en cours'
- },
- formatRecordsPerPage (pageNumber) {
- return `${pageNumber} lignes par page`
- },
- formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return `Affiche de ${pageFrom} à ${pageTo} sur ${totalRows} lignes (filtrés à partir de ${totalNotFiltered} lignes)`
- }
- return `Affiche 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) {
- return `Affiche ${totalRows} lignes`
- },
- formatClearSearch () {
- return 'Effacer la recherche'
- },
- formatSearch () {
- return 'Recherche'
- },
- formatNoMatches () {
- return 'Pas de lignes trouvés'
- },
- formatPaginationSwitch () {
- return 'Cacher/Afficher pagination'
- },
- formatPaginationSwitchDown () {
- return 'Afficher pagination'
- },
- formatPaginationSwitchUp () {
- return 'Cacher pagination'
- },
- formatRefresh () {
- return 'Rafraichir'
- },
- formatToggle () {
- return 'Basculer'
- },
- formatToggleOn () {
- return 'Afficher vue carte'
- },
- formatToggleOff () {
- return 'Cacher vue carte'
- },
- formatColumns () {
- return 'Colonnes'
- },
- formatColumnsToggleAll () {
- return 'Tout basculer'
- },
- formatFullscreen () {
- return 'Plein écran'
- },
- formatAllRows () {
- return 'Tout'
- },
- formatAutoRefresh () {
- return 'Rafraîchissement automatique'
- },
- formatExport () {
- return 'Exporter les données'
- },
- formatJumpTo () {
- return 'Aller à'
- },
- formatAdvancedSearch () {
- return 'Recherche avancée'
- },
- formatAdvancedCloseButton () {
- return 'Fermer'
- },
- formatFilterControlSwitch () {
- return 'Cacher/Afficher controls'
- },
- formatFilterControlSwitchHide () {
- return 'Cacher controls'
- },
- formatFilterControlSwitchShow () {
- return 'Afficher controls'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-LU'])
|