bootstrap-table-fr-BE.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define([], factory);
  4. } else if (typeof exports !== "undefined") {
  5. factory();
  6. } else {
  7. var mod = {
  8. exports: {}
  9. };
  10. factory();
  11. global.bootstrapTableFrBE = mod.exports;
  12. }
  13. })(this, function () {
  14. 'use strict';
  15. /**
  16. * Bootstrap Table French (Belgium) translation
  17. * Author: Julien Bisconti (julien.bisconti@gmail.com)
  18. */
  19. (function ($) {
  20. $.fn.bootstrapTable.locales['fr-BE'] = {
  21. formatLoadingMessage: function formatLoadingMessage() {
  22. return 'Chargement en cours...';
  23. },
  24. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  25. return pageNumber + ' entr\xE9es par page';
  26. },
  27. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  28. return 'Affiche de' + pageFrom + ' \xE0 ' + pageTo + ' sur ' + totalRows + ' lignes';
  29. },
  30. formatSearch: function formatSearch() {
  31. return 'Recherche';
  32. },
  33. formatNoMatches: function formatNoMatches() {
  34. return 'Pas de fichiers trouvés';
  35. }
  36. };
  37. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-BE']);
  38. })(jQuery);
  39. });