OSDN Git Service

Merge branch 'master' of git.osdn.net:/gitroot/hengband/hengband
[hengband/hengband.git] / src / autopick / autopick-editor-table.h
1 #pragma once
2
3 /*!
4  * todo GAME_TEXT[] かconcptrを使いたかった
5  * しかしコンパイルエラーで通らなかったので暫定的にdefineにした
6  * 上手いことコンパイルできる方法があれば求む
7  * @brief コマンド説明
8  */
9 #define MN_QUIT _("セーブ無しで終了", "Quit without save")
10 #define MN_SAVEQUIT _("セーブして終了", "Save & Quit")
11 #define MN_REVERT _("全ての変更を破棄", "Revert all changes")
12 #define MN_HELP _("ヘルプ", "Help")
13
14 #define MN_MOVE _("カーソル移動", "Move cursor")
15 #define MN_LEFT _("左          (←矢印キー)", "Left     (Left Arrow key)")
16 #define MN_DOWN _("下          (↓矢印キー)", "Down     (Down Arrow key)")
17 #define MN_UP _("上          (↑矢印キー)", "Up       (Up Arrow key)")
18 #define MN_RIGHT _("右          (→矢印キー)", "Right    (Right Arrow key)")
19 #define MN_BOL _("行の先頭", "Beggining of line")
20 #define MN_EOL _("行の終端", "End of line")
21 #define MN_PGUP _("上のページ  (PageUpキー)", "Page up  (PageUp key)")
22 #define MN_PGDOWN _("下のページ  (PageDownキー)", "Page down(PageDown key)")
23 #define MN_TOP _("1行目へ移動 (Homeキー)", "Top      (Home key)")
24 #define MN_BOTTOM _("最下行へ移動(Endキー)", "Bottom   (End key)")
25
26 #define MN_EDIT _("編集", "Edit")
27 #define MN_CUT _("カット", "Cut")
28 #define MN_COPY _("コピー", "Copy")
29 #define MN_PASTE _("ペースト", "Paste")
30 #define MN_BLOCK _("選択範囲の指定", "Select block")
31 #define MN_KILL_LINE _("行の残りを削除", "Kill rest of line")
32 #define MN_DELETE_CHAR _("1文字削除", "Delete character")
33 #define MN_BACKSPACE _("バックスペース", "Backspace")
34 #define MN_RETURN _("改行", "Return")
35
36 #define MN_SEARCH _("検索", "Search")
37 #define MN_SEARCH_STR _("文字列で検索", "Search by string")
38 #define MN_SEARCH_FORW _("前方へ再検索", "Search foward")
39 #define MN_SEARCH_BACK _("後方へ再検索", "Search backward")
40 #define MN_SEARCH_OBJ _("アイテムを選択して検索", "Search by inventory object")
41 #define MN_SEARCH_DESTROYED _("自動破壊されたアイテムで検索", "Search by destroyed object")
42
43 #define MN_INSERT _("色々挿入", "Insert...")
44 #define MN_INSERT_OBJECT _("選択したアイテムの名前を挿入", "Insert name of choosen object")
45 #define MN_INSERT_DESTROYED _("自動破壊されたアイテムの名前を挿入", "Insert name of destroyed object")
46 #define MN_INSERT_BLOCK _("条件分岐ブロックの例を挿入", "Insert conditional block")
47 #define MN_INSERT_MACRO _("マクロ定義を挿入", "Insert a macro definition")
48 #define MN_INSERT_KEYMAP _("キーマップ定義を挿入", "Insert a keymap definition")
49
50 #define MN_COMMAND_LETTER _("拾い/破壊/放置の選択", "Command letter")
51 #define MN_CL_AUTOPICK _("「 」 (自動拾い)", "' ' (Auto pick)")
52 #define MN_CL_DESTROY _("「!」 (自動破壊)", "'!' (Auto destroy)")
53 #define MN_CL_LEAVE _("「~」 (放置)", "'~' (Leave it on the floor)")
54 #define MN_CL_QUERY _("「;」 (確認して拾う)", "';' (Query to pick up)")
55 #define MN_CL_NO_DISP _("「(」 (マップコマンドで表示しない)", "'(' (No display on the large map)")
56
57 #define MN_ADJECTIVE_GEN _("形容詞(一般)の選択", "Adjective (general)")
58 #define MN_RARE _("レアな (装備)", "rare (equipment)")
59 #define MN_COMMON _("ありふれた (装備)", "common (equipment)")
60
61 #define MN_ADJECTIVE_SPECIAL _("形容詞(特殊)の選択", "Adjective (special)")
62 #define MN_BOOSTED _("ダイス目の違う (武器)", "dice boosted (weapons)")
63 #define MN_MORE_DICE _("ダイス目 # 以上の (武器)", "more than # dice (weapons)")
64 #define MN_MORE_BONUS _("修正値 # 以上の (指輪等)", "more bonus than # (rings etc.)")
65 #define MN_WANTED _("賞金首の (死体)", "wanted (corpse)")
66 #define MN_UNIQUE _("ユニーク・モンスターの (死体)", "unique (corpse)")
67 #define MN_HUMAN _("人間の (死体)", "human (corpse)")
68 #define MN_UNREADABLE _("読めない (魔法書)", "unreadable (spellbooks)")
69 #define MN_REALM1 _("第一領域の (魔法書)", "realm1 (spellbooks)")
70 #define MN_REALM2 _("第二領域の (魔法書)", "realm2 (spellbooks)")
71 #define MN_FIRST _("1冊目の (魔法書)", "first (spellbooks)")
72 #define MN_SECOND _("2冊目の (魔法書)", "second (spellbooks)")
73 #define MN_THIRD _("3冊目の (魔法書)", "third (spellbooks)")
74 #define MN_FOURTH _("4冊目の (魔法書)", "fourth (spellbooks)")
75
76 #define MN_NOUN _("名詞の選択", "Keywords (noun)")