refactor: move project to frontend directory

This commit is contained in:
wea_ondara
2023-10-08 11:20:02 +02:00
parent 2a9cfba4d8
commit 34b0135da7
79 changed files with 2 additions and 2 deletions

74
frontend/src/locale/de.ts Normal file
View File

@@ -0,0 +1,74 @@
import {messagesEn} from '@/locale/en';
export const messagesDe = {
aniList: {
username: 'AniList Benutzername',
},
design: 'Design',
fetch: {
mangaUpdates: {
chapters: 'Kapitel',
finished: 'Fertig',
relations: 'Relationen',
series: 'Kapitel',
starting: 'Starte',
},
},
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',
},
},
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',
},
};