Skip to content

fix: sync locale keys with en.json#166

Open
euyua9 wants to merge 1 commit intoBuilderIO:mainfrom
euyua9:sysa/ai-shell-i18n-key-parity-20260422
Open

fix: sync locale keys with en.json#166
euyua9 wants to merge 1 commit intoBuilderIO:mainfrom
euyua9:sysa/ai-shell-i18n-key-parity-20260422

Conversation

@euyua9
Copy link
Copy Markdown

@euyua9 euyua9 commented Apr 21, 2026

Summary

  • add the missing Missing required parameter entry to the Italian locale
  • normalize the Indonesian OpenAI key prompt key to match the exact en.json message id

Testing

  • python3 - <<'PY'
    import json
    from pathlib import Path
    en = json.loads(Path('src/locales/en.json').read_text())
    it = json.loads(Path('src/locales/it.json').read_text())
    id_ = json.loads(Path('src/locales/id.json').read_text())
    assert 'Missing required parameter' in it
    assert 'Please set your OpenAI API key via ai config set OPENAI_KEY=<your token>' in en
    assert 'Please set your OpenAI API key via ai config set OPENAI_KEY=<your token>' in id_
    assert 'Please set your OpenAI API key via ai config set OPENAI_KEY=' not in id_
    PY

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant