Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ inav-configurator/
│ └── transpiler/ # Logic conditions compiler
├── src/css/ # Stylesheets
│ └── tabs/ # Per-tab styles
├── locale/ # i18n translations (en, ja, ru, uk, zh_CN)
├── locale/ # i18n translations (en, ja, ru, uk, zh_CN, fr)
├── resources/ # 3D models, OSD fonts, SITL binaries
├── index.html # Single-page app entry
├── forge.config.js # Electron Forge build config
Expand Down
2 changes: 1 addition & 1 deletion js/localization.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import i18next from 'i18next';
import store from './store'


const availableLanguages = ['en', 'ja', 'ru', 'uk', 'zh_CN'];
const availableLanguages = ['en', 'ja', 'ru', 'uk', 'zh_CN', 'fr'];

const i18n = {};

Expand Down
6 changes: 5 additions & 1 deletion locale/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
"message": "Русский",
"_comment": "Don't translate!"
},
"language_fr": {
"message": "Français",
"_comment": "Don't translate!"
},
"language": {
"message": "Language"
},
Expand Down Expand Up @@ -267,7 +271,7 @@
"message": "Stopbits"
},
"sitlSerialPort": {
"message": "Serial receiver/Proxy FC is connectected to host's serial port"
"message": "Serial receiver/Proxy FC is connected to host's serial port"
},
"sitlSerialUART": {
"message": "Serial receiver is configured on SITL's UART"
Expand Down
Loading
Loading