Sha256: 6c452822f8456f853133bd9a28c299fb83f56be15731e3190b99c4851553415a
Contents?: true
Size: 863 Bytes
Versions: 9
Compression:
Stored size: 863 Bytes
Contents
/** * Bootstrap Table French (Belgium) translation * Author: Julien Bisconti (julien.bisconti@gmail.com) */ (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);
Version data entries
9 entries across 9 versions & 1 rubygems