Skip to content
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
2 changes: 1 addition & 1 deletion public/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"editorPanel": {
"ariaLabel": "editor text input",
"characterLimitError": "Error: Character limit reached",
"characterLimitExplanation": "Files in the editor are limited to {{maxCharacters}} characters",
"characterLimitExplanation_other": "Files in the editor are limited to {{count}} characters",
"viewOnly": "View only",
"close": "close"
},
Expand Down
2 changes: 1 addition & 1 deletion public/translations/xx-XX.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"editorPanel": {
"ariaLabel": "Texteingabe des Editors",
"characterLimitError": "Fehler: Zeichenlimit erreicht",
"characterLimitExplanation": "Dateien im Editor sind auf {{maxCharacters}} Zeichen begrenzt",
"characterLimitExplanation_other": "Dateien im Editor sind auf {{count}} Zeichen begrenzt",
"viewOnly": "Nur Ansicht",
"close": "schließen"
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/Editor/EditorPanel/EditorPanel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const EditorPanel = ({ extension = "html", fileName = "index" }) => {
title={t("editorPanel.characterLimitError")}
type="error"
text={t("editorPanel.characterLimitExplanation", {
maxCharacters: MAX_CHARACTERS,
count: MAX_CHARACTERS,
})}
/>
)}
Expand Down
Loading