corrade-nucleus-nucleons – Blame information for rev 17

Subversion Repositories:
Rev:
Rev Author Line No. Line
17 office 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 (function ($) {
7 'use strict';
8  
9 $.fn.bootstrapTable.locales['fr-FR'] = {
10 formatLoadingMessage: function () {
11 return 'Chargement en cours, patientez, s´il vous plaît ...';
12 },
13 formatRecordsPerPage: function (pageNumber) {
14 return pageNumber + ' lignes par page';
15 },
16 formatShowingRows: function (pageFrom, pageTo, totalRows) {
17 return 'Affichage des lignes ' + pageFrom + ' à ' + pageTo + ' sur ' + totalRows + ' lignes au total';
18 },
19 formatSearch: function () {
20 return 'Rechercher';
21 },
22 formatNoMatches: function () {
23 return 'Aucun résultat trouvé';
24 },
25 formatRefresh: function () {
26 return 'Rafraîchir';
27 },
28 formatToggle: function () {
29 return 'Alterner';
30 },
31 formatColumns: function () {
32 return 'Colonnes';
33 },
34 formatAllRows: function () {
35 return 'Tous';
36 }
37 };
38  
39 $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-FR']);
40  
41 })(jQuery);