1/* TRANSLATOR: 2015, 2016 Erdem Ersoy (eersoy93) (erdemersoy [at] erdemersoy [dot] net) */
2
3LANGUAGE LANG_TURKISH, SUBLANG_NEUTRAL
4
5STRINGTABLE
6{
7    STRING_USAGE, "Usage:\n\
8  REG [operation] [parameters]\n\n\
9Supported operations:\n\
10  ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\
11For 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
93    STRING_SUCCESS, "İşlem başarıyla bitirildi\n"
94    STRING_INVALID_KEY, "reg: Geçersiz anahtar adı\n"
95    STRING_INVALID_CMDLINE, "reg: Geçersiz komut satırı değişkenleri\n"
96    STRING_NO_REMOTE, "reg: Uzak makineye erişilemiyor\n"
97    STRING_VALUE_NONEXIST, "reg: Sistem belirtilen kayıt defteri anahtarını ya da değerini bulamadı\n"
98    STRING_UNSUPPORTED_TYPE, "reg: Desteklenmeyen tür\n"
99    STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n"
100    STRING_MISSING_HEXDATA, "reg: [/d] seçeneği geçerli bir onaltılık değerle izlenmelidir\n"
101    STRING_UNHANDLED_TYPE, "reg: İşlenemeyen kayıt defteri veri türü [/t 0x%1!x!, /d %2]\n"
102    STRING_OVERWRITE_VALUE, """%1"" kayıt defteri değeri önceden var. Üzerine yazmak ister misiniz?"
103
104    STRING_YES, "Y"
105    STRING_NO, "N"
106    STRING_ALL, "A"
107    STRING_YESNO, " (Evet|Hayır)"
108    STRING_YESNOALL, " (Yes|No|All)"
109    STRING_CANCELLED, "Kayıt defteri işlemi iptal edildi\n"
110    STRING_DEFAULT_VALUE, "(Varsayılan)"
111    STRING_DELETE_VALUE, """%1"" kayıt defteri değerini silmek istediğinize emin misiniz?"
112    STRING_DELETE_VALUEALL, "Tüm ""%1"" kayıt defteri değerlerini silmek istediğinize emin misiniz?"
113    STRING_DELETE_SUBKEY, """%1"" kayıt defteri anahtarını silmek istediğinize emin misiniz?"
114    STRING_INVALID_STRING, "reg: [/d] seçeneği geçerli bir karakter dizisiyle izlenmelidir.\n"
115    STRING_VALUEALL_FAILED, "reg: ""%1"" içindeki tüm kayıt defteri değerleri silinemiyor. Beklenmeyen bir hata yaşandı.\n"
116    STRING_MATCHES_FOUND, "Arama bitti. %1!d! eşleşme bulundu.\n"
117    STRING_INVALID_SYNTAX, "reg: Geçersiz söz dizimi. "
118    STRING_INVALID_OPTION, "reg: Geçersiz seçenek [%1]. "
119    STRING_REG_HELP, "Yardım için ""REG /?"" yazınız.\n"
120    STRING_FUNC_HELP, "Yardım için ""REG %1 /?"" yazınız.\n"
121    STRING_VALUE_NOT_SET, "(Değer belirlenmemiş.)"
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
128    STRING_FILE_NOT_FOUND, "reg: '%1' dosyası bulunamadı.\n"
129    STRING_ESCAPE_SEQUENCE, "reg: Tanımlanamayan kaçış dizisi [\\%1!c!]\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
150    STRING_INVALID_SYSTEM_KEY, "reg: Geçersiz sistem tuşu [%1]\n"
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?"
184}
185