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