1/*
2 * Translators: Claudia Cotună
3 *              Michael Stefaniuc
4 *              Ștefan Fulea (stefan dot fulea at mail dot com)
5 */
6
7LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
8
9STRINGTABLE
10{
11    STRING_USAGE, "Usage:\n\
12  REG [operation] [parameters]\n\n\
13Supported operations:\n\
14  ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\
15For 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
97    STRING_SUCCESS, "Operația a fost îndeplinită cu succes\n"
98    STRING_INVALID_KEY, "Eroare: Nume de cheie nevalid\n"
99    STRING_INVALID_CMDLINE, "Eroare: Parametri nevalizi pentru linia de comandă\n"
100    STRING_NO_REMOTE, "Eroare: Nu pot fi adăugate chei într-un calculator la distanță\n"
101    STRING_VALUE_NONEXIST, "Eroare: Sistemul nu a putut găsi cheia sau valoarea de registru specificată\n"
102    STRING_UNSUPPORTED_TYPE, "Eroare: Tip nerecunoscut\n"
103    STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n"
104    STRING_MISSING_HEXDATA, "reg: Opțiunea [/d] trebuie să fie urmată de o valoare hexezecimală\n"
105    STRING_UNHANDLED_TYPE, "reg: Tip de dată nerecunoscut [/t 0x%1!x!, /d %2]\n"
106    STRING_OVERWRITE_VALUE, "Valoarea de registru «%1» deja există. Doriți s-o suprascrieți?"
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)"
112    STRING_CANCELLED, "Operația de registru a fost anulată\n"
113    STRING_DEFAULT_VALUE, "(Implicită)"
114    STRING_DELETE_VALUE, "Sigur doriți ștergerea valorii de registru «%1»?"
115    STRING_DELETE_VALUEALL, "Sigur doriți ștergerea tuturor valorilor de registru din «%1»?"
116    STRING_DELETE_SUBKEY, "Sigur doriți ștergerea cheii de registru «%1»?"
117    STRING_INVALID_STRING, "reg: Opțiunea [/d] trebuie urmată de un șir valid\n"
118    STRING_VALUEALL_FAILED, "reg: Nu au putut fi șterse toate valorile de registru din «%1». A survenit o eroare neașteptată.\n"
119    STRING_MATCHES_FOUND, "Căutare efectuată. Numărul de potriviri găsite: %1!d!\n"
120    STRING_INVALID_SYNTAX, "reg: Sintaxă nerespectată. "
121    STRING_INVALID_OPTION, "reg: Opțiune nevalidă [%1]. "
122    STRING_REG_HELP, "Tastați «REG /?» pentru mai multe informații.\n"
123    STRING_FUNC_HELP, "Tastați «REG %1 /?» pentru mai multe informații.\n"
124    STRING_VALUE_NOT_SET, "(valoare nealocată)"
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
131    STRING_FILE_NOT_FOUND, "reg: Fișierul «%1» nu a putut fi găsit.\n"
132    STRING_ESCAPE_SEQUENCE, "reg: Secvența de sustracție [\\%1!c!] nu este recunoscută.\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
153    STRING_INVALID_SYSTEM_KEY, "reg: Cheia de sistem [%1] nu este una validă.\n"
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?"
187}
188