~ubuntu-branches/ubuntu/trusty/ekiga/trusty-proposed

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
<gconfschemafile>
  <schemalist>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/devices/audio/output_device</key>
      <applyto>/apps/@PACKAGE_NAME@/devices/audio/output_device</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
	<short>Audio output device</short>
	<long>Select the audio output device to use</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/devices/audio/input_device</key>
      <applyto>/apps/@PACKAGE_NAME@/devices/audio/input_device</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
	<short>Audio input device</short>
	<long>Select the audio input device to use</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/devices/video/input_device</key>
      <applyto>/apps/@PACKAGE_NAME@/devices/video/input_device</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
	<short>Video input device</short>
	<long>Select the video input device to use. If an error occurs when using this device a test picture will be transmitted.</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/devices/video/size</key>
      <applyto>/apps/@PACKAGE_NAME@/devices/video/size</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>0</default>
      <locale name="C">
	<short>Video size</short>
	<long>Select the transmitted video size: Small (QCIF 176x144) or Large (CIF 352x288)</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/devices/video/channel</key>
      <applyto>/apps/@PACKAGE_NAME@/devices/video/channel</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>0</default>
      <locale name="C">
	<short>Video channel</short>
	<long>The video channel number to use (to select camera, tv or other sources)</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/devices/video/format</key>
      <applyto>/apps/@PACKAGE_NAME@/devices/video/format</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>0</default>
      <locale name="C">
	<short>Video format</short>
	<long>Select the format for video cameras (does not apply to most USB cameras)</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/devices/video/enable_preview</key>
      <applyto>/apps/@PACKAGE_NAME@/devices/video/enable_preview</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>0</default>
      <locale name="C">
	<short>Video preview</short>
 	<long>Display images from your camera device</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/devices/video/max_frame_rate</key>
      <applyto>/apps/@PACKAGE_NAME@/devices/video/max_frame_rate</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>30</default>
      <locale name="C">
	<short>Frame Rate</short>
	<long>The maximum transmitted frame rate in frames/s. This rate may not be reached in case a minimum quality was configure via a TSTO value smaller than 31 and the bitrate selected is not sufficient to support this minimum quality</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/personal_data/full_name</key>
      <applyto>/apps/@PACKAGE_NAME@/general/personal_data/full_name</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
	<short>Full name</short>
	<long>Enter your full name</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/personal_data/short_status</key>
      <applyto>/apps/@PACKAGE_NAME@/general/personal_data/short_status</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>available</default>
      <locale name="C">
	<short>Contact short status</short>
	<long>The short status information</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/personal_data/long_status</key>
      <applyto>/apps/@PACKAGE_NAME@/general/personal_data/long_status</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>I'm available using Ekiga</default>
      <locale name="C">
	<short>Contact long status</short>
	<long>The long status information</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/personal_data/away_custom_status</key>
      <applyto>/apps/@PACKAGE_NAME@/general/personal_data/away_custom_status</applyto>
      <type>list</type>
      <list_type>string</list_type>
      <default>[]</default>
      <locale name="C">
	<short></short>
	<long></long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/personal_data/busy_custom_status</key>
      <applyto>/apps/@PACKAGE_NAME@/general/personal_data/busy_custom_status</applyto>
      <type>list</type>
      <list_type>string</list_type>
      <default>[]</default>
      <locale name="C">
	<short></short>
	<long></long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/personal_data/available_custom_status</key>
      <applyto>/apps/@PACKAGE_NAME@/general/personal_data/available_custom_status</applyto>
      <type>list</type>
      <list_type>string</list_type>
      <default>[]</default>
      <locale name="C">
	<short></short>
	<long></long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/codecs/audio/media_list</key>
      <applyto>/apps/@PACKAGE_NAME@/codecs/audio/media_list</applyto>
      <owner>Ekiga</owner>
      <type>list</type>
      <list_type>string</list_type>
      <default>[Speex*16000*1*H.323 SIP*1,PCMU*8000*1*H.323 SIP*1,PCMA*8000*1*H.323 SIP*1,CELT*48000*1*SIP*0,CELT*32000*1*SIP*0,iLBC*8000*1*H.323 SIP*0,gsm*8000*1*H.323 SIP*0,G722*16000*1*H.323 SIP*0,G7221*16000*1*H.323 SIP*0,AMR-WB*16000*1*H.323 SIP*0,Speex*8000*1*H.323 SIP*0,G726-16*8000*1*H.323 SIP*0,G726-24*8000*1*H.323 SIP*0,G726-32*8000*1*H.323 SIP*0,G726-40*8000*1*H.323 SIP*0,ms-gsm*8000*1*H.323*0,SILK*16000*1*H.323 SIP*0,SILK*8000*1*H.323 SIP*0,MS-IMA-ADPCM*8000*1*H.323*0]</default>
      <locale name="C">
	<short>The Audio Codecs List</short>
	<long>The audio codecs list</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/codecs/audio/enable_silence_detection</key>
      <applyto>/apps/@PACKAGE_NAME@/codecs/audio/enable_silence_detection</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
	<short>Enable silence detection</short>
	<long>If enabled, use silence detection with the codecs supporting it</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/codecs/audio/enable_echo_cancellation</key>
      <applyto>/apps/@PACKAGE_NAME@/codecs/audio/enable_echo_cancellation</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
	<short>Enable echo cancellation</short>
	<long>If enabled, use echo cancellation</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/output_device</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/output_device</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
	<short>Alternative audio output device</short>
	<long>Select an alternative audio output device to use for sound events.</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/incoming_call_sound</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/incoming_call_sound</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>ring.wav</default>
      <locale name="C">
	<short>The incoming call sound</short>
	<long>The sound that will be played on incoming calls, if enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/enable_incoming_call_sound</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/enable_incoming_call_sound</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Play sound on incoming calls</short>
	<long>The chosen sound will be played on incoming calls, if enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/new_message_sound</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/new_message_sound</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>newmessage.wav</default>
      <locale name="C">
	<short>The new instant message sound</short>
	<long>The sound that will be played when there is a new instant message, if enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/enable_new_message_sound</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/enable_new_message_sound</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Play sound on new message</short>
	<long>The chosen sound will be played when a new instant message is received, if enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/new_voicemail_sound</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/new_voicemail_sound</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>voicemail.wav</default>
      <locale name="C">
	<short>The new voice mail sound</short>
	<long>The sound that will be played when there is a new voice mail, if enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/enable_new_voicemail_sound</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/enable_new_voicemail_sound</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Play sound on new voice mail</short>
	<long>The chosen sound will be played when a new voice mail is received, if enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/enable_ring_tone_sound</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/enable_ring_tone_sound</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Play ring tone</short>
	<long>The chosen sound will be played when calling somebody, if enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/ring_tone_sound</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/ring_tone_sound</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>dialtone.wav</default>
      <locale name="C">
	<short>The dial tone sound</short>
	<long>The sound that will be played when calling somebody, if enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/enable_busy_tone_sound</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/enable_busy_tone_sound</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Play busy tone</short>
	<long>The chosen sound will be played at the end of calls or calling somebody who is busy, if enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/sound_events/busy_tone_sound</key>
      <applyto>/apps/@PACKAGE_NAME@/general/sound_events/busy_tone_sound</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>busytone.wav</default>
      <locale name="C">
	<short>The busy tone sound</short>
	<long>The sound that will be played at the end of calls or when calling somebody who is busy, if enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/accounts_list</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/accounts_list</applyto>
      <owner>Ekiga</owner>
      <type>list</type>
      <list_type>string</list_type>
      <default>[]</default>
      <locale name="C">
	<short>The accounts list</short>
	<long>The list of accounts to which Ekiga should register</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/rtp_tos_field</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/rtp_tos_field</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>184</default>
      <locale name="C">
        <short>Type of Service (TOS) byte on outgoing RTP IP packets</short>
        <long>The Type of Service (TOS) byte on outgoing RTP IP packets. This byte is used by the network to provide some level of Quality of Service (QoS). Default value 184 (0xB8) correspond to Expedited Forwarding (EF) PHB as defined in RFC 3246.</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/interface</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/interface</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <locale name="C">
	<short></short>
	<long></long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/sip/listen_port</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/sip/listen_port</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>5060</default>
      <locale name="C">
	<short>Listen port</short>
	<long>The port to listen to for incoming connections. Ekiga needs to be restarted for the new value to take effect</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/sip/outbound_proxy_host</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/sip/outbound_proxy_host</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
	<short>Outbound Proxy</short>
	<long>The SIP Outbound Proxy to use for outgoing calls</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/sip/forward_host</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/sip/forward_host</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>sip:</default>
      <locale name="C">
	<short>Forward calls to host</short>
	<long>The host where calls should be forwarded if call forwarding is enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/sip/dtmf_mode</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/sip/dtmf_mode</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>1</default>
      <locale name="C">
	<short>DTMF sending</short>
	<long>Select the mode for sending DTMFs. The values can be 0 (for "RFC2833") and 1 (for "INFO")</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/h323/listen_port</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/h323/listen_port</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>1720</default>
      <locale name="C">
	<short>Listen port</short>
	<long>The port to listen to for incoming connections. Ekiga needs to be restarted for the new value to take effect.</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/ports/tcp_port_range</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/ports/tcp_port_range</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>30000:30010</default>
      <locale name="C">
	<short>TCP port range</short>
	<long>The range of TCP ports that Ekiga will use for the H.323 H.245 channel. This port range has no effect if both participants to the conference are using H.245 Tunneling.</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/ports/udp_port_range</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/ports/udp_port_range</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>5061:5100</default>
      <locale name="C">
	<short>UDP port range</short>
	<long>The range of UDP ports that Ekiga will use.</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/h323/enable_h245_tunneling</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/h323/enable_h245_tunneling</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Enable H.245 tunneling</short>
	<long>This enables H.245 Tunneling mode. In H.245 Tunneling mode H.245 messages are encapsulated into the H.225 channel (port 1720). This saves one TCP connection during calls. H.245 Tunneling was introduced in H.323v2 and Netmeeting does not support it. Using both Fast Start and H.245 Tunneling can crash some versions of Netmeeting.</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/h323/enable_early_h245</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/h323/enable_early_h245</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Enable early H.245</short>
	<long>This enables H.245 early in the setup</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/h323/enable_fast_start</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/h323/enable_fast_start</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Enable 'Fast Start'</short>
	<long>Connection will be established in Fast Start mode. Fast Start is a new way to start calls faster that was introduced in H.323v2. It is not supported by Netmeeting and using both Fast Start and H.245 Tunneling can crash some versions of Netmeeting</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/h323/enable_h239</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/h323/enable_h239</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
	<short>Enable H.239</short>
	<long>This enables H.239 capability for additional video roles</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/h323/video_role</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/h323/video_role</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>0</default>
      <locale name="C">
	<short>Extended Video Roles</short>
	<long>Select the H.239 Video Role. The values can be 0 (for "disable extended video"), 1 (for "allow per content role mask"), 2 (for "force presentation"), or 3 (for "force live role")</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/h323/dtmf_mode</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/h323/dtmf_mode</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>0</default>
      <locale name="C">
	<short>DTMF sending</short>
	<long>Select the mode for sending DTMFs. The values can be 0 (for "String"), 1 (for "Tone"), 2 (for "RFC2833"), or 3 (for "Q.931") (default is "String"). Choosing other values than "String" disables the Text Chat.</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/h323/forward_host</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/h323/forward_host</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>h323:</default>
      <locale name="C">
	<short>Forward calls to host</short>
	<long>The host where calls should be forwarded if call forwarding is enabled</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/call_forwarding/always_forward</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/call_forwarding/always_forward</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
	<short>Always forward calls to the given host</short>
	<long>If enabled, all incoming calls will be forwarded to the host that is specified in the field below</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/call_forwarding/forward_on_busy</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/call_forwarding/forward_on_busy</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
	<short>Forward calls to the given host if busy</short>
	<long>If enabled, all incoming calls will be forwarded to the host that is specified in the field below if you already are in a call or if you are in busy mode</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/call_forwarding/forward_on_no_answer</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/call_forwarding/forward_on_no_answer</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
	<short>Forward calls to the given host if no answer</short>
	<long>If enabled, all incoming calls will be forwarded to the host that is specified in the field below if you do not answer the call</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/nat/stun_server</key>
      <applyto>/apps/@PACKAGE_NAME@/general/nat/stun_server</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>stun.ekiga.net</default>
      <locale name="C">
	<short>The STUN Server</short>
	<long>The STUN server to use for STUN Support. STUN is a technology that permits passage through some types of NAT gateway</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/nat/enable_stun</key>
      <applyto>/apps/@PACKAGE_NAME@/general/nat/enable_stun</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Enable STUN network detection</short>
	<long>Enable the automatic network setup resulting from the STUN test</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/protocols/sip/binding_timeout</key>
      <applyto>/apps/@PACKAGE_NAME@/protocols/sip/binding_timeout</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>10</default>
      <locale name="C">
	<short>NAT Binding Timeout</short>
        <long>Enter the number of seconds after which Ekiga should try refreshing the NAT binding when STUN is being used</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/call_window/position</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/call_window/position</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>0,0</default>
      <locale name="C">
	<short>Position on the screen of the call window</short>
	<long>Position on the screen of the call window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/call_window/size</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/call_window/size</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>270,250</default>
      <locale name="C">
	<short>Size of the call window</short>
	<long>Size of the call window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/main_window/position</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/main_window/position</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>0,0</default>
      <locale name="C">
	<short>Position on the screen of the main window</short>
	<long>Position on the screen of the main window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/main_window/panel_section</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/main_window/panel_section</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>0</default>
      <locale name="C">
	<short>Change the panel section of the main window</short>
	<long>Change the panel section of the main window (0=Contacts, 1=Dialpad, 2=Call history)</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/chat_window/size</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/chat_window/size</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>375,400</default>
      <locale name="C">
	<short>Size of the chat window</short>
	<long>Size of the chat window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/chat_window/position</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/chat_window/position</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>0,0</default>
      <locale name="C">
	<short>Position on the screen of the chat window</short>
	<long>Position on the screen of the chat window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/assistant/size</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/assistant/size</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>525,345</default>
      <locale name="C">
	<short>Size of the druid window</short>
	<long>Size of the druid window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/assistant/position</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/assistant/position</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>0,0</default>
      <locale name="C">
	<short>Position on the screen of the druid window</short>
	<long>Position on the screen of the druid window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/addressbook_window/position</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/addressbook_window/position</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>0,0</default>
      <locale name="C">
	<short>Position on the screen of the address book window</short>
	<long>Position on the screen of the address book window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/addressbook_window/size</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/addressbook_window/size</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>770,470</default>
      <locale name="C">
	<short>Size of the address book window</short>
	<long>Size of the address book window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/audio_settings_window/position</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/audio_settings_window/position</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>0,0</default>
      <locale name="C">
	<short>Position on the screen of the audio settings window</short>
	<long>Position on the screen of the audio settings window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/audio_settings_window/size</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/audio_settings_window/size</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>250,125</default>
      <locale name="C">
	<short>Size of the audio settings window</short>
	<long>Size of the audio settings window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/video_settings_window/position</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/video_settings_window/position</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>0,0</default>
      <locale name="C">
	<short>Position on the screen of the video settings window</short>
	<long>Position on the screen of the video settings window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/video_settings_window/size</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/video_settings_window/size</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>250,160</default>
      <locale name="C">
	<short>Size of the video settings window</short>
	<long>Size of the video settings window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/preferences_window/position</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/preferences_window/position</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>0,0</default>
      <locale name="C">
	<short>Position on the screen of the preferences window</short>
	<long>Position on the screen of the preferences window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/preferences_window/size</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/preferences_window/size</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>-1,-1</default>
      <locale name="C">
	<short>Size of the preferences window</short>
	<long>Size of the preferences window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/accounts_window/position</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/accounts_window/position</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>0,0</default>
      <locale name="C">
	<short>Position on the screen of the preferences window</short>
	<long>Position on the screen of the preferences window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/accounts_window/size</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/accounts_window/size</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>470,250</default>
      <locale name="C">
	<short>Size of the preferences window</short>
	<long>Size of the preferences window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/video_display/disable_hw_accel</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/video_display/disable_hw_accel</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
	<short>Disable video hardware acceleration</short>
	<long>This key disables DirectX (on win32) and XVideo (on Linux) video hardware acceleration</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/video_display/allow_pip_sw_scaling</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/video_display/allow_pip_sw_scaling</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Allow picture-in-picture software scaling</short>
	<long>Allow Ekiga to fall back to software scaling the picture-in-picture if hardware support is not available. If this is set to false, Ekiga will not try to open the PIP if hardware support is not available.</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/video_display/sw_scaling_algorithm</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/video_display/sw_scaling_algorithm</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>0</default>
      <locale name="C">
	<short>Specify the software scaling algorithm</short>
	<long>Specify the software scaling algorithm: 0: nearest neighbor, 1: nearest neighbor with box filter, 2: bilinear filtering, 3: hyperbolic filtering. Does not apply on windows systems.</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/video_display/zoom</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/video_display/zoom</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>100</default>
      <locale name="C">
	<short>The zoom value</short>
	<long>The zoom value in percent to apply to images displayed in the main GUI (can be 50, 100, or 200)</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/video_display/stay_on_top</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/video_display/stay_on_top</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Place windows displaying video above other windows during calls</short>
	<long>Place windows displaying video above other windows during calls</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/video_display/video_view</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/video_display/video_view</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>2</default>
      <locale name="C">
	<short>The default video view</short>
	<long>The default video view (0: Local, 1: Remote, 2: Both, 3: Both in a separate window)</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/video_display/video_view_before_fullscreen</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/video_display/video_view_before_fullscreen</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>1</default>
      <locale name="C">
	<short>The video view before having switched to fullscreen</short>
	<long>The video view before having switched to fullscreen (same values as video_view)</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/remote_video_window/size</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/remote_video_window/size</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>176,144</default>
      <locale name="C">
	<short>Remote video window size</short>
	<long>The size of the remote video window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/user_interface/remote_video_window/position</key>
      <applyto>/apps/@PACKAGE_NAME@/general/user_interface/remote_video_window/position</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default>0,0</default>
      <locale name="C">
	<short>Remote video window position</short>
	<long>The position of the remote video window</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/codecs/audio/maximum_jitter_buffer</key>
      <applyto>/apps/@PACKAGE_NAME@/codecs/audio/maximum_jitter_buffer</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>500</default>
      <locale name="C">
	<short>Maximum jitter buffer</short>
	<long>The maximum jitter buffer size for audio reception (in ms)</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/codecs/video/media_list</key>
      <applyto>/apps/@PACKAGE_NAME@/codecs/video/media_list</applyto>
      <owner>Ekiga</owner>
      <type>list</type>
      <list_type>string</list_type>
      <default>[h264*90000*0*SIP*1,theora*90000*0*SIP*1,h261*90000*0*H.323 SIP*1]</default>
      <locale name="C">
	<short>The video codecs list</short>
	<long>The video codecs list</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/codecs/video/maximum_video_tx_bitrate</key>
      <applyto>/apps/@PACKAGE_NAME@/codecs/video/maximum_video_tx_bitrate</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>64</default>
      <locale name="C">
	<short>Maximum TX video bitrate</short>
	<long>The maximum TX video bitrate in kbit/s. The video quality and the number of transmitted frames per second (depends on selected codec) will be dynamically adjusted above their minimum during calls to try to minimize the bandwidth to the given value</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/codecs/video/maximum_video_rx_bitrate</key>
      <applyto>/apps/@PACKAGE_NAME@/codecs/video/maximum_video_rx_bitrate</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>4096</default>
      <locale name="C">
	<short>Maximum RX video bitrate</short>
	<long>The maximum RX video bitrate in kbit/s. This value will be signaled to the peer endpoint that can adjust (if it supports it) its TX bitrate if it is above the signaled value</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/codecs/video/temporal_spatial_tradeoff</key>
      <applyto>/apps/@PACKAGE_NAME@/codecs/video/temporal_spatial_tradeoff</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>31</default>
      <locale name="C">
	<short>Temporal Spatial Trade Off</short>
	<long>Whether to prefer to sustain the max. frame rate or lower it possibly in order to keep a minimum level of (spatial) quality for all frames. 0: Highest minimal quality, 31: lowest minimal quality</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/contacts/roster_folded_groups</key>
      <applyto>/apps/@PACKAGE_NAME@/contacts/roster_folded_groups</applyto>
      <owner>Ekiga</owner>
      <type>list</type>
      <list_type>string</list_type>
      <default>[]</default>
      <locale name="C">
	<short>List of folded groups in the roster</short>
	<long></long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/contacts/show_offline_contacts</key>
      <applyto>/apps/@PACKAGE_NAME@/contacts/show_offline_contacts</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
	<short>Show offline contacts</short>
	<long>If enabled, offline contacts will be shown in the roster</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/contacts/ldap_servers</key>
      <applyto>/apps/@PACKAGE_NAME@/contacts/ldap_servers</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
	<short>LDAP servers</short>
	<long>List of configured LDAP servers</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/contacts/call_history</key>
      <applyto>/apps/@PACKAGE_NAME@/contacts/call_history</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <locale name="C">
 	<short>Calls history</short>
 	<long>The history of the 100 last calls</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/contacts/roster</key>
      <applyto>/apps/@PACKAGE_NAME@/contacts/roster</applyto>
      <owner>Ekiga</owner>
      <type>string</type>
      <locale name="C">
	<short></short>
	<long></long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/kind_of_net</key>
      <applyto>/apps/@PACKAGE_NAME@/general/kind_of_net</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>2</default>
      <locale name="C">
	<short>Kind of network selected in the assistant</short>
	<long>0: 56kbps, 1: ISDN, 2: DSL128, 3: DSL512, 4: LAN, 5: Custom</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/call_options/no_answer_timeout</key>
      <applyto>/apps/@PACKAGE_NAME@/general/call_options/no_answer_timeout</applyto>
      <owner>Ekiga</owner>
      <type>int</type>
      <default>45</default>
      <locale name="C">
	<short>No answer timeout</short>
	<long>Automatically reject or forward incoming calls if no answer is given after the specified amount of time (in seconds)</long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/@PACKAGE_NAME@/general/call_options/auto_answer</key>
      <applyto>/apps/@PACKAGE_NAME@/general/call_options/auto_answer</applyto>
      <owner>Ekiga</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
	<short>Automatic answer</short>
	<long>If enabled, automatically answer incoming calls</long>
      </locale>
    </schema>
  </schemalist>
</gconfschemafile>