bootstrap-table-fr-BE.js 2.2 KB

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