transalation ThirdPartyURLs
[novacoin.git] / src / qt / forms / optionsdialog.ui
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3  <class>OptionsDialog</class>
4  <widget class="QDialog" name="OptionsDialog">
5   <property name="geometry">
6    <rect>
7     <x>0</x>
8     <y>0</y>
9     <width>540</width>
10     <height>380</height>
11    </rect>
12   </property>
13   <property name="windowTitle">
14    <string>Options</string>
15   </property>
16   <property name="modal">
17    <bool>true</bool>
18   </property>
19   <layout class="QVBoxLayout" name="verticalLayout">
20    <item>
21     <widget class="QTabWidget" name="tabWidget">
22      <property name="tabPosition">
23       <enum>QTabWidget::North</enum>
24      </property>
25      <property name="currentIndex">
26       <number>0</number>
27      </property>
28      <widget class="QWidget" name="tabMain">
29       <attribute name="title">
30        <string>&amp;Main</string>
31       </attribute>
32       <layout class="QVBoxLayout" name="verticalLayout_Main">
33        <item>
34         <widget class="QLabel" name="transactionFeeInfoLabel">
35          <property name="text">
36           <string>Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended.</string>
37          </property>
38          <property name="textFormat">
39           <enum>Qt::PlainText</enum>
40          </property>
41          <property name="wordWrap">
42           <bool>true</bool>
43          </property>
44         </widget>
45        </item>
46        <item>
47         <layout class="QHBoxLayout" name="horizontalLayout_Main">
48          <item>
49           <widget class="QLabel" name="transactionFeeLabel">
50            <property name="text">
51             <string>Pay transaction &amp;fee</string>
52            </property>
53            <property name="textFormat">
54             <enum>Qt::PlainText</enum>
55            </property>
56            <property name="buddy">
57             <cstring>transactionFee</cstring>
58            </property>
59           </widget>
60          </item>
61          <item>
62           <widget class="BitcoinAmountField" name="transactionFee"/>
63          </item>
64          <item>
65           <spacer name="horizontalSpacer_Main">
66            <property name="orientation">
67             <enum>Qt::Horizontal</enum>
68            </property>
69            <property name="sizeHint" stdset="0">
70             <size>
71              <width>40</width>
72              <height>20</height>
73             </size>
74            </property>
75           </spacer>
76          </item>
77         </layout>
78        </item>
79        <item>
80         <widget class="QCheckBox" name="bitcoinAtStartup">
81          <property name="toolTip">
82           <string>Automatically start NovaCoin after logging in to the system.</string>
83          </property>
84          <property name="text">
85           <string>&amp;Start NovaCoin on system login</string>
86          </property>
87         </widget>
88        </item>
89        <item>
90         <widget class="QCheckBox" name="detachDatabases">
91          <property name="toolTip">
92           <string>Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached.</string>
93          </property>
94          <property name="text">
95           <string>&amp;Detach databases at shutdown</string>
96          </property>
97         </widget>
98        </item>
99        <item>
100         <spacer name="verticalSpacer_Main">
101          <property name="orientation">
102           <enum>Qt::Vertical</enum>
103          </property>
104          <property name="sizeHint" stdset="0">
105           <size>
106            <width>20</width>
107            <height>40</height>
108           </size>
109          </property>
110         </spacer>
111        </item>
112       </layout>
113      </widget>
114      <widget class="QWidget" name="tabNetwork">
115       <attribute name="title">
116        <string>&amp;Network</string>
117       </attribute>
118       <layout class="QVBoxLayout" name="verticalLayout_Network">
119        <item>
120         <widget class="QCheckBox" name="mapPortUpnp">
121          <property name="toolTip">
122           <string>Automatically open the NovaCoin client port on the router. This only works when your router supports UPnP and it is enabled.</string>
123          </property>
124          <property name="text">
125           <string>Map port using &amp;UPnP</string>
126          </property>
127         </widget>
128        </item>
129        <item>
130         <widget class="QCheckBox" name="connectSocks">
131          <property name="toolTip">
132           <string>Connect to the NovaCoin network through a SOCKS proxy (e.g. when connecting through Tor).</string>
133          </property>
134          <property name="text">
135           <string>&amp;Connect through SOCKS proxy:</string>
136          </property>
137         </widget>
138        </item>
139        <item>
140         <layout class="QHBoxLayout" name="horizontalLayout_Network">
141          <item>
142           <widget class="QLabel" name="proxyIpLabel">
143            <property name="text">
144             <string>Proxy &amp;IP:</string>
145            </property>
146            <property name="textFormat">
147             <enum>Qt::PlainText</enum>
148            </property>
149            <property name="buddy">
150             <cstring>proxyIp</cstring>
151            </property>
152           </widget>
153          </item>
154          <item>
155           <widget class="QValidatedLineEdit" name="proxyIp">
156            <property name="maximumSize">
157             <size>
158              <width>140</width>
159              <height>16777215</height>
160             </size>
161            </property>
162            <property name="toolTip">
163             <string>IP address of the proxy (e.g. 127.0.0.1)</string>
164            </property>
165           </widget>
166          </item>
167          <item>
168           <widget class="QLabel" name="proxyPortLabel">
169            <property name="text">
170             <string>&amp;Port:</string>
171            </property>
172            <property name="textFormat">
173             <enum>Qt::PlainText</enum>
174            </property>
175            <property name="buddy">
176             <cstring>proxyPort</cstring>
177            </property>
178           </widget>
179          </item>
180          <item>
181           <widget class="QLineEdit" name="proxyPort">
182            <property name="maximumSize">
183             <size>
184              <width>55</width>
185              <height>16777215</height>
186             </size>
187            </property>
188            <property name="toolTip">
189             <string>Port of the proxy (e.g. 9050)</string>
190            </property>
191           </widget>
192          </item>
193          <item>
194           <widget class="QLabel" name="socksVersionLabel">
195            <property name="text">
196             <string>SOCKS &amp;Version:</string>
197            </property>
198            <property name="textFormat">
199             <enum>Qt::PlainText</enum>
200            </property>
201            <property name="buddy">
202             <cstring>socksVersion</cstring>
203            </property>
204           </widget>
205          </item>
206          <item>
207           <widget class="QValueComboBox" name="socksVersion">
208            <property name="toolTip">
209             <string>SOCKS version of the proxy (e.g. 5)</string>
210            </property>
211           </widget>
212          </item>
213          <item>
214           <spacer name="horizontalSpacer_Network">
215            <property name="orientation">
216             <enum>Qt::Horizontal</enum>
217            </property>
218            <property name="sizeHint" stdset="0">
219             <size>
220              <width>40</width>
221              <height>20</height>
222             </size>
223            </property>
224           </spacer>
225          </item>
226         </layout>
227        </item>
228        <item>
229         <spacer name="verticalSpacer_Network">
230          <property name="orientation">
231           <enum>Qt::Vertical</enum>
232          </property>
233          <property name="sizeHint" stdset="0">
234           <size>
235            <width>20</width>
236            <height>40</height>
237           </size>
238          </property>
239         </spacer>
240        </item>
241       </layout>
242      </widget>
243      <widget class="QWidget" name="tabWindow">
244       <attribute name="title">
245        <string>&amp;Window</string>
246       </attribute>
247       <layout class="QVBoxLayout" name="verticalLayout_Window">
248        <item>
249         <widget class="QCheckBox" name="minimizeToTray">
250          <property name="toolTip">
251           <string>Show only a tray icon after minimizing the window.</string>
252          </property>
253          <property name="text">
254           <string>&amp;Minimize to the tray instead of the taskbar</string>
255          </property>
256         </widget>
257        </item>
258        <item>
259         <widget class="QCheckBox" name="minimizeOnClose">
260          <property name="toolTip">
261           <string>Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu.</string>
262          </property>
263          <property name="text">
264           <string>M&amp;inimize on close</string>
265          </property>
266         </widget>
267        </item>
268        <item>
269         <spacer name="verticalSpacer_Window">
270          <property name="orientation">
271           <enum>Qt::Vertical</enum>
272          </property>
273          <property name="sizeHint" stdset="0">
274           <size>
275            <width>20</width>
276            <height>40</height>
277           </size>
278          </property>
279         </spacer>
280        </item>
281       </layout>
282      </widget>
283      <widget class="QWidget" name="tabDisplay">
284       <attribute name="title">
285        <string>&amp;Display</string>
286       </attribute>
287       <layout class="QVBoxLayout" name="verticalLayout_Display">
288        <item>
289         <layout class="QHBoxLayout" name="horizontalLayout_1_Display">
290          <item>
291           <widget class="QLabel" name="langLabel">
292            <property name="text">
293             <string>User Interface &amp;language:</string>
294            </property>
295            <property name="textFormat">
296             <enum>Qt::PlainText</enum>
297            </property>
298            <property name="buddy">
299             <cstring>lang</cstring>
300            </property>
301           </widget>
302          </item>
303          <item>
304           <widget class="QValueComboBox" name="lang">
305            <property name="toolTip">
306             <string>The user interface language can be set here. This setting will take effect after restarting NovaCoin.</string>
307            </property>
308           </widget>
309          </item>
310         </layout>
311        </item>
312        <item>
313         <layout class="QHBoxLayout" name="horizontalLayout_2_Display">
314          <item>
315           <widget class="QLabel" name="unitLabel">
316            <property name="text">
317             <string>&amp;Unit to show amounts in:</string>
318            </property>
319            <property name="textFormat">
320             <enum>Qt::PlainText</enum>
321            </property>
322            <property name="buddy">
323             <cstring>unit</cstring>
324            </property>
325           </widget>
326          </item>
327          <item>
328           <widget class="QValueComboBox" name="unit">
329            <property name="toolTip">
330             <string>Choose the default subdivision unit to show in the interface and when sending coins.</string>
331            </property>
332           </widget>
333          </item>
334         </layout>
335        </item>
336        <item>
337         <widget class="QCheckBox" name="displayAddresses">
338          <property name="toolTip">
339           <string>Whether to show NovaCoin addresses in the transaction list or not.</string>
340          </property>
341          <property name="text">
342           <string>&amp;Display addresses in transaction list</string>
343          </property>
344         </widget>
345        </item>
346        <item>
347         <widget class="QCheckBox" name="coinControlFeatures">
348          <property name="toolTip">
349           <string>Whether to show coin control features or not.</string>
350          </property>
351          <property name="text">
352           <string>Display coin &amp;control features (experts only!)</string>
353          </property>
354         </widget>
355        </item>
356        <item>
357         <layout class="QHBoxLayout" name="horizontalLayout_3_Display">
358          <item>
359           <widget class="QLabel" name="thirdPartyTxUrlsLabel">
360            <property name="toolTip">
361             <string>Third party URLs (e.g. explorer.novaco.in) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |.</string>
362            </property>
363            <property name="text">
364             <string>Third party transaction URLs</string>
365            </property>
366            <property name="buddy">
367             <cstring>thirdPartyTxUrls</cstring>
368            </property>
369           </widget>
370          </item>
371          <item>
372           <widget class="QLineEdit" name="thirdPartyTxUrls">
373            <property name="toolTip">
374             <string>Third party URLs (e.g. explorer.novaco.in) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |.</string>
375            </property>
376           </widget>
377          </item>
378         </layout>
379        </item>
380        <item>
381         <spacer name="verticalSpacer_Display">
382          <property name="orientation">
383           <enum>Qt::Vertical</enum>
384          </property>
385          <property name="sizeHint" stdset="0">
386           <size>
387            <width>20</width>
388            <height>40</height>
389           </size>
390          </property>
391         </spacer>
392        </item>
393       </layout>
394      </widget>
395     </widget>
396    </item>
397    <item>
398     <layout class="QHBoxLayout" name="horizontalLayout_Buttons">
399      <item>
400       <spacer name="horizontalSpacer_1">
401        <property name="orientation">
402         <enum>Qt::Horizontal</enum>
403        </property>
404        <property name="sizeHint" stdset="0">
405         <size>
406          <width>40</width>
407          <height>48</height>
408         </size>
409        </property>
410       </spacer>
411      </item>
412      <item>
413       <widget class="QLabel" name="statusLabel">
414        <property name="font">
415         <font>
416          <weight>75</weight>
417          <bold>true</bold>
418         </font>
419        </property>
420        <property name="text">
421         <string/>
422        </property>
423        <property name="textFormat">
424         <enum>Qt::PlainText</enum>
425        </property>
426        <property name="wordWrap">
427         <bool>true</bool>
428        </property>
429       </widget>
430      </item>
431      <item>
432       <spacer name="horizontalSpacer_2">
433        <property name="orientation">
434         <enum>Qt::Horizontal</enum>
435        </property>
436        <property name="sizeHint" stdset="0">
437         <size>
438          <width>40</width>
439          <height>48</height>
440         </size>
441        </property>
442       </spacer>
443      </item>
444      <item>
445       <widget class="QPushButton" name="okButton">
446        <property name="text">
447         <string>&amp;OK</string>
448        </property>
449       </widget>
450      </item>
451      <item>
452       <widget class="QPushButton" name="cancelButton">
453        <property name="text">
454         <string>&amp;Cancel</string>
455        </property>
456        <property name="autoDefault">
457         <bool>false</bool>
458        </property>
459       </widget>
460      </item>
461      <item>
462       <widget class="QPushButton" name="applyButton">
463        <property name="text">
464         <string>&amp;Apply</string>
465        </property>
466        <property name="autoDefault">
467         <bool>false</bool>
468        </property>
469       </widget>
470      </item>
471     </layout>
472    </item>
473   </layout>
474  </widget>
475  <customwidgets>
476   <customwidget>
477    <class>BitcoinAmountField</class>
478    <extends>QSpinBox</extends>
479    <header>bitcoinamountfield.h</header>
480   </customwidget>
481   <customwidget>
482    <class>QValueComboBox</class>
483    <extends>QComboBox</extends>
484    <header>qvaluecombobox.h</header>
485   </customwidget>
486   <customwidget>
487    <class>QValidatedLineEdit</class>
488    <extends>QLineEdit</extends>
489    <header>qvalidatedlineedit.h</header>
490   </customwidget>
491  </customwidgets>
492  <resources/>
493  <connections/>
494 </ui>