forked from samuelmeuli/mini-diary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
en.ts
139 lines (125 loc) Β· 3.92 KB
/
en.ts
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
import { Translations } from "../../../shared/types";
const translationsEn: Translations = {
// Menu (defined by macOS)
"about-app": "About {appName}",
"bring-all-to-front": "Bring All to Front",
close: "Close",
copy: "Copy",
cut: "Cut",
edit: "Edit",
file: "File",
help: "Help",
"hide-app": "Hide {appName}",
"hide-others": "Hide Others",
minimize: "Minimize",
paste: "Paste",
preferences: "Preferences",
"quit-app": "Quit {appName}",
redo: "Redo",
"select-all": "Select All",
"show-all": "Show All",
speech: "Speech",
"start-speaking": "Start Speaking",
"stop-speaking": "Stop Speaking",
undo: "Undo",
view: "View",
window: "Window",
zoom: "Zoom",
// Menu (app-specific)
export: "Export",
"export-to-format": "Export to {format}",
"go-to-date": "Go to Date",
"go-to-today": "Go to Today",
import: "Import",
"import-from-format": "Import from {format}",
license: "License",
"lock-diary": "Lock Diary",
"next-day": "Next Day",
"next-month": "Next Month",
"previous-day": "Previous Day",
"previous-month": "Previous Month",
"privacy-policy": "Privacy Policy",
statistics: "Statistics",
website: "Website",
// Weekdays
sunday: "Sunday",
monday: "Monday",
tuesday: "Tuesday",
wednesday: "Wednesday",
thursday: "Thursday",
friday: "Friday",
saturday: "Saturday",
// Theme
dark: "Dark",
light: "Light",
theme: "Theme",
// Calendar
today: "Today",
// Editor
"add-a-title": "Add a title",
bold: "Bold",
bullets: "Bullets",
italic: "Italic",
list: "List",
"write-something": "Write something",
// Search
clear: "Clear",
"no-results": "No results",
"no-title": "No title",
search: "Search",
// Preferences
"allow-future-entries": "Allow entries in the future",
auto: "Auto",
"diary-entries": "Diary entries",
"enable-spellcheck": "Check spelling",
"first-day-of-week": "First day of the week",
"hide-titles": "Hide titles",
no: "No",
ok: "OK",
"reset-diary": "Reset diary",
"reset-diary-confirm": "Yes, I am sure",
"reset-diary-msg":
"Are you sure you want to reset your diary? This will delete all of your content. The data cannot be restored.",
// Password and directory
"change-directory": "Change directory",
"change-password": "Change password",
"choose-password": "Please choose a password for your diary.",
"decryption-error": "Error decrypting diary file",
"diary-file": "Diary file",
"file-exists": "Another file exists at the destination path",
"move-error-msg": "An error occurred when moving the file",
"move-error-title": "Move error",
"move-file": "Move file",
"new-password": "New password",
password: "Password",
"passwords-no-match": "Passwords do not match",
"repeat-new-password": "Repeat new password",
"repeat-password": "Repeat password",
"select-directory": "Select directory",
"set-password": "Set password",
unlock: "Unlock",
"wrong-password": "Wrong password",
// Statistics
"total-entries": "total entries",
"entries-per-week": "entries per week",
"streak-best": "entries in a row (record streak)",
"streak-current": "entries in a row (current streak)",
"total-words": "total words",
"words-per-entry": "words per entry",
// Import
"import-error-msg": "An error occurred during the import",
"import-error-title": "Import error",
"import-instructions-day-one":
"Open the Day One app and export your diary under File β Export β {format}. Unzip the created file. Select the resulting {format} file in the next step to import it into {appName}.",
"import-instructions-jrnl":
"To export your jrnl diary, run {command}. Select the created JSON file in the next step to import it into {appName}.",
"import-instructions-mini-diary":
"You can import your data from a previous {appName} JSON export or from another JSON file that is formatted the same way.",
"start-import": "Start import",
// Export
"export-error-msg": "An error occurred during the export",
"export-error-title": "Export error",
// Other
loading: "Loading",
};
export default translationsEn;