fix the language selection

This commit is contained in:
Mario
2021-01-13 14:08:36 +01:00
parent 97e28b62f8
commit b25a4d602a
50 changed files with 4764 additions and 2437 deletions
+36 -35
View File
@@ -1,37 +1,38 @@
import Blockly from 'blockly'
/**
* Webserver
*/
export const WEBSERVER = {
/**
* Webserver
*/
Blockly.Msg.senseBox_ip_address = "IP-Adresse";
Blockly.Msg.senseBox_ip_address_tip = "Gibt die IP-Adresse als Zeichenkette zurück.";
Blockly.Msg.senseBox_init_http_server_tip = "Initialisiert einen http-Server auf dem angegebenen Port";
Blockly.Msg.senseBox_init_http_server = "HTTP-Server initialisieren";
Blockly.Msg.senseBox_http_on_client_connect = "Wenn Client verbunden ist:";
Blockly.Msg.senseBox_http_on_client_connect_tip = "Überprüft, ob ein Client verbunden ist und führt in diesem Fall die angegebene Anweisung aus";
Blockly.Msg.senseBox_http_method = "Methode";
Blockly.Msg.senseBox_http_method_tip = "Methode des aktuellen HTTP-Requests";
Blockly.Msg.senseBox_http_uri = "URI";
Blockly.Msg.senseBox_http_uri_tip = "URI der angeforderten Ressource der aktuellen HTTP-Anfrage";
Blockly.Msg.senseBox_http_user_agent = "User-Agent";
Blockly.Msg.senseBox_http_user_agent_tip = "Der Benutzer-Agent sendet zusammen mit der aktuellen HTTP-Anfrage";
Blockly.Msg.senseBox_http_protocol_version = "HTTP Version";
Blockly.Msg.senseBox_http_protocol_version_tip = "The HTTP Version of the current HTTP request";
Blockly.Msg.senseBox_http_success_tip = "Senden einer erfolgreichen HTTP-Antwort mit Inhalt";
Blockly.Msg.senseBox_http_not_found_tip = "Senden einer vordefinierten 404 HTTP-Antwort.";
Blockly.Msg.senseBox_http_success = "Erfolgreiche";
Blockly.Msg.senseBox_http_success_l2 = "HTTP-Antwort";
Blockly.Msg.senseBox_http_success_buildhtml = "HTML:"
Blockly.Msg.senseBox_http_not_found = "404 Fehler";
Blockly.Msg.senseBox_html_document = "HTML";
Blockly.Msg.senseBox_html_header = "<head>";
Blockly.Msg.senseBox_html_header_end = "</head>";
Blockly.Msg.senseBox_html_body = "<body>";
Blockly.Msg.senseBox_html_body_end = "</body>";
Blockly.Msg.senseBox_html_general_tag_tip = "Ein allgemeiner HTML-Tag-Baustein.";
Blockly.Msg.senseBox_html_document_tip = "Ein Block zum Erzeugen eines HTML-Dokuments...";
Blockly.Msg.senseBox_tag_first_mutator_tip = "Mögliche Erweiterungen zu diesem Block...";
Blockly.Msg.senseBox_tag_optional_mutator_tip = "Mehr Tags zum Block hinzufügen";
Blockly.Msg.senseBox_sd_web_readHTML = "Lese HTML von SD Karte";
Blockly.Msg.sensebox_web_readHTML_filename = "Datei:";
senseBox_ip_address: "IP-Adresse",
senseBox_ip_address_tip: "Gibt die IP-Adresse als Zeichenkette zurück.",
senseBox_init_http_server_tip: "Initialisiert einen http-Server auf dem angegebenen Port",
senseBox_init_http_server: "HTTP-Server initialisieren",
senseBox_http_on_client_connect: "Wenn Client verbunden ist:",
senseBox_http_on_client_connect_tip: "Überprüft, ob ein Client verbunden ist und führt in diesem Fall die angegebene Anweisung aus",
senseBox_http_method: "Methode",
senseBox_http_method_tip: "Methode des aktuellen HTTP-Requests",
senseBox_http_uri: "URI",
senseBox_http_uri_tip: "URI der angeforderten Ressource der aktuellen HTTP-Anfrage",
senseBox_http_user_agent: "User-Agent",
senseBox_http_user_agent_tip: "Der Benutzer-Agent sendet zusammen mit der aktuellen HTTP-Anfrage",
senseBox_http_protocol_version: "HTTP Version",
senseBox_http_protocol_version_tip: "The HTTP Version of the current HTTP request",
senseBox_http_success_tip: "Senden einer erfolgreichen HTTP-Antwort mit Inhalt",
senseBox_http_not_found_tip: "Senden einer vordefinierten 404 HTTP-Antwort.",
senseBox_http_success: "Erfolgreiche",
senseBox_http_success_l2: "HTTP-Antwort",
senseBox_http_success_buildhtml: "HTML:",
senseBox_http_not_found: "404 Fehler",
senseBox_html_document: "HTML",
senseBox_html_header: "<head>",
senseBox_html_header_end: "</head>",
senseBox_html_body: "<body>",
senseBox_html_body_end: "</body>",
senseBox_html_general_tag_tip: "Ein allgemeiner HTML-Tag-Baustein.",
senseBox_html_document_tip: "Ein Block zum Erzeugen eines HTML-Dokuments...",
senseBox_tag_first_mutator_tip: "Mögliche Erweiterungen zu diesem Block...",
senseBox_tag_optional_mutator_tip: "Mehr Tags zum Block hinzufügen",
senseBox_sd_web_readHTML: "Lese HTML von SD Karte",
sensebox_web_readHTML_filename: "Datei:",
}