diff options
author | dolphin <dolphin@lindenlab.com> | 2014-10-09 16:10:00 -0700 |
---|---|---|
committer | dolphin <dolphin@lindenlab.com> | 2014-10-09 16:10:00 -0700 |
commit | f9113c286fae143962f1d79663e66a303c46ce51 (patch) | |
tree | 9190363e14749efdb3f46de02c67c377a0b9718e /indra/newview/skins/default/xui/de/floater_script_ed_prefs.xml | |
parent | 873a72fdbad8bca29cf8129b318719c1af5f8e9d (diff) | |
parent | 788ce7a8cdbbbf98566ce75ec281ec00c21dc6d8 (diff) |
Merge
Diffstat (limited to 'indra/newview/skins/default/xui/de/floater_script_ed_prefs.xml')
-rw-r--r-- | indra/newview/skins/default/xui/de/floater_script_ed_prefs.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/indra/newview/skins/default/xui/de/floater_script_ed_prefs.xml b/indra/newview/skins/default/xui/de/floater_script_ed_prefs.xml new file mode 100644 index 0000000000..2f9182980b --- /dev/null +++ b/indra/newview/skins/default/xui/de/floater_script_ed_prefs.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floater_script_colors" title="SKRIPTFARBEN"> + <text name="color_pickers_label"> + Gewünschte Farben auswählen: + </text> + <text name="text_label"> + Text + </text> + <text name="cursor_label"> + Cursor + </text> + <text name="background_label"> + Hintergrund + </text> + <text name="datatype_label"> + Datentypen + </text> + <text name="event_label"> + Events + </text> + <text name="string_literal_label"> + String-Literale + </text> + <text name="constant_label"> + Konstante + </text> + <text name="flow_control_label"> + Flusskontrolle + </text> + <text name="function_label"> + Funktion + </text> + <text name="comment_label"> + Kommentar + </text> + <script_editor name="Script Preview"> + /* Ein Beispielskript */ +default +{ + state_entry() + { + // Kommentar + string greeting = "Hallo"; + llSay(PUBLIC_CHANNEL, greeting); + } +} + </script_editor> +</floater> |