1/* TRANSLATOR : Ardit Dani (Ard1t) (ardit.dani@gmail.com)
2 * DATE OF TR:  29-11-2013
3*/
4
5LANGUAGE LANG_ALBANIAN, SUBLANG_NEUTRAL
6
7STRINGTABLE
8{
9    STRING_USAGE, "Usage:\n\
10  REG [operation] [parameters]\n\n\
11Supported operations:\n\
12  ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\
13For 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
95    STRING_SUCCESS, "Operacioni përfundoi me sukses\n"
96    STRING_INVALID_KEY, "Error: Çelsi i pavlerfshem i emrit\n"
97    STRING_INVALID_CMDLINE, "Error: Parametrat e pavlefshme ne vijën komanduse\n"
98    STRING_NO_REMOTE, "Error: Në pamundësi për të shtuar çelësat në makinë në distancë\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"
100    STRING_UNSUPPORTED_TYPE, "reg: Unsupported registry data type [%1]\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, "Y"
106    STRING_NO, "N"
107    STRING_ALL, "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