forked from samuelmeuli/mini-diary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
en.ts
108 lines (96 loc) · 3.13 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
import { Translations } from "./types";
// prettier-ignore
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}",
"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",
"website": "Website",
// Theme
"auto": "Auto",
"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
"diary-entries": "Diary entries",
"allow-future-entries": "Allow entries in the future",
// 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",
// 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;