We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfbea2e commit 8793625Copy full SHA for 8793625
system_wifi.cpp
@@ -1,6 +1,8 @@
1
/*
2
Wifi Configuration and connection
3
Based on the example from https://github.com/Juerd/ESP-WiFiSettings
4
+
5
+ Note language support is for text displayed in the portal, others like filenames and debug texts are intentionally left in Engish.
6
*/
7
8
#include "_settings.h" // Settings for what to include etc
@@ -134,6 +136,13 @@ void setupLanguages() {
134
136
T.Project = F("Proyek");
135
137
}
138
#endif
139
+ #if defined LANGUAGE_ID || defined LANGUAGE_ALL
140
+ if (WiFiSettings.language == "id") {
141
+ T.MqttServer = F("MQTT server");
142
+ T.DeviceName = F("Nama Perangkat");
143
+ T.Project = F("Proyek");
144
+ }
145
+ #endif
146
147
148
// Note this is blocking - so order is important, in particular it must complete this before trying xMqtt::setup
0 commit comments