forked from getodk/central-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.json5
381 lines (380 loc) · 13.6 KB
/
en.json5
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
// action: This is the text for an action, for example, the text of a button.
// field: This is the text of a form field.
// header: This is the text of a table column header.
// tab: This is the text of a navigation tab, which may also be shown as the page title (browser tab).
{
// This is the text shown as the title of a page including in the browser tab.
"title": {
"resetPassword": "Reset Password",
"setPassword": "Set Password",
"editProfile": "Edit Profile",
"download": "Download",
"pageNotFound": "Page Not Found",
"details": "Details"
},
"projectShow": {
"tab": {
"formAccess": "Form Access",
}
},
"formHead": {
"tab": {
"versions": "Versions",
"publicAccess": "Public Access",
},
"draftNav": {
"tab": {
"status": "Status",
"attachments": "Media Files",
"testing": "Testing"
}
}
},
"systemHome": {
// This is the title of the page for managing backups, audit logs, and other system-level functions.
"title": "System Management",
"tab": {
"backups": "Backups",
"audits": "Server Audit Logs",
"analytics": "Usage Reporting"
}
},
// This is the name of a user Role.
"role": {
// This is shown when a user does not have a Role.
"none": "None",
"admin": "Administrator",
"manager": "Project Manager",
"viewer": "Project Viewer",
"formfill": "Data Collector"
},
"formState": {
// Form States control the lifecycle state of each Form. "Open" is one Form
// State.
"open": "Open",
// Form States control the lifecycle state of each Form. "Closing" is one
// Form State.
"closing": "Closing",
// Form States control the lifecycle state of each Form. "Closed" is one
// Form State.
"closed": "Closed",
// This is a note about a Form that is not yet published.
"unpublished": "Not published yet"
},
// This is a possible Review State for a Submission.
"reviewState": {
"received": "Received",
"null": "@:reviewState.received",
"hasIssues": "Has issues",
"edited": "Edited",
"approved": "Approved",
"rejected": "Rejected"
},
"audit": {
// This is a category of actions performed on the server. It is shown in a
// dropdown when filtering the log of actions by type.
"category": {
"nonverbose": "(All Actions)",
"user": "Web User Actions",
"project": "Project Actions",
"form": "Form Actions",
"field_key": "App User Actions",
"public_link": "Public Access Link Actions",
"config": "Server Configuration Actions",
"upgrade": "Server Upgrade"
},
"action": {
// This is shown in the log of actions performed on the server. It is a
// type of action.
"default": {
"create": "Create",
"update": "Update Details",
"session_end": "Revoke",
"delete": "Delete"
},
// This is shown in the log of actions performed on the server.
"analytics": "Report Usage",
// This is shown in the log of actions performed on the server.
"backup": "Backup",
// This is shown in the log of actions performed on the server. It is a
// type of action that can be taken on a Server Configuration.
"config": {
"set": "Set"
},
// This is shown in the log of actions performed on the server. It is a
// type of action that can be taken on an App User.
"field_key": {
"create": "@:audit.action.default.create",
"assignment_create": "Give Access",
"assignment_delete": "Remove Access",
"session_end": "@:audit.action.default.session_end",
"delete": "@:audit.action.default.delete"
},
// This is shown in the log of actions performed on the server. It is a
// type of action that can be taken on a Form.
"form": {
"create": "@:audit.action.default.create",
"update": "@:audit.action.default.update",
"update_draft_set": "Create or Update Draft",
"update_publish": "Publish Draft",
"update_draft_delete": "Abandon Draft",
"attachment_update": "Update Attachments",
"submission_export": "Download Submissions",
"delete": "@:audit.action.default.delete",
"restore": "Undelete",
"purge": "Purge"
},
// This is shown in the log of actions performed on the server. It is a
// type of action that can be taken on a Project.
"project": {
"create": "@:audit.action.default.create",
"update": "@:audit.action.default.update",
"delete": "@:audit.action.default.delete"
},
// This is shown in the log of actions performed on the server. It is a
// type of action that can be taken on a Public Access Link.
"public_link": {
"create": "@:audit.action.default.create",
"assignment_create": "Give Access",
"assignment_delete": "Remove Access",
"session_end": "@:audit.action.default.session_end",
"delete": "@:audit.action.default.delete"
},
// This is shown in the log of actions performed on the server. It is a
// type of action that the server performs when it is upgraded.
"upgrade": {
"process_form": "Process Form",
"process_form_draft": "Process Form Draft"
},
// This is shown in the log of actions performed on the server. It is a
// type of action that can be taken on or for a Web User.
"user": {
"create": "@:audit.action.default.create",
"update": "@:audit.action.default.update",
"assignment_create": "Assign Role",
"assignment_delete": "Revoke Role",
"session_create": "@:action.logIn",
"delete": "Retire"
}
}
},
"action": {
"cancel": "Cancel",
"clear": "Clear",
"close": "Close",
"comment": "Comment",
"create": "Create",
// This is the text of a button that is used to fill out a new Submission.
// It is shown next to a heading whose text is "Submissions".
"createSubmission": "New",
"done": "Done",
"download": "Download",
"edit": "Edit",
"editProfile": "Edit profile",
"logIn": "Log in",
"looksGood": "Looks good, proceed",
"more": "More",
"neverMind": "Never mind, cancel",
"next": "Next",
"noCancel": "No, cancel",
"ok": "Okay",
"proceed": "Proceed",
// This is the text of a button that refreshes data.
"refresh": "Refresh",
"resetPassword": "Reset password",
"review": "Review",
"save": "Save",
"saveSettings": "Save settings",
// This text is shown next to a dropdown menu or other way to change the sorting of Projects or Forms
"sort": "Sort",
"update": "Update",
"yesProceed": "Yes, proceed",
// This text is shown on a button that the user clicks to show a preview of something
"showPreview": "Preview",
// This text is shown on a button that the user clicks to hide a preview of something
"hidePreview": "Hide preview"
},
"field": {
"comment": "Leave a comment…",
"dateRange": "Date range",
"displayName": "Display name",
"email": "Email address",
"name": "Name",
"newPassword": "New password",
"oldPassword": "Old password",
"passphrase": "Passphrase",
"password": "Password",
"passwordConfirm": "New password (confirm)",
"reviewState": "Review State",
"type": "Type"
},
"header": {
"actions": "Actions",
// This is the text of a table column header. The column shows who created
// the resource and possibly also when they did so.
"created": "Created",
"createdBy": "Created by",
"displayName": "Display Name",
"email": "Email Address",
"instanceId": "Instance ID",
"lastSubmission": "Latest Submission",
"name": "Name",
"submitterName": "Submitted by",
// This is the text of a table column header. The column indicates when each
// Submission was submitted.
"submissionDate": "Submitted at",
// This is the text of a table column header for a column that shows dates
// and times.
"time": "Time",
"type": "Type"
},
"plural": {
"appUser": "App User | App Users",
"form": "Form | Forms",
"project": "Project | Projects",
"submission": "Submission | Submissions",
"user": "User | Users",
"webUser": "Web User | Web Users"
},
// This text appears on its own and is not part of a longer sentence.
"count": {
"appUser": "{count} App User | {count} App Users",
"form": "{count} Form | {count} Forms",
"submission": "{count} Submission | {count} Submissions"
},
// This text appears on its own and is not part of a longer sentence. It may
// be shown as a title, for example, at the top of the page.
"resource": {
"appUser": "App User",
"appUsers": "App Users",
"config": "Server Configuration",
"form": "Form",
"forms": "Forms",
"project": "Project",
"projects": "Projects",
"publicLink": "Public Access Link",
"user": "User",
"users": "Users",
"webUser": "Web User",
"webUsers": "Web Users",
"session": "Session",
"submissions": "Submissions",
"projectRoles": "Project Roles",
},
"alert": {
"passwordTooShort": "Please input a password at least 10 characters long.",
"updateReviewState": "Review State saved!",
"versionChange": "The server has been updated. Please refresh the page to avoid unpredictable behavior."
},
"moreInfo": {
"clickHere": {
"full": "For more information, {clickHere}.",
"clickHere": "click here"
},
"helpArticle": {
"full": "For more information, please see {helpArticle}.",
"helpArticle": "this help article"
},
// This is a link to more information.
"learnMore": "Learn more."
},
"analytics": {
"alwaysImprove": "We are always trying to improve ODK Central.",
"needFeedback": {
// "This" refers to improving Central.
"full": "To do this, we need {your} feedback, so that we can understand how you are using Central, and how it could be better for you.",
"your": "your"
}
},
"submission": {
// This is a possible state for a Submission.
"missingMedia": "Missing media",
"action": {
// {count} is the number of previous edits.
"edit": "Edit ({count})"
},
// This is shown when the Edit button is disabled.
"editDisabled": "You cannot edit encrypted Submissions.",
"binaryLinkTitle": "File was submitted. Click to download.",
"encryptionMessage": "Data preview is not available due to encryption.",
// This text is shown under the "Latest Submission" column of the tables
// for Projects and Forms. It is shown for a Project or Form with no Submissions.
"noSubmission": "(none)"
},
"common": {
// This is a title shown above a section of the page.
"activity": "Activity",
// This is shown in a dropdown that allows the user to filter to only show
// data for particular users.
"anybody": "(Anybody)",
// Here we ask the user to confirm that they wish to complete an action that
// they have initiated.
"areYouSure": "Are you sure you wish to proceed?",
// This is a title shown above a section of the page.
"basicInfo": "Basic Information",
// This is a title shown above a section of the page.
"currentDraft": "Your Current Draft",
// This is a title shown above a section of the page.
"dangerZone": "Danger Zone",
// This is the text of a link that links to the documentation.
"docs": "Docs",
// This text is shown next to options for filtering a table.
"filter": "Filter",
// This is the text of a link that links to the ODK forum.
"forum": "Forum",
"loading": "Loading…",
"no": "No",
// This is shown if a search returned no results.
"noResults": "No results",
// This is the title of a section that shows status information for the entire server such as project count.
"rightNow": "Right Now",
"success": "Success!",
// "System" refers to the server and how it is configured. It may be shown
// as a title, for example, at the top of the page.
"system": "System",
"yes": "Yes",
"tab": {
"settings": "Settings",
"overview": "Overview"
},
"total": "Total",
// This text shows when the last Submission was received. {dateTime} shows
// the date and time, for example: "2020/01/01 01:23". It may show a
// formatted date like "2020/01/01", or it may use a word like "today",
// "yesterday", or "Sunday".
"lastSubmission": "(last {dateTime})",
},
"mixin": {
"request": {
"alert": {
"fileSize": "The file “{name}” that you are trying to upload is larger than the 100 MB limit."
}
}
},
"presenter": {
"Project": {
// {name} is the name of a Project. We append "(archived)" to the name if
// the Project is archived.
"nameWithArchived": "{name} (archived)"
}
},
"util": {
"request": {
"noRequest": "Something went wrong: there was no request.",
"noResponse": "Something went wrong: there was no response to your request.",
// {status} is an HTTP status code, for example, 404.
"errorNotProblem": "Something went wrong: error code {status}."
},
"session": {
"alert": {
"expiresSoon": "Your session will expire in 2 minutes, and you be automatically logged out.",
"expired": "Your session has expired. To continue working, please log in again.",
// {message} is a more detailed error message.
"logoutError": "There was a problem, and you were not fully logged out. Please refresh the page and try logging out again. {message}"
}
}
},
"router": {
"unsavedChanges": "Are you sure you want to leave this page? Your changes might not be saved."
}
}