UNPKG

2.52 kBJavaScriptView Raw
1/**
2 * Bootstrap Table French (Luxembourg) translation
3 * Author: Nevets82 <Nevets82@gmail.com>
4 * Editor: David Morais Ferreira (https://github.com/DavidMoraisFerreira/)
5 */
6
7$.fn.bootstrapTable.locales['fr-LU'] = {
8 formatCopyRows () {
9 return 'Copier les lignes'
10 },
11 formatPrint () {
12 return 'Imprimer'
13 },
14 formatLoadingMessage () {
15 return 'Chargement en cours'
16 },
17 formatRecordsPerPage (pageNumber) {
18 return `${pageNumber} lignes par page`
19 },
20 formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
21 if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
22 return `Affiche de ${pageFrom} à ${pageTo} sur ${totalRows} lignes (filtrés à partir de ${totalNotFiltered} lignes)`
23 }
24
25 return `Affiche de ${pageFrom} à ${pageTo} sur ${totalRows} lignes`
26 },
27 formatSRPaginationPreText () {
28 return 'page précédente'
29 },
30 formatSRPaginationPageText (page) {
31 return `vers la page ${page}`
32 },
33 formatSRPaginationNextText () {
34 return 'page suivante'
35 },
36 formatDetailPagination (totalRows) {
37 return `Affiche ${totalRows} lignes`
38 },
39 formatClearSearch () {
40 return 'Effacer la recherche'
41 },
42 formatSearch () {
43 return 'Recherche'
44 },
45 formatNoMatches () {
46 return 'Pas de lignes trouvés'
47 },
48 formatPaginationSwitch () {
49 return 'Cacher/Afficher pagination'
50 },
51 formatPaginationSwitchDown () {
52 return 'Afficher pagination'
53 },
54 formatPaginationSwitchUp () {
55 return 'Cacher pagination'
56 },
57 formatRefresh () {
58 return 'Rafraichir'
59 },
60 formatToggleOn () {
61 return 'Afficher vue carte'
62 },
63 formatToggleOff () {
64 return 'Cacher vue carte'
65 },
66 formatColumns () {
67 return 'Colonnes'
68 },
69 formatColumnsToggleAll () {
70 return 'Tout basculer'
71 },
72 formatFullscreen () {
73 return 'Plein écran'
74 },
75 formatAllRows () {
76 return 'Tout'
77 },
78 formatAutoRefresh () {
79 return 'Rafraîchissement automatique'
80 },
81 formatExport () {
82 return 'Exporter les données'
83 },
84 formatJumpTo () {
85 return 'Aller à'
86 },
87 formatAdvancedSearch () {
88 return 'Recherche avancée'
89 },
90 formatAdvancedCloseButton () {
91 return 'Fermer'
92 },
93 formatFilterControlSwitch () {
94 return 'Cacher/Afficher controls'
95 },
96 formatFilterControlSwitchHide () {
97 return 'Cacher controls'
98 },
99 formatFilterControlSwitchShow () {
100 return 'Afficher controls'
101 }
102}
103
104Object.assign($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-LU'])