fix: consolidate platform stability regressions - #45
Draft
tover0314-w wants to merge 8 commits into
Draft
Conversation
- Add 8 new locale files (ja, ko, fr, de, es, pt, ru, it) with 366 keys each - Migrate ~136 hardcoded strings to i18next t() calls across 20+ components - Implement Rust tray menu i18n with HashMap-based TrayLabels struct - Add refresh_tray_labels Tauri command for dynamic language switching - Add UI_LANGUAGES shared constant in constants.ts - Update PRO_PLAN.features to use labelKey/detailKey pattern for i18n - Persist ui_language setting via Tauri store
- ErrorBoundary: use i18n.t() for class component (hooks unavailable) - AccountStep: translate OAuth buttons and verification toast - QuickTestStep: translate demo text, fix useEffect deps for t() values - LlmSetupStep: translate model placeholder and model count interpolation - CapsuleError: replace hardcoded fallback with t() key - AccountPage/UpgradePage QuotaBar: add useTranslation hook for aria-label - ScenesPane: replace language-dependent string check with mergeOk boolean - authStore: translate STT/LLM quota warning toasts via i18n.t() - constants.ts: refactor STT/LLM_PROVIDERS to labelKey pattern, clean LANGUAGES - SttPane/LlmPane: render providers via t(p.labelKey) - Add missing quota/aria keys to en.json and sync all 10 locale files
… files Added keys used in code but missing from locale files: - account: backToSignIn, freeCredit, resendVerification, sending, verificationResent, verifyEmailTitle - settings: autoDetect Removed 80 keys from old i18n design that were never referenced in code (onboarding/*, capsule/*, errors/*, tray/*, common/*, app/*). Also removed _comment metadata from 8 locale files. All 10 locale files now have identical key sets with zero mismatches.
- HomePage: unit="hours"/"k tokens"/"min" → t('account.quotaHours'/'quotaTokens'/'quotaMin')
- AccountPage: 'hours'/'min' in conditional → t('account.quotaHours'/'quotaMin')
- LlmPane: hardcoded bigmodel placeholder → dynamic from LLM_DEFAULT_CONFIG
- Add account.quotaMin key to all 10 locale files
- Update LlmPane test placeholder assertion
…nd MainLayout
- LlmPane: hardcoded model placeholder → t('settings.llmModelPlaceholder')
- MainLayout: hardcoded aria-label → t('nav.mainNavigation')
- Add nav.mainNavigation and settings.llmModelPlaceholder to all locale files
tover0314-w
force-pushed
the
codex/platform-bugfixes
branch
from
May 31, 2026 19:39
c00515c to
4fa3704
Compare
tover0314-w
force-pushed
the
codex/platform-bugfixes
branch
from
June 1, 2026 02:36
4fa3704 to
a0fb319
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Consolidates the narrow platform/stability fixes currently spread across open PRs and local audit work:
osascriptfirst and keep Enigo keyboard output on the main threadxdotool, plus the NVIDIA Wayland WebKit DMA-BUF workaroundCtrl+Winpure-modifier hotkey path using a low-level keyboard hook while keeping ordinary shortcuts on Tauri global-shortcutcpal,tokio-tungstenite, Tauri/plugin lockfiles) and remove the unused SQL plugin surfaceValidation run locally on Windows
npm audit --audit-level=highnpm run lintnpm test(91 frontend tests)npm run buildnpm run format:checkcargo fmt --check --manifest-path src-tauri/Cargo.tomlcargo test --manifest-path src-tauri/Cargo.toml(72 Rust tests)cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warningscargo check --manifest-path src-tauri/Cargo.toml --target x86_64-pc-windows-msvccargo audit --file src-tauri/Cargo.lockgit diff --checknpm run tauri -- build --no-bundleNotes
cargo auditreports allowed warnings from the Tauri/Linux GTK3 stack, but exits successfully with no blocking vulnerability.GitHub Actions currently fails before any job starts because the account is locked due to a billing issue, so macOS/Linux runner validation is still pending external CI availability.