refactor: move project to frontend directory
This commit is contained in:
75
frontend/src/locale/en.ts
Normal file
75
frontend/src/locale/en.ts
Normal 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',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user