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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
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',
schedule: 'Schedule'
},
settings: {
fields: {
notice: 'Notice:'
},
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: {
kaede: 'Kaede',
mai: 'Mai',
nodoka: 'Nodoka',
rio: 'Rio',
sakuta: 'Sakuta',
shouko: 'Shouko',
tomoe: 'Tomoe',
random: 'Random',
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)'
}
},
profile: {
statistics: '{username} has watched {anime} days of anime and read {manga} days of manga.',
badges: '{username} has collected {badges} badges using Badge Wall.'
}
},
lists: {
upcoming: {
episodes: {
title: 'Upcoming Episodes',
hint: 'Anime that you have seen all aired episodes of and have at least one scheduled episode left to air'
},
notYetReleased: {
title: 'Not Yet Released',
hint: 'Anime that have not yet aired any episodes'
}
},
due: {
episodes: {
title: 'Due Episodes',
hint: 'Airing anime that you have not seen all aired episodes of'
},
mangaAndLightNovels: {
title: 'Manga & Light Novels',
hint: 'Releasing manga and light novels that you have not read all available chapters of'
}
},
completed: {
anime: {
title: 'Anime',
hint: 'Concluded anime that you not have seen all aired episodes of'
},
mangaAndLightNovels: {
title: 'Manga & Light Novels',
hint: 'Concluded manga and light novels that you have not read all available chapters of'
}
}
}
};
export default English;
|