~lee-crabtree/terminator/terminator

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
# Malayalam translation for terminator
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the terminator package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: terminator\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2013-01-30 13:17+0000\n"
"PO-Revision-Date: 2012-01-13 19:09+0000\n"
"Last-Translator: Ruthwik <Unknown>\n"
"Language-Team: Malayalam <ml@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-02-01 05:18+0000\n"
"X-Generator: Launchpad (build 16916)\n"

#: ../data/terminator.desktop.in.h:1
msgid "Terminator"
msgstr "ടെര്‍മിനേറ്റര്‍"

#: ../data/terminator.desktop.in.h:2
msgid "Multiple terminals in one window"
msgstr "ഒരു ജാലകത്തില്‍ ഒന്നിലധികം ടെര്‍മിനലുകള്‍"

#: ../terminatorlib/container.py:163
msgid "Close?"
msgstr "ക്ലോസ്?"

#: ../terminatorlib/container.py:170
msgid "Close _Terminals"
msgstr "ക്ലോസ് _ടെര്‍മിനലുകള്‍"

#: ../terminatorlib/container.py:172
msgid "<big><b>Close multiple terminals?</b></big>"
msgstr "<big><b>ഒന്നിലധികം ടെര്‍മിനലുകള്‍ ക്ലോസ്  ചെയ്യണോ?</b></big>"

#: ../terminatorlib/container.py:175
#, python-format
msgid ""
"This %s has several terminals open. Closing the %s will also close all "
"terminals within it."
msgstr ""

#: ../terminatorlib/container.py:192
msgid "Do not show this message next time"
msgstr ""

#: ../terminatorlib/encoding.py:35
msgid "Current Locale"
msgstr "നിലവിലുളള ലോക്കെയില്‍"

#: ../terminatorlib/encoding.py:36 ../terminatorlib/encoding.py:49
#: ../terminatorlib/encoding.py:68 ../terminatorlib/encoding.py:91
#: ../terminatorlib/encoding.py:102
msgid "Western"
msgstr "പടിഞ്ഞാറന്‌"

#: ../terminatorlib/encoding.py:37 ../terminatorlib/encoding.py:69
#: ../terminatorlib/encoding.py:81 ../terminatorlib/encoding.py:100
msgid "Central European"
msgstr "മധ്യയൂറോപ്പ്യന്‍"

#: ../terminatorlib/encoding.py:38
msgid "South European"
msgstr "ദക്ഷിണയൂറോപ്പ്യന്‍"

#: ../terminatorlib/encoding.py:39 ../terminatorlib/encoding.py:47
#: ../terminatorlib/encoding.py:107
msgid "Baltic"
msgstr "ബാള്‍ട്ടിക്"

#. [False, "JOHAB", _("Korean") ],
#: ../terminatorlib/encoding.py:40 ../terminatorlib/encoding.py:70
#: ../terminatorlib/encoding.py:76 ../terminatorlib/encoding.py:78
#: ../terminatorlib/encoding.py:83 ../terminatorlib/encoding.py:101
msgid "Cyrillic"
msgstr "സിറിലിക്"

#: ../terminatorlib/encoding.py:41 ../terminatorlib/encoding.py:73
#: ../terminatorlib/encoding.py:80 ../terminatorlib/encoding.py:106
msgid "Arabic"
msgstr "അറബിക്"

#: ../terminatorlib/encoding.py:42 ../terminatorlib/encoding.py:86
#: ../terminatorlib/encoding.py:103
msgid "Greek"
msgstr "ഗ്രീക്ക്"

#: ../terminatorlib/encoding.py:43
msgid "Hebrew Visual"
msgstr "ഹീബ്രു വിഷ്വല്‍"

#: ../terminatorlib/encoding.py:44 ../terminatorlib/encoding.py:72
#: ../terminatorlib/encoding.py:89 ../terminatorlib/encoding.py:105
msgid "Hebrew"
msgstr "ഹീബ്രൂ"

#: ../terminatorlib/encoding.py:45 ../terminatorlib/encoding.py:71
#: ../terminatorlib/encoding.py:93 ../terminatorlib/encoding.py:104
msgid "Turkish"
msgstr "ടര്‍ക്കിഷ്"

#: ../terminatorlib/encoding.py:46
msgid "Nordic"
msgstr "നോര്‍ഡിക്"

#: ../terminatorlib/encoding.py:48
msgid "Celtic"
msgstr "സെല്‍റ്റിക്"

#: ../terminatorlib/encoding.py:50 ../terminatorlib/encoding.py:92
msgid "Romanian"
msgstr "റൊമേനിയന്‍"

#. [False, "UTF-7", _("Unicode") ],
#: ../terminatorlib/encoding.py:52
msgid "Unicode"
msgstr "യൂണികോഡ്"

#. [False, "UTF-16", _("Unicode") ],
#. [False, "UCS-2", _("Unicode") ],
#. [False, "UCS-4", _("Unicode") ],
#: ../terminatorlib/encoding.py:56
msgid "Armenian"
msgstr "അര്‍മേനിയന്‍"

#: ../terminatorlib/encoding.py:57 ../terminatorlib/encoding.py:58
#: ../terminatorlib/encoding.py:62
msgid "Chinese Traditional"
msgstr "പരമ്പരാഗത ചൈനീസ്"

#: ../terminatorlib/encoding.py:59
msgid "Cyrillic/Russian"
msgstr "സിറില്ലിക്ക്/റഷ്യന്‍"

#: ../terminatorlib/encoding.py:60 ../terminatorlib/encoding.py:74
#: ../terminatorlib/encoding.py:95
msgid "Japanese"
msgstr "ജാപ്പനീസ്"

#: ../terminatorlib/encoding.py:61 ../terminatorlib/encoding.py:75
#: ../terminatorlib/encoding.py:98
msgid "Korean"
msgstr "കൊറിയന്‍"

#: ../terminatorlib/encoding.py:63 ../terminatorlib/encoding.py:64
#: ../terminatorlib/encoding.py:65 ../terminatorlib/encoding.py:67
msgid "Chinese Simplified"
msgstr "ലളിതമാക്കിയ ചൈനീസ്"

#: ../terminatorlib/encoding.py:66
msgid "Georgian"
msgstr "ജോര്‍ജ്യന്‍"

#: ../terminatorlib/encoding.py:79 ../terminatorlib/encoding.py:94
msgid "Cyrillic/Ukrainian"
msgstr "സിറിളിക്/ഉക്രേനിയന്‍"

#: ../terminatorlib/encoding.py:82
msgid "Croatian"
msgstr "ക്രൊയേഷ്യന്‍"

#: ../terminatorlib/encoding.py:84
msgid "Hindi"
msgstr "ഹിന്ദി"

#: ../terminatorlib/encoding.py:85
msgid "Persian"
msgstr "പേര്‍ഷ്യന്‍"

#: ../terminatorlib/encoding.py:87
msgid "Gujarati"
msgstr "ഗുജറാത്തി"

#: ../terminatorlib/encoding.py:88
msgid "Gurmukhi"
msgstr "ഗുര്‍മുഖി"

#: ../terminatorlib/encoding.py:90
msgid "Icelandic"
msgstr "ഐസ്‌ലൈന്‍ഡിക്"

#: ../terminatorlib/encoding.py:96 ../terminatorlib/encoding.py:99
#: ../terminatorlib/encoding.py:108
msgid "Vietnamese"
msgstr "വിയറ്റ്നാമീസ്"

#: ../terminatorlib/encoding.py:97
msgid "Thai"
msgstr "തായി"

#: ../terminatorlib/notebook.py:305
msgid "tab"
msgstr "ടാബ്"

#: ../terminatorlib/notebook.py:469
msgid "Close Tab"
msgstr "റ്റാബ് അടയ്‍ക്കുക"

#: ../terminatorlib/optionparse.py:48
msgid "Display program version"
msgstr "പ്രോഗ്രാം പതിപ്പ് കാണിക്കുക"

#: ../terminatorlib/optionparse.py:50
msgid "Maximise the window"
msgstr "ജാലകം വലുതാക്കുക"

#: ../terminatorlib/optionparse.py:52
msgid "Make the window fill the screen"
msgstr "ജാലകം സ്ക്രീനില്‍ നിറക്കുക"

#: ../terminatorlib/optionparse.py:54
msgid "Disable window borders"
msgstr "ജാലകത്തിന്റെ അതിരുകള്‍ ഇല്ലാതാക്കുക"

#: ../terminatorlib/optionparse.py:56
msgid "Hide the window at startup"
msgstr "ജാലകം സ്റ്റാര്‍ട്ടപ്പ് വേളയില്‍ ഒളിപ്പിക്കുക"

#: ../terminatorlib/optionparse.py:58
msgid "Specify a title for the window"
msgstr ""

#: ../terminatorlib/optionparse.py:60
msgid "Set the preferred size and position of the window(see X man page)"
msgstr ""

#: ../terminatorlib/optionparse.py:63
msgid "Specify a command to execute inside the terminal"
msgstr ""

#: ../terminatorlib/optionparse.py:65
msgid "Specify a config file"
msgstr ""

#: ../terminatorlib/optionparse.py:68
msgid ""
"Use the rest of the command line as a command to execute inside the "
"terminal, and its arguments"
msgstr ""

#: ../terminatorlib/optionparse.py:71
msgid "Set the working directory"
msgstr ""

#: ../terminatorlib/optionparse.py:72
msgid "Set a custom name (WM_CLASS) property on the window"
msgstr ""

#: ../terminatorlib/optionparse.py:74
msgid "Set a custom icon for the window (by file or name)"
msgstr ""

#: ../terminatorlib/optionparse.py:77
msgid "Set a custom WM_WINDOW_ROLE property on the window"
msgstr ""

#: ../terminatorlib/optionparse.py:79
msgid "Select a layout"
msgstr ""

#: ../terminatorlib/optionparse.py:81
msgid "Use a different profile as the default"
msgstr ""

#: ../terminatorlib/optionparse.py:83
msgid "Disable DBus"
msgstr ""

#: ../terminatorlib/optionparse.py:85
msgid "Enable debugging information (twice for debug server)"
msgstr ""

#: ../terminatorlib/optionparse.py:87
msgid "Comma separated list of classes to limit debugging to"
msgstr ""

#: ../terminatorlib/optionparse.py:89
msgid "Comma separated list of methods to limit debugging to"
msgstr ""

#: ../terminatorlib/optionparse.py:91
msgid "If Terminator is already running, just open a new tab"
msgstr ""

#: ../terminatorlib/plugins/activitywatch.py:22
msgid "ActivityWatch plugin unavailable: please install python-notify"
msgstr ""

#: ../terminatorlib/plugins/activitywatch.py:45
msgid "Watch for activity"
msgstr ""

#: ../terminatorlib/plugins/activitywatch.py:48
msgid "Stop watching for activity"
msgstr ""

#: ../terminatorlib/plugins/activitywatch.py:110
msgid "Watch for silence"
msgstr ""

#: ../terminatorlib/plugins/activitywatch.py:113
msgid "Stop watching for silence"
msgstr ""

#: ../terminatorlib/plugins/custom_commands.py:50
msgid "Custom Commands"
msgstr ""

#: ../terminatorlib/plugins/custom_commands.py:106
msgid "Custom Commands Configuration"
msgstr ""

#: ../terminatorlib/plugins/custom_commands.py:238
msgid "New Command"
msgstr "പുതിയ നിര്‍ദ്ദേശം"

#: ../terminatorlib/plugins/custom_commands.py:248
msgid "Enabled:"
msgstr ""

#: ../terminatorlib/plugins/custom_commands.py:254
msgid "Name:"
msgstr "പേര്:"

#: ../terminatorlib/plugins/custom_commands.py:260
msgid "Command:"
msgstr "ആജ്ഞ:"

#: ../terminatorlib/plugins/custom_commands.py:296
#: ../terminatorlib/plugins/custom_commands.py:406
msgid "You need to define a name and command"
msgstr ""

#: ../terminatorlib/plugins/custom_commands.py:313
#: ../terminatorlib/plugins/custom_commands.py:425
#, python-format
msgid "Name *%s* already exist"
msgstr ""

#: ../terminatorlib/plugins/terminalshot.py:28
msgid "Terminal screenshot"
msgstr ""

#: ../terminatorlib/preferences.glade.h:1
msgid "Automatic"
msgstr ""

#: ../terminatorlib/preferences.glade.h:2
msgid "Control-H"
msgstr ""

#: ../terminatorlib/preferences.glade.h:3
msgid "ASCII DEL"
msgstr ""

#: ../terminatorlib/preferences.glade.h:4
msgid "Escape sequence"
msgstr ""

#: ../terminatorlib/preferences.glade.h:5
msgid "Exit the terminal"
msgstr ""

#: ../terminatorlib/preferences.glade.h:6
msgid "Restart the command"
msgstr ""

#: ../terminatorlib/preferences.glade.h:7
msgid "Hold the terminal open"
msgstr ""

#: ../terminatorlib/preferences.glade.h:8
msgid "Black on light yellow"
msgstr ""

#: ../terminatorlib/preferences.glade.h:9
msgid "Black on white"
msgstr ""

#: ../terminatorlib/preferences.glade.h:10
msgid "Grey on black"
msgstr ""

#: ../terminatorlib/preferences.glade.h:11
msgid "Green on black"
msgstr ""

#: ../terminatorlib/preferences.glade.h:12
msgid "White on black"
msgstr ""

#: ../terminatorlib/preferences.glade.h:13
msgid "Orange on black"
msgstr ""

#: ../terminatorlib/preferences.glade.h:14
msgid "Ambience"
msgstr ""

#: ../terminatorlib/preferences.glade.h:15
msgid "Custom"
msgstr ""

#: ../terminatorlib/preferences.glade.h:16
msgid "Block"
msgstr ""

#: ../terminatorlib/preferences.glade.h:17
msgid "Underline"
msgstr ""

#: ../terminatorlib/preferences.glade.h:18
msgid "I-Beam"
msgstr ""

#: ../terminatorlib/preferences.glade.h:19
msgid "GNOME Default"
msgstr ""

#: ../terminatorlib/preferences.glade.h:20
msgid "Click to focus"
msgstr ""

#: ../terminatorlib/preferences.glade.h:21
msgid "Follow mouse pointer"
msgstr ""

#: ../terminatorlib/preferences.glade.h:22
msgid "Tango"
msgstr ""

#: ../terminatorlib/preferences.glade.h:23
msgid "Linux"
msgstr ""

#: ../terminatorlib/preferences.glade.h:24
msgid "XTerm"
msgstr ""

#: ../terminatorlib/preferences.glade.h:25
msgid "Rxvt"
msgstr ""

#: ../terminatorlib/preferences.glade.h:26
msgid "On the left side"
msgstr ""

#: ../terminatorlib/preferences.glade.h:27
msgid "On the right side"
msgstr ""

#: ../terminatorlib/preferences.glade.h:28
msgid "Disabled"
msgstr ""

#: ../terminatorlib/preferences.glade.h:29
msgid "Top"
msgstr ""

#: ../terminatorlib/preferences.glade.h:30
msgid "Bottom"
msgstr ""

#: ../terminatorlib/preferences.glade.h:31
msgid "Left"
msgstr ""

#: ../terminatorlib/preferences.glade.h:32
msgid "Right"
msgstr ""

#: ../terminatorlib/preferences.glade.h:33
msgid "Hidden"
msgstr ""

#: ../terminatorlib/preferences.glade.h:34
msgid "Normal"
msgstr ""

#: ../terminatorlib/preferences.glade.h:35
msgid "Maximised"
msgstr ""

#: ../terminatorlib/preferences.glade.h:36
msgid "Fullscreen"
msgstr ""

#: ../terminatorlib/preferences.glade.h:37
msgid "default"
msgstr ""

#: ../terminatorlib/preferences.glade.h:38
msgid "Terminator Preferences"
msgstr ""

#: ../terminatorlib/preferences.glade.h:39
msgid "Window geometry hints"
msgstr ""

#: ../terminatorlib/preferences.glade.h:40
msgid "Window state"
msgstr ""

#: ../terminatorlib/preferences.glade.h:41
msgid "Window borders"
msgstr ""

#: ../terminatorlib/preferences.glade.h:42
msgid "Tab position"
msgstr ""

#: ../terminatorlib/preferences.glade.h:43
msgid "Mouse focus"
msgstr ""

#: ../terminatorlib/preferences.glade.h:44
msgid "Terminal separator size"
msgstr ""

#: ../terminatorlib/preferences.glade.h:45
msgid "Hide from taskbar"
msgstr ""

#: ../terminatorlib/preferences.glade.h:46
msgid "Always on top"
msgstr ""

#: ../terminatorlib/preferences.glade.h:47
msgid "Hide on lose focus"
msgstr ""

#: ../terminatorlib/preferences.glade.h:48
msgid "Show on all workspaces"
msgstr ""

#: ../terminatorlib/preferences.glade.h:49
msgid "DBus server"
msgstr ""

#: ../terminatorlib/preferences.glade.h:50
msgid "Hide  size from title"
msgstr ""

#: ../terminatorlib/preferences.glade.h:51
msgid "Unfocused terminal font brightness"
msgstr ""

#: ../terminatorlib/preferences.glade.h:52
msgid "Use custom URL handler"
msgstr ""

#: ../terminatorlib/preferences.glade.h:53
msgid "Custom URL handler"
msgstr ""

#: ../terminatorlib/preferences.glade.h:54
msgid "Re-use profiles for new terminals"
msgstr ""

#: ../terminatorlib/preferences.glade.h:55
msgid "<b>Titlebar</b>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:56
msgid "Receiving terminal"
msgstr ""

#: ../terminatorlib/preferences.glade.h:57
msgid "Focused terminal"
msgstr ""

#: ../terminatorlib/preferences.glade.h:58
msgid "Inactive terminal"
msgstr ""

#: ../terminatorlib/preferences.glade.h:59
msgid "Font colour"
msgstr ""

#: ../terminatorlib/preferences.glade.h:60
msgid "Background"
msgstr ""

#: ../terminatorlib/preferences.glade.h:61
msgid "Global"
msgstr ""

#: ../terminatorlib/preferences.glade.h:62
msgid "_Use the system fixed width font"
msgstr ""

#: ../terminatorlib/preferences.glade.h:63
msgid "_Font:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:64
msgid "Choose A Terminal Font"
msgstr ""

#: ../terminatorlib/preferences.glade.h:65
msgid "_Allow bold text"
msgstr ""

#: ../terminatorlib/preferences.glade.h:66
msgid "Anti-alias text"
msgstr ""

#: ../terminatorlib/preferences.glade.h:67
msgid "Show titlebar"
msgstr ""

#: ../terminatorlib/preferences.glade.h:68
msgid "Copy on selection"
msgstr ""

#: ../terminatorlib/preferences.glade.h:69
msgid "Select-by-_word characters:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:70
msgid "<b>Cursor</b>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:71
msgid "Cursor colour:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:72
msgid "Cursor _shape:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:73
msgid "Cursor blink"
msgstr ""

#: ../terminatorlib/preferences.glade.h:74
msgid "<b>Terminal bell</b>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:75
msgid "Titlebar icon"
msgstr ""

#: ../terminatorlib/preferences.glade.h:76
msgid "Visual flash"
msgstr ""

#: ../terminatorlib/preferences.glade.h:77
msgid "Audible beep"
msgstr ""

#: ../terminatorlib/preferences.glade.h:78
msgid "Window list flash"
msgstr ""

#: ../terminatorlib/preferences.glade.h:79
msgid "General"
msgstr ""

#: ../terminatorlib/preferences.glade.h:80
msgid "<b>Command</b>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:81
msgid "_Run command as a login shell"
msgstr ""

#: ../terminatorlib/preferences.glade.h:82
msgid "_Update login records when command is launched"
msgstr ""

#: ../terminatorlib/preferences.glade.h:83
msgid "Ru_n a custom command instead of my shell"
msgstr ""

#: ../terminatorlib/preferences.glade.h:84
msgid "Custom co_mmand:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:85
msgid "When command _exits:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:86
msgid "Command"
msgstr ""

#: ../terminatorlib/preferences.glade.h:87
msgid "<b>Foreground and Background</b>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:88
msgid "_Text color:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:89
msgid "_Use colors from system theme"
msgstr ""

#: ../terminatorlib/preferences.glade.h:90
msgid "_Background color:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:91
msgid "Built-in sche_mes:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:92
msgid "Choose Terminal Text Color"
msgstr ""

#: ../terminatorlib/preferences.glade.h:93
msgid "Choose Terminal Background Color"
msgstr ""

#: ../terminatorlib/preferences.glade.h:94
msgid "<b>Palette</b>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:95
msgid "Built-in _schemes:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:96
msgid ""
"<small><i><b>Note:</b> Terminal applications have these colors available to "
"them.</i></small>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:97
msgid "Color p_alette:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:98
msgid "Colors"
msgstr ""

#: ../terminatorlib/preferences.glade.h:99
msgid "_Solid color"
msgstr ""

#: ../terminatorlib/preferences.glade.h:100
msgid "_Background image"
msgstr ""

#: ../terminatorlib/preferences.glade.h:101
msgid "Image _file:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:102
msgid "Select Background Image"
msgstr ""

#: ../terminatorlib/preferences.glade.h:103
msgid "Background image _scrolls"
msgstr ""

#: ../terminatorlib/preferences.glade.h:104
msgid "_Transparent background"
msgstr ""

#: ../terminatorlib/preferences.glade.h:105
msgid "S_hade transparent or image background:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:106
msgid "<small><i>None</i></small>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:107
msgid "<small><i>Maximum</i></small>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:108
msgid "Use keystrokes to scroll on _alternate screen"
msgstr ""

#: ../terminatorlib/preferences.glade.h:109
msgid "Scroll on _keystroke"
msgstr ""

#: ../terminatorlib/preferences.glade.h:110
msgid "Scroll on _output"
msgstr ""

#: ../terminatorlib/preferences.glade.h:111
msgid "lines"
msgstr ""

#: ../terminatorlib/preferences.glade.h:112
msgid "_Scrollbar is:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:113
msgid "Scroll_back:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:114
msgid "Infinite Scrollback"
msgstr ""

#: ../terminatorlib/preferences.glade.h:115
msgid "Scrolling"
msgstr ""

#: ../terminatorlib/preferences.glade.h:116
msgid ""
"<small><i><b>Note:</b> These options may cause some applications to behave "
"incorrectly.  They are only here to allow you to work around certain "
"applications and operating systems that expect different terminal "
"behavior.</i></small>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:117
msgid "_Delete key generates:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:118
msgid "_Backspace key generates:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:119
msgid "_Reset Compatibility Options to Defaults"
msgstr ""

#: ../terminatorlib/preferences.glade.h:120
msgid "<b>Encoding</b>"
msgstr ""

#: ../terminatorlib/preferences.glade.h:121
msgid "Default:"
msgstr ""

#: ../terminatorlib/preferences.glade.h:122
msgid "Compatibility"
msgstr ""

#: ../terminatorlib/preferences.glade.h:123
#: ../terminatorlib/terminal_popup_menu.py:190
msgid "Profiles"
msgstr ""

#: ../terminatorlib/preferences.glade.h:124
msgid "Profile"
msgstr ""

#: ../terminatorlib/preferences.glade.h:125
msgid "Custom command"
msgstr ""

#: ../terminatorlib/preferences.glade.h:126
msgid "Layouts"
msgstr ""

#: ../terminatorlib/preferences.glade.h:127
msgid "Keybindings"
msgstr ""

#: ../terminatorlib/preferences.glade.h:128
msgid "This plugin has no configuration options"
msgstr ""

#: ../terminatorlib/preferences.glade.h:129
msgid "Plugins"
msgstr ""

#: ../terminatorlib/prefseditor.py:979 ../terminatorlib/prefseditor.py:984
msgid "New Profile"
msgstr "പുതിയ പ്രൊഫൈല്‍"

#: ../terminatorlib/prefseditor.py:1024 ../terminatorlib/prefseditor.py:1029
msgid "New Layout"
msgstr ""

#. Label
#: ../terminatorlib/searchbar.py:50
msgid "Search:"
msgstr "തിരയുക:"

#: ../terminatorlib/searchbar.py:66
msgid "Close Search bar"
msgstr ""

#. Next Button
#: ../terminatorlib/searchbar.py:71
msgid "Next"
msgstr ""

#. Previous Button
#: ../terminatorlib/searchbar.py:77
msgid "Prev"
msgstr ""

#: ../terminatorlib/searchbar.py:124
msgid "Searching scrollback"
msgstr ""

#: ../terminatorlib/searchbar.py:135 ../terminatorlib/searchbar.py:156
msgid "No more results"
msgstr ""

#: ../terminatorlib/searchbar.py:171
msgid "Found at row"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:58
msgid "_Send email to..."
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:59
msgid "_Copy email address"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:61
msgid "Ca_ll VoIP address"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:62
msgid "_Copy VoIP address"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:83
msgid "_Open link"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:85
msgid "_Copy address"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:113
msgid "Split H_orizontally"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:123
msgid "Split V_ertically"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:133
msgid "Open _Tab"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:139
msgid "Open _Debug Tab"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:153
msgid "_Zoom terminal"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:157
msgid "Ma_ximise terminal"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:163
msgid "_Restore all terminals"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:170
msgid "Grouping"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:177
msgid "Show _scrollbar"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:183
msgid "_Preferences"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:234
msgid "Encodings"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:249
msgid "Default"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:252
msgid "User defined"
msgstr ""

#: ../terminatorlib/terminal_popup_menu.py:268
msgid "Other Encodings"
msgstr ""

#: ../terminatorlib/terminal.py:388
msgid "New group..."
msgstr ""

#: ../terminatorlib/terminal.py:393
msgid "None"
msgstr ""

#: ../terminatorlib/terminal.py:409
#, python-format
msgid "Remove group %s"
msgstr ""

#: ../terminatorlib/terminal.py:414
msgid "G_roup all in tab"
msgstr ""

#: ../terminatorlib/terminal.py:419
msgid "Ungr_oup all in tab"
msgstr ""

#: ../terminatorlib/terminal.py:424
msgid "Remove all groups"
msgstr ""

#: ../terminatorlib/terminal.py:431
#, python-format
msgid "Close group %s"
msgstr ""

#: ../terminatorlib/terminal.py:440
msgid "Broadcast all"
msgstr ""

#: ../terminatorlib/terminal.py:441
msgid "Broadcast group"
msgstr ""

#: ../terminatorlib/terminal.py:442
msgid "Broadcast off"
msgstr ""

#: ../terminatorlib/terminal.py:455
msgid "Split to this group"
msgstr ""

#: ../terminatorlib/terminal.py:460
msgid "Autoclean groups"
msgstr ""

#: ../terminatorlib/terminal.py:467
msgid "Insert terminal number"
msgstr ""

#: ../terminatorlib/terminal.py:471
msgid "Insert padded terminal number"
msgstr ""

#: ../terminatorlib/terminal.py:1273
msgid "Unable to find a shell"
msgstr ""

#: ../terminatorlib/terminal.py:1301
msgid "Unable to start shell:"
msgstr ""

#: ../terminatorlib/terminal.py:1683
msgid "Rename Window"
msgstr ""

#: ../terminatorlib/terminal.py:1692
msgid "Enter a new title for the Terminator window..."
msgstr ""

#: ../terminatorlib/window.py:274
msgid "window"
msgstr ""

#. FIXME: Why isn't this being done by Terminator() ?
#: ../terminatorlib/window.py:679
msgid "All"
msgstr ""

#: ../terminatorlib/window.py:700
#, python-format
msgid "Tab %d"
msgstr ""