UNPKG

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