You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
863 B

  1. /**
  2. * Bootstrap Table French (Belgium) translation
  3. * Author: Julien Bisconti (julien.bisconti@gmail.com)
  4. */
  5. (function ($) {
  6. 'use strict';
  7. $.fn.bootstrapTable.locales['fr-BE'] = {
  8. formatLoadingMessage: function () {
  9. return 'Chargement en cours...';
  10. },
  11. formatRecordsPerPage: function (pageNumber) {
  12. return pageNumber + ' entrées par page';
  13. },
  14. formatShowingRows: function (pageFrom, pageTo, totalRows) {
  15. return 'Affiche de' + pageFrom + ' à ' + pageTo + ' sur ' + totalRows + ' lignes';
  16. },
  17. formatSearch: function () {
  18. return 'Recherche';
  19. },
  20. formatNoMatches: function () {
  21. return 'Pas de fichiers trouvés';
  22. }
  23. };
  24. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-BE']);
  25. })(jQuery);