-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/add
- Loading branch information
Showing
9 changed files
with
125 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
/** | ||
* Bootstrap Table French (Luxembourg) translation | ||
* Author: Nevets82 <[email protected]> | ||
* Editor: David Morais Ferreira (https://github.com/DavidMoraisFerreira/) | ||
*/ | ||
|
||
$.fn.bootstrapTable.locales['fr-LU'] = { | ||
formatCopyRows () { | ||
return 'Copy Rows' | ||
return 'Copier les lignes' | ||
}, | ||
formatPrint () { | ||
return 'Print' | ||
return 'Imprimer' | ||
}, | ||
formatLoadingMessage () { | ||
return 'Chargement en cours' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
/** | ||
* Bootstrap Table Luxembourgish translation | ||
* Author: David Morais Ferreira (https://github.com/DavidMoraisFerreira) | ||
*/ | ||
|
||
$.fn.bootstrapTable.locales['lb-LU'] = $.fn.bootstrapTable.locales['lb'] = { | ||
formatCopyRows () { | ||
return 'Zeilen kopéieren' | ||
}, | ||
formatPrint () { | ||
return 'Drécken' | ||
}, | ||
formatLoadingMessage () { | ||
return 'Gëtt gelueden, gedellëgt Iech wannechgelift ee Moment' | ||
}, | ||
formatRecordsPerPage (pageNumber) { | ||
return `${pageNumber} Zeilen per Säit` | ||
}, | ||
formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) { | ||
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) { | ||
return `Weist Zeil ${pageFrom} bis ${pageTo} vun ${totalRows} Zeil${(totalRows > 1) ? 'en' : ''} (gefiltert vun insgesamt ${totalNotFiltered} Zeil${(totalRows > 1) ? 'en' : ''})` | ||
} | ||
|
||
return `Weist Zeil ${pageFrom} bis ${pageTo} vun ${totalRows} Zeil${(totalRows > 1) ? 'en' : ''}` | ||
}, | ||
formatSRPaginationPreText () { | ||
return 'viregt Säit' | ||
}, | ||
formatSRPaginationPageText (page) { | ||
return `op Säit ${page}` | ||
}, | ||
formatSRPaginationNextText () { | ||
return 'nächst Säit' | ||
}, | ||
formatDetailPagination (totalRows) { | ||
return `Weist ${totalRows} Zeilen` | ||
}, | ||
formatClearSearch () { | ||
return 'Sich réckgängeg maachen' | ||
}, | ||
formatSearch () { | ||
return 'Sich' | ||
}, | ||
formatNoMatches () { | ||
return 'Keng passend Anträg fonnt' | ||
}, | ||
formatPaginationSwitch () { | ||
return 'Paginatioun uweisen/verstoppen' | ||
}, | ||
formatPaginationSwitchDown () { | ||
return 'Paginatioun uweisen' | ||
}, | ||
formatPaginationSwitchUp () { | ||
return 'Paginatioun verstoppen' | ||
}, | ||
formatRefresh () { | ||
return 'Nei lueden' | ||
}, | ||
formatToggle () { | ||
return 'Ëmschalten' | ||
}, | ||
formatToggleOn () { | ||
return 'Kaartenusiicht uweisen' | ||
}, | ||
formatToggleOff () { | ||
return 'Kaartenusiicht verstoppen' | ||
}, | ||
formatColumns () { | ||
return 'Kolonnen' | ||
}, | ||
formatColumnsToggleAll () { | ||
return 'All ëmschalten' | ||
}, | ||
formatFullscreen () { | ||
return 'Vollbild' | ||
}, | ||
formatAllRows () { | ||
return 'All' | ||
}, | ||
formatAutoRefresh () { | ||
return 'Automatescht neilueden' | ||
}, | ||
formatExport () { | ||
return 'Daten exportéieren' | ||
}, | ||
formatJumpTo () { | ||
return 'Sprangen' | ||
}, | ||
formatAdvancedSearch () { | ||
return 'Erweidert Sich' | ||
}, | ||
formatAdvancedCloseButton () { | ||
return 'Zoumaachen' | ||
}, | ||
formatFilterControlSwitch () { | ||
return 'Schaltelementer uweisen/verstoppen' | ||
}, | ||
formatFilterControlSwitchHide () { | ||
return 'Schaltelementer verstoppen' | ||
}, | ||
formatFilterControlSwitchShow () { | ||
return 'Schaltelementer uweisen' | ||
} | ||
} | ||
|
||
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['lb-LU']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters