bootstrap-table-fr-LU.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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 `Affiche de ${pageFrom} à ${pageTo} sur ${totalRows} lignes (filtrés à partir de ${totalNotFiltered} lignes)`
  22. }
  23. return `Affiche 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 `Affiche ${totalRows} lignes`
  36. },
  37. formatClearSearch () {
  38. return 'Effacer la recherche'
  39. },
  40. formatSearch () {
  41. return 'Recherche'
  42. },
  43. formatNoMatches () {
  44. return 'Pas de lignes trouvés'
  45. },
  46. formatPaginationSwitch () {
  47. return 'Cacher/Afficher pagination'
  48. },
  49. formatPaginationSwitchDown () {
  50. return 'Afficher pagination'
  51. },
  52. formatPaginationSwitchUp () {
  53. return 'Cacher pagination'
  54. },
  55. formatRefresh () {
  56. return 'Rafraichir'
  57. },
  58. formatToggle () {
  59. return 'Basculer'
  60. },
  61. formatToggleOn () {
  62. return 'Afficher vue carte'
  63. },
  64. formatToggleOff () {
  65. return 'Cacher vue carte'
  66. },
  67. formatColumns () {
  68. return 'Colonnes'
  69. },
  70. formatColumnsToggleAll () {
  71. return 'Tout basculer'
  72. },
  73. formatFullscreen () {
  74. return 'Plein écran'
  75. },
  76. formatAllRows () {
  77. return 'Tout'
  78. },
  79. formatAutoRefresh () {
  80. return 'Rafraîchissement automatique'
  81. },
  82. formatExport () {
  83. return 'Exporter les données'
  84. },
  85. formatJumpTo () {
  86. return 'Aller à'
  87. },
  88. formatAdvancedSearch () {
  89. return 'Recherche avancée'
  90. },
  91. formatAdvancedCloseButton () {
  92. return 'Fermer'
  93. },
  94. formatFilterControlSwitch () {
  95. return 'Cacher/Afficher controls'
  96. },
  97. formatFilterControlSwitchHide () {
  98. return 'Cacher controls'
  99. },
  100. formatFilterControlSwitchShow () {
  101. return 'Afficher controls'
  102. }
  103. }
  104. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-LU'])