Migrate more strings to translation keys (#11532)

This commit is contained in:
Michael Telatynski
2023-09-05 17:52:06 +01:00
committed by GitHub
parent c853257d54
commit 85be845f16
89 changed files with 5313 additions and 4434 deletions

View File

@@ -41,8 +41,8 @@ enum Category {
}
const categoryLabels: Record<Category, TranslationKey> = {
[Category.Room]: _td("common|room"),
[Category.Other]: _td("Other"),
[Category.Room]: _td("devtools|category_room"),
[Category.Other]: _td("devtools|category_other"),
};
export type Tool = React.FC<IDevtoolsProps> | ((props: IDevtoolsProps) => JSX.Element);