1LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
2
3STRINGTABLE
4{
5    STRING_USAGE, "Usage:\n  REG [operation] [parameters]\n\nSupported operations:\n  ADD | DELETE | IMPORT | EXPORT | QUERY | SAVE | RESTORE\n\nFor help on a specific operation, type:\n  REG [operation] /?\n\n"
6    STRING_ADD_USAGE, "REG ADD キー名 [/v 値名 | /ve] [/t type] [/s セパレータ] [/d データ] [/f]\n"
7    STRING_DELETE_USAGE, "REG DELETE キー名 [/v 値名 | /ve | /va] [/f]\n"
8    STRING_QUERY_USAGE, "REG QUERY キー名 [/v 値名 | /ve] [/s]\n"
9    STRING_SUCCESS, "操作は正常に完了しました\n"
10    STRING_INVALID_KEY, "エラー: キー名が無効です\n"
11    STRING_INVALID_CMDLINE, "エラー: コマンド ライン引数が無効です\n"
12    STRING_NO_REMOTE, "エラー: リモート マシンにキーを追加できませんでした\n"
13    STRING_CANNOT_FIND, "エラー: システムは指定されたキーまたは値を見つけられませんでした\n"
14    STRING_UNSUPPORTED_TYPE, "reg: Unsupported registry data type [%1]\n"
15    STRING_MISSING_INTEGER, "reg: The option [/d] must be followed by a valid integer\n"
16    STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n"
17    STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n"
18    STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?"
19    STRING_YESNO, " (Yes|No)"
20    STRING_YES, "Y"
21    STRING_NO, "N"
22    STRING_CANCELLED, "The registry operation was cancelled\n"
23    STRING_DEFAULT_VALUE, "(Default)"
24    STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?"
25    STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?"
26    STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?"
27    STRING_INVALID_STRING, "reg: The option [/d] must be followed by a valid string\n"
28    STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'. An unexpected error occurred.\n"
29    STRING_GENERAL_FAILURE, "reg: Unable to complete the specified operation. An unexpected error occurred.\n"
30    STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n"
31    STRING_INVALID_SYNTAX, "reg: Invalid syntax. "
32    STRING_INVALID_OPTION, "reg: Invalid option [%1]. "
33    STRING_REG_HELP, "Type ""REG /?"" for help.\n"
34    STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n"
35    STRING_VALUE_NOT_SET, "(value not set)"
36    STRING_IMPORT_USAGE, "REG IMPORT file.reg\n"
37    STRING_FILE_NOT_FOUND, "reg: The file '%1' was not found.\n"
38    STRING_OPEN_KEY_FAILED, "reg: Unable to open the registry key '%1'.\n"
39    STRING_ESCAPE_SEQUENCE, "reg: Unrecognized escape sequence [\\%1!c!]\n"
40    STRING_EXPORT_USAGE, "REG EXPORT key_name file.reg [/y]\n"
41    STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key [%1]\n"
42    STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?"
43}
44