diff options
Diffstat (limited to 'indra/newview/skins/default/xui/ja/floater_script_ed_prefs.xml')
-rw-r--r-- | indra/newview/skins/default/xui/ja/floater_script_ed_prefs.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/indra/newview/skins/default/xui/ja/floater_script_ed_prefs.xml b/indra/newview/skins/default/xui/ja/floater_script_ed_prefs.xml new file mode 100644 index 0000000000..3a90e673ae --- /dev/null +++ b/indra/newview/skins/default/xui/ja/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 = "こんにちは"; +llSay(PUBLIC_CHANNEL, greeting); + } +} + </script_editor> +</floater> |