summaryrefslogtreecommitdiff
path: root/src/mate-terminal.schemas.in
blob: 5eb5573d878d8bbe47feb7b54c1700afcd92daba (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
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
<mateconfschemafile>
  <schemalist>



    <!-- Global settings -->



    <schema>
      <key>/schemas/apps/mate-terminal/global/profile_list</key>
      <applyto>/apps/mate-terminal/global/profile_list</applyto>
      <owner>mate-terminal</owner>
      <type>list</type>
      <list_type>string</list_type>
      <default>[Default]</default>
      <locale name="C">
         <short>List of profiles</short>
         <long>
           List of profiles known to mate-terminal. The list contains 
           strings naming subdirectories relative to
          /apps/mate-terminal/profiles.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/global/default_profile</key>
      <applyto>/apps/mate-terminal/global/default_profile</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>Default</default>
      <locale name="C">
         <short>Profile to use for new terminals</short>
         <long>
          Profile to be used when opening a new window or tab. 
          Must be in profile_list.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/global/use_mnemonics</key>
      <applyto>/apps/mate-terminal/global/use_mnemonics</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether the menubar has access keys</short>
         <long>
          Whether to have Alt+letter access keys for the menubar. 
          They may interfere with some applications run inside the terminal
          so it's possible to turn them off.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/global/use_menu_accelerators</key>
      <applyto>/apps/mate-terminal/global/use_menu_accelerators</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether the standard GTK shortcut for menubar access is enabled</short>
         <long>
          Normally you can access the menubar with F10. This can also
          be customized via gtkrc (gtk-menu-bar-accel =
          "whatever"). This option allows the standard menubar
          accelerator to be disabled.
         </long>
      </locale>
    </schema>


    <schema>
      <key>/schemas/apps/mate-terminal/global/active_encodings</key>
      <applyto>/apps/mate-terminal/global/active_encodings</applyto>
      <owner>mate-terminal</owner>
      <type>list</type>
      <list_type>string</list_type>
      <locale name="C">
         <default><!-- Translators: Please note that this has to be a list of
         valid encodings (which are to be taken from the list in src/encoding.c).
         It has to include UTF-8 and the word 'current', which is not to be
         translated. This is provided for customization of the default encoding
         menu; see bug 144810 for an use case. In most cases, this should be
         left alone. -->[UTF-8,current]</default>
         <short>List of available encodings</short>
         <long>
          A subset of possible encodings are presented in 
          the Encoding submenu. This is a list of encodings
          to appear there. The special encoding name "current" 
          means to display the encoding of the current locale.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/global/confirm_window_close</key>
      <applyto>/apps/mate-terminal/global/confirm_window_close</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether to ask for confirmation when closing terminal windows</short>
         <long>
	 Whether to ask for confirmation when closing a terminal window which has
	 more than one open tab.
         </long>
      </locale>
    </schema>
 



    <!-- Per-profile settings -->




    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/visible_name</key>
      <applyto>/apps/mate-terminal/profiles/Default/visible_name</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <locale name="C">
         <default>Default</default>
         <short>Human-readable name of the profile</short>
         <long>
           Human-readable name of the profile.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/default_show_menubar</key>
      <applyto>/apps/mate-terminal/profiles/Default/default_show_menubar</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether to show menubar in new windows/tabs</short>
         <long>
           True if the menubar should be shown in new windows, 
           for windows/tabs with this profile.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/foreground_color</key>
      <applyto>/apps/mate-terminal/profiles/Default/foreground_color</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>#000000</default>
      <locale name="C">
         <short>Default color of text in the terminal</short>
         <long>
           Default color of text in the terminal, as a color
           specification (can be HTML-style hex digits, or
           a color name such as "red").
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/background_color</key>
      <applyto>/apps/mate-terminal/profiles/Default/background_color</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>#FFFFDD</default>
      <locale name="C">
         <short>Default color of terminal background</short>
         <long>
           Default color of terminal background, as a color
           specification (can be HTML-style hex digits, or
           a color name such as "red").
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/bold_color</key>
      <applyto>/apps/mate-terminal/profiles/Default/bold_color</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>#000000</default>
      <locale name="C">
         <short>Default color of bold text in the terminal</short>
         <long>
           Default color of bold text in the terminal, as a color
           specification (can be HTML-style hex digits, or
           a color name such as "red").
	   This is ignored if bold_color_same_as_fg is true.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/bold_color_same_as_fg</key>
      <applyto>/apps/mate-terminal/profiles/Default/bold_color_same_as_fg</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether bold text should use the same color as normal text</short>
         <long>
          If true, boldface text will be rendered using the same color as
	  normal text.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/title_mode</key>
      <applyto>/apps/mate-terminal/profiles/Default/title_mode</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>replace</default>
      <locale name="C">
         <short>What to do with dynamic title</short>
         <long>
           If the application in the terminal sets the title 
           (most typically people have their shell set up to 
           do this), the dynamically-set title can 
           erase the configured title, go before it, go after it, 
           or replace it. The possible values are "replace", 
           "before", "after", and "ignore".
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/title</key>
      <applyto>/apps/mate-terminal/profiles/Default/title</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <locale name="C">
	<default>Terminal</default>
         <short>Title for terminal</short>
         <long>
           Title to display for the terminal window or tab. 
           This title may be replaced by or combined with 
           the title set by the application inside the terminal, 
           depending on the title_mode setting.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/allow_bold</key>
      <applyto>/apps/mate-terminal/profiles/Default/allow_bold</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether to allow bold text</short>
         <long>
          If true, allow applications in the terminal to make 
          text boldface.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/silent_bell</key>
      <applyto>/apps/mate-terminal/profiles/Default/silent_bell</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Whether to silence terminal bell</short>
         <long>
          If true, don't make a noise when applications send the 
          escape sequence for the terminal bell.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/word_chars</key>
      <applyto>/apps/mate-terminal/profiles/Default/word_chars</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>-A-Za-z0-9,./?%&amp;#:_=+@~</default>
      <locale name="C">
         <short>Characters that are considered "part of a word"</short>
         <long>
           When selecting text by word, sequences of these characters
           are considered single words. Ranges can be given as 
           "A-Z". Literal hyphen (not expressing a range) should be
           the first character given.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/use_custom_default_size</key>
      <applyto>/apps/mate-terminal/profiles/Default/use_custom_default_size</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Whether to use custom terminal size for new windows</short>
         <long>
	  If true, newly created terminal windows will have custom
	  size specified by default_size_columns and default_size_rows.
         </long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/default_size_columns</key>
      <applyto>/apps/mate-terminal/profiles/Default/default_size_columns</applyto>
      <owner>mate-terminal</owner>
      <type>int</type>
      <default>80</default>
      <locale name="C">
         <short>Default number of columns</short>
         <long>
	   Number of columns in newly created terminal windows.
	   Has no effect if use_custom_default_size is not enabled.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/default_size_rows</key>
      <applyto>/apps/mate-terminal/profiles/Default/default_size_rows</applyto>
      <owner>mate-terminal</owner>
      <type>int</type>
      <default>24</default>
      <locale name="C">
         <short>Default number of rows</short>
         <long>
	   Number of rows in newly created terminal windows.
	   Has no effect if use_custom_default_size is not enabled.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/scrollbar_position</key>
      <applyto>/apps/mate-terminal/profiles/Default/scrollbar_position</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>right</default>
      <locale name="C">
         <short>Position of the scrollbar</short>
         <long>
          Where to put the terminal scrollbar. Possibilities are 
          "left", "right", and "hidden".
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/scrollback_lines</key>
      <applyto>/apps/mate-terminal/profiles/Default/scrollback_lines</applyto>
      <owner>mate-terminal</owner>
      <type>int</type>
      <default>512</default>
      <locale name="C">
         <short>Number of lines to keep in scrollback</short>
         <long>
           Number of scrollback lines to keep around. You can
           scroll back in the terminal by this number of lines;
           lines that don't fit in the scrollback are discarded.
	   If scrollback_unlimited is true, this value is ignored.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/scrollback_unlimited</key>
      <applyto>/apps/mate-terminal/profiles/Default/scrollback_unlimited</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Whether an unlimited number of lines should be kept in scrollback</short>
         <long>
	   If true, scrollback lines will never be discarded.  The scrollback
	   history is stored on disk temporarily, so this may cause the system
	   to run out of disk space if there is a lot of output to the
	   terminal.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/scroll_on_keystroke</key>
      <applyto>/apps/mate-terminal/profiles/Default/scroll_on_keystroke</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether to scroll to the bottom when a key is pressed</short>
         <long>
          If true, pressing a key jumps the scrollbar to the bottom.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/scroll_on_output</key>
      <applyto>/apps/mate-terminal/profiles/Default/scroll_on_output</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Whether to scroll to the bottom when there's new output</short>
         <long>
          If true, whenever there's new output the terminal will scroll
          to the bottom.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/exit_action</key>
      <applyto>/apps/mate-terminal/profiles/Default/exit_action</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>close</default>
      <locale name="C">
         <short>What to do with the terminal when the child command exits</short>
         <long>
           Possible values are "close" to close the terminal, and
           "restart" to restart the command.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/login_shell</key>
      <applyto>/apps/mate-terminal/profiles/Default/login_shell</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Whether to launch the command in the terminal as a login shell</short>
         <long>
          If true, the command inside the terminal will be launched as 
          a login shell. (argv[0] will have a hyphen in front of it.)
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/update_records</key>
      <applyto>/apps/mate-terminal/profiles/Default/update_records</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether to update login records when launching terminal command</short>
         <long>
        If true, the system login records utmp and wtmp will be updated when the command inside the terminal
        is launched.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/use_custom_command</key>
      <applyto>/apps/mate-terminal/profiles/Default/use_custom_command</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Whether to run a custom command instead of the shell</short>
         <long>
          If true, the value of the custom_command setting will 
         be used in place of running a shell.
         </long>
      </locale>
    </schema>

     <schema>
       <key>/schemas/apps/mate-terminal/profiles/Default/cursor_blink_mode</key>
       <applyto>/apps/mate-terminal/profiles/Default/cursor_blink_mode</applyto>
       <owner>mate-terminal</owner>
       <type>string</type>
       <default>system</default>
       <locale name="C">
          <short>Whether to blink the cursor</short>
          <long>
            The possible values are "system" to use the global cursor blinking
            settings, or "on" or "off" to set the mode explicitly.
          </long>
       </locale>
     </schema>
    
     <schema>
       <key>/schemas/apps/mate-terminal/profiles/Default/cursor_shape</key>
       <applyto>/apps/mate-terminal/profiles/Default/cursor_shape</applyto>
       <owner>mate-terminal</owner>
       <type>string</type>
       <default>block</default>
       <locale name="C">
          <short>The cursor appearance</short>
          <long>
            The possible values are "block" to use a block cursor, "ibeam" to
            use a vertical line cursor, or "underline" to use an underline cursor.
          </long>
       </locale>
     </schema>
    
     <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/custom_command</key>
      <applyto>/apps/mate-terminal/profiles/Default/custom_command</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
         <short>Custom command to use instead of the shell</short>
         <long>
          Run this command in place of the shell, if 
          use_custom_command is true.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/icon</key>
      <applyto>/apps/mate-terminal/profiles/Default/icon</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
         <short>Icon for terminal window</short>
         <long>
          Icon to use for tabs/windows containing this profile.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/palette</key>
      <applyto>/apps/mate-terminal/profiles/Default/palette</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>#2E2E34343636:#CCCC00000000:#4E4E9A9A0606:#C4C4A0A00000:#34346565A4A4:#757550507B7B:#060698209A9A:#D3D3D7D7CFCF:#555557575353:#EFEF29292929:#8A8AE2E23434:#FCFCE9E94F4F:#72729F9FCFCF:#ADAD7F7FA8A8:#3434E2E2E2E2:#EEEEEEEEECEC</default>
      <locale name="C">
         <short>Palette for terminal applications</short>
         <long>
          Terminals have a 16-color palette that applications inside 
          the terminal can use. This is that palette, in the form 
          of a colon-separated list of color names. Color names 
          should be in hex format e.g. "#FF00FF"
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/font</key>
      <applyto>/apps/mate-terminal/profiles/Default/font</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>Monospace 12</default>
      <locale name="C">
         <short>Font</short>
         <long>
          An Pango font name. Examples are "Sans 12" or "Monospace Bold 14".
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/background_type</key>
      <applyto>/apps/mate-terminal/profiles/Default/background_type</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>solid</default>
      <locale name="C">
         <short>Background type</short>
         <long>
          Type of terminal background. May be "solid" for a solid color,
          "image" for an image, or "transparent" for either real transparency if
          a compositing window manager is running, or pseudo-transparency
          otherwise.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/background_image</key>
      <applyto>/apps/mate-terminal/profiles/Default/background_image</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
         <short>Background image</short>
         <long>
           Filename of a background image.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/scroll_background</key>
      <applyto>/apps/mate-terminal/profiles/Default/scroll_background</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether to scroll background image</short>
         <long>
           If true, scroll the background image with the foreground 
           text; if false, keep the image in a fixed position and 
           scroll the text above it.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/background_darkness</key>
      <applyto>/apps/mate-terminal/profiles/Default/background_darkness</applyto>
      <owner>mate-terminal</owner>
      <type>float</type>
      <default>0.5</default>
      <locale name="C">
         <short>How much to darken the background image</short>
         <long>
          A value between 0.0 and 1.0 indicating how much to darken 
          the background image. 0.0 means no darkness, 1.0 means fully 
          dark. In the current implementation, there are only two levels of 
          darkness possible, so the setting behaves as a boolean,
          where 0.0 disables the darkening effect.          
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/backspace_binding</key>
      <applyto>/apps/mate-terminal/profiles/Default/backspace_binding</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>ascii-del</default>
      <locale name="C">
         <short>Effect of the Backspace key</short>
         <long>
          Sets what code the backspace key generates. Possible values 
          are "ascii-del" for the ASCII DEL character, 
          "control-h" for Control-H (AKA the ASCII BS character), 
          "escape-sequence" for the escape sequence typically 
          bound to backspace or delete. "ascii-del" is normally 
          considered the correct setting for the Backspace key.
         </long>
      </locale>
    </schema>


    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/delete_binding</key>
      <applyto>/apps/mate-terminal/profiles/Default/delete_binding</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>escape-sequence</default>
      <locale name="C">
         <short>Effect of the Delete key</short>
         <long>
          Sets what code the delete key generates. Possible values 
          are "ascii-del" for the ASCII DEL character, 
          "control-h" for Control-H (AKA the ASCII BS character), 
          "escape-sequence" for the escape sequence typically 
          bound to backspace or delete. "escape-sequence" is normally 
          considered the correct setting for the Delete key.
         </long>
      </locale>
    </schema>


    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/use_theme_colors</key>
      <applyto>/apps/mate-terminal/profiles/Default/use_theme_colors</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether to use the colors from the theme for the terminal widget</short>
         <long>
        If true, the theme color scheme used for text entry boxes will 
        be used for the terminal, instead of colors provided by the user.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/use_system_font</key>
      <applyto>/apps/mate-terminal/profiles/Default/use_system_font</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether to use the system font</short>
         <long>
          If true, the terminal will use the desktop-global standard
          font if it's monospace (and the most similar font it can
          come up with otherwise).
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/profiles/Default/use_skey</key>
      <applyto>/apps/mate-terminal/profiles/Default/use_skey</applyto>
      <owner>mate-terminal</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short><!-- Translators: S/Key is the name of an application, so it should
         not be translated. -->Highlight S/Key challenges</short>
         <long><!-- Translators: S/Key is the name of an application, so it should
         not be translated. -->Popup a dialog when an S/Key challenge response query is
	 detected and clicked on.  Typing a password into the dialog
         will send it to the terminal.
         </long>
      </locale>
    </schema>

    <!-- Keybindings -->

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/new_tab</key>
      <applyto>/apps/mate-terminal/keybindings/new_tab</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Ctrl&gt;&lt;Shift&gt;t</default>
      <locale name="C">
         <short>Keyboard shortcut to open a new tab</short>
         <long>
          Keyboard shortcut key for opening a new tab. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/new_window</key>
      <applyto>/apps/mate-terminal/keybindings/new_window</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Ctrl&gt;&lt;Shift&gt;n</default>
      <locale name="C">
         <short>Keyboard shortcut to open a new window</short>
         <long>
          Keyboard shortcut key for opening a new window. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/new_profile</key>
      <applyto>/apps/mate-terminal/keybindings/new_profile</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <locale name="C">
         <short>Keyboard shortcut to create a new profile</short>
         <long>
          Keyboard shortcut key for bringing up the dialog for profile
	  creation. Expressed as a string in the same format used for
	  GTK+ resource files.  If you set the option to the special
	  string "disabled", then there will be no keyboard shortcut for this
	  action. 
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/save_contents</key>
      <applyto>/apps/mate-terminal/keybindings/save_contents</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>disabled</default>
      <locale name="C">
          <short>Keyboard shortcut to save the current tab contents to file</short>
          <long>
          Keyboard shortcut key to save the current tab contents to a file. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
          </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/close_tab</key>
      <applyto>/apps/mate-terminal/keybindings/close_tab</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Ctrl&gt;&lt;Shift&gt;w</default>
      <locale name="C">
         <short>Keyboard shortcut to close a tab</short>
         <long>
          Keyboard shortcut key for closing a tab. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/close_window</key>
      <applyto>/apps/mate-terminal/keybindings/close_window</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Ctrl&gt;&lt;Shift&gt;q</default>
      <locale name="C">
         <short>Keyboard shortcut to close a window</short>
         <long>
          Keyboard shortcut key for closing a window. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>


    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/copy</key>
      <applyto>/apps/mate-terminal/keybindings/copy</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>  
      <default>&lt;Ctrl&gt;&lt;Shift&gt;c</default>
      <locale name="C">
         <short>Keyboard shortcut to copy text</short>
         <long>
          Keyboard shortcut key for copying selected text to the
          clipboard. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>


    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/paste</key>
      <applyto>/apps/mate-terminal/keybindings/paste</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Ctrl&gt;&lt;Shift&gt;v</default>
      <locale name="C">
         <short>Keyboard shortcut to paste text</short>
         <long>
          Keyboard shortcut key for pasting the contents of the
          clipboard into the terminal. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/full_screen</key>
      <applyto>/apps/mate-terminal/keybindings/full_screen</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>F11</default>
      <locale name="C">
         <short>Keyboard shortcut to toggle full screen mode</short>
         <long>
          Keyboard shortcut key for toggling full screen mode. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>
    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/toggle_menubar</key>
      <applyto>/apps/mate-terminal/keybindings/toggle_menubar</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <locale name="C">
         <short>Keyboard shortcut to toggle the visibility of the menubar</short>
         <long>
          Keyboard shortcut key to toggle the visibility of the menubar. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/set_terminal_title</key>
      <applyto>/apps/mate-terminal/keybindings/set_terminal_title</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <locale name="C">
         <short>Keyboard shortcut to set the terminal title</short>
         <long>
          Keyboard shortcut key to set the terminal title. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/reset</key>
      <applyto>/apps/mate-terminal/keybindings/reset</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <locale name="C">
         <short>Keyboard shortcut to reset the terminal</short>
         <long>
          Keyboard shortcut key to reset the terminal. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/reset_and_clear</key>
      <applyto>/apps/mate-terminal/keybindings/reset_and_clear</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <locale name="C">
         <short>Keyboard shortcut to reset and clear the terminal</short>
         <long>
          Keyboard shortcut key to reset and clear the terminal. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/prev_tab</key>
      <applyto>/apps/mate-terminal/keybindings/prev_tab</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Control&gt;Page_Up</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to the previous tab</short>
         <long>
          Keyboard shortcut key to switch to the previous tab. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/next_tab</key>
      <applyto>/apps/mate-terminal/keybindings/next_tab</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Control&gt;Page_Down</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to the next tab</short>
         <long>
          Keyboard shortcut key to switch to the next tab. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/move_tab_left</key>
      <applyto>/apps/mate-terminal/keybindings/move_tab_left</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Ctrl&gt;&lt;Shift&gt;Page_Up</default>
      <locale name="C">
         <short>Accelerator to move the current tab to the left.</short>
         <long>
          Accelerator key to move the current tab to the left. Expressed as a
	  string in the same format used for GTK+ resource files. If you set
	  the option to the special string "disabled", then there will be no
	  keybinding for this action.
         </long>
      </locale>
    </schema>
    
    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/move_tab_right</key>
      <applyto>/apps/mate-terminal/keybindings/move_tab_right</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Ctrl&gt;&lt;Shift&gt;Page_Down</default>
      <locale name="C">
         <short>Accelerator to move the current tab to the right.</short>
         <long>
          Accelerator key to move the current tab to the right. Expressed as a
	  string in the same format used for GTK+ resource files. If you set
	  the option to the special string "disabled", then there will be no
	  keybinding for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/detach_tab</key>
      <applyto>/apps/mate-terminal/keybindings/detach_tab</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <locale name="C">
         <short>Accelerator to detach current tab.</short>
         <long>
          Accelerator key to detach current tab. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there 
          will be no keybinding for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_1</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_1</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Alt&gt;1</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 1</short>
         <long>
          Keyboard shortcut key for switch to tab 1. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_2</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_2</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Alt&gt;2</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 2</short>
         <long>
          Keyboard shortcut key for switch to tab 2. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_3</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_3</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Alt&gt;3</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 3</short>
         <long>
          Keyboard shortcut key for switch to tab 3. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_4</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_4</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Alt&gt;4</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 4</short>
         <long>
          Keyboard shortcut key for switch to tab 4. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_5</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_5</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Alt&gt;5</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 5</short>
         <long>
          Keyboard shortcut key for switch to tab 5. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_6</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_6</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Alt&gt;6</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 6</short>
         <long>
          Keyboard shortcut key for switch to tab 6. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_7</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_7</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Alt&gt;7</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 7</short>
         <long>
          Keyboard shortcut key for switch to tab 7. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_8</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_8</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Alt&gt;8</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 8</short>
         <long>
          Keyboard shortcut key for switch to tab 8. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_9</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_9</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Alt&gt;9</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 9</short>
         <long>
          Keyboard shortcut key for switch to tab 9. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_10</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_10</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Alt&gt;0</default>
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 10</short>
         <long>
          Keyboard shortcut key for switch to tab 10. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_11</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_11</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
<!-- no default -->
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 11</short>
         <long>
          Keyboard shortcut key for switch to tab 11. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/switch_to_tab_12</key>
      <applyto>/apps/mate-terminal/keybindings/switch_to_tab_12</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
<!-- no default -->
      <locale name="C">
         <short>Keyboard shortcut to switch to tab 12</short>
         <long>
          Keyboard shortcut key for switch to tab 12. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/help</key>
      <applyto>/apps/mate-terminal/keybindings/help</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>F1</default>
      <locale name="C">
         <short>Keyboard shortcut to launch help</short>
         <long>
          Keyboard shortcut key for launching help. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/zoom_in</key>
      <applyto>/apps/mate-terminal/keybindings/zoom_in</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Ctrl&gt;plus</default>
      <locale name="C">
         <short>Keyboard shortcut to make font larger</short>
         <long>
          Keyboard shortcut key for making font larger. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/zoom_out</key>
      <applyto>/apps/mate-terminal/keybindings/zoom_out</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Ctrl&gt;minus</default>
      <locale name="C">
         <short>Keyboard shortcut to make font smaller</short>
         <long>
          Keyboard shortcut key for making font smaller. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/mate-terminal/keybindings/zoom_normal</key>
      <applyto>/apps/mate-terminal/keybindings/zoom_normal</applyto>
      <owner>mate-terminal</owner>
      <type>string</type>
      <default>&lt;Ctrl&gt;0</default>
      <locale name="C">
         <short>Keyboard shortcut to make font normal-size</short>
         <long>
          Keyboard shortcut key for making font the normal size. Expressed as a string
          in the same format used for GTK+ resource files.
          If you set the option to the special string "disabled", then there
          will be no keyboard shortcut for this action.
         </long>
      </locale>
    </schema>

  </schemalist>
</mateconfschemafile>