diff --git a/frontend/src/components/common/SettingsDialog.tsx b/frontend/src/components/common/SettingsDialog.tsx index e2d8475..5bfa2d7 100644 --- a/frontend/src/components/common/SettingsDialog.tsx +++ b/frontend/src/components/common/SettingsDialog.tsx @@ -46,6 +46,7 @@ import { import { cn } from "@/lib/utils"; import { useBackend, useBackendConfig } from "@/contexts/BackendContext"; import { GeminiAuthMethod, LLxprtProvider } from "@/types/backend"; +import { supportedLanguages, languageNames } from "@/i18n"; interface OpenRouterModel { id: string; @@ -249,10 +250,11 @@ export const SettingsDialog: React.FC = ({ - English - 简体中文 - 繁體中文 - Русский + {supportedLanguages.map((lang) => ( + + {languageNames[lang]} + + ))}