Skip to content

Commit 34915e2

Browse files
author
Stefan Kremser
committed
Fixed Spanish language file
1 parent 38146c9 commit 34915e2

27 files changed

+38
-30
lines changed

esp8266_deauther/data/web/LICENSE.gz

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
1 Byte
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

esp8266_deauther/webfiles.h

Lines changed: 24 additions & 24 deletions
Large diffs are not rendered by default.

esp8266_deauther/wifi.h

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ String getContentType(String filename) {
130130
}
131131

132132
bool handleFileRead(String path) {
133-
prnt(W_AP_REQUEST);
134-
prnt(path);
133+
//prnt(W_AP_REQUEST);
134+
//prnt(path);
135135

136136
if (!path.charAt(0) == SLASH) path = String(SLASH) + path;
137137

@@ -153,8 +153,8 @@ bool handleFileRead(String path) {
153153
File file = SPIFFS.open(path, "r");
154154
server.streamFile(file, contentType);
155155
file.close();
156-
prnt(SPACE);
157-
prntln(W_OK);
156+
//prnt(SPACE);
157+
//prntln(W_OK);
158158

159159
return true;
160160
}
@@ -281,6 +281,12 @@ void startAP(String path, String ssid, String password, uint8_t ch, bool hidden,
281281
server.on(String(F("/lang/en.lang")).c_str(), HTTP_GET, []() {
282282
sendProgmem(enlang, sizeof(enlang), W_JSON);
283283
});
284+
server.on(String(F("/lang/es.lang")).c_str(), HTTP_GET, []() {
285+
sendProgmem(eslang, sizeof(eslang), W_JSON);
286+
});
287+
server.on(String(F("/lang/fi.lang")).c_str(), HTTP_GET, []() {
288+
sendProgmem(filang, sizeof(filang), W_JSON);
289+
});
284290
server.on(String(F("/lang/fr.lang")).c_str(), HTTP_GET, []() {
285291
sendProgmem(frlang, sizeof(frlang), W_JSON);
286292
});
@@ -300,6 +306,8 @@ void startAP(String path, String ssid, String password, uint8_t ch, bool hidden,
300306
else if (settings.getLang() == String(F("cs"))) sendProgmem(cslang, sizeof(cslang), W_JSON);
301307
else if (settings.getLang() == String(F("de"))) sendProgmem(delang, sizeof(delang), W_JSON);
302308
else if (settings.getLang() == String(F("en"))) sendProgmem(enlang, sizeof(enlang), W_JSON);
309+
else if (settings.getLang() == String(F("es"))) sendProgmem(eslang, sizeof(eslang), W_JSON);
310+
else if (settings.getLang() == String(F("fi"))) sendProgmem(filang, sizeof(filang), W_JSON);
303311
else if (settings.getLang() == String(F("fr"))) sendProgmem(frlang, sizeof(frlang), W_JSON);
304312
else if (settings.getLang() == String(F("it"))) sendProgmem(itlang, sizeof(itlang), W_JSON);
305313
else if (settings.getLang() == String(F("ru"))) sendProgmem(rulang, sizeof(rulang), W_JSON);

web_interface/lang/es.lang

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@
6565
"setting_attacktimeout": "Después de cuanto tiempo (en segundos) el ataque se detendrá automaticamente.\nConfigurarlo en 0 para deshabilitarlo.",
6666
"setting_forcepackets": "Cuantos tentativos de envío de un paquete.\nConfigurar este valor más alto si se desea obtener una mejor velocidad de paquetes en un area ocupada.\nCuidado, esta configuración puede hacer que el dispositivo vaya más lento o hacerlo más inestable.\n¡El valor máximo es 255!",
6767
"setting_deauthspertarget": "Cuantos frames de desautentifiación y desasociación son enviados para cada blanco.",
68-
"setting_deauthReason": "El codigo motivo que viene enviado con los frames tipo "deauth" para decir al dispositivo de destinación porqué la conexión será terminada.",
68+
"setting_deauthReason": "El codigo motivo que viene enviado con los frames tipo \"deauth\" para decir al dispositivo de destinación porqué la conexión será terminada.",
6969
"setting_beaconchannel": "Si habilitado, se enviará todos los frames en canales diversos durante la ejecución de un ataque tipo 'Beacon'.",
7070
"setting_beaconInterval": "Si está habilitado, los Beacons serán enviados cada segundo. Deshabilitado, el intervalo será de 100 ms.\nUn intervalo más largo significa mayor estabilidad y menos 'spammeo' de los paquetes, pero podría nesecitar más tiempo hasta que los clientes encuentren los SSID durante el escaneo.",
71-
"setting_randomTX": "Habilita la potencia de transmisión aleatoria para el envío de pedidos de frames 'Beacons' y 'Probe'."
71+
"setting_randomTX": "Habilita la potencia de transmisión aleatoria para el envío de pedidos de frames 'Beacons' y 'Probe'.",
7272
"setting_probesPerSSID": "Cuantos frames de pedidos 'Probe' son enviados para cada SSID.",
7373
"setting_lang": "Idioma predefinido para la interfaz web.\n¡Asegurese que el archivo del idioma exista!"
7474
}

0 commit comments

Comments
 (0)