fix(i18n): localize Codex managed-account none option label

ProviderForm passed a hardcoded Chinese string as codexOauthNoneOptionLabel,
so en/ja/zh-TW users saw Chinese text in the Codex account selector's
"none" option. Add codexOauth.noneOptionLabel to all four locales and
resolve it via t().
This commit is contained in:
Jason
2026-06-15 20:55:21 +08:00
parent 44cc8245ab
commit 71d3128db7
5 changed files with 5 additions and 1 deletions
@@ -2100,7 +2100,7 @@ function ProviderFormFull({
selectedCodexAccountId={selectedCodexAccountId}
onCodexAccountSelect={setSelectedCodexAccountId}
onManageAuthAccounts={onManageAuthAccounts}
codexOauthNoneOptionLabel="暂不绑定托管账号,使用浏览器登录"
codexOauthNoneOptionLabel={t("codexOauth.noneOptionLabel")}
shouldShowSpeedTest={shouldShowSpeedTest}
codexBaseUrl={codexBaseUrl}
onBaseUrlChange={handleCodexBaseUrlChange}