Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MainWindow.ui « mumble « src - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce58b1a39b35e9b8867ebbbb172b136350241550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>MainWindow</class>
 <widget class="QMainWindow" name="MainWindow">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>735</width>
    <height>435</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>Mumble</string>
  </property>
  <property name="dockOptions">
   <set>QMainWindow::AllowNestedDocks|QMainWindow::AnimatedDocks</set>
  </property>
  <property name="unifiedTitleAndToolBarOnMac">
   <bool>true</bool>
  </property>
  <widget class="UserView" name="qtvUsers">
   <property name="contextMenuPolicy">
    <enum>Qt::CustomContextMenu</enum>
   </property>
   <property name="acceptDrops">
    <bool>true</bool>
   </property>
   <property name="dragEnabled">
    <bool>true</bool>
   </property>
   <property name="rootIsDecorated">
    <bool>false</bool>
   </property>
   <property name="uniformRowHeights">
    <bool>true</bool>
   </property>
   <property name="headerHidden">
    <bool>true</bool>
   </property>
   <attribute name="headerVisible">
    <bool>false</bool>
   </attribute>
  </widget>
  <widget class="QMenuBar" name="menubar">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
     <width>735</width>
     <height>32</height>
    </rect>
   </property>
   <widget class="QMenu" name="qmConfig">
    <property name="title">
     <string>C&amp;onfigure</string>
    </property>
    <addaction name="qaConfigDialog"/>
   </widget>
   <widget class="QMenu" name="qmHelp">
    <property name="title">
     <string>&amp;Help</string>
    </property>
    <addaction name="qaHelpWhatsThis"/>
    <addaction name="separator"/>
    <addaction name="qaHelpAbout"/>
    <addaction name="qaHelpAboutQt"/>
    <addaction name="separator"/>
    <addaction name="qaHelpVersionCheck"/>
   </widget>
   <widget class="QMenu" name="qmServer">
    <property name="title">
     <string>S&amp;erver</string>
    </property>
   </widget>
   <widget class="QMenu" name="qmSelf">
    <property name="title">
     <string>&amp;Self</string>
    </property>
    <addaction name="qaAudioMute"/>
    <addaction name="qaAudioDeaf"/>
    <addaction name="qaSelfPrioritySpeaker"/>
    <addaction name="separator"/>
    <addaction name="qaRecording"/>
    <addaction name="separator"/>
    <addaction name="qaSelfComment"/>
    <addaction name="qaServerTexture"/>
    <addaction name="qaServerTextureRemove"/>
    <addaction name="separator"/>
    <addaction name="qaSelfRegister"/>
    <addaction name="qaAudioStats"/>
   </widget>
   <addaction name="qmServer"/>
   <addaction name="qmSelf"/>
   <addaction name="qmConfig"/>
   <addaction name="qmHelp"/>
  </widget>
  <widget class="QDockWidget" name="qdwLog">
   <property name="minimumSize">
    <size>
     <width>250</width>
     <height>121</height>
    </size>
   </property>
   <property name="features">
    <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable</set>
   </property>
   <property name="windowTitle">
    <string>Log</string>
   </property>
   <attribute name="dockWidgetArea">
    <number>1</number>
   </attribute>
   <widget class="LogTextBrowser" name="qteLog">
    <property name="contextMenuPolicy">
     <enum>Qt::CustomContextMenu</enum>
    </property>
    <property name="whatsThis">
     <string>This shows all recent activity. Connecting to servers, errors and information messages all show up here.&lt;br /&gt;To configure exactly which messages show up here, use the &lt;b&gt;Settings&lt;/b&gt; command from the menu.</string>
    </property>
    <property name="openLinks">
     <bool>false</bool>
    </property>
   </widget>
  </widget>
  <widget class="QDockWidget" name="qdwChat">
   <property name="sizePolicy">
    <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
     <horstretch>0</horstretch>
     <verstretch>0</verstretch>
    </sizepolicy>
   </property>
   <property name="toolTip">
    <string/>
   </property>
   <property name="whatsThis">
    <string>This is the chatbar&lt;br /&gt;If you enter text here and then press enter the text is sent to the user or channel that was selected. If nothing is selected the message is sent to your current channel.</string>
   </property>
   <property name="features">
    <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable</set>
   </property>
   <property name="windowTitle">
    <string>Chatbar</string>
   </property>
   <attribute name="dockWidgetArea">
    <number>1</number>
   </attribute>
   <widget class="ChatbarTextEdit" name="qteChat">
    <property name="sizePolicy">
     <sizepolicy hsizetype="Expanding" vsizetype="MinimumExpanding">
      <horstretch>0</horstretch>
      <verstretch>0</verstretch>
     </sizepolicy>
    </property>
    <property name="maximumSize">
     <size>
      <width>16777215</width>
      <height>16777215</height>
     </size>
    </property>
    <property name="acceptRichText">
     <bool>false</bool>
    </property>
   </widget>
  </widget>
  <widget class="QToolBar" name="qtIconToolbar">
   <property name="windowTitle">
    <string>Icon Toolbar</string>
   </property>
   <attribute name="toolBarArea">
    <enum>TopToolBarArea</enum>
   </attribute>
   <attribute name="toolBarBreak">
    <bool>false</bool>
   </attribute>
   <addaction name="qaServerConnect"/>
   <addaction name="qaServerInformation"/>
   <addaction name="separator"/>
   <addaction name="qaAudioMute"/>
   <addaction name="qaAudioDeaf"/>
   <addaction name="qaRecording"/>
   <addaction name="separator"/>
   <addaction name="qaSelfComment"/>
   <addaction name="separator"/>
   <addaction name="qaConfigDialog"/>
   <addaction name="separator"/>
   <addaction name="qaFilterToggle"/>
   <addaction name="separator"/>
   <addaction name="qaSearch"/>
  </widget>
  <action name="qaQuit">
   <property name="text">
    <string>&amp;Quit Mumble</string>
   </property>
   <property name="toolTip">
    <string>Closes the program</string>
   </property>
   <property name="whatsThis">
    <string>Exits the application.</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+Q</string>
   </property>
  </action>
  <action name="qaHide">
   <property name="text">
    <string>&amp;Hide Mumble</string>
   </property>
   <property name="toolTip">
    <string>Hides the main Mumble window.</string>
   </property>
   <property name="whatsThis">
    <string>Hides the main Mumble window. Restore by clicking on the tray icon or starting Mumble again.</string>
   </property>
  </action>
  <action name="qaServerConnect">
   <property name="icon">
    <iconset>
     <normaloff>skin:categories/applications-internet.svg</normaloff>skin:categories/applications-internet.svg</iconset>
   </property>
   <property name="text">
    <string>&amp;Connect...</string>
   </property>
   <property name="toolTip">
    <string>Open the server connection dialog</string>
   </property>
   <property name="whatsThis">
    <string>Shows a dialog of registered servers, and also allows quick-connect.</string>
   </property>
   <property name="iconVisibleInMenu">
    <bool>false</bool>
   </property>
  </action>
  <action name="qaServerDisconnect">
   <property name="enabled">
    <bool>false</bool>
   </property>
   <property name="text">
    <string>&amp;Disconnect</string>
   </property>
   <property name="toolTip">
    <string>Disconnect from server</string>
   </property>
   <property name="whatsThis">
    <string>Disconnects you from the server.</string>
   </property>
  </action>
  <action name="qaServerBanList">
   <property name="enabled">
    <bool>false</bool>
   </property>
   <property name="text">
    <string>&amp;Ban list...</string>
   </property>
   <property name="toolTip">
    <string>Edit ban list on server</string>
   </property>
   <property name="whatsThis">
    <string>This lets you edit the server-side IP ban list.</string>
   </property>
  </action>
  <action name="qaServerInformation">
   <property name="enabled">
    <bool>false</bool>
   </property>
   <property name="icon">
    <iconset>
     <normaloff>skin:Information_icon.svg</normaloff>skin:Information_icon.svg</iconset>
   </property>
   <property name="text">
    <string>&amp;Information...</string>
   </property>
   <property name="toolTip">
    <string>Show information about the server connection</string>
   </property>
   <property name="whatsThis">
    <string>This will show extended information about the connection to the server.</string>
   </property>
   <property name="iconVisibleInMenu">
    <bool>false</bool>
   </property>
  </action>
  <action name="qaUserKick">
   <property name="text">
    <string>&amp;Kick...</string>
   </property>
   <property name="toolTip">
    <string>Kick user (with reason)</string>
   </property>
   <property name="whatsThis">
    <string>Kick selected user off server. You'll be asked to specify a reason.</string>
   </property>
  </action>
  <action name="qaUserMute">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>&amp;Mute</string>
   </property>
   <property name="toolTip">
    <string>Mute user</string>
   </property>
   <property name="whatsThis">
    <string>Mute or unmute user on server. Unmuting a deafened user will also undeafen them.</string>
   </property>
  </action>
  <action name="qaUserBan">
   <property name="text">
    <string>&amp;Ban...</string>
   </property>
   <property name="toolTip">
    <string>Kick and ban user (with reason)</string>
   </property>
   <property name="whatsThis">
    <string>Kick and ban selected user from server. You'll be asked to specify a reason.</string>
   </property>
  </action>
  <action name="qaUserDeaf">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>&amp;Deafen</string>
   </property>
   <property name="toolTip">
    <string>Deafen user</string>
   </property>
   <property name="whatsThis">
    <string>Deafen or undeafen user on server. Deafening a user will also mute them.</string>
   </property>
  </action>
  <action name="qaUserLocalIgnore">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>Ignore Messages</string>
   </property>
   <property name="toolTip">
    <string>Locally ignore user's text chat messages.</string>
   </property>
   <property name="whatsThis">
    <string>Silently drops all text messages from the user.</string>
   </property>
  </action>
  <action name="qaUserLocalVolume">
   <property name="text">
    <string>Local Volume Adjustment...</string>
   </property>
   <property name="toolTip">
    <string>Locally adjust the user's speech volume.</string>
   </property>
   <property name="whatsThis">
    <string>Opens a dialog with a volume slider. Use this on other users in the same room.</string>
   </property>
  </action>
  <action name="qaUserLocalMute">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>&amp;Local Mute</string>
   </property>
   <property name="toolTip">
    <string>Mute user locally</string>
   </property>
   <property name="whatsThis">
    <string>Mute or unmute user locally. Use this on other users in the same room.</string>
   </property>
  </action>
  <action name="qaUserTextMessage">
   <property name="text">
    <string>Send &amp;Message...</string>
   </property>
   <property name="toolTip">
    <string>Send a Text Message</string>
   </property>
   <property name="whatsThis">
    <string>Sends a text message to another user.</string>
   </property>
  </action>
  <action name="qaUserLocalNickname">
   <property name="text">
    <string>&amp;Set Nickname...</string>
   </property>
   <property name="toolTip">
    <string>Set a local nickname</string>
   </property>
   <property name="whatsThis">
    <string>Sets a local nickname for another user.</string>
   </property>
  </action>
  <action name="qaChannelAdd">
   <property name="text">
    <string>&amp;Add...</string>
   </property>
   <property name="toolTip">
    <string>Add new channel</string>
   </property>
   <property name="whatsThis">
    <string>This adds a new sub-channel to the currently selected channel.</string>
   </property>
  </action>
  <action name="qaChannelRemove">
   <property name="text">
    <string>&amp;Remove...</string>
   </property>
   <property name="toolTip">
    <string>Remove channel</string>
   </property>
   <property name="whatsThis">
    <string>This removes a channel and all sub-channels.</string>
   </property>
  </action>
  <action name="qaChannelACL">
   <property name="text">
    <string>&amp;Edit...</string>
   </property>
   <property name="toolTip">
    <string>Edit Groups and ACL for channel</string>
   </property>
   <property name="whatsThis">
    <string>This opens the Group and ACL dialog for the channel, to control permissions.</string>
   </property>
  </action>
  <action name="qaChannelLink">
   <property name="text">
    <string>&amp;Link</string>
   </property>
   <property name="toolTip">
    <string>Link your channel to another channel</string>
   </property>
   <property name="whatsThis">
    <string>This links your current channel to the selected channel. If users in a channel have permission to speak in the other channel, users can now hear each other. This is a permanent link, and will last until manually unlinked or the server is restarted. Please see the shortcuts for push-to-link.</string>
   </property>
  </action>
  <action name="qaChannelUnlink">
   <property name="text">
    <string comment="Channel">&amp;Unlink</string>
   </property>
   <property name="toolTip">
    <string>Unlink your channel from another channel</string>
   </property>
   <property name="whatsThis">
    <string>This unlinks your current channel from the selected channel.</string>
   </property>
  </action>
  <action name="qaChannelUnlinkAll">
   <property name="text">
    <string>&amp;Unlink All</string>
   </property>
   <property name="toolTip">
    <string>Unlinks your channel from all linked channels.</string>
   </property>
   <property name="whatsThis">
    <string>This unlinks your current channel (not the selected one) from all linked channels.</string>
   </property>
  </action>
  <action name="qaAudioReset">
   <property name="text">
    <string>&amp;Reset</string>
   </property>
   <property name="toolTip">
    <string>Reset audio preprocessor</string>
   </property>
   <property name="whatsThis">
    <string>This will reset the audio preprocessor, including noise cancellation, automatic gain and voice activity detection. If something suddenly worsens the audio environment (like dropping the microphone) and it was temporary, use this to avoid having to wait for the preprocessor to readjust.</string>
   </property>
  </action>
  <action name="qaAudioMute">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
    <iconset>
     <normaloff>skin:actions/audio-input-microphone.svg</normaloff>
     <normalon>skin:actions/audio-input-microphone-muted.svg</normalon>
     <activeon>skin:actions/audio-input-microphone-muted.svg</activeon>skin:actions/audio-input-microphone.svg</iconset>
   </property>
   <property name="text">
    <string>&amp;Mute Self</string>
   </property>
   <property name="whatsThis">
    <string>Mute or unmute yourself. When muted, you will not send any data to the server. Unmuting while deafened will also undeafen.</string>
   </property>
   <property name="iconVisibleInMenu">
    <bool>false</bool>
   </property>
  </action>
  <action name="qaAudioDeaf">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
    <iconset>
     <normaloff>skin:self_undeafened.svg</normaloff>
     <normalon>skin:deafened_self.svg</normalon>
     <activeon>skin:deafened_self.svg</activeon>skin:self_undeafened.svg</iconset>
   </property>
   <property name="text">
    <string>&amp;Deafen Self</string>
   </property>
   <property name="whatsThis">
    <string>Deafen or undeafen yourself. When deafened, you will not hear anything. Deafening yourself will also mute.</string>
   </property>
   <property name="iconVisibleInMenu">
    <bool>false</bool>
   </property>
  </action>
  <action name="qaAudioTTS">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>&amp;Text-To-Speech</string>
   </property>
   <property name="toolTip">
    <string>Toggle Text-To-Speech</string>
   </property>
   <property name="whatsThis">
    <string>Enable or disable the text-to-speech engine. Only messages enabled for TTS in the Configuration dialog will actually be spoken.</string>
   </property>
  </action>
  <action name="qaAudioStats">
   <property name="text">
    <string>Audio S&amp;tatistics...</string>
   </property>
   <property name="toolTip">
    <string>Display audio statistics</string>
   </property>
   <property name="whatsThis">
    <string>Pops up a small dialog with information about your current audio input.</string>
   </property>
  </action>
  <action name="qaAudioUnlink">
   <property name="text">
    <string>&amp;Unlink Plugins</string>
   </property>
   <property name="toolTip">
    <string>Forcibly unlink plugin</string>
   </property>
   <property name="whatsThis">
    <string>This forces the current plugin to unlink, which is handy if it is reading completely wrong data.</string>
   </property>
  </action>
  <action name="qaConfigDialog">
   <property name="icon">
    <iconset>
     <normaloff>skin:config_basic.png</normaloff>skin:config_basic.png</iconset>
   </property>
   <property name="text">
    <string>&amp;Settings...</string>
   </property>
   <property name="toolTip">
    <string>Configure Mumble</string>
   </property>
   <property name="whatsThis">
    <string>Allows you to change most settings for Mumble.</string>
   </property>
   <property name="menuRole">
    <enum>QAction::PreferencesRole</enum>
   </property>
   <property name="iconVisibleInMenu">
    <bool>false</bool>
   </property>
  </action>
  <action name="qaFilterToggle">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
    <iconset>
     <normaloff>skin:filter_off.svg</normaloff>
     <normalon>skin:filter_on.svg</normalon>
     <activeon>skin:filter_on.svg</activeon>skin:filter_off.svg</iconset>
   </property>
   <property name="text">
    <string>&amp;Filter on/off</string>
   </property>
   <property name="toolTip">
    <string>Toggle the channel filter (Alt+F)</string>
   </property>
   <property name="whatsThis">
    <string>Enable or disable the filtering of select channels.
By default all empty channels will be filtered.
You can mark additional channels for filtering from
the channel's context menu.</string>
   </property>
   <property name="shortcut">
    <string>Alt+F</string>
   </property>
   <property name="iconVisibleInMenu">
    <bool>false</bool>
   </property>
  </action>
  <action name="qaAudioWizard">
   <property name="text">
    <string>&amp;Audio Wizard...</string>
   </property>
   <property name="toolTip">
    <string>Start the audio configuration wizard</string>
   </property>
   <property name="whatsThis">
    <string>This will guide you through the process of configuring your audio hardware.</string>
   </property>
  </action>
  <action name="qaDeveloperConsole">
   <property name="text">
    <string>Developer &amp;Console...</string>
   </property>
   <property name="toolTip">
    <string>Show the Developer Console</string>
   </property>
   <property name="whatsThis">
    <string>Shows the Mumble Developer Console, where Mumble's log output can be inspected.</string>
   </property>
  </action>
  <action name="qaPositionalAudioViewer">
   <property name="text">
    <string>Positional &amp;Audio Viewer...</string>
   </property>
   <property name="toolTip">
    <string>Show the Positional Audio Viewer</string>
   </property>
   <property name="whatsThis">
    <string>Shows the Positional Audio Viewer. In it the current information used for positional audio can be inspected. Context and identity are also shown.</string>
   </property>
  </action>
  <action name="qaHelpWhatsThis">
   <property name="text">
    <string>&amp;What's This?</string>
   </property>
   <property name="toolTip">
    <string>Enter What's This? mode</string>
   </property>
   <property name="whatsThis">
    <string>Click this to enter &quot;What's This?&quot; mode. Your cursor will turn into a question mark. Click on any button, menu choice or area to show a description of what it is.</string>
   </property>
  </action>
  <action name="qaHelpAbout">
   <property name="text">
    <string>&amp;About...</string>
   </property>
   <property name="toolTip">
    <string>Information about Mumble</string>
   </property>
   <property name="whatsThis">
    <string>Shows a small dialog with information and license for Mumble.</string>
   </property>
   <property name="menuRole">
    <enum>QAction::AboutRole</enum>
   </property>
  </action>
  <action name="qaHelpAboutSpeex">
   <property name="text">
    <string>About &amp;Speex...</string>
   </property>
   <property name="toolTip">
    <string>Information about Speex</string>
   </property>
   <property name="whatsThis">
    <string>Shows a small dialog with information about Speex.</string>
   </property>
   <property name="menuRole">
    <enum>QAction::ApplicationSpecificRole</enum>
   </property>
  </action>
  <action name="qaHelpAboutQt">
   <property name="text">
    <string>About &amp;Qt...</string>
   </property>
   <property name="toolTip">
    <string>Information about Qt</string>
   </property>
   <property name="whatsThis">
    <string>Shows a small dialog with information about Qt.</string>
   </property>
   <property name="menuRole">
    <enum>QAction::AboutQtRole</enum>
   </property>
  </action>
  <action name="qaHelpVersionCheck">
   <property name="text">
    <string>Check for &amp;Updates</string>
   </property>
   <property name="toolTip">
    <string>Check for new version of Mumble</string>
   </property>
   <property name="whatsThis">
    <string>Connects to the Mumble webpage to check if a new version is available, and notifies you with an appropriate download URL if this is the case.</string>
   </property>
  </action>
  <action name="qaChannelSendMessage">
   <property name="text">
    <string>Send &amp;Message...</string>
   </property>
   <property name="toolTip">
    <string>Send a Text Message</string>
   </property>
   <property name="whatsThis">
    <string>Sends a text message to all users in a channel.</string>
   </property>
  </action>
  <action name="qaChannelCopyURL">
   <property name="text">
    <string>&amp;Copy URL</string>
   </property>
   <property name="toolTip">
    <string>Copies a link to this channel to the clipboard.</string>
   </property>
   <property name="whatsThis">
    <string>Copies a link to this channel to the clipboard.</string>
   </property>
  </action>
  <action name="qaConfigMinimal">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>&amp;Minimal View</string>
   </property>
   <property name="toolTip">
    <string>Toggle minimal window modes</string>
   </property>
   <property name="whatsThis">
    <string>This will toggle minimal mode, where the log window and menu is hidden.</string>
   </property>
  </action>
  <action name="qaConfigHideFrame">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>Hide Frame</string>
   </property>
   <property name="toolTip">
    <string>Toggle showing frame on minimal window</string>
   </property>
   <property name="whatsThis">
    <string>This will toggle whether the minimal window should have a frame for moving and resizing.</string>
   </property>
  </action>
  <action name="qaConfigCert">
   <property name="text">
    <string>&amp;Certificate Wizard...</string>
   </property>
   <property name="toolTip">
    <string>Configure certificates for strong authentication</string>
   </property>
   <property name="whatsThis">
    <string>This starts the wizard for creating, importing and exporting certificates for authentication against servers.</string>
   </property>
  </action>
  <action name="qaUserRegister">
   <property name="text">
    <string>&amp;Register...</string>
   </property>
   <property name="toolTip">
    <string>Register user on server</string>
   </property>
   <property name="whatsThis">
    <string>This will permanently register the user on the server.</string>
   </property>
  </action>
  <action name="qaUserFriendAdd">
   <property name="text">
    <string>Add &amp;Friend</string>
   </property>
   <property name="toolTip">
    <string>Adds a user as your friend.</string>
   </property>
   <property name="whatsThis">
    <string>This will add the user as a friend, so you can recognize him on this and other servers.</string>
   </property>
  </action>
  <action name="qaUserFriendRemove">
   <property name="text">
    <string>&amp;Remove Friend</string>
   </property>
   <property name="toolTip">
    <string>Removes a user from your friends.</string>
   </property>
   <property name="whatsThis">
    <string>This will remove a user from your friends list.</string>
   </property>
  </action>
  <action name="qaUserFriendUpdate">
   <property name="text">
    <string>&amp;Update Friend</string>
   </property>
   <property name="toolTip">
    <string>Update name of your friend.</string>
   </property>
   <property name="whatsThis">
    <string>Your friend uses a different name than what is in your database. This will update the name.</string>
   </property>
  </action>
  <action name="qaServerUserList">
   <property name="text">
    <string>Registered &amp;Users...</string>
   </property>
   <property name="toolTip">
    <string>Edit registered users list</string>
   </property>
   <property name="whatsThis">
    <string>This opens the editor for registered users, which allow you to change their name or unregister them.</string>
   </property>
  </action>
  <action name="qaServerTexture">
   <property name="text">
    <string>Change &amp;Avatar...</string>
   </property>
   <property name="toolTip">
    <string>Change your avatar image on this server</string>
   </property>
  </action>
  <action name="qaServerTokens">
   <property name="text">
    <string>&amp;Access Tokens...</string>
   </property>
   <property name="toolTip">
    <string>Add or remove text-based access tokens</string>
   </property>
  </action>
  <action name="qaServerTextureRemove">
   <property name="text">
    <string>&amp;Remove Avatar</string>
   </property>
   <property name="toolTip">
    <string>Remove currently defined avatar image.</string>
   </property>
  </action>
  <action name="qaUserCommentReset">
   <property name="text">
    <string>Reset &amp;Comment...</string>
   </property>
   <property name="toolTip">
    <string>Reset the comment of the selected user.</string>
   </property>
  </action>
  <action name="qaUserTextureReset">
   <property name="text">
    <string>Reset &amp;Avatar...</string>
   </property>
   <property name="toolTip">
    <string>Reset the avatar of the selected user.</string>
   </property>
  </action>
  <action name="qaChannelJoin">
   <property name="text">
    <string>&amp;Join Channel</string>
   </property>
  </action>
  <action name="qaChannelFilter">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>&amp;Hide Channel when Filtering</string>
   </property>
  </action>
  <action name="qaUserCommentView">
   <property name="text">
    <string>View Comment...</string>
   </property>
   <property name="toolTip">
    <string>View comment in editor</string>
   </property>
  </action>
  <action name="qaUserInformation">
   <property name="text">
    <string>&amp;Information...</string>
   </property>
   <property name="toolTip">
    <string>Query server for connection information for user</string>
   </property>
  </action>
  <action name="qaSelfComment">
   <property name="icon">
    <iconset>
     <normaloff>skin:self_comment.svg</normaloff>skin:self_comment.svg</iconset>
   </property>
   <property name="text">
    <string>&amp;Change Comment...</string>
   </property>
   <property name="toolTip">
    <string>Change your own comment</string>
   </property>
   <property name="iconVisibleInMenu">
    <bool>false</bool>
   </property>
  </action>
  <action name="qaSelfRegister">
   <property name="text">
    <string>R&amp;egister...</string>
   </property>
   <property name="toolTip">
    <string>Register yourself on the server</string>
   </property>
  </action>
  <action name="qaUserPrioritySpeaker">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>Priority Speaker</string>
   </property>
  </action>
  <action name="qaSelfPrioritySpeaker">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>Priority Speaker</string>
   </property>
  </action>
  <action name="qaRecording">
   <property name="icon">
    <iconset>
     <normaloff>skin:actions/media-record.svg</normaloff>skin:actions/media-record.svg</iconset>
   </property>
   <property name="text">
    <string>Recording</string>
   </property>
   <property name="iconVisibleInMenu">
    <bool>false</bool>
   </property>
  </action>
  <action name="qaShow">
   <property name="text">
    <string>Show</string>
   </property>
   <property name="toolTip">
    <string>Shows the main Mumble window.</string>
   </property>
  </action>
  <action name="qaChannelListen">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>Listen to channel</string>
   </property>
   <property name="toolTip">
    <string>Listen to this channel without joining it</string>
   </property>
  </action>
  <action name="qaListenerLocalVolume">
   <property name="text">
    <string>Local Volume Adjustment...</string>
   </property>
   <property name="toolTip">
    <string>Locally adjust the volume for this virtual ear.</string>
   </property>
  </action>
  <action name="qaTalkingUIToggle">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>Talking UI</string>
   </property>
   <property name="toolTip">
    <string>Toggles the visibility of the TalkingUI.</string>
   </property>
  </action>
  <action name="qaUserJoin">
   <property name="text">
    <string>Join user's channel</string>
   </property>
   <property name="toolTip">
    <string>Joins the channel of this user.</string>
   </property>
  </action>
  <action name="qaUserLocalIgnoreTTS">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>Disable Text-To-Speech</string>
   </property>
   <property name="toolTip">
    <string>Locally disable Text-To-Speech for this user's text chat messages.</string>
   </property>
   <property name="whatsThis">
    <string>Silently disables Text-To-Speech for all text messages from the user.</string>
   </property>
  </action>
  <action name="qaSearch">
   <property name="icon">
    <iconset>
     <normaloff>skin:magnifier.svg</normaloff>skin:magnifier.svg</iconset>
   </property>
   <property name="text">
    <string>Search</string>
   </property>
   <property name="toolTip">
    <string>Search for a user or channel (Ctrl+F)</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+F</string>
   </property>
  </action>
 </widget>
 <customwidgets>
  <customwidget>
   <class>UserView</class>
   <extends>QTreeView</extends>
   <header>UserView.h</header>
  </customwidget>
  <customwidget>
   <class>ChatbarTextEdit</class>
   <extends>QTextEdit</extends>
   <header>CustomElements.h</header>
  </customwidget>
  <customwidget>
   <class>LogTextBrowser</class>
   <extends>QTextBrowser</extends>
   <header>CustomElements.h</header>
  </customwidget>
 </customwidgets>
 <resources/>
 <connections/>
</ui>