summarylogtreecommitdiffstats
path: root/gnome-terminal-restore-dark-transparency.patch
blob: 5c186c2bbcc09efd8aafc20d92b6d9db64f84a35 (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
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
From 0a97a742fc4153caa76548e075cb731e96376a67 Mon Sep 17 00:00:00 2001
From: Debarshi Ray <debarshir@gnome.org>
Date: Mon, 12 May 2014 14:57:18 +0200
Subject: [PATCH 1/5] Restore transparency

The transparency settings were removed as a side effect of
2bff4b63ed3ceef6055e35563e9b0b33ad57349d

This restores them and you will need a compositing window manager to
use it. The background image setting, also known as faux transparency,
was not restored.

The transparency checkbox lost its mnemonic accelerator because 't'
is already taken and using any other letter would make it hard to
restore the translations of the string.
---
 src/org.gnome.Terminal.gschema.xml | 10 +++++
 src/profile-editor.c               | 11 +++++
 src/profile-preferences.ui         | 92 ++++++++++++++++++++++++++++++++++++++
 src/terminal-schemas.h             |  3 ++
 src/terminal-screen.c              | 22 ++++++++-
 src/terminal-window.c              |  7 +++
 6 files changed, 144 insertions(+), 1 deletion(-)

diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
index 6e24f564c91a..0a646370dd65 100644
--- a/src/org.gnome.Terminal.gschema.xml
+++ b/src/org.gnome.Terminal.gschema.xml
@@ -334,6 +334,16 @@
       <default>'narrow'</default>
       <summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
     </key>
+    <key name="use-transparent-background" type="b">
+      <default>false</default>
+      <summary>Whether to use a transparent background</summary>
+    </key>
+    <key name="background-transparency-percent" type="i">
+      <default>50</default>
+      <range min="0" max="100"/>
+      <summary>Adjust the amount of transparency</summary>
+      <description>A value between 0 and 100, where 0 is opaque and 100 is fully transparent.</description>
+    </key>
   </schema>
 
   <!-- Keybinding settings -->
diff --git a/src/profile-editor.c b/src/profile-editor.c
index c5019fd469ad..7ca953ef9ff4 100644
--- a/src/profile-editor.c
+++ b/src/profile-editor.c
@@ -1097,7 +1097,18 @@ terminal_profile_edit (GSettings  *profile,
                    "active-id",
                    G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
 
+  g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
+                   gtk_builder_get_object (builder, "use-transparent-background"),
+                   "active", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
+  g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
+                   gtk_builder_get_object (builder, "background-transparent-scale-box"),
+                   "sensitive", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY);
+  g_settings_bind (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT,
+                   gtk_builder_get_object (builder, "background-transparent-adjustment"),
+                   "value", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
+
   /* Finished! */
+
   terminal_util_bind_mnemonic_label_sensitivity (editor);
 
   terminal_util_dialog_focus_widget (editor, widget_name);
diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui
index 579c28ff344f..edb264ba5d72 100644
--- a/src/profile-preferences.ui
+++ b/src/profile-preferences.ui
@@ -23,6 +23,11 @@
     <property name="step_increment">1</property>
     <property name="page_increment">100</property>
   </object>
+  <object class="GtkAdjustment" id="background-transparent-adjustment">
+    <property name="upper">100</property>
+    <property name="step_increment">1</property>
+    <property name="page_increment">10</property>
+  </object>
   <object class="GtkListStore" id="model1">
     <columns>
       <!-- column-name gchararray -->
@@ -991,6 +996,93 @@
                                 <property name="position">1</property>
                               </packing>
                             </child>
+                            <child>
+                              <object class="GtkBox" id="use-transparent-background-box">
+                                <property name="visible">True</property>
+                                <property name="can_focus">False</property>
+                                <property name="orientation">horizontal</property>
+                                <property name="spacing">12</property>
+                                <child>
+                                  <object class="GtkCheckButton" id="use-transparent-background">
+                                    <property name="label" translatable="yes">Transparent background</property>
+                                    <property name="visible">True</property>
+                                    <property name="can_focus">True</property>
+                                    <property name="receives_default">False</property>
+                                    <property name="use_underline">True</property>
+                                    <property name="xalign">0</property>
+                                    <property name="draw_indicator">True</property>
+                                  </object>
+                                  <packing>
+                                    <property name="expand">False</property>
+                                    <property name="fill">False</property>
+                                    <property name="position">0</property>
+                                  </packing>
+                                </child>
+                                <child>
+                                  <object class="GtkBox" id="background-transparent-scale-box">
+                                    <property name="visible">True</property>
+                                    <property name="can_focus">False</property>
+                                    <property name="orientation">horizontal</property>
+                                    <property name="spacing">6</property>
+                                    <child>
+                                      <object class="GtkLabel" id="background-transparent-min-label">
+                                        <property name="visible">True</property>
+                                        <property name="can_focus">False</property>
+                                        <property name="xalign">0.5</property>
+                                        <property name="label" translatable="yes">none</property>
+                                        <style>
+                                          <class name="dim-label"/>
+                                        </style>
+                                      </object>
+                                      <packing>
+                                        <property name="expand">False</property>
+                                        <property name="fill">False</property>
+                                        <property name="position">0</property>
+                                      </packing>
+                                    </child>
+                                    <child>
+                                      <object class="GtkScale" id="background-transparent-scale">
+                                        <property name="visible">True</property>
+                                        <property name="can_focus">True</property>
+                                        <property name="adjustment">background-transparent-adjustment</property>
+                                        <property name="draw_value">False</property>
+                                      </object>
+                                      <packing>
+                                        <property name="expand">True</property>
+                                        <property name="fill">True</property>
+                                        <property name="position">1</property>
+                                      </packing>
+                                    </child>
+                                    <child>
+                                      <object class="GtkLabel" id="background-transparent-max-label">
+                                        <property name="visible">True</property>
+                                        <property name="can_focus">False</property>
+                                        <property name="xalign">0.5</property>
+                                        <property name="label" translatable="yes">full</property>
+                                        <style>
+                                          <class name="dim-label"/>
+                                        </style>
+                                      </object>
+                                      <packing>
+                                        <property name="expand">False</property>
+                                        <property name="fill">False</property>
+                                        <property name="position">2</property>
+                                      </packing>
+                                    </child>
+                                  </object>
+                                  <packing>
+                                    <property name="expand">True</property>
+                                    <property name="fill">True</property>
+                                    <property name="position">1</property>
+                                  </packing>
+                                </child>
+                              </object>
+                              <packing>
+                                <property name="expand">True</property>
+                                <property name="fill">True</property>
+                                <property name="position">2</property>
+                              </packing>
+                            </child>
                           </object>
                         </child>
                       </object>
diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
index a8a0d908beea..e35990d728dc 100644
--- a/src/terminal-schemas.h
+++ b/src/terminal-schemas.h
@@ -63,6 +63,9 @@ G_BEGIN_DECLS
 #define TERMINAL_PROFILE_VISIBLE_NAME_KEY               "visible-name"
 #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY       "word-char-exceptions"
 
+#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND      "use-transparent-background"
+#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent"
+
 #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY              "confirm-close"
 #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY       "default-show-menubar"
 #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY      "menu-accelerator-enabled"
diff --git a/src/terminal-screen.c b/src/terminal-screen.c
index a48de105e953..f5a70cdbcf81 100644
--- a/src/terminal-screen.c
+++ b/src/terminal-screen.c
@@ -765,7 +765,9 @@ terminal_screen_profile_changed_cb (GSettings     *profile,
       prop_name == I_(TERMINAL_PROFILE_BACKGROUND_COLOR_KEY) ||
       prop_name == I_(TERMINAL_PROFILE_BOLD_COLOR_SAME_AS_FG_KEY) ||
       prop_name == I_(TERMINAL_PROFILE_BOLD_COLOR_KEY) ||
-      prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY))
+      prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY) ||
+      prop_name == I_(TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND) ||
+      prop_name == I_(TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT))
     update_color_scheme (screen);
 
   if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
@@ -831,6 +833,8 @@ update_color_scheme (TerminalScreen *screen)
   GdkRGBA fg, bg, bold, theme_fg, theme_bg;
   GdkRGBA *boldp;
   GtkStyleContext *context;
+  GtkWidget *toplevel;
+  gboolean transparent;
 
   context = gtk_widget_get_style_context (widget);
   gtk_style_context_get_color (context, gtk_style_context_get_state (context), &theme_fg);
@@ -851,9 +855,25 @@ update_color_scheme (TerminalScreen *screen)
     boldp = NULL;
 
   colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
+
+  transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
+  if (transparent)
+    {
+      gint transparency_percent;
+
+      transparency_percent = g_settings_get_int (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT);
+      bg.alpha = (100 - transparency_percent) / 100.0;
+    }
+  else
+    bg.alpha = 1.0;
+
   vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
                            colors, n_colors);
   vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
+
+  toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
+  if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
+    gtk_widget_set_app_paintable (toplevel, transparent);
 }
 
 static void
diff --git a/src/terminal-window.c b/src/terminal-window.c
index e065ac1de49d..a146a62fb098 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
@@ -2586,6 +2586,8 @@ terminal_window_init (TerminalWindow *window)
   TerminalWindowPrivate *priv;
   TerminalApp *app;
   TerminalSettingsList *profiles_list;
+  GdkScreen *screen;
+  GdkVisual *visual;
   GtkActionGroup *action_group;
   GtkAction *action;
   GtkUIManager *manager;
@@ -2601,6 +2603,11 @@ terminal_window_init (TerminalWindow *window)
 
   gtk_widget_init_template (GTK_WIDGET (window));
 
+  screen = gtk_widget_get_screen (GTK_WIDGET (window));
+  visual = gdk_screen_get_rgba_visual (screen);
+  if (visual != NULL)
+    gtk_widget_set_visual (GTK_WIDGET (window), visual);
+
   uuid_generate (u);
   uuid_unparse (u, uuidstr);
   priv->uuid = g_strdup (uuidstr);
-- 
2.1.0


From 9461b958aaf6bf40afa389850fc56cd087320a43 Mon Sep 17 00:00:00 2001
From: Lars Uebernickel <lars.uebernickel@canonical.com>
Date: Wed, 28 May 2014 14:11:02 +0200
Subject: [PATCH 2/5] window: Make the drawing robust across all themes

There are lots of themes out there in the wild that do not specify a
background-color for all widgets and the default is transparent. This
is usually not a problem because GTK+ sets an opaque region on the
whole window and things without a background-color get drawn with the
theme's default background colour. However, to achieve transparency
we disable the opaque region by making the window app-paintable. This
can lead to transparent menubars or notebook tabs in some themes. We
can avoid this by ensuring that the window always renders a background.

https://bugzilla.gnome.org/show_bug.cgi?id=730016
---
 src/terminal-window.c | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/src/terminal-window.c b/src/terminal-window.c
index a146a62fb098..5117c06653c0 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
@@ -2225,6 +2225,26 @@ terminal_window_realize (GtkWidget *widget)
 }
 
 static gboolean
+terminal_window_draw (GtkWidget *widget,
+                      cairo_t   *cr)
+{
+  if (gtk_widget_get_app_paintable (widget))
+    {
+      GtkStyleContext *context;
+      int width;
+      int height;
+
+      context = gtk_widget_get_style_context (widget);
+      width = gtk_widget_get_allocated_width (widget);
+      height = gtk_widget_get_allocated_height (widget);
+      gtk_render_background (context, cr, 0, 0, width, height);
+      gtk_render_frame (context, cr, 0, 0, width, height);
+    }
+
+  return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
+}
+
+static gboolean
 terminal_window_state_event (GtkWidget            *widget,
                              GdkEventWindowState  *event)
 {
@@ -2787,6 +2807,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
 
   widget_class->show = terminal_window_show;
   widget_class->realize = terminal_window_realize;
+  widget_class->draw = terminal_window_draw;
   widget_class->window_state_event = terminal_window_state_event;
   widget_class->screen_changed = terminal_window_screen_changed;
   widget_class->style_updated = terminal_window_style_updated;
-- 
2.1.0


From c1efbc4c8a1d018f3724a2ca494ea5b543130612 Mon Sep 17 00:00:00 2001
From: Debarshi Ray <debarshir@gnome.org>
Date: Tue, 17 Feb 2015 13:22:11 +0100
Subject: [PATCH 3/5] Revert "prefs: Remove dark theme pref"

This reverts commit 5f6c514a8840a5d1b87a8c399defee3b5052ec18.
---
 src/org.gnome.Terminal.gschema.xml |  5 +++++
 src/preferences.ui                 | 16 ++++++++++++++++
 src/terminal-app.c                 |  4 ++++
 src/terminal-prefs.c               |  9 ++++++++-
 src/terminal-schemas.h             |  1 +
 5 files changed, 34 insertions(+), 1 deletion(-)

diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
index 0a646370dd65..719a5f06ee33 100644
--- a/src/org.gnome.Terminal.gschema.xml
+++ b/src/org.gnome.Terminal.gschema.xml
@@ -658,6 +658,11 @@
       <summary>Whether to show the menubar in new windows</summary>
     </key>
 
+    <key name="dark-theme" type="b">
+      <default>false</default>
+      <summary>Whether to use a dark theme variant</summary>
+    </key>
+
     <key name="new-terminal-mode" enum="org.gnome.Terminal.NewTerminalMode">
       <default>'window'</default>
       <summary>Whether to open new terminals as windows or tabs</summary>
diff --git a/src/preferences.ui b/src/preferences.ui
index bdb643d992cb..a918b1b9f565 100644
--- a/src/preferences.ui
+++ b/src/preferences.ui
@@ -99,6 +99,22 @@
                   </packing>
                 </child>
                 <child>
+                  <object class="GtkCheckButton" id="dark-theme-checkbutton">
+                    <property name="label" translatable="yes">Use _dark theme variant</property>
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="receives_default">False</property>
+                    <property name="use_underline">True</property>
+                    <property name="xalign">0</property>
+                    <property name="draw_indicator">True</property>
+                  </object>
+                  <packing>
+                    <property name="expand">False</property>
+                    <property name="fill">True</property>
+                    <property name="position">3</property>
+                  </packing>
+                </child>
+                <child>
                   <object class="GtkBox" id="hbox140">
                     <property name="visible">True</property>
                     <property name="can_focus">False</property>
diff --git a/src/terminal-app.c b/src/terminal-app.c
index 0d2a0e61786e..96341e96cfad 100644
--- a/src/terminal-app.c
+++ b/src/terminal-app.c
@@ -409,6 +409,10 @@ terminal_app_init (TerminalApp *app)
 
   /* Terminal global settings */
   app->global_settings = g_settings_new (TERMINAL_SETTING_SCHEMA);
+  g_settings_bind (app->global_settings, TERMINAL_SETTING_DARK_THEME_KEY,
+                   gtk_settings_get_default (),
+                   "gtk-application-prefer-dark-theme",
+                   G_SETTINGS_BIND_GET);
 
   /* Check if we need to migrate from gconf to dconf */
   maybe_migrate_settings (app);
diff --git a/src/terminal-prefs.c b/src/terminal-prefs.c
index 230b0aec46f8..f2ce723771fe 100644
--- a/src/terminal-prefs.c
+++ b/src/terminal-prefs.c
@@ -560,7 +560,7 @@ terminal_prefs_show_preferences (GtkWindow *transient_parent,
   GtkWidget *show_menubar_button, *disable_mnemonics_button, *disable_menu_accel_button;
   GtkWidget *disable_shortcuts_button;
   GtkWidget *tree_view_container, *new_button, *edit_button, *clone_button, *remove_button;
-  GtkWidget *new_terminal_mode_combo;
+  GtkWidget *dark_theme_button, *new_terminal_mode_combo;
   GtkWidget *default_hbox, *default_label;
   GtkWidget *close_button, *help_button;
   GtkTreeSelection *selection;
@@ -584,6 +584,7 @@ terminal_prefs_show_preferences (GtkWindow *transient_parent,
                                        "close-button", &close_button,
                                        "help-button", &help_button,
                                        "default-show-menubar-checkbutton", &show_menubar_button,
+                                       "dark-theme-checkbutton", &dark_theme_button,
                                        "new-terminal-mode-combobox", &new_terminal_mode_combo,
                                        "disable-mnemonics-checkbutton", &disable_mnemonics_button,
                                        "disable-shortcuts-checkbutton", &disable_shortcuts_button,
@@ -614,6 +615,12 @@ terminal_prefs_show_preferences (GtkWindow *transient_parent,
                    G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
 
   g_settings_bind (settings,
+                   TERMINAL_SETTING_DARK_THEME_KEY,
+                   dark_theme_button,
+                   "active",
+                   G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
+
+  g_settings_bind (settings,
                    TERMINAL_SETTING_NEW_TERMINAL_MODE_KEY,
                    new_terminal_mode_combo,
                    "active-id",
diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
index e35990d728dc..d4f44d2f538e 100644
--- a/src/terminal-schemas.h
+++ b/src/terminal-schemas.h
@@ -68,6 +68,7 @@ G_BEGIN_DECLS
 
 #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY              "confirm-close"
 #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY       "default-show-menubar"
+#define TERMINAL_SETTING_DARK_THEME_KEY                 "dark-theme"
 #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY      "menu-accelerator-enabled"
 #define TERMINAL_SETTING_ENABLE_MNEMONICS_KEY           "mnemonics-enabled"
 #define TERMINAL_SETTING_ENABLE_SHORTCUTS_KEY           "shortcuts-enabled"
-- 
2.1.0


From 4e92b51530a182aaf87a7b3ca8e1292078c86093 Mon Sep 17 00:00:00 2001
From: Debarshi Ray <debarshir@gnome.org>
Date: Tue, 17 Feb 2015 13:22:21 +0100
Subject: [PATCH 4/5] Revert "help: Remove dark theme pref"

This reverts commit baaca6a4cc5ca78d7b0e02cfaee6c159bad7ce4b.
---
 help/C/pref-theme.page | 41 +++++++++++++++++++++++++++++++++++++++++
 help/Makefile.am       |  1 +
 2 files changed, 42 insertions(+)
 create mode 100644 help/C/pref-theme.page

diff --git a/help/C/pref-theme.page b/help/C/pref-theme.page
new file mode 100644
index 000000000000..a997d14c0dfd
--- /dev/null
+++ b/help/C/pref-theme.page
@@ -0,0 +1,41 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:its="http://www.w3.org/2005/11/its"
+      type="guide"
+      id="pref-theme">
+
+  <info>
+    <link type="guide" xref="index#appearance"/>
+    <revision pkgversion="3.12" date="2014-02-26" status="review"/>
+
+    <credit type="author copyright">
+      <name>Ekaterina Gerasimova</name>
+      <email its:translate="no">kittykat3756@gmail.com</email>
+      <years>2014</years>
+    </credit>
+    <!--<credit type="copyright editor">
+      <name></name>
+      <email its:translate="no"></email>
+      <years></years>
+    </credit>-->
+
+    <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>
+
+    <desc>Use either the light or dark theme for <app>Terminal</app>.</desc>
+  </info>
+
+  <title>Chose the window theme</title>
+
+  <p>You can chose to use either the dark theme or the light theme for the
+  terminal window.</p>
+
+  <steps>
+    <item>
+      <p>Select
+      <guiseq><gui style="menu">Edit</gui><gui style="menuitem">Preferences</gui><gui style="tab">General</gui></guiseq>.</p>
+    </item>
+    <item>
+      <p>To use the dark theme, select <gui>Use dark theme variant</gui>.</p>
+    </item>
+  </steps>
+
+</page>
diff --git a/help/Makefile.am b/help/Makefile.am
index e3ca62732cf6..4bacc91265de 100644
--- a/help/Makefile.am
+++ b/help/Makefile.am
@@ -35,6 +35,7 @@ HELP_FILES = \
 	pref-profile-encoding.page \
 	pref-scrolling.page \
 	pref-tab-window.page \
+	pref-theme.page \
 	pref-user-input.page \
 	profile.page \
 	prob-reset.page \
-- 
2.1.0


From 59a5e9751c868bfedd1ca19994760d3cf3768487 Mon Sep 17 00:00:00 2001
From: Debarshi Ray <debarshir@gnome.org>
Date: Tue, 17 Feb 2015 17:06:17 +0100
Subject: [PATCH 5/5] Restore translations for dark terminals and transparency

---
 po/am.po          |  4 ++--
 po/ar.po          | 13 ++++++-------
 po/as.po          |  4 ++--
 po/ast.po         |  4 ++--
 po/az.po          |  4 ++--
 po/be.po          |  3 +++
 po/be@latin.po    |  4 ++--
 po/bg.po          |  3 +++
 po/bn_IN.po       |  3 +++
 po/bs.po          |  4 ++++
 po/ca.po          | 11 +++++++----
 po/ca@valencia.po |  3 +++
 po/cs.po          |  3 +++
 po/cy.po          |  4 ++--
 po/da.po          | 12 ++++++------
 po/de.po          | 12 ++++++------
 po/dz.po          |  4 ++--
 po/el.po          | 11 +++++++----
 po/en@shaw.po     |  4 ++--
 po/en_CA.po       |  4 ++--
 po/en_GB.po       |  4 ++--
 po/es.po          | 12 ++++++------
 po/et.po          |  3 +++
 po/eu.po          | 12 ++++++------
 po/fa.po          |  3 +++
 po/fi.po          | 11 +++++++----
 po/fr.po          | 11 +++++++----
 po/fur.po         |  4 ++++
 po/ga.po          |  3 +++
 po/gd.po          |  9 ++++-----
 po/gl.po          | 12 ++++++------
 po/gu.po          |  4 ++--
 po/he.po          | 12 ++++++------
 po/hi.po          |  4 ++--
 po/hr.po          |  4 ++--
 po/hu.po          | 11 +++++++----
 po/hy.po          |  4 ++--
 po/id.po          |  3 +++
 po/it.po          |  3 +++
 po/ja.po          |  3 +++
 po/ka.po          |  2 +-
 po/kk.po          | 11 +++++++----
 po/kn.po          |  3 +++
 po/ko.po          | 11 +++++++----
 po/ku.po          |  4 ++--
 po/lt.po          | 11 +++++++----
 po/lv.po          |  3 +++
 po/mai.po         |  4 ++--
 po/mg.po          |  4 ++--
 po/mk.po          |  4 ++--
 po/ml.po          |  4 ++--
 po/mn.po          |  4 ++--
 po/mr.po          |  4 ++--
 po/ms.po          |  4 ++--
 po/nb.po          |  3 +++
 po/nds.po         |  4 ++--
 po/ne.po          |  4 ++--
 po/nl.po          |  3 +++
 po/nn.po          |  4 ++--
 po/oc.po          | 12 ++++++------
 po/or.po          |  4 ++--
 po/pa.po          |  4 ++--
 po/pl.po          |  3 +++
 po/ps.po          |  4 ++--
 po/pt.po          | 12 ++++++------
 po/pt_BR.po       | 11 +++++++----
 po/ro.po          |  4 ++--
 po/ru.po          |  3 +++
 po/rw.po          |  2 +-
 po/si.po          |  4 ++--
 po/sk.po          | 11 +++++++----
 po/sl.po          | 11 +++++++----
 po/sq.po          |  4 ++--
 po/sr.po          | 11 +++++++----
 po/sr@latin.po    | 11 +++++++----
 po/sv.po          |  3 +++
 po/ta.po          |  4 ++--
 po/te.po          |  4 ++--
 po/tg.po          |  8 ++++----
 po/th.po          | 12 ++++++------
 po/tr.po          |  3 +++
 po/ug.po          |  4 ++--
 po/uk.po          | 12 ++++++------
 po/vi.po          | 11 +++++++----
 po/wa.po          |  4 ++--
 po/xh.po          |  4 ++--
 po/zh_CN.po       | 11 +++++++----
 po/zh_HK.po       |  3 +++
 po/zh_TW.po       | 11 +++++++----
 89 files changed, 328 insertions(+), 214 deletions(-)

diff --git a/po/am.po b/po/am.po
index 27a7e9640668..04a8ad9f36a3 100644
--- a/po/am.po
+++ b/po/am.po
@@ -613,8 +613,8 @@ msgid "_Text color:"
 msgstr "የ_ጽሑፍ ቀለም፦"
 
 #: ../src/gnome-terminal.glade2.h:102
-msgid "_Transparent background"
-msgstr "_የሚያሳይ መደብ"
+msgid "Transparent background"
+msgstr "የሚያሳይ መደብ"
 
 #: ../src/gnome-terminal.glade2.h:103
 msgid "_Update login records when command is launched"
diff --git a/po/ar.po b/po/ar.po
index c27cd9cfc2b6..b882143bdd77 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -2056,12 +2056,11 @@ msgstr "أغ_لق النافذة"
 #~ msgid "Missing command"
 #~ msgstr "خطأ أثناء تحليل الأمر: %s"
 
-#, fuzzy
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "فيما إذا سيستعمل خط النظام ثابت العرض"
+msgid "Whether to use a dark theme variant"
+msgstr "فيما إذا سيستعمل خط النظام ثابت العرض"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "استخدم سمة _داكنة"
+msgid "Use _dark theme variant"
+msgstr "استخدم سمة _داكنة"
 
 #~ msgid "COMMAND"
 #~ msgstr "الأمر"
@@ -2914,8 +2913,8 @@ msgstr "أغ_لق النافذة"
 #~ msgid "Background image _scrolls"
 #~ msgstr "صورة الخلفية ت_لتف"
 
-#~ msgid "_Transparent background"
-#~ msgstr "خلفية _شفافة"
+msgid "Transparent background"
+msgstr "خلفية شفافة"
 
 #~ msgid "S_hade transparent or image background:"
 #~ msgstr "_ظلل شفافية أو صورة الخلفية:"
diff --git a/po/as.po b/po/as.po
index 0bd699d5e021..63fca0132a93 100644
--- a/po/as.po
+++ b/po/as.po
@@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
 #~ msgid "Background image _scrolls"
 #~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
 
-#~ msgid "_Transparent background"
-#~ msgstr "স্বচ্চ পটভূমি (_T)"
+msgid "Transparent background"
+msgstr "স্বচ্চ পটভূমি "
 
 #~ msgid "S_hade transparent or image background:"
 #~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
diff --git a/po/ast.po b/po/ast.po
index d1c6e7b8174a..4210820a1429 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -1598,8 +1598,8 @@ msgid "_Text color:"
 msgstr "Color del _testu:"
 
 #: ../src/profile-preferences.glade.h:77
-msgid "_Transparent background"
-msgstr "Fondu _tresparente"
+msgid "Transparent background"
+msgstr "Fondu tresparente"
 
 #: ../src/profile-preferences.glade.h:78
 msgid "_Underline color:"
diff --git a/po/az.po b/po/az.po
index b0f2e3eac8b8..877f114954e0 100644
--- a/po/az.po
+++ b/po/az.po
@@ -619,8 +619,8 @@ msgid "_Text color:"
 msgstr "_Mətn rəngi:"
 
 #: ../src/gnome-terminal.glade2.h:102
-msgid "_Transparent background"
-msgstr "_Şəffaf arxa plan"
+msgid "Transparent background"
+msgstr "Şəffaf arxa plan"
 
 #: ../src/gnome-terminal.glade2.h:103
 msgid "_Update login records when command is launched"
diff --git a/po/be.po b/po/be.po
index fca0ae4617d4..74ff3291321a 100644
--- a/po/be.po
+++ b/po/be.po
@@ -2015,3 +2015,6 @@ msgstr ""
 msgid "C_lose Window"
 msgstr "_Закрыць акно"
 
+msgid "Transparent background"
+msgstr "Празрысты фон"
+
diff --git a/po/be@latin.po b/po/be@latin.po
index 1e057c74b152..1d22a58915af 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -1425,8 +1425,8 @@ msgid "_Text color:"
 msgstr "Koler _tekstu:"
 
 #: ../src/profile-preferences.glade.h:73
-msgid "_Transparent background"
-msgstr "_Prazrysty fon"
+msgid "Transparent background"
+msgstr "Prazrysty fon"
 
 #: ../src/profile-preferences.glade.h:74
 msgid "_Update login records when command is launched"
diff --git a/po/bg.po b/po/bg.po
index 7e9c9be32700..241ef52bf50f 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -2100,3 +2100,6 @@ msgstr ""
 #: ../src/terminal-window.c:3652
 msgid "C_lose Window"
 msgstr "_Затваряне на този прозорец"
+
+msgid "Transparent background"
+msgstr "Прозрачен фон"
diff --git a/po/bn_IN.po b/po/bn_IN.po
index c74246a5a26d..d65b322ba88c 100644
--- a/po/bn_IN.po
+++ b/po/bn_IN.po
@@ -2358,3 +2358,6 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
 
 #~ msgid "_Title:"
 #~ msgstr "শিরোনাম: (_T)"
+
+msgid "Transparent background"
+msgstr "স্বচ্চ পটভূমি "
diff --git a/po/bs.po b/po/bs.po
index 49e710859ac9..fccfa86de311 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
 msgid "Keyboard shortcut to make font smaller"
 msgstr "Kratica tastature za smanjivanje fonta"
 
+#: ../src/gnome-terminal.glade2.h:102
+msgid "Transparent background"
+msgstr "Providna pozadina"
+
 #: ../src/org.gnome.Terminal.gschema.xml.h:78
 msgid "Keyboard shortcut to make font normal-size"
 msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
diff --git a/po/ca.po b/po/ca.po
index 567b3445927f..68ec312dcb5c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2106,8 +2106,11 @@ msgstr "Tanca la _finestra"
 #~ msgid "Missing command"
 #~ msgstr "Manca l'ordre"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
+msgid "Whether to use a dark theme variant"
+msgstr "Si s'ha d'utilitzar la variant de tema fosc"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Utilitza la variant de tema _fosc"
+msgid "Use _dark theme variant"
+msgstr "Utilitza la variant de tema _fosc"
+
+msgid "Transparent background"
+msgstr "Fons transparent"
diff --git a/po/ca@valencia.po b/po/ca@valencia.po
index 1c279a0bf09c..4073f719906a 100644
--- a/po/ca@valencia.po
+++ b/po/ca@valencia.po
@@ -2092,3 +2092,6 @@ msgstr ""
 #: ../src/terminal-window.c:3645
 msgid "C_lose Window"
 msgstr "Tanca la _finestra"
+
+msgid "Transparent background"
+msgstr "Fons transparent"
diff --git a/po/cs.po b/po/cs.po
index 8737182b80bf..542f8135590e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -2056,3 +2056,6 @@ msgstr ""
 #: ../src/terminal-window.c:3694
 msgid "C_lose Window"
 msgstr "_Zavřít okno"
+
+msgid "Transparent background"
+msgstr "Průsvitné pozadí"
diff --git a/po/cy.po b/po/cy.po
index 0739e201f83b..8b1ff006857a 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -1447,8 +1447,8 @@ msgid "_Text color:"
 msgstr "Lliw'r _testun:"
 
 #: ../src/profile-preferences.glade.h:73
-msgid "_Transparent background"
-msgstr "Cefndir _tryloyw"
+msgid "Transparent background"
+msgstr "Cefndir tryloyw"
 
 #: ../src/profile-preferences.glade.h:74
 msgid "_Update login records when command is launched"
diff --git a/po/da.po b/po/da.po
index f420e1cdbbff..217b176092a9 100644
--- a/po/da.po
+++ b/po/da.po
@@ -2094,11 +2094,11 @@ msgstr "_Luk vindue"
 #~ msgid "Missing command"
 #~ msgstr "Manglende kommando"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Om der skal bruges en mørk temavariant"
+msgid "Whether to use a dark theme variant"
+msgstr "Om der skal bruges en mørk temavariant"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Brug _mørk temavariant"
+msgid "Use _dark theme variant"
+msgstr "Brug _mørk temavariant"
 
 #~ msgid "COMMAND"
 #~ msgstr "KOMMANDO"
@@ -2999,8 +2999,8 @@ msgstr "_Luk vindue"
 #~ msgid "_Solid color"
 #~ msgstr "_Ensfarvet"
 
-#~ msgid "_Transparent background"
-#~ msgstr "_Gennemsigtig baggrund"
+msgid "Transparent background"
+msgstr "Gennemsigtig baggrund"
 
 #~ msgid ""
 #~ "You already have a profile called “%s”. Do you want to create another "
diff --git a/po/de.po b/po/de.po
index 7fbad63bb009..9d376b53eec9 100644
--- a/po/de.po
+++ b/po/de.po
@@ -2134,11 +2134,11 @@ msgstr "Fenster _schließen"
 #~ msgid "Missing command"
 #~ msgstr "Fehlender Befehl"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Legt fest, ob eine dunkle Themenvariante verwendet wird"
+msgid "Whether to use a dark theme variant"
+msgstr "Legt fest, ob eine dunkle Themenvariante verwendet wird"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Die _dunkle Themenvariante verwenden"
+msgid "Use _dark theme variant"
+msgstr "Die _dunkle Themenvariante verwenden"
 
 #~ msgid "Set the terminal title"
 #~ msgstr "Den Titel des Terminals festlegen"
@@ -3066,8 +3066,8 @@ msgstr "Fenster _schließen"
 #~ msgid "Background image _scrolls"
 #~ msgstr "Hintergrundbild _folgt Bildlauf"
 
-#~ msgid "_Transparent background"
-#~ msgstr "_Transparenter Hintergrund"
+msgid "Transparent background"
+msgstr "Transparenter Hintergrund"
 
 #~ msgid "S_hade transparent or image background:"
 #~ msgstr "Transparenz und Bildhintergründe _abdunkeln:"
diff --git a/po/dz.po b/po/dz.po
index ecb8fd59329c..290934ad3e0f 100644
--- a/po/dz.po
+++ b/po/dz.po
@@ -1551,8 +1551,8 @@ msgid "_Text color:"
 msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
 
 #: ../src/profile-preferences.glade.h:77
-msgid "_Transparent background"
-msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)"
+msgid "Transparent background"
+msgstr "དྭངས་གསལ་རྒྱབ་གཞི།"
 
 #: ../src/profile-preferences.glade.h:78
 #, fuzzy
diff --git a/po/el.po b/po/el.po
index 587527cb7a99..b0dbdd2a60a7 100644
--- a/po/el.po
+++ b/po/el.po
@@ -2128,11 +2128,11 @@ msgstr "Κ_λείσιμο παραθύρου"
 #~ msgid "Missing command"
 #~ msgstr "Λείπει εντολή"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Εάν θα χρησιμοποιεί παραλλαγή σκοτεινού θέματος"
+msgid "Whether to use a dark theme variant"
+msgstr "Εάν θα χρησιμοποιεί παραλλαγή σκοτεινού θέματος"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Χρήση παραλλαγής _σκοτεινού θέματος"
+msgid "Use _dark theme variant"
+msgstr "Χρήση παραλλαγής _σκοτεινού θέματος"
 
 #~ msgid "_Use the system fixed width font"
 #~ msgstr "_Χρήση της γραμματοσειράς σταθερού πλάτους του συστήματος"
@@ -2296,3 +2296,6 @@ msgstr "Κ_λείσιμο παραθύρου"
 
 #~ msgid "_Input Methods"
 #~ msgstr "_Μέθοδοι εισαγωγής"
+
+msgid "Transparent background"
+msgstr "Διάφανο παρασκήνιο"
diff --git a/po/en@shaw.po b/po/en@shaw.po
index 65f3d415e476..05dc99df5980 100644
--- a/po/en@shaw.po
+++ b/po/en@shaw.po
@@ -1467,8 +1467,8 @@ msgid "_Text color:"
 msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
 
 #: ../src/profile-preferences.glade.h:78
-msgid "_Transparent background"
-msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
+msgid "Transparent background"
+msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
 
 #: ../src/profile-preferences.glade.h:79
 msgid "_Underline color:"
diff --git a/po/en_CA.po b/po/en_CA.po
index c79cbf5aa245..b8b14d2030e1 100644
--- a/po/en_CA.po
+++ b/po/en_CA.po
@@ -556,8 +556,8 @@ msgid "_Text color:"
 msgstr "_Text colour:"
 
 #: ../src/gnome-terminal.glade2.h:86
-msgid "_Transparent background"
-msgstr "_Transparent background"
+msgid "Transparent background"
+msgstr "Transparent background"
 
 #: ../src/gnome-terminal.glade2.h:87
 msgid "_Update login records when command is launched"
diff --git a/po/en_GB.po b/po/en_GB.po
index 4d38486679fe..69e71135d75c 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -2732,8 +2732,8 @@ msgstr "_Title:"
 #~ msgid "Background image _scrolls"
 #~ msgstr "Background image _scrolls"
 
-#~ msgid "_Transparent background"
-#~ msgstr "_Transparent background"
+msgid "Transparent background"
+msgstr "Transparent background"
 
 #~ msgid "S_hade transparent or image background:"
 #~ msgstr "S_hade transparent or image background:"
diff --git a/po/es.po b/po/es.po
index 39b3d7e5f1cb..b7c0cab8dae8 100644
--- a/po/es.po
+++ b/po/es.po
@@ -2120,11 +2120,11 @@ msgstr "_Cerrar ventana"
 #~ msgid "Missing command"
 #~ msgstr "Falta el comando"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Indica si se debe usar la variante oscura del tema"
+msgid "Whether to use a dark theme variant"
+msgstr "Indica si se debe usar la variante oscura del tema"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Usar la variante _oscura del tema"
+msgid "Use _dark theme variant"
+msgstr "Usar la variante _oscura del tema"
 
 #~ msgid "Set the terminal title"
 #~ msgstr "Establece el título de la terminal"
@@ -3103,8 +3103,8 @@ msgstr "_Cerrar ventana"
 #~ msgid "_Solid color"
 #~ msgstr "Color _sólido"
 
-#~ msgid "_Transparent background"
-#~ msgstr "Fondo _transparente"
+msgid "Transparent background"
+msgstr "Fondo transparente"
 
 #~ msgid "No such profile \"%s\", using default profile\n"
 #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
diff --git a/po/et.po b/po/et.po
index 4b1c2a7c67e4..770761168806 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
 
 #~ msgid "Choose base profile"
 #~ msgstr "Vali põhiprofiil"
+
+msgid "Transparent background"
+msgstr "Läbipaistev taust"
diff --git a/po/eu.po b/po/eu.po
index 97bb9762528f..9e32fb740c57 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -2071,11 +2071,11 @@ msgstr "It_xi leihoa"
 #~ msgid "Missing command"
 #~ msgstr "Komandoa falta da"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Gai ilunaren aldaera erabili edo ez"
+msgid "Whether to use a dark theme variant"
+msgstr "Gai ilunaren aldaera erabili edo ez"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Erabili gai _ilunaren aldaera"
+msgid "Use _dark theme variant"
+msgstr "Erabili gai _ilunaren aldaera"
 
 #~ msgid "COMMAND"
 #~ msgstr "KOMANDOA"
@@ -2972,8 +2972,8 @@ msgstr "It_xi leihoa"
 #~ msgid "_Solid color"
 #~ msgstr "_Kolore solidoa"
 
-#~ msgid "_Transparent background"
-#~ msgstr "_Atzeko plano gardena"
+msgid "Transparent background"
+msgstr "Atzeko plano gardena"
 
 #~ msgid ""
 #~ "You already have a profile called “%s”. Do you want to create another "
diff --git a/po/fa.po b/po/fa.po
index 882aae98a939..93007dc7450c 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -2239,3 +2239,6 @@ msgstr "_بستن پنجره"
 
 #~ msgid "_Title:"
 #~ msgstr "_عنوان:"
+
+msgid "Transparent background"
+msgstr "پس‌زمینه‌ی شفاف"
diff --git a/po/fi.po b/po/fi.po
index f80a962e458a..ba11a5795b1c 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -2069,6 +2069,9 @@ msgstr ""
 msgid "C_lose Window"
 msgstr "_Sulje ikkuna"
 
+msgid "Transparent background"
+msgstr "Läpinäkyvä tausta"
+
 #~ msgid "Set the terminal title"
 #~ msgstr "Aseta päätteen otsikko"
 
@@ -2079,8 +2082,8 @@ msgstr "_Sulje ikkuna"
 #~ msgid "Missing command"
 #~ msgstr "Puuttuva komento"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Käytetäänkö teeman tummaan muunnelmaa"
+msgid "Whether to use a dark theme variant"
+msgstr "Käytetäänkö teeman tummaan muunnelmaa"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Käytä _teeman tummaa muunnelmaa"
+msgid "Use _dark theme variant"
+msgstr "Käytä _teeman tummaa muunnelmaa"
\ No newline at end of file
diff --git a/po/fr.po b/po/fr.po
index 15c8ecc86124..506f0fcb5c49 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -2136,8 +2136,11 @@ msgstr "Fermer _la fenêtre"
 #~ msgid "Missing command"
 #~ msgstr "Commande manquante"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Indique s'il faut utiliser une variante de thème foncée"
+msgid "Whether to use a dark theme variant"
+msgstr "Indique s'il faut utiliser une variante de thème foncée"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Utiliser une variante de thème _foncée"
+msgid "Use _dark theme variant"
+msgstr "Utiliser une variante de thème _foncée"
+
+msgid "Transparent background"
+msgstr "Arrière-plan transparent"
diff --git a/po/fur.po b/po/fur.po
index 300ed8fbce71..4b5bfbc150f0 100644
--- a/po/fur.po
+++ b/po/fur.po
@@ -562,6 +562,10 @@ msgstr ""
 "Indiche se tornâ a adatâ in automatic i contignûts dal terminâl al modificâ "
 "de dimension dal barcon"
 
+#: ../src/gnome-terminal.glade2.h:86
+msgid "Transparent background"
+msgstr "Fondâl trasparent"
+
 #: ../src/org.gnome.Terminal.gschema.xml.h:50
 msgid "Which encoding to use"
 msgstr "Codifiche di doprâ"
diff --git a/po/ga.po b/po/ga.po
index 93d5fa9d1481..feb87dce3d6b 100644
--- a/po/ga.po
+++ b/po/ga.po
@@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
 #: ../src/terminal-window.c:3582
 msgid "C_lose Terminal"
 msgstr "_Dún Teirminéal"
+
+msgid "Transparent background"
+msgstr "Cúlra trédhearcach"
diff --git a/po/gd.po b/po/gd.po
index 04a76e1de96a..4af1d80ececc 100644
--- a/po/gd.po
+++ b/po/gd.po
@@ -2071,9 +2071,8 @@ msgstr "_Dùin an uinneag"
 #~ msgid "Missing command"
 #~ msgstr "Tha àithne a dhìth"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr ""
-#~ "Co-dhiù an tèid tionndadh dorcha dhen ùrlar a chleachdadh gus nach tèid"
+msgid "Whether to use a dark theme variant"
+msgstr "Co-dhiù an tèid tionndadh dorcha dhen ùrlar a chleachdadh gus nach tèid"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Cleachd tionndadh _dorcha dhen ùrlar"
+msgid "Use _dark theme variant"
+msgstr "Cleachd tionndadh _dorcha dhen ùrlar"
diff --git a/po/gl.po b/po/gl.po
index ad9af1ba5ddc..bdbfa91fcf13 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -2106,11 +2106,11 @@ msgstr "P_echar a xanela"
 #~ msgid "Missing command"
 #~ msgstr "Falta a orde"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Indica se se usa a variante de tema escura"
+msgid "Whether to use a dark theme variant"
+msgstr "Indica se se usa a variante de tema escura"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Usar variante do tema _escuro"
+msgid "Use _dark theme variant"
+msgstr "Usar variante do tema _escuro"
 
 #~ msgid "_Use the system fixed width font"
 #~ msgstr "_Usar o tipo de letra de largura fixa do sistema"
@@ -3060,8 +3060,8 @@ msgstr "P_echar a xanela"
 #~ msgid "Background image _scrolls"
 #~ msgstr "A imaxe de fondo _desprázase"
 
-#~ msgid "_Transparent background"
-#~ msgstr "Fondo _transparente"
+msgid "Transparent background"
+msgstr "Fondo transparente"
 
 #~ msgid "S_hade transparent or image background:"
 #~ msgstr "_Sombra transparente ou imaxe de fondo:"
diff --git a/po/gu.po b/po/gu.po
index 0bcb1954f634..f72a807d6e2b 100644
--- a/po/gu.po
+++ b/po/gu.po
@@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
 #~ msgid "_Solid color"
 #~ msgstr "ઘટ્ટ રંગ (_S)"
 
-#~ msgid "_Transparent background"
-#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)"
+msgid "Transparent background"
+msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ"
 
 #~ msgid "No such profile \"%s\", using default profile\n"
 #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
diff --git a/po/he.po b/po/he.po
index f3b83b93f20f..68008ceda2d5 100644
--- a/po/he.po
+++ b/po/he.po
@@ -2054,11 +2054,11 @@ msgstr "סגירת ה_חלון"
 #~ msgid "Missing command"
 #~ msgstr "Missing command"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Whether to use a dark theme variant"
+msgid "Whether to use a dark theme variant"
+msgstr "Whether to use a dark theme variant"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "שימוש בערכת עיצוב בהגוון _כהה"
+msgid "Use _dark theme variant"
+msgstr "שימוש בערכת עיצוב בהגוון _כהה"
 
 #~ msgid "Set the terminal title"
 #~ msgstr "Set the terminal title"
@@ -3013,8 +3013,8 @@ msgstr "סגירת ה_חלון"
 #~ msgid "_Solid color"
 #~ msgstr "צבע _אחיד"
 
-#~ msgid "_Transparent background"
-#~ msgstr "רקע _שקוף"
+msgid "Transparent background"
+msgstr "רקע שקוף"
 
 #~ msgid "No such profile \"%s\", using default profile\n"
 #~ msgstr "No such profile \"%s\", using default profile\n"
diff --git a/po/hi.po b/po/hi.po
index 2d7dc5b14008..adf8d35e8d3f 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -2979,8 +2979,8 @@ msgstr "विंडो बंद करें (_l)"
 #~ msgid "_Background image"
 #~ msgstr "पृष्ठभूमि छवि (_B)"
 
-#~ msgid "_Transparent background"
-#~ msgstr "पारदर्शी पृष्ठभूमि (_T)"
+msgid "Transparent background"
+msgstr "पारदर्शी पृष्ठभूमि"
 
 #~ msgid "S/Key Challenge Response"
 #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
diff --git a/po/hr.po b/po/hr.po
index cb48c52f708c..747cf488e7b4 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1362,8 +1362,8 @@ msgid "_Text color:"
 msgstr "_Boja teksta:"
 
 #: ../src/profile-preferences.glade.h:69
-msgid "_Transparent background"
-msgstr "_Prozirna pozadina"
+msgid "Transparent background"
+msgstr "Prozirna pozadina"
 
 #: ../src/profile-preferences.glade.h:70
 msgid "_Update login records when command is launched"
diff --git a/po/hu.po b/po/hu.po
index 62f6b48de0b5..16fd9439489b 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -2090,11 +2090,11 @@ msgstr "_Ablak bezárása"
 #~ msgid "Missing command"
 #~ msgstr "Hiányzó parancs"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Használja-e a sötét témaváltozatot"
+msgid "Whether to use a dark theme variant"
+msgstr "Használja-e a sötét témaváltozatot"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "_Sötét témaváltozat használata"
+msgid "Use _dark theme variant"
+msgstr "_Sötét témaváltozat használata"
 
 #~ msgid "Set the terminal title"
 #~ msgstr "A terminál címének beállítása"
@@ -2513,3 +2513,6 @@ msgstr "_Ablak bezárása"
 
 #~ msgid "Background type"
 #~ msgstr "Háttér típusa"
+
+msgid "Transparent background"
+msgstr "Áttetsző háttér"
diff --git a/po/hy.po b/po/hy.po
index 558490157ada..caadbba37c5d 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -1011,8 +1011,8 @@ msgid "_Text color:"
 msgstr "_Տեքստի գույնը՝"
 
 #: ../src/profile-preferences.glade.h:73
-msgid "_Transparent background"
-msgstr "_Թափանցիկ նախադրյալ"
+msgid "Transparent background"
+msgstr "Թափանցիկ նախադրյալ"
 
 #: ../src/profile-preferences.glade.h:74
 msgid "_Update login records when command is launched"
diff --git a/po/id.po b/po/id.po
index 595a325a574d..99c29b6d855b 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2058,3 +2058,6 @@ msgstr ""
 #: ../src/terminal-window.c:3694
 msgid "C_lose Window"
 msgstr "Tutup Jende_la"
+
+msgid "Transparent background"
+msgstr "Latar belakang transparan"
diff --git a/po/it.po b/po/it.po
index 491303dfe349..af13ad9ca310 100644
--- a/po/it.po
+++ b/po/it.po
@@ -2105,3 +2105,6 @@ msgstr "Chiudi _finestra"
 
 #~ msgid "_Update login records when command is launched"
 #~ msgstr "_Aggiornare i record di login quando il comando viene eseguito"
+
+msgid "Transparent background"
+msgstr "Sfondo trasparente"
diff --git a/po/ja.po b/po/ja.po
index f7235d9f4a0b..63d7fd7bb943 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1907,3 +1907,6 @@ msgstr "ウィンドウを閉じる(_L)"
 
 #~ msgid "_Update login records when command is launched"
 #~ msgstr "コマンドを実行した時にログイン記録を更新する(_U)"
+
+msgid "Transparent background"
+msgstr "透過な画像にする"
diff --git a/po/ka.po b/po/ka.po
index 8415e88f94ff..3717b7e75dcd 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -568,7 +568,7 @@ msgstr "_ტექსტის ფერი:"
 
 #: ../src/gnome-terminal.glade2.h:86
 #, fuzzy
-msgid "_Transparent background"
+msgid "Transparent background"
 msgstr "გამჭირვალე"
 
 #: ../src/gnome-terminal.glade2.h:87
diff --git a/po/kk.po b/po/kk.po
index ed86f1b70460..639411cfce86 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -2024,14 +2024,17 @@ msgstr "Терезені жа_бу"
 #~ msgid "Missing command"
 #~ msgstr "Команда жоқ болып тұр"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Қараңғылау тема нұсқасын қолдану керек пе"
+msgid "Whether to use a dark theme variant"
+msgstr "Қараңғылау тема нұсқасын қолдану керек пе"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Теманың қ_араңғы нұсқасын қолдану"
+msgid "Use _dark theme variant"
+msgstr "Теманың қ_араңғы нұсқасын қолдану"
 
 #~ msgid "COMMAND"
 #~ msgstr "КОМАНДА"
 
 #~ msgid "Be quiet"
 #~ msgstr "Тыныш болу"
+
+msgid "Transparent background"
+msgstr "Мөлдір фон"
diff --git a/po/kn.po b/po/kn.po
index c887f88a2c87..e899ef3ca8c1 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -2344,3 +2344,6 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
 
 #~ msgid "_Title:"
 #~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
+
+msgid "Transparent background"
+msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
diff --git a/po/ko.po b/po/ko.po
index 57c120389ac9..a41296a7fb0a 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -2079,8 +2079,11 @@ msgstr "창 닫기(_L)"
 #~ msgid "Missing command"
 #~ msgstr "명령어 없음"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "어두운 테마를 사용할 지 여부"
+msgid "Whether to use a dark theme variant"
+msgstr "어두운 테마를 사용할 지 여부"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "어두운 테마 사용(_D)"
+msgid "Use _dark theme variant"
+msgstr "어두운 테마 사용(_D)"
+
+msgid "Transparent background"
+msgstr "투명한 배경"
diff --git a/po/ku.po b/po/ku.po
index 221825b29cd9..96e35811337b 100644
--- a/po/ku.po
+++ b/po/ku.po
@@ -557,8 +557,8 @@ msgid "_Text color:"
 msgstr "Rengê _nivîsê:"
 
 #: ../src/gnome-terminal.glade2.h:86
-msgid "_Transparent background"
-msgstr "Rûerdê _transparan"
+msgid "Transparent background"
+msgstr "Rûerdê transparan"
 
 #: ../src/gnome-terminal.glade2.h:87
 msgid "_Update login records when command is launched"
diff --git a/po/lt.po b/po/lt.po
index 8c9c9e660d28..71411ab7cf5b 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -2085,8 +2085,11 @@ msgstr "_Užverti langą"
 #~ msgid "Missing command"
 #~ msgstr "Trūksta komandos"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Ar naudoti tamsų temos variantą"
+msgid "Whether to use a dark theme variant"
+msgstr "Ar naudoti tamsų temos variantą"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Nau_doti tamsų temos variantą"
+msgid "Use _dark theme variant"
+msgstr "Nau_doti tamsų temos variantą"
+
+msgid "Transparent background"
+msgstr "Permatomas fonas"
diff --git a/po/lv.po b/po/lv.po
index 80a13ab6cac9..0360452e7b61 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -2048,3 +2048,6 @@ msgstr ""
 #: ../src/terminal-window.c:3694
 msgid "C_lose Window"
 msgstr "Aizvērt _logu"
+
+msgid "Transparent background"
+msgstr "Caurspīdīgs fons"
diff --git a/po/mai.po b/po/mai.po
index 9b984a068fda..a3c0e178ae67 100644
--- a/po/mai.po
+++ b/po/mai.po
@@ -1290,8 +1290,8 @@ msgid "_Text color:"
 msgstr "पाठ रँग (_T):"
 
 #: ../src/profile-preferences.glade.h:69
-msgid "_Transparent background"
-msgstr "पारदर्शी पृष्ठभूमि (_T)"
+msgid "Transparent background"
+msgstr "पारदर्शी पृष्ठभूमि"
 
 #: ../src/profile-preferences.glade.h:70
 msgid "_Update login records when command is launched"
diff --git a/po/mg.po b/po/mg.po
index 1c1895c98ba9..a805417893ed 100644
--- a/po/mg.po
+++ b/po/mg.po
@@ -566,8 +566,8 @@ msgid "_Text color:"
 msgstr "Lokon'ny _soratra:"
 
 #: ../src/gnome-terminal.glade2.h:86
-msgid "_Transparent background"
-msgstr "_Afara tatera-pahazavana"
+msgid "Transparent background"
+msgstr "Afara tatera-pahazavana"
 
 #: ../src/gnome-terminal.glade2.h:87
 msgid "_Update login records when command is launched"
diff --git a/po/mk.po b/po/mk.po
index e31378a5726b..d2b74d4438d1 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -1166,8 +1166,8 @@ msgid "_Text color:"
 msgstr "_Боја на текстот:"
 
 #: ../src/profile-preferences.glade.h:77
-msgid "_Transparent background"
-msgstr "_Транспарентна позадина"
+msgid "Transparent background"
+msgstr "Транспарентна позадина"
 
 #: ../src/profile-preferences.glade.h:78
 #| msgid "_Text color:"
diff --git a/po/ml.po b/po/ml.po
index cc1928dcda63..62abd2131499 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -2751,8 +2751,8 @@ msgstr "ടെര്‍മിനല്‍ അ_ടയ്ക്കുക"
 #~ msgid "_Solid color"
 #~ msgstr "_സോളിഡ് നിറം"
 
-#~ msgid "_Transparent background"
-#~ msgstr "_പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
+msgid "Transparent background"
+msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
 
 #~ msgid "S/Key Challenge Response"
 #~ msgstr "S/Key ചാലഞ്ച് മറുപടി"
diff --git a/po/mn.po b/po/mn.po
index 4922041e09f9..9696b7f981f1 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -617,8 +617,8 @@ msgid "_Text color:"
 msgstr "_Текстийн өнгө:"
 
 #: ../src/gnome-terminal.glade2.h:102
-msgid "_Transparent background"
-msgstr "_Тунгалаг дэвсгэр"
+msgid "Transparent background"
+msgstr "Тунгалаг дэвсгэр"
 
 #: ../src/gnome-terminal.glade2.h:103
 msgid "_Update login records when command is launched"
diff --git a/po/mr.po b/po/mr.po
index 61997dafbd03..50451d7b8e60 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
 #~ msgid "_Solid color"
 #~ msgstr "गडद रंग (_S)"
 
-#~ msgid "_Transparent background"
-#~ msgstr "पारदर्शी पार्श्वभूमी(_T)"
+msgid "Transparent background"
+msgstr "पारदर्शी पार्श्वभूमी"
 
 #~ msgid "Disabled"
 #~ msgstr "अकार्यान्वीतित"
diff --git a/po/ms.po b/po/ms.po
index 5b663aae2639..38a2afeecd2f 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -630,8 +630,8 @@ msgid "_Text color:"
 msgstr "Warna _Teks:"
 
 #: ../src/gnome-terminal.glade2.h:102
-msgid "_Transparent background"
-msgstr "LatarBelakang _Telus"
+msgid "Transparent background"
+msgstr "LatarBelakang Telus"
 
 #: ../src/gnome-terminal.glade2.h:103
 msgid "_Update login records when command is launched"
diff --git a/po/nb.po b/po/nb.po
index eda809fab581..7ceaf06ca263 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -2046,3 +2046,6 @@ msgstr ""
 #: ../src/terminal-window.c:3694
 msgid "C_lose Window"
 msgstr "_Lukk vindu"
+
+msgid "Transparent background"
+msgstr "Gjennomsiktig bakgrunn"
diff --git a/po/nds.po b/po/nds.po
index 98a12875e382..94fd757d3e5c 100644
--- a/po/nds.po
+++ b/po/nds.po
@@ -995,8 +995,8 @@ msgid "_Text color:"
 msgstr "_Textklöör:"
 
 #: ../src/profile-preferences.glade.h:73
-msgid "_Transparent background"
-msgstr "_Döörschienenachtergrund:"
+msgid "Transparent background"
+msgstr "Döörschienenachtergrund:"
 
 #: ../src/profile-preferences.glade.h:74
 msgid "_Update login records when command is launched"
diff --git a/po/ne.po b/po/ne.po
index 4fe16cc88a9a..d9a90adbf693 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
 #~ msgid "_None (use solid color)"
 #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
 
-#~ msgid "_Transparent background"
-#~ msgstr "पारदर्शी पृष्ठभूमि"
+msgid "Transparent background"
+msgstr "पारदर्शी पृष्ठभूमि"
 
 #~ msgid "_Use the system fixed width font"
 #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
diff --git a/po/nl.po b/po/nl.po
index a51720be1610..111b032c89fa 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -2352,3 +2352,6 @@ msgstr "Venster sl_uiten"
 
 #~ msgid "Switch to Tab 12"
 #~ msgstr "Ga naar tab 12"
+
+msgid "Transparent background"
+msgstr "Transparante achtergrond"
diff --git a/po/nn.po b/po/nn.po
index 91cd6ab918c9..92844590fcbe 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -1428,8 +1428,8 @@ msgid "_Text color:"
 msgstr "_Tekstfarge:"
 
 #: ../src/profile-preferences.glade.h:73
-msgid "_Transparent background"
-msgstr "_Gjennomskinleg bakgrunn"
+msgid "Transparent background"
+msgstr "Gjennomskinleg bakgrunn"
 
 #: ../src/profile-preferences.glade.h:74
 msgid "_Update login records when command is launched"
diff --git a/po/oc.po b/po/oc.po
index 194f13593def..04419c1e5ff9 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -2106,11 +2106,11 @@ msgstr "Tampar _la fenèstra"
 #~ msgid "Missing command"
 #~ msgstr "Comanda mancanta"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Indica se cal utilizar una variante de tèma foncée"
+msgid "Whether to use a dark theme variant"
+msgstr "Indica se cal utilizar una variante de tèma foncée"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Utilizar una variante de tèma _foncée"
+msgid "Use _dark theme variant"
+msgstr "Utilizar una variante de tèma _foncée"
 
 #~ msgid "Palette for terminal applications"
 #~ msgstr "Paleta per las aplicacions tèxte"
@@ -3195,8 +3195,8 @@ msgstr "Tampar _la fenèstra"
 #~ msgid "Run;"
 #~ msgstr "Executar;Consòla;Shell;"
 
-#~ msgid "_Transparent background"
-#~ msgstr "Rèire plan _transparent"
+msgid "Transparent background"
+msgstr "Rèire plan transparent"
 
 #~ msgid ""
 #~ "A subset of possible encodings are presented in the Encoding submenu. "
diff --git a/po/or.po b/po/or.po
index ec1e6bfb9a28..218acd712df6 100644
--- a/po/or.po
+++ b/po/or.po
@@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
 #~ msgid "Background image _scrolls"
 #~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)"
 
-#~ msgid "_Transparent background"
-#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)"
+msgid "Transparent background"
+msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି"
 
 #~ msgid "S_hade transparent or image background:"
 #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
diff --git a/po/pa.po b/po/pa.po
index 9c95b66e7185..5e5b8ba4f104 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -3008,8 +3008,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
 #~ msgid "_Solid color"
 #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
 
-#~ msgid "_Transparent background"
-#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)"
+msgid "Transparent background"
+msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ"
 
 #~ msgid "S/Key Challenge Response"
 #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
diff --git a/po/pl.po b/po/pl.po
index 609ffc36b5a4..f50b535b80fd 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -2106,3 +2106,6 @@ msgid ""
 msgstr ""
 "Wartość między 0 a 100, gdzie 0 oznacza nieprzezroczystość, a 100 oznacza "
 "całkowitą przezroczystość."
+
+msgid "Transparent background"
+msgstr "Przezroczyste tło"
diff --git a/po/ps.po b/po/ps.po
index b1de52c2ff34..a16ac4937d1a 100644
--- a/po/ps.po
+++ b/po/ps.po
@@ -1052,8 +1052,8 @@ msgid "_Text color:"
 msgstr ":د ليکنې رنګ_"
 
 #: ../src/profile-preferences.glade.h:69
-msgid "_Transparent background"
-msgstr "روڼ شاليد_"
+msgid "Transparent background"
+msgstr "روڼ شاليد"
 
 #: ../src/profile-preferences.glade.h:70
 msgid "_Update login records when command is launched"
diff --git a/po/pt.po b/po/pt.po
index 2b37c0df18fa..ffd18b2d187b 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -2077,11 +2077,11 @@ msgstr "Fechar jane_La"
 #~ "Se verdadeiro, os registos de sistema de início de sessão utmp e wtmp "
 #~ "serão atualizados ao iniciar um comando dentro do terminal."
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Se utilizar ou não uma variante escura do tema"
+msgid "Whether to use a dark theme variant"
+msgstr "Se utilizar ou não uma variante escura do tema"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Utilizar variante _escura de tema"
+msgid "Use _dark theme variant"
+msgstr "Utilizar variante _escura de tema"
 
 #~ msgid "_Update login records when command is launched"
 #~ msgstr "_Atualizar os registos de início de sessão ao executar um comando"
@@ -2975,8 +2975,8 @@ msgstr "Fechar jane_La"
 #~ msgid "Background image _scrolls"
 #~ msgstr "Imagem de fundo _rola"
 
-#~ msgid "_Transparent background"
-#~ msgstr "Fundo _transparente"
+msgid "Transparent background"
+msgstr "Fundo transparente"
 
 #~ msgid "S_hade transparent or image background:"
 #~ msgstr "Transparente som_breado ou imagem de fundo:"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index dee5c31593cd..3c0a7d09e1a2 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -2116,11 +2116,11 @@ msgstr "_Fechar janela"
 #~ msgid "TITLE"
 #~ msgstr "TÍTULO"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Se deve ou não usar uma variante de tema escuro"
+msgid "Whether to use a dark theme variant"
+msgstr "Se deve ou não usar uma variante de tema escuro"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Usar variante de tema es_curo"
+msgid "Use _dark theme variant"
+msgstr "Usar variante de tema es_curo"
 
 #~ msgid "COMMAND"
 #~ msgstr "COMANDO"
@@ -2878,3 +2878,6 @@ msgstr "_Fechar janela"
 #~ "terminal poderão usar. Essa é a paleta, na forma de uma lista de nomes de "
 #~ "cores separada por dois pontos. Os nomes de cores devem estar no formato "
 #~ "hexadecimal. Exemplo: \"#FF00FF\""
+
+msgid "Transparent background"
+msgstr "Fundo transparente"
diff --git a/po/ro.po b/po/ro.po
index 179dd77fd166..f7fc7ae070cf 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1576,8 +1576,8 @@ msgid "_Text color:"
 msgstr "Culoare _text:"
 
 #: ../src/profile-preferences.glade.h:77
-msgid "_Transparent background"
-msgstr "Fundal _transparent"
+msgid "Transparent background"
+msgstr "Fundal transparent"
 
 #: ../src/profile-preferences.glade.h:78
 msgid "_Underline color:"
diff --git a/po/ru.po b/po/ru.po
index 1a6fbd95b4ba..4551e12f255b 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -2065,3 +2065,6 @@ msgstr ""
 #: ../src/terminal-window.c:3694
 msgid "C_lose Window"
 msgstr "_Закрыть окно"
+
+msgid "Transparent background"
+msgstr "Прозрачный фон"
diff --git a/po/rw.po b/po/rw.po
index 3f0223162995..b7fff4cb3ce4 100644
--- a/po/rw.po
+++ b/po/rw.po
@@ -748,7 +748,7 @@ msgstr "Ibara ry'Inyandiko..."
 
 #: ../src/gnome-terminal.glade2.h:102
 #, fuzzy
-msgid "_Transparent background"
+msgid "Transparent background"
 msgstr "Mbuganyuma"
 
 #: ../src/gnome-terminal.glade2.h:103
diff --git a/po/si.po b/po/si.po
index 81dbf6589f89..5cb0e5ad52cc 100644
--- a/po/si.po
+++ b/po/si.po
@@ -537,8 +537,8 @@ msgid "_Text color:"
 msgstr "පෙළ වර්‍ණ: (_T)"
 
 #: ../src/gnome-terminal.glade2.h:86
-msgid "_Transparent background"
-msgstr "විනිවිද පෙනෙන පසුබිම (_T)"
+msgid "Transparent background"
+msgstr "විනිවිද පෙනෙන පසුබිම"
 
 #: ../src/gnome-terminal.glade2.h:87
 msgid "_Update login records when command is launched"
diff --git a/po/sk.po b/po/sk.po
index 3a8ede3b61f4..b9744bc7c14c 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -2165,11 +2165,11 @@ msgstr "_Zavrieť okno"
 #~ msgstr "TITULOK"
 
 # gsetting summary
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Či použiť tmavú verziu témy"
+msgid "Whether to use a dark theme variant"
+msgstr "Či použiť tmavú verziu témy"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Použiť _tmavú verziu témy"
+msgid "Use _dark theme variant"
+msgstr "Použiť _tmavú verziu témy"
 
 #~ msgid "COMMAND"
 #~ msgstr "PRÍKAZ"
@@ -2188,3 +2188,6 @@ msgstr "_Zavrieť okno"
 #~ "  shell   Spustí použivateľský shell v novom termináli\n"
 #~ "\n"
 #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --help“.\n"
+
+msgid "Transparent background"
+msgstr "Priehľadné pozadie"
diff --git a/po/sl.po b/po/sl.po
index 72baf7b1e8ad..d7ff33ccfe8e 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -2066,11 +2066,11 @@ msgstr "_Zapri okno"
 #~ msgid "Missing command"
 #~ msgstr "Manjka ukaz"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Ali naj se uporabi temna tema okna"
+msgid "Whether to use a dark theme variant"
+msgstr "Ali naj se uporabi temna tema okna"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Uporabi _temno temo"
+msgid "Use _dark theme variant"
+msgstr "Uporabi _temno temo"
 
 #~ msgid "Set the terminal title"
 #~ msgstr "Nastavi naziv terminala"
@@ -2322,3 +2322,6 @@ msgstr "_Zapri okno"
 
 #~ msgid "_Profile Preferences…"
 #~ msgstr "Možnosti _profila ..."
+
+msgid "Transparent background"
+msgstr "Prosojno ozadje"
diff --git a/po/sq.po b/po/sq.po
index e59c0b69d8f8..6fb409043319 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -567,8 +567,8 @@ msgstr "Ngjyra e _tekstit:"
 
 # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
 #: ../src/gnome-terminal.glade2.h:85
-msgid "_Transparent background"
-msgstr "Sfond _Trasparent"
+msgid "Transparent background"
+msgstr "Sfond Trasparent"
 
 #: ../src/gnome-terminal.glade2.h:86
 msgid "_Update login records when command is launched"
diff --git a/po/sr.po b/po/sr.po
index fce0f63524ce..89111b19d08d 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -2174,11 +2174,11 @@ msgstr "_Затвори прозор"
 #~ msgid "Keyboard shortcut to set the terminal title"
 #~ msgstr "Пречица за постављање наслова терминала"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Да ли ће бити коришћена варијанта тамне теме"
+msgid "Whether to use a dark theme variant"
+msgstr "Да ли ће бити коришћена варијанта тамне теме"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Користи варијанту _тамне теме"
+msgid "Use _dark theme variant"
+msgstr "Користи варијанту _тамне теме"
 
 #~ msgid "_Use the system fixed width font"
 #~ msgstr "_Користи системски словни лик сталне ширине"
@@ -2230,3 +2230,6 @@ msgstr "_Затвори прозор"
 
 #~ msgid "Close Window"
 #~ msgstr "Затвори прозор"
+
+msgid "Transparent background"
+msgstr "Провидна позадина"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index c82646ca4451..4ba3d9588643 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -2174,11 +2174,11 @@ msgstr "_Zatvori prozor"
 #~ msgid "Keyboard shortcut to set the terminal title"
 #~ msgstr "Prečica za postavljanje naslova terminala"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Da li će biti korišćena varijanta tamne teme"
+msgid "Whether to use a dark theme variant"
+msgstr "Da li će biti korišćena varijanta tamne teme"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Koristi varijantu _tamne teme"
+msgid "Use _dark theme variant"
+msgstr "Koristi varijantu _tamne teme"
 
 #~ msgid "_Use the system fixed width font"
 #~ msgstr "_Koristi sistemski slovni lik stalne širine"
@@ -2230,3 +2230,6 @@ msgstr "_Zatvori prozor"
 
 #~ msgid "Close Window"
 #~ msgstr "Zatvori prozor"
+
+msgid "Transparent background"
+msgstr "Providna pozadina"
diff --git a/po/sv.po b/po/sv.po
index 745f7d985494..2cfce8bc6254 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -2073,5 +2073,8 @@ msgstr "Stän_g fönster"
 #~ msgid "Unknown completion request for \"%s\""
 #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
 
+msgid "Transparent background"
+msgstr "Genomskinlig bakgrund"
+
 #~ msgid "Missing command"
 #~ msgstr "Kommando saknas"
diff --git a/po/ta.po b/po/ta.po
index 80aa2f684eec..61185b47f911 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -3028,8 +3028,8 @@ msgstr "_l சாளரத்தை மூடவும்"
 #~ msgid "_Solid color"
 #~ msgstr "(_S) ஒரே வண்ணம்"
 
-#~ msgid "_Transparent background"
-#~ msgstr "_T புலப்பாடு பின்னணி"
+msgid "Transparent background"
+msgstr "புலப்பாடு பின்னணி"
 
 #~ msgid "No such profile \"%s\", using default profile\n"
 #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
diff --git a/po/te.po b/po/te.po
index 000cda30f86c..6dcf79399604 100644
--- a/po/te.po
+++ b/po/te.po
@@ -2898,8 +2898,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
 #~ msgid "Background image _scrolls"
 #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
 
-#~ msgid "_Transparent background"
-#~ msgstr "పారదర్శక నేపథ్యం (_T)"
+msgid "Transparent background"
+msgstr "పారదర్శక నేపథ్యం"
 
 #~ msgid "S_hade transparent or image background:"
 #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
diff --git a/po/tg.po b/po/tg.po
index e3feef658e1e..a772744f269a 100644
--- a/po/tg.po
+++ b/po/tg.po
@@ -2096,11 +2096,11 @@ msgstr "П_ӯшонидани равзана"
 #~ msgid "Show server options"
 #~ msgstr "Намоиши имконоти сервер"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Оё варианти мавзӯи торик истифода шавад"
+msgid "Whether to use a dark theme variant"
+msgstr "Оё варианти мавзӯи торик истифода шавад"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Истифодаи _варианти мавзӯи торик"
+msgid "Use _dark theme variant"
+msgstr "Истифодаи _варианти мавзӯи торик"
 
 #~ msgid "_Use the system fixed width font"
 #~ msgstr "_Истифодаи шрифти бараш бо система таъиншуда"
diff --git a/po/th.po b/po/th.po
index f7a8d674657e..b0cc3a6014c2 100644
--- a/po/th.po
+++ b/po/th.po
@@ -2040,11 +2040,11 @@ msgstr "ปิ_ดหน้าต่าง"
 #~ msgid "Missing command"
 #~ msgstr "ขาดคำสั่ง"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "ใช้ชุดตกแต่งแบบสีเข้มหรือไม่"
+msgid "Whether to use a dark theme variant"
+msgstr "ใช้ชุดตกแต่งแบบสีเข้มหรือไม่"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "ใช้ชุดตกแต่งแบบสีเ_ข้ม"
+msgid "Use _dark theme variant"
+msgstr "ใช้ชุดตกแต่งแบบสีเ_ข้ม"
 
 #~ msgid "_Use the system fixed width font"
 #~ msgstr "ใ_ช้แบบอักษรความกว้างคงที่ของระบบ"
@@ -2622,8 +2622,8 @@ msgstr "ปิ_ดหน้าต่าง"
 #~ msgid "_Solid color"
 #~ msgstr "สี_ทึบ"
 
-#~ msgid "_Transparent background"
-#~ msgstr "พื้นหลังโปร่งแ_สง"
+msgid "Transparent background"
+msgstr "พื้นหลังโปร่งแสง"
 
 #~ msgid ""
 #~ "You already have a profile called “%s”. Do you want to create another "
diff --git a/po/tr.po b/po/tr.po
index f7c68e62d9da..316587c0a7b2 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1963,3 +1963,6 @@ msgstr "Hala bir süreç bu uçbirimde çalışıyor. Uçbirimi kapatmak onu son
 #: ../src/terminal-window.c:3694
 msgid "C_lose Window"
 msgstr "_Pencereyi Kapat"
+
+msgid "Transparent background"
+msgstr "Şeffaf arkaplan"
diff --git a/po/ug.po b/po/ug.po
index 1673bb32d9db..e21e61e829d7 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
 #~ msgid "_Solid color"
 #~ msgstr "ساپ رەڭ(_S)"
 
-#~ msgid "_Transparent background"
-#~ msgstr "سۈزۈك تەگلىك(_T)"
+msgid "Transparent background"
+msgstr "سۈزۈك تەگلىك"
 
 #~ msgid ""
 #~ "You already have a profile called “%s”. Do you want to create another "
diff --git a/po/uk.po b/po/uk.po
index a8db018e0a9d..4b90b5c5ad9b 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -2075,11 +2075,11 @@ msgstr "Закр_ити вікно"
 #~ msgid "Missing command"
 #~ msgstr "Бракує команди"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Чи використовувати темний варіант теми"
+msgid "Whether to use a dark theme variant"
+msgstr "Чи використовувати темний варіант теми"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Використовувати _темний варіант теми"
+msgid "Use _dark theme variant"
+msgstr "Використовувати _темний варіант теми"
 
 #~ msgid "COMMAND"
 #~ msgstr "КОМАНДА"
@@ -2946,8 +2946,8 @@ msgstr "Закр_ити вікно"
 #~ msgid "_Solid color"
 #~ msgstr "_Суцільний колір"
 
-#~ msgid "_Transparent background"
-#~ msgstr "П_розоре тло"
+msgid "Transparent background"
+msgstr "Прозоре тло"
 
 #~ msgid "Switch to Tab 2"
 #~ msgstr "До вкладки 2"
diff --git a/po/vi.po b/po/vi.po
index e9439179d514..e22040ac3233 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -2059,11 +2059,11 @@ msgstr "Đón_g cửa sổ"
 #~ msgid "Missing command"
 #~ msgstr "Thiếu lệnh"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "Có nên dùng biến thể chủ đề tối hay không"
+msgid "Whether to use a dark theme variant"
+msgstr "Có nên dùng biến thể chủ đề tối hay không"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "Dùng biến thể chủ đề tố_i"
+msgid "Use _dark theme variant"
+msgstr "Dùng biến thể chủ đề tố_i"
 
 #~ msgid "Set the terminal title"
 #~ msgstr "Đặt tựa đề thiết bị cuối"
@@ -2671,3 +2671,6 @@ msgstr "Đón_g cửa sổ"
 #~ "Phím tắt để đặt lại thiết bị cuối. Dùng dạng chuỗi có cùng một khuôn dạng "
 #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị "
 #~ "tắt), nghĩa là không có phím tắt cho hành động này."
+
+msgid "Transparent background"
+msgstr "Nền trong suốt"
diff --git a/po/wa.po b/po/wa.po
index 285657194713..f068531c2928 100644
--- a/po/wa.po
+++ b/po/wa.po
@@ -563,8 +563,8 @@ msgid "_Text color:"
 msgstr "Coleur pol _tecse:"
 
 #: ../src/gnome-terminal.glade2.h:86
-msgid "_Transparent background"
-msgstr "Fond k' on voet _houte"
+msgid "Transparent background"
+msgstr "Fond k' on voet houte"
 
 #: ../src/gnome-terminal.glade2.h:87
 msgid "_Update login records when command is launched"
diff --git a/po/xh.po b/po/xh.po
index e5981c6ec5bf..7f9f8049c3df 100644
--- a/po/xh.po
+++ b/po/xh.po
@@ -620,8 +620,8 @@ msgid "_Text color:"
 msgstr "_Umbala wombhalo:"
 
 #: ../src/gnome-terminal.glade2.h:102
-msgid "_Transparent background"
-msgstr "_Okungasemva okucace gca"
+msgid "Transparent background"
+msgstr "Okungasemva okucace gca"
 
 #: ../src/gnome-terminal.glade2.h:103
 msgid "_Update login records when command is launched"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index b18a9e78cf05..c861d33895f5 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -2037,11 +2037,11 @@ msgstr "关闭窗口(_L)"
 #~ msgid "Missing command"
 #~ msgstr "遗漏命令"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "是否使用暗色主题"
+msgid "Whether to use a dark theme variant"
+msgstr "是否使用暗色主题"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "使用暗色主题(_D)"
+msgid "Use _dark theme variant"
+msgstr "使用暗色主题(_D)"
 
 #~ msgid "COMMAND"
 #~ msgstr "命令"
@@ -2280,3 +2280,6 @@ msgstr "关闭窗口(_L)"
 
 #~ msgid "_Find..."
 #~ msgstr "查找(_F)..."
+
+msgid "Transparent background"
+msgstr "透明背景"
diff --git a/po/zh_HK.po b/po/zh_HK.po
index eb0ede77e889..aceb184b2440 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
 
 #~ msgid "Show session management options"
 #~ msgstr "顯示作業階段管理選項"
+
+msgid "Transparent background"
+msgstr "透明背景"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 8326ad3b0171..a9062135a180 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -2034,11 +2034,11 @@ msgstr "關閉視窗(_L)"
 #~ msgid "Missing command"
 #~ msgstr "遺失指令"
 
-#~ msgid "Whether to use a dark theme variant"
-#~ msgstr "是否使用暗色系布景主題變體"
+msgid "Whether to use a dark theme variant"
+msgstr "是否使用暗色系布景主題變體"
 
-#~ msgid "Use _dark theme variant"
-#~ msgstr "使用暗色系布景主題變體(_D)"
+msgid "Use _dark theme variant"
+msgstr "使用暗色系布景主題變體(_D)"
 
 #~ msgid "_Use the system fixed width font"
 #~ msgstr "使用系統的固定寬度字型(_U)"
@@ -2383,3 +2383,6 @@ msgstr "關閉視窗(_L)"
 
 #~ msgid "Show session management options"
 #~ msgstr "顯示作業階段管理選項"
+
+msgid "Transparent background"
+msgstr "透明背景"
-- 
2.1.0