Fix missing i18n keys (#17952)

* Fix missing i18n keys

* gpu info dialog fixes
This commit is contained in:
Josh Hawkins
2025-04-29 06:47:19 -06:00
committed by GitHub
parent 1e079027ec
commit 9291543705
7 changed files with 16 additions and 9 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ export const colorSchemes: ColorScheme[] = [
// eslint-disable-next-line react-refresh/only-export-components
export const friendlyColorSchemeName = (className: string): string => {
const words = className.split("-").slice(1); // Exclude the first word (e.g., 'theme')
return "menu.theme." + words.join(".");
return "menu.theme." + words.join("");
};
type ThemeProviderProps = {