Reactos

[WINESYNC]: reg is now in sync with wine-staging wine-6.23

Used winesync.py script, commits which needed obious adjustments have explicit
note in commit message, that it is manually adjusted. Internationalization is
skipped while automated sync and done in last manual step.

Additonal manual adjustments to compile in ros are in this commit:
- wcsupr -> _wcsupr
- only 3 arguments for swprintf, instead of 4 in wine
- disable tests for "/reg:32" and "/reg:64", because they fail on w2k3

Manually addjusted base/applications/cmdutils/reg/lang/zh-CN.rc while rebase to
actuall master (4a66cbb224804317cb4bea32c10838f43a820a70) on 19.06.2022

+3687 -476
+1 -1
base/applications/cmdutils/reg/CMakeLists.txt
··· 3 3 add_definitions(-D_WIN32_WINNT=0x600) 4 4 5 5 add_definitions(-D__WINESRC__) 6 - add_executable(reg export.c import.c reg.c reg.rc) 6 + add_executable(reg add.c copy.c delete.c export.c import.c query.c reg.c reg.rc) 7 7 set_module_type(reg win32cui UNICODE) 8 8 target_link_libraries(reg wine) 9 9 add_importlibs(reg advapi32 advapi32_vista user32 msvcrt kernel32 ntdll)
+1 -1
base/applications/cmdutils/reg/add.c
··· 304 304 305 305 invalid: 306 306 output_message(STRING_INVALID_SYNTAX); 307 - output_message(STRING_FUNC_HELP, wcsupr(argvW[1])); 307 + output_message(STRING_FUNC_HELP, _wcsupr(argvW[1])); 308 308 return 1; 309 309 }
+2 -2
base/applications/cmdutils/reg/copy.c
··· 171 171 goto cleanup; 172 172 } 173 173 174 - swprintf(subkey_src.path, path_len, L"%s\\%s", src->path, name); 174 + swprintf(subkey_src.path, L"%s\\%s", src->path, name); 175 175 176 176 rc = run_copy(&subkey_src, &subkey_dest, sam, TRUE, force); 177 177 ··· 260 260 261 261 invalid: 262 262 output_message(STRING_INVALID_SYNTAX); 263 - output_message(STRING_FUNC_HELP, wcsupr(argvW[1])); 263 + output_message(STRING_FUNC_HELP, _wcsupr(argvW[1])); 264 264 return 1; 265 265 }
+1 -1
base/applications/cmdutils/reg/delete.c
··· 205 205 206 206 invalid: 207 207 output_message(STRING_INVALID_SYNTAX); 208 - output_message(STRING_FUNC_HELP, wcsupr(argvW[1])); 208 + output_message(STRING_FUNC_HELP, _wcsupr(argvW[1])); 209 209 return 1; 210 210 }
+1 -1
base/applications/cmdutils/reg/import.c
··· 1050 1050 1051 1051 invalid: 1052 1052 output_message(STRING_INVALID_SYNTAX); 1053 - output_message(STRING_FUNC_HELP, wcsupr(argvW[1])); 1053 + output_message(STRING_FUNC_HELP, _wcsupr(argvW[1])); 1054 1054 return 1; 1055 1055 }
+153 -15
base/applications/cmdutils/reg/lang/bg-BG.rc
··· 2 2 3 3 STRINGTABLE 4 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 вид] [/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" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "Десйствието е приключено успешно\n" 10 92 STRING_INVALID_KEY, "Грешка: Недопустимо име за ключ\n" 11 93 STRING_INVALID_CMDLINE, "Грешка: Неправилни параметри на командия ред\n" 12 94 STRING_NO_REMOTE, "Грешка: Неуспешно добавяне на ключове в отдалечената машина\n" 13 - STRING_CANNOT_FIND, "Грешка: Уредбата не откри указания регистърен ключ или стойност\n" 95 + STRING_VALUE_NONEXIST, "Грешка: Уредбата не откри указания регистърен ключ или стойност\n" 14 96 STRING_UNSUPPORTED_TYPE, "Error: Unsupported type\n" 15 - STRING_MISSING_INTEGER, "reg: The option [/d] must be followed by a valid integer\n" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 19 104 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 105 + STRING_YESNOALL, " (Yes|No|All)" 106 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 107 STRING_DEFAULT_VALUE, "(Default)" 24 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 109 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 111 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" 112 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 116 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 117 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 118 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 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 126 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" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 147 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+152 -15
base/applications/cmdutils/reg/lang/cs-CZ.rc
··· 7 7 8 8 STRINGTABLE 9 9 { 10 - 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" 11 - STRING_ADD_USAGE, "REG ADD název_klíče [/v název_hodnoty | /ve] [/t type] [/s oddělovač] [/d data] [/f]\n" 12 - STRING_DELETE_USAGE, "REG DELETE název_klíče [/v název_hodnoty | /ve | /va] [/f]\n" 13 - STRING_QUERY_USAGE, "REG QUERY název_klíče [/v název_hodnoty | /ve] [/s]\n" 10 + STRING_USAGE, "Usage:\n\ 11 + REG [operation] [parameters]\n\n\ 12 + Supported operations:\n\ 13 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 14 + For help on a specific operation, type:\n\ 15 + REG [operation] /?\n\n" 16 + 17 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 18 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 19 + <key>\n\ 20 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 21 + the key in which to add the new registry data.\n\n\ 22 + Format: ROOT\\Subkey\n\n\ 23 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 24 + HKEY_LOCAL_MACHINE | HKLM\n\ 25 + HKEY_CURRENT_USER | HKCU\n\ 26 + HKEY_CLASSES_ROOT | HKCR\n\ 27 + HKEY_USERS | HKU\n\ 28 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 29 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 30 + /v <value_name>\n\ 31 + The name of the registry value to add.\n\n\ 32 + /ve\n\ 33 + Add an unnamed registry value. This option modifies the (Default)\n\ 34 + registry value.\n\n\ 35 + /t <type>\n\ 36 + The type of data to add to the registry. If [/t] is specified,\n\ 37 + <type> must be one of the following:\n\n\ 38 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 39 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 40 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 41 + /s <separator>\n\ 42 + The character used to separate strings in REG_MULTI_SZ data.\n\ 43 + If [/s] is not specified, the default separator is \\0.\n\n\ 44 + /d <data>\n\ 45 + The data to add to the new registry value.\n\n\ 46 + /f\n\ 47 + Modify the registry without prompting for confirmation.\n\n" 48 + 49 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 50 + Deletes a registry key (including all subkeys and values), or deletes\n\ 51 + one or more values from a given registry key.\n\n\ 52 + <key>\n\ 53 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 54 + specified, the registry key in which to delete one or more values.\n\n\ 55 + Format: ROOT\\Subkey\n\n\ 56 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 57 + HKEY_LOCAL_MACHINE | HKLM\n\ 58 + HKEY_CURRENT_USER | HKCU\n\ 59 + HKEY_CLASSES_ROOT | HKCR\n\ 60 + HKEY_USERS | HKU\n\ 61 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 62 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 63 + /v <value_name>\n\ 64 + The name of the registry value to delete.\n\n\ 65 + /ve\n\ 66 + Delete an unnamed registry value. This option deletes the (Default)\n\ 67 + registry value.\n\n\ 68 + /va\n\ 69 + Delete all values from a registry key.\n\n\ 70 + /f\n\ 71 + Delete a registry key (including all subkeys and values) without\n\ 72 + prompting for confirmation.\n\n" 73 + 74 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 75 + Queries a specified registry key and lists all immediate subkeys, values\n\ 76 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 77 + <key>\n\ 78 + The registry key to query.\n\n\ 79 + Format: ROOT\\Subkey\n\n\ 80 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 81 + HKEY_LOCAL_MACHINE | HKLM\n\ 82 + HKEY_CURRENT_USER | HKCU\n\ 83 + HKEY_CLASSES_ROOT | HKCR\n\ 84 + HKEY_USERS | HKU\n\ 85 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 86 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 87 + /v <value_name>\n\ 88 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 89 + specified, all values under <key> are listed.\n\n\ 90 + /ve\n\ 91 + Query an unnamed registry value. This option queries the (Default)\n\ 92 + registry value.\n\n\ 93 + /s\n\ 94 + List all registry entries under <key> and its subkeys.\n\n" 14 95 STRING_SUCCESS, "Operace byla úspěšně dokončena\n" 15 96 STRING_INVALID_KEY, "Chyba: Neplatný název klíče\n" 16 97 STRING_INVALID_CMDLINE, "Chyba: Neplatné parametry příkazové řádky\n" 17 98 STRING_NO_REMOTE, "Chyba: Nelze přidat klíče na vzdálený stroj\n" 18 - STRING_CANNOT_FIND, "Chyba: Systém nenalezl zadaný klíč nebo hodnotu registru\n" 99 + STRING_VALUE_NONEXIST, "Chyba: Systém nenalezl zadaný klíč nebo hodnotu registru\n" 19 100 STRING_UNSUPPORTED_TYPE, "Error: Unsupported type\n" 20 - STRING_MISSING_INTEGER, "reg: The option [/d] must be followed by a valid integer\n" 101 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 21 102 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 22 103 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 23 104 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 105 + STRING_YES, "#msgctxt#Yes key#Y" 106 + STRING_NO, "#msgctxt#No key#N" 107 + STRING_ALL, "#msgctxt#All key#A" 24 108 STRING_YESNO, " (Yes|No)" 25 - STRING_YES, "Y" 26 - STRING_NO, "N" 27 - STRING_CANCELLED, "The registry operation was cancelled\n" 109 + STRING_YESNOALL, " (Yes|No|All)" 110 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 28 111 STRING_DEFAULT_VALUE, "(Default)" 29 112 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 30 113 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 31 114 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 32 115 STRING_INVALID_STRING, "reg: The option [/d] must be followed by a valid string\n" 33 - STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'. An unexpected error occurred.\n" 34 - STRING_GENERAL_FAILURE, "reg: Unable to complete the specified operation. An unexpected error occurred.\n" 116 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 35 117 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 36 118 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 37 119 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 38 120 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 39 121 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 40 122 STRING_VALUE_NOT_SET, "(value not set)" 41 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 123 + 124 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 125 + Imports keys, values and data from a given file into the registry.\n\n\ 126 + <file>\n\ 127 + The name and path of the registry file to import.\n\n" 128 + 42 129 STRING_FILE_NOT_FOUND, "reg: The file '%1' was not found.\n" 43 - STRING_OPEN_KEY_FAILED, "reg: Unable to open the registry key '%1'.\n" 44 130 STRING_ESCAPE_SEQUENCE, "reg: Unrecognized escape sequence [\\%1!c!]\n" 45 - STRING_EXPORT_USAGE, "REG EXPORT key_name file.reg [/y]\n" 46 - STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key [%1]\n" 131 + 132 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 133 + Exports a specified registry key (including all subkeys and values)\n\ 134 + to a file.\n\n\ 135 + <key>\n\ 136 + The registry key to export.\n\n\ 137 + Format: ROOT\\Subkey\n\n\ 138 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 139 + HKEY_LOCAL_MACHINE | HKLM\n\ 140 + HKEY_CURRENT_USER | HKCU\n\ 141 + HKEY_CLASSES_ROOT | HKCR\n\ 142 + HKEY_USERS | HKU\n\ 143 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 144 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 145 + <file>\n\ 146 + The name and path of the registry file that will be created.\n\ 147 + This file must have a .reg extension.\n\n\ 148 + /y\n\ 149 + Overwrite <file> without prompting for confirmation.\n\n" 150 + 151 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 47 152 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 153 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 154 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 155 + 156 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 157 + Access the registry using the 32-bit view.\n\n\ 158 + /reg:64\n\ 159 + Access the registry using the 64-bit view.\n\n" 160 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 161 + 162 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 163 + Copies the contents of a specified registry key to another location.\n\ 164 + By default, this operation only copies registry values. Use [/s] to\n\ 165 + recursively copy all subkeys and values.\n\n\ 166 + <key1>, <key2>\n\ 167 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 168 + of the data. If <key2> does not exist, it is created.\n\n\ 169 + Format: ROOT\\Subkey\n\n\ 170 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 171 + HKEY_LOCAL_MACHINE | HKLM\n\ 172 + HKEY_CURRENT_USER | HKCU\n\ 173 + HKEY_CLASSES_ROOT | HKCR\n\ 174 + HKEY_USERS | HKU\n\ 175 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 176 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 177 + /s\n\ 178 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 179 + /f\n\ 180 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 181 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 182 + 183 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 184 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 48 185 }
+152 -15
base/applications/cmdutils/reg/lang/da-DK.rc
··· 2 2 3 3 STRINGTABLE 4 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 nøgle_navn [/v værdi | /ve] [/t type] [/s separator] [/d data] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE nøgle_navn [/v værdi | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY nøgle_navn [/v værdi | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 9 90 STRING_SUCCESS, "Operationen blev afsluttet med succes\n" 10 91 STRING_INVALID_KEY, "Fejl: Ugyldigt nøgle navn\n" 11 92 STRING_INVALID_CMDLINE, "Fejl: Ugyldige kommando linje parametre\n" 12 93 STRING_NO_REMOTE, "Fejl: Kunne ikke tilføje nøgler til fjern maskinen\n" 13 - STRING_CANNOT_FIND, "Fejl: Systemet kunne ikke finde, den angivet registrerings nøgle eller værdi\n" 94 + STRING_VALUE_NONEXIST, "Fejl: Systemet kunne ikke finde, den angivet registrerings nøgle eller værdi\n" 14 95 STRING_UNSUPPORTED_TYPE, "Error: Unsupported type\n" 15 - STRING_MISSING_INTEGER, "reg: The option [/d] must be followed by a valid integer\n" 96 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 97 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 98 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 99 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 100 + STRING_YES, "#msgctxt#Yes key#Y" 101 + STRING_NO, "#msgctxt#No key#N" 102 + STRING_ALL, "#msgctxt#All key#A" 19 103 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 104 + STRING_YESNOALL, " (Yes|No|All)" 105 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 106 STRING_DEFAULT_VALUE, "(Default)" 24 107 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 108 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 109 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 110 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" 111 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 112 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 113 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 114 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 115 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 116 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 117 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 118 + 119 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 120 + Imports keys, values and data from a given file into the registry.\n\n\ 121 + <file>\n\ 122 + The name and path of the registry file to import.\n\n" 123 + 37 124 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 125 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" 126 + 127 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 128 + Exports a specified registry key (including all subkeys and values)\n\ 129 + to a file.\n\n\ 130 + <key>\n\ 131 + The registry key to export.\n\n\ 132 + Format: ROOT\\Subkey\n\n\ 133 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 134 + HKEY_LOCAL_MACHINE | HKLM\n\ 135 + HKEY_CURRENT_USER | HKCU\n\ 136 + HKEY_CLASSES_ROOT | HKCR\n\ 137 + HKEY_USERS | HKU\n\ 138 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 139 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 140 + <file>\n\ 141 + The name and path of the registry file that will be created.\n\ 142 + This file must have a .reg extension.\n\n\ 143 + /y\n\ 144 + Overwrite <file> without prompting for confirmation.\n\n" 145 + 146 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 147 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 148 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 149 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 150 + 151 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 152 + Access the registry using the 32-bit view.\n\n\ 153 + /reg:64\n\ 154 + Access the registry using the 64-bit view.\n\n" 155 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 156 + 157 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 158 + Copies the contents of a specified registry key to another location.\n\ 159 + By default, this operation only copies registry values. Use [/s] to\n\ 160 + recursively copy all subkeys and values.\n\n\ 161 + <key1>, <key2>\n\ 162 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 163 + of the data. If <key2> does not exist, it is created.\n\n\ 164 + Format: ROOT\\Subkey\n\n\ 165 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 166 + HKEY_LOCAL_MACHINE | HKLM\n\ 167 + HKEY_CURRENT_USER | HKCU\n\ 168 + HKEY_CLASSES_ROOT | HKCR\n\ 169 + HKEY_USERS | HKU\n\ 170 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 171 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 172 + /s\n\ 173 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 174 + /f\n\ 175 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 176 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 177 + 178 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 179 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 180 }
+152 -15
base/applications/cmdutils/reg/lang/de-DE.rc
··· 2 2 3 3 STRINGTABLE 4 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 Schlüssel [/v Wert | /ve] [/t Typ] [/s Trenner] [/d Daten] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE Schlüssel [/v Wert | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY Schlüssel [/v Wert | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 9 90 STRING_SUCCESS, "Der Vorgang wurde erfolgreich abgeschlossen\n" 10 91 STRING_INVALID_KEY, "Fehler: Ungültiger Schlüssel\n" 11 92 STRING_INVALID_CMDLINE, "Fehler: Ungültige Befehlszeilenargumente\n" 12 93 STRING_NO_REMOTE, "Fehler: Konnte Schlüssel nicht zum entfernten Rechner hinzufügen\n" 13 - STRING_CANNOT_FIND, "Fehler: Der angegebene Schlüssel oder Wert konnte nicht gefunden werden\n" 94 + STRING_VALUE_NONEXIST, "Fehler: Der angegebene Schlüssel oder Wert konnte nicht gefunden werden\n" 14 95 STRING_UNSUPPORTED_TYPE, "Error: Unsupported type\n" 15 - STRING_MISSING_INTEGER, "reg: The option [/d] must be followed by a valid integer\n" 96 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 97 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 98 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 99 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 100 + STRING_YES, "#msgctxt#Yes key#Y" 101 + STRING_NO, "#msgctxt#No key#N" 102 + STRING_ALL, "#msgctxt#All key#A" 19 103 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 104 + STRING_YESNOALL, " (Yes|No|All)" 105 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 106 STRING_DEFAULT_VALUE, "(Default)" 24 107 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 108 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 109 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 110 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" 111 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 112 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 113 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 114 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 115 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 116 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 117 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 118 + 119 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 120 + Imports keys, values and data from a given file into the registry.\n\n\ 121 + <file>\n\ 122 + The name and path of the registry file to import.\n\n" 123 + 37 124 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 125 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" 126 + 127 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 128 + Exports a specified registry key (including all subkeys and values)\n\ 129 + to a file.\n\n\ 130 + <key>\n\ 131 + The registry key to export.\n\n\ 132 + Format: ROOT\\Subkey\n\n\ 133 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 134 + HKEY_LOCAL_MACHINE | HKLM\n\ 135 + HKEY_CURRENT_USER | HKCU\n\ 136 + HKEY_CLASSES_ROOT | HKCR\n\ 137 + HKEY_USERS | HKU\n\ 138 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 139 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 140 + <file>\n\ 141 + The name and path of the registry file that will be created.\n\ 142 + This file must have a .reg extension.\n\n\ 143 + /y\n\ 144 + Overwrite <file> without prompting for confirmation.\n\n" 145 + 146 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 147 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 148 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 149 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 150 + 151 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 152 + Access the registry using the 32-bit view.\n\n\ 153 + /reg:64\n\ 154 + Access the registry using the 64-bit view.\n\n" 155 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 156 + 157 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 158 + Copies the contents of a specified registry key to another location.\n\ 159 + By default, this operation only copies registry values. Use [/s] to\n\ 160 + recursively copy all subkeys and values.\n\n\ 161 + <key1>, <key2>\n\ 162 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 163 + of the data. If <key2> does not exist, it is created.\n\n\ 164 + Format: ROOT\\Subkey\n\n\ 165 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 166 + HKEY_LOCAL_MACHINE | HKLM\n\ 167 + HKEY_CURRENT_USER | HKCU\n\ 168 + HKEY_CLASSES_ROOT | HKCR\n\ 169 + HKEY_USERS | HKU\n\ 170 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 171 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 172 + /s\n\ 173 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 174 + /f\n\ 175 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 176 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 177 + 178 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 179 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 180 }
+126 -123
base/applications/cmdutils/reg/lang/en-US.rc
··· 3 3 STRINGTABLE 4 4 { 5 5 STRING_USAGE, "Usage:\n\ 6 - \ REG [operation] [parameters]\n\n\ 7 - \Supported operations:\n\ 8 - \ ADD | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 - \For help on a specific operation, type:\n\ 10 - \ REG [operation] /?\n\n" 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 11 12 12 STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 - \ Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 - \ <key>\n\ 15 - \ The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 - \ the key in which to add the new registry data.\n\n\ 17 - \ Format: ROOT\\Subkey\n\n\ 18 - \ ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 - \ HKEY_LOCAL_MACHINE | HKLM\n\ 20 - \ HKEY_CURRENT_USER | HKCU\n\ 21 - \ HKEY_CLASSES_ROOT | HKCR\n\ 22 - \ HKEY_USERS | HKU\n\ 23 - \ HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 - \ Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 - \ /v <value_name>\n\ 26 - \ The name of the registry value to add.\n\n\ 27 - \ /ve\n\ 28 - \ Add an unnamed registry value. This option modifies the (Default)\n\ 29 - \ registry value.\n\n\ 30 - \ /t <type>\n\ 31 - \ The type of data to add to the registry. If [/t] is specified,\n\ 32 - \ <type> must be one of the following:\n\n\ 33 - \ REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 - \ REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 - \ If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 - \ /s <separator>\n\ 37 - \ The character used to separate strings in REG_MULTI_SZ data.\n\ 38 - \ If [/s] is not specified, the default separator is \\0.\n\n\ 39 - \ /d <data>\n\ 40 - \ The data to add to the new registry value.\n\n\ 41 - \ /f\n\ 42 - \ Modify the registry without prompting for confirmation.\n\n" 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 43 44 44 STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 - \ Deletes a registry key (including all subkeys and values), or deletes\n\ 46 - \ one or more values from a given registry key.\n\n\ 47 - \ <key>\n\ 48 - \ The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 - \ specified, the registry key in which to delete one or more values.\n\n\ 50 - \ Format: ROOT\\Subkey\n\n\ 51 - \ ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 - \ HKEY_LOCAL_MACHINE | HKLM\n\ 53 - \ HKEY_CURRENT_USER | HKCU\n\ 54 - \ HKEY_CLASSES_ROOT | HKCR\n\ 55 - \ HKEY_USERS | HKU\n\ 56 - \ HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 - \ Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 - \ /v <value_name>\n\ 59 - \ The name of the registry value to delete.\n\n\ 60 - \ /ve\n\ 61 - \ Delete an unnamed registry value. This option deletes the (Default)\n\ 62 - \ registry value.\n\n\ 63 - \ /va\n\ 64 - \ Delete all values from a registry key.\n\n\ 65 - \ /f\n\ 66 - \ Delete a registry key (including all subkeys and values) without\n\ 67 - \ prompting for confirmation.\n\n" 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 68 69 69 STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 - \ Queries a specified registry key and lists all immediate subkeys, values\n\ 71 - \ and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 - \ <key>\n\ 73 - \ The registry key to query.\n\n\ 74 - \ Format: ROOT\\Subkey\n\n\ 75 - \ ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 - \ HKEY_LOCAL_MACHINE | HKLM\n\ 77 - \ HKEY_CURRENT_USER | HKCU\n\ 78 - \ HKEY_CLASSES_ROOT | HKCR\n\ 79 - \ HKEY_USERS | HKU\n\ 80 - \ HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 - \ Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 - \ /v <value_name>\n\ 83 - \ The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 - \ specified, all values under <key> are listed.\n\n\ 85 - \ /ve\n\ 86 - \ Query an unnamed registry value. This option queries the (Default)\n\ 87 - \ registry value.\n\n\ 88 - \ /s\n\ 89 - \ List all registry entries under <key> and its subkeys.\n\n" 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 90 91 91 STRING_SUCCESS, "reg: The operation completed successfully\n" 92 92 STRING_INVALID_KEY, "reg: Invalid registry key\n" ··· 98 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 99 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 100 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 - STRING_YESNO, " (Yes|No)" 102 101 STRING_YES, "#msgctxt#Yes key#Y" 103 102 STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 104 + STRING_YESNO, " (Yes|No)" 105 + STRING_YESNOALL, " (Yes|No|All)" 104 106 STRING_CANCELLED, "reg: The registry operation was cancelled\n" 105 107 STRING_DEFAULT_VALUE, "(Default)" 106 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" ··· 108 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 109 111 STRING_INVALID_STRING, "reg: The option [/d] must be followed by a valid string\n" 110 112 STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 111 - STRING_GENERAL_FAILURE, "reg: Unable to complete the specified operation. An unexpected error occurred.\n" 112 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 113 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 114 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " ··· 117 118 STRING_VALUE_NOT_SET, "(value not set)" 118 119 119 120 STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 120 - \ Imports keys, values and data from a given file into the registry.\n\n\ 121 - \ <file>\n\ 122 - \ The name and path of the registry file to import.\n\n" 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 123 124 124 125 STRING_FILE_NOT_FOUND, "reg: The file '%1' was not found.\n" 125 - STRING_OPEN_KEY_FAILED, "reg: Unable to open the registry key '%1'.\n" 126 126 STRING_ESCAPE_SEQUENCE, "reg: Unrecognized escape sequence [\\%1!c!]\n" 127 127 128 128 STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 - \ Exports a specified registry key (including all subkeys and values)\n\ 130 - \ to a file.\n\n\ 131 - \ <key>\n\ 132 - \ The registry key to export.\n\n\ 133 - \ Format: ROOT\\Subkey\n\n\ 134 - \ ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 - \ HKEY_LOCAL_MACHINE | HKLM\n\ 136 - \ HKEY_CURRENT_USER | HKCU\n\ 137 - \ HKEY_CLASSES_ROOT | HKCR\n\ 138 - \ HKEY_USERS | HKU\n\ 139 - \ HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 - \ Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 - \ <file>\n\ 142 - \ The name and path of the registry file that will be created.\n\ 143 - \ This file must have a .reg extension.\n\n\ 144 - \ /y\n\ 145 - \ Overwrite <file> without prompting for confirmation.\n\n" 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 146 147 147 STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 148 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" ··· 150 150 STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 151 152 152 STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 - \ Access the registry using the 32-bit view.\n\n\ 154 - \ /reg:64\n\ 155 - \ Access the registry using the 64-bit view.\n\n" 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 156 STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 157 158 158 STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 - \ Copies the contents of a specified registry key to another location.\n\ 160 - \ By default, this operation only copies registry values. Use [/s] to\n\ 161 - \ recursively copy all subkeys and values.\n\n\ 162 - \ <key1>, <key2>\n\ 163 - \ Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 - \ of the data. If <key2> does not exist, it is created.\n\n\ 165 - \ Format: ROOT\\Subkey\n\n\ 166 - \ ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 - \ HKEY_LOCAL_MACHINE | HKLM\n\ 168 - \ HKEY_CURRENT_USER | HKCU\n\ 169 - \ HKEY_CLASSES_ROOT | HKCR\n\ 170 - \ HKEY_USERS | HKU\n\ 171 - \ HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 - \ Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 - \ /s\n\ 174 - \ Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 - \ /f\n\ 176 - \ Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 - \ This option does not modify subkeys and values that only exist in <key2>.\n\n" 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 178 181 }
+149 -13
base/applications/cmdutils/reg/lang/es-ES.rc
··· 7 7 8 8 STRINGTABLE 9 9 { 10 - STRING_USAGE, "Uso:\n REG [operatción] [parámetros]\n\nSubcomandos disponibles:\n ADD | DELETE | IMPORT | EXPORT | QUERY | SAVE | RESTORE\n\nPara ayuda en un subcomando, escriba:\n REG [operación] /?\n\n" 11 - STRING_ADD_USAGE, "REG ADD nombre_clave [/v nombre_valor | /ve] [/t tipo] [/s separador] [/d datos] [/f]\n" 12 - STRING_DELETE_USAGE, "REG DELETE nombre_clave [/v nombre_valor | /ve | /va] [/f]\n" 13 - STRING_QUERY_USAGE, "REG QUERY nombre_clave [/v nombre_valor | /ve] [/s]\n" 10 + STRING_USAGE, "Usage:\n\ 11 + REG [operation] [parameters]\n\n\ 12 + Supported operations:\n\ 13 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 14 + For help on a specific operation, type:\n\ 15 + REG [operation] /?\n\n" 16 + 17 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 18 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 19 + <key>\n\ 20 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 21 + the key in which to add the new registry data.\n\n\ 22 + Format: ROOT\\Subkey\n\n\ 23 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 24 + HKEY_LOCAL_MACHINE | HKLM\n\ 25 + HKEY_CURRENT_USER | HKCU\n\ 26 + HKEY_CLASSES_ROOT | HKCR\n\ 27 + HKEY_USERS | HKU\n\ 28 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 29 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 30 + /v <value_name>\n\ 31 + The name of the registry value to add.\n\n\ 32 + /ve\n\ 33 + Add an unnamed registry value. This option modifies the (Default)\n\ 34 + registry value.\n\n\ 35 + /t <type>\n\ 36 + The type of data to add to the registry. If [/t] is specified,\n\ 37 + <type> must be one of the following:\n\n\ 38 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 39 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 40 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 41 + /s <separator>\n\ 42 + The character used to separate strings in REG_MULTI_SZ data.\n\ 43 + If [/s] is not specified, the default separator is \\0.\n\n\ 44 + /d <data>\n\ 45 + The data to add to the new registry value.\n\n\ 46 + /f\n\ 47 + Modify the registry without prompting for confirmation.\n\n" 48 + 49 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 50 + Deletes a registry key (including all subkeys and values), or deletes\n\ 51 + one or more values from a given registry key.\n\n\ 52 + <key>\n\ 53 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 54 + specified, the registry key in which to delete one or more values.\n\n\ 55 + Format: ROOT\\Subkey\n\n\ 56 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 57 + HKEY_LOCAL_MACHINE | HKLM\n\ 58 + HKEY_CURRENT_USER | HKCU\n\ 59 + HKEY_CLASSES_ROOT | HKCR\n\ 60 + HKEY_USERS | HKU\n\ 61 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 62 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 63 + /v <value_name>\n\ 64 + The name of the registry value to delete.\n\n\ 65 + /ve\n\ 66 + Delete an unnamed registry value. This option deletes the (Default)\n\ 67 + registry value.\n\n\ 68 + /va\n\ 69 + Delete all values from a registry key.\n\n\ 70 + /f\n\ 71 + Delete a registry key (including all subkeys and values) without\n\ 72 + prompting for confirmation.\n\n" 73 + 74 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 75 + Queries a specified registry key and lists all immediate subkeys, values\n\ 76 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 77 + <key>\n\ 78 + The registry key to query.\n\n\ 79 + Format: ROOT\\Subkey\n\n\ 80 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 81 + HKEY_LOCAL_MACHINE | HKLM\n\ 82 + HKEY_CURRENT_USER | HKCU\n\ 83 + HKEY_CLASSES_ROOT | HKCR\n\ 84 + HKEY_USERS | HKU\n\ 85 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 86 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 87 + /v <value_name>\n\ 88 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 89 + specified, all values under <key> are listed.\n\n\ 90 + /ve\n\ 91 + Query an unnamed registry value. This option queries the (Default)\n\ 92 + registry value.\n\n\ 93 + /s\n\ 94 + List all registry entries under <key> and its subkeys.\n\n" 95 + 14 96 STRING_SUCCESS, "La operación se completó correctamente\n" 15 97 STRING_INVALID_KEY, "reg: nombre de clave no válido\n" 16 98 STRING_INVALID_CMDLINE, "reg: parámetros en línea de comandos no válidos\n" 17 99 STRING_NO_REMOTE, "reg: No se pueden agregar las claves al equipo remoto\n" 18 - STRING_CANNOT_FIND, "reg: El sistema no pudo encontrar la clave o el valor del Registro especificado\n" 100 + STRING_VALUE_NONEXIST, "reg: El sistema no pudo encontrar la clave o el valor del Registro especificado\n" 19 101 STRING_UNSUPPORTED_TYPE, "reg: Tipo no soportado\n" 20 - STRING_MISSING_INTEGER, "reg: La opción [/d] debe estar seguida por un valor entero\n" 102 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 21 103 STRING_MISSING_HEXDATA, "reg: La opción [/d] debe estar seguido por un balor hexadecimal válido\n" 22 104 STRING_UNHANDLED_TYPE, "reg: Incapaz de trabajar con ese tipo de dato de Registro [/t 0x%1!x!, /d %2]\n" 23 105 STRING_OVERWRITE_VALUE, "El valor '%1' ya existe en el Registro. ¿Desea sobreescribirlo?" 24 - STRING_YESNO, " (Sí|No)" 25 - STRING_YES, "S" 26 - STRING_NO, "N" 106 + STRING_YES, "#msgctxt#Yes key#Y" 107 + STRING_NO, "#msgctxt#No key#N" 108 + STRING_ALL, "#msgctxt#All key#A" 109 + STRING_YESNO, " (Yes|No)" 110 + STRING_YESNOALL, " (Yes|No|All)" 27 111 STRING_CANCELLED, "La operación de registro se ha cancelado\n" 28 112 STRING_DEFAULT_VALUE, "(Por defecto)" 29 113 STRING_DELETE_VALUE, "¿Estás seguro de que quieres eliminar el valor de Registro '%1'?" ··· 31 115 STRING_DELETE_SUBKEY, "¿Estás seguro de que quieres eliminar la clave de Registro '%1'?" 32 116 STRING_INVALID_STRING, "reg: El subcomando [/d] debe ir seguido de una cadena de texto válida\n" 33 117 STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'. Ha ocurrido un error inesperado.\n" 34 - STRING_GENERAL_FAILURE, "reg: Unable to complete the specified operation. Ha ocurrido un error inesperado.\n" 35 118 STRING_MATCHES_FOUND, "Busqueda completada. Número de coincidencias encontradas: %1!d!\n" 36 119 STRING_INVALID_SYNTAX, "reg: Sintáxis incorrecta. " 37 120 STRING_INVALID_OPTION, "reg: Opción incorrecta [%1]. " 38 121 STRING_REG_HELP, "Escriba ""REG /?"" para ayuda.\n" 39 122 STRING_FUNC_HELP, "Escriba ""REG %1 /?"" para ayuda.\n" 40 123 STRING_VALUE_NOT_SET, "(valor sin fijar)" 41 - STRING_IMPORT_USAGE, "REG IMPORT archivo.reg\n" 124 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 125 + Imports keys, values and data from a given file into the registry.\n\n\ 126 + <file>\n\ 127 + The name and path of the registry file to import.\n\n" 128 + 42 129 STRING_FILE_NOT_FOUND, "reg: El archivo '%1' no se ha encontrado.\n" 43 - STRING_OPEN_KEY_FAILED, "reg: Imposible abrir la clave de Registro '%1'.\n" 44 130 STRING_ESCAPE_SEQUENCE, "reg: Secuencia de escape no reconocida [\\%1!c!]\n" 45 - STRING_EXPORT_USAGE, "REG EXPORT nombre_de_clave archivo.reg [/y]\n" 131 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 132 + Exports a specified registry key (including all subkeys and values)\n\ 133 + to a file.\n\n\ 134 + <key>\n\ 135 + The registry key to export.\n\n\ 136 + Format: ROOT\\Subkey\n\n\ 137 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 138 + HKEY_LOCAL_MACHINE | HKLM\n\ 139 + HKEY_CURRENT_USER | HKCU\n\ 140 + HKEY_CLASSES_ROOT | HKCR\n\ 141 + HKEY_USERS | HKU\n\ 142 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 143 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 144 + <file>\n\ 145 + The name and path of the registry file that will be created.\n\ 146 + This file must have a .reg extension.\n\n\ 147 + /y\n\ 148 + Overwrite <file> without prompting for confirmation.\n\n" 149 + 46 150 STRING_INVALID_SYSTEM_KEY, "reg: Clave de Sistema incorrecta [%1]\n" 47 151 STRING_OVERWRITE_FILE, "El archivo '%1' ya existe. ¿Quiere sobreescribirlo?" 152 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 153 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 154 + 155 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 156 + Access the registry using the 32-bit view.\n\n\ 157 + /reg:64\n\ 158 + Access the registry using the 64-bit view.\n\n" 159 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 160 + 161 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 162 + Copies the contents of a specified registry key to another location.\n\ 163 + By default, this operation only copies registry values. Use [/s] to\n\ 164 + recursively copy all subkeys and values.\n\n\ 165 + <key1>, <key2>\n\ 166 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 167 + of the data. If <key2> does not exist, it is created.\n\n\ 168 + Format: ROOT\\Subkey\n\n\ 169 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 170 + HKEY_LOCAL_MACHINE | HKLM\n\ 171 + HKEY_CURRENT_USER | HKCU\n\ 172 + HKEY_CLASSES_ROOT | HKCR\n\ 173 + HKEY_USERS | HKU\n\ 174 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 175 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 176 + /s\n\ 177 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 178 + /f\n\ 179 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 180 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 181 + 182 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 183 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 48 184 }
+153 -15
base/applications/cmdutils/reg/lang/fr-FR.rc
··· 2 2 3 3 STRINGTABLE 4 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 nom_de_clé [/v nom_de_valeur | /ve] [/t type] [/s séparateur] [/d données] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE nom_de_clé [/v nom_de_valeur | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY nom_de_clé [/v nom_de_valeur | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "L'opération s'est terminée avec succès\n" 10 92 STRING_INVALID_KEY, "Erreur : nom de clé non valable\n" 11 93 STRING_INVALID_CMDLINE, "Erreur : paramètre de ligne de commande non valable\n" 12 94 STRING_NO_REMOTE, "Erreur : impossible d'ajouter des clés à une machine distante\n" 13 - STRING_CANNOT_FIND, "Erreur : le système n'a pas pu trouver la clé ou la valeur de registre spécifiée\n" 95 + STRING_VALUE_NONEXIST, "Erreur : le système n'a pas pu trouver la clé ou la valeur de registre spécifiée\n" 14 96 STRING_UNSUPPORTED_TYPE, "Error: Unsupported type\n" 15 - STRING_MISSING_INTEGER, "reg: The option [/d] must be followed by a valid integer\n" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 19 104 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 105 + STRING_YESNOALL, " (Yes|No|All)" 106 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 107 STRING_DEFAULT_VALUE, "(Default)" 24 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 109 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 111 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" 112 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 116 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 117 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 118 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 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 126 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" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 147 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+153 -15
base/applications/cmdutils/reg/lang/it-IT.rc
··· 2 2 3 3 STRINGTABLE 4 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 nome_della_chiave [/v nome_del_valore | /ve] [/t tipo] [/s separatore] [/d dati] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE nome_della_chiave [/v nome_del_valore | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY nome_della_chiave [/v nome_del_valore | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "Operazione completata con successo\n" 10 92 STRING_INVALID_KEY, "Errore: nome della chiave non valido\n" 11 93 STRING_INVALID_CMDLINE, "Errore: parametri della linea di comando non validi\n" 12 94 STRING_NO_REMOTE, "Errore: impossibile aggiungere chiavi alla macchina remota\n" 13 - STRING_CANNOT_FIND, "Errore: il sistema non è riuscito a trovare la chiave di registro o il valore specificati\n" 95 + STRING_VALUE_NONEXIST, "Errore: il sistema non è riuscito a trovare la chiave di registro o il valore specificati\n" 14 96 STRING_UNSUPPORTED_TYPE, "Error: Unsupported type\n" 15 - STRING_MISSING_INTEGER, "reg: The option [/d] must be followed by a valid integer\n" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 19 104 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 105 + STRING_YESNOALL, " (Yes|No|All)" 106 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 107 STRING_DEFAULT_VALUE, "(Default)" 24 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 109 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 111 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" 112 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 116 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 117 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 118 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 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 126 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" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 147 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+153 -15
base/applications/cmdutils/reg/lang/ja-JP.rc
··· 2 2 3 3 STRINGTABLE 4 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" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "操作は正常に完了しました\n" 10 92 STRING_INVALID_KEY, "エラー: キー名が無効です\n" 11 93 STRING_INVALID_CMDLINE, "エラー: コマンド ライン引数が無効です\n" 12 94 STRING_NO_REMOTE, "エラー: リモート マシンにキーを追加できませんでした\n" 13 - STRING_CANNOT_FIND, "エラー: システムは指定されたキーまたは値を見つけられませんでした\n" 95 + STRING_VALUE_NONEXIST, "エラー: システムは指定されたキーまたは値を見つけられませんでした\n" 14 96 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" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 19 104 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 105 + STRING_YESNOALL, " (Yes|No|All)" 106 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 107 STRING_DEFAULT_VALUE, "(Default)" 24 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 109 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 111 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" 112 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 116 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 117 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 118 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 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 126 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" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 147 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+153 -15
base/applications/cmdutils/reg/lang/ko-KR.rc
··· 2 2 3 3 STRINGTABLE 4 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 형식] [/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" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "작업이 성공적으로 끝났습니다\n" 10 92 STRING_INVALID_KEY, "에러: 올바르지 않은 키 이름\n" 11 93 STRING_INVALID_CMDLINE, "에러:올바르지 않은 명령라인 매개변수\n" 12 94 STRING_NO_REMOTE, "에러: 원격 머신에 키를 더하는 것은 가능하지 않습니다\n" 13 - STRING_CANNOT_FIND, "에러: 이 시스템에서 지정된 레지스트리 키나 값을 찾을수 없습니다\n" 95 + STRING_VALUE_NONEXIST, "에러: 이 시스템에서 지정된 레지스트리 키나 값을 찾을수 없습니다\n" 14 96 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" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 19 104 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 105 + STRING_YESNOALL, " (Yes|No|All)" 106 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 107 STRING_DEFAULT_VALUE, "(Default)" 24 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 109 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 111 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" 112 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 116 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 117 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 118 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 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 126 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" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 147 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+153 -15
base/applications/cmdutils/reg/lang/lt-LT.rc
··· 2 2 3 3 STRINGTABLE 4 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 rakto_vardas [/v reikšmės_vardas | /ve] [/t tipas] [/s skirtukas] [/d duomenys] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE rakto_vardas [/v reikšmės_vardas | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY rakto_vardas [/v reikšmės_vardas | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "Operacija sėkmingai įvykdyta\n" 10 92 STRING_INVALID_KEY, "Klaida: Netinkamas rakto vardas\n" 11 93 STRING_INVALID_CMDLINE, "Klaida: Netinkami komandos eilutės parametrai\n" 12 94 STRING_NO_REMOTE, "Klaida: Negalima pridėti raktų nuotoliniame kompiuteryje\n" 13 - STRING_CANNOT_FIND, "Klaida: Sistemai nepavyko rasti nurodyto registro rakto ar reikšmės\n" 95 + STRING_VALUE_NONEXIST, "Klaida: Sistemai nepavyko rasti nurodyto registro rakto ar reikšmės\n" 14 96 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" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 19 104 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 105 + STRING_YESNOALL, " (Yes|No|All)" 106 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 107 STRING_DEFAULT_VALUE, "(Default)" 24 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 109 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 111 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" 112 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 116 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 117 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 118 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 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 126 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" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 147 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+152 -15
base/applications/cmdutils/reg/lang/nl-NL.rc
··· 2 2 3 3 STRINGTABLE 4 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 sleutel_naam [/v waarde_naam | /ve] [/t type] [/s scheidingsteken] [/d data] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE sleutel_naam [/v waarde_naam | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY sleutel_naam [/v waarde_naam | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 9 90 STRING_SUCCESS, "De bewerking is succesvol voltooid\n" 10 91 STRING_INVALID_KEY, "Fout: Foutieve sleutelnaam\n" 11 92 STRING_INVALID_CMDLINE, "Fout: Foutieve commandoregel-parameters\n" 12 93 STRING_NO_REMOTE, "Fout: Sleutels konden niet toegevoegd worden aan de remote machine\n" 13 - STRING_CANNOT_FIND, "Fout: Het systeem kon de gespecificeerde registersleutel of waarde niet vinden\n" 94 + STRING_VALUE_NONEXIST, "Fout: Het systeem kon de gespecificeerde registersleutel of waarde niet vinden\n" 14 95 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" 96 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 97 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 98 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 99 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 100 + STRING_YES, "#msgctxt#Yes key#Y" 101 + STRING_NO, "#msgctxt#No key#N" 102 + STRING_ALL, "#msgctxt#All key#A" 19 103 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 104 + STRING_YESNOALL, " (Yes|No|All)" 105 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 106 STRING_DEFAULT_VALUE, "(Default)" 24 107 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 108 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 109 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 110 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" 111 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 112 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 113 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 114 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 115 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 116 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 117 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 118 + 119 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 120 + Imports keys, values and data from a given file into the registry.\n\n\ 121 + <file>\n\ 122 + The name and path of the registry file to import.\n\n" 123 + 37 124 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 125 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" 126 + 127 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 128 + Exports a specified registry key (including all subkeys and values)\n\ 129 + to a file.\n\n\ 130 + <key>\n\ 131 + The registry key to export.\n\n\ 132 + Format: ROOT\\Subkey\n\n\ 133 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 134 + HKEY_LOCAL_MACHINE | HKLM\n\ 135 + HKEY_CURRENT_USER | HKCU\n\ 136 + HKEY_CLASSES_ROOT | HKCR\n\ 137 + HKEY_USERS | HKU\n\ 138 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 139 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 140 + <file>\n\ 141 + The name and path of the registry file that will be created.\n\ 142 + This file must have a .reg extension.\n\n\ 143 + /y\n\ 144 + Overwrite <file> without prompting for confirmation.\n\n" 145 + 146 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 147 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 148 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 149 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 150 + 151 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 152 + Access the registry using the 32-bit view.\n\n\ 153 + /reg:64\n\ 154 + Access the registry using the 64-bit view.\n\n" 155 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 156 + 157 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 158 + Copies the contents of a specified registry key to another location.\n\ 159 + By default, this operation only copies registry values. Use [/s] to\n\ 160 + recursively copy all subkeys and values.\n\n\ 161 + <key1>, <key2>\n\ 162 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 163 + of the data. If <key2> does not exist, it is created.\n\n\ 164 + Format: ROOT\\Subkey\n\n\ 165 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 166 + HKEY_LOCAL_MACHINE | HKLM\n\ 167 + HKEY_CURRENT_USER | HKCU\n\ 168 + HKEY_CLASSES_ROOT | HKCR\n\ 169 + HKEY_USERS | HKU\n\ 170 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 171 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 172 + /s\n\ 173 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 174 + /f\n\ 175 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 176 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 177 + 178 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 179 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 180 }
+153 -15
base/applications/cmdutils/reg/lang/no-NO.rc
··· 2 2 3 3 STRINGTABLE 4 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 nøkkelnavn [/v verdi | /ve] [/t type] [/s separator] [/d data] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE nøkkelnavn [/v verdi | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY nøkkelnavn [/v verdi | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "Operasjonen ble utført\n" 10 92 STRING_INVALID_KEY, "Feil: Ugyldig nøkkelnavn\n" 11 93 STRING_INVALID_CMDLINE, "Feil: Ugyldige parametere på kommandolinjen\n" 12 94 STRING_NO_REMOTE, "Feil: Kan ikke legge til nøkler på ekstern maskin\n" 13 - STRING_CANNOT_FIND, "Feil: Systemet klarte ikke finne den angitte registernøkkelen eller -verdien\n" 95 + STRING_VALUE_NONEXIST, "Feil: Systemet klarte ikke finne den angitte registernøkkelen eller -verdien\n" 14 96 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" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 19 104 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 105 + STRING_YESNOALL, " (Yes|No|All)" 106 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 107 STRING_DEFAULT_VALUE, "(Default)" 24 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 109 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 111 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" 112 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 116 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 117 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 118 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 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 126 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" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 147 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+151 -13
base/applications/cmdutils/reg/lang/pl-PL.rc
··· 2 2 3 3 STRINGTABLE 4 4 { 5 - STRING_USAGE, "Sposób użycia:\n REG [operacja] [parametry]\n\nWspierane operacje:\n ADD | DELETE | IMPORT | EXPORT | QUERY | SAVE | RESTORE\n\nAby uzyskać pomoc dotyczącą określonej operacji, wpisz:\n REG [operacja] /?\n\n" 6 - STRING_ADD_USAGE, "REG ADD nazwa_klucza [/v nazwa_wartości | /ve] [/t typ] [/s separator] [/d dane] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE nazwa_klucza [/v nazwa_wartości | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY nazwa_klucza [/v nazwa_wartości | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "Operacja zakończona pomyślnie\n" 10 92 STRING_INVALID_KEY, "Błąd: Niewłaściwa nazwa klucza\n" 11 93 STRING_INVALID_CMDLINE, "Błąd: Niewłaściwe parametry wiersza poleceń\n" 12 94 STRING_NO_REMOTE, "Błąd: Nie można dodać kluczy do zdalnej maszyny\n" 13 - STRING_CANNOT_FIND, "Błąd: System nie mógł znaleźć podanej wartości lub klucza rejestru\n" 95 + STRING_VALUE_NONEXIST, "Błąd: System nie mógł znaleźć podanej wartości lub klucza rejestru\n" 14 96 STRING_UNSUPPORTED_TYPE, "Błąd: Nieobsługiwany typ\n" 15 - STRING_MISSING_INTEGER, "reg: Opcja [/d] musi poprzedzona poprawną liczbą całkowita\n" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: Opcja [/d] musi poprzedzona poprawną wartością szesnastkową\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Nieobsługiwany typ danych rejestru [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "Wartość rejestru '%1' już istnieje. Czy chcessz ją zastąpić?" 19 - STRING_YESNO, " (Tak|Nie)" 20 - STRING_YES, "T" 21 - STRING_NO, "N" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 104 + STRING_YESNO, " (Yes|No)" 105 + STRING_YESNOALL, " (Yes|No|All)" 22 106 STRING_CANCELLED, "Operacja rejestru została anulowana\n" 23 107 STRING_DEFAULT_VALUE, "(Domyślna)" 24 108 STRING_DELETE_VALUE, "Czy na pewno chcesz usunąć wartość rejestru '%1'?" ··· 26 110 STRING_DELETE_SUBKEY, "Czy na pewno chcesz usunąć klucz rejestru '%1'?" 27 111 STRING_INVALID_STRING, "reg: Opcja [/d] musi być poprzedzona prawidłowym łańcuchem\n" 28 112 STRING_VALUEALL_FAILED, "reg: Nie można usunąć wszystkich wartości rejestru w '%1'. Wystąpił nieoczekiwany błąd.\n" 29 - STRING_GENERAL_FAILURE, "reg: Nie można ukończyć określonej operacji. Wystąpił nieoczekiwany błąd.\n" 30 113 STRING_MATCHES_FOUND, "Wyszukiwanie zakończone. Liczba znalezionych elementów: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Nieprawidłowa składnia. " 32 115 STRING_INVALID_OPTION, "reg: Nieprawidłowa opcja [%1]. " 33 116 STRING_REG_HELP, "Wpisz ""REG /?"", aby uzyskać pomoc.\n" 34 117 STRING_FUNC_HELP, "Wpisz ""REG %1 /?"", aby uzyskać pomoc.\n" 35 118 STRING_VALUE_NOT_SET, "(wartość nie ustalona)" 36 - STRING_IMPORT_USAGE, "REG IMPORT plik.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 STRING_FILE_NOT_FOUND, "reg: Plik '%1' nie został odnaleziony.\n" 38 - STRING_OPEN_KEY_FAILED, "reg: Nie można otworzyć klucza rejestru '%1'.\n" 39 126 STRING_ESCAPE_SEQUENCE, "reg: Nierozpoznana sekwencja ucieczki [\\%1!c!]\n" 40 - STRING_EXPORT_USAGE, "REG EXPORT nazwa_klucza plik.reg [/y]\n" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT nazwa_klucza plik.reg [/y]\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 41 147 STRING_INVALID_SYSTEM_KEY, "reg: Nieprawidłowy klucz systemowy [%1]\n" 42 148 STRING_OVERWRITE_FILE, "Plik '%1' już istnieje. Czy chcesz go zastąpić?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+152 -15
base/applications/cmdutils/reg/lang/pt-PT.rc
··· 2 2 3 3 STRINGTABLE 4 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 nome_chave [/v nome_valor | /ve] [/t tipo] [/s separador] [/d dados] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE nome_chave [/v nome_valor | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY nome_chave [/v nome_valor | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 9 90 STRING_SUCCESS, "A operação foi completada com sucesso\n" 10 91 STRING_INVALID_KEY, "Erro: Nome de chave inválido\n" 11 92 STRING_INVALID_CMDLINE, "Erro: Parâmetros da linha de comandos inválidos\n" 12 93 STRING_NO_REMOTE, "Erro: Incapaz de adicionar chaves à máquina remota\n" 13 - STRING_CANNOT_FIND, "Erro: O sistema foi incapaz de encontrar a chave de registo ou valor especificado\n" 94 + STRING_VALUE_NONEXIST, "Erro: O sistema foi incapaz de encontrar a chave de registo ou valor especificado\n" 14 95 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" 96 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 97 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 98 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 99 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 100 + STRING_YES, "#msgctxt#Yes key#Y" 101 + STRING_NO, "#msgctxt#No key#N" 102 + STRING_ALL, "#msgctxt#All key#A" 19 103 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 104 + STRING_YESNOALL, " (Yes|No|All)" 105 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 106 STRING_DEFAULT_VALUE, "(Default)" 24 107 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 108 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 109 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 110 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" 111 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 112 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 113 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 114 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 115 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 116 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 117 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 118 + 119 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 120 + Imports keys, values and data from a given file into the registry.\n\n\ 121 + <file>\n\ 122 + The name and path of the registry file to import.\n\n" 123 + 37 124 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 125 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" 126 + 127 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 128 + Exports a specified registry key (including all subkeys and values)\n\ 129 + to a file.\n\n\ 130 + <key>\n\ 131 + The registry key to export.\n\n\ 132 + Format: ROOT\\Subkey\n\n\ 133 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 134 + HKEY_LOCAL_MACHINE | HKLM\n\ 135 + HKEY_CURRENT_USER | HKCU\n\ 136 + HKEY_CLASSES_ROOT | HKCR\n\ 137 + HKEY_USERS | HKU\n\ 138 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 139 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 140 + <file>\n\ 141 + The name and path of the registry file that will be created.\n\ 142 + This file must have a .reg extension.\n\n\ 143 + /y\n\ 144 + Overwrite <file> without prompting for confirmation.\n\n" 145 + 146 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 147 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 148 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 149 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 150 + 151 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 152 + Access the registry using the 32-bit view.\n\n\ 153 + /reg:64\n\ 154 + Access the registry using the 64-bit view.\n\n" 155 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 156 + 157 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 158 + Copies the contents of a specified registry key to another location.\n\ 159 + By default, this operation only copies registry values. Use [/s] to\n\ 160 + recursively copy all subkeys and values.\n\n\ 161 + <key1>, <key2>\n\ 162 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 163 + of the data. If <key2> does not exist, it is created.\n\n\ 164 + Format: ROOT\\Subkey\n\n\ 165 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 166 + HKEY_LOCAL_MACHINE | HKLM\n\ 167 + HKEY_CURRENT_USER | HKCU\n\ 168 + HKEY_CLASSES_ROOT | HKCR\n\ 169 + HKEY_USERS | HKU\n\ 170 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 171 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 172 + /s\n\ 173 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 174 + /f\n\ 175 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 176 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 177 + 178 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 179 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 180 }
+151 -13
base/applications/cmdutils/reg/lang/ro-RO.rc
··· 8 8 9 9 STRINGTABLE 10 10 { 11 - STRING_USAGE, "Sintaxa comenzii:\n REG [operație] [parametri]\n\nOperații disponibile:\n ADD | DELETE | IMPORT | EXPORT | QUERY | SAVE | RESTORE\n\nPentru informații despre o anume operație, tastați:\n REG [operație] /?\n\n" 12 - STRING_ADD_USAGE, "REG ADD nume_cheie [/v nume_valoare | /ve] [/t tip] [/s separator] [/d date] [/f]\n" 13 - STRING_DELETE_USAGE, "REG DELETE nume_cheie [/v nume_valoare | /ve | /va] [/f]\n" 14 - STRING_QUERY_USAGE, "REG QUERY nume_cheie [/v nume_valoare | /ve] [/s]\n" 11 + STRING_USAGE, "Usage:\n\ 12 + REG [operation] [parameters]\n\n\ 13 + Supported operations:\n\ 14 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 15 + For help on a specific operation, type:\n\ 16 + REG [operation] /?\n\n" 17 + 18 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 19 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 20 + <key>\n\ 21 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 22 + the key in which to add the new registry data.\n\n\ 23 + Format: ROOT\\Subkey\n\n\ 24 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 25 + HKEY_LOCAL_MACHINE | HKLM\n\ 26 + HKEY_CURRENT_USER | HKCU\n\ 27 + HKEY_CLASSES_ROOT | HKCR\n\ 28 + HKEY_USERS | HKU\n\ 29 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 30 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 31 + /v <value_name>\n\ 32 + The name of the registry value to add.\n\n\ 33 + /ve\n\ 34 + Add an unnamed registry value. This option modifies the (Default)\n\ 35 + registry value.\n\n\ 36 + /t <type>\n\ 37 + The type of data to add to the registry. If [/t] is specified,\n\ 38 + <type> must be one of the following:\n\n\ 39 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 40 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 41 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 42 + /s <separator>\n\ 43 + The character used to separate strings in REG_MULTI_SZ data.\n\ 44 + If [/s] is not specified, the default separator is \\0.\n\n\ 45 + /d <data>\n\ 46 + The data to add to the new registry value.\n\n\ 47 + /f\n\ 48 + Modify the registry without prompting for confirmation.\n\n" 49 + 50 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 51 + Deletes a registry key (including all subkeys and values), or deletes\n\ 52 + one or more values from a given registry key.\n\n\ 53 + <key>\n\ 54 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 55 + specified, the registry key in which to delete one or more values.\n\n\ 56 + Format: ROOT\\Subkey\n\n\ 57 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 58 + HKEY_LOCAL_MACHINE | HKLM\n\ 59 + HKEY_CURRENT_USER | HKCU\n\ 60 + HKEY_CLASSES_ROOT | HKCR\n\ 61 + HKEY_USERS | HKU\n\ 62 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 63 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 64 + /v <value_name>\n\ 65 + The name of the registry value to delete.\n\n\ 66 + /ve\n\ 67 + Delete an unnamed registry value. This option deletes the (Default)\n\ 68 + registry value.\n\n\ 69 + /va\n\ 70 + Delete all values from a registry key.\n\n\ 71 + /f\n\ 72 + Delete a registry key (including all subkeys and values) without\n\ 73 + prompting for confirmation.\n\n" 74 + 75 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 76 + Queries a specified registry key and lists all immediate subkeys, values\n\ 77 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 78 + <key>\n\ 79 + The registry key to query.\n\n\ 80 + Format: ROOT\\Subkey\n\n\ 81 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 82 + HKEY_LOCAL_MACHINE | HKLM\n\ 83 + HKEY_CURRENT_USER | HKCU\n\ 84 + HKEY_CLASSES_ROOT | HKCR\n\ 85 + HKEY_USERS | HKU\n\ 86 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 87 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 88 + /v <value_name>\n\ 89 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 90 + specified, all values under <key> are listed.\n\n\ 91 + /ve\n\ 92 + Query an unnamed registry value. This option queries the (Default)\n\ 93 + registry value.\n\n\ 94 + /s\n\ 95 + List all registry entries under <key> and its subkeys.\n\n" 96 + 15 97 STRING_SUCCESS, "Operația a fost îndeplinită cu succes\n" 16 98 STRING_INVALID_KEY, "Eroare: Nume de cheie nevalid\n" 17 99 STRING_INVALID_CMDLINE, "Eroare: Parametri nevalizi pentru linia de comandă\n" 18 100 STRING_NO_REMOTE, "Eroare: Nu pot fi adăugate chei într-un calculator la distanță\n" 19 - STRING_CANNOT_FIND, "Eroare: Sistemul nu a putut găsi cheia sau valoarea de registru specificată\n" 101 + STRING_VALUE_NONEXIST, "Eroare: Sistemul nu a putut găsi cheia sau valoarea de registru specificată\n" 20 102 STRING_UNSUPPORTED_TYPE, "Eroare: Tip nerecunoscut\n" 21 - STRING_MISSING_INTEGER, "reg: Opțiunea [/d] trebuie să fie urmată de un număr valid întreg\n" 103 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 22 104 STRING_MISSING_HEXDATA, "reg: Opțiunea [/d] trebuie să fie urmată de o valoare hexezecimală\n" 23 105 STRING_UNHANDLED_TYPE, "reg: Tip de dată nerecunoscut [/t 0x%1!x!, /d %2]\n" 24 106 STRING_OVERWRITE_VALUE, "Valoarea de registru «%1» deja există. Doriți s-o suprascrieți?" 25 - STRING_YESNO, " (Da|Nu)" 26 - STRING_YES, "D" 27 - STRING_NO, "N" 107 + STRING_YES, "#msgctxt#Yes key#Y" 108 + STRING_NO, "#msgctxt#No key#N" 109 + STRING_ALL, "#msgctxt#All key#A" 110 + STRING_YESNO, " (Yes|No)" 111 + STRING_YESNOALL, " (Yes|No|All)" 28 112 STRING_CANCELLED, "Operația de registru a fost anulată\n" 29 113 STRING_DEFAULT_VALUE, "(Implicită)" 30 114 STRING_DELETE_VALUE, "Sigur doriți ștergerea valorii de registru «%1»?" ··· 32 116 STRING_DELETE_SUBKEY, "Sigur doriți ștergerea cheii de registru «%1»?" 33 117 STRING_INVALID_STRING, "reg: Opțiunea [/d] trebuie urmată de un șir valid\n" 34 118 STRING_VALUEALL_FAILED, "reg: Nu au putut fi șterse toate valorile de registru din «%1». A survenit o eroare neașteptată.\n" 35 - STRING_GENERAL_FAILURE, "reg: Operația specificată nu a putut fi efectuată. A survenit o eroare neașteptată.\n" 36 119 STRING_MATCHES_FOUND, "Căutare efectuată. Numărul de potriviri găsite: %1!d!\n" 37 120 STRING_INVALID_SYNTAX, "reg: Sintaxă nerespectată. " 38 121 STRING_INVALID_OPTION, "reg: Opțiune nevalidă [%1]. " 39 122 STRING_REG_HELP, "Tastați «REG /?» pentru mai multe informații.\n" 40 123 STRING_FUNC_HELP, "Tastați «REG %1 /?» pentru mai multe informații.\n" 41 124 STRING_VALUE_NOT_SET, "(valoare nealocată)" 42 - STRING_IMPORT_USAGE, "REG IMPORT fișier.reg\n" 125 + 126 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 127 + Imports keys, values and data from a given file into the registry.\n\n\ 128 + <file>\n\ 129 + The name and path of the registry file to import.\n\n" 130 + 43 131 STRING_FILE_NOT_FOUND, "reg: Fișierul «%1» nu a putut fi găsit.\n" 44 - STRING_OPEN_KEY_FAILED, "reg: Cheia de registru «%1» nu a putut fi deschisă.\n" 45 132 STRING_ESCAPE_SEQUENCE, "reg: Secvența de sustracție [\\%1!c!] nu este recunoscută.\n" 46 - STRING_EXPORT_USAGE, "REG EXPORT nume_cheie fișier.reg [/y]\n" 133 + 134 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 135 + Exports a specified registry key (including all subkeys and values)\n\ 136 + to a file.\n\n\ 137 + <key>\n\ 138 + The registry key to export.\n\n\ 139 + Format: ROOT\\Subkey\n\n\ 140 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 141 + HKEY_LOCAL_MACHINE | HKLM\n\ 142 + HKEY_CURRENT_USER | HKCU\n\ 143 + HKEY_CLASSES_ROOT | HKCR\n\ 144 + HKEY_USERS | HKU\n\ 145 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 146 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 147 + <file>\n\ 148 + The name and path of the registry file that will be created.\n\ 149 + This file must have a .reg extension.\n\n\ 150 + /y\n\ 151 + Overwrite <file> without prompting for confirmation.\n\n" 152 + 47 153 STRING_INVALID_SYSTEM_KEY, "reg: Cheia de sistem [%1] nu este una validă.\n" 48 154 STRING_OVERWRITE_FILE, "Fișierul «%1» deja există. Doriți suprascrierea lui?" 155 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 156 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 157 + 158 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 159 + Access the registry using the 32-bit view.\n\n\ 160 + /reg:64\n\ 161 + Access the registry using the 64-bit view.\n\n" 162 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 163 + 164 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 165 + Copies the contents of a specified registry key to another location.\n\ 166 + By default, this operation only copies registry values. Use [/s] to\n\ 167 + recursively copy all subkeys and values.\n\n\ 168 + <key1>, <key2>\n\ 169 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 170 + of the data. If <key2> does not exist, it is created.\n\n\ 171 + Format: ROOT\\Subkey\n\n\ 172 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 173 + HKEY_LOCAL_MACHINE | HKLM\n\ 174 + HKEY_CURRENT_USER | HKCU\n\ 175 + HKEY_CLASSES_ROOT | HKCR\n\ 176 + HKEY_USERS | HKU\n\ 177 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 178 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 179 + /s\n\ 180 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 181 + /f\n\ 182 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 183 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 184 + 185 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 186 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 49 187 }
+152 -15
base/applications/cmdutils/reg/lang/ru-RU.rc
··· 2 2 3 3 STRINGTABLE 4 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 <тип>] [/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" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 9 90 STRING_SUCCESS, "Операция успешно завершена\n" 10 91 STRING_INVALID_KEY, "Ошибка: Неправильное имя ключа\n" 11 92 STRING_INVALID_CMDLINE, "Ошибка: Неправильные параметры командной строки\n" 12 93 STRING_NO_REMOTE, "Ошибка: Невозможно добавить ключи на удаленной машине\n" 13 - STRING_CANNOT_FIND, "Ошибка: Не удалось найти указанный ключ реестра или значение\n" 94 + STRING_VALUE_NONEXIST, "Ошибка: Не удалось найти указанный ключ реестра или значение\n" 14 95 STRING_UNSUPPORTED_TYPE, "Ошибка: Неподдерживаемый тип\n" 15 - STRING_MISSING_INTEGER, "Ошибка: Задайте допустимое целочисленное значение параметра [/d]\n" 96 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 97 STRING_MISSING_HEXDATA, "Ошибка: Задайте допустимое шестнадцатеричное значение параметра [/d]\n" 17 98 STRING_UNHANDLED_TYPE, "reg: Неизвестный тип данных реестра [/t 0x%1!x!, /d %2]\n" 18 99 STRING_OVERWRITE_VALUE, "Параметр '%1' уже существует. Заменить?" 19 - STRING_YESNO, "(Y-да/N-нет)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "Операция отменена\n" 100 + STRING_YES, "#msgctxt#Yes key#Y" 101 + STRING_NO, "#msgctxt#No key#N" 102 + STRING_ALL, "#msgctxt#All key#A" 103 + STRING_YESNO, " (Yes|No)" 104 + STRING_YESNOALL, " (Yes|No|All)" 105 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 106 STRING_DEFAULT_VALUE, "(по умолчанию)" 24 107 STRING_DELETE_VALUE, "Удалить раздел реестра '%1' без возможности восстановления?" 25 108 STRING_DELETE_VALUEALL, "Удалить все параметры из раздела реестра '%1'?" 26 109 STRING_DELETE_SUBKEY, "Удалить параметр реестра '%1' без возможности восстановления?" 27 110 STRING_INVALID_STRING, "reg: Опция [/d] должна сопровождаться допустимой строкой\n" 28 111 STRING_VALUEALL_FAILED, "reg: Невозможно удалить все значения реестра в '%1'. Произошла непредвиденная ошибка.\n" 29 - STRING_GENERAL_FAILURE, "reg: Не удалось выполнить указанную операцию. Произошла непредвиденная ошибка.\n" 30 112 STRING_MATCHES_FOUND, "Поиск завершен. Количество совпадений: %1!d!\n" 31 113 STRING_INVALID_SYNTAX, "Ошибка: Неверный синтаксис. " 32 114 STRING_INVALID_OPTION, "Ошибка: Недопустимый аргумент или параметр [%1]. " 33 115 STRING_REG_HELP, "Введите ""REG /?"" для получения справки по использованию..\n" 34 116 STRING_FUNC_HELP, "Введите ""REG %1 /?"" для получения справки по использованию..\n" 35 117 STRING_VALUE_NOT_SET, "(значение не указано)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 118 + 119 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 120 + Imports keys, values and data from a given file into the registry.\n\n\ 121 + <file>\n\ 122 + The name and path of the registry file to import.\n\n" 123 + 37 124 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 125 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" 126 + 127 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 128 + Exports a specified registry key (including all subkeys and values)\n\ 129 + to a file.\n\n\ 130 + <key>\n\ 131 + The registry key to export.\n\n\ 132 + Format: ROOT\\Subkey\n\n\ 133 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 134 + HKEY_LOCAL_MACHINE | HKLM\n\ 135 + HKEY_CURRENT_USER | HKCU\n\ 136 + HKEY_CLASSES_ROOT | HKCR\n\ 137 + HKEY_USERS | HKU\n\ 138 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 139 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 140 + <file>\n\ 141 + The name and path of the registry file that will be created.\n\ 142 + This file must have a .reg extension.\n\n\ 143 + /y\n\ 144 + Overwrite <file> without prompting for confirmation.\n\n" 145 + 146 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 147 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 148 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 149 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 150 + 151 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 152 + Access the registry using the 32-bit view.\n\n\ 153 + /reg:64\n\ 154 + Access the registry using the 64-bit view.\n\n" 155 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 156 + 157 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 158 + Copies the contents of a specified registry key to another location.\n\ 159 + By default, this operation only copies registry values. Use [/s] to\n\ 160 + recursively copy all subkeys and values.\n\n\ 161 + <key1>, <key2>\n\ 162 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 163 + of the data. If <key2> does not exist, it is created.\n\n\ 164 + Format: ROOT\\Subkey\n\n\ 165 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 166 + HKEY_LOCAL_MACHINE | HKLM\n\ 167 + HKEY_CURRENT_USER | HKCU\n\ 168 + HKEY_CLASSES_ROOT | HKCR\n\ 169 + HKEY_USERS | HKU\n\ 170 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 171 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 172 + /s\n\ 173 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 174 + /f\n\ 175 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 176 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 177 + 178 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 179 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 180 }
+153 -15
base/applications/cmdutils/reg/lang/sl-SI.rc
··· 2 2 3 3 STRINGTABLE 4 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 ime_ključa [/v ime_vrednosti | /ve] [/t vrsta] [/s ločilo] [/d podatki] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE ime_ključa [/v ime_vrednosti | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY ime_ključa [/v ime_vrednosti | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "Operacija se je uspešno izvedla\n" 10 92 STRING_INVALID_KEY, "Napaka: Napačno ime ključa\n" 11 93 STRING_INVALID_CMDLINE, "Napaka: Napačen parameter v ukazni vrstici\n" 12 94 STRING_NO_REMOTE, "Napaka: Na morem dodati ključa na oddaljen računalnik\n" 13 - STRING_CANNOT_FIND, "Napaka: Sistem ni našel zahtevanega ključa ali vrednosti\n" 95 + STRING_VALUE_NONEXIST, "Napaka: Sistem ni našel zahtevanega ključa ali vrednosti\n" 14 96 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" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 19 104 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 105 + STRING_YESNOALL, " (Yes|No|All)" 106 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 107 STRING_DEFAULT_VALUE, "(Default)" 24 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 109 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 111 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" 112 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 116 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 117 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 118 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 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 126 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" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 147 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+153 -15
base/applications/cmdutils/reg/lang/sq-AL.rc
··· 6 6 7 7 STRINGTABLE 8 8 { 9 - 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" 10 - STRING_ADD_USAGE, "REG ADD emri_çelsit [/v value_name | /ve] [/t tipi] [/s ndares] [/d data] [/f]\n" 11 - STRING_DELETE_USAGE, "REG DELETE emri_çelsit [/v value_name | /ve | /va] [/f]\n" 12 - STRING_QUERY_USAGE, "REG QUERY emri_çelsit [/v value_name | /ve] [/s]\n" 9 + STRING_USAGE, "Usage:\n\ 10 + REG [operation] [parameters]\n\n\ 11 + Supported operations:\n\ 12 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 13 + For help on a specific operation, type:\n\ 14 + REG [operation] /?\n\n" 15 + 16 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 17 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 18 + <key>\n\ 19 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 20 + the key in which to add the new registry data.\n\n\ 21 + Format: ROOT\\Subkey\n\n\ 22 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 23 + HKEY_LOCAL_MACHINE | HKLM\n\ 24 + HKEY_CURRENT_USER | HKCU\n\ 25 + HKEY_CLASSES_ROOT | HKCR\n\ 26 + HKEY_USERS | HKU\n\ 27 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 28 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 29 + /v <value_name>\n\ 30 + The name of the registry value to add.\n\n\ 31 + /ve\n\ 32 + Add an unnamed registry value. This option modifies the (Default)\n\ 33 + registry value.\n\n\ 34 + /t <type>\n\ 35 + The type of data to add to the registry. If [/t] is specified,\n\ 36 + <type> must be one of the following:\n\n\ 37 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 38 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 39 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 40 + /s <separator>\n\ 41 + The character used to separate strings in REG_MULTI_SZ data.\n\ 42 + If [/s] is not specified, the default separator is \\0.\n\n\ 43 + /d <data>\n\ 44 + The data to add to the new registry value.\n\n\ 45 + /f\n\ 46 + Modify the registry without prompting for confirmation.\n\n" 47 + 48 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 49 + Deletes a registry key (including all subkeys and values), or deletes\n\ 50 + one or more values from a given registry key.\n\n\ 51 + <key>\n\ 52 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 53 + specified, the registry key in which to delete one or more values.\n\n\ 54 + Format: ROOT\\Subkey\n\n\ 55 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 56 + HKEY_LOCAL_MACHINE | HKLM\n\ 57 + HKEY_CURRENT_USER | HKCU\n\ 58 + HKEY_CLASSES_ROOT | HKCR\n\ 59 + HKEY_USERS | HKU\n\ 60 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 61 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 62 + /v <value_name>\n\ 63 + The name of the registry value to delete.\n\n\ 64 + /ve\n\ 65 + Delete an unnamed registry value. This option deletes the (Default)\n\ 66 + registry value.\n\n\ 67 + /va\n\ 68 + Delete all values from a registry key.\n\n\ 69 + /f\n\ 70 + Delete a registry key (including all subkeys and values) without\n\ 71 + prompting for confirmation.\n\n" 72 + 73 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 74 + Queries a specified registry key and lists all immediate subkeys, values\n\ 75 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 76 + <key>\n\ 77 + The registry key to query.\n\n\ 78 + Format: ROOT\\Subkey\n\n\ 79 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 80 + HKEY_LOCAL_MACHINE | HKLM\n\ 81 + HKEY_CURRENT_USER | HKCU\n\ 82 + HKEY_CLASSES_ROOT | HKCR\n\ 83 + HKEY_USERS | HKU\n\ 84 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 85 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 86 + /v <value_name>\n\ 87 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 88 + specified, all values under <key> are listed.\n\n\ 89 + /ve\n\ 90 + Query an unnamed registry value. This option queries the (Default)\n\ 91 + registry value.\n\n\ 92 + /s\n\ 93 + List all registry entries under <key> and its subkeys.\n\n" 94 + 13 95 STRING_SUCCESS, "Operacioni përfundoi me sukses\n" 14 96 STRING_INVALID_KEY, "Error: Çelsi i pavlerfshem i emrit\n" 15 97 STRING_INVALID_CMDLINE, "Error: Parametrat e pavlefshme ne vijën komanduse\n" 16 98 STRING_NO_REMOTE, "Error: Në pamundësi për të shtuar çelësat në makinë në distancë\n" 17 - STRING_CANNOT_FIND, "Error: Sistemi nuk ishte në gjendje për të gjetur çelësat të caktuar të regjistrit ose vlerës\n" 99 + STRING_VALUE_NONEXIST, "Error: Sistemi nuk ishte në gjendje për të gjetur çelësat të caktuar të regjistrit ose vlerës\n" 18 100 STRING_UNSUPPORTED_TYPE, "reg: Unsupported registry data type [%1]\n" 19 - STRING_MISSING_INTEGER, "reg: The option [/d] must be followed by a valid integer\n" 101 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 20 102 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 21 103 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 22 104 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 105 + STRING_YES, "#msgctxt#Yes key#Y" 106 + STRING_NO, "#msgctxt#No key#N" 107 + STRING_ALL, "#msgctxt#All key#A" 23 108 STRING_YESNO, " (Yes|No)" 24 - STRING_YES, "Y" 25 - STRING_NO, "N" 26 - STRING_CANCELLED, "The registry operation was cancelled\n" 109 + STRING_YESNOALL, " (Yes|No|All)" 110 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 27 111 STRING_DEFAULT_VALUE, "(Default)" 28 112 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 29 113 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 30 114 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 31 115 STRING_INVALID_STRING, "reg: The option [/d] must be followed by a valid string\n" 32 - STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'. An unexpected error occurred.\n" 33 - STRING_GENERAL_FAILURE, "reg: Unable to complete the specified operation. An unexpected error occurred.\n" 116 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 34 117 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 35 118 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 36 119 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 37 120 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 38 121 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 39 122 STRING_VALUE_NOT_SET, "(value not set)" 40 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 123 + 124 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 125 + Imports keys, values and data from a given file into the registry.\n\n\ 126 + <file>\n\ 127 + The name and path of the registry file to import.\n\n" 128 + 41 129 STRING_FILE_NOT_FOUND, "reg: The file '%1' was not found.\n" 42 - STRING_OPEN_KEY_FAILED, "reg: Unable to open the registry key '%1'.\n" 43 130 STRING_ESCAPE_SEQUENCE, "reg: Unrecognized escape sequence [\\%1!c!]\n" 44 - STRING_EXPORT_USAGE, "REG EXPORT key_name file.reg [/y]\n" 45 - STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key [%1]\n" 131 + 132 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 133 + Exports a specified registry key (including all subkeys and values)\n\ 134 + to a file.\n\n\ 135 + <key>\n\ 136 + The registry key to export.\n\n\ 137 + Format: ROOT\\Subkey\n\n\ 138 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 139 + HKEY_LOCAL_MACHINE | HKLM\n\ 140 + HKEY_CURRENT_USER | HKCU\n\ 141 + HKEY_CLASSES_ROOT | HKCR\n\ 142 + HKEY_USERS | HKU\n\ 143 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 144 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 145 + <file>\n\ 146 + The name and path of the registry file that will be created.\n\ 147 + This file must have a .reg extension.\n\n\ 148 + /y\n\ 149 + Overwrite <file> without prompting for confirmation.\n\n" 150 + 151 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 46 152 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 153 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 154 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 155 + 156 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 157 + Access the registry using the 32-bit view.\n\n\ 158 + /reg:64\n\ 159 + Access the registry using the 64-bit view.\n\n" 160 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 161 + 162 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 163 + Copies the contents of a specified registry key to another location.\n\ 164 + By default, this operation only copies registry values. Use [/s] to\n\ 165 + recursively copy all subkeys and values.\n\n\ 166 + <key1>, <key2>\n\ 167 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 168 + of the data. If <key2> does not exist, it is created.\n\n\ 169 + Format: ROOT\\Subkey\n\n\ 170 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 171 + HKEY_LOCAL_MACHINE | HKLM\n\ 172 + HKEY_CURRENT_USER | HKCU\n\ 173 + HKEY_CLASSES_ROOT | HKCR\n\ 174 + HKEY_USERS | HKU\n\ 175 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 176 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 177 + /s\n\ 178 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 179 + /f\n\ 180 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 181 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 182 + 183 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 184 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 47 185 }
+154 -16
base/applications/cmdutils/reg/lang/sv-SE.rc
··· 2 2 3 3 STRINGTABLE 4 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 nyckelnamn [/v värdenamn | /ve] [/t typ] [/s separator] [/d data] [/f]\n" 7 - STRING_DELETE_USAGE, "REG DELETE nyckelnamn [/v värdenamn | /ve | /va] [/f]\n" 8 - STRING_QUERY_USAGE, "REG QUERY nyckelnamn [/v värdenamn | /ve] [/s]\n" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "Operation slutfördes utan problem\n" 10 92 STRING_INVALID_KEY, "Fel: ogiltigt nyckelnamn\n" 11 93 STRING_INVALID_CMDLINE, "Fel: ogiltiga kommandoradsparametrar\n" 12 94 STRING_NO_REMOTE, "Fel: Kan inte lägga till nycklar till fjärrmaskin\n" 13 - STRING_CANNOT_FIND, "Fel: Systemet kunde inte hitta angiven nyckel eller värde i registret\n" 95 + STRING_VALUE_NONEXIST, "Fel: Systemet kunde inte hitta angiven nyckel eller värde i registret\n" 14 96 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" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 19 104 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, "(Standard)" 105 + STRING_YESNOALL, " (Yes|No|All)" 106 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 107 + STRING_DEFAULT_VALUE, "(Default)" 24 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 109 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 111 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" 112 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 116 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 117 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 118 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 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 126 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" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 147 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+151 -12
base/applications/cmdutils/reg/lang/tr-TR.rc
··· 4 4 5 5 STRINGTABLE 6 6 { 7 - STRING_USAGE, "Kullanım:\n REG [işlem] [değer adı]\n\nDesteklenen işlemler:\n ADD | DELETE | IMPORT | EXPORT | QUERY | SAVE | RESTORE\n\nBir işlem hakkında yardım metnini almak için şunu yazınız:\n REG [işlem] /?\n\n" 8 - STRING_ADD_USAGE, "REG ADD anahtar adı [/v değer adı | /ve] [/t tür] [/s ayırıcı] [/d veri] [/f]\n" 9 - STRING_DELETE_USAGE, "REG DELETE anahtar adı [/v değer adı | /ve | /va] [/f]\n" 10 - STRING_QUERY_USAGE, "REG QUERY anahtar adı [/v değer adı | /ve] [/s]\n" 7 + STRING_USAGE, "Usage:\n\ 8 + REG [operation] [parameters]\n\n\ 9 + Supported operations:\n\ 10 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 11 + For help on a specific operation, type:\n\ 12 + REG [operation] /?\n\n" 13 + 14 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 15 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 16 + <key>\n\ 17 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 18 + the key in which to add the new registry data.\n\n\ 19 + Format: ROOT\\Subkey\n\n\ 20 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 21 + HKEY_LOCAL_MACHINE | HKLM\n\ 22 + HKEY_CURRENT_USER | HKCU\n\ 23 + HKEY_CLASSES_ROOT | HKCR\n\ 24 + HKEY_USERS | HKU\n\ 25 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 26 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 27 + /v <value_name>\n\ 28 + The name of the registry value to add.\n\n\ 29 + /ve\n\ 30 + Add an unnamed registry value. This option modifies the (Default)\n\ 31 + registry value.\n\n\ 32 + /t <type>\n\ 33 + The type of data to add to the registry. If [/t] is specified,\n\ 34 + <type> must be one of the following:\n\n\ 35 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 36 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 37 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 38 + /s <separator>\n\ 39 + The character used to separate strings in REG_MULTI_SZ data.\n\ 40 + If [/s] is not specified, the default separator is \\0.\n\n\ 41 + /d <data>\n\ 42 + The data to add to the new registry value.\n\n\ 43 + /f\n\ 44 + Modify the registry without prompting for confirmation.\n\n" 45 + 46 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 47 + Deletes a registry key (including all subkeys and values), or deletes\n\ 48 + one or more values from a given registry key.\n\n\ 49 + <key>\n\ 50 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 51 + specified, the registry key in which to delete one or more values.\n\n\ 52 + Format: ROOT\\Subkey\n\n\ 53 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 54 + HKEY_LOCAL_MACHINE | HKLM\n\ 55 + HKEY_CURRENT_USER | HKCU\n\ 56 + HKEY_CLASSES_ROOT | HKCR\n\ 57 + HKEY_USERS | HKU\n\ 58 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 59 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 60 + /v <value_name>\n\ 61 + The name of the registry value to delete.\n\n\ 62 + /ve\n\ 63 + Delete an unnamed registry value. This option deletes the (Default)\n\ 64 + registry value.\n\n\ 65 + /va\n\ 66 + Delete all values from a registry key.\n\n\ 67 + /f\n\ 68 + Delete a registry key (including all subkeys and values) without\n\ 69 + prompting for confirmation.\n\n" 70 + 71 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 72 + Queries a specified registry key and lists all immediate subkeys, values\n\ 73 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 74 + <key>\n\ 75 + The registry key to query.\n\n\ 76 + Format: ROOT\\Subkey\n\n\ 77 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 78 + HKEY_LOCAL_MACHINE | HKLM\n\ 79 + HKEY_CURRENT_USER | HKCU\n\ 80 + HKEY_CLASSES_ROOT | HKCR\n\ 81 + HKEY_USERS | HKU\n\ 82 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 83 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 84 + /v <value_name>\n\ 85 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 86 + specified, all values under <key> are listed.\n\n\ 87 + /ve\n\ 88 + Query an unnamed registry value. This option queries the (Default)\n\ 89 + registry value.\n\n\ 90 + /s\n\ 91 + List all registry entries under <key> and its subkeys.\n\n" 92 + 11 93 STRING_SUCCESS, "İşlem başarıyla bitirildi\n" 12 94 STRING_INVALID_KEY, "reg: Geçersiz anahtar adı\n" 13 95 STRING_INVALID_CMDLINE, "reg: Geçersiz komut satırı değişkenleri\n" 14 96 STRING_NO_REMOTE, "reg: Uzak makineye erişilemiyor\n" 15 - STRING_CANNOT_FIND, "reg: Sistem belirtilen kayıt defteri anahtarını ya da değerini bulamadı\n" 97 + STRING_VALUE_NONEXIST, "reg: Sistem belirtilen kayıt defteri anahtarını ya da değerini bulamadı\n" 16 98 STRING_UNSUPPORTED_TYPE, "reg: Desteklenmeyen tür\n" 17 - STRING_MISSING_INTEGER, "reg: [/d] seçeneği geçerli bir tamsayıyla izlenmelidir\n" 99 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 18 100 STRING_MISSING_HEXDATA, "reg: [/d] seçeneği geçerli bir onaltılık değerle izlenmelidir\n" 19 101 STRING_UNHANDLED_TYPE, "reg: İşlenemeyen kayıt defteri veri türü [/t 0x%1!x!, /d %2]\n" 20 102 STRING_OVERWRITE_VALUE, """%1"" kayıt defteri değeri önceden var. Üzerine yazmak ister misiniz?" 103 + 104 + STRING_YES, "#msgctxt#Yes key#Y" 105 + STRING_NO, "#msgctxt#No key#N" 106 + STRING_ALL, "#msgctxt#All key#A" 21 107 STRING_YESNO, " (Evet|Hayır)" 22 - STRING_YES, "E" 23 - STRING_NO, "H" 108 + STRING_YESNOALL, " (Yes|No|All)" 24 109 STRING_CANCELLED, "Kayıt defteri işlemi iptal edildi\n" 25 110 STRING_DEFAULT_VALUE, "(Varsayılan)" 26 111 STRING_DELETE_VALUE, """%1"" kayıt defteri değerini silmek istediğinize emin misiniz?" ··· 28 113 STRING_DELETE_SUBKEY, """%1"" kayıt defteri anahtarını silmek istediğinize emin misiniz?" 29 114 STRING_INVALID_STRING, "reg: [/d] seçeneği geçerli bir karakter dizisiyle izlenmelidir.\n" 30 115 STRING_VALUEALL_FAILED, "reg: ""%1"" içindeki tüm kayıt defteri değerleri silinemiyor. Beklenmeyen bir hata yaşandı.\n" 31 - STRING_GENERAL_FAILURE, "reg: Belirtilen işlem bitirilemiyor. Beklenmeyen bir hata yaşandı.\n" 32 116 STRING_MATCHES_FOUND, "Arama bitti. %1!d! eşleşme bulundu.\n" 33 117 STRING_INVALID_SYNTAX, "reg: Geçersiz söz dizimi. " 34 118 STRING_INVALID_OPTION, "reg: Geçersiz seçenek [%1]. " 35 119 STRING_REG_HELP, "Yardım için ""REG /?"" yazınız.\n" 36 120 STRING_FUNC_HELP, "Yardım için ""REG %1 /?"" yazınız.\n" 37 121 STRING_VALUE_NOT_SET, "(Değer belirlenmemiş.)" 38 - STRING_IMPORT_USAGE, "REG IMPORT dosya.reg\n" 122 + 123 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 124 + Imports keys, values and data from a given file into the registry.\n\n\ 125 + <file>\n\ 126 + The name and path of the registry file to import.\n\n" 127 + 39 128 STRING_FILE_NOT_FOUND, "reg: '%1' dosyası bulunamadı.\n" 40 - STRING_OPEN_KEY_FAILED, "reg: Kayıt anahtarı '%1' bulunamadı.\n" 41 129 STRING_ESCAPE_SEQUENCE, "reg: Tanımlanamayan kaçış dizisi [\\%1!c!]\n" 42 - STRING_EXPORT_USAGE, "REG EXPORT anahtar_adı dosya_adı.reg [/y]\n" 130 + 131 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 132 + Exports a specified registry key (including all subkeys and values)\n\ 133 + to a file.\n\n\ 134 + <key>\n\ 135 + The registry key to export.\n\n\ 136 + Format: ROOT\\Subkey\n\n\ 137 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 138 + HKEY_LOCAL_MACHINE | HKLM\n\ 139 + HKEY_CURRENT_USER | HKCU\n\ 140 + HKEY_CLASSES_ROOT | HKCR\n\ 141 + HKEY_USERS | HKU\n\ 142 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 143 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 144 + <file>\n\ 145 + The name and path of the registry file that will be created.\n\ 146 + This file must have a .reg extension.\n\n\ 147 + /y\n\ 148 + Overwrite <file> without prompting for confirmation.\n\n" 149 + 43 150 STRING_INVALID_SYSTEM_KEY, "reg: Geçersiz sistem tuşu [%1]\n" 44 151 STRING_OVERWRITE_FILE, "'%1' dosyası çoktan var. Üzerine yazmak ister misiniz?" 152 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 153 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 154 + 155 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 156 + Access the registry using the 32-bit view.\n\n\ 157 + /reg:64\n\ 158 + Access the registry using the 64-bit view.\n\n" 159 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 160 + 161 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 162 + Copies the contents of a specified registry key to another location.\n\ 163 + By default, this operation only copies registry values. Use [/s] to\n\ 164 + recursively copy all subkeys and values.\n\n\ 165 + <key1>, <key2>\n\ 166 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 167 + of the data. If <key2> does not exist, it is created.\n\n\ 168 + Format: ROOT\\Subkey\n\n\ 169 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 170 + HKEY_LOCAL_MACHINE | HKLM\n\ 171 + HKEY_CURRENT_USER | HKCU\n\ 172 + HKEY_CLASSES_ROOT | HKCR\n\ 173 + HKEY_USERS | HKU\n\ 174 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 175 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 176 + /s\n\ 177 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 178 + /f\n\ 179 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 180 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 181 + 182 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 183 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 45 184 }
+153 -15
base/applications/cmdutils/reg/lang/uk-UA.rc
··· 2 2 3 3 STRINGTABLE 4 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 <тип>] [/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" 5 + STRING_USAGE, "Usage:\n\ 6 + REG [operation] [parameters]\n\n\ 7 + Supported operations:\n\ 8 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 9 + For help on a specific operation, type:\n\ 10 + REG [operation] /?\n\n" 11 + 12 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 13 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 14 + <key>\n\ 15 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 16 + the key in which to add the new registry data.\n\n\ 17 + Format: ROOT\\Subkey\n\n\ 18 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 19 + HKEY_LOCAL_MACHINE | HKLM\n\ 20 + HKEY_CURRENT_USER | HKCU\n\ 21 + HKEY_CLASSES_ROOT | HKCR\n\ 22 + HKEY_USERS | HKU\n\ 23 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 24 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 25 + /v <value_name>\n\ 26 + The name of the registry value to add.\n\n\ 27 + /ve\n\ 28 + Add an unnamed registry value. This option modifies the (Default)\n\ 29 + registry value.\n\n\ 30 + /t <type>\n\ 31 + The type of data to add to the registry. If [/t] is specified,\n\ 32 + <type> must be one of the following:\n\n\ 33 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 34 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 35 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 36 + /s <separator>\n\ 37 + The character used to separate strings in REG_MULTI_SZ data.\n\ 38 + If [/s] is not specified, the default separator is \\0.\n\n\ 39 + /d <data>\n\ 40 + The data to add to the new registry value.\n\n\ 41 + /f\n\ 42 + Modify the registry without prompting for confirmation.\n\n" 43 + 44 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 45 + Deletes a registry key (including all subkeys and values), or deletes\n\ 46 + one or more values from a given registry key.\n\n\ 47 + <key>\n\ 48 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 49 + specified, the registry key in which to delete one or more values.\n\n\ 50 + Format: ROOT\\Subkey\n\n\ 51 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 52 + HKEY_LOCAL_MACHINE | HKLM\n\ 53 + HKEY_CURRENT_USER | HKCU\n\ 54 + HKEY_CLASSES_ROOT | HKCR\n\ 55 + HKEY_USERS | HKU\n\ 56 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 57 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 58 + /v <value_name>\n\ 59 + The name of the registry value to delete.\n\n\ 60 + /ve\n\ 61 + Delete an unnamed registry value. This option deletes the (Default)\n\ 62 + registry value.\n\n\ 63 + /va\n\ 64 + Delete all values from a registry key.\n\n\ 65 + /f\n\ 66 + Delete a registry key (including all subkeys and values) without\n\ 67 + prompting for confirmation.\n\n" 68 + 69 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 70 + Queries a specified registry key and lists all immediate subkeys, values\n\ 71 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 72 + <key>\n\ 73 + The registry key to query.\n\n\ 74 + Format: ROOT\\Subkey\n\n\ 75 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 76 + HKEY_LOCAL_MACHINE | HKLM\n\ 77 + HKEY_CURRENT_USER | HKCU\n\ 78 + HKEY_CLASSES_ROOT | HKCR\n\ 79 + HKEY_USERS | HKU\n\ 80 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 81 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 82 + /v <value_name>\n\ 83 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 84 + specified, all values under <key> are listed.\n\n\ 85 + /ve\n\ 86 + Query an unnamed registry value. This option queries the (Default)\n\ 87 + registry value.\n\n\ 88 + /s\n\ 89 + List all registry entries under <key> and its subkeys.\n\n" 90 + 9 91 STRING_SUCCESS, "Операція успішно завершена\n" 10 92 STRING_INVALID_KEY, "Помилка: неправильне ім'я ключа\n" 11 93 STRING_INVALID_CMDLINE, "Помилка: неправильні параметри командного рядка\n" 12 94 STRING_NO_REMOTE, "Помилка: неможливо додати ключі на віддаленій машині\n" 13 - STRING_CANNOT_FIND, "Помилка: не вдалось знайти вказаний ключ реєстру чи значення\n" 95 + STRING_VALUE_NONEXIST, "Помилка: не вдалось знайти вказаний ключ реєстру чи значення\n" 14 96 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" 97 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 16 98 STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n" 17 99 STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n" 18 100 STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?" 101 + STRING_YES, "#msgctxt#Yes key#Y" 102 + STRING_NO, "#msgctxt#No key#N" 103 + STRING_ALL, "#msgctxt#All key#A" 19 104 STRING_YESNO, " (Yes|No)" 20 - STRING_YES, "Y" 21 - STRING_NO, "N" 22 - STRING_CANCELLED, "The registry operation was cancelled\n" 105 + STRING_YESNOALL, " (Yes|No|All)" 106 + STRING_CANCELLED, "reg: The registry operation was cancelled\n" 23 107 STRING_DEFAULT_VALUE, "(Default)" 24 108 STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?" 25 109 STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?" 26 110 STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?" 27 111 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" 112 + STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n" 30 113 STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n" 31 114 STRING_INVALID_SYNTAX, "reg: Invalid syntax. " 32 115 STRING_INVALID_OPTION, "reg: Invalid option [%1]. " 33 116 STRING_REG_HELP, "Type ""REG /?"" for help.\n" 34 117 STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n" 35 118 STRING_VALUE_NOT_SET, "(value not set)" 36 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 119 + 120 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 121 + Imports keys, values and data from a given file into the registry.\n\n\ 122 + <file>\n\ 123 + The name and path of the registry file to import.\n\n" 124 + 37 125 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 126 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" 127 + 128 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 129 + Exports a specified registry key (including all subkeys and values)\n\ 130 + to a file.\n\n\ 131 + <key>\n\ 132 + The registry key to export.\n\n\ 133 + Format: ROOT\\Subkey\n\n\ 134 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 135 + HKEY_LOCAL_MACHINE | HKLM\n\ 136 + HKEY_CURRENT_USER | HKCU\n\ 137 + HKEY_CLASSES_ROOT | HKCR\n\ 138 + HKEY_USERS | HKU\n\ 139 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 140 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 141 + <file>\n\ 142 + The name and path of the registry file that will be created.\n\ 143 + This file must have a .reg extension.\n\n\ 144 + /y\n\ 145 + Overwrite <file> without prompting for confirmation.\n\n" 146 + 147 + STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n" 42 148 STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?" 149 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 150 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 151 + 152 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 153 + Access the registry using the 32-bit view.\n\n\ 154 + /reg:64\n\ 155 + Access the registry using the 64-bit view.\n\n" 156 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 157 + 158 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 159 + Copies the contents of a specified registry key to another location.\n\ 160 + By default, this operation only copies registry values. Use [/s] to\n\ 161 + recursively copy all subkeys and values.\n\n\ 162 + <key1>, <key2>\n\ 163 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 164 + of the data. If <key2> does not exist, it is created.\n\n\ 165 + Format: ROOT\\Subkey\n\n\ 166 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 167 + HKEY_LOCAL_MACHINE | HKLM\n\ 168 + HKEY_CURRENT_USER | HKCU\n\ 169 + HKEY_CLASSES_ROOT | HKCR\n\ 170 + HKEY_USERS | HKU\n\ 171 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 172 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 173 + /s\n\ 174 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 175 + /f\n\ 176 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 177 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 178 + 179 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 180 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 43 181 }
+156 -18
base/applications/cmdutils/reg/lang/zh-CN.rc
··· 11 11 12 12 STRINGTABLE 13 13 { 14 - STRING_USAGE, "用法:\n REG [operation] [parameters]\n\n支持的操作:\n ADD | DELETE | IMPORT | EXPORT | QUERY | SAVE | RESTORE\n\n获取对特定操作的帮助,请输入:\n REG [操作] /?\n\n" 15 - STRING_ADD_USAGE, "REG ADD key_name [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n" 16 - STRING_DELETE_USAGE, "REG DELETE key_name [/v value_name | /ve | /va] [/f]\n" 17 - STRING_QUERY_USAGE, "REG QUERY key_name [/v value_name | /ve] [/s]\n" 14 + STRING_USAGE, "Usage:\n\ 15 + REG [operation] [parameters]\n\n\ 16 + Supported operations:\n\ 17 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 18 + For help on a specific operation, type:\n\ 19 + REG [operation] /?\n\n" 20 + 21 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 22 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 23 + <key>\n\ 24 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 25 + the key in which to add the new registry data.\n\n\ 26 + Format: ROOT\\Subkey\n\n\ 27 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 28 + HKEY_LOCAL_MACHINE | HKLM\n\ 29 + HKEY_CURRENT_USER | HKCU\n\ 30 + HKEY_CLASSES_ROOT | HKCR\n\ 31 + HKEY_USERS | HKU\n\ 32 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 33 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 34 + /v <value_name>\n\ 35 + The name of the registry value to add.\n\n\ 36 + /ve\n\ 37 + Add an unnamed registry value. This option modifies the (Default)\n\ 38 + registry value.\n\n\ 39 + /t <type>\n\ 40 + The type of data to add to the registry. If [/t] is specified,\n\ 41 + <type> must be one of the following:\n\n\ 42 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 43 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 44 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 45 + /s <separator>\n\ 46 + The character used to separate strings in REG_MULTI_SZ data.\n\ 47 + If [/s] is not specified, the default separator is \\0.\n\n\ 48 + /d <data>\n\ 49 + The data to add to the new registry value.\n\n\ 50 + /f\n\ 51 + Modify the registry without prompting for confirmation.\n\n" 52 + 53 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 54 + Deletes a registry key (including all subkeys and values), or deletes\n\ 55 + one or more values from a given registry key.\n\n\ 56 + <key>\n\ 57 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 58 + specified, the registry key in which to delete one or more values.\n\n\ 59 + Format: ROOT\\Subkey\n\n\ 60 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 61 + HKEY_LOCAL_MACHINE | HKLM\n\ 62 + HKEY_CURRENT_USER | HKCU\n\ 63 + HKEY_CLASSES_ROOT | HKCR\n\ 64 + HKEY_USERS | HKU\n\ 65 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 66 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 67 + /v <value_name>\n\ 68 + The name of the registry value to delete.\n\n\ 69 + /ve\n\ 70 + Delete an unnamed registry value. This option deletes the (Default)\n\ 71 + registry value.\n\n\ 72 + /va\n\ 73 + Delete all values from a registry key.\n\n\ 74 + /f\n\ 75 + Delete a registry key (including all subkeys and values) without\n\ 76 + prompting for confirmation.\n\n" 77 + 78 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 79 + Queries a specified registry key and lists all immediate subkeys, values\n\ 80 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 81 + <key>\n\ 82 + The registry key to query.\n\n\ 83 + Format: ROOT\\Subkey\n\n\ 84 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 85 + HKEY_LOCAL_MACHINE | HKLM\n\ 86 + HKEY_CURRENT_USER | HKCU\n\ 87 + HKEY_CLASSES_ROOT | HKCR\n\ 88 + HKEY_USERS | HKU\n\ 89 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 90 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 91 + /v <value_name>\n\ 92 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 93 + specified, all values under <key> are listed.\n\n\ 94 + /ve\n\ 95 + Query an unnamed registry value. This option queries the (Default)\n\ 96 + registry value.\n\n\ 97 + /s\n\ 98 + List all registry entries under <key> and its subkeys.\n\n" 99 + 18 100 STRING_SUCCESS, "操作成功完成\n" 19 - STRING_INVALID_KEY, "reg:无效键名\n" 20 - STRING_INVALID_CMDLINE, "reg:无效命令行参数\n" 21 - STRING_NO_REMOTE, "reg:无法访问远程机器\n" 22 - STRING_CANNOT_FIND, "reg:系统无法找到指定注册表键或值\n" 23 - STRING_UNSUPPORTED_TYPE, "reg:不受支持的注册表数据类型 [%1]\n" 24 - STRING_MISSING_INTEGER, "reg:选项 [/d] 后必须是有效的整数\n" 25 - STRING_MISSING_HEXDATA, "reg:选项 [/d] 后必须是有效的十六进制值\n" 26 - STRING_UNHANDLED_TYPE, "reg:无法处理的注册表数据类型 [/t 0x%1!x!, /d %2]\n" 27 - STRING_OVERWRITE_VALUE, "注册表值“%1”已经存在。您是否要覆盖它?" 28 - STRING_YESNO, " (Yes|No)" 101 + STRING_INVALID_KEY, "reg: 无效键名\n" 102 + STRING_INVALID_CMDLINE, "reg: 无效命令行参数\n" 103 + STRING_NO_REMOTE, "reg: 无法访问远程机器\n" 104 + STRING_VALUE_NONEXIST, "reg: 系统无法找到指定注册表键或值\n" 105 + STRING_UNSUPPORTED_TYPE, "reg: 不受支持的注册表数据类型 [%1]\n" 106 + STRING_MISSING_NUMBER, "reg: 选项 [/d] 后必须是有效的整数\n" 107 + STRING_MISSING_HEXDATA, "reg: 选项 [/d] 后必须是有效的十六进制值\n" 108 + STRING_UNHANDLED_TYPE, "reg: 无法处理的注册表数据类型 [/t 0x%1!x!, /d %2]\n" 109 + STRING_OVERWRITE_VALUE, "注册表值 '%1' 已经存在。您是否要覆盖它?" 29 110 STRING_YES, "Y" 30 111 STRING_NO, "N" 112 + STRING_ALL, "#msgctxt#All key#A" 113 + STRING_YESNO, " (Yes|No)" 114 + STRING_YESNOALL, " (Yes|No|All)" 31 115 STRING_CANCELLED, "注册表操作被取消。\n" 32 116 STRING_DEFAULT_VALUE, "(默认)" 33 117 STRING_DELETE_VALUE, "您确认要删除注册表值“%1”?" ··· 35 119 STRING_DELETE_SUBKEY, "您确认要删除注册表键“%1”?" 36 120 STRING_INVALID_STRING, "reg:选项 [/d] 后必须是有效的字符串\n" 37 121 STRING_VALUEALL_FAILED, "reg:无法删除“%1”下的所有注册表值。发生了无法预测的错误。\n" 38 - STRING_GENERAL_FAILURE, "reg:无法完成指定操作。发生了无法预测的错误。\n" 39 122 STRING_MATCHES_FOUND, "搜索完毕。发现匹配数目:%1!d!\n" 40 123 STRING_INVALID_SYNTAX, "reg:无效语法。 " 41 124 STRING_INVALID_OPTION, "reg:无效选项 [%1]。" 42 125 STRING_REG_HELP, "输入 “REG /?” 来查看帮助。\n" 43 126 STRING_FUNC_HELP, "输入 “REG %1 /?” 来查看帮助。\n" 44 127 STRING_VALUE_NOT_SET, "(值未设置)" 45 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 128 + 129 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 130 + Imports keys, values and data from a given file into the registry.\n\n\ 131 + <file>\n\ 132 + The name and path of the registry file to import.\n\n" 133 + 46 134 STRING_FILE_NOT_FOUND, "reg:无法找到文件“%1”。\n" 47 - STRING_OPEN_KEY_FAILED, "reg:无法打开注册表文件“%1”。\n" 48 135 STRING_ESCAPE_SEQUENCE, "reg:无法识别的转义字符 [\\%1!c!]\n" 49 - STRING_EXPORT_USAGE, "REG EXPORT key_name file.reg [/y]\n" 136 + 137 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 138 + Exports a specified registry key (including all subkeys and values)\n\ 139 + to a file.\n\n\ 140 + <key>\n\ 141 + The registry key to export.\n\n\ 142 + Format: ROOT\\Subkey\n\n\ 143 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 144 + HKEY_LOCAL_MACHINE | HKLM\n\ 145 + HKEY_CURRENT_USER | HKCU\n\ 146 + HKEY_CLASSES_ROOT | HKCR\n\ 147 + HKEY_USERS | HKU\n\ 148 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 149 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 150 + <file>\n\ 151 + The name and path of the registry file that will be created.\n\ 152 + This file must have a .reg extension.\n\n\ 153 + /y\n\ 154 + Overwrite <file> without prompting for confirmation.\n\n" 155 + 50 156 STRING_INVALID_SYSTEM_KEY, "reg:无效的系统键 [%1]\n" 51 157 STRING_OVERWRITE_FILE, "文件“%1”已经存在。您是否要覆盖它?" 158 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 159 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 160 + 161 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 162 + Access the registry using the 32-bit view.\n\n\ 163 + /reg:64\n\ 164 + Access the registry using the 64-bit view.\n\n" 165 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 166 + 167 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 168 + Copies the contents of a specified registry key to another location.\n\ 169 + By default, this operation only copies registry values. Use [/s] to\n\ 170 + recursively copy all subkeys and values.\n\n\ 171 + <key1>, <key2>\n\ 172 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 173 + of the data. If <key2> does not exist, it is created.\n\n\ 174 + Format: ROOT\\Subkey\n\n\ 175 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 176 + HKEY_LOCAL_MACHINE | HKLM\n\ 177 + HKEY_CURRENT_USER | HKCU\n\ 178 + HKEY_CLASSES_ROOT | HKCR\n\ 179 + HKEY_USERS | HKU\n\ 180 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 181 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 182 + /s\n\ 183 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 184 + /f\n\ 185 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 186 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 187 + 188 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 189 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 52 190 }
+150 -12
base/applications/cmdutils/reg/lang/zh-TW.rc
··· 11 11 12 12 STRINGTABLE 13 13 { 14 - STRING_USAGE, "Usage:\n REG [操作] [參數]\n\n支援的操作:\n ADD | DELETE | IMPORT | EXPORT | QUERY | SAVE | RESTORE\n\n要取得指定操作的說明,請輸入:\n REG [operation] /?\n\n" 15 - STRING_ADD_USAGE, "REG ADD 金鑰名稱 [/v 登錄值名稱 | /ve] [/t 類型] [/s 分隔符] [/d 資料] [/f]\n" 16 - STRING_DELETE_USAGE, "REG DELETE 金鑰名稱 [/v 登錄值名稱 | /ve | /va] [/f]\n" 17 - STRING_QUERY_USAGE, "REG QUERY 金鑰名稱 [/v 登錄值名稱 | /ve] [/s]\n" 14 + STRING_USAGE, "Usage:\n\ 15 + REG [operation] [parameters]\n\n\ 16 + Supported operations:\n\ 17 + ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\ 18 + For help on a specific operation, type:\n\ 19 + REG [operation] /?\n\n" 20 + 21 + STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\ 22 + Adds a key to the registry or adds a new value to a given registry key.\n\n\ 23 + <key>\n\ 24 + The registry key to add or, if either [/v] or [/ve] is specified,\n\ 25 + the key in which to add the new registry data.\n\n\ 26 + Format: ROOT\\Subkey\n\n\ 27 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 28 + HKEY_LOCAL_MACHINE | HKLM\n\ 29 + HKEY_CURRENT_USER | HKCU\n\ 30 + HKEY_CLASSES_ROOT | HKCR\n\ 31 + HKEY_USERS | HKU\n\ 32 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 33 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 34 + /v <value_name>\n\ 35 + The name of the registry value to add.\n\n\ 36 + /ve\n\ 37 + Add an unnamed registry value. This option modifies the (Default)\n\ 38 + registry value.\n\n\ 39 + /t <type>\n\ 40 + The type of data to add to the registry. If [/t] is specified,\n\ 41 + <type> must be one of the following:\n\n\ 42 + REG_SZ | REG_MULTI_SZ | REG_EXPAND_SZ\n\ 43 + REG_DWORD | REG_BINARY | REG_NONE\n\n\ 44 + If [/t] is not specified, the default data type is REG_SZ.\n\n\ 45 + /s <separator>\n\ 46 + The character used to separate strings in REG_MULTI_SZ data.\n\ 47 + If [/s] is not specified, the default separator is \\0.\n\n\ 48 + /d <data>\n\ 49 + The data to add to the new registry value.\n\n\ 50 + /f\n\ 51 + Modify the registry without prompting for confirmation.\n\n" 52 + 53 + STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\ 54 + Deletes a registry key (including all subkeys and values), or deletes\n\ 55 + one or more values from a given registry key.\n\n\ 56 + <key>\n\ 57 + The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\ 58 + specified, the registry key in which to delete one or more values.\n\n\ 59 + Format: ROOT\\Subkey\n\n\ 60 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 61 + HKEY_LOCAL_MACHINE | HKLM\n\ 62 + HKEY_CURRENT_USER | HKCU\n\ 63 + HKEY_CLASSES_ROOT | HKCR\n\ 64 + HKEY_USERS | HKU\n\ 65 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 66 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 67 + /v <value_name>\n\ 68 + The name of the registry value to delete.\n\n\ 69 + /ve\n\ 70 + Delete an unnamed registry value. This option deletes the (Default)\n\ 71 + registry value.\n\n\ 72 + /va\n\ 73 + Delete all values from a registry key.\n\n\ 74 + /f\n\ 75 + Delete a registry key (including all subkeys and values) without\n\ 76 + prompting for confirmation.\n\n" 77 + 78 + STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\ 79 + Queries a specified registry key and lists all immediate subkeys, values\n\ 80 + and data within that key. Use [/s] to recursively query each subkey.\n\n\ 81 + <key>\n\ 82 + The registry key to query.\n\n\ 83 + Format: ROOT\\Subkey\n\n\ 84 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 85 + HKEY_LOCAL_MACHINE | HKLM\n\ 86 + HKEY_CURRENT_USER | HKCU\n\ 87 + HKEY_CLASSES_ROOT | HKCR\n\ 88 + HKEY_USERS | HKU\n\ 89 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 90 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 91 + /v <value_name>\n\ 92 + The name of the registry value to query. If neither [/v] nor [/ve] is\n\ 93 + specified, all values under <key> are listed.\n\n\ 94 + /ve\n\ 95 + Query an unnamed registry value. This option queries the (Default)\n\ 96 + registry value.\n\n\ 97 + /s\n\ 98 + List all registry entries under <key> and its subkeys.\n\n" 99 + 18 100 STRING_SUCCESS, "操作成功完成\n" 19 101 STRING_INVALID_KEY, "reg: 無效的登錄機碼名稱\n" 20 102 STRING_INVALID_CMDLINE, "reg: 無效的命令列參數\n" 21 103 STRING_NO_REMOTE, "reg: 無法存取遠端機器\n" 22 - STRING_CANNOT_FIND, "reg: 系統找不到指定的登錄機碼或登錄值\n" 104 + STRING_VALUE_NONEXIST, "reg: 系統找不到指定的登錄機碼或登錄值\n" 23 105 STRING_UNSUPPORTED_TYPE, "reg: 不支援的類型\n" 24 - STRING_MISSING_INTEGER, "reg: 選項 [/d] 後必須接著一個有效的整數值\n" 106 + STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n" 25 107 STRING_MISSING_HEXDATA, "reg: 選項 [/d] 後必須接著一個有效的十六進制值\n" 26 108 STRING_UNHANDLED_TYPE, "reg: 未處理的登錄資料類型 [/t 0x%1!x!, /d %2]\n" 27 109 STRING_OVERWRITE_VALUE, "登錄值 '%1' 已經存在。您要覆寫它嗎?" 110 + STRING_YES, "#msgctxt#Yes key#Y" 111 + STRING_NO, "#msgctxt#No key#N" 112 + STRING_ALL, "#msgctxt#All key#A" 28 113 STRING_YESNO, " (Yes|No)" 29 - STRING_YES, "Y" 30 - STRING_NO, "N" 114 + STRING_YESNOALL, " (Yes|No|All)" 31 115 STRING_CANCELLED, "註冊表操作已經取消\n" 32 116 STRING_DEFAULT_VALUE, "(預設)" 33 117 STRING_DELETE_VALUE, "您確定要刪除登錄值 '%1' 嗎?" ··· 35 119 STRING_DELETE_SUBKEY, "您確定要刪除登錄機碼 '%1' 嗎?" 36 120 STRING_INVALID_STRING, "reg: 選項 [/d] 後必須接著一個有效的字串\n" 37 121 STRING_VALUEALL_FAILED, "reg: 無法刪除所有在 '%1' 下的登錄值。發生了未預期的錯誤。\n" 38 - STRING_GENERAL_FAILURE, "reg: 無法完成指定的操作。發生了未預期的錯誤。\n" 39 122 STRING_MATCHES_FOUND, "搜尋完成。相符項目的數目: %1!d!\n" 40 123 STRING_INVALID_SYNTAX, "reg: 無效的語法。 " 41 124 STRING_INVALID_OPTION, "reg: 無效的選項 [%1]。 " 42 125 STRING_REG_HELP, "輸入 'REG /?' 以取得說明。\n" 43 126 STRING_FUNC_HELP, "輸入 'REG %1 /?' 以取得說明。\n" 44 127 STRING_VALUE_NOT_SET, "(沒有設定值)" 45 - STRING_IMPORT_USAGE, "REG IMPORT file.reg\n" 128 + 129 + STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\ 130 + Imports keys, values and data from a given file into the registry.\n\n\ 131 + <file>\n\ 132 + The name and path of the registry file to import.\n\n" 133 + 46 134 STRING_FILE_NOT_FOUND, "reg: 無法找到檔案 '%1'。\n" 47 - STRING_OPEN_KEY_FAILED, "reg: 無法開啟登錄機碼 '%1'。\n" 48 135 STRING_ESCAPE_SEQUENCE, "reg: 無法辨識的逸出序列 [\\%1!c!]\n" 49 - STRING_EXPORT_USAGE, "REG EXPORT key_name file.reg [/y]\n" 136 + 137 + STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\ 138 + Exports a specified registry key (including all subkeys and values)\n\ 139 + to a file.\n\n\ 140 + <key>\n\ 141 + The registry key to export.\n\n\ 142 + Format: ROOT\\Subkey\n\n\ 143 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 144 + HKEY_LOCAL_MACHINE | HKLM\n\ 145 + HKEY_CURRENT_USER | HKCU\n\ 146 + HKEY_CLASSES_ROOT | HKCR\n\ 147 + HKEY_USERS | HKU\n\ 148 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 149 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 150 + <file>\n\ 151 + The name and path of the registry file that will be created.\n\ 152 + This file must have a .reg extension.\n\n\ 153 + /y\n\ 154 + Overwrite <file> without prompting for confirmation.\n\n" 155 + 50 156 STRING_INVALID_SYSTEM_KEY, "reg: 無效的系統金鑰 [%1]\n" 51 157 STRING_OVERWRITE_FILE, "檔案 '%1' 已經存在。您要覆寫它嗎?" 158 + STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n" 159 + STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n" 160 + 161 + STRING_REG_VIEW_USAGE, " /reg:32\n\ 162 + Access the registry using the 32-bit view.\n\n\ 163 + /reg:64\n\ 164 + Access the registry using the 64-bit view.\n\n" 165 + STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n" 166 + 167 + STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\ 168 + Copies the contents of a specified registry key to another location.\n\ 169 + By default, this operation only copies registry values. Use [/s] to\n\ 170 + recursively copy all subkeys and values.\n\n\ 171 + <key1>, <key2>\n\ 172 + Registry keys specifying the source (<key1>) and destination (<key2>)\n\ 173 + of the data. If <key2> does not exist, it is created.\n\n\ 174 + Format: ROOT\\Subkey\n\n\ 175 + ROOT: A predefined registry key. This must be one of the following:\n\n\ 176 + HKEY_LOCAL_MACHINE | HKLM\n\ 177 + HKEY_CURRENT_USER | HKCU\n\ 178 + HKEY_CLASSES_ROOT | HKCR\n\ 179 + HKEY_USERS | HKU\n\ 180 + HKEY_CURRENT_CONFIG | HKCC\n\n\ 181 + Subkey: The full path to a registry key under a given ROOT key.\n\n\ 182 + /s\n\ 183 + Copy all subkeys and values from <key1> to <key2>.\n\n\ 184 + /f\n\ 185 + Overwrite all registry data in <key2> without prompting for confirmation.\n\ 186 + This option does not modify subkeys and values that only exist in <key2>.\n\n" 187 + 188 + STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n" 189 + STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?" 52 190 }
+3 -3
base/applications/cmdutils/reg/query.c
··· 60 60 ptr = buffer; 61 61 62 62 for (i = 0; i < size_bytes; i++) 63 - ptr += swprintf(ptr, 3, L"%02X", src[i]); 63 + ptr += swprintf(ptr, L"%02X", src[i]); 64 64 break; 65 65 } 66 66 case REG_DWORD: ··· 70 70 const int zero_x_dword = 10; 71 71 72 72 buffer = malloc((zero_x_dword + 1) * sizeof(WCHAR)); 73 - swprintf(buffer, zero_x_dword + 1, L"0x%x", *(DWORD *)src); 73 + swprintf(buffer, L"0x%x", *(DWORD *)src); 74 74 break; 75 75 } 76 76 case REG_MULTI_SZ: ··· 403 403 404 404 invalid: 405 405 output_message(STRING_INVALID_SYNTAX); 406 - output_message(STRING_FUNC_HELP, wcsupr(argvW[1])); 406 + output_message(STRING_FUNC_HELP, _wcsupr(argvW[1])); 407 407 return 1; 408 408 }
+3 -2
base/applications/cmdutils/reg/reg.c
··· 17 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 18 18 */ 19 19 20 + #include <stdio.h> 20 21 #include "reg.h" 21 22 #include <wine/debug.h> 22 23 ··· 79 80 80 81 len = FormatMessageW(FORMAT_MESSAGE_FROM_STRING|FORMAT_MESSAGE_ALLOCATE_BUFFER, 81 82 fmt, 0, 0, (WCHAR *)&str, 0, &va_args); 82 - if (len == 0 && GetLastError() != ERROR_NO_WORK_DONE) 83 + if (len == 0 && GetLastError() != NO_ERROR) 83 84 { 84 85 WINE_FIXME("Could not format string: le=%u, fmt=%s\n", GetLastError(), wine_dbgstr_w(fmt)); 85 86 return; ··· 376 377 377 378 invalid: 378 379 output_message(STRING_INVALID_SYNTAX); 379 - output_message(STRING_FUNC_HELP, wcsupr(argvW[1])); 380 + output_message(STRING_FUNC_HELP, _wcsupr(argvW[1])); 380 381 return 1; 381 382 }
+1 -1
media/doc/WINESYNC.txt
··· 231 231 ReactOS shares the following programs with Winehq. 232 232 233 233 base/applications/cmdutils/cscript # Synced to WineStaging-4.18 234 - base/applications/cmdutils/reg # Synced to WineStaging-4.18 234 + base/applications/cmdutils/reg # Synced to WineStaging-6.23 235 235 base/applications/cmdutils/schtasks # Synced to WineStaging-3.3 236 236 base/applications/cmdutils/taskkill # Synced to WineStaging-3.17 237 237 base/applications/cmdutils/wmic # Synced to WineStaging-4.0
+1 -1
modules/rostests/winetests/reg/CMakeLists.txt
··· 1 1 2 - add_executable(reg_winetest reg.c testlist.c) 2 + add_executable(reg_winetest add.c copy.c delete.c export.c import.c query.c testlist.c) 3 3 set_module_type(reg_winetest win32cui) 4 4 add_importlibs(reg_winetest advapi32 msvcrt kernel32) 5 5 add_rostests_file(TARGET reg_winetest)
+5
modules/rostests/winetests/reg/add.c
··· 863 863 delete_key(HKEY_CURRENT_USER, KEY_BASE, 0); 864 864 } 865 865 866 + #if 0 866 867 static void test_registry_view_win32(void) 867 868 { 868 869 HKEY hkey; ··· 969 970 970 971 verify_key_nonexist(HKEY_LOCAL_MACHINE, KEY_BASE, KEY_WOW64_32KEY); 971 972 } 973 + #endif 972 974 973 975 START_TEST(add) 974 976 { ··· 998 1000 return; 999 1001 } 1000 1002 1003 + #if 0 1001 1004 test_registry_view_win32(); 1002 1005 test_registry_view_win64(); 1003 1006 test_registry_view_wow64(); 1007 + #endif 1008 + 1004 1009 }
+5
modules/rostests/winetests/reg/copy.c
··· 588 588 delete_key(HKEY_CURRENT_USER, KEY_BASE, 0); 589 589 } 590 590 591 + #if 0 591 592 static void create_test_key(REGSAM sam) 592 593 { 593 594 HKEY hkey, subkey; ··· 747 748 delete_tree(HKEY_LOCAL_MACHINE, COPY_SRC, KEY_WOW64_64KEY); 748 749 delete_tree(HKEY_LOCAL_MACHINE, KEY_BASE, KEY_WOW64_64KEY); 749 750 } 751 + #endif 750 752 751 753 START_TEST(copy) 752 754 { ··· 778 780 return; 779 781 } 780 782 783 + #if 0 781 784 test_registry_view_win32(); 782 785 test_registry_view_win64(); 783 786 test_registry_view_wow64(); 787 + #endif 788 + 784 789 }
+5
modules/rostests/winetests/reg/delete.c
··· 149 149 ok(r == REG_EXIT_FAILURE, "got exit code %d, expected 1\n", r); 150 150 } 151 151 152 + #if 0 152 153 static void create_test_key(REGSAM sam) 153 154 { 154 155 HKEY hkey, subkey; ··· 394 395 ok(r == REG_EXIT_SUCCESS, "got exit code %d, expected 0\n", r); 395 396 verify_key_nonexist(HKEY_LOCAL_MACHINE, KEY_BASE, KEY_WOW64_64KEY); 396 397 } 398 + #endif 397 399 398 400 START_TEST(delete) 399 401 { ··· 415 417 return; 416 418 } 417 419 420 + #if 0 418 421 test_registry_view_win32(); 419 422 test_registry_view_win64(); 420 423 test_registry_view_wow64(); 424 + #endif 425 + 421 426 }
+5
modules/rostests/winetests/reg/export.c
··· 455 455 delete_tree(HKEY_CURRENT_USER, KEY_BASE, 0); 456 456 } 457 457 458 + #if 0 458 459 static void create_test_key(REGSAM sam) 459 460 { 460 461 HKEY hkey, subkey; ··· 589 590 590 591 delete_tree(HKEY_LOCAL_MACHINE, KEY_BASE, KEY_WOW64_64KEY); 591 592 } 593 + #endif 592 594 593 595 START_TEST(export) 594 596 { ··· 610 612 return; 611 613 } 612 614 615 + #if 0 613 616 test_registry_view_win32(); 614 617 test_registry_view_win64(); 615 618 test_registry_view_wow64(); 619 + #endif 620 + 616 621 }
+5
modules/rostests/winetests/reg/import.c
··· 3623 3623 delete_key(HKEY_CLASSES_ROOT, KEY_BASE, 0); 3624 3624 } 3625 3625 3626 + #if 0 3626 3627 static BOOL write_test_files(void) 3627 3628 { 3628 3629 const char *test1, *test2; ··· 3848 3849 delete_file("reg4.reg"); 3849 3850 delete_file("reg5.reg"); 3850 3851 } 3852 + #endif 3851 3853 3852 3854 START_TEST(import) 3853 3855 { ··· 3873 3875 return; 3874 3876 } 3875 3877 3878 + #if 0 3876 3879 test_registry_view_win32(); 3877 3880 test_registry_view_win64(); 3878 3881 test_registry_view_wow64(); 3882 + #endif 3883 + 3879 3884 }
+5
modules/rostests/winetests/reg/query.c
··· 305 305 delete_tree(HKEY_CURRENT_USER, KEY_BASE, 0); 306 306 } 307 307 308 + #if 0 308 309 static const char *test9a = "\r\n" 309 310 "HKEY_LOCAL_MACHINE\\" KEY_BASE "\r\n" 310 311 " Test1 REG_SZ Hello, World\r\n" ··· 493 494 494 495 delete_tree(HKEY_LOCAL_MACHINE, KEY_BASE, KEY_WOW64_64KEY); 495 496 } 497 + #endif 496 498 497 499 START_TEST(query) 498 500 { ··· 514 516 return; 515 517 } 516 518 519 + #if 0 517 520 test_registry_view_win32(); 518 521 test_registry_view_win64(); 519 522 test_registry_view_wow64(); 523 + #endif 524 + 520 525 }
+12 -2
modules/rostests/winetests/reg/testlist.c
··· 3 3 #define STANDALONE 4 4 #include <wine/test.h> 5 5 6 - extern void func_reg(void); 6 + extern void func_add(void); 7 + extern void func_copy(void); 8 + extern void func_delete(void); 9 + extern void func_export(void); 10 + extern void func_import(void); 11 + extern void func_query(void); 7 12 8 13 const struct test winetest_testlist[] = 9 14 { 10 - { "reg", func_reg }, 15 + { "add", func_add }, 16 + { "copy", func_copy }, 17 + { "delete", func_delete }, 18 + { "export", func_export }, 19 + { "import", func_import }, 20 + { "query", func_query }, 11 21 { 0, 0 } 12 22 };
+1 -1
sdk/tools/winesync/reg.cfg
··· 4 4 files: 5 5 programs/reg/resource.h: base/applications/cmdutils/reg/resource.h 6 6 tags: 7 - wine: 942f9f71575d4a53ae032360e03f1297be1319f7 7 + wine: wine-6.23