fix: minor spelling and wording changes for en and de (#2096)

Minor spelling and wording changes

I went through some of english and german localizations to correct or add minor things.

Added `invalid-tag-name` to json. Which also means it should be translated elsewhere.
This commit is contained in:
Derek Reiff
2023-08-06 20:26:57 -07:00
committed by GitHub
parent 4d3e4358e8
commit f9d1080a7d
4 changed files with 35 additions and 31 deletions

View File

@ -56,7 +56,7 @@ const CreateTagDialog: React.FC<Props> = (props: Props) => {
const handleSaveBtnClick = async () => {
if (!validateTagName(tagName)) {
toast.error("Invalid tag name");
toast.error(t("tag-list.invalid-tag-name"));
return;
}