Files
MangaStatus/frontend/src/locale/en.ts

84 lines
1.7 KiB
TypeScript

export const messagesEn = {
aniList: {
username: 'AniList username',
},
design: 'Design',
fetch: {
general: {
finished: 'Finished',
starting: 'Starting',
},
mangaDex: {
relations: 'Relations',
},
mangaUpdates: {
chapters: 'Chapters',
relations: 'Relations',
series: 'Series',
},
},
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',
},
},
menu: {
about: 'About',
list: 'List',
},
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',
},
};