Add localizations for snapshots links (#1347)
Add localization key for creating snapshot links. I guess it's internal? ### Change Type - [x] `internal` — Any other changes that don't affect the published package (will not publish a new version) ### Release Notes - Add localization for creating snapshot links.
This commit is contained in:
parent
72f6b91d2b
commit
a824168e0a
5 changed files with 9 additions and 2 deletions
|
@ -222,11 +222,13 @@
|
|||
"share-menu.share-project": "Share this project",
|
||||
"share-menu.copy-link": "Copy link",
|
||||
"share-menu.readonly-link": "Read-only",
|
||||
"share-menu.create-snapshot-link": "Create snapshot link",
|
||||
"share-menu.copy-readonly-link": "Copy read-only link",
|
||||
"share-menu.offline-note": "Sharing this project will create a hosted live copy at a new URL. You can share the URL with up to thirty other people to view and edit the project together.",
|
||||
"share-menu.copy-link-note": "Anyone with the link will be able to view and edit this project.",
|
||||
"share-menu.copy-readonly-link-note": "Anyone with the link will be able to view (but not edit) this project.",
|
||||
"share-menu.project-too-large": "Sorry, this project can't be shared because it's too large. We're working on it!",
|
||||
"export-menu.title": "Export",
|
||||
"people-menu.title": "People",
|
||||
"people-menu.change-name": "Change name",
|
||||
"people-menu.change-color": "Change color",
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -12,6 +12,7 @@ export type TLUiEventSource =
|
|||
| 'debug-panel'
|
||||
| 'page-menu'
|
||||
| 'share-menu'
|
||||
| 'export-menu'
|
||||
| 'toolbar'
|
||||
| 'people-menu'
|
||||
| 'dialog'
|
||||
|
|
|
@ -226,11 +226,13 @@ export type TLTranslationKey =
|
|||
| 'share-menu.share-project'
|
||||
| 'share-menu.copy-link'
|
||||
| 'share-menu.readonly-link'
|
||||
| 'share-menu.create-snapshot-link'
|
||||
| 'share-menu.copy-readonly-link'
|
||||
| 'share-menu.offline-note'
|
||||
| 'share-menu.copy-link-note'
|
||||
| 'share-menu.copy-readonly-link-note'
|
||||
| 'share-menu.project-too-large'
|
||||
| 'export-menu.title'
|
||||
| 'people-menu.title'
|
||||
| 'people-menu.change-name'
|
||||
| 'people-menu.change-color'
|
||||
|
|
|
@ -226,6 +226,7 @@ export const DEFAULT_TRANSLATION = {
|
|||
'share-menu.share-project': 'Share this project',
|
||||
'share-menu.copy-link': 'Copy link',
|
||||
'share-menu.readonly-link': 'Read-only',
|
||||
'share-menu.create-snapshot-link': 'Create snapshot link',
|
||||
'share-menu.copy-readonly-link': 'Copy read-only link',
|
||||
'share-menu.offline-note':
|
||||
'Sharing this project will create a hosted live copy at a new URL. You can share the URL with up to thirty other people to view and edit the project together.',
|
||||
|
@ -234,6 +235,7 @@ export const DEFAULT_TRANSLATION = {
|
|||
'Anyone with the link will be able to view (but not edit) this project.',
|
||||
'share-menu.project-too-large':
|
||||
"Sorry, this project can't be shared because it's too large. We're working on it!",
|
||||
'export-menu.title': 'Export',
|
||||
'people-menu.title': 'People',
|
||||
'people-menu.change-name': 'Change name',
|
||||
'people-menu.change-color': 'Change color',
|
||||
|
|
Loading…
Reference in a new issue