-
Notifications
You must be signed in to change notification settings - Fork 406
Expand file tree
/
Copy pathenUS.ts
More file actions
552 lines (516 loc) · 27.4 KB
/
enUS.ts
File metadata and controls
552 lines (516 loc) · 27.4 KB
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
import { lngKeys, TranslationSource } from './types'
const enTranslation: TranslationSource = {
//General
[lngKeys.GeneralError]: 'Error',
[lngKeys.GeneralCreate]: 'Create',
[lngKeys.GeneralCancel]: 'Cancel',
[lngKeys.GeneralUpdate]: 'Update',
[lngKeys.GeneralAttachments]: 'Attachments',
[lngKeys.GeneralArchive]: 'Archive',
[lngKeys.GeneralSignin]: 'Sign In',
[lngKeys.GeneralSigningIn]: 'Signing in...',
[lngKeys.GeneralSignout]: 'Sign Out',
[lngKeys.GeneralSave]: 'Save',
[lngKeys.GeneralDefault]: 'Default',
[lngKeys.GeneralDelete]: 'Delete',
[lngKeys.GeneralDaily]: 'daily',
[lngKeys.GeneralWeekly]: 'weekly',
[lngKeys.GeneralNever]: 'never',
[lngKeys.GeneralTemplates]: 'Templates',
[lngKeys.GeneralTitle]: 'Title',
[lngKeys.GeneralDuplicate]: 'Duplicate',
[lngKeys.GeneralUse]: 'Use',
[lngKeys.GeneralChangeIcon]: 'Change icon',
[lngKeys.GeneralFolders]: 'Folders',
[lngKeys.GeneralShowMore]: 'Show more',
[lngKeys.GeneralDashboard]: 'Dashboard',
// settings
[lngKeys.SettingsInfo]: 'My Info',
[lngKeys.SettingsGeneral]: 'My Preferences',
[lngKeys.SettingsNotifications]: 'Email notifications',
[lngKeys.SettingsTeamInfo]: 'Settings',
[lngKeys.SettingsTitle]: 'Settings',
[lngKeys.SettingsPersonalInfo]: 'Settings',
[lngKeys.SettingsMarkdownPreview]: 'Markdown',
[lngKeys.SettingsMarkdownPreviewShowcase]: 'Markdown Style Preview',
[lngKeys.SettingsMarkdownPreviewCodeBlockTheme]: 'Code Block Theme',
[lngKeys.SettingsMarkdownPreviewStyleTitle]: 'Preview Style',
[lngKeys.SettingsMarkdownPreviewStyleResetLabel]: 'Use Default Style',
[lngKeys.SettingsPreferences]: 'Preferences',
[lngKeys.SettingsPreferencesResetTitle]: 'Reset Preferences',
[lngKeys.SettingsPreferencesResetLabel]: 'Use Default Preferences',
[lngKeys.SettingsTeamUpgrade]: 'Upgrade',
[lngKeys.SettingsTeamSubscription]: 'Billing',
[lngKeys.SettingsIntegrations]: 'Integrations',
[lngKeys.SettingsAppFeedback]: 'Feedback',
[lngKeys.SettingsSpace]: 'Space',
[lngKeys.SettingsSpaceDelete]: 'Delete this Space',
[lngKeys.SettingsSpaceDeleteWarning]:
'Once you delete this space, we will remove all associated data. There is no turning back.',
[lngKeys.SettingsAccount]: 'Account',
[lngKeys.SettingsAccountDelete]: 'Delete Your Account',
[lngKeys.SettingsAccountDeleteWarning]:
'You may delete your account at any time, note that this is unrecoverable.',
[lngKeys.SettingsUILanguage]: 'Interface Language',
[lngKeys.SettingsApplicationTheme]: 'Application Theme',
[lngKeys.SettingsEditorTheme]: 'Editor Theme',
[lngKeys.SettingsCodeBlockTheme]: 'Code Block Theme',
[lngKeys.SettingsEditorKeyMap]: 'Editor Keymap',
[lngKeys.SettingsEditorFontSize]: 'Editor Font Size',
[lngKeys.SettingsEditorFontFamily]: 'Editor Font Family',
[lngKeys.SettingsLight]: 'Light',
[lngKeys.SettingsDark]: 'Dark',
[lngKeys.SettingsDracula]: 'Dracula',
[lngKeys.SettingsSolarizedDark]: 'Solarized Dark',
[lngKeys.SettingsSepia]: 'Sepia',
[lngKeys.SettingsMonokai]: 'Monokai',
[lngKeys.SettingsNotifFrequencies]: 'Email updates',
[lngKeys.SettingsIndentType]: 'Editor Indent Type',
[lngKeys.SettingsShowEditorToolbar]: 'Editor Toolbar',
[lngKeys.SettingsShowEditorLineNumbers]: 'Editor Line Numbers',
[lngKeys.SettingsEnableEditorSpellcheck]: 'Editor Spellcheck',
[lngKeys.SettingsIndentSize]: 'Editor Indent Size',
[lngKeys.SettingsReleaseNotes]: 'Release Notes',
[lngKeys.SettingsBeta]: 'Beta',
[lngKeys.SettingsBetaAutomationAndIntegration]: 'Automation & Integration',
[lngKeys.ManagePreferences]: 'Manage your preferences.',
[lngKeys.ManagePreferencesMarkdownPreview]:
'Manage your Markdown preview preferences.',
[lngKeys.ManageProfile]: 'Manage your Boost Note profile.',
[lngKeys.ManageSpaceSettings]: "Manage your space's settings.",
[lngKeys.ManageTeamMembers]: 'Manage who has access to this space.',
[lngKeys.ManageIntegrations]:
'Connect 3rd party content to your Boost Note documents.',
[lngKeys.CurrentMembers]: 'Current members',
[lngKeys.MembersAccessLevel]: 'Role',
[lngKeys.AddMembers]: 'Add members',
[lngKeys.TeamCreate]: 'Create a team space',
[lngKeys.TeamCreateSubtitle]:
'Convert to a team space in order to invite your teammates',
[lngKeys.TeamName]: 'Team name',
[lngKeys.TeamDomain]: 'Team domain',
[lngKeys.SpaceName]: 'Space name',
[lngKeys.SpaceDomain]: 'Space domain',
[lngKeys.TeamDomainShow]: 'Your url will look like this:',
[lngKeys.TeamDomainWarning]: "Caution: You can't change it after this step.",
[lngKeys.InviteRoleDetails]: 'Click to see role details.',
[lngKeys.InviteAddWithLink]: 'Add with link',
[lngKeys.InviteEmail]: 'Add by Email',
[lngKeys.InviteByEmailMore]: 'Add another team member',
[lngKeys.InviteMembersDocAssignButton]: 'Invite members to assign',
[lngKeys.InviteFailError]:
'Invite failed because of incorrect email data. Please provide valid email and role.',
[lngKeys.RoleMemberDescription]:
'Members can access all features, except team management, billing.',
[lngKeys.RoleAdminDescription]:
'Admins can handle billing, remove or promote/demote members.',
[lngKeys.RoleViewerDescription]:
'Viewers can only navigate through documents, folders, write comments and invite more viewers to the team.',
[lngKeys.CancelInvite]: 'Cancel invite?',
[lngKeys.CancelInviteOpenLinkMessage]:
'Are you sure to cancel this invite? The current links will be depreciated.',
[lngKeys.CancelInviteEmailMessage]:
"Are you sure to retract this invite? The user won't be able to join the team anymore.",
[lngKeys.RoleAdminPromote]:
"This action will promote {{user}}'s to an admin, they will be granted access to team management and billing information. Are you sure?",
[lngKeys.RoleMemberChange]:
"This action will change {{user}}'s role to a regular member, they will be accounted for within the subscription and can actively participate within the team. However they will be unable to access any billing information. Are you sure?",
[lngKeys.RoleViewerDemote]:
"This action will change {{user}}'s role to a viewer. They will be removed from the subscription amount. They will be unable to edit in any way folder and documents moving forward but can still read as well as post comments. Are you sure?",
[lngKeys.TeamLeave]: 'Leave the team',
[lngKeys.TeamLeaveWarning]:
'Are you sure to leave the team and not being able to access any of its content anymore? The last team member has to completely delete the team.',
[lngKeys.RemovingMember]: 'Removing a member',
[lngKeys.RemovingMemberWarning]:
'You will be removing {{user}} from this team. Are you sure?',
[lngKeys.ExternalEntity]: 'External Entity',
[lngKeys.ExternalEntityOpenInBrowser]: 'Open in browser to enable',
[lngKeys.ExternalEntityDescription]:
'Boost Note show you the external content such as Github issues, Trello cards, Google Docs, and much more automatically. What do you want to see on Boost Note?',
[lngKeys.ExternalEntityRequest]: 'Please let us know your requests!',
[lngKeys.CommunityFeedback]: 'Feedback',
[lngKeys.CommunityFeatureRequests]: 'Feature Requests',
[lngKeys.CommunityFeedbackSubtitle]:
'Want a specific feature? Did you notice a bug? Let us know!',
[lngKeys.CommunityBugReport]: 'Bug Report',
[lngKeys.CommunityFeedbackSendError]: 'Could not send your feedback',
[lngKeys.CommunityFeedbackSendSuccess]:
'Your feedback is always appreciated! Thank you for reaching out.',
[lngKeys.CommunityFeedbackType]: 'Type of Feedback',
[lngKeys.CommunityFeedbackFreeForm]: 'Free Form',
[lngKeys.ManageApi]: 'These tokens are available only to {{space}}',
[lngKeys.AccessTokens]: 'Access Tokens',
[lngKeys.GenerateToken]: 'Generate Token',
[lngKeys.CreateTokens]: 'Create a new token',
[lngKeys.TokensName]: 'Your token name...',
[lngKeys.TokensDocumentation]: 'documentation for Boost Note API',
[lngKeys.FormSelectImage]: 'Select Image',
[lngKeys.FormChangeImage]: 'Change Image',
[lngKeys.SupportGuide]: 'Support Guide',
[lngKeys.SendUsAMessage]: 'Send us a message',
[lngKeys.KeyboardShortcuts]: 'Keyboard Shortcuts',
[lngKeys.SettingsSubLimitUsed]: '{{docsNb}} days',
[lngKeys.SettingsSubLimitTrialTitle]: 'Upgrade to go unlimited',
[lngKeys.SettingsSubLimitTrialDate]:
"Your workspace's trial of the Pro plan lasts through {{date}}",
[lngKeys.SettingsSubLimitTrialUpgrade]:
'You can upgrade at anytime during your trial.',
[lngKeys.SettingsSubLimitTrialEnd]:
'Your trial has ended on {{date}}. Please upgrade now.',
[lngKeys.SettingsSubLimitUnderFreePlan]:
'Under the free plan, you can create up to {{limit}} docs.',
[lngKeys.PlanChoose]: 'Choose your plan.',
[lngKeys.PlanDiscountUntil]:
'You will receive a discount as long as you subscribe before ',
[lngKeys.PlanDiscountDetail]: '{{off}}% OFF for {{month}} month',
[lngKeys.PlanDiscountLabel]: '{{month}} month discount',
[lngKeys.PlanDiscountCouponWarning]:
'Applying a promotion code will prevent you to receive other discounts',
[lngKeys.PlanBusinessIntro]:
'For larger businesses or those in highly regulated industries, please',
[lngKeys.PlanBusinessLink]: 'contact our sales department',
[lngKeys.PlanPerMember]: 'per member',
[lngKeys.PlanPerMonth]: 'per month',
[lngKeys.PlanPerYear]: 'per year',
[lngKeys.PlanFreePerk1]: 'Unlimited Viewers',
[lngKeys.PlanFreePerk2]: 'Unlimited Members',
[lngKeys.PlanFreePerk3]: '{{docs}} documents',
[lngKeys.PlanStoragePerk]: '{{storageSize}} per member',
[lngKeys.PlanStandardPerk1]: 'Unlimited members',
[lngKeys.PlanStandardPerk4]: 'Unlimited documents',
[lngKeys.PlanStandardPerk2]: 'Support Boost Note Team',
[lngKeys.PlanStandardPerk3]: '{{days}} days Revision History',
[lngKeys.PlanProPerk3]: 'Priority Support',
[lngKeys.PlanProPerk1]: 'Advanced sharing',
[lngKeys.PlanProPerk2]: 'Unlimited Revision History',
[lngKeys.PlanProPerk4]: 'Private folders',
[lngKeys.PlanTrial]: '{{days}} days free trial',
[lngKeys.PlanInTrial]: 'In free trial ({{remaining}} left)',
[lngKeys.PlanSizePerUpload]: '{{size}}MB per upload',
[lngKeys.PlanDashboardPerUser]: '{{size}} dashboards',
[lngKeys.PlanSmartviewPerDashboard]: '{{size}} smart views per dashboard',
[lngKeys.UpgradeSubtitle]: 'Confirm and enter your payment information',
[lngKeys.Viewers]: 'viewers',
[lngKeys.Month]: 'month',
[lngKeys.Year]: 'year',
[lngKeys.TotalMonthlyPrice]: 'Total Monthly Price',
[lngKeys.PaymentMethod]: 'Payment Method',
[lngKeys.TrialWillBeStopped]: 'Your free trial will be stopped',
[lngKeys.ApplyCoupon]: 'Apply a coupon',
[lngKeys.PromoCode]: 'Promo Code',
[lngKeys.Subscribe]: 'Subscribe',
[lngKeys.PaymentMethodJpy]:
'We can only accept JPY(Japanese Yen) when paying by JCB cards.',
[lngKeys.UnlimitedViewers]: 'Unlimited viewers',
[lngKeys.BillingActionRequired]: 'Your payment may require action!',
[lngKeys.BillingHistory]: 'Billing History',
[lngKeys.BillingHistoryCheck]:
'Please check your billing history to handle any unpaid or failed charges.',
[lngKeys.BillingCancelledAt]:
'Your subscription will be canceled on {{date}} upon reception of your last invoice.',
[lngKeys.BillingToCard]:
'Will bill to the credit card ending in {{cardEnd}} at {{date}}.',
[lngKeys.BillingEditCard]: 'Edit Card',
[lngKeys.BillingEmail]: 'Billing email is {{email}}',
[lngKeys.BillingEditEmail]: 'Edit Email',
[lngKeys.BillingCanSeeThe]: 'You can see the ',
[lngKeys.BillingChangePlan]: 'Change plans',
[lngKeys.BillingUpdateCard]: 'Update your Credit Card',
[lngKeys.BillingCurrentCard]: 'Current Credit Card',
[lngKeys.BillingUpdateEmail]: 'Update your billing email',
[lngKeys.BillingCurrentEmail]: 'Current Email',
[lngKeys.BillingChangeJCB]:
'Switching payment method from/to JCB card requires canceling existing active subscription. Please cancel the existing one and subscribe again with a new card.',
[lngKeys.BillingApplyPromoWarning]:
'Applying a promotion code will end your current discount',
[lngKeys.BillingApplyPromo]: 'Apply a promotion code',
[lngKeys.BillingChangePlanDiscountStop]:
'Changing plans will end your current discount.',
[lngKeys.BillingChangePlanStripeProration]:
"The fee change is handled via Stripe's proration.",
[lngKeys.BillingChangePlanFreeDisclaimer]:
'You will lose access immediately to advanced features such as unlimited documents, document revision history, bigger storage size etc...',
[lngKeys.BillingChangePlanProDisclaimer]:
'You will get access to advanced features such as unlimited document revision history, setting password and expiration date for shared documents, unlimited viewers etc...',
[lngKeys.BillingChangePlanStandardDisclaimer]:
'You will lose access to advanced features such as unlimited document revision history, setting password and expiration date for shared document, unlimited viewers, etc...',
[lngKeys.BillingChangePlanStripeProrationUpgradeDiscount]: `The cost summary below will become the standard for your future invoices. When upgrading you will be invoiced the upgrade cost instantly which will automatically discount the remaining time you had on your current plan.`,
[lngKeys.BillingChangePlanStripeProrationDowngradeDiscount]: `The cost summary below will become the standard for your future invoices. The remaining time on your current plan will be discounted on your next invoice.`,
[lngKeys.FreeTrialModalTitle]: 'Try the Pro Plan for free',
[lngKeys.FreeTrialModalBody]:
"You'll get access to most features of a paid Pro Plan such as unlimited documents, revision history, etc... for {{days}} days.",
[lngKeys.FreeTrialModalDisclaimer]:
'No credit card information is necessary for now.',
[lngKeys.FreeTrialModalCTA]: 'Start Free Trial',
[lngKeys.LogOut]: 'Log out',
[lngKeys.CreateNewSpace]: 'Create a new space',
[lngKeys.DownloadDesktopApp]: 'Download the desktop app',
[lngKeys.ToolbarTooltipsSpaces]: 'Spaces',
[lngKeys.ToolbarTooltipsTree]: 'Tree',
[lngKeys.ToolbarTooltipsDiscount]: 'Get the new user discount',
[lngKeys.FolderNamePlaceholder]: 'Folder name...',
[lngKeys.DocTitlePlaceholder]: 'Doc title...',
[lngKeys.SortLastUpdated]: 'Last Updated',
[lngKeys.SortTitleAZ]: 'Title A-Z',
[lngKeys.SortTitleZA]: 'Title Z-A',
[lngKeys.SortDragAndDrop]: 'Drag and Drop',
[lngKeys.CreateNewDoc]: 'New doc',
[lngKeys.CreateNewCanvas]: 'Create new canvas (beta)',
[lngKeys.UseATemplate]: 'Use a template',
[lngKeys.RenameFolder]: 'Rename folder',
[lngKeys.RenameDoc]: 'Rename doc',
[lngKeys.ModalsCreateNewFolder]: 'New folder',
[lngKeys.ModalsCreateNewDocument]: 'New doc',
[lngKeys.ModalsDeleteWorkspaceTitle]: 'Delete the folder',
[lngKeys.ModalsDeleteWorkspaceDisclaimer]:
'Are you sure to delete this folder? You will not be able to revert this action.',
[lngKeys.ModalsDeleteDocFolderTitle]: 'Delete {{label}}',
[lngKeys.ModalsDeleteDocDisclaimer]:
'Are you sure to remove this document permanently?',
[lngKeys.ModalsDeleteCommentDisclaimer]:
'Are you sure to remove this comment permanently?',
[lngKeys.ModalsDeleteThreadDisclaimer]:
'Are you sure to remove this thread permanently?',
[lngKeys.ModalsDeleteFolderDisclaimer]:
'Are you sure to remove this folder and delete completely its documents?',
[lngKeys.ModalsWorkspaceCreateTitle]: 'Create a folder',
[lngKeys.ModalsWorkspaceEditTitle]: 'Edit your folder',
[lngKeys.ModalsWorkspaceMakePrivate]: 'Make private',
[lngKeys.ModalsWorkspaceAccess]: 'Access',
[lngKeys.ModalsWorkspaceDefaultDisclaimer]:
"This default workspace is public and can't have its access modified.",
[lngKeys.ModalsWorkspacePublicDisclaimer]:
'This workspace is public. Anyone from the team can access it.',
[lngKeys.ModalsWorkspacePrivateDisclaimer]: 'This folder is private.',
[lngKeys.ModalsWorkspacePrivateOwner]:
'You can set individual member access below.',
[lngKeys.ModalsWorkspaceSetAccess]: 'Set access',
[lngKeys.ModalsWorkspacesSetAccessMembers]: 'Add members',
[lngKeys.GeneralOwner]: 'Owner',
[lngKeys.GeneralAddVerb]: 'Add',
[lngKeys.GeneralSelectAll]: 'Select all',
[lngKeys.ModalsWorkspacesWhoHasAcess]: 'Who has access',
[lngKeys.ModalsWorkspacesNonOwnerDisclaimer]:
'Only the folder owner can change its access.',
[lngKeys.ModalsImportDestinationTitle]: 'Select a folder',
[lngKeys.ModalsImportDestinationDisclaimer]:
'Pick the folder you want your documents to be imported in',
[lngKeys.ModalsImportDisclaimer]:
'Select how you want to import files ( 5Mb max per file )',
[lngKeys.ModalsSmartViewCreateTitle]: 'Create a Smart view',
[lngKeys.ModalsSmartViewEditTitle]: 'Edit Smart view',
[lngKeys.ModalsSmartViewPrivateDisclaimer]:
'This Smart view will become private. Only you can see it.',
[lngKeys.ModalsSmartViewPublicDisclaimer]:
'This Smart view become public. Every member can see it.',
[lngKeys.EditorToolbarTooltipHeader]: 'Add header text',
[lngKeys.EditorToolbarTooltipAdmonition]: 'Add admonition',
[lngKeys.EditorToolbarTooltipCodefence]: 'Insert a codefence',
[lngKeys.EditorToolbarTooltipQuote]: 'Insert a quote',
[lngKeys.EditorToolbarTooltipList]: 'Add a bulleted list',
[lngKeys.EditorToolbarTooltipNumberedList]: 'Add a numbered list',
[lngKeys.EditorToolbarTooltipTaskList]: 'Add a task list',
[lngKeys.EditorToolbarTooltipBold]: 'Add bold text',
[lngKeys.EditorToolbarTooltipItalic]: 'Add italic text',
[lngKeys.EditorToolbarTooltipCode]: 'Insert code',
[lngKeys.EditorToolbarTooltipLink]: 'Add a link',
[lngKeys.EditorToolbarTooltipMath]: 'Add a math expression',
[lngKeys.EditorToolbarTooltipBrackets]: 'Add brackets',
[lngKeys.EditorToolbarTooltipUpload]: 'Upload Image',
[lngKeys.EditorToolbarTooltipTemplate]: 'Use a template',
[lngKeys.EditorToolbarTooltipScrollSyncEnable]: 'Enable scroll sync',
[lngKeys.EditorToolbarTooltipScrollSyncDisable]: 'Disable scroll sync',
[lngKeys.EditorReconnectAttempt]: 'Connecting...',
[lngKeys.EditorReconnectAttempt1]: 'Attempting auto-reconnection',
[lngKeys.EditorReconnectAttempt2]:
'Changes will not be synced with the server until reconnection',
[lngKeys.EditorReconnectDisconnected]: 'Reconnect',
[lngKeys.EditorReconnectDisconnected1]: 'Please try reconnecting.',
[lngKeys.EditorReconnectDisconnected2]:
'Changes will not be synced with the server until reconnection',
[lngKeys.EditorReconnectSyncing]: 'Syncing...',
[lngKeys.EditorReconnectSyncing1]: 'Syncing with the cloud.',
[lngKeys.EditorReconnectSyncing2]:
'Checking for changes and live updating the document',
[lngKeys.DocSaveAsTemplate]: 'Save as a template',
[lngKeys.DocExportPdf]: 'Export as PDF',
[lngKeys.DocExportMarkdown]: 'Export as Markdown',
[lngKeys.DocExportHtml]: 'Export as HTML',
[lngKeys.OpenInBrowser]: 'Open in browser',
[lngKeys.GeneralPickYourDestination]: 'Pick your destination',
[lngKeys.AttachmentsDeleteDisclaimer]:
"Are you sure to delete this file? It won't be visible in your document anymore.",
[lngKeys.AttachmentsLimitDisclaimer]: '{{current}} of {{limit}} used.',
[lngKeys.AttachmentsPlanUpgradeDisclaimer]: 'If you need more space, please',
[lngKeys.AttachmentsUpgradeLink]: 'upgrade your plan.',
[lngKeys.FolderFilter]: 'Folder',
[lngKeys.FolderInfo]: 'Folder Info',
[lngKeys.DocInfo]: 'Doc Info',
[lngKeys.Assignees]: 'Assignees',
[lngKeys.Unassigned]: 'Unassigned',
[lngKeys.DueDate]: 'Due Date',
[lngKeys.AddDueDate]: 'Add due date',
[lngKeys.AddALabel]: 'Add a label',
[lngKeys.NoStatus]: 'No Status',
[lngKeys.CreationDate]: 'Creation Date',
[lngKeys.UpdateDate]: 'Update Date',
[lngKeys.CreatedBy]: 'Created By',
[lngKeys.UpdatedBy]: 'Updated By',
[lngKeys.Contributors]: 'Contributors',
[lngKeys.WordCount]: 'Word Count',
[lngKeys.CharacterCount]: 'Character Count',
[lngKeys.History]: 'History',
[lngKeys.Share]: 'Share',
[lngKeys.PublicSharing]: 'Public Sharing',
[lngKeys.PublicSharingDisclaimer]: 'Anyone with this link can access',
[lngKeys.SharingSettings]: 'Sharing settings',
[lngKeys.SharingRegenerateLink]: 'Regenerate link',
[lngKeys.Regenerate]: 'regenerate',
[lngKeys.PasswordProtect]: 'password protect',
[lngKeys.ExpirationDate]: 'expiration date',
[lngKeys.SeeFullHistory]: 'See full history',
[lngKeys.SeeLimitedHistory]: 'See last {{days}} days',
[lngKeys.ThreadsTitle]: 'Comments',
[lngKeys.ThreadPost]: 'Post',
[lngKeys.ThreadFullDocLabel]: 'Full doc thread',
[lngKeys.ThreadCreate]: 'Create a new thread',
[lngKeys.ThreadOpen]: 'Open',
[lngKeys.ThreadClosed]: 'Closed',
[lngKeys.ThreadOutdated]: 'Outdated',
[lngKeys.ThreadReopen]: 'Reopen',
[lngKeys.ThreadReplies]: '{{count}} replies',
[lngKeys.ModalsTemplatesDeleteDisclaimer]: `Are you sure to delete this template?`,
[lngKeys.ModalsTemplatesSearchEmpty]: 'Could not find any template',
[lngKeys.ModalsTemplatesSelectTemplate]: 'Select a template',
[lngKeys.ModalsTemplatesUseInDoc]: 'Use in your doc',
[lngKeys.GeneralAll]: 'All',
[lngKeys.GeneralAny]: 'Any',
//Language
[lngKeys.GeneralSelectVerb]: 'Select',
[lngKeys.GeneralOpenVerb]: 'Open',
[lngKeys.GeneralCopyTheLink]: 'Copy the link',
[lngKeys.GeneralMoveVerb]: 'Move',
[lngKeys.GeneralSource]: 'Source',
[lngKeys.GeneralDestination]: 'Destination',
[lngKeys.GeneralPrevious]: 'Previous',
[lngKeys.GeneralNext]: 'Next',
[lngKeys.GeneralContinueVerb]: 'Continue',
[lngKeys.GeneralShared]: 'Shared',
[lngKeys.GeneralRenameVerb]: 'Rename',
[lngKeys.GeneralEditTitle]: 'Edit title',
[lngKeys.GeneralEditVerb]: 'Settings',
[lngKeys.GeneralBookmarks]: 'Bookmarks',
[lngKeys.GeneralUnbookmarkVerb]: 'Remove from Bookmarks',
[lngKeys.GeneralBookmarkVerb]: 'Bookmark',
[lngKeys.GeneralDashboards]: 'Dashboards',
[lngKeys.GeneralWorkspaces]: 'Workspaces',
[lngKeys.GeneralPrivate]: 'Private',
[lngKeys.GeneralLabels]: 'Labels',
[lngKeys.GeneralMore]: 'More',
[lngKeys.GeneralStatus]: 'Status',
[lngKeys.GeneralMembers]: 'Members',
[lngKeys.GeneralSettings]: 'Settings',
[lngKeys.GeneralTimeline]: 'Timeline',
[lngKeys.GeneralImport]: 'Import',
[lngKeys.GeneralSearchVerb]: 'Search',
[lngKeys.GeneralHelp]: 'Help',
[lngKeys.GeneralProfilePicture]: 'Profile Picture',
[lngKeys.GeneralName]: 'Name',
[lngKeys.GeneralSpaces]: 'spaces',
[lngKeys.GeneralTabs]: 'tab',
[lngKeys.GeneralLogo]: 'Logo',
[lngKeys.GeneralUser]: 'User',
[lngKeys.GeneralBack]: 'Back',
[lngKeys.GeneralAdmin]: 'Admin',
[lngKeys.GeneralMember]: 'Member',
[lngKeys.GeneralViewer]: 'Viewer',
[lngKeys.GeneralSeeVerb]: 'See',
[lngKeys.GeneralCopyVerb]: 'Copy',
[lngKeys.GeneralCopied]: 'Copied',
[lngKeys.GeneralSendVerb]: 'Send',
[lngKeys.GeneralSendMore]: 'Send More',
[lngKeys.GeneralLeaveVerb]: 'Leave',
[lngKeys.GeneralRemoveVerb]: 'Remove',
[lngKeys.GeneralDemoteVerb]: 'Demote',
[lngKeys.GeneralPromoteVerb]: 'Promote',
[lngKeys.GeneralEnableVerb]: 'Enable',
[lngKeys.GeneralDisableVerb]: 'Disable',
[lngKeys.GeneralShowVerb]: 'Show',
[lngKeys.GeneralHideVerb]: 'Hide',
[lngKeys.GeneralSaveVerb]: 'Save',
[lngKeys.GeneralCloseVerb]: 'Close',
[lngKeys.GeneralThisSpace]: 'this space',
[lngKeys.GeneralToken]: 'Token',
[lngKeys.GeneralApplyVerb]: 'Apply',
[lngKeys.GeneralUpdateVerb]: 'Update',
[lngKeys.GeneralLearnMore]: 'Learn More',
[lngKeys.GeneralDoYouWishToProceed]: 'Do you wish to proceed?',
[lngKeys.GeneralDays]: 'days',
[lngKeys.GeneralHours]: 'hours',
[lngKeys.GeneralMinutes]: 'minutes',
[lngKeys.GeneralSeconds]: 'seconds',
[lngKeys.GeneralOrdering]: 'Ordering',
[lngKeys.SidebarViewOptions]: 'View Options',
[lngKeys.SidebarSettingsAndMembers]: 'Settings & Members',
[lngKeys.GeneralInbox]: 'Inbox',
[lngKeys.SidebarNewUserDiscount]: 'Get the new user discount!',
[lngKeys.SettingsImportDescription]:
'No need to start from scratch. Import data into Boost Note by selecting one of the options below.',
[lngKeys.GeneralPassword]: 'Password',
[lngKeys.CooperateTitle]: 'Create a new space',
[lngKeys.CooperateSubtitle]: 'Please set up your space information',
[lngKeys.PictureAdd]: 'Add a picture',
[lngKeys.PictureChange]: 'Change your picture',
[lngKeys.SpaceIntent]: 'For what purpose are you going to use this space?',
[lngKeys.SpaceIntentPersonal]: 'For my personal use',
[lngKeys.SpaceIntentTeam]: 'To collaborate with my team',
[lngKeys.PlanViewersMembersIntro]:
"What's the difference between viewers and members? Please take a look at",
[lngKeys.PlanViewersMembersLink]: 'this article',
[lngKeys.SeeRoleDetails]: 'See role details',
[lngKeys.ViewerDisclaimerIntro]: 'Please ask your admin to give you a ',
[lngKeys.ViewerDisclaimerOutro]: 'so that you can edit this document',
[lngKeys.ViewerDisclaimerFolderOutro]:
'so that you can create a document and folder, add properties, add views and edit folder',
[lngKeys.MemberRole]: 'Member role',
[lngKeys.DiscountModalTitle]: 'Subscribe now to receive a discount',
[lngKeys.DiscountModalAlreadySubscribed]: 'You are already subscribed',
[lngKeys.DiscountModalTimeRemaining]: 'Time remaining',
[lngKeys.DiscountModalExpired]: 'Your eligibility for a discount has expired',
[lngKeys.GeneralInvite]: 'Invite',
[lngKeys.SettingsRolesRestrictedTitle]: 'This role is restricted',
[lngKeys.SettingsRolesRestrictedDescription]:
'In order to promote the user to this specific role, your space needs to have an active subscription. Please consider upgrading your plan.',
[lngKeys.GeneralDocuments]: 'Documents',
[lngKeys.RequestSent]: 'Request sent',
[lngKeys.RequestAskMemberRole]: 'Ask Member role',
[lngKeys.UploadLimit]:
'The maximum allowed size for uploads is {{sizeInMb}}Mb',
[lngKeys.OnboardingFolderSectionTitle]:
'Collaborate with your teammates on one platform',
[lngKeys.OnboardingFolderSectionDisclaimer]:
'Welcome to Boost Note – a workspace for DevOps teams where information and collaboration meet. Create, collaborate, and organize all your work in one place.',
[lngKeys.GeneralContent]: 'Content',
[lngKeys.GeneralYes]: 'Yes',
[lngKeys.GeneralNo]: 'No',
[lngKeys.ModalUnlockDashboardsTitle]: 'Unlock Dashboards',
[lngKeys.ModalUnlockDashboardsDescription]:
'Create unlimited dashboards to organize your docs, tasks, etc., in order to guide your workflow in your own way! Display the information the way you want to see it.',
[lngKeys.ModalUnlockSmartviewsTitle]: 'Unlock Smart Views',
[lngKeys.ModalUnlockSmartviewsDescription]:
'Add unlimited smart views to your dashboard in order to customize even more your own experience. More smart views will allow you to be even more specific when it comes to what you want to see and how you want to see it!',
[lngKeys.ModalUnlockCheckDetails]:
'Check the details of the Standard and Pro plans and learn what you can do with it!',
[lngKeys.OverlimitDashboards]: `Your dashboards exceed the limit of your current plan. Consider upgrading your plan or deleting other dashboards in order to continue using this feature with your current plan.`,
[lngKeys.ExportTitle]: 'Export your space data',
[lngKeys.ExportSubtitle]: `The service for boostnote is planned to be retired at the end of September. We recommend exporting your space's data so that you do not lose any of your information.`,
[lngKeys.ExportContent]: 'Here is an overview of what can be exported:',
[lngKeys.ExportContentOne]:
'Public & your accessible private Folders & documents hierarchy',
[lngKeys.ExportContentTwo]: `Your Documents' content`,
[lngKeys.ExportContentThree]: `Your Documents' attachments`,
[lngKeys.ExportDownload]: `Download ZIP`,
}
export default {
translation: enTranslation,
}