bootstrap-table-fr-FR.js 3.8 KB

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