reorder language files
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
import Blockly from 'blockly'
|
||||
/**
|
||||
* 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:";
|
||||
|
||||
Reference in New Issue
Block a user