Browse Source

Merge pull request #88 from veggiemonk/locale

adding locale fr_BE
文翼 11 years ago
parent
commit
d7ea0bfcd6
1 changed files with 25 additions and 0 deletions
  1. 25 0
      src/locale/bootstrap-table-fr_BE.js

+ 25 - 0
src/locale/bootstrap-table-fr_BE.js

@@ -0,0 +1,25 @@
+/**
+ * Bootstrap Table French (Belgium) translation
+ * Author: Julien Bisconti (julien.bisconti@gmail.com)
+ */
+(function ($) {
+    'use strict';
+
+    $.extend($.fn.bootstrapTable.defaults, {
+        formatLoadingMessage: function() {
+            return 'Chargement en cours...';
+        },
+        formatRecordsPerPage: function(pageNumber) {
+            return pageNumber + ' entrées par page';
+        },
+        formatShowingRows: function(pageFrom, pageTo, totalRows) {
+            return 'Affiche de' + pageFrom + ' à ' + pageTo + ' sur ' + totalRows + ' lignes';
+        },
+        formatSearch: function() {
+            return 'Recherche'
+        },
+        formatNoMatches: function() {
+            return 'Pas de fichiers trouvés';
+        }
+    });
+})(jQuery);