reorder language files
This commit is contained in:
@@ -0,0 +1,226 @@
|
||||
import Blockly from 'blockly'
|
||||
|
||||
|
||||
/**
|
||||
* Toolbox
|
||||
*/
|
||||
Blockly.Msg.toolbox_sensors = "Sensoren";
|
||||
Blockly.Msg.toolbox_logic = "Logik";
|
||||
Blockly.Msg.toolbox_loops = "Schleifen";
|
||||
Blockly.Msg.toolbox_math = "Mathematik";
|
||||
Blockly.Msg.toolbox_io = "Eingang/Ausgang";
|
||||
Blockly.Msg.toolbox_time = "Zeit";
|
||||
Blockly.Msg.toolbox_functions = "Funktionen";
|
||||
Blockly.Msg.toolbox_variables = "Variablen";
|
||||
|
||||
/**
|
||||
* Tooltips
|
||||
*
|
||||
*/
|
||||
|
||||
Blockly.Msg.tooltip_compile_code = "Code kompilieren"
|
||||
Blockly.Msg.tooltip_save_blocks = "Blöcke speichern";
|
||||
Blockly.Msg.tooltip_open_blocks = "Blöcke öffnen";
|
||||
Blockly.Msg.tooltip_screenshot = "Screenshot erstellen";
|
||||
Blockly.Msg.tooltip_clear_workspace = "Workspace zurücksetzen";
|
||||
Blockly.Msg.tooltip_share_blocks = "Blöcke teilen";
|
||||
Blockly.Msg.tooltip_show_code = "Code anzeigen";
|
||||
Blockly.Msg.tooltip_hide_code = "Code ausblenden"
|
||||
Blockly.Msg.tooltip_delete_project = "Projekt löschen"
|
||||
Blockly.Msg.tooltip_project_name = "Name des Projektes"
|
||||
Blockly.Msg.tooltip_download_project = "Projekt herunterladen"
|
||||
Blockly.Msg.tooltip_open_project = "Projekt öffnen"
|
||||
Blockly.Msg.tooltip_update_project = "Projekt aktualisieren"
|
||||
Blockly.Msg.tooltip_save_project = "Projekt speichern"
|
||||
Blockly.Msg.tooltip_create_project = "Projekt erstellen"
|
||||
Blockly.Msg.tooltip_share_project = "Projekt teilen"
|
||||
Blockly.Msg.tooltip_reset_workspace = "Workspace zurücksetzen"
|
||||
Blockly.Msg.tooltip_copy_link = "Link kopieren"
|
||||
Blockly.Msg.tooltip_trashcan_hide = 'gelöschte Blöcke ausblenden'
|
||||
Blockly.Msg.tooltip_trashcan_delete = 'Blöcke endgültig löschen'
|
||||
Blockly.Msg.tooltip_project_title = "Titel des Projektes"
|
||||
Blockly.Msg.tooltip_check_solution = "Lösung kontrollieren"
|
||||
|
||||
/**
|
||||
* Messages
|
||||
*
|
||||
*/
|
||||
|
||||
Blockly.Msg.messages_delete_project_failed = "Fehler beim Löschen des Projektes. Versuche es noch einmal."
|
||||
Blockly.Msg.messages_reset_workspace_success = "Das Projekt wurde erfolgreich zurückgesetzt"
|
||||
Blockly.Msg.messages_PROJECT_UPDATE_SUCCESS = "Das Projekt wurde erfolgreich aktualisiert."
|
||||
Blockly.Msg.messages_GALLERY_UPDATE_SUCCESS = "Das Galerie-Projekt wurde erfolgreich aktualisiert."
|
||||
Blockly.Msg.messages_PROJECT_UPDATE_FAIL = "Fehler beim Aktualisieren des Projektes. Versuche es noch einmal."
|
||||
Blockly.Msg.messages_GALLERY_UPDATE_FAIL = "Fehler beim Aktualisieren des Galerie-Projektes. Versuche es noch einmal."
|
||||
Blockly.Msg.messages_gallery_save_fail_1 = "Fehler beim Speichern des "
|
||||
Blockly.Msg.messages_gallery_save_fail_2 = "Projektes. Versuche es noch einmal."
|
||||
Blockly.Msg.messages_SHARE_SUCCESS = 'Programm teilen'
|
||||
Blockly.Msg.messages_SHARE_FAIL = "Fehler beim Erstellen eines Links zum Teilen deines Programmes. Versuche es noch einmal."
|
||||
Blockly.Msg.messages_copylink_success = 'Link erfolgreich in Zwischenablage gespeichert.'
|
||||
Blockly.Msg.messages_rename_success_01 = 'Das Projekt wurde erfolgreich in '
|
||||
Blockly.Msg.messages_rename_success_02 = 'umbenannt.'
|
||||
Blockly.Msg.messages_newblockly_head = "Willkommen zur neuen Version Blockly für die senseBox"
|
||||
Blockly.Msg.messages_newblockly_text = "Die neue Blockly Version befindet sich zurzeit in der Testphase. Alle Neuigkeiten findet ihr hier: "
|
||||
Blockly.Msg.messages_GET_TUTORIAL_FAIL = 'Zurück zur Tutorials-Übersicht'
|
||||
Blockly.Msg.messages_LOGIN_FAIL = 'Der Benutzername oder das Passwort ist nicht korrekt.'
|
||||
/**
|
||||
* Share Dialog
|
||||
*/
|
||||
|
||||
Blockly.Msg.sharedialog_headline = "Dein Link wurde erstellt.";
|
||||
Blockly.Msg.sharedialog_text = "Über den folgenden Link kannst du dein Programm teilen.";
|
||||
|
||||
/**
|
||||
* Project rename Dialog
|
||||
*/
|
||||
|
||||
Blockly.Msg.renamedialog_headline = "Projekt benennen";
|
||||
Blockly.Msg.renamedialog_text = "Bitte gib einen Namen für das Projekt ein und bestätige diesen mit einem Klick auf 'Bestätigen'."
|
||||
|
||||
/**
|
||||
* Compile Dialog
|
||||
*
|
||||
*/
|
||||
|
||||
Blockly.Msg.compiledialog_headline = "Fehler"
|
||||
Blockly.Msg.compiledialog_text = "Beim kompilieren ist ein Fehler aufgetreten. Überprüfe deine Blöcke und versuche es erneut"
|
||||
|
||||
/**
|
||||
* Buttons
|
||||
*
|
||||
*/
|
||||
|
||||
Blockly.Msg.button_cancel = "Abbrechen";
|
||||
Blockly.Msg.button_close = "Schließen";
|
||||
Blockly.Msg.button_accept = "Bestätigen";
|
||||
Blockly.Msg.button_compile = "Kompilieren";
|
||||
Blockly.Msg.button_create_variableCreate = "Erstelle Variable";
|
||||
Blockly.Msg.button_back = "Zurück"
|
||||
Blockly.Msg.button_next = "nächster Schritt"
|
||||
Blockly.Msg.button_tutorial_overview = "Tutorial Übersicht"
|
||||
Blockly.Msg.button_login = "Anmelden"
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
Blockly.Msg.filename = "Dateiname";
|
||||
Blockly.Msg.projectname = "Projektname";
|
||||
|
||||
/**
|
||||
* Settings
|
||||
*/
|
||||
Blockly.Msg.settings_head = "Einstellungen"
|
||||
Blockly.Msg.settings_language = "Sprache"
|
||||
Blockly.Msg.settings_language_text = "Auswahl der Sprache gilt für die gesamte Anwendung. Es kann zwischen Deutsch und Englisch unterschieden werden."
|
||||
Blockly.Msg.settings_language_de = "Deutsch"
|
||||
Blockly.Msg.settings_language_en = "Englisch"
|
||||
Blockly.Msg.settings_renderer = "Renderer"
|
||||
Blockly.Msg.settings_renderer_text = "Der eingestellte Renderer bestimmt das Aussehen der Blöcke. Es kann zwischen 'Geras' und 'Zelos' unterschieden werden, wobei 'Zelos' insbesondere für eine Touch-Anwendung geeignet ist."
|
||||
Blockly.Msg.settings_statistics = "Statistiken"
|
||||
Blockly.Msg.settings_statistics_text = "Die Anzeige von Statistiken zur Nutzung der Blöcke oberhalb der Arbeitsfläche kann ein- oder ausgeblendet werden."
|
||||
Blockly.Msg.settings_statistics_on = "An"
|
||||
Blockly.Msg.settings_statistics_off = "Aus"
|
||||
|
||||
/**
|
||||
* 404
|
||||
*/
|
||||
|
||||
Blockly.Msg.notfound_head = "Die von Ihnen angeforderte Seite kann nicht gefunden werden."
|
||||
Blockly.Msg.notfound_text = "Die gesuchte Seite wurde möglicherweise entfernt, ihr Name wurde geändert oder sie ist vorübergehend nicht verfügbar."
|
||||
|
||||
|
||||
/**
|
||||
* Labels
|
||||
*/
|
||||
|
||||
Blockly.Msg.labels_donotshowagain = 'Dialog nicht mehr anzeigen'
|
||||
Blockly.Msg.labels_here = "hier"
|
||||
Blockly.Msg.labels_username = 'E-Mail oder Nutzername'
|
||||
Blockly.Msg.labels_password = "Passwort"
|
||||
|
||||
/**
|
||||
* Badges
|
||||
*/
|
||||
|
||||
Blockly.Msg.badges_explaination = "Eine Übersicht über alle erhaltenen Badges im Kontext Blockly for senseBox findest du "
|
||||
Blockly.Msg.badges_ASSIGNE_BADGE_SUCCESS_01 = "Herzlichen Glückwunsch! Du hast den Badge "
|
||||
Blockly.Msg.badges_ASSIGNE_BADGE_SUCCESS_02 = " erhalten."
|
||||
/**
|
||||
* Tutorials
|
||||
*/
|
||||
|
||||
Blockly.Msg.tutorials_assessment_task = "Aufgabe"
|
||||
Blockly.Msg.tutorials_hardware_head = "Für die Umsetzung benötigst du folgende Hardware:"
|
||||
Blockly.Msg.tutorials_hardware_moreInformation = "Weitere Informationen zur Hardware-Komponente findest du"
|
||||
Blockly.Msg.tutorials_hardware_here = "hier";
|
||||
Blockly.Msg.tutorials_requirements = "Bevor du mit diesem Tutorial fortfährst solltest du folgende Tutorials erfolgreich abgeschlossen haben:"
|
||||
|
||||
|
||||
/**
|
||||
* Tutorial Builder
|
||||
*/
|
||||
|
||||
Blockly.Msg.builder_solution = "Lösung"
|
||||
Blockly.Msg.builder_solution_submit = "Lösung einreichen"
|
||||
Blockly.Msg.builder_example_submit = "Beispiel einreichen"
|
||||
Blockly.Msg.builder_comment = "Anmerkung: Man kann den initialen Setup()- bzw. Endlosschleifen()-Block löschen. Zusätzlich ist es möglich u.a. nur einen beliebigen Block auszuwählen, ohne dass dieser als deaktiviert dargestellt wird."
|
||||
Blockly.Msg.builder_hardware_order = "Beachte, dass die Reihenfolge des Auswählens maßgebend ist."
|
||||
Blockly.Msg.builder_hardware_helper = "Wähle mindestens eine Hardware-Komponente aus."
|
||||
Blockly.Msg.builder_requirements_head = "Voraussetzungen"
|
||||
Blockly.Msg.builder_requirements_order = "Beachte, dass die Reihenfolge des Anhakens maßgebend ist."
|
||||
|
||||
/**
|
||||
* Login
|
||||
*/
|
||||
|
||||
|
||||
Blockly.Msg.login_head = "Anmelden"
|
||||
Blockly.Msg.login_osem_account_01 = "Du benötigst einen "
|
||||
Blockly.Msg.login_osem_account_02 = "Account um dich einzuloggen"
|
||||
Blockly.Msg.login_lostpassword = "Du hast dein Passwort vergessen?"
|
||||
Blockly.Msg.login_createaccount = "Falls du noch keinen Account hast erstellen einen auf "
|
||||
/**
|
||||
* Navbar
|
||||
*/
|
||||
|
||||
Blockly.Msg.navbar_tutorials = "Tutorials"
|
||||
Blockly.Msg.navbar_tutorialbuilder = "Tutorial erstellen"
|
||||
Blockly.Msg.navbar_gallery = "Gallerie"
|
||||
Blockly.Msg.navbar_projects = "Projekte"
|
||||
|
||||
Blockly.Msg.navbar_menu = "Menü"
|
||||
Blockly.Msg.navbar_login = "Einloggen"
|
||||
Blockly.Msg.navbar_mybadges = "myBadges"
|
||||
Blockly.Msg.navbar_account = "Konto"
|
||||
Blockly.Msg.navbar_logout = "Abmelden"
|
||||
Blockly.Msg.navbar_settings = "Einstellungen"
|
||||
|
||||
/**
|
||||
* Codeviewer
|
||||
*/
|
||||
|
||||
Blockly.Msg.codeviewer_arduino = "Arduino Quellcode"
|
||||
Blockly.Msg.codeviewer_xml = "XML Blöcke"
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Overlay
|
||||
*/
|
||||
|
||||
Blockly.Msg.compile_overlay_head = "Dein Programm wird nun kompiliert und heruntergeladen"
|
||||
Blockly.Msg.compile_overlay_text = "Kopiere es anschließend auf deine senseBox MCU"
|
||||
Blockly.Msg.compile_overlay_help = "Benötigst du mehr Hilfe? Dann schaue hier: "
|
||||
|
||||
/**
|
||||
* Tooltip Viewer
|
||||
*/
|
||||
|
||||
Blockly.Msg.tooltip_viewer = "Hilfe"
|
||||
Blockly.Msg.tooltip_moreInformation = "Mehr Informationen findest du "
|
||||
Blockly.Msg.tooltip_hint = "Wähle einen Block aus um dir die Hilfe anzeigen zu lassen"
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user