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

75
frontend/src/locale/en.ts Normal file
View File

@@ -0,0 +1,75 @@
export const messagesEn = {
aniList: {
username: 'AniList username',
},
design: 'Design',
fetch: {
mangaUpdates: {
chapters: 'Chapters',
finished: 'Finished',
relations: 'Relations',
series: 'Series',
starting: 'Starting',
},
},
locale: 'Language',
locales: {
'de': 'Deutsch',
'en': 'English',
},
localStorage: {
notSupported: 'Local storage is not supported. The application will probably not work!',
persistent: {
notSupported: 'Local storage will not be persisted. This could result in longer loading times!',
},
},
manga: {
chapters: {
newCount: 'New chapters',
latest: 'Latest chapters',
},
progress: 'Progress',
score: 'Score',
status: {
'paused': 'Paused',
'completed': 'Completed',
'reading': 'Reading',
'planning': 'Planning',
'dropped': 'Dropped',
},
title: 'Title',
},
mangaupdates: {
relation: {
found: 'found',
},
},
search: 'Search',
wakeLock: {
notSupported: 'Wake lock is not supported! The device could pause the sync function.',
permissionDenied: 'Wake lock is not allowed! The device could pause the sync function.',
},
};
export const datetimeFormatsEn = {
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',
},
};