corrade-nucleus-nucleons – Blame information for rev 20

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