Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug #511] Add translations for invalid identifier errors #518

Merged
merged 2 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/i18n/cs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,10 @@ const cs = {
"error.vocabulary.import.excel.labelWithDifferentIdentifierExists":
'Slovník již obsahuje pojem s názvem "{label}" s rozdílným identifikátorem než s jakým byl importován. Existující identifikátor: {existingUri}',

"error.invalidUriCharacter":
'Neplatný identifikátor: "{uri}", neočekávaný znak "{char}" na pozici {index}.',
"error.invalidIdentifier": 'Neplatný identifikátor: "{uri}"',

"history.label": "Historie změn",
"history.loading": "Načítám historii...",
"history.empty": "Zaznamenaná historie je prázdná.",
Expand Down
4 changes: 4 additions & 0 deletions src/i18n/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,10 @@ const en = {
"error.vocabulary.import.excel.labelWithDifferentIdentifierExists":
'Vocabulary already contains a term with label "{label}" with a different identifier than the imported one. Existing identifier: {existingUri}',

"error.invalidUriCharacter":
'Invalid identifier: "{uri}", unexpected character "{char}" at {index}.',
"error.invalidIdentifier": 'Invalid identifier: "{uri}"',

"history.label": "Change history",
"history.loading": "Loading history...",
"history.empty": "The recorded history of this asset is empty.",
Expand Down