84 lines
1.8 KiB
TypeScript
84 lines
1.8 KiB
TypeScript
import {messagesEn} from '@/locale/en';
|
|
|
|
export const messagesDe = {
|
|
aniList: {
|
|
username: 'AniList Benutzername',
|
|
},
|
|
design: 'Design',
|
|
fetch: {
|
|
general: {
|
|
finished: 'Fertig',
|
|
starting: 'Starte',
|
|
},
|
|
mangaDex: {
|
|
relations: 'Relationen',
|
|
},
|
|
mangaUpdates: {
|
|
chapters: 'Kapitel',
|
|
relations: 'Relationen',
|
|
series: 'Kapitel',
|
|
},
|
|
},
|
|
filter: 'Filter',
|
|
locale: 'Sprache',
|
|
locales: messagesEn.locales,
|
|
localStorage: {
|
|
notSupported: 'Lokaler Speicher wird nicht unterstützt. Diese Anwendung funktioniert möglicherweise nicht!',
|
|
persistent: {
|
|
notSupported: 'Lokaler Speicher wird nicht persistent. Das könnte in längere Wartezeiten verursachen!',
|
|
},
|
|
},
|
|
manga: {
|
|
chapters: {
|
|
newCount: 'Neue Kapitel',
|
|
latest: 'Letzte Kapitel',
|
|
},
|
|
progress: 'Fortschritt',
|
|
score: 'Bewertung',
|
|
status: {
|
|
'paused': 'Pausiert',
|
|
'completed': 'Vollendet',
|
|
'reading': 'Lesen',
|
|
'planning': 'Geplant',
|
|
'dropped': 'Abgesetzt',
|
|
},
|
|
title: 'Titel',
|
|
},
|
|
mangaupdates: {
|
|
relation: {
|
|
found: 'gefunden',
|
|
},
|
|
},
|
|
menu: {
|
|
about: 'Über',
|
|
list: 'Liste',
|
|
},
|
|
search: 'Suche',
|
|
wakeLock: {
|
|
notSupported: 'Wake lock wird nicht unterstützt! Das Gerät könnte Sync-Funktion unterbrechen.',
|
|
permissionDenied: 'Wake lock ist nicht erlaubt! Das Gerät könnte Sync-Funktion unterbrechen.',
|
|
},
|
|
};
|
|
|
|
export const datetimeFormatsDe = {
|
|
date: {
|
|
year: 'numeric',
|
|
month: 'numeric',
|
|
day: 'numeric',
|
|
},
|
|
datetime: {
|
|
year: 'numeric',
|
|
month: 'numeric',
|
|
day: 'numeric',
|
|
hour: 'numeric',
|
|
minute: 'numeric',
|
|
},
|
|
datetimeSeconds: {
|
|
year: 'numeric',
|
|
month: 'numeric',
|
|
day: 'numeric',
|
|
hour: 'numeric',
|
|
minute: 'numeric',
|
|
seconds: 'numeric',
|
|
},
|
|
}; |