mirror of https://github.com/arendst/Tasmota.git
VSCode didn't push the git changes....
This commit is contained in:
parent
72e88d1be3
commit
2d1121931b
|
@ -1,5 +1,4 @@
|
|||
This is a FORK providing ( in a few days I hope ) the translation file for the Catalan language.
|
||||
|
||||
![Tasmota logo](/tools/logo/TASMOTA_FullLogo_Vector.svg)
|
||||
|
||||
Alternative firmware for [ESP8266](https://en.wikipedia.org/wiki/ESP8266) and [ESP32](https://en.wikipedia.org/wiki/ESP32) based devices with **easy configuration using webUI, OTA updates, automation using timers or rules, expandability and entirely local control over MQTT, HTTP, Serial or KNX**.
|
||||
_Written for PlatformIO._
|
||||
|
|
|
@ -83,6 +83,9 @@ build_flags = ${env.build_flags} -DMY_LANGUAGE=pt_BR
|
|||
[env:tasmota-CN]
|
||||
build_flags = ${env.build_flags} -DMY_LANGUAGE=zh_CN
|
||||
|
||||
[env:tasmota-CA]
|
||||
build_flags = ${env.build_flags} -DMY_LANGUAGE=ca_AD
|
||||
|
||||
[env:tasmota-CZ]
|
||||
build_flags = ${env.build_flags} -DMY_LANGUAGE=cs_CZ
|
||||
|
||||
|
|
|
@ -254,6 +254,10 @@ build_flags = ${env:tasmota32_base.build_flags} -DMY_LANGUAGE=pt_BR
|
|||
extends = env:tasmota32_base
|
||||
build_flags = ${env:tasmota32_base.build_flags} -DMY_LANGUAGE=zh_CN -DFIRMWARE_TASMOTA32
|
||||
|
||||
[env:tasmota32-CA]
|
||||
extends = env:tasmota32_base
|
||||
build_flags = ${env:tasmota32_base.build_flags} -DMY_LANGUAGE=ca_AD -DFIRMWARE_TASMOTA32
|
||||
|
||||
[env:tasmota32-CZ]
|
||||
extends = env:tasmota32_base
|
||||
build_flags = ${env:tasmota32_base.build_flags} -DMY_LANGUAGE=cs_CZ -DFIRMWARE_TASMOTA32
|
||||
|
|
Loading…
Reference in New Issue