-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
95 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
export default { | ||
lang: 'lu', | ||
label: { | ||
clear: 'Eidel', | ||
ok: 'OK', | ||
cancel: 'Oofbriechen', | ||
close: 'Schléissen', | ||
set: 'Setzen', | ||
select: 'Auswielen', | ||
reset: 'Zerécksetzen', | ||
remove: 'Läschen', | ||
update: 'Aktualiséieren', | ||
create: 'Erstellen', | ||
search: 'Sichen', | ||
filter: 'Filter', | ||
refresh: 'Aktualiséieren' | ||
}, | ||
date: { | ||
days: 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split('_'), | ||
daysShort: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'), | ||
months: 'Januar_Februar_März_Abrëll_Mäi_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'), | ||
monthsShort: 'Jan_Feb_Mär_Abr_Mäi_Jun_Jul_Aug_Sep_Okt_Nov_Dec'.split('_'), | ||
firstDayOfWeek: 1, // 0-6, 0 - Sunday, 1 Monday, ... | ||
format24h: true | ||
}, | ||
pullToRefresh: { | ||
pull: 'Zéien fir ze aktualiséieren', | ||
release: 'Lassloossen fir ze aktualiséieren', | ||
refresh: 'Luedt...' | ||
}, | ||
table: { | ||
noData: 'Keng Donnéen do', | ||
noResults: 'Keng Anträg fonnt', | ||
loading: 'Luedt...', | ||
selectedRows: function (rows) { | ||
return rows === 1 | ||
? '1 ausgewielten Zeil.' | ||
: (rows === 0 ? 'Keng' : rows) + ' Zeilen ausgewielt.' | ||
}, | ||
rowsPerPage: 'Zeilen pro Säit:', | ||
allRows: 'All', | ||
pagination: function (start, end, total) { | ||
return start + '-' + end + ' vun ' + total | ||
}, | ||
columns: 'Kolonnen' | ||
}, | ||
editor: { | ||
url: 'URL', | ||
bold: 'Fett', | ||
italic: 'Kursiv', | ||
strikethrough: 'Duerchgestrach', | ||
underline: 'Ënnerstrach', | ||
unorderedList: 'Ongeuerdnet Lëscht', | ||
orderedList: 'Geuerdnet Lëscht', | ||
subscript: 'déifgestallt', | ||
superscript: 'héichgestallt', | ||
hyperlink: 'Link', | ||
toggleFullscreen: 'Vollbild ëmschalten', | ||
quote: 'Zitat', | ||
left: 'lenksbündeg', | ||
center: 'zentréiert', | ||
right: 'riedsbündeg', | ||
justify: 'Ausriichten', | ||
print: 'Drucken', | ||
outdent: 'ausrëcken', | ||
indent: 'anrëcken', | ||
removeFormat: 'Formatéierung löschen', | ||
formatting: 'Formatéiere', | ||
fontSize: 'Schrëftgréisst', | ||
align: 'Ausriichten', | ||
hr: 'Horizontal Linn ansëtzen', | ||
undo: 'Réckgängeg', | ||
redo: 'Restauréieren', | ||
header1: 'Iwwerschrëft 1', | ||
header2: 'Iwwerschrëft 2', | ||
header3: 'Iwwerschrëft 3', | ||
header4: 'Iwwerschrëft 4', | ||
header5: 'Iwwerschrëft 5', | ||
header6: 'Iwwerschrëft 6', | ||
paragraph: 'Paragraphe', | ||
code: 'Code', | ||
size1: 'Ganz kleng', | ||
size2: 'E bëssi kleng', | ||
size3: 'Normal', | ||
size4: 'Grouss', | ||
size5: 'Gréisser', | ||
size6: 'Ganz grouss', | ||
size7: 'Maximum', | ||
defaultFont: 'Standard Schrëft' | ||
}, | ||
tree: { | ||
noNodes: 'Keng Kniet verfügbar', | ||
noResults: 'Keng passend Kniet fonnt' | ||
} | ||
} |