bootstrap-table-fr-FR.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /**
  2. * Bootstrap Table French (France) translation
  3. * Author: Dennis Hernández (http://djhvscf.github.io/Blog/)
  4. * Modification: Tidalf (https://github.com/TidalfFR)
  5. */
  6. ($ => {
  7. $.fn.bootstrapTable.locales['fr-FR'] = {
  8. formatLoadingMessage () {
  9. return 'Chargement en cours, patientez, s´il vous plaît ...'
  10. },
  11. formatRecordsPerPage (pageNumber) {
  12. return `${pageNumber} lignes par page`
  13. },
  14. formatShowingRows (pageFrom, pageTo, totalRows) {
  15. return `Affichage des lignes ${pageFrom} à ${pageTo} sur ${totalRows} lignes au total`
  16. },
  17. formatDetailPagination (totalRows) {
  18. return `Showing ${totalRows} rows`
  19. },
  20. formatSearch () {
  21. return 'Rechercher'
  22. },
  23. formatNoMatches () {
  24. return 'Aucun résultat trouvé'
  25. },
  26. formatPaginationSwitch () {
  27. return 'Montrer/Masquer pagination'
  28. },
  29. formatRefresh () {
  30. return 'Rafraîchir'
  31. },
  32. formatToggle () {
  33. return 'Alterner'
  34. },
  35. formatColumns () {
  36. return 'Colonnes'
  37. },
  38. formatFullscreen () {
  39. return 'Fullscreen'
  40. },
  41. formatAllRows () {
  42. return 'Tous'
  43. },
  44. formatAutoRefresh () {
  45. return 'Auto Refresh'
  46. },
  47. formatExport () {
  48. return 'Exporter les données'
  49. },
  50. formatClearFilters () {
  51. return 'Vider les filtres'
  52. },
  53. formatJumpto () {
  54. return 'GO'
  55. },
  56. formatAdvancedSearch () {
  57. return 'Recherche avancée'
  58. },
  59. formatAdvancedCloseButton () {
  60. return 'Fermer'
  61. }
  62. }
  63. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-FR'])
  64. })(jQuery)