Adding Languages
How to add language XY to the WebUI~
- Download the SVG flag from here and place in
interface/src/i18n
- Create the folder XY in
interface/src/i18n
- Copy
interface/src/i18n/en/index.ts
tointerface/src/i18n/XY/index.ts
- Change in the first and last line
en
to your language and in the first linesBaseTranslation
toTranslation
- Edit
interface/src/i18n/XY/index.ts
and replace the English texts by your language - Edit
interface/src/components/layout/LanguageSelector.tsx
and add the following:
1 2 3 4 5 6 |
|
- Navigate to the
interface
folder and typeyarn standalone
and test the WebUI
How to add language XY to device entities~
-
Edit
interface/src/project/SettingsApplication.tsx
and insert in selection box (~ line 345):1
<MenuItem value="xy">NewLanguage (XY)</MenuItem>
- Edit
src/system.cpp
line 45 and appendEMSESP_LOCALE_XY
to thelanguages[]
array - Edit
src/local_translations.h
and append the defines by adding
#define EMSESP_LOCALE_XY "xy"
- add your translation as
, "your text"
at the end of eachMAKE_PSTR_LIST()
inside the bracket it should look something like this:MAKE_PSTR_LIST(tag, "en", "de", "nl", "se", "pl", "xy")
- Compile, flash, test
Last update: February 10, 2025