aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Locale/english.ts
blob: f69d57c480ceceeebfcabc0fa9bf5a28d04646bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import type { Locale } from './layout';

const English: Locale = {
	navigation: {
		home: 'Home',
		completed: 'Completed',
		subtitleSchedule: 'Subtitle Schedule',
		newReleases: 'New Releases',
		tools: 'Tools',
		settings: 'Settings',
		profile: 'Profile',
		logIn: 'Log in with AniList',
		logOut: 'Log out'
	},
	settings: {
		tooltips: {
			author: 'Author of due.moe'
		},
		rssFeeds: {
			title: 'RSS Feeds',
			buttons: {
				copyToClipboard: 'Copy to clipboard'
			},
			tooltips: {
				rss: 'Web feed data format'
			}
		},
		display: {
			title: 'Display',
			categories: {
				media: {
					title: 'Media',
					fields: {
						outboundLinks: 'Outbound links',
						mediaTitleFormat: {
							title: 'Media title format',
							options: {
								english: 'English',
								romaji: 'Romaji',
								native: 'Native'
							},
							fields: {
								showFurigana: 'Show furigana'
							}
						}
					}
				},
				dateAndTime: {
					title: 'Date & Time',
					fields: {
						disableLastActivityWarning: 'Disable last activity warning',
						rightAlignCountdown: 'Align anime episode countdown to the right',
						use24HourTime: 'Use 24-hour time format for episode countdown',
						nativeEpisodeCountdown: 'Show episode countdown in native release date & time',
						abbreviateCountdown: 'Abbreviate episode countdown date & time units'
					}
				},
				motionAndAccessibility: {
					title: 'Motion & Accessibility',
					fields: {
						disablePageTransitionAnimations: 'Disable page transition animations',
						disableNotifications: 'Disable notifications',
						limitPanelAreaToScreenHeight: 'Limit panel area to screen height',
						interfaceLanguage: 'Interface language'
					}
				},
				collapsePanelsByDefault: 'Collapse panels by default',
				hidePanels: 'Hide panels',
				includeAdditionalMedia: 'Include additional media',
				helper: {
					title: 'Helper',
					options: {
						mai: 'Mai',
						nodoka: 'Nodoka',
						kaede: 'Kaede',
						none: 'None'
					},
					hint: "Let them remind you. It's for your own benefit."
				}
			},
			tooltips: {
				beta: 'Beta'
			}
		},
		debug: {
			title: 'Debug',
			tooltips: {
				version: 'Current due.moe version hash'
			}
		},
		calculation: {
			title: 'Calculation',
			fields: {
				roundDownChapters: {
					title: 'Round down chapters (recommended)',
					hint: 'Round chapters down to the nearest whole number (e.g., 50/50.6 would not be due)'
				},
				showMediaWithZeroProgress: {
					title: 'Show media with zero progress',
					hint: 'May potentially cause rate-limiting if you have over ~80 unresolved manga on your lists'
				},
				hideOutOfDateVolumeWarning: {
					title: 'Hide out-of-date volume warning'
				},
				smartChapterCountEstimation: {
					title: 'Enable smart chapter count calculation'
				}
			}
		},
		cache: {
			title: 'Cache'
		},
		attributions: {
			title: 'Attributions'
		},
		media: {
			anime: 'Anime',
			manga: 'Manga',
			upcomingAnime: 'Upcoming anime',
			pausedMedia: 'Paused media',
			unresolvedMedia: 'Unresolved media',
			plannedAnime: 'Planned anime'
		},
		languages: {
			english: 'English',
			japanese: 'Japanese'
		}
	},
	user: {
		badges: {
			backToProfile: 'Back to Profile',
			editMode: {
				disable: 'Disable Edit Mode',
				enable: 'Enable Edit Mode',
				imageURL: 'Image URL',
				activityURL: 'Activity URL',
				description: 'Description (Optional)',
				category: 'Category (Optional)',
				add: 'Add',
				update: 'Update',
				or: 'or',
				delete: 'Delete (Click Twice)'
			}
		}
	}
};

export default English;