1/* FILE:       base/applications/cmdutils/reg/lang/cs-CZ.rc
2 * TRANSLATOR: Radek Liska aka Black_Fox (radekliska at gmail dot com)
3 * UPDATED:    2013-05-01
4 */
5
6LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
7
8STRINGTABLE
9{
10    STRING_USAGE, "Usage:\n\
11  REG [operation] [parameters]\n\n\
12Supported operations:\n\
13  ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\
14For 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    STRING_SUCCESS, "Operace byla úspěšně dokončena\n"
96    STRING_INVALID_KEY, "Chyba: Neplatný název klíče\n"
97    STRING_INVALID_CMDLINE, "Chyba: Neplatné parametry příkazové řádky\n"
98    STRING_NO_REMOTE, "Chyba: Nelze přidat klíče na vzdálený stroj\n"
99    STRING_VALUE_NONEXIST, "Chyba: Systém nenalezl zadaný klíč nebo hodnotu registru\n"
100    STRING_UNSUPPORTED_TYPE, "Error: Unsupported type\n"
101    STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n"
102    STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n"
103    STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n"
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"
108    STRING_YESNO, " (Yes|No)"
109    STRING_YESNOALL, " (Yes|No|All)"
110    STRING_CANCELLED, "reg: The registry operation was cancelled\n"
111    STRING_DEFAULT_VALUE, "(Default)"
112    STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?"
113    STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?"
114    STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?"
115    STRING_INVALID_STRING, "reg: The option [/d] must be followed by a valid string\n"
116    STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n"
117    STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n"
118    STRING_INVALID_SYNTAX, "reg: Invalid syntax. "
119    STRING_INVALID_OPTION, "reg: Invalid option [%1]. "
120    STRING_REG_HELP, "Type ""REG /?"" for help.\n"
121    STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n"
122    STRING_VALUE_NOT_SET, "(value not set)"
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
129    STRING_FILE_NOT_FOUND, "reg: The file '%1' was not found.\n"
130    STRING_ESCAPE_SEQUENCE, "reg: Unrecognized escape sequence [\\%1!c!]\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"
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?"
185}
186