]> git.pld-linux.org Git - packages/gnome-terminal.git/blame - gnome-terminal-transparency.patch
- updated to 3.40.1
[packages/gnome-terminal.git] / gnome-terminal-transparency.patch
CommitLineData
bb11d6bf 1From c9a5c9630248efe0bc34dfbd4f54c8d4f68d4ee6 Mon Sep 17 00:00:00 2001
2b7dad92
JK
2From: Debarshi Ray <debarshir@gnome.org>
3Date: Mon, 12 May 2014 14:57:18 +0200
d4bc1a2d 4Subject: [PATCH 01/14] Restore transparency
2b7dad92
JK
5
6The transparency settings were removed as a side effect of
72bff4b63ed3ceef6055e35563e9b0b33ad57349d
8
9This restores them and you will need a compositing window manager to
10use it. The background image setting, also known as faux transparency,
11was not restored.
12
13The transparency checkbox lost its mnemonic accelerator because 't'
14is already taken and using any other letter would make it hard to
15restore the translations of the string.
bb11d6bf
JK
16
17Some changes by Peter Weber <peter.weber@mailbox.org>
2b7dad92 18---
bb11d6bf
JK
19 src/org.gnome.Terminal.gschema.xml | 10 +++++++
20 src/preferences.ui | 47 ++++++++++++++++++++++++++++++
21 src/profile-editor.c | 16 ++++++++++
22 src/terminal-schemas.h | 3 ++
23 src/terminal-screen.c | 22 +++++++++++++-
24 src/terminal-window.c | 7 +++++
25 6 files changed, 104 insertions(+), 1 deletion(-)
2b7dad92
JK
26
27diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
bb11d6bf 28index 945b0bd661c5..c581f3cf2553 100644
2b7dad92
JK
29--- a/src/org.gnome.Terminal.gschema.xml
30+++ b/src/org.gnome.Terminal.gschema.xml
bb11d6bf 31@@ -400,6 +400,16 @@
2b7dad92
JK
32 <default>'narrow'</default>
33 <summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
34 </key>
35+ <key name="use-transparent-background" type="b">
36+ <default>false</default>
37+ <summary>Whether to use a transparent background</summary>
38+ </key>
39+ <key name="background-transparency-percent" type="i">
40+ <default>50</default>
41+ <range min="0" max="100"/>
42+ <summary>Adjust the amount of transparency</summary>
43+ <description>A value between 0 and 100, where 0 is opaque and 100 is fully transparent.</description>
44+ </key>
45 </schema>
46
47 <!-- Keybinding settings -->
bb11d6bf
JK
48diff --git a/src/preferences.ui b/src/preferences.ui
49index 6259aac0f02f..f5c366f14e10 100644
50--- a/src/preferences.ui
51+++ b/src/preferences.ui
52@@ -77,6 +77,11 @@
53 <property name="step_increment">0.05</property>
54 <property name="page_increment">0.25</property>
2b7dad92
JK
55 </object>
56+ <object class="GtkAdjustment" id="background-transparent-adjustment">
57+ <property name="upper">100</property>
58+ <property name="step_increment">1</property>
59+ <property name="page_increment">10</property>
60+ </object>
61 <object class="GtkListStore" id="cjk-ambiguous-width-model">
62 <columns>
63 <!-- column-name gchararray -->
bb11d6bf
JK
64@@ -1317,6 +1322,48 @@
65 <property name="position">1</property>
66 </packing>
67 </child>
68+ <child>
69+ <object class="GtkBox" id="use-transparent-background-box">
70+ <property name="visible">True</property>
71+ <property name="can_focus">False</property>
72+ <property name="orientation">horizontal</property>
73+ <property name="spacing">12</property>
74+ <child>
75+ <object class="GtkCheckButton" id="use-transparent-background">
76+ <property name="label" translatable="yes">Transparent background</property>
77+ <property name="visible">True</property>
78+ <property name="can_focus">True</property>
79+ <property name="receives_default">False</property>
80+ <property name="use_underline">True</property>
81+ <property name="xalign">0</property>
82+ <property name="draw_indicator">True</property>
83+ </object>
84+ <packing>
85+ <property name="expand">False</property>
86+ <property name="fill">False</property>
87+ <property name="position">0</property>
88+ </packing>
89+ </child>
90+ <child>
91+ <object class="GtkScale" id="background-transparent-scale">
92+ <property name="visible">True</property>
93+ <property name="can_focus">True</property>
94+ <property name="adjustment">background-transparent-adjustment</property>
95+ <property name="draw_value">False</property>
96+ </object>
97+ <packing>
98+ <property name="expand">True</property>
99+ <property name="fill">True</property>
100+ <property name="position">1</property>
101+ </packing>
102+ </child>
103+ </object>
104+ <packing>
105+ <property name="expand">True</property>
106+ <property name="fill">True</property>
107+ <property name="position">2</property>
108+ </packing>
109+ </child>
110 </object>
111 </child>
112 </object>
113diff --git a/src/profile-editor.c b/src/profile-editor.c
114index eaad9182fed2..e03e35fc1bea 100644
636978f6
JB
115--- gnome-terminal-3.38.0/src/profile-editor.c.orig 2020-09-20 11:56:27.749274156 +0200
116+++ gnome-terminal-3.38.0/src/profile-editor.c 2020-09-20 11:59:49.354848632 +0200
117@@ -1427,6 +1427,22 @@
bb11d6bf
JK
118 "active-id",
119 G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
636978f6 120
bb11d6bf
JK
121+ profile_prefs_settings_bind (profile,
122+ TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
123+ gtk_builder_get_object (builder, "use-transparent-background"),
124+ "active",
125+ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
126+ profile_prefs_settings_bind (profile,
127+ TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
128+ gtk_builder_get_object (builder, "background-transparent-scale"),
129+ "sensitive",
130+ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY);
131+ profile_prefs_settings_bind (profile,
132+ TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT,
133+ gtk_builder_get_object (builder, "background-transparent-adjustment"),
134+ "value",
135+ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
636978f6
JB
136+
137 w = (GtkWidget *) gtk_builder_get_object (builder, "enable-sixel-checkbutton");
138 profile_prefs_settings_bind (profile, TERMINAL_PROFILE_ENABLE_SIXEL_KEY, w,
139 "active", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
8a5b6f76
JB
140--- gnome-terminal-3.40.0/src/terminal-schemas.h.orig 2021-04-17 08:51:31.266561277 +0200
141+++ gnome-terminal-3.40.0/src/terminal-schemas.h 2021-04-17 09:04:42.797545957 +0200
142@@ -76,6 +76,9 @@ G_BEGIN_DECLS
2b7dad92
JK
143 #define TERMINAL_PROFILE_VISIBLE_NAME_KEY "visible-name"
144 #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY "word-char-exceptions"
145
146+#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND "use-transparent-background"
147+#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent"
148+
149 #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close"
8a5b6f76 150 #define TERMINAL_SETTING_CONTEXT_INFO_KEY "context-info"
2b7dad92 151 #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar"
2b7dad92 152diff --git a/src/terminal-screen.c b/src/terminal-screen.c
bb11d6bf 153index a85fcefd40e1..26202e4555ea 100644
2b7dad92
JK
154--- a/src/terminal-screen.c
155+++ b/src/terminal-screen.c
bb11d6bf 156@@ -800,7 +800,9 @@ terminal_screen_profile_changed_cb (GSettings *profile,
2b7dad92
JK
157 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_COLORS_SET_KEY) ||
158 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_BACKGROUND_COLOR_KEY) ||
159 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_FOREGROUND_COLOR_KEY) ||
160- prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY))
161+ prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY) ||
162+ prop_name == I_(TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND) ||
163+ prop_name == I_(TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT))
164 update_color_scheme (screen);
165
166 if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
bb11d6bf 167@@ -877,6 +879,8 @@ update_color_scheme (TerminalScreen *screen)
2b7dad92
JK
168 GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
169 GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
170 GtkStyleContext *context;
171+ GtkWidget *toplevel;
172+ gboolean transparent;
173 gboolean use_theme_colors;
174
175 context = gtk_widget_get_style_context (widget);
bb11d6bf 176@@ -918,6 +922,18 @@ update_color_scheme (TerminalScreen *screen)
2b7dad92
JK
177 }
178
179 colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
180+
181+ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
182+ if (transparent)
183+ {
184+ gint transparency_percent;
185+
186+ transparency_percent = g_settings_get_int (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT);
187+ bg.alpha = (100 - transparency_percent) / 100.0;
188+ }
189+ else
190+ bg.alpha = 1.0;
191+
192 vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
193 colors, n_colors);
194 vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
bb11d6bf 195@@ -925,6 +941,10 @@ update_color_scheme (TerminalScreen *screen)
2b7dad92
JK
196 vte_terminal_set_color_cursor_foreground (VTE_TERMINAL (screen), cursor_fgp);
197 vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
198 vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
199+
200+ toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
201+ if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
202+ gtk_widget_set_app_paintable (toplevel, transparent);
203 }
204
205 static void
206diff --git a/src/terminal-window.c b/src/terminal-window.c
bb11d6bf 207index 4ed3647498b2..8fc70ce74252 100644
2b7dad92
JK
208--- a/src/terminal-window.c
209+++ b/src/terminal-window.c
bb11d6bf
JK
210@@ -2088,6 +2088,8 @@ terminal_window_init (TerminalWindow *window)
211 };
2b7dad92
JK
212 TerminalWindowPrivate *priv;
213 TerminalApp *app;
2b7dad92
JK
214+ GdkScreen *screen;
215+ GdkVisual *visual;
d4bc1a2d 216 GSettings *gtk_debug_settings;
bb11d6bf
JK
217 GtkWindowGroup *window_group;
218 // GtkAccelGroup *accel_group;
219@@ -2102,6 +2104,11 @@ terminal_window_init (TerminalWindow *window)
2b7dad92
JK
220
221 gtk_widget_init_template (GTK_WIDGET (window));
222
223+ screen = gtk_widget_get_screen (GTK_WIDGET (window));
224+ visual = gdk_screen_get_rgba_visual (screen);
225+ if (visual != NULL)
226+ gtk_widget_set_visual (GTK_WIDGET (window), visual);
227+
228 uuid_generate (u);
229 uuid_unparse (u, uuidstr);
230 priv->uuid = g_strdup (uuidstr);
231--
bb11d6bf 2322.19.1
2b7dad92
JK
233
234
bb11d6bf 235From f10a426375c392add4ad9ce28bdfc17c27b2da23 Mon Sep 17 00:00:00 2001
2b7dad92
JK
236From: Lars Uebernickel <lars.uebernickel@canonical.com>
237Date: Wed, 28 May 2014 14:11:02 +0200
d4bc1a2d 238Subject: [PATCH 02/14] window: Make the drawing robust across all themes
2b7dad92
JK
239
240There are lots of themes out there in the wild that do not specify a
241background-color for all widgets and the default is transparent. This
242is usually not a problem because GTK+ sets an opaque region on the
243whole window and things without a background-color get drawn with the
244theme's default background colour. However, to achieve transparency
245we disable the opaque region by making the window app-paintable. This
246can lead to transparent menubars or notebook tabs in some themes. We
247can avoid this by ensuring that the window always renders a background.
248
249https://bugzilla.gnome.org/show_bug.cgi?id=730016
250---
251 src/terminal-window.c | 21 +++++++++++++++++++++
252 1 file changed, 21 insertions(+)
253
254diff --git a/src/terminal-window.c b/src/terminal-window.c
bb11d6bf 255index 8fc70ce74252..1707ada83ce8 100644
2b7dad92
JK
256--- a/src/terminal-window.c
257+++ b/src/terminal-window.c
bb11d6bf
JK
258@@ -1944,6 +1944,26 @@ terminal_window_realize (GtkWidget *widget)
259 terminal_window_update_size (window);
2b7dad92
JK
260 }
261
bb11d6bf 262+static gboolean
2b7dad92
JK
263+terminal_window_draw (GtkWidget *widget,
264+ cairo_t *cr)
265+{
266+ if (gtk_widget_get_app_paintable (widget))
267+ {
268+ GtkStyleContext *context;
269+ int width;
270+ int height;
271+
272+ context = gtk_widget_get_style_context (widget);
273+ width = gtk_widget_get_allocated_width (widget);
274+ height = gtk_widget_get_allocated_height (widget);
275+ gtk_render_background (context, cr, 0, 0, width, height);
276+ gtk_render_frame (context, cr, 0, 0, width, height);
277+ }
278+
279+ return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
280+}
281+
bb11d6bf 282 static gboolean
2b7dad92
JK
283 terminal_window_state_event (GtkWidget *widget,
284 GdkEventWindowState *event)
bb11d6bf 285@@ -2255,6 +2275,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
2b7dad92
JK
286
287 widget_class->show = terminal_window_show;
288 widget_class->realize = terminal_window_realize;
289+ widget_class->draw = terminal_window_draw;
290 widget_class->window_state_event = terminal_window_state_event;
291 widget_class->screen_changed = terminal_window_screen_changed;
292 widget_class->style_updated = terminal_window_style_updated;
293--
bb11d6bf 2942.19.1
2b7dad92
JK
295
296
bb11d6bf 297From ab579d89948777e2e0267376d64cca79af6684d9 Mon Sep 17 00:00:00 2001
2b7dad92
JK
298From: "Owen W. Taylor" <otaylor@fishsoup.net>
299Date: Fri, 13 Nov 2015 15:16:42 +0100
d4bc1a2d 300Subject: [PATCH 03/14] screen, window: Extra padding around transparent
2b7dad92
JK
301 terminals in Wayland
302
303https://bugzilla.redhat.com/show_bug.cgi?id=1207943
304---
305 src/terminal-screen.c | 40 +++++++++++++++++++++++++++++++++++++---
306 src/terminal-window.c | 18 ++++++++++++------
307 2 files changed, 49 insertions(+), 9 deletions(-)
308
309diff --git a/src/terminal-screen.c b/src/terminal-screen.c
bb11d6bf 310index 26202e4555ea..c0ce8a89126c 100644
2b7dad92
JK
311--- a/src/terminal-screen.c
312+++ b/src/terminal-screen.c
4de6f867 313@@ -155,6 +155,8 @@ static void terminal_screen_system_font_
2b7dad92
JK
314 static gboolean terminal_screen_popup_menu (GtkWidget *widget);
315 static gboolean terminal_screen_button_press (GtkWidget *widget,
316 GdkEventButton *event);
317+static void terminal_screen_hierarchy_changed (GtkWidget *widget,
318+ GtkWidget *previous_toplevel);
4de6f867
JB
319 static void terminal_screen_child_exited (VteTerminal *terminal,
320 int status);
321
322@@ -624,6 +626,7 @@ terminal_screen_class_init (TerminalScre
2b7dad92
JK
323 widget_class->drag_data_received = terminal_screen_drag_data_received;
324 widget_class->button_press_event = terminal_screen_button_press;
325 widget_class->popup_menu = terminal_screen_popup_menu;
326+ widget_class->hierarchy_changed = terminal_screen_hierarchy_changed;
327
328 terminal_class->child_exited = terminal_screen_child_exited;
329
bb11d6bf
JK
330@@ -864,6 +867,32 @@ terminal_screen_profile_changed_cb (GSettings *profile,
331 g_object_thaw_notify (object);
2b7dad92
JK
332 }
333
bb11d6bf 334+static void
2b7dad92
JK
335+update_toplevel_transparency (TerminalScreen *screen)
336+{
337+ GtkWidget *widget = GTK_WIDGET (screen);
338+ TerminalScreenPrivate *priv = screen->priv;
339+ GSettings *profile = priv->profile;
340+ GtkWidget *toplevel;
341+
342+ toplevel = gtk_widget_get_toplevel (widget);
343+ if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
344+ {
345+ gboolean transparent;
346+
347+ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
348+ if (gtk_widget_get_app_paintable (toplevel) != transparent)
349+ {
350+ gtk_widget_set_app_paintable (toplevel, transparent);
351+
352+ /* The opaque region of the toplevel isn't updated until the toplevel is allocated;
353+ * set_app_paintable() doesn't force an allocation, so do that manually.
354+ */
355+ gtk_widget_queue_resize (toplevel);
356+ }
357+ }
358+}
359+
bb11d6bf 360 static void
2b7dad92
JK
361 update_color_scheme (TerminalScreen *screen)
362 {
bb11d6bf 363@@ -942,9 +971,7 @@ update_color_scheme (TerminalScreen *screen)
2b7dad92
JK
364 vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
365 vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
366
367- toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
368- if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
369- gtk_widget_set_app_paintable (toplevel, transparent);
370+ update_toplevel_transparency (screen);
371 }
372
373 static void
bb11d6bf 374@@ -1549,6 +1576,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
2b7dad92
JK
375 terminal_screen_popup_info_unref (info);
376 }
377
378+static void
379+terminal_screen_hierarchy_changed (GtkWidget *widget,
380+ GtkWidget *previous_toplevel)
381+{
382+ update_toplevel_transparency (TERMINAL_SCREEN (widget));
383+}
384+
385 static gboolean
386 terminal_screen_button_press (GtkWidget *widget,
387 GdkEventButton *event)
388diff --git a/src/terminal-window.c b/src/terminal-window.c
bb11d6bf 389index 1707ada83ce8..a3c5a7fc2f46 100644
2b7dad92
JK
390--- a/src/terminal-window.c
391+++ b/src/terminal-window.c
bb11d6bf 392@@ -1950,15 +1950,21 @@ terminal_window_draw (GtkWidget *widget,
2b7dad92
JK
393 {
394 if (gtk_widget_get_app_paintable (widget))
395 {
396+ GtkAllocation child_allocation;
397 GtkStyleContext *context;
398- int width;
399- int height;
400+ GtkWidget *child;
401+
402+ /* Get the *child* allocation, so we don't overwrite window borders */
403+ child = gtk_bin_get_child (GTK_BIN (widget));
404+ gtk_widget_get_allocation (child, &child_allocation);
405
406 context = gtk_widget_get_style_context (widget);
407- width = gtk_widget_get_allocated_width (widget);
408- height = gtk_widget_get_allocated_height (widget);
409- gtk_render_background (context, cr, 0, 0, width, height);
410- gtk_render_frame (context, cr, 0, 0, width, height);
411+ gtk_render_background (context, cr,
412+ child_allocation.x, child_allocation.y,
413+ child_allocation.width, child_allocation.height);
414+ gtk_render_frame (context, cr,
415+ child_allocation.x, child_allocation.y,
416+ child_allocation.width, child_allocation.height);
417 }
418
419 return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
420--
bb11d6bf 4212.19.1
2b7dad92
JK
422
423
bb11d6bf
JK
424From aa31c5189de74fba379426792f5d48c64515ba48 Mon Sep 17 00:00:00 2001
425From: Debarshi Ray <debarshir@gnome.org>
426Date: Mon, 27 Feb 2017 16:53:51 +0100
427Subject: [PATCH 04/14] screen: Silence -Wunused variable
428
429https://bugzilla.redhat.com/show_bug.cgi?id=1207943
430---
431 src/terminal-screen.c | 1 -
432 1 file changed, 1 deletion(-)
433
434diff --git a/src/terminal-screen.c b/src/terminal-screen.c
435index c0ce8a89126c..1b763a3890dd 100644
436--- a/src/terminal-screen.c
437+++ b/src/terminal-screen.c
438@@ -908,7 +908,6 @@ update_color_scheme (TerminalScreen *screen)
439 GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
440 GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
441 GtkStyleContext *context;
442- GtkWidget *toplevel;
443 gboolean transparent;
444 gboolean use_theme_colors;
445
446--
4472.19.1
448
449
450From b3c8ba6bd276defab38d05406d225f56b170db08 Mon Sep 17 00:00:00 2001
2b7dad92
JK
451From: Debarshi Ray <debarshir@gnome.org>
452Date: Tue, 17 Feb 2015 17:06:17 +0100
d4bc1a2d
MB
453Subject: [PATCH 11/14] Restore translations for setting a title and
454 transparency
2b7dad92
JK
455
456---
bb11d6bf
JK
457 po/am.po | 8 ++++----
458 po/an.po | 12 ++++++------
459 po/ar.po | 16 ++++++++--------
460 po/as.po | 16 ++++++++--------
d4bc1a2d 461 po/ast.po | 8 ++++----
bb11d6bf 462 po/az.po | 8 ++++----
d4bc1a2d
MB
463 po/be.po | 3 +++
464 po/be@latin.po | 8 ++++----
bb11d6bf 465 po/bg.po | 9 +++++++++
d4bc1a2d 466 po/bn.po | 8 ++++----
bb11d6bf 467 po/bn_IN.po | 11 +++++++----
d4bc1a2d 468 po/br.po | 6 +++---
bb11d6bf
JK
469 po/bs.po | 10 ++++++++++
470 po/ca.po | 12 ++++++++++++
471 po/ca@valencia.po | 12 ++++++++++++
472 po/cs.po | 12 ++++++++++++
d4bc1a2d 473 po/cy.po | 8 ++++----
bb11d6bf
JK
474 po/da.po | 11 +++++++++++
475 po/de.po | 12 ++++++++++++
d4bc1a2d 476 po/dz.po | 8 ++++----
bb11d6bf 477 po/el.po | 15 +++++++++------
d4bc1a2d 478 po/en@shaw.po | 8 ++++----
bb11d6bf
JK
479 po/en_CA.po | 8 ++++----
480 po/en_GB.po | 16 ++++++++--------
481 po/eo.po | 8 ++++----
482 po/es.po | 16 ++++++++--------
d4bc1a2d 483 po/et.po | 3 +++
bb11d6bf
JK
484 po/eu.po | 16 ++++++++--------
485 po/fa.po | 15 +++++++++------
486 po/fi.po | 12 ++++++++++++
487 po/fr.po | 12 ++++++++++++
488 po/fur.po | 11 +++++++++--
d4bc1a2d 489 po/ga.po | 3 +++
bb11d6bf
JK
490 po/gl.po | 16 ++++++++--------
491 po/gu.po | 16 ++++++++--------
492 po/he.po | 16 ++++++++--------
493 po/hi.po | 17 ++++++++---------
494 po/hr.po | 10 ++++++++++
495 po/hu.po | 12 ++++++++++++
d4bc1a2d 496 po/hy.po | 8 ++++----
bb11d6bf
JK
497 po/id.po | 12 ++++++++++++
498 po/it.po | 12 ++++++++++++
499 po/ja.po | 12 ++++++++++++
500 po/ka.po | 6 +++---
501 po/kk.po | 12 ++++++++++++
d4bc1a2d 502 po/km.po | 4 ++--
bb11d6bf
JK
503 po/kn.po | 15 +++++++++------
504 po/ko.po | 12 ++++++++++++
d4bc1a2d 505 po/ku.po | 8 ++++----
bb11d6bf
JK
506 po/lt.po | 12 ++++++++++++
507 po/lv.po | 16 ++++++++++++++++
d4bc1a2d 508 po/mai.po | 8 ++++----
bb11d6bf 509 po/mg.po | 8 ++++----
d4bc1a2d 510 po/mk.po | 8 ++++----
bb11d6bf
JK
511 po/ml.po | 3 +++
512 po/mn.po | 8 ++++----
513 po/mr.po | 16 ++++++++--------
514 po/ms.po | 8 ++++----
515 po/nb.po | 12 ++++++++++++
d4bc1a2d 516 po/nds.po | 8 ++++----
bb11d6bf
JK
517 po/ne.po | 12 ++++++------
518 po/nl.po | 12 ++++++++++++
d4bc1a2d 519 po/nn.po | 8 ++++----
bb11d6bf 520 po/oc.po | 12 ++++++------
d4bc1a2d 521 po/or.po | 4 ++--
bb11d6bf 522 po/pa.po | 23 +++++++++++------------
d4bc1a2d 523 po/ps.po | 8 ++++----
bb11d6bf
JK
524 po/pt.po | 16 ++++++++--------
525 po/pt_BR.po | 15 +++++++++------
526 po/ro.po | 4 ++--
527 po/ru.po | 16 ++++++++++++++++
d4bc1a2d 528 po/rw.po | 3 +--
bb11d6bf
JK
529 po/si.po | 8 ++++----
530 po/sk.po | 12 ++++++++++++
531 po/sl.po | 15 +++++++++------
d4bc1a2d 532 po/sq.po | 8 ++++----
bb11d6bf
JK
533 po/sr.po | 22 ++++++++++++----------
534 po/sr@latin.po | 22 ++++++++++++----------
d4bc1a2d
MB
535 po/sv.po | 12 ++++++++++++
536 po/ta.po | 27 +++++++++++++--------------
537 po/te.po | 27 +++++++++++++--------------
538 po/tg.po | 16 ++++++++--------
539 po/th.po | 20 ++++++++++----------
540 po/tr.po | 12 ++++++++++++
541 po/ug.po | 4 ++--
542 po/uk.po | 20 ++++++++++----------
bb11d6bf 543 po/vi.po | 15 +++++++++------
d4bc1a2d
MB
544 po/wa.po | 12 ++++++------
545 po/xh.po | 12 ++++++------
bb11d6bf
JK
546 po/zh_CN.po | 15 +++++++++------
547 po/zh_HK.po | 15 +++++++++------
548 po/zh_TW.po | 15 +++++++++------
549 92 files changed, 707 insertions(+), 371 deletions(-)
2b7dad92
JK
550
551diff --git a/po/am.po b/po/am.po
bb11d6bf 552index 3445d96da657..ee992f0712a5 100644
2b7dad92
JK
553--- a/po/am.po
554+++ b/po/am.po
d4bc1a2d
MB
555@@ -214,8 +214,8 @@ msgid "<b>Background</b>"
556 msgstr "<b>መደብ</b>"
557
558 #: ../src/gnome-terminal.glade2.h:2
559-msgid "<b>Command</b>"
560-msgstr "<b>ትእዛዝ</b>"
561+msgid "Command"
562+msgstr "ትእዛዝ"
563
564 #: ../src/gnome-terminal.glade2.h:3
565 msgid "<b>Compatibility</b>"
566@@ -614,8 +614,8 @@ msgid "_Text color:"
2b7dad92
JK
567 msgstr "የ_ጽሑፍ ቀለም፦"
568
569 #: ../src/gnome-terminal.glade2.h:102
570-msgid "_Transparent background"
571-msgstr "_የሚያሳይ መደብ"
572+msgid "Transparent background"
573+msgstr "የሚያሳይ መደብ"
574
575 #: ../src/gnome-terminal.glade2.h:103
576 msgid "_Update login records when command is launched"
d4bc1a2d 577diff --git a/po/an.po b/po/an.po
bb11d6bf 578index fcec2668aa11..9e07cb682c57 100644
d4bc1a2d
MB
579--- a/po/an.po
580+++ b/po/an.po
581@@ -2241,8 +2241,8 @@ msgstr "_Zarrar a finestra"
582 #~ msgid "Use custom default terminal si_ze"
583 #~ msgstr "Emplegar grandaria predeterminada presonali_zada de terminal"
584
585-#~ msgid "Title"
586-#~ msgstr "Titol"
587+msgid "Title"
588+msgstr "Titol"
589
590 #~ msgid "When terminal commands set their o_wn titles:"
591 #~ msgstr ""
592@@ -2266,8 +2266,8 @@ msgstr "_Zarrar a finestra"
593 #~ msgid "Close Window"
594 #~ msgstr "Zarrar a finestra"
595
596-#~ msgid "Set Title"
597-#~ msgstr "Establir titol"
598+msgid "Set Title"
599+msgstr "Establir titol"
600
601 #~ msgid "Switch to Tab 2"
602 #~ msgstr "Cambiar a la pestanya 2"
d4bc1a2d
MB
603@@ -2340,8 +2340,8 @@ msgstr "_Zarrar a finestra"
604 #~ msgid "_Input Methods"
605 #~ msgstr "Me_todos de dentrada"
606
607-#~ msgid "_Title:"
608-#~ msgstr "_Titol:"
609+msgid "_Title:"
610+msgstr "_Titol:"
611
612 #~ msgid "Keyboard Shortcuts"
613 #~ msgstr "Alcorces de teclau"
2b7dad92 614diff --git a/po/ar.po b/po/ar.po
bb11d6bf 615index 6f5e80cc2a66..53e15b97f312 100644
2b7dad92
JK
616--- a/po/ar.po
617+++ b/po/ar.po
bb11d6bf 618@@ -2553,11 +2553,11 @@ msgstr "أغ_لق النافذة"
d4bc1a2d
MB
619 #~ msgid "Default size:"
620 #~ msgstr "الحجم المبدئي:"
621
622-#~ msgid "Title"
623-#~ msgstr "العنوان"
624+msgid "Title"
625+msgstr "العنوان"
626
627-#~ msgid "_Title:"
628-#~ msgstr "ال_عنوان:"
629+msgid "_Title:"
630+msgstr "ال_عنوان:"
631
632 #~ msgid "Title and Command"
633 #~ msgstr "العنوان والأمر"
bb11d6bf 634@@ -2565,8 +2565,8 @@ msgstr "أغ_لق النافذة"
d4bc1a2d
MB
635 #~ msgid "_Unlimited"
636 #~ msgstr "_غير محدود"
637
638-#~ msgid "Set Title"
639-#~ msgstr "حدد العنوان"
640+msgid "Set Title"
641+msgstr "حدد العنوان"
642
643 #~ msgid "Current Locale"
644 #~ msgstr "المحليّة الحالية"
bb11d6bf 645@@ -3309,8 +3309,8 @@ msgstr "أغ_لق النافذة"
2b7dad92
JK
646 #~ msgid "Background image _scrolls"
647 #~ msgstr "صورة الخلفية ت_لتف"
648
649-#~ msgid "_Transparent background"
650-#~ msgstr "خلفية _شفافة"
651+msgid "Transparent background"
652+msgstr "خلفية شفافة"
653
654 #~ msgid "S_hade transparent or image background:"
655 #~ msgstr "_ظلل شفافية أو صورة الخلفية:"
656diff --git a/po/as.po b/po/as.po
bb11d6bf 657index 3fade2b8cb12..5b905340f89f 100644
2b7dad92
JK
658--- a/po/as.po
659+++ b/po/as.po
d4bc1a2d
MB
660@@ -2163,11 +2163,11 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
661 #~ msgid "Default size:"
662 #~ msgstr "অবিকল্পিত আকাৰ:"
663
664-#~ msgid "Title"
665-#~ msgstr "শীৰ্ষক"
666+msgid "Title"
667+msgstr "শীৰ্ষক"
668
669-#~ msgid "_Title:"
670-#~ msgstr "শীৰ্ষক (_T):"
671+msgid "_Title:"
672+msgstr "শীৰ্ষক (_T):"
673
674 #~ msgid "Title and Command"
675 #~ msgstr "শীৰ্ষক আৰু কমান্ড"
bb11d6bf 676@@ -2175,8 +2175,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
d4bc1a2d
MB
677 #~ msgid "_Unlimited"
678 #~ msgstr "অসীমিত (_U)"
679
680-#~ msgid "Set Title"
681-#~ msgstr "শীৰ্ষক নিৰ্ধাৰণ কৰক"
682+msgid "Set Title"
683+msgstr "শীৰ্ষক নিৰ্ধাৰণ কৰক"
684
685 #~ msgid "Current Locale"
686 #~ msgstr "বৰ্তমান স্থানীয়"
2b7dad92
JK
687@@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
688 #~ msgid "Background image _scrolls"
689 #~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
690
691-#~ msgid "_Transparent background"
692-#~ msgstr "স্বচ্চ পটভূমি (_T)"
693+msgid "Transparent background"
694+msgstr "স্বচ্চ পটভূমি "
695
696 #~ msgid "S_hade transparent or image background:"
697 #~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
698diff --git a/po/ast.po b/po/ast.po
d4bc1a2d 699index d1c6e7b8174a..4dc0892ed9c4 100644
2b7dad92
JK
700--- a/po/ast.po
701+++ b/po/ast.po
d4bc1a2d
MB
702@@ -1304,8 +1304,8 @@ msgid "_Base on:"
703 msgstr "_Basáu en:"
704
705 #: ../src/profile-preferences.glade.h:1
706-msgid "<b>Command</b>"
707-msgstr "<b>Comandu</b>"
708+msgid "Command"
709+msgstr "Comandu"
710
711 #: ../src/profile-preferences.glade.h:2
712 msgid "<b>Foreground, Background, Bold and Underline</b>"
2b7dad92
JK
713@@ -1598,8 +1598,8 @@ msgid "_Text color:"
714 msgstr "Color del _testu:"
715
716 #: ../src/profile-preferences.glade.h:77
717-msgid "_Transparent background"
718-msgstr "Fondu _tresparente"
719+msgid "Transparent background"
720+msgstr "Fondu tresparente"
721
722 #: ../src/profile-preferences.glade.h:78
723 msgid "_Underline color:"
724diff --git a/po/az.po b/po/az.po
bb11d6bf 725index 586c1e4d827b..4bd846797101 100644
2b7dad92
JK
726--- a/po/az.po
727+++ b/po/az.po
d4bc1a2d
MB
728@@ -218,8 +218,8 @@ msgid "<b>Background</b>"
729 msgstr "<b>Arxa plan</b>"
730
731 #: ../src/gnome-terminal.glade2.h:2
732-msgid "<b>Command</b>"
733-msgstr "<b>Əmr</b>"
734+msgid "Command"
735+msgstr "Əmr"
736
737 #: ../src/gnome-terminal.glade2.h:3
738 msgid "<b>Compatibility</b>"
739@@ -620,8 +620,8 @@ msgid "_Text color:"
2b7dad92
JK
740 msgstr "_Mətn rəngi:"
741
742 #: ../src/gnome-terminal.glade2.h:102
743-msgid "_Transparent background"
744-msgstr "_Şəffaf arxa plan"
745+msgid "Transparent background"
746+msgstr "Şəffaf arxa plan"
747
748 #: ../src/gnome-terminal.glade2.h:103
749 msgid "_Update login records when command is launched"
750diff --git a/po/be.po b/po/be.po
bb11d6bf 751index ce07d47995ca..3c65f9090ef4 100644
2b7dad92
JK
752--- a/po/be.po
753+++ b/po/be.po
385d8513
JB
754@@ -2279,6 +2279,9 @@
755 msgid "C_lose Window"
756 msgstr "_Закрыць акно"
2b7dad92
JK
757
758+msgid "Transparent background"
759+msgstr "Празрысты фон"
385d8513
JB
760+
761 #~ msgid "Verbose output"
762 #~ msgstr "Падрабязны вывад"
763
2b7dad92 764diff --git a/po/be@latin.po b/po/be@latin.po
d4bc1a2d 765index 82ef0664ae1e..27e9877f96e8 100644
2b7dad92
JK
766--- a/po/be@latin.po
767+++ b/po/be@latin.po
d4bc1a2d
MB
768@@ -1146,8 +1146,8 @@ msgid "_Base on:"
769 msgstr "Na _bazie:"
770
771 #: ../src/profile-preferences.glade.h:1
772-msgid "<b>Command</b>"
773-msgstr "<b>Zahad</b>"
774+msgid "Command"
775+msgstr "Zahad"
776
777 #: ../src/profile-preferences.glade.h:2
778 msgid "<b>Foreground and Background</b>"
779@@ -1426,8 +1426,8 @@ msgid "_Text color:"
2b7dad92
JK
780 msgstr "Koler _tekstu:"
781
782 #: ../src/profile-preferences.glade.h:73
783-msgid "_Transparent background"
784-msgstr "_Prazrysty fon"
785+msgid "Transparent background"
786+msgstr "Prazrysty fon"
787
788 #: ../src/profile-preferences.glade.h:74
789 msgid "_Update login records when command is launched"
790diff --git a/po/bg.po b/po/bg.po
bb11d6bf 791index 9a4f32e4b135..6ac17c17efb8 100644
2b7dad92
JK
792--- a/po/bg.po
793+++ b/po/bg.po
4de6f867 794@@ -2305,3 +2305,6 @@ msgstr ""
bb11d6bf 795 #: ../src/terminal-window.c:3953
2b7dad92
JK
796 msgid "C_lose Window"
797 msgstr "_Затваряне на този прозорец"
798+
799+msgid "Transparent background"
800+msgstr "Прозрачен фон"
d4bc1a2d
MB
801diff --git a/po/bn.po b/po/bn.po
802index 4906009cf46f..f97d43b0e515 100644
803--- a/po/bn.po
804+++ b/po/bn.po
805@@ -1217,8 +1217,8 @@ msgid "_Base on:"
806 msgstr "চিহ্নিত বস্তুর উপর ভিত্তি করে: (_B)"
807
808 #: ../src/profile-preferences.glade.h:1
809-msgid "<b>Command</b>"
810-msgstr "<b>কমান্ড</b>"
811+msgid "Command"
812+msgstr "কমান্ড"
813
814 #: ../src/profile-preferences.glade.h:2
815 msgid "<b>Foreground, Background, and Bold</b>"
816@@ -1524,8 +1524,8 @@ msgid "_Text color:"
817 msgstr "পাঠ্যের রং: (_T)"
818
819 #: ../src/profile-preferences.glade.h:76
820-msgid "_Transparent background"
821-msgstr "স্বচ্ছ পটভূমি (_T)"
822+msgid "Transparent background"
823+msgstr "স্বচ্ছ পটভূমি "
824
825 #: ../src/profile-preferences.glade.h:77
826 msgid "_Unlimited"
8a5b6f76
JB
827--- gnome-terminal-3.40.0/po/bn_IN.po.orig 2021-02-22 17:08:51.000000000 +0100
828+++ gnome-terminal-3.40.0/po/bn_IN.po 2021-04-17 09:13:12.663952116 +0200
829@@ -2894,8 +2894,8 @@ msgstr "উইন্ডো বন্ধ
830 #~ msgid "_Unlimited"
831 #~ msgstr "সীমাহীন (_U)"
d4bc1a2d
MB
832
833-#~ msgid "Set Title"
834-#~ msgstr "শিরোনাম নির্ধারণ করুন"
835+msgid "Set Title"
836+msgstr "শিরোনাম নির্ধারণ করুন"
837
8a5b6f76
JB
838 #~ msgid "Switch to Tab 3"
839 #~ msgstr "ট্যাব ৩-এ পরিবর্তন করুন"
840@@ -2936,5 +2936,8 @@ msgstr "উইন্ডো বন্ধ
d4bc1a2d
MB
841 #~ msgid "_Input Methods"
842 #~ msgstr "ইনপুট পদ্ধতি (_I)"
2b7dad92 843
d4bc1a2d
MB
844-#~ msgid "_Title:"
845-#~ msgstr "শিরোনাম: (_T)"
846+msgid "_Title:"
847+msgstr "শিরোনাম: (_T)"
2b7dad92
JK
848+
849+msgid "Transparent background"
850+msgstr "স্বচ্চ পটভূমি "
d4bc1a2d
MB
851diff --git a/po/br.po b/po/br.po
852index e16ea07dfc21..f4cbe857d5ca 100644
853--- a/po/br.po
854+++ b/po/br.po
855@@ -958,8 +958,8 @@ msgid "_Base on:"
856 msgstr ""
857
858 #: ../src/profile-preferences.glade.h:1
859-msgid "<b>Command</b>"
860-msgstr "<b>Arc'had</b>"
861+msgid "Command"
862+msgstr "Arc'had"
863
864 #: ../src/profile-preferences.glade.h:2
865 msgid "<b>Foreground and Background</b>"
866@@ -1211,7 +1211,7 @@ msgid "_Text color:"
867 msgstr "Liv an destenn :"
868
869 #: ../src/profile-preferences.glade.h:73
870-msgid "_Transparent background"
871+msgid "Transparent background"
872 msgstr ""
873
874 #: ../src/profile-preferences.glade.h:74
2b7dad92 875diff --git a/po/bs.po b/po/bs.po
bb11d6bf 876index 49e710859ac9..8703552984b1 100644
2b7dad92
JK
877--- a/po/bs.po
878+++ b/po/bs.po
879@@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
880 msgid "Keyboard shortcut to make font smaller"
881 msgstr "Kratica tastature za smanjivanje fonta"
882
883+#: ../src/gnome-terminal.glade2.h:102
884+msgid "Transparent background"
885+msgstr "Providna pozadina"
886+
887 #: ../src/org.gnome.Terminal.gschema.xml.h:78
888 msgid "Keyboard shortcut to make font normal-size"
889 msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
890diff --git a/po/ca.po b/po/ca.po
bb11d6bf 891index 4a612fcfc0ba..6091324a9547 100644
2b7dad92
JK
892--- a/po/ca.po
893+++ b/po/ca.po
4de6f867 894@@ -2420,6 +2420,9 @@ msgstr ""
385d8513
JB
895 msgid "C_lose Window"
896 msgstr "Tanca la _finestra"
4de6f867 897
2b7dad92
JK
898+msgid "Transparent background"
899+msgstr "Fons transparent"
d4bc1a2d 900+
4de6f867
JB
901 #~ msgid "Whether to allow bold text"
902 #~ msgstr "Si es permet o no text en negreta"
903
2b7dad92 904diff --git a/po/ca@valencia.po b/po/ca@valencia.po
bb11d6bf 905index a6e8fb4250dc..c9ed8508228d 100644
2b7dad92
JK
906--- a/po/ca@valencia.po
907+++ b/po/ca@valencia.po
4de6f867 908@@ -2357,3 +2357,6 @@ msgstr "Tanca la _finestra"
bb11d6bf
JK
909
910 #~ msgid "Whether to use a dark theme variant"
911 #~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
2b7dad92
JK
912+
913+msgid "Transparent background"
914+msgstr "Fons transparent"
8a5b6f76
JB
915--- gnome-terminal-3.40.0/po/cs.po.orig 2021-04-17 09:13:42.492163594 +0200
916+++ gnome-terminal-3.40.0/po/cs.po 2021-04-17 09:15:32.217846326 +0200
917@@ -2432,3 +2432,6 @@ msgstr ""
918 #: src/terminal-window.c:3242
2b7dad92
JK
919 msgid "C_lose Window"
920 msgstr "_Zavřít okno"
921+
922+msgid "Transparent background"
923+msgstr "Průsvitné pozadí"
924diff --git a/po/cy.po b/po/cy.po
d4bc1a2d 925index 644df82363f1..cd862feb50c0 100644
2b7dad92
JK
926--- a/po/cy.po
927+++ b/po/cy.po
d4bc1a2d
MB
928@@ -1167,8 +1167,8 @@ msgid "_Base on:"
929 msgstr "Ei _seilio ar:"
930
931 #: ../src/profile-preferences.glade.h:1
932-msgid "<b>Command</b>"
933-msgstr "<b>Gorchymyn</b>"
934+msgid "Command"
935+msgstr "Gorchymyn"
936
937 #: ../src/profile-preferences.glade.h:2
938 msgid "<b>Foreground and Background</b>"
939@@ -1448,8 +1448,8 @@ msgid "_Text color:"
2b7dad92
JK
940 msgstr "Lliw'r _testun:"
941
942 #: ../src/profile-preferences.glade.h:73
943-msgid "_Transparent background"
944-msgstr "Cefndir _tryloyw"
945+msgid "Transparent background"
946+msgstr "Cefndir tryloyw"
947
948 #: ../src/profile-preferences.glade.h:74
949 msgid "_Update login records when command is launched"
950diff --git a/po/da.po b/po/da.po
bb11d6bf 951index 65cfb20d9ad3..8c5c97c7465a 100644
2b7dad92
JK
952--- a/po/da.po
953+++ b/po/da.po
4de6f867
JB
954@@ -2401,6 +2401,9 @@ msgstr ""
955 #: src/terminal-window.c:3224
bb11d6bf
JK
956 msgid "C_lose Window"
957 msgstr "_Luk vindue"
385d8513 958+
2b7dad92
JK
959+msgid "Transparent background"
960+msgstr "Gennemsigtig baggrund"
4de6f867
JB
961
962 #~ msgid "Whether to allow bold text"
963 #~ msgstr "Om fed tekst skal tillades"
8a5b6f76
JB
964--- gnome-terminal-3.40.0/po/de.po.orig 2021-04-17 09:15:55.582389716 +0200
965+++ gnome-terminal-3.40.0/po/de.po 2021-04-17 09:16:52.815353833 +0200
966@@ -2503,6 +2503,9 @@ msgstr ""
bb11d6bf
JK
967 msgid "C_lose Window"
968 msgstr "Fenster _schließen"
385d8513 969
2b7dad92
JK
970+msgid "Transparent background"
971+msgstr "Transparenter Hintergrund"
385d8513 972+
8a5b6f76
JB
973 # missing accelerator
974 #~ msgid "Whether to allow bold text"
975 #~ msgstr "Fetten Text erlauben?"
2b7dad92 976diff --git a/po/dz.po b/po/dz.po
d4bc1a2d 977index d97e6102b850..a768fe4adc54 100644
2b7dad92
JK
978--- a/po/dz.po
979+++ b/po/dz.po
d4bc1a2d
MB
980@@ -1255,8 +1255,8 @@ msgid "_Base on:"
981 msgstr "གཞི་བཞག་སྟེ་:(_B)"
982
983 #: ../src/profile-preferences.glade.h:1
984-msgid "<b>Command</b>"
985-msgstr "<b>བརྡ་བཀོད་</b>"
986+msgid "Command"
987+msgstr "བརྡ་བཀོད་"
988
989 #: ../src/profile-preferences.glade.h:2
990 #, fuzzy
2b7dad92
JK
991@@ -1551,8 +1551,8 @@ msgid "_Text color:"
992 msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
993
994 #: ../src/profile-preferences.glade.h:77
995-msgid "_Transparent background"
996-msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)"
997+msgid "Transparent background"
998+msgstr "དྭངས་གསལ་རྒྱབ་གཞི།"
999
1000 #: ../src/profile-preferences.glade.h:78
1001 #, fuzzy
1002diff --git a/po/el.po b/po/el.po
bb11d6bf 1003index a32f5b1684f6..7fa98b45e6f5 100644
2b7dad92
JK
1004--- a/po/el.po
1005+++ b/po/el.po
bb11d6bf 1006@@ -2710,17 +2710,17 @@ msgstr "Κ_λείσιμο παραθύρου"
d4bc1a2d
MB
1007 #~ msgid "Default size:"
1008 #~ msgstr "Προεπιλεγμένο μέγεθος:"
1009
1010-#~ msgid "Title"
1011-#~ msgstr "Τίτλος"
1012+msgid "Title"
1013+msgstr "Τίτλος"
1014
1015-#~ msgid "_Title:"
1016-#~ msgstr "_Τίτλος:"
1017+msgid "_Title:"
1018+msgstr "_Τίτλος:"
1019
1020 #~ msgid "Title and Command"
1021 #~ msgstr "Τίτλος και εντολή"
1022
1023-#~ msgid "Set Title"
1024-#~ msgstr "Ορισμός τίτλου"
1025+msgid "Set Title"
1026+msgstr "Ορισμός τίτλου"
1027
1028 #~ msgid "Current Locale"
1029 #~ msgstr "Τρέχουσα τοπική ρύθμιση"
bb11d6bf 1030@@ -2758,3 +2758,6 @@ msgstr "Κ_λείσιμο παραθύρου"
2b7dad92
JK
1031
1032 #~ msgid "_Input Methods"
1033 #~ msgstr "_Μέθοδοι εισαγωγής"
1034+
1035+msgid "Transparent background"
1036+msgstr "Διάφανο παρασκήνιο"
1037diff --git a/po/en@shaw.po b/po/en@shaw.po
d4bc1a2d 1038index 82b2d53401b2..28f5dc02575b 100644
2b7dad92
JK
1039--- a/po/en@shaw.po
1040+++ b/po/en@shaw.po
d4bc1a2d
MB
1041@@ -1212,8 +1212,8 @@ msgid "_Base on:"
1042 msgstr "_𐑚𐑱𐑕 𐑪𐑯:"
1043
1044 #: ../src/profile-preferences.glade.h:1
1045-msgid "<b>Command</b>"
1046-msgstr "<b>𐑒𐑩𐑥𐑭𐑯𐑛</b>"
1047+msgid "Command"
1048+msgstr "𐑒𐑩𐑥𐑭𐑯𐑛"
1049
1050 #: ../src/profile-preferences.glade.h:2
1051 msgid "<b>Foreground, Background, Bold and Underline</b>"
1052@@ -1468,8 +1468,8 @@ msgid "_Text color:"
2b7dad92
JK
1053 msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
1054
1055 #: ../src/profile-preferences.glade.h:78
1056-msgid "_Transparent background"
1057-msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1058+msgid "Transparent background"
1059+msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1060
1061 #: ../src/profile-preferences.glade.h:79
1062 msgid "_Underline color:"
1063diff --git a/po/en_CA.po b/po/en_CA.po
bb11d6bf 1064index 6c9e0cd73d63..db4aa891dd45 100644
2b7dad92
JK
1065--- a/po/en_CA.po
1066+++ b/po/en_CA.po
d4bc1a2d
MB
1067@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
1068 msgstr "<b>Background</b>"
1069
1070 #: ../src/gnome-terminal.glade2.h:3
1071-msgid "<b>Command</b>"
1072-msgstr "<b>Command</b>"
1073+msgid "Command"
1074+msgstr "Command"
1075
1076 #: ../src/gnome-terminal.glade2.h:4
1077 msgid "<b>Compatibility</b>"
1078@@ -557,8 +557,8 @@ msgid "_Text color:"
2b7dad92
JK
1079 msgstr "_Text colour:"
1080
1081 #: ../src/gnome-terminal.glade2.h:86
1082-msgid "_Transparent background"
1083-msgstr "_Transparent background"
1084+msgid "Transparent background"
1085+msgstr "Transparent background"
1086
1087 #: ../src/gnome-terminal.glade2.h:87
1088 msgid "_Update login records when command is launched"
1089diff --git a/po/en_GB.po b/po/en_GB.po
bb11d6bf 1090index c9999e204f33..dfbff85bf907 100644
2b7dad92
JK
1091--- a/po/en_GB.po
1092+++ b/po/en_GB.po
bb11d6bf 1093@@ -2796,8 +2796,8 @@ msgstr "C_lose Window"
d4bc1a2d
MB
1094 #~ msgid "Default size:"
1095 #~ msgstr "Default size:"
1096
1097-#~ msgid "Title"
1098-#~ msgstr "Title"
1099+msgid "Title"
1100+msgstr "Title"
1101
1102 #~ msgid "When terminal commands set their o_wn titles:"
1103 #~ msgstr "When terminal commands set their o_wn titles:"
bb11d6bf
JK
1104@@ -2814,8 +2814,8 @@ msgstr "C_lose Window"
1105 #~ msgid "_Unlimited"
1106 #~ msgstr "_Unlimited"
d4bc1a2d
MB
1107
1108-#~ msgid "Set Title"
1109-#~ msgstr "Set Title"
1110+msgid "Set Title"
1111+msgstr "Set Title"
1112
bb11d6bf
JK
1113 #~ msgid "Switch to Tab 3"
1114 #~ msgstr "Switch to Tab 3"
1115@@ -2856,8 +2856,8 @@ msgstr "C_lose Window"
d4bc1a2d
MB
1116 #~ msgid "_Input Methods"
1117 #~ msgstr "_Input Methods"
1118
1119-#~ msgid "_Title:"
1120-#~ msgstr "_Title:"
1121+msgid "_Title:"
1122+msgstr "_Title:"
1123
1124 #~ msgid "Add or Remove Terminal Encodings"
1125 #~ msgstr "Add or Remove Terminal Encodings"
bb11d6bf 1126@@ -3552,8 +3552,8 @@ msgstr "C_lose Window"
2b7dad92
JK
1127 #~ msgid "Background image _scrolls"
1128 #~ msgstr "Background image _scrolls"
1129
1130-#~ msgid "_Transparent background"
1131-#~ msgstr "_Transparent background"
1132+msgid "Transparent background"
1133+msgstr "Transparent background"
1134
1135 #~ msgid "S_hade transparent or image background:"
1136 #~ msgstr "S_hade transparent or image background:"
8a5b6f76
JB
1137--- gnome-terminal-3.40.0/po/eo.po.orig 2021-02-22 17:08:51.000000000 +0100
1138+++ gnome-terminal-3.40.0/po/eo.po 2021-04-17 11:16:42.667994998 +0200
1139@@ -2827,8 +2827,8 @@ msgstr "_Fermi la fenestron"
1140 #~ msgid "_Font:"
1141 #~ msgstr "_Tiparo:"
d4bc1a2d
MB
1142
1143-#~ msgid "Set Title"
1144-#~ msgstr "Agordi titolon"
1145+msgid "Set Title"
1146+msgstr "Agordi titolon"
1147
8a5b6f76
JB
1148 #~ msgid "Switch to Tab 3"
1149 #~ msgstr "Ŝalti al langeto 3"
1150@@ -2890,8 +2890,8 @@ msgstr "_Fermi la fenestron"
d4bc1a2d
MB
1151 #~ msgid "_Input Methods"
1152 #~ msgstr "_Enigmetodoj"
1153
1154-#~ msgid "_Title:"
1155-#~ msgstr "_Titolo:"
1156+msgid "_Title:"
1157+msgstr "_Titolo:"
1158
1159 #~ msgid "On the left side"
1160 #~ msgstr "Maldekstre"
2b7dad92 1161diff --git a/po/es.po b/po/es.po
bb11d6bf 1162index 142347b3720a..9325d95de22f 100644
2b7dad92
JK
1163--- a/po/es.po
1164+++ b/po/es.po
bb11d6bf 1165@@ -2741,17 +2741,17 @@ msgstr "_Cerrar ventana"
d4bc1a2d
MB
1166 #~ msgid "Default size:"
1167 #~ msgstr "Tamaño predeterminado:"
1168
1169-#~ msgid "Title"
1170-#~ msgstr "Título"
1171+msgid "Title"
1172+msgstr "Título"
1173
1174-#~ msgid "_Title:"
1175-#~ msgstr "_Título:"
1176+msgid "_Title:"
1177+msgstr "_Título:"
1178
1179 #~ msgid "Title and Command"
1180 #~ msgstr "Título y comando"
1181
1182-#~ msgid "Set Title"
1183-#~ msgstr "Establecer título"
1184+msgid "Set Title"
1185+msgstr "Establecer título"
1186
1187 #~ msgid "Current Locale"
1188 #~ msgstr "Configuración regional actual"
bb11d6bf 1189@@ -3577,8 +3577,8 @@ msgstr "_Cerrar ventana"
2b7dad92
JK
1190 #~ msgid "_Solid color"
1191 #~ msgstr "Color _sólido"
1192
1193-#~ msgid "_Transparent background"
1194-#~ msgstr "Fondo _transparente"
1195+msgid "Transparent background"
1196+msgstr "Fondo transparente"
1197
1198 #~ msgid "No such profile \"%s\", using default profile\n"
1199 #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
1200diff --git a/po/et.po b/po/et.po
d4bc1a2d 1201index 4b1c2a7c67e4..770761168806 100644
2b7dad92
JK
1202--- a/po/et.po
1203+++ b/po/et.po
1204@@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
1205
1206 #~ msgid "Choose base profile"
1207 #~ msgstr "Vali põhiprofiil"
1208+
1209+msgid "Transparent background"
1210+msgstr "Läbipaistev taust"
1211diff --git a/po/eu.po b/po/eu.po
bb11d6bf 1212index f3aab7879a6f..543a121f6aac 100644
2b7dad92
JK
1213--- a/po/eu.po
1214+++ b/po/eu.po
4de6f867 1215@@ -2272,6 +2272,9 @@ msgstr "Oraindik prozesu bat exekutatzen
385d8513
JB
1216 msgid "C_lose Window"
1217 msgstr "It_xi leihoa"
4de6f867 1218
2b7dad92
JK
1219+msgid "Transparent background"
1220+msgstr "Atzeko plano gardena"
4de6f867
JB
1221+
1222 #~ msgid "Whether to allow bold text"
1223 #~ msgstr "Testu-formatu lodia onartzen den"
1224
8a5b6f76
JB
1225--- gnome-terminal-3.40.0/po/fa.po.orig 2021-03-19 22:43:50.000000000 +0100
1226+++ gnome-terminal-3.40.0/po/fa.po 2021-04-17 11:23:51.866939429 +0200
1227@@ -2782,8 +2782,8 @@ msgstr "_بستن پنجره"
d4bc1a2d
MB
1228 #~ msgid "Use custom default terminal si_ze"
1229 #~ msgstr "استفاده از اندازه‌ی _سفارشی پایانه‌ی پیش‌فرض"
1230
1231-#~ msgid "Title"
1232-#~ msgstr "عنوان"
1233+msgid "Title"
1234+msgstr "عنوان"
1235
1236 #~ msgid "When terminal commands set their o_wn titles:"
1237 #~ msgstr "وقتی که فرمان‌های پایانه عنوان‌های _خودشان را تنظیم می‌کنند:"
8a5b6f76
JB
1238@@ -2797,8 +2797,8 @@ msgstr "_بستن پنجره"
1239 #~ msgid "_Unlimited"
1240 #~ msgstr "_نامحدود"
d4bc1a2d
MB
1241
1242-#~ msgid "Set Title"
1243-#~ msgstr "تنظیم عنوان"
1244+msgid "Set Title"
1245+msgstr "تنظیم عنوان"
1246
8a5b6f76
JB
1247 #~ msgid "Switch to Tab 3"
1248 #~ msgstr "تعویض به زبانه‌ی ۳"
1249@@ -2839,5 +2839,8 @@ msgstr "_بستن پنجره"
d4bc1a2d
MB
1250 #~ msgid "_Input Methods"
1251 #~ msgstr "روش‌های _ورودی"
2b7dad92 1252
d4bc1a2d
MB
1253-#~ msgid "_Title:"
1254-#~ msgstr "_عنوان:"
1255+msgid "_Title:"
1256+msgstr "_عنوان:"
2b7dad92
JK
1257+
1258+msgid "Transparent background"
1259+msgstr "پس‌زمینه‌ی شفاف"
1260diff --git a/po/fi.po b/po/fi.po
bb11d6bf 1261index e284b406f040..6e7f402af7bd 100644
2b7dad92
JK
1262--- a/po/fi.po
1263+++ b/po/fi.po
4de6f867 1264@@ -2589,6 +2589,9 @@ msgstr "_Sulje ikkuna"
2b7dad92
JK
1265 #~ msgid "_Update login records when command is launched"
1266 #~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
1267
1268+msgid "Transparent background"
1269+msgstr "Läpinäkyvä tausta"
1270+
1271 #~| msgid "Error parsing command: %s"
1272 #~ msgid "Missing command"
1273 #~ msgstr "Puuttuva komento"
1274diff --git a/po/fr.po b/po/fr.po
bb11d6bf 1275index 87a8e0ff46d4..2eacb4584f32 100644
2b7dad92
JK
1276--- a/po/fr.po
1277+++ b/po/fr.po
4de6f867 1278@@ -2452,6 +2452,9 @@ msgstr ""
385d8513
JB
1279 msgid "C_lose Window"
1280 msgstr "Fermer _la fenêtre"
4de6f867 1281
2b7dad92
JK
1282+msgid "Transparent background"
1283+msgstr "Arrière-plan transparent"
d4bc1a2d 1284+
4de6f867
JB
1285 #~ msgid "Whether to allow bold text"
1286 #~ msgstr "Indique s’il faut autoriser le texte en gras"
1287
636978f6
JB
1288--- gnome-terminal-3.38.0/po/fur.po.orig 2020-09-12 21:18:27.000000000 +0200
1289+++ gnome-terminal-3.38.0/po/fur.po 2020-09-20 12:01:34.634278284 +0200
1290@@ -2417,6 +2417,9 @@
1291 msgid "C_lose Window"
1292 msgstr "_Siere barcon"
2b7dad92 1293
2b7dad92
JK
1294+msgid "Transparent background"
1295+msgstr "Fondâl trasparent"
1296+
636978f6
JB
1297 #~ msgid "Hindi"
1298 #~ msgstr "Hindi"
1299
1300@@ -3546,6 +3549,9 @@
bb11d6bf
JK
1301 #~ msgid "The text you clicked on doesn't seem to be a valid OTP challenge."
1302 #~ msgstr "Il test fracât nol samee jessi un OTP challenge."
d4bc1a2d 1303
d4bc1a2d
MB
1304+msgid "Set Title"
1305+msgstr "Imposte titul"
bb11d6bf
JK
1306+
1307 #~ msgid "Switch to Tab 3"
1308 #~ msgstr "Passe a la schede 3"
d4bc1a2d 1309
636978f6 1310@@ -3601,8 +3607,8 @@
d4bc1a2d
MB
1311 #~ msgid "_Input Methods"
1312 #~ msgstr "_Cemût inserî test"
1313
1314-#~ msgid "_Title:"
1315-#~ msgstr "_Titul:"
1316+msgid "_Title:"
1317+msgstr "_Titul:"
1318
1319 #~ msgid ""
1320 #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
2b7dad92 1321diff --git a/po/ga.po b/po/ga.po
d4bc1a2d 1322index 93d5fa9d1481..feb87dce3d6b 100644
2b7dad92
JK
1323--- a/po/ga.po
1324+++ b/po/ga.po
1325@@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
1326 #: ../src/terminal-window.c:3582
1327 msgid "C_lose Terminal"
1328 msgstr "_Dún Teirminéal"
1329+
1330+msgid "Transparent background"
1331+msgstr "Cúlra trédhearcach"
8a5b6f76
JB
1332--- gnome-terminal-3.40.0/po/gl.po.orig 2021-04-17 11:24:17.591609307 +0200
1333+++ gnome-terminal-3.40.0/po/gl.po 2021-04-17 11:24:36.055901966 +0200
1334@@ -2454,3 +2454,6 @@ msgstr ""
1335 #: src/terminal-window.c:3245
4de6f867
JB
1336 msgid "C_lose Window"
1337 msgstr "P_echar a xanela"
1338+
2b7dad92
JK
1339+msgid "Transparent background"
1340+msgstr "Fondo transparente"
2b7dad92 1341diff --git a/po/gu.po b/po/gu.po
bb11d6bf 1342index 76b459cf8dc5..485beeac98b7 100644
2b7dad92
JK
1343--- a/po/gu.po
1344+++ b/po/gu.po
d4bc1a2d
MB
1345@@ -2155,8 +2155,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1346 #~ msgid "Default size:"
1347 #~ msgstr "મૂળભૂત માપ:"
1348
1349-#~ msgid "Title"
1350-#~ msgstr "શીર્ષક"
1351+msgid "Title"
1352+msgstr "શીર્ષક"
1353
1354 #~ msgid "When terminal commands set their o_wn titles:"
1355 #~ msgstr "જ્યારે આદેશો તેમના પોતાના શીર્ષકો સુયોજીત કરે (_w):"
1356@@ -2176,8 +2176,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1357 #~ msgid "Close Window"
1358 #~ msgstr "વિન્ડો બંધ કરો"
1359
1360-#~ msgid "Set Title"
1361-#~ msgstr "શીર્ષકની ગોઠવણી કરો"
1362+msgid "Set Title"
1363+msgstr "શીર્ષકની ગોઠવણી કરો"
1364
1365 #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1366 #~ msgstr "ટુંકાણ કી “%s“ એ પહેલાથી ક્રિયા “%s“ સાથે બંધાયેલી છે"
d4bc1a2d
MB
1367@@ -2203,8 +2203,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1368 #~ msgid "_Input Methods"
1369 #~ msgstr "ઈનપુટ માટેની પધ્ધિતિઓ (_I)"
1370
1371-#~ msgid "_Title:"
1372-#~ msgstr "શીર્ષક (_T):"
1373+msgid "_Title:"
1374+msgstr "શીર્ષક (_T):"
1375
1376 #~ msgid "Keyboard shortcut to switch to tab 1"
1377 #~ msgstr "ટૅબ ૧ પર જવા માટે કીબોર્ડનું ટુંકાણ"
2b7dad92
JK
1378@@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1379 #~ msgid "_Solid color"
1380 #~ msgstr "ઘટ્ટ રંગ (_S)"
1381
1382-#~ msgid "_Transparent background"
1383-#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)"
1384+msgid "Transparent background"
1385+msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ"
1386
1387 #~ msgid "No such profile \"%s\", using default profile\n"
1388 #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
1389diff --git a/po/he.po b/po/he.po
bb11d6bf 1390index 57cb2d0d110f..efe8fa100074 100644
2b7dad92
JK
1391--- a/po/he.po
1392+++ b/po/he.po
bb11d6bf 1393@@ -2333,17 +2333,17 @@ msgstr "סגירת ה_חלון"
d4bc1a2d
MB
1394 #~ msgid "Default size:"
1395 #~ msgstr "גודל בררת מחדל:"
1396
1397-#~ msgid "Title"
1398-#~ msgstr "כותרת"
1399+msgid "Title"
1400+msgstr "כותרת"
1401
1402-#~ msgid "_Title:"
1403-#~ msgstr "_כותרת:"
1404+msgid "_Title:"
1405+msgstr "_כותרת:"
1406
1407 #~ msgid "Title and Command"
1408 #~ msgstr "כותרת ופקודה"
1409
1410-#~ msgid "Set Title"
1411-#~ msgstr "הגדרת כותרת"
1412+msgid "Set Title"
1413+msgstr "הגדרת כותרת"
1414
1415 #~ msgid "Current Locale"
1416 #~ msgstr "השפה הנוכחית"
d4bc1a2d 1417@@ -3194,8 +3194,8 @@ msgstr "סגירת ה_חלון"
2b7dad92
JK
1418 #~ msgid "_Solid color"
1419 #~ msgstr "צבע _אחיד"
1420
1421-#~ msgid "_Transparent background"
1422-#~ msgstr "רקע _שקוף"
1423+msgid "Transparent background"
1424+msgstr "רקע שקוף"
1425
1426 #~ msgid "No such profile \"%s\", using default profile\n"
1427 #~ msgstr "No such profile \"%s\", using default profile\n"
1428diff --git a/po/hi.po b/po/hi.po
bb11d6bf 1429index 2d7dc5b14008..8d3d0529df61 100644
2b7dad92
JK
1430--- a/po/hi.po
1431+++ b/po/hi.po
d4bc1a2d
MB
1432@@ -2267,9 +2267,8 @@ msgstr "विंडो बंद करें (_l)"
1433 #~ msgid "Use custom default terminal si_ze"
1434 #~ msgstr "कस्टम डिफ़ॉल्ट टर्मिनल आकार का उपयोग करें (_z)"
1435
1436-#~| msgid "_Title:"
1437-#~ msgid "Title"
1438-#~ msgstr "शीर्षक"
1439+msgid "Title"
1440+msgstr "शीर्षक"
1441
1442 #~ msgid "When terminal commands set their o_wn titles:"
1443 #~ msgstr "जब टर्मिनल कमांड उनका अपना शीर्षक सेट करता है (_w):"
1444@@ -2289,8 +2288,8 @@ msgstr "विंडो बंद करें (_l)"
1445 #~ msgid "Close Window"
1446 #~ msgstr "विंडो बंद करें"
1447
1448-#~ msgid "Set Title"
1449-#~ msgstr "शीर्षक नियत करें"
1450+msgid "Set Title"
1451+msgstr "शीर्षक नियत करें"
1452
1453 #~ msgid "Switch to Tab 2"
1454 #~ msgstr "टैब 2 पर जाएँ"
d4bc1a2d
MB
1455@@ -2349,8 +2348,8 @@ msgstr "विंडो बंद करें (_l)"
1456 #~ msgid "_Input Methods"
1457 #~ msgstr "इनपुट विधियाँ (_I)"
1458
1459-#~ msgid "_Title:"
1460-#~ msgstr "शीर्षक (_T):"
1461+msgid "_Title:"
1462+msgstr "शीर्षक (_T):"
1463
1464 #~ msgid "Disable connection to session manager"
1465 #~ msgstr "सत्र प्रबंधक में कनेक्शन निष्क्रिय करें"
1466@@ -2979,8 +2978,8 @@ msgstr "विंडो बंद करें (_l)"
2b7dad92
JK
1467 #~ msgid "_Background image"
1468 #~ msgstr "पृष्ठभूमि छवि (_B)"
1469
1470-#~ msgid "_Transparent background"
1471-#~ msgstr "पारदर्शी पृष्ठभूमि (_T)"
1472+msgid "Transparent background"
1473+msgstr "पारदर्शी पृष्ठभूमि"
1474
1475 #~ msgid "S/Key Challenge Response"
1476 #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
1477diff --git a/po/hr.po b/po/hr.po
bb11d6bf 1478index aec2eaa8bac1..207b5c774b32 100644
2b7dad92
JK
1479--- a/po/hr.po
1480+++ b/po/hr.po
4de6f867 1481@@ -2565,3 +2565,7 @@ msgstr "_Zatvori prozor"
bb11d6bf
JK
1482
1483 #~ msgid "Use transparency from system theme"
1484 #~ msgstr "Koristi prozirnost iz teme sustava"
d4bc1a2d
MB
1485+
1486+#: ../src/profile-preferences.glade.h:69
2b7dad92
JK
1487+msgid "Transparent background"
1488+msgstr "Prozirna pozadina"
8a5b6f76
JB
1489--- gnome-terminal-3.40.0/po/hu.po.orig 2021-04-17 11:24:59.037095972 +0200
1490+++ gnome-terminal-3.40.0/po/hu.po 2021-04-17 11:28:58.849555608 +0200
1491@@ -2442,3 +2442,6 @@ msgstr ""
1492 #: src/terminal-window.c:3245
385d8513
JB
1493 msgid "C_lose Window"
1494 msgstr "_Ablak bezárása"
bb11d6bf 1495+
2b7dad92
JK
1496+msgid "Transparent background"
1497+msgstr "Áttetsző háttér"
1498diff --git a/po/hy.po b/po/hy.po
d4bc1a2d 1499index aaf2d9b292da..4d466f164420 100644
2b7dad92
JK
1500--- a/po/hy.po
1501+++ b/po/hy.po
d4bc1a2d
MB
1502@@ -757,8 +757,8 @@ msgid "_Base on:"
1503 msgstr ""
1504
1505 #: ../src/profile-preferences.glade.h:1
1506-msgid "<b>Command</b>"
1507-msgstr "<b>Հրաման</b>"
1508+msgid "Command"
1509+msgstr "Հրաման"
1510
1511 #: ../src/profile-preferences.glade.h:2
1512 msgid "<b>Foreground and Background</b>"
1513@@ -1012,8 +1012,8 @@ msgid "_Text color:"
2b7dad92
JK
1514 msgstr "_Տեքստի գույնը՝"
1515
1516 #: ../src/profile-preferences.glade.h:73
1517-msgid "_Transparent background"
1518-msgstr "_Թափանցիկ նախադրյալ"
1519+msgid "Transparent background"
1520+msgstr "Թափանցիկ նախադրյալ"
1521
1522 #: ../src/profile-preferences.glade.h:74
1523 msgid "_Update login records when command is launched"
1524diff --git a/po/id.po b/po/id.po
bb11d6bf 1525index 9198218c5aaa..9f2fbd0c9d4c 100644
2b7dad92
JK
1526--- a/po/id.po
1527+++ b/po/id.po
4de6f867
JB
1528@@ -2392,6 +2392,9 @@ msgstr ""
1529 msgid "C_lose Window"
1530 msgstr "Tutup Jende_la"
bb11d6bf 1531
2b7dad92
JK
1532+msgid "Transparent background"
1533+msgstr "Latar belakang transparan"
d4bc1a2d 1534+
4de6f867
JB
1535 #~ msgid "Hindi"
1536 #~ msgstr "Hindi"
1537
8a5b6f76
JB
1538--- gnome-terminal-3.40.0/po/it.po.orig 2021-04-17 11:29:23.354162096 +0200
1539+++ gnome-terminal-3.40.0/po/it.po 2021-04-17 12:02:02.886015004 +0200
1540@@ -2468,3 +2468,6 @@ msgstr ""
1541 #: src/terminal-window.c:3245
2b7dad92
JK
1542 msgid "C_lose Window"
1543 msgstr "Chiudi _finestra"
1544+
2b7dad92
JK
1545+msgid "Transparent background"
1546+msgstr "Sfondo trasparente"
8a5b6f76
JB
1547--- gnome-terminal-3.40.0/po/ja.po.orig 2021-04-17 12:02:26.077220372 +0200
1548+++ gnome-terminal-3.40.0/po/ja.po 2021-04-17 12:07:39.686853629 +0200
1549@@ -2431,6 +2431,9 @@ msgstr ""
bb11d6bf
JK
1550 msgid "C_lose Window"
1551 msgstr "ウィンドウを閉じる(_L)"
385d8513 1552
2b7dad92
JK
1553+msgid "Transparent background"
1554+msgstr "透過な画像にする"
385d8513 1555+
8a5b6f76
JB
1556 #~ msgid "Whether to allow bold text"
1557 #~ msgstr "太字のフォントを許可するかどうか"
385d8513 1558
8a5b6f76
JB
1559--- gnome-terminal-3.40.0/po/ka.po.orig 2021-02-22 17:08:51.000000000 +0100
1560+++ gnome-terminal-3.40.0/po/ka.po 2021-04-17 12:12:38.605723333 +0200
d4bc1a2d 1561@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
8a5b6f76 1562 msgstr "<b>ფონი</b>"
d4bc1a2d
MB
1563
1564 #: ../src/gnome-terminal.glade2.h:3
1565-msgid "<b>Command</b>"
1566-msgstr "<b>ბრძანება</b>"
1567+msgid "Command"
1568+msgstr "ბრძანება"
1569
1570 #: ../src/gnome-terminal.glade2.h:4
1571 msgid "<b>Compatibility</b>"
8a5b6f76 1572@@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერ
2b7dad92
JK
1573
1574 #: ../src/gnome-terminal.glade2.h:86
1575 #, fuzzy
1576-msgid "_Transparent background"
1577+msgid "Transparent background"
1578 msgstr "გამჭირვალე"
1579
1580 #: ../src/gnome-terminal.glade2.h:87
1581diff --git a/po/kk.po b/po/kk.po
bb11d6bf 1582index 2811b7ec6239..d4239e5d12c5 100644
2b7dad92
JK
1583--- a/po/kk.po
1584+++ b/po/kk.po
4de6f867 1585@@ -2547,3 +2547,6 @@ msgstr "Терезені жа_бу"
2b7dad92
JK
1586
1587 #~ msgid "Be quiet"
1588 #~ msgstr "Тыныш болу"
1589+
1590+msgid "Transparent background"
1591+msgstr "Мөлдір фон"
d4bc1a2d
MB
1592diff --git a/po/km.po b/po/km.po
1593index 352897d2963b..b6db9394a307 100644
1594--- a/po/km.po
1595+++ b/po/km.po
1596@@ -2909,8 +2909,8 @@ msgstr "បិទ​បង្អួច"
1597 #~ msgid "Background image _scrolls"
1598 #~ msgstr "រមូរ​រូបភាព​ផ្ទៃខាងក្រោយ"
1599
1600-#~ msgid "_Transparent background"
1601-#~ msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
1602+msgid "Transparent background"
1603+msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
1604
1605 #~ msgid "S_hade transparent or image background:"
1606 #~ msgstr "ដាក់​ស្រមោល​ផ្ទៃខាងក្រោយ​ថ្លា ឬ​ផ្ទៃខាងក្រោយ​​រូបភាព ៖"
2b7dad92 1607diff --git a/po/kn.po b/po/kn.po
bb11d6bf 1608index c887f88a2c87..0fc1c3139258 100644
2b7dad92
JK
1609--- a/po/kn.po
1610+++ b/po/kn.po
d4bc1a2d
MB
1611@@ -2261,8 +2261,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1612 #~ msgid "Use custom default terminal si_ze"
1613 #~ msgstr "ಅಗತ್ಯಾನುಗುಣ ಆದೇಶತೆರೆ ಗಾತ್ರವನ್ನು ಬಳಸು (_z)"
1614
1615-#~ msgid "Title"
1616-#~ msgstr "ಶೀರ್ಷಿಕೆ"
1617+msgid "Title"
1618+msgstr "ಶೀರ್ಷಿಕೆ"
1619
1620 #~ msgid "When terminal commands set their o_wn titles:"
1621 #~ msgstr "ಆದೇಶಗಳು ತಮ್ಮದೆ ಆದ ಹೆಸರಗಳನ್ನು ಇರಿಸಿಕೊಂಡಾಗ (_w):"
1622@@ -2282,8 +2282,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1623 #~ msgid "Close Window"
1624 #~ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು"
2b7dad92 1625
d4bc1a2d
MB
1626-#~ msgid "Set Title"
1627-#~ msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
1628+msgid "Set Title"
1629+msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
1630
1631 #~ msgid "Switch to Tab 2"
1632 #~ msgstr "2 ನೆ ಟ್ಯಾಬ್‌ಗೆ ಬದಲಾಯಿಸಿ"
d4bc1a2d
MB
1633@@ -2342,5 +2342,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1634 #~ msgid "_Input Methods"
1635 #~ msgstr "ಇನ್‌ಪುಟ್ ಕ್ರಮಗಳು (_I)"
1636
1637-#~ msgid "_Title:"
1638-#~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
1639+msgid "_Title:"
1640+msgstr "ಶೀರ್ಷಿಕೆ(_T):"
2b7dad92
JK
1641+
1642+msgid "Transparent background"
1643+msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
1644diff --git a/po/ko.po b/po/ko.po
bb11d6bf 1645index d1be8c3fdab8..02de5aa11be1 100644
2b7dad92
JK
1646--- a/po/ko.po
1647+++ b/po/ko.po
4de6f867 1648@@ -2292,3 +2292,6 @@ msgstr "창 닫기(_L)"
2b7dad92 1649
bb11d6bf
JK
1650 #~ msgid "Verbose output"
1651 #~ msgstr "많이 출력"
2b7dad92
JK
1652+
1653+msgid "Transparent background"
1654+msgstr "투명한 배경"
1655diff --git a/po/ku.po b/po/ku.po
d4bc1a2d 1656index bc2bb7f03de4..d2a83a007097 100644
2b7dad92
JK
1657--- a/po/ku.po
1658+++ b/po/ku.po
d4bc1a2d
MB
1659@@ -223,8 +223,8 @@ msgid "<b>Background</b>"
1660 msgstr "<b>Zemîn</b>"
1661
1662 #: ../src/gnome-terminal.glade2.h:3
1663-msgid "<b>Command</b>"
1664-msgstr "<b>Ferman</b>"
1665+msgid "Command"
1666+msgstr "Ferman"
1667
1668 #: ../src/gnome-terminal.glade2.h:4
1669 msgid "<b>Compatibility</b>"
1670@@ -558,8 +558,8 @@ msgid "_Text color:"
2b7dad92
JK
1671 msgstr "Rengê _nivîsê:"
1672
1673 #: ../src/gnome-terminal.glade2.h:86
1674-msgid "_Transparent background"
1675-msgstr "Rûerdê _transparan"
1676+msgid "Transparent background"
1677+msgstr "Rûerdê transparan"
1678
1679 #: ../src/gnome-terminal.glade2.h:87
1680 msgid "_Update login records when command is launched"
1681diff --git a/po/lt.po b/po/lt.po
bb11d6bf 1682index e8b7622e5d46..c6fe38021b6a 100644
2b7dad92
JK
1683--- a/po/lt.po
1684+++ b/po/lt.po
4de6f867 1685@@ -2571,3 +2571,6 @@ msgstr "_Užverti langą"
2b7dad92
JK
1686
1687 #~ msgid "Whether to use a dark theme variant"
1688 #~ msgstr "Ar naudoti tamsų temos variantą"
1689+
1690+msgid "Transparent background"
1691+msgstr "Permatomas fonas"
1692diff --git a/po/lv.po b/po/lv.po
bb11d6bf 1693index 47d9e75b1ee8..a8dad3bc0d6b 100644
2b7dad92
JK
1694--- a/po/lv.po
1695+++ b/po/lv.po
4de6f867 1696@@ -2578,3 +2578,6 @@ msgstr "Aizvērt _logu"
d4bc1a2d 1697
bb11d6bf
JK
1698 #~ msgid "_Add or Remove…"
1699 #~ msgstr "_Pievienot vai izņemt…"
1700+
2b7dad92
JK
1701+msgid "Transparent background"
1702+msgstr "Caurspīdīgs fons"
1703diff --git a/po/mai.po b/po/mai.po
d4bc1a2d 1704index 715d0b9e1c82..0f31634e4f2e 100644
2b7dad92
JK
1705--- a/po/mai.po
1706+++ b/po/mai.po
d4bc1a2d
MB
1707@@ -1044,8 +1044,8 @@ msgid "_Base on:"
1708 msgstr "आधार पर: (_B)"
1709
1710 #: ../src/profile-preferences.glade.h:1
1711-msgid "<b>Command</b>"
1712-msgstr "<b>कमांड</b>"
1713+msgid "Command"
1714+msgstr "कमांड"
1715
1716 #: ../src/profile-preferences.glade.h:2
1717 msgid "<b>Foreground and Background</b>"
1718@@ -1291,8 +1291,8 @@ msgid "_Text color:"
2b7dad92
JK
1719 msgstr "पाठ रँग (_T):"
1720
1721 #: ../src/profile-preferences.glade.h:69
1722-msgid "_Transparent background"
1723-msgstr "पारदर्शी पृष्ठभूमि (_T)"
1724+msgid "Transparent background"
1725+msgstr "पारदर्शी पृष्ठभूमि"
1726
1727 #: ../src/profile-preferences.glade.h:70
1728 msgid "_Update login records when command is launched"
1729diff --git a/po/mg.po b/po/mg.po
bb11d6bf 1730index 99fa0f5e4059..a216602569af 100644
2b7dad92
JK
1731--- a/po/mg.po
1732+++ b/po/mg.po
d4bc1a2d
MB
1733@@ -220,8 +220,8 @@ msgid "<b>Background</b>"
1734 msgstr "<b>Afara</b>"
1735
1736 #: ../src/gnome-terminal.glade2.h:3
1737-msgid "<b>Command</b>"
1738-msgstr "<b>Baiko</b>"
1739+msgid "Command"
1740+msgstr "Baiko"
1741
1742 #: ../src/gnome-terminal.glade2.h:4
1743 msgid "<b>Compatibility</b>"
1744@@ -567,8 +567,8 @@ msgid "_Text color:"
2b7dad92
JK
1745 msgstr "Lokon'ny _soratra:"
1746
1747 #: ../src/gnome-terminal.glade2.h:86
1748-msgid "_Transparent background"
1749-msgstr "_Afara tatera-pahazavana"
1750+msgid "Transparent background"
1751+msgstr "Afara tatera-pahazavana"
1752
1753 #: ../src/gnome-terminal.glade2.h:87
1754 msgid "_Update login records when command is launched"
1755diff --git a/po/mk.po b/po/mk.po
d4bc1a2d 1756index 4fe43192fe57..a5a874b49c59 100644
2b7dad92
JK
1757--- a/po/mk.po
1758+++ b/po/mk.po
d4bc1a2d
MB
1759@@ -863,8 +863,8 @@ msgid "_Base on:"
1760 msgstr "_Базирано на:"
1761
1762 #: ../src/profile-preferences.glade.h:1
1763-msgid "<b>Command</b>"
1764-msgstr "<b>Команда</b>"
1765+msgid "Command"
1766+msgstr "Команда"
1767
1768 #: ../src/profile-preferences.glade.h:2
1769 #| msgid "<b>Foreground and Background</b>"
1770@@ -1167,8 +1167,8 @@ msgid "_Text color:"
2b7dad92
JK
1771 msgstr "_Боја на текстот:"
1772
1773 #: ../src/profile-preferences.glade.h:77
1774-msgid "_Transparent background"
1775-msgstr "_Транспарентна позадина"
1776+msgid "Transparent background"
1777+msgstr "Транспарентна позадина"
1778
1779 #: ../src/profile-preferences.glade.h:78
1780 #| msgid "_Text color:"
1781diff --git a/po/ml.po b/po/ml.po
bb11d6bf 1782index a23f4cc4f1ae..49caa9efe94f 100644
2b7dad92
JK
1783--- a/po/ml.po
1784+++ b/po/ml.po
bb11d6bf 1785@@ -2461,3 +2461,6 @@ msgstr "ജാലകം അടയ്ക്കുക (_l)"
2b7dad92 1786
bb11d6bf
JK
1787 #~ msgid "_Unlimited"
1788 #~ msgstr "പരിധിയില്ല (_U)"
1789+
2b7dad92
JK
1790+msgid "Transparent background"
1791+msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
2b7dad92 1792diff --git a/po/mn.po b/po/mn.po
bb11d6bf 1793index 2f9d86072d1c..09c4437d10f9 100644
2b7dad92
JK
1794--- a/po/mn.po
1795+++ b/po/mn.po
d4bc1a2d
MB
1796@@ -217,8 +217,8 @@ msgid "<b>Background</b>"
1797 msgstr "<b>Дэвсгэр</b>"
1798
1799 #: ../src/gnome-terminal.glade2.h:2
1800-msgid "<b>Command</b>"
1801-msgstr "<b>Тушаал</b>"
1802+msgid "Command"
1803+msgstr "Тушаал"
1804
1805 #: ../src/gnome-terminal.glade2.h:3
1806 msgid "<b>Compatibility</b>"
1807@@ -618,8 +618,8 @@ msgid "_Text color:"
2b7dad92
JK
1808 msgstr "_Текстийн өнгө:"
1809
1810 #: ../src/gnome-terminal.glade2.h:102
1811-msgid "_Transparent background"
1812-msgstr "_Тунгалаг дэвсгэр"
1813+msgid "Transparent background"
1814+msgstr "Тунгалаг дэвсгэр"
1815
1816 #: ../src/gnome-terminal.glade2.h:103
1817 msgid "_Update login records when command is launched"
1818diff --git a/po/mr.po b/po/mr.po
bb11d6bf 1819index 61997dafbd03..9c7dc77abd22 100644
2b7dad92
JK
1820--- a/po/mr.po
1821+++ b/po/mr.po
d4bc1a2d
MB
1822@@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा (_l)"
1823 #~ msgid "Default size:"
1824 #~ msgstr "पूर्वनिर्धारीत आकार:"
1825
1826-#~ msgid "Title"
1827-#~ msgstr "शीर्षक"
1828+msgid "Title"
1829+msgstr "शीर्षक"
1830
1831 #~ msgid "When terminal commands set their o_wn titles:"
1832 #~ msgstr "जेव्हा टर्मिनल आदेश स्वतःचे शिर्षक निश्चित करते (_w):"
1833@@ -2240,8 +2240,8 @@ msgstr "चौकट बंद करा (_l)"
1834 #~ msgid "Close Window"
1835 #~ msgstr "चौकट बंद करा"
1836
1837-#~ msgid "Set Title"
1838-#~ msgstr "शिर्षक निश्चित करा"
1839+msgid "Set Title"
1840+msgstr "शिर्षक निश्चित करा"
1841
1842 #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1843 #~ msgstr "“%s” ही शार्टकट कि “%s” या कृतीशी संलग्न आहे"
d4bc1a2d
MB
1844@@ -2267,8 +2267,8 @@ msgstr "चौकट बंद करा (_l)"
1845 #~ msgid "_Input Methods"
1846 #~ msgstr "इनपुट पध्दती (_I)"
1847
1848-#~ msgid "_Title:"
1849-#~ msgstr "शिर्षक (_T):"
1850+msgid "_Title:"
1851+msgstr "शिर्षक (_T):"
1852
1853 #~ msgid "Keyboard shortcut to switch to tab 1"
1854 #~ msgstr "टॅब 1 वापरण्याकरीता कळफलक शॉर्टकट"
2b7dad92
JK
1855@@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
1856 #~ msgid "_Solid color"
1857 #~ msgstr "गडद रंग (_S)"
1858
1859-#~ msgid "_Transparent background"
1860-#~ msgstr "पारदर्शी पार्श्वभूमी(_T)"
1861+msgid "Transparent background"
1862+msgstr "पारदर्शी पार्श्वभूमी"
1863
1864 #~ msgid "Disabled"
1865 #~ msgstr "अकार्यान्वीतित"
1866diff --git a/po/ms.po b/po/ms.po
bb11d6bf 1867index f2ebd4851d3b..f3d44c9c6294 100644
2b7dad92
JK
1868--- a/po/ms.po
1869+++ b/po/ms.po
4de6f867
JB
1870@@ -2502,6 +2502,9 @@ msgstr ""
1871 msgid "C_lose Window"
1872 msgstr "T_utup Tetingkap"
2b7dad92 1873
2b7dad92
JK
1874+msgid "Transparent background"
1875+msgstr "LatarBelakang Telus"
4de6f867
JB
1876+
1877 #~ msgid "Accelerator key"
1878 #~ msgstr "Kekunci pemecut"
2b7dad92 1879
8a5b6f76
JB
1880--- gnome-terminal-3.40.0/po/nb.po.orig 2021-04-17 12:13:02.850316782 +0200
1881+++ gnome-terminal-3.40.0/po/nb.po 2021-04-17 12:13:27.591601923 +0200
1882@@ -2406,3 +2406,6 @@ msgstr ""
1883 #: src/terminal-window.c:3224
2b7dad92
JK
1884 msgid "C_lose Window"
1885 msgstr "_Lukk vindu"
1886+
1887+msgid "Transparent background"
1888+msgstr "Gjennomsiktig bakgrunn"
1889diff --git a/po/nds.po b/po/nds.po
d4bc1a2d 1890index 82f930b1cc0c..d52fbd94eb58 100644
2b7dad92
JK
1891--- a/po/nds.po
1892+++ b/po/nds.po
d4bc1a2d
MB
1893@@ -748,8 +748,8 @@ msgid "_Base on:"
1894 msgstr "_Steiht op:"
1895
1896 #: ../src/profile-preferences.glade.h:1
1897-msgid "<b>Command</b>"
1898-msgstr "<b>Order</b>"
1899+msgid "Command"
1900+msgstr "Order"
1901
1902 #: ../src/profile-preferences.glade.h:2
1903 msgid "<b>Foreground and Background</b>"
1904@@ -996,8 +996,8 @@ msgid "_Text color:"
2b7dad92
JK
1905 msgstr "_Textklöör:"
1906
1907 #: ../src/profile-preferences.glade.h:73
1908-msgid "_Transparent background"
1909-msgstr "_Döörschienenachtergrund:"
1910+msgid "Transparent background"
1911+msgstr "Döörschienenachtergrund:"
1912
1913 #: ../src/profile-preferences.glade.h:74
1914 msgid "_Update login records when command is launched"
5a7913e6
JB
1915--- gnome-terminal-3.40.1/po/ne.po.orig 2021-04-30 13:30:46.000000000 +0200
1916+++ gnome-terminal-3.40.1/po/ne.po 2021-05-05 22:44:16.302461546 +0200
1917