mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
29 lines
863 B
JavaScript
Executable file
29 lines
863 B
JavaScript
Executable file
/**
|
|
* Bootstrap Table French (Belgium) translation
|
|
* Author: Julien Bisconti ([email protected])
|
|
*/
|
|
(function ($) {
|
|
'use strict';
|
|
|
|
$.fn.bootstrapTable.locales['fr-BE'] = {
|
|
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';
|
|
}
|
|
};
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-BE']);
|
|
|
|
})(jQuery);
|