-
Notifications
You must be signed in to change notification settings - Fork 0
/
en.ts
164 lines (164 loc) · 5.03 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
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
export const en = {
notifications: {
close: {
text: "Close",
},
gpg: {
add: {
title: "GPG signature",
description: {
in_progress:
"You will be prompted to choose a password for the key in a new window. Choose a reliable and unique keyword. Otherwise, your key can be easily compromised",
default:
"We can handle the GPG signature for this profile. What happens after clicking on the button: a new GPG key will be created, it will be added to the cloud profile, after that, all your commits will be signed with this key",
},
button: {
in_progress: "In process...",
default: "Let it GPG!",
},
},
remove: {
title: "Remove GPG",
description:
"After clicking on the button, commits will no longer be signed with a GPG signature, the key will be deleted from the local and cloud profile, as well as from the system",
button: {
in_progress: "Processing...",
default: "Delete",
},
},
manage: {
copy: "Copy",
remove: "Remove",
},
},
import: {
buttons: {
github: "Import GitHub profile",
local: "Use local profile",
},
},
intro: {
title: "Welcome",
description:
"So far, not a single Git profile has been processed. How about logging in to the cloud or using the local one?",
button: {
active: "Later",
default: "Let's do it!",
},
},
manager: {
add: {
text: {
active: "Cancel",
default: "Add a new profile",
},
},
manage: {
to_settings: "To settings",
remove: "Delete",
},
profile: {
avatar_alt: "User avatar",
remoteness: {
remote: "Cloud",
local: "Local",
},
lock: {
unlocked: "Finish",
locked: "Edit",
},
sync_status: {
error: "Synchronization error",
in_progress: "Synchronization...",
default: "Synchronized",
},
placeholders: {
email: "Email",
name: "Name",
},
},
},
ssh: {
add: {
title: "SSH key",
description:
"We can handle SSH key for this profile. What happens after clicking on the button: a new SSH key will be created, it will be added to the cloud profile and to the trusted ones in ssh-agent",
button: {
in_progress: "Processing...",
default: "Let it SSH!",
},
},
remove: {
title: "Delete SSH key",
description:
"After clicking on the button, you will no longer be able to log in using SSH, the sign will be deleted from the local keyring and cloud profile",
button: {
in_progress: "Processing...",
default: "Delete",
},
},
manage: {
copy: "Copy",
remove: "Remove",
},
},
update: {
title: "Dogit has been updated",
description: `You are now using version __version__. Hurray!
You can read the patch notes on the page of this release on GitHub`,
button: "What's new?",
},
updater: {
title: "New version available",
description:
'Is it time to upgrade? Version __version__ is already available and ready for installation. By clicking on the "Install" button, the application will restart',
buttons: {
install: "Install",
skip: "Skip",
},
},
},
errors: {
git_not_available: {
title: "Git not detected",
description:
"It seems that Git is not installed on your system. If this error continues to appear even after installing Git, please create an issue.",
action_text: "Install Git",
},
gpg_not_available: {
title: "GPG not installed",
description:
"It seems that GPG is not installed on your system. If this error continues to appear even though the gpg command is available, please create an issue.",
action_text: "Install GPG",
},
ssh_not_available: {
title: "SSH not installed",
description:
"It appears that SSH is not installed on your system. If you continue to encounter this error and the ssh command is still available, please create an issue.",
action_text: "Install SSH",
},
generic: {
title: "Error",
description:
"It seems like a technical error has occurred. However, is a minor issue. It's just one of those things that happen sometimes ¯\\_(ツ)_/¯",
action_text: "Close",
},
gpg_add_unknown_error:
"Could not generate a GPG key due to an unknown error",
},
info: {
generic: {
title: "Notification",
action_text: "Okay",
},
gpg_copied: {
title: "Copied",
description:
"The public key of the GPG signature was copied to the clipboard",
},
ssh_copied: {
title: "Copied",
description: "The SSH public key was copied to the clipboard",
},
},
};