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
|
import type { Locale } from './layout';
const English: Locale = {
navigation: {
home: 'Home',
completed: 'Completed',
subtitle_schedule: 'Subtitle Schedule',
new_releases: 'New Releases',
tools: 'Tools',
settings: 'Settings',
profile: 'Profile',
log_in: 'Log in with AniList',
log_out: 'Log out'
},
settings: {
tooltips: {
author: 'Author of due.moe'
},
rss_feeds: {
title: 'RSS Feeds',
buttons: {
copy_to_clipboard: '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'
}
},
motionAndAccessibility: {
title: 'Motion & Accessibility',
fields: {
disablePageTransitionAnimations: 'Disable page transition animations',
disableNotifications: 'Disable notifications',
limitPanelAreaToScreenHeight: 'Limit panel area to screen height',
interfaceLanguage: 'Interface language'
}
},
collapse_panels_by_default: 'Collapse panels by default',
hide_panels: 'Hide panels',
include_additional_media: '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'
},
cache: {
title: 'Cache'
},
attributions: {
title: 'Attributions'
},
media: {
anime: 'Anime',
manga: 'Manga',
upcoming_anime: 'Upcoming anime',
paused_media: 'Paused media',
unresolved_media: 'Unresolved media',
planned_anime: 'Planned anime'
},
languages: {
english: 'English',
japanese: 'Japanese'
}
}
};
export default English;
|