OSDN Git Service

Merge pull request #3532 from sikabane-works/release/3.0.0.87-alpha
[hengbandforosx/hengbandosx.git] / src / main / init-error-messages-table.cpp
1 /*!
2  * @file init-error-messages-table.cpp
3  * @brief 変愚蛮怒のゲームデータ解析エラー名定義
4  */
5
6 #include "main/init-error-messages-table.h"
7
8 /*!
9  * エラーメッセージの名称定義 / Standard error message text
10  */
11 concptr err_str[PARSE_ERROR_MAX] = {
12     nullptr,
13     _("文法エラー", "parse error"),
14     _("古いファイル", "obsolete file"),
15     _("記録ヘッダがない", "missing record header"),
16     _("不連続レコード", "non-sequential records"),
17     _("おかしなフラグ存在", "invalid flag specification"),
18     _("未定義命令", "undefined directive"),
19     _("メモリ不足", "out of memory"),
20     _("座標範囲外", "coordinates out of bounds"),
21     _("引数不足", "too few arguments"),
22     _("未定義地形タグ", "undefined terrain tag"),
23 };