bootstrap-table-fr-LU.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /**
  2. * Bootstrap Table French (Luxembourg) translation
  3. * Author: Nevets82 <Nevets82@gmail.com>
  4. * Editor: David Morais Ferreira (https://github.com/DavidMoraisFerreira/)
  5. */
  6. $.fn.bootstrapTable.locales['fr-LU'] = {
  7. formatCopyRows () {
  8. return 'Copier les lignes'
  9. },
  10. formatPrint () {
  11. return 'Imprimer'
  12. },
  13. formatLoadingMessage () {
  14. return 'Chargement en cours'
  15. },
  16. formatRecordsPerPage (pageNumber) {
  17. return `${pageNumber} lignes par page`
  18. },
  19. formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
  20. if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
  21. return `Affichage de ${pageFrom} à ${pageTo} sur ${totalRows} lignes (filtrées à partir de ${totalNotFiltered} lignes)`
  22. }
  23. return `Affichage de ${pageFrom} à ${pageTo} sur ${totalRows} lignes`
  24. },
  25. formatSRPaginationPreText () {
  26. return 'page précédente'
  27. },
  28. formatSRPaginationPageText (page) {
  29. return `vers la page ${page}`
  30. },
  31. formatSRPaginationNextText () {
  32. return 'page suivante'
  33. },
  34. formatDetailPagination (totalRows) {
  35. return `Affichage de ${totalRows} lignes`
  36. },
  37. formatClearSearch () {
  38. return 'Effacer la recherche'
  39. },
  40. formatSearch () {
  41. return 'Rechercher'
  42. },
  43. formatNoMatches () {
  44. return 'Aucun résultat'
  45. },
  46. formatPaginationSwitch () {
  47. return 'Masquer/Afficher la pagination'
  48. },
  49. formatPaginationSwitchDown () {
  50. return 'Afficher la pagination'
  51. },
  52. formatPaginationSwitchUp () {
  53. return 'Masquer la pagination'
  54. },
  55. formatRefresh () {
  56. return 'Actualiser'
  57. },
  58. formatToggleOn () {
  59. return 'Afficher la vue en cartes'
  60. },
  61. formatToggleOff () {
  62. return 'Cacher la vue en cartes'
  63. },
  64. formatColumns () {
  65. return 'Colonnes'
  66. },
  67. formatColumnsToggleAll () {
  68. return 'Tout afficher'
  69. },
  70. formatFullscreen () {
  71. return 'Plein écran'
  72. },
  73. formatAllRows () {
  74. return 'Tout'
  75. },
  76. formatAutoRefresh () {
  77. return 'Actualiser automatiquement'
  78. },
  79. formatExport () {
  80. return 'Exporter'
  81. },
  82. formatJumpTo () {
  83. return 'Aller à'
  84. },
  85. formatAdvancedSearch () {
  86. return 'Recherche avancée'
  87. },
  88. formatAdvancedCloseButton () {
  89. return 'Fermer'
  90. },
  91. formatFilterControlSwitch () {
  92. return 'Masquer/Afficher les contrôles'
  93. },
  94. formatFilterControlSwitchHide () {
  95. return 'Masquer les contrôles'
  96. },
  97. formatFilterControlSwitchShow () {
  98. return 'Afficher les contrôles'
  99. },
  100. formatToggleCustomViewOn () {
  101. return 'Afficher la vue personnalisée'
  102. },
  103. formatToggleCustomViewOff () {
  104. return 'Cacher la vue personnalisée'
  105. },
  106. formatClearFilters () {
  107. return 'Retirer les filtres'
  108. },
  109. formatAddLevel () {
  110. return 'Ajouter un niveau'
  111. },
  112. formatCancel () {
  113. return 'Annuler'
  114. },
  115. formatColumn () {
  116. return 'Colonne'
  117. },
  118. formatDeleteLevel () {
  119. return 'Supprimer un niveau'
  120. },
  121. formatDuplicateAlertTitle () {
  122. return 'Des entrées en double ont été trouvées !'
  123. },
  124. formatDuplicateAlertDescription () {
  125. return 'Veuillez supprimer ou modifier les entrées en double'
  126. },
  127. formatMultipleSort () {
  128. return 'Tri multiple'
  129. },
  130. formatOrder () {
  131. return 'Ordre'
  132. },
  133. formatSort () {
  134. return 'Trier'
  135. },
  136. formatSortBy () {
  137. return 'Trier par'
  138. },
  139. formatSortOrders () {
  140. return {
  141. asc: 'Ascendant',
  142. desc: 'Descendant'
  143. }
  144. },
  145. formatThenBy () {
  146. return 'Puis par'
  147. }
  148. }
  149. Object.assign($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-LU'])