]> git.pld-linux.org Git - packages/gnome-terminal.git/blob - gnome-terminal-transparency.patch
- updated to 3.42.0; uses meson now
[packages/gnome-terminal.git] / gnome-terminal-transparency.patch
1 From c9a5c9630248efe0bc34dfbd4f54c8d4f68d4ee6 Mon Sep 17 00:00:00 2001
2 From: Debarshi Ray <debarshir@gnome.org>
3 Date: Mon, 12 May 2014 14:57:18 +0200
4 Subject: [PATCH 01/14] Restore transparency
5
6 The transparency settings were removed as a side effect of
7 2bff4b63ed3ceef6055e35563e9b0b33ad57349d
8
9 This restores them and you will need a compositing window manager to
10 use it. The background image setting, also known as faux transparency,
11 was not restored.
12
13 The transparency checkbox lost its mnemonic accelerator because 't'
14 is already taken and using any other letter would make it hard to
15 restore the translations of the string.
16
17 Some changes by Peter Weber <peter.weber@mailbox.org>
18 ---
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(-)
26
27 diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
28 index 945b0bd661c5..c581f3cf2553 100644
29 --- a/src/org.gnome.Terminal.gschema.xml
30 +++ b/src/org.gnome.Terminal.gschema.xml
31 @@ -400,6 +400,16 @@
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 -->
48 diff --git a/src/preferences.ui b/src/preferences.ui
49 index 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>
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 -->
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>
113 --- gnome-terminal-3.42.0/src/profile-editor.cc.orig    2021-09-22 18:38:05.775667700 +0200
114 +++ gnome-terminal-3.42.0/src/profile-editor.cc 2021-09-27 21:23:43.302820304 +0200
115 @@ -1486,6 +1486,22 @@ profile_prefs_load (const char *uuid, GS
116                                 GSettingsBindFlags(G_SETTINGS_BIND_GET |
117                                                   G_SETTINGS_BIND_SET));
118  
119 +  profile_prefs_settings_bind (profile,
120 +                               TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
121 +                               gtk_builder_get_object (builder, "use-transparent-background"),
122 +                               "active",
123 +                               GSettingsBindFlags(G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET));
124 +  profile_prefs_settings_bind (profile,
125 +                               TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
126 +                               gtk_builder_get_object (builder, "background-transparent-scale"),
127 +                               "sensitive",
128 +                               GSettingsBindFlags(G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY));
129 +  profile_prefs_settings_bind (profile,
130 +                               TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT,
131 +                               gtk_builder_get_object (builder, "background-transparent-adjustment"),
132 +                               "value",
133 +                               GSettingsBindFlags(G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET));
134 +
135    w = (GtkWidget *) gtk_builder_get_object (builder, "enable-sixel-checkbutton");
136    profile_prefs_settings_bind (profile, TERMINAL_PROFILE_ENABLE_SIXEL_KEY, w,
137                                 "active",
138 --- gnome-terminal-3.42.0/src/terminal-schemas.hh.orig  2021-04-17 08:51:31.266561277 +0200
139 +++ gnome-terminal-3.42.0/src/terminal-schemas.hh       2021-04-17 09:04:42.797545957 +0200
140 @@ -76,6 +76,9 @@ G_BEGIN_DECLS
141  #define TERMINAL_PROFILE_VISIBLE_NAME_KEY               "visible-name"
142  #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY       "word-char-exceptions"
143  
144 +#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND      "use-transparent-background"
145 +#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent"
146 +
147  #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY              "confirm-close"
148  #define TERMINAL_SETTING_CONTEXT_INFO_KEY               "context-info"
149  #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY       "default-show-menubar"
150 --- a/src/terminal-screen.cc
151 +++ b/src/terminal-screen.cc
152 @@ -800,7 +800,9 @@ terminal_screen_profile_changed_cb (GSettings     *profile,
153        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_COLORS_SET_KEY) ||
154        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_BACKGROUND_COLOR_KEY) ||
155        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_FOREGROUND_COLOR_KEY) ||
156 -      prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY))
157 +      prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY) ||
158 +      prop_name == I_(TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND) ||
159 +      prop_name == I_(TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT))
160      update_color_scheme (screen);
161  
162    if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
163 @@ -877,6 +879,8 @@ update_color_scheme (TerminalScreen *screen)
164    GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
165    GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
166    GtkStyleContext *context;
167 +  GtkWidget *toplevel;
168 +  gboolean transparent;
169    gboolean use_theme_colors;
170  
171    context = gtk_widget_get_style_context (widget);
172 @@ -918,6 +922,18 @@ update_color_scheme (TerminalScreen *screen)
173      }
174  
175    colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
176 +
177 +  transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
178 +  if (transparent)
179 +    {
180 +      gint transparency_percent;
181 +
182 +      transparency_percent = g_settings_get_int (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT);
183 +      bg.alpha = (100 - transparency_percent) / 100.0;
184 +    }
185 +  else
186 +    bg.alpha = 1.0;
187 +
188    vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
189                             colors, n_colors);
190    vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
191 @@ -925,6 +941,10 @@ update_color_scheme (TerminalScreen *screen)
192    vte_terminal_set_color_cursor_foreground (VTE_TERMINAL (screen), cursor_fgp);
193    vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
194    vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
195 +
196 +  toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
197 +  if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
198 +    gtk_widget_set_app_paintable (toplevel, transparent);
199  }
200  
201  static void
202 --- a/src/terminal-window.cc
203 +++ b/src/terminal-window.cc
204 @@ -2088,6 +2088,8 @@ terminal_window_init (TerminalWindow *window)
205    };
206    TerminalWindowPrivate *priv;
207    TerminalApp *app;
208 +  GdkScreen *screen;
209 +  GdkVisual *visual;
210    GSettings *gtk_debug_settings;
211    GtkWindowGroup *window_group;
212    //  GtkAccelGroup *accel_group;
213 @@ -2102,6 +2104,11 @@ terminal_window_init (TerminalWindow *window)
214  
215    gtk_widget_init_template (GTK_WIDGET (window));
216  
217 +  screen = gtk_widget_get_screen (GTK_WIDGET (window));
218 +  visual = gdk_screen_get_rgba_visual (screen);
219 +  if (visual != NULL)
220 +    gtk_widget_set_visual (GTK_WIDGET (window), visual);
221 +
222    uuid_generate (u);
223    uuid_unparse (u, uuidstr);
224    priv->uuid = g_strdup (uuidstr);
225 -- 
226 2.19.1
227
228
229 From f10a426375c392add4ad9ce28bdfc17c27b2da23 Mon Sep 17 00:00:00 2001
230 From: Lars Uebernickel <lars.uebernickel@canonical.com>
231 Date: Wed, 28 May 2014 14:11:02 +0200
232 Subject: [PATCH 02/14] window: Make the drawing robust across all themes
233
234 There are lots of themes out there in the wild that do not specify a
235 background-color for all widgets and the default is transparent. This
236 is usually not a problem because GTK+ sets an opaque region on the
237 whole window and things without a background-color get drawn with the
238 theme's default background colour. However, to achieve transparency
239 we disable the opaque region by making the window app-paintable. This
240 can lead to transparent menubars or notebook tabs in some themes. We
241 can avoid this by ensuring that the window always renders a background.
242
243 https://bugzilla.gnome.org/show_bug.cgi?id=730016
244 ---
245  src/terminal-window.c | 21 +++++++++++++++++++++
246  1 file changed, 21 insertions(+)
247
248 --- a/src/terminal-window.cc
249 +++ b/src/terminal-window.cc
250 @@ -1944,6 +1944,26 @@ terminal_window_realize (GtkWidget *widget)
251    terminal_window_update_size (window);
252  }
253  
254 +static gboolean
255 +terminal_window_draw (GtkWidget *widget,
256 +                      cairo_t   *cr)
257 +{
258 +  if (gtk_widget_get_app_paintable (widget))
259 +    {
260 +      GtkStyleContext *context;
261 +      int width;
262 +      int height;
263 +
264 +      context = gtk_widget_get_style_context (widget);
265 +      width = gtk_widget_get_allocated_width (widget);
266 +      height = gtk_widget_get_allocated_height (widget);
267 +      gtk_render_background (context, cr, 0, 0, width, height);
268 +      gtk_render_frame (context, cr, 0, 0, width, height);
269 +    }
270 +
271 +  return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
272 +}
273 +
274  static gboolean
275  terminal_window_state_event (GtkWidget            *widget,
276                               GdkEventWindowState  *event)
277 @@ -2255,6 +2275,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
278  
279    widget_class->show = terminal_window_show;
280    widget_class->realize = terminal_window_realize;
281 +  widget_class->draw = terminal_window_draw;
282    widget_class->window_state_event = terminal_window_state_event;
283    widget_class->screen_changed = terminal_window_screen_changed;
284    widget_class->style_updated = terminal_window_style_updated;
285 -- 
286 2.19.1
287
288
289 From ab579d89948777e2e0267376d64cca79af6684d9 Mon Sep 17 00:00:00 2001
290 From: "Owen W. Taylor" <otaylor@fishsoup.net>
291 Date: Fri, 13 Nov 2015 15:16:42 +0100
292 Subject: [PATCH 03/14] screen, window: Extra padding around transparent
293  terminals in Wayland
294
295 https://bugzilla.redhat.com/show_bug.cgi?id=1207943
296 ---
297  src/terminal-screen.c | 40 +++++++++++++++++++++++++++++++++++++---
298  src/terminal-window.c | 18 ++++++++++++------
299  2 files changed, 49 insertions(+), 9 deletions(-)
300
301 --- a/src/terminal-screen.cc
302 +++ b/src/terminal-screen.cc
303 @@ -155,6 +155,8 @@ static void terminal_screen_system_font_
304  static gboolean terminal_screen_popup_menu (GtkWidget *widget);
305  static gboolean terminal_screen_button_press (GtkWidget *widget,
306                                                GdkEventButton *event);
307 +static void terminal_screen_hierarchy_changed (GtkWidget *widget,
308 +                                               GtkWidget *previous_toplevel);
309  static void terminal_screen_child_exited  (VteTerminal *terminal,
310                                             int status);
311  
312 @@ -624,6 +626,7 @@ terminal_screen_class_init (TerminalScre
313    widget_class->drag_data_received = terminal_screen_drag_data_received;
314    widget_class->button_press_event = terminal_screen_button_press;
315    widget_class->popup_menu = terminal_screen_popup_menu;
316 +  widget_class->hierarchy_changed = terminal_screen_hierarchy_changed;
317  
318    terminal_class->child_exited = terminal_screen_child_exited;
319  
320 @@ -864,6 +867,32 @@ terminal_screen_profile_changed_cb (GSettings     *profile,
321    g_object_thaw_notify (object);
322  }
323  
324 +static void
325 +update_toplevel_transparency (TerminalScreen *screen)
326 +{
327 +  GtkWidget *widget = GTK_WIDGET (screen);
328 +  TerminalScreenPrivate *priv = screen->priv;
329 +  GSettings *profile = priv->profile;
330 +  GtkWidget *toplevel;
331 +
332 +  toplevel = gtk_widget_get_toplevel (widget);
333 +  if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
334 +    {
335 +      gboolean transparent;
336 +
337 +      transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
338 +      if (gtk_widget_get_app_paintable (toplevel) != transparent)
339 +        {
340 +          gtk_widget_set_app_paintable (toplevel, transparent);
341 +
342 +          /* The opaque region of the toplevel isn't updated until the toplevel is allocated;
343 +           * set_app_paintable() doesn't force an allocation, so do that manually.
344 +           */
345 +          gtk_widget_queue_resize (toplevel);
346 +        }
347 +    }
348 +}
349 +
350  static void
351  update_color_scheme (TerminalScreen *screen)
352  {
353 @@ -942,9 +971,7 @@ update_color_scheme (TerminalScreen *screen)
354    vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
355    vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
356  
357 -  toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
358 -  if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
359 -    gtk_widget_set_app_paintable (toplevel, transparent);
360 +  update_toplevel_transparency (screen);
361  }
362  
363  static void
364 @@ -1549,6 +1576,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
365    terminal_screen_popup_info_unref (info);
366  }
367  
368 +static void
369 +terminal_screen_hierarchy_changed (GtkWidget *widget,
370 +                                   GtkWidget *previous_toplevel)
371 +{
372 +  update_toplevel_transparency (TERMINAL_SCREEN (widget));
373 +}
374 +
375  static gboolean
376  terminal_screen_button_press (GtkWidget      *widget,
377                                GdkEventButton *event)
378 --- a/src/terminal-window.cc
379 +++ b/src/terminal-window.cc
380 @@ -1950,15 +1950,21 @@ terminal_window_draw (GtkWidget *widget,
381  {
382    if (gtk_widget_get_app_paintable (widget))
383      {
384 +      GtkAllocation child_allocation;
385        GtkStyleContext *context;
386 -      int width;
387 -      int height;
388 +      GtkWidget *child;
389 +
390 +      /* Get the *child* allocation, so we don't overwrite window borders */
391 +      child = gtk_bin_get_child (GTK_BIN (widget));
392 +      gtk_widget_get_allocation (child, &child_allocation);
393  
394        context = gtk_widget_get_style_context (widget);
395 -      width = gtk_widget_get_allocated_width (widget);
396 -      height = gtk_widget_get_allocated_height (widget);
397 -      gtk_render_background (context, cr, 0, 0, width, height);
398 -      gtk_render_frame (context, cr, 0, 0, width, height);
399 +      gtk_render_background (context, cr,
400 +                             child_allocation.x, child_allocation.y,
401 +                             child_allocation.width, child_allocation.height);
402 +      gtk_render_frame (context, cr,
403 +                        child_allocation.x, child_allocation.y,
404 +                        child_allocation.width, child_allocation.height);
405      }
406  
407    return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
408 -- 
409 2.19.1
410
411
412 From aa31c5189de74fba379426792f5d48c64515ba48 Mon Sep 17 00:00:00 2001
413 From: Debarshi Ray <debarshir@gnome.org>
414 Date: Mon, 27 Feb 2017 16:53:51 +0100
415 Subject: [PATCH 04/14] screen: Silence -Wunused variable
416
417 https://bugzilla.redhat.com/show_bug.cgi?id=1207943
418 ---
419  src/terminal-screen.c | 1 -
420  1 file changed, 1 deletion(-)
421
422 --- a/src/terminal-screen.cc
423 +++ b/src/terminal-screen.cc
424 @@ -908,7 +908,6 @@ update_color_scheme (TerminalScreen *screen)
425    GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
426    GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
427    GtkStyleContext *context;
428 -  GtkWidget *toplevel;
429    gboolean transparent;
430    gboolean use_theme_colors;
431  
432 -- 
433 2.19.1
434
435
436 From b3c8ba6bd276defab38d05406d225f56b170db08 Mon Sep 17 00:00:00 2001
437 From: Debarshi Ray <debarshir@gnome.org>
438 Date: Tue, 17 Feb 2015 17:06:17 +0100
439 Subject: [PATCH 11/14] Restore translations for setting a title and
440  transparency
441
442 ---
443  po/am.po          |  8 ++++----
444  po/an.po          | 12 ++++++------
445  po/ar.po          | 16 ++++++++--------
446  po/as.po          | 16 ++++++++--------
447  po/ast.po         |  8 ++++----
448  po/az.po          |  8 ++++----
449  po/be.po          |  3 +++
450  po/be@latin.po    |  8 ++++----
451  po/bg.po          |  9 +++++++++
452  po/bn.po          |  8 ++++----
453  po/bn_IN.po       | 11 +++++++----
454  po/br.po          |  6 +++---
455  po/bs.po          | 10 ++++++++++
456  po/ca.po          | 12 ++++++++++++
457  po/ca@valencia.po | 12 ++++++++++++
458  po/cs.po          | 12 ++++++++++++
459  po/cy.po          |  8 ++++----
460  po/da.po          | 11 +++++++++++
461  po/de.po          | 12 ++++++++++++
462  po/dz.po          |  8 ++++----
463  po/el.po          | 15 +++++++++------
464  po/en@shaw.po     |  8 ++++----
465  po/en_CA.po       |  8 ++++----
466  po/en_GB.po       | 16 ++++++++--------
467  po/eo.po          |  8 ++++----
468  po/es.po          | 16 ++++++++--------
469  po/et.po          |  3 +++
470  po/eu.po          | 16 ++++++++--------
471  po/fa.po          | 15 +++++++++------
472  po/fi.po          | 12 ++++++++++++
473  po/fr.po          | 12 ++++++++++++
474  po/fur.po         | 11 +++++++++--
475  po/ga.po          |  3 +++
476  po/gl.po          | 16 ++++++++--------
477  po/gu.po          | 16 ++++++++--------
478  po/he.po          | 16 ++++++++--------
479  po/hi.po          | 17 ++++++++---------
480  po/hr.po          | 10 ++++++++++
481  po/hu.po          | 12 ++++++++++++
482  po/hy.po          |  8 ++++----
483  po/id.po          | 12 ++++++++++++
484  po/it.po          | 12 ++++++++++++
485  po/ja.po          | 12 ++++++++++++
486  po/ka.po          |  6 +++---
487  po/kk.po          | 12 ++++++++++++
488  po/km.po          |  4 ++--
489  po/kn.po          | 15 +++++++++------
490  po/ko.po          | 12 ++++++++++++
491  po/ku.po          |  8 ++++----
492  po/lt.po          | 12 ++++++++++++
493  po/lv.po          | 16 ++++++++++++++++
494  po/mai.po         |  8 ++++----
495  po/mg.po          |  8 ++++----
496  po/mk.po          |  8 ++++----
497  po/ml.po          |  3 +++
498  po/mn.po          |  8 ++++----
499  po/mr.po          | 16 ++++++++--------
500  po/ms.po          |  8 ++++----
501  po/nb.po          | 12 ++++++++++++
502  po/nds.po         |  8 ++++----
503  po/ne.po          | 12 ++++++------
504  po/nl.po          | 12 ++++++++++++
505  po/nn.po          |  8 ++++----
506  po/oc.po          | 12 ++++++------
507  po/or.po          |  4 ++--
508  po/pa.po          | 23 +++++++++++------------
509  po/ps.po          |  8 ++++----
510  po/pt.po          | 16 ++++++++--------
511  po/pt_BR.po       | 15 +++++++++------
512  po/ro.po          |  4 ++--
513  po/ru.po          | 16 ++++++++++++++++
514  po/rw.po          |  3 +--
515  po/si.po          |  8 ++++----
516  po/sk.po          | 12 ++++++++++++
517  po/sl.po          | 15 +++++++++------
518  po/sq.po          |  8 ++++----
519  po/sr.po          | 22 ++++++++++++----------
520  po/sr@latin.po    | 22 ++++++++++++----------
521  po/sv.po          | 12 ++++++++++++
522  po/ta.po          | 27 +++++++++++++--------------
523  po/te.po          | 27 +++++++++++++--------------
524  po/tg.po          | 16 ++++++++--------
525  po/th.po          | 20 ++++++++++----------
526  po/tr.po          | 12 ++++++++++++
527  po/ug.po          |  4 ++--
528  po/uk.po          | 20 ++++++++++----------
529  po/vi.po          | 15 +++++++++------
530  po/wa.po          | 12 ++++++------
531  po/xh.po          | 12 ++++++------
532  po/zh_CN.po       | 15 +++++++++------
533  po/zh_HK.po       | 15 +++++++++------
534  po/zh_TW.po       | 15 +++++++++------
535  92 files changed, 707 insertions(+), 371 deletions(-)
536
537 diff --git a/po/am.po b/po/am.po
538 index 3445d96da657..ee992f0712a5 100644
539 --- a/po/am.po
540 +++ b/po/am.po
541 @@ -214,8 +214,8 @@ msgid "<b>Background</b>"
542  msgstr "<b>መደብ</b>"
543  
544  #: ../src/gnome-terminal.glade2.h:2
545 -msgid "<b>Command</b>"
546 -msgstr "<b>ትእዛዝ</b>"
547 +msgid "Command"
548 +msgstr "ትእዛዝ"
549  
550  #: ../src/gnome-terminal.glade2.h:3
551  msgid "<b>Compatibility</b>"
552 @@ -614,8 +614,8 @@ msgid "_Text color:"
553  msgstr "የ_ጽሑፍ ቀለም፦"
554  
555  #: ../src/gnome-terminal.glade2.h:102
556 -msgid "_Transparent background"
557 -msgstr "_የሚያሳይ መደብ"
558 +msgid "Transparent background"
559 +msgstr "የሚያሳይ መደብ"
560  
561  #: ../src/gnome-terminal.glade2.h:103
562  msgid "_Update login records when command is launched"
563 diff --git a/po/an.po b/po/an.po
564 index fcec2668aa11..9e07cb682c57 100644
565 --- a/po/an.po
566 +++ b/po/an.po
567 @@ -2241,8 +2241,8 @@ msgstr "_Zarrar a finestra"
568  #~ msgid "Use custom default terminal si_ze"
569  #~ msgstr "Emplegar grandaria predeterminada presonali_zada de terminal"
570  
571 -#~ msgid "Title"
572 -#~ msgstr "Titol"
573 +msgid "Title"
574 +msgstr "Titol"
575  
576  #~ msgid "When terminal commands set their o_wn titles:"
577  #~ msgstr ""
578 @@ -2266,8 +2266,8 @@ msgstr "_Zarrar a finestra"
579  #~ msgid "Close Window"
580  #~ msgstr "Zarrar a finestra"
581  
582 -#~ msgid "Set Title"
583 -#~ msgstr "Establir titol"
584 +msgid "Set Title"
585 +msgstr "Establir titol"
586  
587  #~ msgid "Switch to Tab 2"
588  #~ msgstr "Cambiar a la pestanya 2"
589 @@ -2340,8 +2340,8 @@ msgstr "_Zarrar a finestra"
590  #~ msgid "_Input Methods"
591  #~ msgstr "Me_todos de dentrada"
592  
593 -#~ msgid "_Title:"
594 -#~ msgstr "_Titol:"
595 +msgid "_Title:"
596 +msgstr "_Titol:"
597  
598  #~ msgid "Keyboard Shortcuts"
599  #~ msgstr "Alcorces de teclau"
600 diff --git a/po/ar.po b/po/ar.po
601 index 6f5e80cc2a66..53e15b97f312 100644
602 --- a/po/ar.po
603 +++ b/po/ar.po
604 @@ -2553,11 +2553,11 @@ msgstr "أغ_لق النافذة"
605  #~ msgid "Default size:"
606  #~ msgstr "الحجم المبدئي:"
607  
608 -#~ msgid "Title"
609 -#~ msgstr "العنوان"
610 +msgid "Title"
611 +msgstr "العنوان"
612  
613 -#~ msgid "_Title:"
614 -#~ msgstr "ال_عنوان:"
615 +msgid "_Title:"
616 +msgstr "ال_عنوان:"
617  
618  #~ msgid "Title and Command"
619  #~ msgstr "العنوان والأمر"
620 @@ -2565,8 +2565,8 @@ msgstr "أغ_لق النافذة"
621  #~ msgid "_Unlimited"
622  #~ msgstr "_غير محدود"
623  
624 -#~ msgid "Set Title"
625 -#~ msgstr "حدد العنوان"
626 +msgid "Set Title"
627 +msgstr "حدد العنوان"
628  
629  #~ msgid "Current Locale"
630  #~ msgstr "المحليّة الحالية"
631 @@ -3309,8 +3309,8 @@ msgstr "أغ_لق النافذة"
632  #~ msgid "Background image _scrolls"
633  #~ msgstr "صورة الخلفية ت_لتف"
634  
635 -#~ msgid "_Transparent background"
636 -#~ msgstr "خلفية _شفافة"
637 +msgid "Transparent background"
638 +msgstr "خلفية شفافة"
639  
640  #~ msgid "S_hade transparent or image background:"
641  #~ msgstr "_ظلل شفافية أو صورة الخلفية:"
642 diff --git a/po/as.po b/po/as.po
643 index 3fade2b8cb12..5b905340f89f 100644
644 --- a/po/as.po
645 +++ b/po/as.po
646 @@ -2163,11 +2163,11 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
647  #~ msgid "Default size:"
648  #~ msgstr "অবিকল্পিত আকাৰ:"
649  
650 -#~ msgid "Title"
651 -#~ msgstr "শীৰ্ষক"
652 +msgid "Title"
653 +msgstr "শীৰ্ষক"
654  
655 -#~ msgid "_Title:"
656 -#~ msgstr "শীৰ্ষক (_T):"
657 +msgid "_Title:"
658 +msgstr "শীৰ্ষক (_T):"
659  
660  #~ msgid "Title and Command"
661  #~ msgstr "শীৰ্ষক আৰু কমান্ড"
662 @@ -2175,8 +2175,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
663  #~ msgid "_Unlimited"
664  #~ msgstr "অসীমিত (_U)"
665  
666 -#~ msgid "Set Title"
667 -#~ msgstr "শীৰ্ষক নিৰ্ধাৰণ কৰক"
668 +msgid "Set Title"
669 +msgstr "শীৰ্ষক নিৰ্ধাৰণ কৰক"
670  
671  #~ msgid "Current Locale"
672  #~ msgstr "বৰ্তমান স্থানীয়"
673 @@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
674  #~ msgid "Background image _scrolls"
675  #~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
676  
677 -#~ msgid "_Transparent background"
678 -#~ msgstr "স্বচ্চ পটভূমি (_T)"
679 +msgid "Transparent background"
680 +msgstr "স্বচ্চ পটভূমি "
681  
682  #~ msgid "S_hade transparent or image background:"
683  #~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
684 diff --git a/po/ast.po b/po/ast.po
685 index d1c6e7b8174a..4dc0892ed9c4 100644
686 --- a/po/ast.po
687 +++ b/po/ast.po
688 @@ -1304,8 +1304,8 @@ msgid "_Base on:"
689  msgstr "_Basáu en:"
690  
691  #: ../src/profile-preferences.glade.h:1
692 -msgid "<b>Command</b>"
693 -msgstr "<b>Comandu</b>"
694 +msgid "Command"
695 +msgstr "Comandu"
696  
697  #: ../src/profile-preferences.glade.h:2
698  msgid "<b>Foreground, Background, Bold and Underline</b>"
699 @@ -1598,8 +1598,8 @@ msgid "_Text color:"
700  msgstr "Color del _testu:"
701  
702  #: ../src/profile-preferences.glade.h:77
703 -msgid "_Transparent background"
704 -msgstr "Fondu _tresparente"
705 +msgid "Transparent background"
706 +msgstr "Fondu tresparente"
707  
708  #: ../src/profile-preferences.glade.h:78
709  msgid "_Underline color:"
710 diff --git a/po/az.po b/po/az.po
711 index 586c1e4d827b..4bd846797101 100644
712 --- a/po/az.po
713 +++ b/po/az.po
714 @@ -218,8 +218,8 @@ msgid "<b>Background</b>"
715  msgstr "<b>Arxa plan</b>"
716  
717  #: ../src/gnome-terminal.glade2.h:2
718 -msgid "<b>Command</b>"
719 -msgstr "<b>Əmr</b>"
720 +msgid "Command"
721 +msgstr "Əmr"
722  
723  #: ../src/gnome-terminal.glade2.h:3
724  msgid "<b>Compatibility</b>"
725 @@ -620,8 +620,8 @@ msgid "_Text color:"
726  msgstr "_Mətn rəngi:"
727  
728  #: ../src/gnome-terminal.glade2.h:102
729 -msgid "_Transparent background"
730 -msgstr "_Şəffaf arxa plan"
731 +msgid "Transparent background"
732 +msgstr "Şəffaf arxa plan"
733  
734  #: ../src/gnome-terminal.glade2.h:103
735  msgid "_Update login records when command is launched"
736 diff --git a/po/be.po b/po/be.po
737 index ce07d47995ca..3c65f9090ef4 100644
738 --- a/po/be.po
739 +++ b/po/be.po
740 @@ -2279,6 +2279,9 @@
741  msgid "C_lose Window"
742  msgstr "_Закрыць акно"
743  
744 +msgid "Transparent background"
745 +msgstr "Празрысты фон"
746 +
747  #~ msgid "Verbose output"
748  #~ msgstr "Падрабязны вывад"
749  
750 diff --git a/po/be@latin.po b/po/be@latin.po
751 index 82ef0664ae1e..27e9877f96e8 100644
752 --- a/po/be@latin.po
753 +++ b/po/be@latin.po
754 @@ -1146,8 +1146,8 @@ msgid "_Base on:"
755  msgstr "Na _bazie:"
756  
757  #: ../src/profile-preferences.glade.h:1
758 -msgid "<b>Command</b>"
759 -msgstr "<b>Zahad</b>"
760 +msgid "Command"
761 +msgstr "Zahad"
762  
763  #: ../src/profile-preferences.glade.h:2
764  msgid "<b>Foreground and Background</b>"
765 @@ -1426,8 +1426,8 @@ msgid "_Text color:"
766  msgstr "Koler _tekstu:"
767  
768  #: ../src/profile-preferences.glade.h:73
769 -msgid "_Transparent background"
770 -msgstr "_Prazrysty fon"
771 +msgid "Transparent background"
772 +msgstr "Prazrysty fon"
773  
774  #: ../src/profile-preferences.glade.h:74
775  msgid "_Update login records when command is launched"
776 --- gnome-terminal-3.42.0/po/bg.po.orig 2021-09-27 20:34:18.648881212 +0200
777 +++ gnome-terminal-3.42.0/po/bg.po      2021-09-27 20:42:08.969666599 +0200
778 @@ -2448,3 +2448,6 @@ msgstr "_Ð\97аÑ\82ваÑ\80Ñ\8fне Ð½Ð° Ñ\82озÐ
779  #, c-format
780  msgid "Failed to parse arguments: %s\n"
781  msgstr "Аргументите не могат да бъдат анализирани: %s\n"
782 +
783 +msgid "Transparent background"
784 +msgstr "Прозрачен фон"
785 --- a/po/bn.po
786 +++ b/po/bn.po
787 @@ -1217,8 +1217,8 @@ msgid "_Base on:"
788  msgstr "চিহ্নিত বস্তুর উপর ভিত্তি করে: (_B)"
789  
790  #: ../src/profile-preferences.glade.h:1
791 -msgid "<b>Command</b>"
792 -msgstr "<b>কমান্ড</b>"
793 +msgid "Command"
794 +msgstr "কমান্ড"
795  
796  #: ../src/profile-preferences.glade.h:2
797  msgid "<b>Foreground, Background, and Bold</b>"
798 @@ -1524,8 +1524,8 @@ msgid "_Text color:"
799  msgstr "পাঠ্যের রং: (_T)"
800  
801  #: ../src/profile-preferences.glade.h:76
802 -msgid "_Transparent background"
803 -msgstr "স্বচ্ছ পটভূমি (_T)"
804 +msgid "Transparent background"
805 +msgstr "স্বচ্ছ পটভূমি "
806  
807  #: ../src/profile-preferences.glade.h:77
808  msgid "_Unlimited"
809 --- gnome-terminal-3.40.0/po/bn_IN.po.orig      2021-02-22 17:08:51.000000000 +0100
810 +++ gnome-terminal-3.40.0/po/bn_IN.po   2021-04-17 09:13:12.663952116 +0200
811 @@ -2894,8 +2894,8 @@ msgstr "উইন্ডো বন্ধ
812  #~ msgid "_Unlimited"
813  #~ msgstr "সীমাহীন (_U)"
814  
815 -#~ msgid "Set Title"
816 -#~ msgstr "শিরোনাম নির্ধারণ করুন"
817 +msgid "Set Title"
818 +msgstr "শিরোনাম নির্ধারণ করুন"
819  
820  #~ msgid "Switch to Tab 3"
821  #~ msgstr "ট্যাব ৩-এ পরিবর্তন করুন"
822 @@ -2936,5 +2936,8 @@ msgstr "উইন্ডো বন্ধ
823  #~ msgid "_Input Methods"
824  #~ msgstr "ইনপুট পদ্ধতি (_I)"
825  
826 -#~ msgid "_Title:"
827 -#~ msgstr "শিরোনাম: (_T)"
828 +msgid "_Title:"
829 +msgstr "শিরোনাম: (_T)"
830 +
831 +msgid "Transparent background"
832 +msgstr "স্বচ্চ পটভূমি "
833 diff --git a/po/br.po b/po/br.po
834 index e16ea07dfc21..f4cbe857d5ca 100644
835 --- a/po/br.po
836 +++ b/po/br.po
837 @@ -958,8 +958,8 @@ msgid "_Base on:"
838  msgstr ""
839  
840  #: ../src/profile-preferences.glade.h:1
841 -msgid "<b>Command</b>"
842 -msgstr "<b>Arc'had</b>"
843 +msgid "Command"
844 +msgstr "Arc'had"
845  
846  #: ../src/profile-preferences.glade.h:2
847  msgid "<b>Foreground and Background</b>"
848 @@ -1211,7 +1211,7 @@ msgid "_Text color:"
849  msgstr "Liv an destenn :"
850  
851  #: ../src/profile-preferences.glade.h:73
852 -msgid "_Transparent background"
853 +msgid "Transparent background"
854  msgstr ""
855  
856  #: ../src/profile-preferences.glade.h:74
857 diff --git a/po/bs.po b/po/bs.po
858 index 49e710859ac9..8703552984b1 100644
859 --- a/po/bs.po
860 +++ b/po/bs.po
861 @@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
862  msgid "Keyboard shortcut to make font smaller"
863  msgstr "Kratica tastature za smanjivanje fonta"
864  
865 +#: ../src/gnome-terminal.glade2.h:102
866 +msgid "Transparent background"
867 +msgstr "Providna pozadina"
868 +
869  #: ../src/org.gnome.Terminal.gschema.xml.h:78
870  msgid "Keyboard shortcut to make font normal-size"
871  msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
872 diff --git a/po/ca.po b/po/ca.po
873 index 4a612fcfc0ba..6091324a9547 100644
874 --- a/po/ca.po
875 +++ b/po/ca.po
876 @@ -2420,6 +2420,9 @@ msgstr ""
877  msgid "C_lose Window"
878  msgstr "Tanca la _finestra"
879  
880 +msgid "Transparent background"
881 +msgstr "Fons transparent"
882 +
883  #~ msgid "Whether to allow bold text"
884  #~ msgstr "Si es permet o no text en negreta"
885  
886 diff --git a/po/ca@valencia.po b/po/ca@valencia.po
887 index a6e8fb4250dc..c9ed8508228d 100644
888 --- a/po/ca@valencia.po
889 +++ b/po/ca@valencia.po
890 @@ -2357,3 +2357,6 @@ msgstr "Tanca la _finestra"
891  
892  #~ msgid "Whether to use a dark theme variant"
893  #~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
894 +
895 +msgid "Transparent background"
896 +msgstr "Fons transparent"
897 --- gnome-terminal-3.42.0/po/cs.po.orig 2021-09-27 20:42:33.806198715 +0200
898 +++ gnome-terminal-3.42.0/po/cs.po      2021-09-27 20:43:28.429236130 +0200
899 @@ -2452,3 +2452,6 @@ msgstr "_Zavřít okno"
900  #, c-format
901  msgid "Failed to parse arguments: %s\n"
902  msgstr "Selhala analýza argumentů: %s\n"
903 +
904 +msgid "Transparent background"
905 +msgstr "Průsvitné pozadí"
906 diff --git a/po/cy.po b/po/cy.po
907 index 644df82363f1..cd862feb50c0 100644
908 --- a/po/cy.po
909 +++ b/po/cy.po
910 @@ -1167,8 +1167,8 @@ msgid "_Base on:"
911  msgstr "Ei _seilio ar:"
912  
913  #: ../src/profile-preferences.glade.h:1
914 -msgid "<b>Command</b>"
915 -msgstr "<b>Gorchymyn</b>"
916 +msgid "Command"
917 +msgstr "Gorchymyn"
918  
919  #: ../src/profile-preferences.glade.h:2
920  msgid "<b>Foreground and Background</b>"
921 @@ -1448,8 +1448,8 @@ msgid "_Text color:"
922  msgstr "Lliw'r _testun:"
923  
924  #: ../src/profile-preferences.glade.h:73
925 -msgid "_Transparent background"
926 -msgstr "Cefndir _tryloyw"
927 +msgid "Transparent background"
928 +msgstr "Cefndir tryloyw"
929  
930  #: ../src/profile-preferences.glade.h:74
931  msgid "_Update login records when command is launched"
932 diff --git a/po/da.po b/po/da.po
933 index 65cfb20d9ad3..8c5c97c7465a 100644
934 --- a/po/da.po
935 +++ b/po/da.po
936 @@ -2401,6 +2401,9 @@ msgstr ""
937  #: src/terminal-window.c:3224
938  msgid "C_lose Window"
939  msgstr "_Luk vindue"
940
941 +msgid "Transparent background"
942 +msgstr "Gennemsigtig baggrund"
943  
944  #~ msgid "Whether to allow bold text"
945  #~ msgstr "Om fed tekst skal tillades"
946 --- gnome-terminal-3.40.0/po/de.po.orig 2021-04-17 09:15:55.582389716 +0200
947 +++ gnome-terminal-3.40.0/po/de.po      2021-04-17 09:16:52.815353833 +0200
948 @@ -2503,6 +2503,9 @@ msgstr ""
949  msgid "C_lose Window"
950  msgstr "Fenster _schließen"
951  
952 +msgid "Transparent background"
953 +msgstr "Transparenter Hintergrund"
954 +
955  # missing accelerator
956  #~ msgid "Whether to allow bold text"
957  #~ msgstr "Fetten Text erlauben?"
958 diff --git a/po/dz.po b/po/dz.po
959 index d97e6102b850..a768fe4adc54 100644
960 --- a/po/dz.po
961 +++ b/po/dz.po
962 @@ -1255,8 +1255,8 @@ msgid "_Base on:"
963  msgstr "གཞི་བཞག་སྟེ་:(_B)"
964  
965  #: ../src/profile-preferences.glade.h:1
966 -msgid "<b>Command</b>"
967 -msgstr "<b>བརྡ་བཀོད་</b>"
968 +msgid "Command"
969 +msgstr "བརྡ་བཀོད་"
970  
971  #: ../src/profile-preferences.glade.h:2
972  #, fuzzy
973 @@ -1551,8 +1551,8 @@ msgid "_Text color:"
974  msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
975  
976  #: ../src/profile-preferences.glade.h:77
977 -msgid "_Transparent background"
978 -msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)"
979 +msgid "Transparent background"
980 +msgstr "དྭངས་གསལ་རྒྱབ་གཞི།"
981  
982  #: ../src/profile-preferences.glade.h:78
983  #, fuzzy
984 diff --git a/po/el.po b/po/el.po
985 index a32f5b1684f6..7fa98b45e6f5 100644
986 --- a/po/el.po
987 +++ b/po/el.po
988 @@ -2710,17 +2710,17 @@ msgstr "Κ_λείσιμο παραθύρου"
989  #~ msgid "Default size:"
990  #~ msgstr "Προεπιλεγμένο μέγεθος:"
991  
992 -#~ msgid "Title"
993 -#~ msgstr "Τίτλος"
994 +msgid "Title"
995 +msgstr "Τίτλος"
996  
997 -#~ msgid "_Title:"
998 -#~ msgstr "_Τίτλος:"
999 +msgid "_Title:"
1000 +msgstr "_Τίτλος:"
1001  
1002  #~ msgid "Title and Command"
1003  #~ msgstr "Τίτλος και εντολή"
1004  
1005 -#~ msgid "Set Title"
1006 -#~ msgstr "Ορισμός τίτλου"
1007 +msgid "Set Title"
1008 +msgstr "Ορισμός τίτλου"
1009  
1010  #~ msgid "Current Locale"
1011  #~ msgstr "Τρέχουσα τοπική ρύθμιση"
1012 @@ -2758,3 +2758,6 @@ msgstr "Κ_λείσιμο παραθύρου"
1013  
1014  #~ msgid "_Input Methods"
1015  #~ msgstr "_Μέθοδοι εισαγωγής"
1016 +
1017 +msgid "Transparent background"
1018 +msgstr "Διάφανο παρασκήνιο"
1019 diff --git a/po/en@shaw.po b/po/en@shaw.po
1020 index 82b2d53401b2..28f5dc02575b 100644
1021 --- a/po/en@shaw.po
1022 +++ b/po/en@shaw.po
1023 @@ -1212,8 +1212,8 @@ msgid "_Base on:"
1024  msgstr "_𐑚𐑱𐑕 𐑪𐑯:"
1025  
1026  #: ../src/profile-preferences.glade.h:1
1027 -msgid "<b>Command</b>"
1028 -msgstr "<b>𐑒𐑩𐑥𐑭𐑯𐑛</b>"
1029 +msgid "Command"
1030 +msgstr "𐑒𐑩𐑥𐑭𐑯𐑛"
1031  
1032  #: ../src/profile-preferences.glade.h:2
1033  msgid "<b>Foreground, Background, Bold and Underline</b>"
1034 @@ -1468,8 +1468,8 @@ msgid "_Text color:"
1035  msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
1036  
1037  #: ../src/profile-preferences.glade.h:78
1038 -msgid "_Transparent background"
1039 -msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1040 +msgid "Transparent background"
1041 +msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1042  
1043  #: ../src/profile-preferences.glade.h:79
1044  msgid "_Underline color:"
1045 diff --git a/po/en_CA.po b/po/en_CA.po
1046 index 6c9e0cd73d63..db4aa891dd45 100644
1047 --- a/po/en_CA.po
1048 +++ b/po/en_CA.po
1049 @@ -219,8 +219,8 @@ msgid "<b>Background</b>"
1050  msgstr "<b>Background</b>"
1051  
1052  #: ../src/gnome-terminal.glade2.h:3
1053 -msgid "<b>Command</b>"
1054 -msgstr "<b>Command</b>"
1055 +msgid "Command"
1056 +msgstr "Command"
1057  
1058  #: ../src/gnome-terminal.glade2.h:4
1059  msgid "<b>Compatibility</b>"
1060 @@ -557,8 +557,8 @@ msgid "_Text color:"
1061  msgstr "_Text colour:"
1062  
1063  #: ../src/gnome-terminal.glade2.h:86
1064 -msgid "_Transparent background"
1065 -msgstr "_Transparent background"
1066 +msgid "Transparent background"
1067 +msgstr "Transparent background"
1068  
1069  #: ../src/gnome-terminal.glade2.h:87
1070  msgid "_Update login records when command is launched"
1071 diff --git a/po/en_GB.po b/po/en_GB.po
1072 index c9999e204f33..dfbff85bf907 100644
1073 --- a/po/en_GB.po
1074 +++ b/po/en_GB.po
1075 @@ -2796,8 +2796,8 @@ msgstr "C_lose Window"
1076  #~ msgid "Default size:"
1077  #~ msgstr "Default size:"
1078  
1079 -#~ msgid "Title"
1080 -#~ msgstr "Title"
1081 +msgid "Title"
1082 +msgstr "Title"
1083  
1084  #~ msgid "When terminal commands set their o_wn titles:"
1085  #~ msgstr "When terminal commands set their o_wn titles:"
1086 @@ -2814,8 +2814,8 @@ msgstr "C_lose Window"
1087  #~ msgid "_Unlimited"
1088  #~ msgstr "_Unlimited"
1089  
1090 -#~ msgid "Set Title"
1091 -#~ msgstr "Set Title"
1092 +msgid "Set Title"
1093 +msgstr "Set Title"
1094  
1095  #~ msgid "Switch to Tab 3"
1096  #~ msgstr "Switch to Tab 3"
1097 @@ -2856,8 +2856,8 @@ msgstr "C_lose Window"
1098  #~ msgid "_Input Methods"
1099  #~ msgstr "_Input Methods"
1100  
1101 -#~ msgid "_Title:"
1102 -#~ msgstr "_Title:"
1103 +msgid "_Title:"
1104 +msgstr "_Title:"
1105  
1106  #~ msgid "Add or Remove Terminal Encodings"
1107  #~ msgstr "Add or Remove Terminal Encodings"
1108 @@ -3552,8 +3552,8 @@ msgstr "C_lose Window"
1109  #~ msgid "Background image _scrolls"
1110  #~ msgstr "Background image _scrolls"
1111  
1112 -#~ msgid "_Transparent background"
1113 -#~ msgstr "_Transparent background"
1114 +msgid "Transparent background"
1115 +msgstr "Transparent background"
1116  
1117  #~ msgid "S_hade transparent or image background:"
1118  #~ msgstr "S_hade transparent or image background:"
1119 --- gnome-terminal-3.40.0/po/eo.po.orig 2021-02-22 17:08:51.000000000 +0100
1120 +++ gnome-terminal-3.40.0/po/eo.po      2021-04-17 11:16:42.667994998 +0200
1121 @@ -2827,8 +2827,8 @@ msgstr "_Fermi la fenestron"
1122  #~ msgid "_Font:"
1123  #~ msgstr "_Tiparo:"
1124  
1125 -#~ msgid "Set Title"
1126 -#~ msgstr "Agordi titolon"
1127 +msgid "Set Title"
1128 +msgstr "Agordi titolon"
1129  
1130  #~ msgid "Switch to Tab 3"
1131  #~ msgstr "Ŝalti al langeto 3"
1132 @@ -2890,8 +2890,8 @@ msgstr "_Fermi la fenestron"
1133  #~ msgid "_Input Methods"
1134  #~ msgstr "_Enigmetodoj"
1135  
1136 -#~ msgid "_Title:"
1137 -#~ msgstr "_Titolo:"
1138 +msgid "_Title:"
1139 +msgstr "_Titolo:"
1140  
1141  #~ msgid "On the left side"
1142  #~ msgstr "Maldekstre"
1143 diff --git a/po/es.po b/po/es.po
1144 index 142347b3720a..9325d95de22f 100644
1145 --- a/po/es.po
1146 +++ b/po/es.po
1147 @@ -2741,17 +2741,17 @@ msgstr "_Cerrar ventana"
1148  #~ msgid "Default size:"
1149  #~ msgstr "Tamaño predeterminado:"
1150  
1151 -#~ msgid "Title"
1152 -#~ msgstr "Título"
1153 +msgid "Title"
1154 +msgstr "Título"
1155  
1156 -#~ msgid "_Title:"
1157 -#~ msgstr "_Título:"
1158 +msgid "_Title:"
1159 +msgstr "_Título:"
1160  
1161  #~ msgid "Title and Command"
1162  #~ msgstr "Título y comando"
1163  
1164 -#~ msgid "Set Title"
1165 -#~ msgstr "Establecer título"
1166 +msgid "Set Title"
1167 +msgstr "Establecer título"
1168  
1169  #~ msgid "Current Locale"
1170  #~ msgstr "Configuración regional actual"
1171 @@ -3577,8 +3577,8 @@ msgstr "_Cerrar ventana"
1172  #~ msgid "_Solid color"
1173  #~ msgstr "Color _sólido"
1174  
1175 -#~ msgid "_Transparent background"
1176 -#~ msgstr "Fondo _transparente"
1177 +msgid "Transparent background"
1178 +msgstr "Fondo transparente"
1179  
1180  #~ msgid "No such profile \"%s\", using default profile\n"
1181  #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
1182 diff --git a/po/et.po b/po/et.po
1183 index 4b1c2a7c67e4..770761168806 100644
1184 --- a/po/et.po
1185 +++ b/po/et.po
1186 @@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
1187  
1188  #~ msgid "Choose base profile"
1189  #~ msgstr "Vali põhiprofiil"
1190 +
1191 +msgid "Transparent background"
1192 +msgstr "Läbipaistev taust"
1193 diff --git a/po/eu.po b/po/eu.po
1194 index f3aab7879a6f..543a121f6aac 100644
1195 --- a/po/eu.po
1196 +++ b/po/eu.po
1197 @@ -2272,6 +2272,9 @@ msgstr "Oraindik prozesu bat exekutatzen
1198  msgid "C_lose Window"
1199  msgstr "It_xi leihoa"
1200  
1201 +msgid "Transparent background"
1202 +msgstr "Atzeko plano gardena"
1203 +
1204  #~ msgid "Whether to allow bold text"
1205  #~ msgstr "Testu-formatu lodia onartzen den"
1206  
1207 --- gnome-terminal-3.40.0/po/fa.po.orig 2021-03-19 22:43:50.000000000 +0100
1208 +++ gnome-terminal-3.40.0/po/fa.po      2021-04-17 11:23:51.866939429 +0200
1209 @@ -2782,8 +2782,8 @@ msgstr "_بستن پنجره"
1210  #~ msgid "Use custom default terminal si_ze"
1211  #~ msgstr "استفاده از اندازه‌ی _سفارشی پایانه‌ی پیش‌فرض"
1212  
1213 -#~ msgid "Title"
1214 -#~ msgstr "عنوان"
1215 +msgid "Title"
1216 +msgstr "عنوان"
1217  
1218  #~ msgid "When terminal commands set their o_wn titles:"
1219  #~ msgstr "وقتی که فرمان‌های پایانه عنوان‌های _خودشان را تنظیم می‌کنند:"
1220 @@ -2797,8 +2797,8 @@ msgstr "_بستن پنجره"
1221  #~ msgid "_Unlimited"
1222  #~ msgstr "_نامحدود"
1223  
1224 -#~ msgid "Set Title"
1225 -#~ msgstr "تنظیم عنوان"
1226 +msgid "Set Title"
1227 +msgstr "تنظیم عنوان"
1228  
1229  #~ msgid "Switch to Tab 3"
1230  #~ msgstr "تعویض به زبانه‌ی ۳"
1231 @@ -2839,5 +2839,8 @@ msgstr "_بستن پنجره"
1232  #~ msgid "_Input Methods"
1233  #~ msgstr "روش‌های _ورودی"
1234  
1235 -#~ msgid "_Title:"
1236 -#~ msgstr "_عنوان:"
1237 +msgid "_Title:"
1238 +msgstr "_عنوان:"
1239 +
1240 +msgid "Transparent background"
1241 +msgstr "پس‌زمینه‌ی شفاف"
1242 diff --git a/po/fi.po b/po/fi.po
1243 index e284b406f040..6e7f402af7bd 100644
1244 --- a/po/fi.po
1245 +++ b/po/fi.po
1246 @@ -2589,6 +2589,9 @@ msgstr "_Sulje ikkuna"
1247  #~ msgid "_Update login records when command is launched"
1248  #~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
1249  
1250 +msgid "Transparent background"
1251 +msgstr "Läpinäkyvä tausta"
1252 +
1253  #~| msgid "Error parsing command: %s"
1254  #~ msgid "Missing command"
1255  #~ msgstr "Puuttuva komento"
1256 diff --git a/po/fr.po b/po/fr.po
1257 index 87a8e0ff46d4..2eacb4584f32 100644
1258 --- a/po/fr.po
1259 +++ b/po/fr.po
1260 @@ -2452,6 +2452,9 @@ msgstr ""
1261  msgid "C_lose Window"
1262  msgstr "Fermer _la fenêtre"
1263  
1264 +msgid "Transparent background"
1265 +msgstr "Arrière-plan transparent"
1266 +
1267  #~ msgid "Whether to allow bold text"
1268  #~ msgstr "Indique s’il faut autoriser le texte en gras"
1269  
1270 --- gnome-terminal-3.38.0/po/fur.po.orig        2020-09-12 21:18:27.000000000 +0200
1271 +++ gnome-terminal-3.38.0/po/fur.po     2020-09-20 12:01:34.634278284 +0200
1272 @@ -2417,6 +2417,9 @@
1273  msgid "C_lose Window"
1274  msgstr "_Siere barcon"
1275  
1276 +msgid "Transparent background"
1277 +msgstr "Fondâl trasparent"
1278 +
1279  #~ msgid "Hindi"
1280  #~ msgstr "Hindi"
1281  
1282 @@ -3546,6 +3549,9 @@
1283  #~ msgid "The text you clicked on doesn't seem to be a valid OTP challenge."
1284  #~ msgstr "Il test fracât nol samee jessi un OTP challenge."
1285  
1286 +msgid "Set Title"
1287 +msgstr "Imposte titul"
1288 +
1289  #~ msgid "Switch to Tab 3"
1290  #~ msgstr "Passe a la schede 3"
1291  
1292 @@ -3601,8 +3607,8 @@
1293  #~ msgid "_Input Methods"
1294  #~ msgstr "_Cemût inserî test"
1295  
1296 -#~ msgid "_Title:"
1297 -#~ msgstr "_Titul:"
1298 +msgid "_Title:"
1299 +msgstr "_Titul:"
1300  
1301  #~ msgid ""
1302  #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
1303 diff --git a/po/ga.po b/po/ga.po
1304 index 93d5fa9d1481..feb87dce3d6b 100644
1305 --- a/po/ga.po
1306 +++ b/po/ga.po
1307 @@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
1308  #: ../src/terminal-window.c:3582
1309  msgid "C_lose Terminal"
1310  msgstr "_Dún Teirminéal"
1311 +
1312 +msgid "Transparent background"
1313 +msgstr "Cúlra trédhearcach"
1314 --- gnome-terminal-3.42.0/po/gl.po.orig 2021-09-27 20:43:51.119113208 +0200
1315 +++ gnome-terminal-3.42.0/po/gl.po      2021-09-27 20:45:04.598715135 +0200
1316 @@ -2481,3 +2481,6 @@ msgstr "P_echar a xanela"
1317  #, c-format
1318  msgid "Failed to parse arguments: %s\n"
1319  msgstr "Produciuse un erro ao analizar os argumentos: %s\n"
1320 +
1321 +msgid "Transparent background"
1322 +msgstr "Fondo transparente"
1323 diff --git a/po/gu.po b/po/gu.po
1324 index 76b459cf8dc5..485beeac98b7 100644
1325 --- a/po/gu.po
1326 +++ b/po/gu.po
1327 @@ -2155,8 +2155,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1328  #~ msgid "Default size:"
1329  #~ msgstr "મૂળભૂત માપ:"
1330  
1331 -#~ msgid "Title"
1332 -#~ msgstr "શીર્ષક"
1333 +msgid "Title"
1334 +msgstr "શીર્ષક"
1335  
1336  #~ msgid "When terminal commands set their o_wn titles:"
1337  #~ msgstr "જ્યારે આદેશો તેમના પોતાના શીર્ષકો સુયોજીત કરે (_w):"
1338 @@ -2176,8 +2176,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1339  #~ msgid "Close Window"
1340  #~ msgstr "વિન્ડો બંધ કરો"
1341  
1342 -#~ msgid "Set Title"
1343 -#~ msgstr "શીર્ષકની ગોઠવણી કરો"
1344 +msgid "Set Title"
1345 +msgstr "શીર્ષકની ગોઠવણી કરો"
1346  
1347  #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1348  #~ msgstr "ટુંકાણ કી “%s“ એ પહેલાથી ક્રિયા “%s“ સાથે બંધાયેલી છે"
1349 @@ -2203,8 +2203,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1350  #~ msgid "_Input Methods"
1351  #~ msgstr "ઈનપુટ માટેની પધ્ધિતિઓ (_I)"
1352  
1353 -#~ msgid "_Title:"
1354 -#~ msgstr "શીર્ષક (_T):"
1355 +msgid "_Title:"
1356 +msgstr "શીર્ષક (_T):"
1357  
1358  #~ msgid "Keyboard shortcut to switch to tab 1"
1359  #~ msgstr "ટૅબ ૧ પર જવા માટે કીબોર્ડનું ટુંકાણ"
1360 @@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1361  #~ msgid "_Solid color"
1362  #~ msgstr "ઘટ્ટ રંગ (_S)"
1363  
1364 -#~ msgid "_Transparent background"
1365 -#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)"
1366 +msgid "Transparent background"
1367 +msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ"
1368  
1369  #~ msgid "No such profile \"%s\", using default profile\n"
1370  #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
1371 diff --git a/po/he.po b/po/he.po
1372 index 57cb2d0d110f..efe8fa100074 100644
1373 --- a/po/he.po
1374 +++ b/po/he.po
1375 @@ -2333,17 +2333,17 @@ msgstr "סגירת ה_חלון"
1376  #~ msgid "Default size:"
1377  #~ msgstr "גודל בררת מחדל:"
1378  
1379 -#~ msgid "Title"
1380 -#~ msgstr "כותרת"
1381 +msgid "Title"
1382 +msgstr "כותרת"
1383  
1384 -#~ msgid "_Title:"
1385 -#~ msgstr "_כותרת:"
1386 +msgid "_Title:"
1387 +msgstr "_כותרת:"
1388  
1389  #~ msgid "Title and Command"
1390  #~ msgstr "כותרת ופקודה"
1391  
1392 -#~ msgid "Set Title"
1393 -#~ msgstr "הגדרת כותרת"
1394 +msgid "Set Title"
1395 +msgstr "הגדרת כותרת"
1396  
1397  #~ msgid "Current Locale"
1398  #~ msgstr "השפה הנוכחית"
1399 @@ -3194,8 +3194,8 @@ msgstr "סגירת ה_חלון"
1400  #~ msgid "_Solid color"
1401  #~ msgstr "צבע _אחיד"
1402  
1403 -#~ msgid "_Transparent background"
1404 -#~ msgstr "רקע _שקוף"
1405 +msgid "Transparent background"
1406 +msgstr "רקע שקוף"
1407  
1408  #~ msgid "No such profile \"%s\", using default profile\n"
1409  #~ msgstr "No such profile \"%s\", using default profile\n"
1410 diff --git a/po/hi.po b/po/hi.po
1411 index 2d7dc5b14008..8d3d0529df61 100644
1412 --- a/po/hi.po
1413 +++ b/po/hi.po
1414 @@ -2267,9 +2267,8 @@ msgstr "विंडो बंद करें (_l)"
1415  #~ msgid "Use custom default terminal si_ze"
1416  #~ msgstr "कस्टम डिफ़ॉल्ट टर्मिनल आकार का उपयोग करें (_z)"
1417  
1418 -#~| msgid "_Title:"
1419 -#~ msgid "Title"
1420 -#~ msgstr "शीर्षक"
1421 +msgid "Title"
1422 +msgstr "शीर्षक"
1423  
1424  #~ msgid "When terminal commands set their o_wn titles:"
1425  #~ msgstr "जब टर्मिनल कमांड उनका अपना शीर्षक सेट करता है (_w):"
1426 @@ -2289,8 +2288,8 @@ msgstr "विंडो बंद करें (_l)"
1427  #~ msgid "Close Window"
1428  #~ msgstr "विंडो बंद करें"
1429  
1430 -#~ msgid "Set Title"
1431 -#~ msgstr "शीर्षक नियत करें"
1432 +msgid "Set Title"
1433 +msgstr "शीर्षक नियत करें"
1434  
1435  #~ msgid "Switch to Tab 2"
1436  #~ msgstr "टैब 2 पर जाएँ"
1437 @@ -2349,8 +2348,8 @@ msgstr "विंडो बंद करें (_l)"
1438  #~ msgid "_Input Methods"
1439  #~ msgstr "इनपुट विधियाँ (_I)"
1440  
1441 -#~ msgid "_Title:"
1442 -#~ msgstr "शीर्षक (_T):"
1443 +msgid "_Title:"
1444 +msgstr "शीर्षक (_T):"
1445  
1446  #~ msgid "Disable connection to session manager"
1447  #~ msgstr "सत्र प्रबंधक में कनेक्शन निष्क्रिय करें"
1448 @@ -2979,8 +2978,8 @@ msgstr "विंडो बंद करें (_l)"
1449  #~ msgid "_Background image"
1450  #~ msgstr "पृष्ठभूमि छवि (_B)"
1451  
1452 -#~ msgid "_Transparent background"
1453 -#~ msgstr "पारदर्शी पृष्ठभूमि (_T)"
1454 +msgid "Transparent background"
1455 +msgstr "पारदर्शी पृष्ठभूमि"
1456  
1457  #~ msgid "S/Key Challenge Response"
1458  #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
1459 diff --git a/po/hr.po b/po/hr.po
1460 index aec2eaa8bac1..207b5c774b32 100644
1461 --- a/po/hr.po
1462 +++ b/po/hr.po
1463 @@ -2565,3 +2565,7 @@ msgstr "_Zatvori prozor"
1464  
1465  #~ msgid "Use transparency from system theme"
1466  #~ msgstr "Koristi prozirnost iz teme sustava"
1467 +
1468 +#: ../src/profile-preferences.glade.h:69
1469 +msgid "Transparent background"
1470 +msgstr "Prozirna pozadina"
1471 --- gnome-terminal-3.42.0/po/hu.po.orig 2021-09-27 20:45:45.238494971 +0200
1472 +++ gnome-terminal-3.42.0/po/hu.po      2021-09-27 20:48:32.504255481 +0200
1473 @@ -2463,3 +2463,6 @@ msgstr "_Ablak bezárása"
1474  #, c-format
1475  msgid "Failed to parse arguments: %s\n"
1476  msgstr "A paraméterek feldolgozása meghiúsult: %s\n"
1477 +
1478 +msgid "Transparent background"
1479 +msgstr "Áttetsző háttér"
1480 diff --git a/po/hy.po b/po/hy.po
1481 index aaf2d9b292da..4d466f164420 100644
1482 --- a/po/hy.po
1483 +++ b/po/hy.po
1484 @@ -757,8 +757,8 @@ msgid "_Base on:"
1485  msgstr ""
1486  
1487  #: ../src/profile-preferences.glade.h:1
1488 -msgid "<b>Command</b>"
1489 -msgstr "<b>Հրաման</b>"
1490 +msgid "Command"
1491 +msgstr "Հրաման"
1492  
1493  #: ../src/profile-preferences.glade.h:2
1494  msgid "<b>Foreground and Background</b>"
1495 @@ -1012,8 +1012,8 @@ msgid "_Text color:"
1496  msgstr "_Տեքստի գույնը՝"
1497  
1498  #: ../src/profile-preferences.glade.h:73
1499 -msgid "_Transparent background"
1500 -msgstr "_Թափանցիկ նախադրյալ"
1501 +msgid "Transparent background"
1502 +msgstr "Թափանցիկ նախադրյալ"
1503  
1504  #: ../src/profile-preferences.glade.h:74
1505  msgid "_Update login records when command is launched"
1506 diff --git a/po/id.po b/po/id.po
1507 index 9198218c5aaa..9f2fbd0c9d4c 100644
1508 --- a/po/id.po
1509 +++ b/po/id.po
1510 @@ -2392,6 +2392,9 @@ msgstr ""
1511  msgid "C_lose Window"
1512  msgstr "Tutup Jende_la"
1513  
1514 +msgid "Transparent background"
1515 +msgstr "Latar belakang transparan"
1516 +
1517  #~ msgid "Hindi"
1518  #~ msgstr "Hindi"
1519  
1520 --- gnome-terminal-3.40.0/po/it.po.orig 2021-04-17 11:29:23.354162096 +0200
1521 +++ gnome-terminal-3.40.0/po/it.po      2021-04-17 12:02:02.886015004 +0200
1522 @@ -2468,3 +2468,6 @@ msgstr ""
1523  #: src/terminal-window.c:3245
1524  msgid "C_lose Window"
1525  msgstr "Chiudi _finestra"
1526 +
1527 +msgid "Transparent background"
1528 +msgstr "Sfondo trasparente"
1529 --- gnome-terminal-3.40.0/po/ja.po.orig 2021-04-17 12:02:26.077220372 +0200
1530 +++ gnome-terminal-3.40.0/po/ja.po      2021-04-17 12:07:39.686853629 +0200
1531 @@ -2431,6 +2431,9 @@ msgstr ""
1532  msgid "C_lose Window"
1533  msgstr "ウィンドウを閉じる(_L)"
1534  
1535 +msgid "Transparent background"
1536 +msgstr "透過な画像にする"
1537 +
1538  #~ msgid "Whether to allow bold text"
1539  #~ msgstr "太字のフォントを許可するかどうか"
1540  
1541 --- gnome-terminal-3.40.0/po/ka.po.orig 2021-02-22 17:08:51.000000000 +0100
1542 +++ gnome-terminal-3.40.0/po/ka.po      2021-04-17 12:12:38.605723333 +0200
1543 @@ -219,8 +219,8 @@ msgid "<b>Background</b>"
1544  msgstr "<b>ფონი</b>"
1545  
1546  #: ../src/gnome-terminal.glade2.h:3
1547 -msgid "<b>Command</b>"
1548 -msgstr "<b>ბრძანება</b>"
1549 +msgid "Command"
1550 +msgstr "ბრძანება"
1551  
1552  #: ../src/gnome-terminal.glade2.h:4
1553  msgid "<b>Compatibility</b>"
1554 @@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერ
1555  
1556  #: ../src/gnome-terminal.glade2.h:86
1557  #, fuzzy
1558 -msgid "_Transparent background"
1559 +msgid "Transparent background"
1560  msgstr "გამჭირვალე"
1561  
1562  #: ../src/gnome-terminal.glade2.h:87
1563 diff --git a/po/kk.po b/po/kk.po
1564 index 2811b7ec6239..d4239e5d12c5 100644
1565 --- a/po/kk.po
1566 +++ b/po/kk.po
1567 @@ -2547,3 +2547,6 @@ msgstr "Терезені жа_бу"
1568  
1569  #~ msgid "Be quiet"
1570  #~ msgstr "Тыныш болу"
1571 +
1572 +msgid "Transparent background"
1573 +msgstr "Мөлдір фон"
1574 diff --git a/po/km.po b/po/km.po
1575 index 352897d2963b..b6db9394a307 100644
1576 --- a/po/km.po
1577 +++ b/po/km.po
1578 @@ -2909,8 +2909,8 @@ msgstr "បិទ​បង្អួច"
1579  #~ msgid "Background image _scrolls"
1580  #~ msgstr "រមូរ​រូបភាព​ផ្ទៃខាងក្រោយ"
1581  
1582 -#~ msgid "_Transparent background"
1583 -#~ msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
1584 +msgid "Transparent background"
1585 +msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
1586  
1587  #~ msgid "S_hade transparent or image background:"
1588  #~ msgstr "ដាក់​ស្រមោល​ផ្ទៃខាងក្រោយ​ថ្លា ឬ​ផ្ទៃខាងក្រោយ​​រូបភាព ៖"
1589 diff --git a/po/kn.po b/po/kn.po
1590 index c887f88a2c87..0fc1c3139258 100644
1591 --- a/po/kn.po
1592 +++ b/po/kn.po
1593 @@ -2261,8 +2261,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
1594  #~ msgid "Use custom default terminal si_ze"
1595  #~ msgstr "ಅಗತ್ಯಾನುಗುಣ ಆದೇಶತೆರೆ ಗಾತ್ರವನ್ನು ಬಳಸು (_z)"
1596  
1597 -#~ msgid "Title"
1598 -#~ msgstr "ಶೀರ್ಷಿಕೆ"
1599 +msgid "Title"
1600 +msgstr "ಶೀರ್ಷಿಕೆ"
1601  
1602  #~ msgid "When terminal commands set their o_wn titles:"
1603  #~ msgstr "ಆದೇಶಗಳು ತಮ್ಮದೆ ಆದ ಹೆಸರಗಳನ್ನು ಇರಿಸಿಕೊಂಡಾಗ (_w):"
1604 @@ -2282,8 +2282,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
1605  #~ msgid "Close Window"
1606  #~ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು"
1607  
1608 -#~ msgid "Set Title"
1609 -#~ msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
1610 +msgid "Set Title"
1611 +msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
1612  
1613  #~ msgid "Switch to Tab 2"
1614  #~ msgstr "2 ನೆ ಟ್ಯಾಬ್‌ಗೆ ಬದಲಾಯಿಸಿ"
1615 @@ -2342,5 +2342,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
1616  #~ msgid "_Input Methods"
1617  #~ msgstr "ಇನ್‌ಪುಟ್ ಕ್ರಮಗಳು (_I)"
1618  
1619 -#~ msgid "_Title:"
1620 -#~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
1621 +msgid "_Title:"
1622 +msgstr "ಶೀರ್ಷಿಕೆ(_T):"
1623 +
1624 +msgid "Transparent background"
1625 +msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
1626 diff --git a/po/ko.po b/po/ko.po
1627 index d1be8c3fdab8..02de5aa11be1 100644
1628 --- a/po/ko.po
1629 +++ b/po/ko.po
1630 @@ -2292,3 +2292,6 @@ msgstr "창 닫기(_L)"
1631  
1632  #~ msgid "Verbose output"
1633  #~ msgstr "많이 출력"
1634 +
1635 +msgid "Transparent background"
1636 +msgstr "투명한 배경"
1637 diff --git a/po/ku.po b/po/ku.po
1638 index bc2bb7f03de4..d2a83a007097 100644
1639 --- a/po/ku.po
1640 +++ b/po/ku.po
1641 @@ -223,8 +223,8 @@ msgid "<b>Background</b>"
1642  msgstr "<b>Zemîn</b>"
1643  
1644  #: ../src/gnome-terminal.glade2.h:3
1645 -msgid "<b>Command</b>"
1646 -msgstr "<b>Ferman</b>"
1647 +msgid "Command"
1648 +msgstr "Ferman"
1649  
1650  #: ../src/gnome-terminal.glade2.h:4
1651  msgid "<b>Compatibility</b>"
1652 @@ -558,8 +558,8 @@ msgid "_Text color:"
1653  msgstr "Rengê _nivîsê:"
1654  
1655  #: ../src/gnome-terminal.glade2.h:86
1656 -msgid "_Transparent background"
1657 -msgstr "Rûerdê _transparan"
1658 +msgid "Transparent background"
1659 +msgstr "Rûerdê transparan"
1660  
1661  #: ../src/gnome-terminal.glade2.h:87
1662  msgid "_Update login records when command is launched"
1663 diff --git a/po/lt.po b/po/lt.po
1664 index e8b7622e5d46..c6fe38021b6a 100644
1665 --- a/po/lt.po
1666 +++ b/po/lt.po
1667 @@ -2571,3 +2571,6 @@ msgstr "_Užverti langą"
1668  
1669  #~ msgid "Whether to use a dark theme variant"
1670  #~ msgstr "Ar naudoti tamsų temos variantą"
1671 +
1672 +msgid "Transparent background"
1673 +msgstr "Permatomas fonas"
1674 diff --git a/po/lv.po b/po/lv.po
1675 index 47d9e75b1ee8..a8dad3bc0d6b 100644
1676 --- a/po/lv.po
1677 +++ b/po/lv.po
1678 @@ -2578,3 +2578,6 @@ msgstr "Aizvērt _logu"
1679  
1680  #~ msgid "_Add or Remove…"
1681  #~ msgstr "_Pievienot vai izņemt…"
1682 +
1683 +msgid "Transparent background"
1684 +msgstr "Caurspīdīgs fons"
1685 diff --git a/po/mai.po b/po/mai.po
1686 index 715d0b9e1c82..0f31634e4f2e 100644
1687 --- a/po/mai.po
1688 +++ b/po/mai.po
1689 @@ -1044,8 +1044,8 @@ msgid "_Base on:"
1690  msgstr "आधार पर: (_B)"
1691  
1692  #: ../src/profile-preferences.glade.h:1
1693 -msgid "<b>Command</b>"
1694 -msgstr "<b>कमांड</b>"
1695 +msgid "Command"
1696 +msgstr "कमांड"
1697  
1698  #: ../src/profile-preferences.glade.h:2
1699  msgid "<b>Foreground and Background</b>"
1700 @@ -1291,8 +1291,8 @@ msgid "_Text color:"
1701  msgstr "पाठ रँग (_T):"
1702  
1703  #: ../src/profile-preferences.glade.h:69
1704 -msgid "_Transparent background"
1705 -msgstr "पारदर्शी पृष्ठभूमि (_T)"
1706 +msgid "Transparent background"
1707 +msgstr "पारदर्शी पृष्ठभूमि"
1708  
1709  #: ../src/profile-preferences.glade.h:70
1710  msgid "_Update login records when command is launched"
1711 diff --git a/po/mg.po b/po/mg.po
1712 index 99fa0f5e4059..a216602569af 100644
1713 --- a/po/mg.po
1714 +++ b/po/mg.po
1715 @@ -220,8 +220,8 @@ msgid "<b>Background</b>"
1716  msgstr "<b>Afara</b>"
1717  
1718  #: ../src/gnome-terminal.glade2.h:3
1719 -msgid "<b>Command</b>"
1720 -msgstr "<b>Baiko</b>"
1721 +msgid "Command"
1722 +msgstr "Baiko"
1723  
1724  #: ../src/gnome-terminal.glade2.h:4
1725  msgid "<b>Compatibility</b>"
1726 @@ -567,8 +567,8 @@ msgid "_Text color:"
1727  msgstr "Lokon'ny _soratra:"
1728  
1729  #: ../src/gnome-terminal.glade2.h:86
1730 -msgid "_Transparent background"
1731 -msgstr "_Afara tatera-pahazavana"
1732 +msgid "Transparent background"
1733 +msgstr "Afara tatera-pahazavana"
1734  
1735  #: ../src/gnome-terminal.glade2.h:87
1736  msgid "_Update login records when command is launched"
1737 diff --git a/po/mk.po b/po/mk.po
1738 index 4fe43192fe57..a5a874b49c59 100644
1739 --- a/po/mk.po
1740 +++ b/po/mk.po
1741 @@ -863,8 +863,8 @@ msgid "_Base on:"
1742  msgstr "_Базирано на:"
1743  
1744  #: ../src/profile-preferences.glade.h:1
1745 -msgid "<b>Command</b>"
1746 -msgstr "<b>Команда</b>"
1747 +msgid "Command"
1748 +msgstr "Команда"
1749  
1750  #: ../src/profile-preferences.glade.h:2
1751  #| msgid "<b>Foreground and Background</b>"
1752 @@ -1167,8 +1167,8 @@ msgid "_Text color:"
1753  msgstr "_Боја на текстот:"
1754  
1755  #: ../src/profile-preferences.glade.h:77
1756 -msgid "_Transparent background"
1757 -msgstr "_Транспарентна позадина"
1758 +msgid "Transparent background"
1759 +msgstr "Транспарентна позадина"
1760  
1761  #: ../src/profile-preferences.glade.h:78
1762  #| msgid "_Text color:"
1763 diff --git a/po/ml.po b/po/ml.po
1764 index a23f4cc4f1ae..49caa9efe94f 100644
1765 --- a/po/ml.po
1766 +++ b/po/ml.po
1767 @@ -2461,3 +2461,6 @@ msgstr "ജാലകം അടയ്ക്കുക (_l)"
1768  
1769  #~ msgid "_Unlimited"
1770  #~ msgstr "പരിധിയില്ല (_U)"
1771 +
1772 +msgid "Transparent background"
1773 +msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
1774 diff --git a/po/mn.po b/po/mn.po
1775 index 2f9d86072d1c..09c4437d10f9 100644
1776 --- a/po/mn.po
1777 +++ b/po/mn.po
1778 @@ -217,8 +217,8 @@ msgid "<b>Background</b>"
1779  msgstr "<b>Дэвсгэр</b>"
1780  
1781  #: ../src/gnome-terminal.glade2.h:2
1782 -msgid "<b>Command</b>"
1783 -msgstr "<b>Тушаал</b>"
1784 +msgid "Command"
1785 +msgstr "Тушаал"
1786  
1787  #: ../src/gnome-terminal.glade2.h:3
1788  msgid "<b>Compatibility</b>"
1789 @@ -618,8 +618,8 @@ msgid "_Text color:"
1790  msgstr "_Текстийн өнгө:"
1791  
1792  #: ../src/gnome-terminal.glade2.h:102
1793 -msgid "_Transparent background"
1794 -msgstr "_Тунгалаг дэвсгэр"
1795 +msgid "Transparent background"
1796 +msgstr "Тунгалаг дэвсгэр"
1797  
1798  #: ../src/gnome-terminal.glade2.h:103
1799  msgid "_Update login records when command is launched"
1800 diff --git a/po/mr.po b/po/mr.po
1801 index 61997dafbd03..9c7dc77abd22 100644
1802 --- a/po/mr.po
1803 +++ b/po/mr.po
1804 @@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा (_l)"
1805  #~ msgid "Default size:"
1806  #~ msgstr "पूर्वनिर्धारीत आकार:"
1807  
1808 -#~ msgid "Title"
1809 -#~ msgstr "शीर्षक"
1810 +msgid "Title"
1811 +msgstr "शीर्षक"
1812  
1813  #~ msgid "When terminal commands set their o_wn titles:"
1814  #~ msgstr "जेव्हा टर्मिनल आदेश स्वतःचे शिर्षक निश्चित करते (_w):"
1815 @@ -2240,8 +2240,8 @@ msgstr "चौकट बंद करा (_l)"
1816  #~ msgid "Close Window"
1817  #~ msgstr "चौकट बंद करा"
1818  
1819 -#~ msgid "Set Title"
1820 -#~ msgstr "शिर्षक निश्चित करा"
1821 +msgid "Set Title"
1822 +msgstr "शिर्षक निश्चित करा"
1823  
1824  #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1825  #~ msgstr "“%s” ही शार्टकट कि “%s” या कृतीशी संलग्न आहे"
1826 @@ -2267,8 +2267,8 @@ msgstr "चौकट बंद करा (_l)"
1827  #~ msgid "_Input Methods"
1828  #~ msgstr "इनपुट पध्दती (_I)"
1829  
1830 -#~ msgid "_Title:"
1831 -#~ msgstr "शिर्षक (_T):"
1832 +msgid "_Title:"
1833 +msgstr "शिर्षक (_T):"
1834  
1835  #~ msgid "Keyboard shortcut to switch to tab 1"
1836  #~ msgstr "टॅब 1 वापरण्याकरीता कळफलक शॉर्टकट"
1837 @@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
1838  #~ msgid "_Solid color"
1839  #~ msgstr "गडद रंग (_S)"
1840  
1841 -#~ msgid "_Transparent background"
1842 -#~ msgstr "पारदर्शी पार्श्वभूमी(_T)"
1843 +msgid "Transparent background"
1844 +msgstr "पारदर्शी पार्श्वभूमी"
1845  
1846  #~ msgid "Disabled"
1847  #~ msgstr "अकार्यान्वीतित"
1848 diff --git a/po/ms.po b/po/ms.po
1849 index f2ebd4851d3b..f3d44c9c6294 100644
1850 --- a/po/ms.po
1851 +++ b/po/ms.po
1852 @@ -2502,6 +2502,9 @@ msgstr ""
1853  msgid "C_lose Window"
1854  msgstr "T_utup Tetingkap"
1855  
1856 +msgid "Transparent background"
1857 +msgstr "LatarBelakang Telus"
1858 +
1859  #~ msgid "Accelerator key"
1860  #~ msgstr "Kekunci pemecut"
1861  
1862 --- gnome-terminal-3.40.0/po/nb.po.orig 2021-04-17 12:13:02.850316782 +0200
1863 +++ gnome-terminal-3.40.0/po/nb.po      2021-04-17 12:13:27.591601923 +0200
1864 @@ -2406,3 +2406,6 @@ msgstr ""
1865  #: src/terminal-window.c:3224
1866  msgid "C_lose Window"
1867  msgstr "_Lukk vindu"
1868 +
1869 +msgid "Transparent background"
1870 +msgstr "Gjennomsiktig bakgrunn"
1871 diff --git a/po/nds.po b/po/nds.po
1872 index 82f930b1cc0c..d52fbd94eb58 100644
1873 --- a/po/nds.po
1874 +++ b/po/nds.po
1875 @@ -748,8 +748,8 @@ msgid "_Base on:"
1876  msgstr "_Steiht op:"
1877  
1878  #: ../src/profile-preferences.glade.h:1
1879 -msgid "<b>Command</b>"
1880 -msgstr "<b>Order</b>"
1881 +msgid "Command"
1882 +msgstr "Order"
1883  
1884  #: ../src/profile-preferences.glade.h:2
1885  msgid "<b>Foreground and Background</b>"
1886 @@ -996,8 +996,8 @@ msgid "_Text color:"
1887  msgstr "_Textklöör:"
1888  
1889  #: ../src/profile-preferences.glade.h:73
1890 -msgid "_Transparent background"
1891 -msgstr "_Döörschienenachtergrund:"
1892 +msgid "Transparent background"
1893 +msgstr "Döörschienenachtergrund:"
1894  
1895  #: ../src/profile-preferences.glade.h:74
1896  msgid "_Update login records when command is launched"
1897 --- gnome-terminal-3.40.1/po/ne.po.orig 2021-04-30 13:30:46.000000000 +0200
1898 +++ gnome-terminal-3.40.1/po/ne.po      2021-05-05 22:44:16.302461546 +0200
1899 @@ -2862,8 +2862,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
1900  #~ msgid "_None (use solid color)"
1901  #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
1902  
1903 -#~ msgid "_Transparent background"
1904 -#~ msgstr "पारदर्शी पृष्ठभूमि"
1905 +msgid "Transparent background"
1906 +msgstr "पारदर्शी पृष्ठभूमि"
1907  
1908  #~ msgid "_Use the system fixed width font"
1909  #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
1910 @@ -3524,8 +3524,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
1911  #~ msgid "_Input Methods"
1912  #~ msgstr "आगत विधि"
1913  
1914 -#~ msgid "_Title:"
1915 -#~ msgstr "शीर्षक:"
1916 +msgid "_Title:"
1917 +msgstr "शीर्षक:"
1918  
1919  #~ msgid "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
1920  #~ msgstr "टर्मिनलमा छोडिएको पाठ/सादा गलत ढाँचा (%d) वा लम्बाइ (%d)को थियो\n"
1921 @@ -3560,8 +3560,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
1922  #~ msgid "C_urrent Profile..."
1923  #~ msgstr "हालको प्रोफाइल..."
1924  
1925 -#~ msgid "_Set Title..."
1926 -#~ msgstr "शीर्षक राख्नुहोस्..."
1927 +msgid "Set Title"
1928 +msgstr "शीर्षक सेट गर्नुहोस्"
1929  
1930  #~ msgid "There was an error loading config value for whether to use mnemonics. (%s)\n"
1931  #~ msgstr "निमोनिक प्रयोग गर्न या नगर्नका लागि कन्फिग मान लोड गर्दा त्रुटि भएको थियो । (%s)\n"
1932 diff --git a/po/nl.po b/po/nl.po
1933 index 5f070152cade..560e472f0917 100644
1934 --- a/po/nl.po
1935 +++ b/po/nl.po
1936 @@ -2596,3 +2596,6 @@ msgstr "Venster sl_uiten"
1937  
1938  #~ msgid "_Add or Remove…"
1939  #~ msgstr "_Toevoegen of verwijderen…"
1940 +
1941 +msgid "Title"
1942 +msgstr "Titel"
1943 diff --git a/po/nn.po b/po/nn.po
1944 index 5aa43b113ed9..f892290c256f 100644
1945 --- a/po/nn.po
1946 +++ b/po/nn.po
1947 @@ -1149,8 +1149,8 @@ msgid "_Base on:"
1948  msgstr "_Tuft på:"
1949  
1950  #: ../src/profile-preferences.glade.h:1
1951 -msgid "<b>Command</b>"
1952 -msgstr "<b>Kommando</b>"
1953 +msgid "Command"
1954 +msgstr "Kommando"
1955  
1956  #: ../src/profile-preferences.glade.h:2
1957  msgid "<b>Foreground and Background</b>"
1958 @@ -1429,8 +1429,8 @@ msgid "_Text color:"
1959  msgstr "_Tekstfarge:"
1960  
1961  #: ../src/profile-preferences.glade.h:73
1962 -msgid "_Transparent background"
1963 -msgstr "_Gjennomskinleg bakgrunn"
1964 +msgid "Transparent background"
1965 +msgstr "Gjennomskinleg bakgrunn"
1966  
1967  #: ../src/profile-preferences.glade.h:74
1968  msgid "_Update login records when command is launched"
1969 diff --git a/po/oc.po b/po/oc.po
1970 index 9a6f6186019a..6e51ea2f8980 100644
1971 --- a/po/oc.po
1972 +++ b/po/oc.po
1973 @@ -2944,8 +2944,8 @@ msgstr "Tampar _la fenèstra"
1974  #~ msgid "Save as..."
1975  #~ msgstr "Enregistrar jos..."
1976  
1977 -#~ msgid "_Title:"
1978 -#~ msgstr "_Títol :"
1979 +msgid "_Title:"
1980 +msgstr "_Títol :"
1981  
1982  #~ msgid "_Detach tab"
1983  #~ msgstr "Des_tacar l'onglet"
1984 @@ -3405,8 +3405,8 @@ msgstr "Tampar _la fenèstra"
1985  #~ msgid "_Use the system fixed width font"
1986  #~ msgstr "_Utilizar la poliça de chassa fixa del sistèma"
1987  
1988 -#~ msgid "Set Title"
1989 -#~ msgstr "Definir lo títol"
1990 +msgid "Set Title"
1991 +msgstr "Definir lo títol"
1992  
1993  #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1994  #~ msgstr "L'acorchi de clavièr « %s » es ja atribuit a l'accion « %s »"
1995 @@ -3723,8 +3723,8 @@ msgstr "Tampar _la fenèstra"
1996  #~ msgid "Run;"
1997  #~ msgstr "Executar;Consòla;Shell;"
1998  
1999 -#~ msgid "_Transparent background"
2000 -#~ msgstr "Rèireplan _transparent"
2001 +msgid "Transparent background"
2002 +msgstr "Rèireplan transparent"
2003  
2004  #~ msgid ""
2005  #~ "A subset of possible encodings are presented in the Encoding submenu. "
2006 diff --git a/po/or.po b/po/or.po
2007 index ec1e6bfb9a28..218acd712df6 100644
2008 --- a/po/or.po
2009 +++ b/po/or.po
2010 @@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
2011  #~ msgid "Background image _scrolls"
2012  #~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)"
2013  
2014 -#~ msgid "_Transparent background"
2015 -#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)"
2016 +msgid "Transparent background"
2017 +msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି"
2018  
2019  #~ msgid "S_hade transparent or image background:"
2020  #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
2021 diff --git a/po/pa.po b/po/pa.po
2022 index 1cb4b46dc2aa..2bdd01fecaab 100644
2023 --- a/po/pa.po
2024 +++ b/po/pa.po
2025 @@ -2718,10 +2718,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2026  #~ msgid "GNOME Terminal Client"
2027  #~ msgstr "ਗਨੋਮ ਟਰਮੀਨਲ ਕਲਾਇਟ"
2028  
2029 -#~| msgid "Terminal"
2030 -#~ msgctxt "title"
2031 -#~ msgid "'Terminal'"
2032 -#~ msgstr "'ਟਰਮੀਨਲ'"
2033 +msgctxt "title"
2034 +msgid "'Terminal'"
2035 +msgstr "'ਟਰਮੀਨਲ'"
2036  
2037  #~ msgid "Title for terminal"
2038  #~ msgstr "ਟਰਮੀਨਲ ਲਈ ਟਾਈਟਲ"
2039 @@ -2766,11 +2765,11 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2040  #~ msgid "Default size:"
2041  #~ msgstr "ਡਿਫਾਲਟ ਸਾਈਜ਼:"
2042  
2043 -#~ msgid "Title"
2044 -#~ msgstr "ਟਾਈਟਲ"
2045 +msgid "Title"
2046 +msgstr "ਟਾਈਟਲ"
2047  
2048 -#~ msgid "_Title:"
2049 -#~ msgstr "ਟਾਈਟਲ(_T):"
2050 +msgid "_Title:"
2051 +msgstr "ਟਾਈਟਲ(_T):"
2052  
2053  #~ msgid "Title and Command"
2054  #~ msgstr "ਟਾਈਟਲ ਅਤੇ ਕਮਾਂਡ"
2055 @@ -2778,8 +2777,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2056  #~ msgid "_Unlimited"
2057  #~ msgstr "ਬੇਅੰਤ(_U)"
2058  
2059 -#~ msgid "Set Title"
2060 -#~ msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
2061 +msgid "Set Title"
2062 +msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
2063  
2064  #~ msgid "Current Locale"
2065  #~ msgstr "ਮੌਜੂਦ ਲੋਕੇਲ"
2066 @@ -3559,8 +3558,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2067  #~ msgid "_Solid color"
2068  #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
2069  
2070 -#~ msgid "_Transparent background"
2071 -#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)"
2072 +msgid "Transparent background"
2073 +msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ"
2074  
2075  #~ msgid "S/Key Challenge Response"
2076  #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
2077 diff --git a/po/ps.po b/po/ps.po
2078 index b25a2cb41712..3855b2f3423f 100644
2079 --- a/po/ps.po
2080 +++ b/po/ps.po
2081 @@ -810,8 +810,8 @@ msgid "_Base on:"
2082  msgstr ":پر بنسټ د_"
2083  
2084  #: ../src/profile-preferences.glade.h:1
2085 -msgid "<b>Command</b>"
2086 -msgstr "<b>بولۍ</b>"
2087 +msgid "Command"
2088 +msgstr "بولۍ"
2089  
2090  #: ../src/profile-preferences.glade.h:2
2091  msgid "<b>Foreground and Background</b>"
2092 @@ -1053,8 +1053,8 @@ msgid "_Text color:"
2093  msgstr ":د ليکنې رنګ_"
2094  
2095  #: ../src/profile-preferences.glade.h:69
2096 -msgid "_Transparent background"
2097 -msgstr "روڼ شاليد_"
2098 +msgid "Transparent background"
2099 +msgstr "روڼ شاليد"
2100  
2101  #: ../src/profile-preferences.glade.h:70
2102  msgid "_Update login records when command is launched"
2103 diff --git a/po/pt.po b/po/pt.po
2104 index 5181419ad973..3df37f6d5bc7 100644
2105 --- a/po/pt.po
2106 +++ b/po/pt.po
2107 @@ -2360,11 +2360,11 @@ msgstr "Fechar jane_la"
2108  #~ msgid "Default size:"
2109  #~ msgstr "Tamanho predefinido:"
2110  
2111 -#~ msgid "Title"
2112 -#~ msgstr "Título"
2113 +msgid "Title"
2114 +msgstr "Título"
2115  
2116 -#~ msgid "_Title:"
2117 -#~ msgstr "_Título:"
2118 +msgid "_Title:"
2119 +msgstr "_Título:"
2120  
2121  #~ msgid "Title and Command"
2122  #~ msgstr "Título e comando"
2123 @@ -2372,8 +2372,8 @@ msgstr "Fechar jane_la"
2124  #~ msgid "_Unlimited"
2125  #~ msgstr "_Ilimitado"
2126  
2127 -#~ msgid "Set Title"
2128 -#~ msgstr "Definir o Título"
2129 +msgid "Set Title"
2130 +msgstr "Definir o Título"
2131  
2132  #~ msgid "Current Locale"
2133  #~ msgstr "Configuração Regional Atual"
2134 @@ -3160,8 +3160,8 @@ msgstr "Fechar jane_la"
2135  #~ msgid "Background image _scrolls"
2136  #~ msgstr "Imagem de fundo _rola"
2137  
2138 -#~ msgid "_Transparent background"
2139 -#~ msgstr "Fundo _transparente"
2140 +msgid "Transparent background"
2141 +msgstr "Fundo transparente"
2142  
2143  #~ msgid "S_hade transparent or image background:"
2144  #~ msgstr "Transparente som_breado ou imagem de fundo:"
2145 --- gnome-terminal-3.42.0/po/pt_BR.po.orig      2021-09-27 20:48:56.414125950 +0200
2146 +++ gnome-terminal-3.42.0/po/pt_BR.po   2021-09-27 20:52:08.016421285 +0200
2147 @@ -2482,3 +2482,6 @@ msgstr "_Fechar janela"
2148  #, c-format
2149  msgid "Failed to parse arguments: %s\n"
2150  msgstr "Falha ao analisar os argumentos: %s\n"
2151 +
2152 +msgid "Transparent background"
2153 +msgstr "Fundo transparente"
2154 diff --git a/po/ro.po b/po/ro.po
2155 index 53dd72be9c45..d694adf36934 100644
2156 --- a/po/ro.po
2157 +++ b/po/ro.po
2158 @@ -3412,8 +3412,8 @@ msgstr "Î_nchide fereastra"
2159  #~ msgid "_Solid color"
2160  #~ msgstr "Culoare _solidă"
2161  
2162 -#~ msgid "_Transparent background"
2163 -#~ msgstr "Fundal _transparent"
2164 +msgid "Transparent background"
2165 +msgstr "Fundal transparent"
2166  
2167  #~ msgid "_Unlimited"
2168  #~ msgstr "_Neliminat"
2169 diff --git a/po/ru.po b/po/ru.po
2170 index fedc4d3ec51c..c08bffcb4d10 100644
2171 --- a/po/ru.po
2172 +++ b/po/ru.po
2173 @@ -2539,3 +2539,6 @@ msgstr "_Закрыть окно"
2174  
2175  #~ msgid "_Add or Remove…"
2176  #~ msgstr "_Добавить или удалить…"
2177 +
2178 +msgid "Transparent background"
2179 +msgstr "Прозрачный фон"
2180 diff --git a/po/rw.po b/po/rw.po
2181 index 012f64e325c3..5ff633f8b3c2 100644
2182 --- a/po/rw.po
2183 +++ b/po/rw.po
2184 @@ -749,7 +749,7 @@ msgstr "Ibara ry'Inyandiko..."
2185  
2186  #: ../src/gnome-terminal.glade2.h:102
2187  #, fuzzy
2188 -msgid "_Transparent background"
2189 +msgid "Transparent background"
2190  msgstr "Mbuganyuma"
2191  
2192  #: ../src/gnome-terminal.glade2.h:103
2193 @@ -2398,7 +2398,6 @@ msgstr ""
2194  
2195  # sch/source\ui\app\menu.src:RID_MENU.WORKAROUND_22.SID_INSERT_TITLE.text
2196  #: ../src/terminal-screen.c:2005
2197 -#, fuzzy
2198  msgid "_Title:"
2199  msgstr "Umutwe..."
2200  
2201 diff --git a/po/si.po b/po/si.po
2202 index adca7d5acba9..6379cee7f0a3 100644
2203 --- a/po/si.po
2204 +++ b/po/si.po
2205 @@ -218,8 +218,8 @@ msgid "<b>Background</b>"
2206  msgstr "<b>පසුබිම</b>"
2207  
2208  #: ../src/gnome-terminal.glade2.h:3
2209 -msgid "<b>Command</b>"
2210 -msgstr "<b>විධානය</b>"
2211 +msgid "Command"
2212 +msgstr "විධානය"
2213  
2214  #: ../src/gnome-terminal.glade2.h:4
2215  msgid "<b>Compatibility</b>"
2216 @@ -538,8 +538,8 @@ msgid "_Text color:"
2217  msgstr "පෙළ වර්‍ණ: (_T)"
2218  
2219  #: ../src/gnome-terminal.glade2.h:86
2220 -msgid "_Transparent background"
2221 -msgstr "විනිවිද පෙනෙන පසුබිම (_T)"
2222 +msgid "Transparent background"
2223 +msgstr "විනිවිද පෙනෙන පසුබිම"
2224  
2225  #: ../src/gnome-terminal.glade2.h:87
2226  msgid "_Update login records when command is launched"
2227 diff --git a/po/sk.po b/po/sk.po
2228 index d0282159b459..01dd96a06939 100644
2229 --- a/po/sk.po
2230 +++ b/po/sk.po
2231 @@ -2916,3 +2916,6 @@ msgstr "_Zavrieť okno"
2232  #~ "\n"
2233  #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
2234  #~ "help“.\n"
2235 +
2236 +msgid "Transparent background"
2237 +msgstr "Priehľadné pozadie"
2238 diff --git a/po/sl.po b/po/sl.po
2239 index db9cb98834fe..261abe9c1e64 100644
2240 --- a/po/sl.po
2241 +++ b/po/sl.po
2242 @@ -2663,17 +2663,17 @@ msgstr "_Zapri okno"
2243  #~ msgid "Default size:"
2244  #~ msgstr "Privzeta velikost:"
2245  
2246 -#~ msgid "Title"
2247 -#~ msgstr "Naslov"
2248 +msgid "Title"
2249 +msgstr "Naslov"
2250  
2251 -#~ msgid "_Title:"
2252 -#~ msgstr "_Naziv:"
2253 +msgid "_Title:"
2254 +msgstr "_Naziv:"
2255  
2256  #~ msgid "Title and Command"
2257  #~ msgstr "Naziv in ukaz"
2258  
2259 -#~ msgid "Set Title"
2260 -#~ msgstr "Določitev naziva okna"
2261 +msgid "Set Title"
2262 +msgstr "Določitev naziva okna"
2263  
2264  #~ msgid "Current Locale"
2265  #~ msgstr "Trenutne jezikovne nastavitve"
2266 @@ -2788,3 +2788,6 @@ msgstr "_Zapri okno"
2267  
2268  #~ msgid "_Profile Preferences…"
2269  #~ msgstr "Možnosti _profila ..."
2270 +
2271 +msgid "Transparent background"
2272 +msgstr "Prosojno ozadje"
2273 diff --git a/po/sq.po b/po/sq.po
2274 index 158f6cb167cc..a3494fb70bd6 100644
2275 --- a/po/sq.po
2276 +++ b/po/sq.po
2277 @@ -225,8 +225,8 @@ msgid "<b>Background</b>"
2278  msgstr "<b>Sfondi</b>"
2279  
2280  #: ../src/gnome-terminal.glade2.h:3
2281 -msgid "<b>Command</b>"
2282 -msgstr "<b>Komanda</b>"
2283 +msgid "Command"
2284 +msgstr "Komanda"
2285  
2286  #: ../src/gnome-terminal.glade2.h:4
2287  msgid "<b>Compatibility</b>"
2288 @@ -568,8 +568,8 @@ msgstr "Ngjyra e _tekstit:"
2289  
2290  # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
2291  #: ../src/gnome-terminal.glade2.h:85
2292 -msgid "_Transparent background"
2293 -msgstr "Sfond _Trasparent"
2294 +msgid "Transparent background"
2295 +msgstr "Sfond Trasparent"
2296  
2297  #: ../src/gnome-terminal.glade2.h:86
2298  msgid "_Update login records when command is launched"
2299 diff --git a/po/sr.po b/po/sr.po
2300 index 8bf15f3250a4..81a73722c616 100644
2301 --- a/po/sr.po
2302 +++ b/po/sr.po
2303 @@ -2576,10 +2576,9 @@ msgstr "_Затвори прозор"
2304  #~ msgid "GNOME Terminal Client"
2305  #~ msgstr "Клијент Гномовог терминала"
2306  
2307 -#~| msgid "Terminal"
2308 -#~ msgctxt "title"
2309 -#~ msgid "'Terminal'"
2310 -#~ msgstr "„Терминал“"
2311 +msgctxt "title"
2312 +msgid "'Terminal'"
2313 +msgstr "„Терминал“"
2314  
2315  #~ msgid "Title for terminal"
2316  #~ msgstr "Наслов за терминал"
2317 @@ -2625,11 +2624,11 @@ msgstr "_Затвори прозор"
2318  #~ msgid "Default size:"
2319  #~ msgstr "Основна величина:"
2320  
2321 -#~ msgid "Title"
2322 -#~ msgstr "Наслов"
2323 +msgid "Title"
2324 +msgstr "Наслов"
2325  
2326 -#~ msgid "_Title:"
2327 -#~ msgstr "_Наслов:"
2328 +msgid "_Title:"
2329 +msgstr "_Наслов:"
2330  
2331  #~ msgid "Title and Command"
2332  #~ msgstr "Наслов и наредба"
2333 @@ -2637,8 +2636,8 @@ msgstr "_Затвори прозор"
2334  #~ msgid "_Unlimited"
2335  #~ msgstr "_Неограничено"
2336  
2337 -#~ msgid "Set Title"
2338 -#~ msgstr "Постави наслов"
2339 +msgid "Set Title"
2340 +msgstr "Постави наслов"
2341  
2342  #~ msgid "Current Locale"
2343  #~ msgstr "Текући локалитет"
2344 @@ -2648,3 +2647,6 @@ msgstr "_Затвори прозор"
2345  
2346  #~ msgid "Hidden"
2347  #~ msgstr "Скривен"
2348 +
2349 +msgid "Transparent background"
2350 +msgstr "Провидна позадина"
2351 diff --git a/po/sr@latin.po b/po/sr@latin.po
2352 index 45dbad07fba7..852c47cc6ee5 100644
2353 --- a/po/sr@latin.po
2354 +++ b/po/sr@latin.po
2355 @@ -2576,10 +2576,9 @@ msgstr "_Zatvori prozor"
2356  #~ msgid "GNOME Terminal Client"
2357  #~ msgstr "Klijent Gnomovog terminala"
2358  
2359 -#~| msgid "Terminal"
2360 -#~ msgctxt "title"
2361 -#~ msgid "'Terminal'"
2362 -#~ msgstr "„Terminal“"
2363 +msgctxt "title"
2364 +msgid "'Terminal'"
2365 +msgstr "„Terminal“"
2366  
2367  #~ msgid "Title for terminal"
2368  #~ msgstr "Naslov za terminal"
2369 @@ -2625,11 +2624,11 @@ msgstr "_Zatvori prozor"
2370  #~ msgid "Default size:"
2371  #~ msgstr "Osnovna veličina:"
2372  
2373 -#~ msgid "Title"
2374 -#~ msgstr "Naslov"
2375 +msgid "Title"
2376 +msgstr "Naslov"
2377  
2378 -#~ msgid "_Title:"
2379 -#~ msgstr "_Naslov:"
2380 +msgid "_Title:"
2381 +msgstr "_Naslov:"
2382  
2383  #~ msgid "Title and Command"
2384  #~ msgstr "Naslov i naredba"
2385 @@ -2637,8 +2636,8 @@ msgstr "_Zatvori prozor"
2386  #~ msgid "_Unlimited"
2387  #~ msgstr "_Neograničeno"
2388  
2389 -#~ msgid "Set Title"
2390 -#~ msgstr "Postavi naslov"
2391 +msgid "Set Title"
2392 +msgstr "Postavi naslov"
2393  
2394  #~ msgid "Current Locale"
2395  #~ msgstr "Tekući lokalitet"
2396 @@ -2648,3 +2647,6 @@ msgstr "_Zatvori prozor"
2397  
2398  #~ msgid "Hidden"
2399  #~ msgstr "Skriven"
2400 +
2401 +msgid "Transparent background"
2402 +msgstr "Providna pozadina"
2403 diff --git a/po/sv.po b/po/sv.po
2404 index 8560fde55941..bd1030f519ab 100644
2405 --- a/po/sv.po
2406 +++ b/po/sv.po
2407 @@ -2572,5 +2572,8 @@ msgstr "Stän_g fönster"
2408  #~ msgid "Unknown completion request for \"%s\""
2409  #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
2410  
2411 +msgid "Transparent background"
2412 +msgstr "Genomskinlig bakgrund"
2413 +
2414  #~ msgid "Missing command"
2415  #~ msgstr "Kommando saknas"
2416 diff --git a/po/ta.po b/po/ta.po
2417 index 80aa2f684eec..afd335b0faf0 100644
2418 --- a/po/ta.po
2419 +++ b/po/ta.po
2420 @@ -2171,10 +2171,9 @@ msgstr "_l சாளரத்தை மூடவும்"
2421  #~ msgid "Show server options"
2422  #~ msgstr "சேவையக தேர்வுகளை காட்டுக"
2423  
2424 -#~| msgid "Terminal"
2425 -#~ msgctxt "title"
2426 -#~ msgid "'Terminal'"
2427 -#~ msgstr "'முனையம்'"
2428 +msgctxt "title"
2429 +msgid "'Terminal'"
2430 +msgstr "'முனையம்'"
2431  
2432  #~ msgid "Title for terminal"
2433  #~ msgstr "முனையத்தின் தலைப்பு"
2434 @@ -2221,11 +2220,11 @@ msgstr "_l சாளரத்தை மூடவும்"
2435  #~ msgid "Default size:"
2436  #~ msgstr "முன்னிருப்பு அளவு:"
2437  
2438 -#~ msgid "Title"
2439 -#~ msgstr "தலைப்பு"
2440 +msgid "Title"
2441 +msgstr "தலைப்பு"
2442  
2443 -#~ msgid "_Title:"
2444 -#~ msgstr "_T தலைப்பு:"
2445 +msgid "_Title:"
2446 +msgstr "_T தலைப்பு:"
2447  
2448  #~ msgid "Title and Command"
2449  #~ msgstr "தலைப்பும் கட்டளையும்"
2450 @@ -2233,8 +2232,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2451  #~ msgid "_Unlimited"
2452  #~ msgstr "_U வரையரை இல்லாத"
2453  
2454 -#~ msgid "Set Title"
2455 -#~ msgstr "தலைப்பை அமைக்க"
2456 +msgid "Set Title"
2457 +msgstr "தலைப்பை அமைக்க"
2458  
2459  #~| msgid "_Terminal"
2460  #~ msgid "_About Terminal"
2461 @@ -2243,8 +2242,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2462  #~ msgid "Current Locale"
2463  #~ msgstr "தற்போதைய மொழி"
2464  
2465 -#~ msgid "_Set Title…"
2466 -#~ msgstr "(_S) தலைப்பை அமைக்க..."
2467 +msgid "_Set Title…"
2468 +msgstr "(_S) தலைப்பை அமைக்க..."
2469  
2470  #~ msgid "_Next Tab"
2471  #~ msgstr "அடுத்த கீற்று (_N)"
2472 @@ -3028,8 +3027,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2473  #~ msgid "_Solid color"
2474  #~ msgstr "(_S) ஒரே வண்ணம்"
2475  
2476 -#~ msgid "_Transparent background"
2477 -#~ msgstr "_T புலப்பாடு பின்னணி"
2478 +msgid "Transparent background"
2479 +msgstr "புலப்பாடு பின்னணி"
2480  
2481  #~ msgid "No such profile \"%s\", using default profile\n"
2482  #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
2483 diff --git a/po/te.po b/po/te.po
2484 index 82c0e0fc8f54..0dd3d871f639 100644
2485 --- a/po/te.po
2486 +++ b/po/te.po
2487 @@ -2055,10 +2055,9 @@ msgstr "కిటికీని మూసివేయి (_l)"
2488  #~ msgid "Show server options"
2489  #~ msgstr "సేవకము ఐచ్చికాలను చూపించు"
2490  
2491 -#, fuzzy
2492 -#~ msgctxt "title"
2493 -#~ msgid "'Terminal'"
2494 -#~ msgstr "టెర్మినల్"
2495 +msgctxt "title"
2496 +msgid "'Terminal'"
2497 +msgstr "టెర్మినల్"
2498  
2499  #~ msgid "Title for terminal"
2500  #~ msgstr "టెర్మినల్ కు శీర్షిక"
2501 @@ -2104,11 +2103,11 @@ msgstr "కిటికీని మూసివేయి (_l)"
2502  #~ msgid "Default size:"
2503  #~ msgstr "అప్రమేయ పరిమాణం:"
2504  
2505 -#~ msgid "Title"
2506 -#~ msgstr "శీర్షిక:"
2507 +msgid "Title"
2508 +msgstr "శీర్షిక:"
2509  
2510 -#~ msgid "_Title:"
2511 -#~ msgstr "శీర్షిక (_T):"
2512 +msgid "_Title:"
2513 +msgstr "శీర్షిక (_T):"
2514  
2515  #~ msgid "Title and Command"
2516  #~ msgstr "శీర్షిక మరియు ఆదేశం"
2517 @@ -2116,14 +2115,14 @@ msgstr "కిటికీని మూసివేయి (_l)"
2518  #~ msgid "_Unlimited"
2519  #~ msgstr "అపరిమితమైన (_U)"
2520  
2521 -#~ msgid "Set Title"
2522 -#~ msgstr "శీర్షికను అమర్చు"
2523 +msgid "Set Title"
2524 +msgstr "శీర్షికను అమర్చు"
2525  
2526  #~ msgid "Current Locale"
2527  #~ msgstr "ప్రస్తుత స్థానికం"
2528  
2529 -#~ msgid "_Set Title…"
2530 -#~ msgstr "శీర్షికను అమర్చు... (_S)"
2531 +msgid "_Set Title…"
2532 +msgstr "శీర్షికను అమర్చు... (_S)"
2533  
2534  #~ msgid "_Next Tab"
2535  #~ msgstr "తరువాతి ట్యాబ్(_N)"
2536 @@ -2898,8 +2897,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
2537  #~ msgid "Background image _scrolls"
2538  #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
2539  
2540 -#~ msgid "_Transparent background"
2541 -#~ msgstr "పారదర్శక నేపథ్యం (_T)"
2542 +msgid "Transparent background"
2543 +msgstr "పారదర్శక నేపథ్యం"
2544  
2545  #~ msgid "S_hade transparent or image background:"
2546  #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
2547 diff --git a/po/tg.po b/po/tg.po
2548 index e3feef658e1e..6371c036626f 100644
2549 --- a/po/tg.po
2550 +++ b/po/tg.po
2551 @@ -2158,23 +2158,23 @@ msgstr "П_ӯшонидани равзана"
2552  #~ msgid "Default size:"
2553  #~ msgstr "Андозаи пешфарз:"
2554  
2555 -#~ msgid "Title"
2556 -#~ msgstr "Сарлавҳа"
2557 +msgid "Title"
2558 +msgstr "Сарлавҳа"
2559  
2560 -#~ msgid "_Title:"
2561 -#~ msgstr "_Вазифа:"
2562 +msgid "_Title:"
2563 +msgstr "_Вазифа:"
2564  
2565  #~ msgid "Title and Command"
2566  #~ msgstr "Унвон ва Фармон"
2567  
2568 -#~ msgid "Set Title"
2569 -#~ msgstr "Таъин кардани сарлавҳа"
2570 +msgid "Set Title"
2571 +msgstr "Таъин кардани сарлавҳа"
2572  
2573  #~ msgid "Current Locale"
2574  #~ msgstr "Маҳаллигардонии ҷорӣ"
2575  
2576 -#~ msgid "_Set Title…"
2577 -#~ msgstr "_Танзими сарлавҳа..."
2578 +msgid "_Set Title…"
2579 +msgstr "_Танзими сарлавҳа..."
2580  
2581  #~ msgid "_Next Tab"
2582  #~ msgstr "_Варақаи навбатӣ"
2583 diff --git a/po/th.po b/po/th.po
2584 index 63263749655c..496da331bbf9 100644
2585 --- a/po/th.po
2586 +++ b/po/th.po
2587 @@ -2308,23 +2308,23 @@ msgstr "ปิ_ดหน้าต่าง"
2588  #~ msgid "Default size:"
2589  #~ msgstr "ขนาดปริยาย:"
2590  
2591 -#~ msgid "Title"
2592 -#~ msgstr "หัวเรื่อง"
2593 +msgid "Title"
2594 +msgstr "หัวเรื่อง"
2595  
2596 -#~ msgid "_Title:"
2597 -#~ msgstr "_หัวเรื่อง:"
2598 +msgid "_Title:"
2599 +msgstr "_หัวเรื่อง:"
2600  
2601  #~ msgid "Title and Command"
2602  #~ msgstr "หัวเรื่องและคำสั่ง"
2603  
2604 -#~ msgid "Set Title"
2605 -#~ msgstr "ตั้งหัวเรื่อง"
2606 +msgid "Set Title"
2607 +msgstr "ตั้งหัวเรื่อง"
2608  
2609  #~ msgid "Current Locale"
2610  #~ msgstr "ตามโลแคลปัจจุบัน"
2611  
2612 -#~ msgid "_Set Title…"
2613 -#~ msgstr "ตั้งป้าย_ชื่อ…"
2614 +msgid "_Set Title…"
2615 +msgstr "ตั้งป้าย_ชื่อ…"
2616  
2617  #~ msgid "_Next Tab"
2618  #~ msgstr "แท็บ_ถัดไป"
2619 @@ -2803,8 +2803,8 @@ msgstr "ปิ_ดหน้าต่าง"
2620  #~ msgid "_Solid color"
2621  #~ msgstr "สี_ทึบ"
2622  
2623 -#~ msgid "_Transparent background"
2624 -#~ msgstr "พื้นหลังโปร่งแ_สง"
2625 +msgid "Transparent background"
2626 +msgstr "พื้นหลังโปร่งแสง"
2627  
2628  #~ msgid ""
2629  #~ "You already have a profile called “%s”. Do you want to create another "
2630 diff --git a/po/tr.po b/po/tr.po
2631 index fa79334e08dc..5b988d7dbd4a 100644
2632 --- a/po/tr.po
2633 +++ b/po/tr.po
2634 @@ -2558,3 +2558,6 @@ msgstr "_Pencereyi Kapat"
2635  
2636  #~ msgid "_Same as text color"
2637  #~ msgstr "_Metin rengiyle aynı"
2638 +
2639 +msgid "Transparent background"
2640 +msgstr "Şeffaf arkaplan"
2641 diff --git a/po/ug.po b/po/ug.po
2642 index 313f76b98eae..be6089762082 100644
2643 --- a/po/ug.po
2644 +++ b/po/ug.po
2645 @@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
2646  #~ msgid "_Solid color"
2647  #~ msgstr "ساپ رەڭ(_S)"
2648  
2649 -#~ msgid "_Transparent background"
2650 -#~ msgstr "سۈزۈك تەگلىك(_T)"
2651 +msgid "Transparent background"
2652 +msgstr "سۈزۈك تەگلىك"
2653  
2654  #~ msgid ""
2655  #~ "You already have a profile called “%s”. Do you want to create another "
2656 --- gnome-terminal-3.42.0/po/uk.po.orig 2021-09-27 20:52:35.752937690 +0200
2657 +++ gnome-terminal-3.42.0/po/uk.po      2021-09-27 20:54:10.739089772 +0200
2658 @@ -2453,3 +2453,6 @@ msgstr "Закр_ити вікно"
2659  #, c-format
2660  msgid "Failed to parse arguments: %s\n"
2661  msgstr "Не вдається визначити аргументи: %s\n"
2662 +
2663 +msgid "Transparent background"
2664 +msgstr "Прозоре тло"
2665 --- a/po/vi.po
2666 +++ b/po/vi.po
2667 @@ -2673,8 +2673,8 @@ msgstr "Đón_g cửa sổ"
2668  #~ msgid "Default size:"
2669  #~ msgstr "Cỡ mặc định:"
2670  
2671 -#~ msgid "Title"
2672 -#~ msgstr "Tựa đề"
2673 +msgid "Title"
2674 +msgstr "Tựa đề"
2675  
2676  #~ msgid "When terminal commands set their o_wn titles:"
2677  #~ msgstr "Khi câu lệnh thiết bị cuối tự đặt tựa đề _mình:"
2678 @@ -2685,8 +2685,8 @@ msgstr "Đón_g cửa sổ"
2679  #~ msgid "_Unlimited"
2680  #~ msgstr "_Không hạn chế"
2681  
2682 -#~ msgid "Set Title"
2683 -#~ msgstr "Đặt tựa đề"
2684 +msgid "Set Title"
2685 +msgstr "Đặt tựa đề"
2686  
2687  #~ msgid "Switch to Tab 3"
2688  #~ msgstr "Chuyển sang Thanh 3"
2689 @@ -2727,8 +2727,8 @@ msgstr "Đón_g cửa sổ"
2690  #~ msgid "_Input Methods"
2691  #~ msgstr "K_iểu gõ"
2692  
2693 -#~ msgid "_Title:"
2694 -#~ msgstr "_Tựa đề:"
2695 +msgid "_Title:"
2696 +msgstr "_Tựa đề:"
2697  
2698  #~ msgid "Disable connection to session manager"
2699  #~ msgstr "Tắt kết nối đến trình quản lý phiên làm việc"
2700 @@ -3113,3 +3113,6 @@ msgstr "Đón_g cửa sổ"
2701  #~ "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 "
2702  #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị "
2703  #~ "tắt), nghĩa là không có phím tắt cho hành động này."
2704 +
2705 +msgid "Transparent background"
2706 +msgstr "Nền trong suốt"
2707 diff --git a/po/wa.po b/po/wa.po
2708 index 0e0a6a752b6d..5ddeb2393654 100644
2709 --- a/po/wa.po
2710 +++ b/po/wa.po
2711 @@ -224,8 +224,8 @@ msgid "<b>Background</b>"
2712  msgstr "<b>Fond</b>"
2713  
2714  #: ../src/gnome-terminal.glade2.h:3
2715 -msgid "<b>Command</b>"
2716 -msgstr "<b>Comande</b>"
2717 +msgid "Command"
2718 +msgstr "Comande"
2719  
2720  #: ../src/gnome-terminal.glade2.h:4
2721  msgid "<b>Compatibility</b>"
2722 @@ -564,8 +564,8 @@ msgid "_Text color:"
2723  msgstr "Coleur pol _tecse:"
2724  
2725  #: ../src/gnome-terminal.glade2.h:86
2726 -msgid "_Transparent background"
2727 -msgstr "Fond k' on voet _houte"
2728 +msgid "Transparent background"
2729 +msgstr "Fond k' on voet houte"
2730  
2731  #: ../src/gnome-terminal.glade2.h:87
2732  msgid "_Update login records when command is launched"
2733 @@ -2227,8 +2227,8 @@ msgid "Change _Profile"
2734  msgstr "Candjî _profil"
2735  
2736  #: ../src/terminal-window.c:1013
2737 -msgid "_Set Title..."
2738 -msgstr "_Candjî l' tite..."
2739 +msgid "_Set Title…"
2740 +msgstr "_Candjî l' tite…"
2741  
2742  #: ../src/terminal-window.c:1020
2743  msgid "Set _Character Encoding"
2744 diff --git a/po/xh.po b/po/xh.po
2745 index 44a8e21c7842..12aa6d190d99 100644
2746 --- a/po/xh.po
2747 +++ b/po/xh.po
2748 @@ -217,8 +217,8 @@ msgid "<b>Background</b>"
2749  msgstr "<b>Okungasemva</b>"
2750  
2751  #: ../src/gnome-terminal.glade2.h:2
2752 -msgid "<b>Command</b>"
2753 -msgstr "<b>Umyalelo</b>"
2754 +msgid "Command"
2755 +msgstr "Umyalelo"
2756  
2757  #: ../src/gnome-terminal.glade2.h:3
2758  msgid "<b>Compatibility</b>"
2759 @@ -621,8 +621,8 @@ msgid "_Text color:"
2760  msgstr "_Umbala wombhalo:"
2761  
2762  #: ../src/gnome-terminal.glade2.h:102
2763 -msgid "_Transparent background"
2764 -msgstr "_Okungasemva okucace gca"
2765 +msgid "Transparent background"
2766 +msgstr "Okungasemva okucace gca"
2767  
2768  #: ../src/gnome-terminal.glade2.h:103
2769  msgid "_Update login records when command is launched"
2770 @@ -2265,8 +2265,8 @@ msgid "Change _Profile"
2771  msgstr "Tsintsha i_Nkangeleko"
2772  
2773  #: ../src/terminal-window.c:979
2774 -msgid "_Set Title..."
2775 -msgstr "_Misela..."
2776 +msgid "_Set Title…"
2777 +msgstr "_Misela…"
2778  
2779  #: ../src/terminal-window.c:986
2780  msgid "Set _Character Encoding"
2781 diff --git a/po/zh_CN.po b/po/zh_CN.po
2782 index 6c80dcd1231a..51e5f9999176 100644
2783 --- a/po/zh_CN.po
2784 +++ b/po/zh_CN.po
2785 @@ -2580,17 +2580,17 @@ msgstr "关闭窗口(_L)"
2786  #~ msgid "Default size:"
2787  #~ msgstr "默认大小:"
2788  
2789 -#~ msgid "Title"
2790 -#~ msgstr "标题"
2791 +msgid "Title"
2792 +msgstr "标题"
2793  
2794 -#~ msgid "_Title:"
2795 -#~ msgstr "标题(_T):"
2796 +msgid "_Title:"
2797 +msgstr "标题(_T):"
2798  
2799  #~ msgid "Title and Command"
2800  #~ msgstr "标题和命令"
2801  
2802 -#~ msgid "Set Title"
2803 -#~ msgstr "设置标题"
2804 +msgid "Set Title"
2805 +msgstr "设置标题"
2806  
2807  #~ msgid "Current Locale"
2808  #~ msgstr "当前区域"
2809 @@ -2703,3 +2703,6 @@ msgstr "关闭窗口(_L)"
2810  
2811  #~ msgid "_Find..."
2812  #~ msgstr "查找(_F)..."
2813 +
2814 +msgid "Transparent background"
2815 +msgstr "透明背景"
2816 diff --git a/po/zh_HK.po b/po/zh_HK.po
2817 index 61153529f0c7..c366abddd1af 100644
2818 --- a/po/zh_HK.po
2819 +++ b/po/zh_HK.po
2820 @@ -2114,17 +2114,17 @@ msgstr "關閉視窗(_L)"
2821  #~ msgid "Default size:"
2822  #~ msgstr "預設大小:"
2823  
2824 -#~ msgid "Title"
2825 -#~ msgstr "標題"
2826 +msgid "Title"
2827 +msgstr "標題"
2828  
2829 -#~ msgid "_Title:"
2830 -#~ msgstr "標題(_T):"
2831 +msgid "_Title:"
2832 +msgstr "標題(_T):"
2833  
2834  #~ msgid "Title and Command"
2835  #~ msgstr "標題及指令"
2836  
2837 -#~ msgid "Set Title"
2838 -#~ msgstr "設定標題"
2839 +msgid "Set Title"
2840 +msgstr "設定標題"
2841  
2842  #~ msgid "Current Locale"
2843  #~ msgstr "目前的地區設定"
2844 @@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
2845  
2846  #~ msgid "Show session management options"
2847  #~ msgstr "顯示作業階段管理選項"
2848 +
2849 +msgid "Transparent background"
2850 +msgstr "透明背景"
2851 diff --git a/po/zh_TW.po b/po/zh_TW.po
2852 index b9890ad91bdc..18e55e2e945c 100644
2853 --- a/po/zh_TW.po
2854 +++ b/po/zh_TW.po
2855 @@ -2562,17 +2562,17 @@ msgstr "關閉視窗(_L)"
2856  #~ msgid "Default size:"
2857  #~ msgstr "預設大小:"
2858  
2859 -#~ msgid "Title"
2860 -#~ msgstr "標題"
2861 +msgid "Title"
2862 +msgstr "標題"
2863  
2864 -#~ msgid "_Title:"
2865 -#~ msgstr "標題(_T):"
2866 +msgid "_Title:"
2867 +msgstr "標題(_T):"
2868  
2869  #~ msgid "Title and Command"
2870  #~ msgstr "標題及指令"
2871  
2872 -#~ msgid "Set Title"
2873 -#~ msgstr "設定標題"
2874 +msgid "Set Title"
2875 +msgstr "設定標題"
2876  
2877  #~ msgid "Current Locale"
2878  #~ msgstr "目前的地區設定"
2879 @@ -2784,3 +2784,6 @@ msgstr "關閉視窗(_L)"
2880  
2881  #~ msgid "Show session management options"
2882  #~ msgstr "顯示作業階段管理選項"
2883 +
2884 +msgid "Transparent background"
2885 +msgstr "透明背景"
2886 -- 
2887 2.19.1
This page took 0.386365 seconds and 3 git commands to generate.