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.
pull/1382/head
Mitja Bezenšek 2023-05-15 17:30:35 +02:00 zatwierdzone przez GitHub
rodzic 72f6b91d2b
commit a824168e0a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
5 zmienionych plików z 9 dodań i 2 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -12,6 +12,7 @@ export type TLUiEventSource =
| 'debug-panel'
| 'page-menu'
| 'share-menu'
| 'export-menu'
| 'toolbar'
| 'people-menu'
| 'dialog'

Wyświetl plik

@ -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'

Wyświetl plik

@ -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',