Files
MangaStatus/src/locale/en.ts
2023-10-06 19:49:31 +02:00

70 lines
1.5 KiB
TypeScript

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: 'Last chapters',
},
progress: 'Progress',
score: 'Score',
status: {
'paused': 'Paused',
'completed': 'Completed',
'reading': 'Reading',
'planning': 'Planning',
'dropped': 'Dropped',
},
title: 'Title',
},
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',
},
};