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/ru/floater_script_ed_prefs.xml | |
parent | 873a72fdbad8bca29cf8129b318719c1af5f8e9d (diff) | |
parent | 788ce7a8cdbbbf98566ce75ec281ec00c21dc6d8 (diff) |
Merge
Diffstat (limited to 'indra/newview/skins/default/xui/ru/floater_script_ed_prefs.xml')
-rw-r--r-- | indra/newview/skins/default/xui/ru/floater_script_ed_prefs.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/indra/newview/skins/default/xui/ru/floater_script_ed_prefs.xml b/indra/newview/skins/default/xui/ru/floater_script_ed_prefs.xml new file mode 100644 index 0000000000..666827927f --- /dev/null +++ b/indra/newview/skins/default/xui/ru/floater_script_ed_prefs.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floater_script_colors" title="ЦВЕТА СКРИПТА"> + <text name="color_pickers_label"> + Выберите желаемые цвета: + </text> + <text name="text_label"> + Текст + </text> + <text name="cursor_label"> + Курсор + </text> + <text name="background_label"> + Фон + </text> + <text name="datatype_label"> + Типы данных + </text> + <text name="event_label"> + События + </text> + <text name="string_literal_label"> + Строковые литералы + </text> + <text name="constant_label"> + Константа + </text> + <text name="flow_control_label"> + Управление выполнением + </text> + <text name="function_label"> + Функция + </text> + <text name="comment_label"> + Комментарий + </text> + <script_editor name="Script Preview"> + /* Пример скрипта */ +default +{ + state_entry() + { + // Комментарий + string greeting = "Hello"; + llSay(PUBLIC_CHANNEL, greeting); + } +} + </script_editor> +</floater> |