]> git.pld-linux.org Git - packages/gnome-terminal.git/blob - gnome-terminal-transparency.patch
- updated to 3.40.1
[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 --- gnome-terminal-3.40.1/po/ne.po.orig 2021-04-30 13:30:46.000000000 +0200
1916 +++ gnome-terminal-3.40.1/po/ne.po      2021-05-05 22:44:16.302461546 +0200
1917 @@ -2862,8 +2862,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
1918  #~ msgid "_None (use solid color)"
1919  #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
1920  
1921 -#~ msgid "_Transparent background"
1922 -#~ msgstr "पारदर्शी पृष्ठभूमि"
1923 +msgid "Transparent background"
1924 +msgstr "पारदर्शी पृष्ठभूमि"
1925  
1926  #~ msgid "_Use the system fixed width font"
1927  #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
1928 @@ -3524,8 +3524,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
1929  #~ msgid "_Input Methods"
1930  #~ msgstr "आगत विधि"
1931  
1932 -#~ msgid "_Title:"
1933 -#~ msgstr "शीर्षक:"
1934 +msgid "_Title:"
1935 +msgstr "शीर्षक:"
1936  
1937  #~ msgid "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
1938  #~ msgstr "टर्मिनलमा छोडिएको पाठ/सादा गलत ढाँचा (%d) वा लम्बाइ (%d)को थियो\n"
1939 @@ -3560,8 +3560,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
1940  #~ msgid "C_urrent Profile..."
1941  #~ msgstr "हालको प्रोफाइल..."
1942  
1943 -#~ msgid "_Set Title..."
1944 -#~ msgstr "शीर्षक राख्नुहोस्..."
1945 +msgid "Set Title"
1946 +msgstr "शीर्षक सेट गर्नुहोस्"
1947  
1948  #~ msgid "There was an error loading config value for whether to use mnemonics. (%s)\n"
1949  #~ msgstr "निमोनिक प्रयोग गर्न या नगर्नका लागि कन्फिग मान लोड गर्दा त्रुटि भएको थियो । (%s)\n"
1950 diff --git a/po/nl.po b/po/nl.po
1951 index 5f070152cade..560e472f0917 100644
1952 --- a/po/nl.po
1953 +++ b/po/nl.po
1954 @@ -2596,3 +2596,6 @@ msgstr "Venster sl_uiten"
1955  
1956  #~ msgid "_Add or Remove…"
1957  #~ msgstr "_Toevoegen of verwijderen…"
1958 +
1959 +msgid "Title"
1960 +msgstr "Titel"
1961 diff --git a/po/nn.po b/po/nn.po
1962 index 5aa43b113ed9..f892290c256f 100644
1963 --- a/po/nn.po
1964 +++ b/po/nn.po
1965 @@ -1149,8 +1149,8 @@ msgid "_Base on:"
1966  msgstr "_Tuft på:"
1967  
1968  #: ../src/profile-preferences.glade.h:1
1969 -msgid "<b>Command</b>"
1970 -msgstr "<b>Kommando</b>"
1971 +msgid "Command"
1972 +msgstr "Kommando"
1973  
1974  #: ../src/profile-preferences.glade.h:2
1975  msgid "<b>Foreground and Background</b>"
1976 @@ -1429,8 +1429,8 @@ msgid "_Text color:"
1977  msgstr "_Tekstfarge:"
1978  
1979  #: ../src/profile-preferences.glade.h:73
1980 -msgid "_Transparent background"
1981 -msgstr "_Gjennomskinleg bakgrunn"
1982 +msgid "Transparent background"
1983 +msgstr "Gjennomskinleg bakgrunn"
1984  
1985  #: ../src/profile-preferences.glade.h:74
1986  msgid "_Update login records when command is launched"
1987 diff --git a/po/oc.po b/po/oc.po
1988 index 9a6f6186019a..6e51ea2f8980 100644
1989 --- a/po/oc.po
1990 +++ b/po/oc.po
1991 @@ -2944,8 +2944,8 @@ msgstr "Tampar _la fenèstra"
1992  #~ msgid "Save as..."
1993  #~ msgstr "Enregistrar jos..."
1994  
1995 -#~ msgid "_Title:"
1996 -#~ msgstr "_Títol :"
1997 +msgid "_Title:"
1998 +msgstr "_Títol :"
1999  
2000  #~ msgid "_Detach tab"
2001  #~ msgstr "Des_tacar l'onglet"
2002 @@ -3405,8 +3405,8 @@ msgstr "Tampar _la fenèstra"
2003  #~ msgid "_Use the system fixed width font"
2004  #~ msgstr "_Utilizar la poliça de chassa fixa del sistèma"
2005  
2006 -#~ msgid "Set Title"
2007 -#~ msgstr "Definir lo títol"
2008 +msgid "Set Title"
2009 +msgstr "Definir lo títol"
2010  
2011  #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
2012  #~ msgstr "L'acorchi de clavièr « %s » es ja atribuit a l'accion « %s »"
2013 @@ -3723,8 +3723,8 @@ msgstr "Tampar _la fenèstra"
2014  #~ msgid "Run;"
2015  #~ msgstr "Executar;Consòla;Shell;"
2016  
2017 -#~ msgid "_Transparent background"
2018 -#~ msgstr "Rèireplan _transparent"
2019 +msgid "Transparent background"
2020 +msgstr "Rèireplan transparent"
2021  
2022  #~ msgid ""
2023  #~ "A subset of possible encodings are presented in the Encoding submenu. "
2024 diff --git a/po/or.po b/po/or.po
2025 index ec1e6bfb9a28..218acd712df6 100644
2026 --- a/po/or.po
2027 +++ b/po/or.po
2028 @@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
2029  #~ msgid "Background image _scrolls"
2030  #~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)"
2031  
2032 -#~ msgid "_Transparent background"
2033 -#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)"
2034 +msgid "Transparent background"
2035 +msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି"
2036  
2037  #~ msgid "S_hade transparent or image background:"
2038  #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
2039 diff --git a/po/pa.po b/po/pa.po
2040 index 1cb4b46dc2aa..2bdd01fecaab 100644
2041 --- a/po/pa.po
2042 +++ b/po/pa.po
2043 @@ -2718,10 +2718,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2044  #~ msgid "GNOME Terminal Client"
2045  #~ msgstr "ਗਨੋਮ ਟਰਮੀਨਲ ਕਲਾਇਟ"
2046  
2047 -#~| msgid "Terminal"
2048 -#~ msgctxt "title"
2049 -#~ msgid "'Terminal'"
2050 -#~ msgstr "'ਟਰਮੀਨਲ'"
2051 +msgctxt "title"
2052 +msgid "'Terminal'"
2053 +msgstr "'ਟਰਮੀਨਲ'"
2054  
2055  #~ msgid "Title for terminal"
2056  #~ msgstr "ਟਰਮੀਨਲ ਲਈ ਟਾਈਟਲ"
2057 @@ -2766,11 +2765,11 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2058  #~ msgid "Default size:"
2059  #~ msgstr "ਡਿਫਾਲਟ ਸਾਈਜ਼:"
2060  
2061 -#~ msgid "Title"
2062 -#~ msgstr "ਟਾਈਟਲ"
2063 +msgid "Title"
2064 +msgstr "ਟਾਈਟਲ"
2065  
2066 -#~ msgid "_Title:"
2067 -#~ msgstr "ਟਾਈਟਲ(_T):"
2068 +msgid "_Title:"
2069 +msgstr "ਟਾਈਟਲ(_T):"
2070  
2071  #~ msgid "Title and Command"
2072  #~ msgstr "ਟਾਈਟਲ ਅਤੇ ਕਮਾਂਡ"
2073 @@ -2778,8 +2777,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2074  #~ msgid "_Unlimited"
2075  #~ msgstr "ਬੇਅੰਤ(_U)"
2076  
2077 -#~ msgid "Set Title"
2078 -#~ msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
2079 +msgid "Set Title"
2080 +msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
2081  
2082  #~ msgid "Current Locale"
2083  #~ msgstr "ਮੌਜੂਦ ਲੋਕੇਲ"
2084 @@ -3559,8 +3558,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2085  #~ msgid "_Solid color"
2086  #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
2087  
2088 -#~ msgid "_Transparent background"
2089 -#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)"
2090 +msgid "Transparent background"
2091 +msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ"
2092  
2093  #~ msgid "S/Key Challenge Response"
2094  #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
2095 diff --git a/po/ps.po b/po/ps.po
2096 index b25a2cb41712..3855b2f3423f 100644
2097 --- a/po/ps.po
2098 +++ b/po/ps.po
2099 @@ -810,8 +810,8 @@ msgid "_Base on:"
2100  msgstr ":پر بنسټ د_"
2101  
2102  #: ../src/profile-preferences.glade.h:1
2103 -msgid "<b>Command</b>"
2104 -msgstr "<b>بولۍ</b>"
2105 +msgid "Command"
2106 +msgstr "بولۍ"
2107  
2108  #: ../src/profile-preferences.glade.h:2
2109  msgid "<b>Foreground and Background</b>"
2110 @@ -1053,8 +1053,8 @@ msgid "_Text color:"
2111  msgstr ":د ليکنې رنګ_"
2112  
2113  #: ../src/profile-preferences.glade.h:69
2114 -msgid "_Transparent background"
2115 -msgstr "روڼ شاليد_"
2116 +msgid "Transparent background"
2117 +msgstr "روڼ شاليد"
2118  
2119  #: ../src/profile-preferences.glade.h:70
2120  msgid "_Update login records when command is launched"
2121 diff --git a/po/pt.po b/po/pt.po
2122 index 5181419ad973..3df37f6d5bc7 100644
2123 --- a/po/pt.po
2124 +++ b/po/pt.po
2125 @@ -2360,11 +2360,11 @@ msgstr "Fechar jane_la"
2126  #~ msgid "Default size:"
2127  #~ msgstr "Tamanho predefinido:"
2128  
2129 -#~ msgid "Title"
2130 -#~ msgstr "Título"
2131 +msgid "Title"
2132 +msgstr "Título"
2133  
2134 -#~ msgid "_Title:"
2135 -#~ msgstr "_Título:"
2136 +msgid "_Title:"
2137 +msgstr "_Título:"
2138  
2139  #~ msgid "Title and Command"
2140  #~ msgstr "Título e comando"
2141 @@ -2372,8 +2372,8 @@ msgstr "Fechar jane_la"
2142  #~ msgid "_Unlimited"
2143  #~ msgstr "_Ilimitado"
2144  
2145 -#~ msgid "Set Title"
2146 -#~ msgstr "Definir o Título"
2147 +msgid "Set Title"
2148 +msgstr "Definir o Título"
2149  
2150  #~ msgid "Current Locale"
2151  #~ msgstr "Configuração Regional Atual"
2152 @@ -3160,8 +3160,8 @@ msgstr "Fechar jane_la"
2153  #~ msgid "Background image _scrolls"
2154  #~ msgstr "Imagem de fundo _rola"
2155  
2156 -#~ msgid "_Transparent background"
2157 -#~ msgstr "Fundo _transparente"
2158 +msgid "Transparent background"
2159 +msgstr "Fundo transparente"
2160  
2161  #~ msgid "S_hade transparent or image background:"
2162  #~ msgstr "Transparente som_breado ou imagem de fundo:"
2163 diff --git a/po/pt_BR.po b/po/pt_BR.po
2164 index c40dba26b08a..9be7eec414e9 100644
2165 --- a/po/pt_BR.po
2166 +++ b/po/pt_BR.po
2167 @@ -2687,17 +2687,17 @@ msgstr "_Fechar janela"
2168  #~ msgid "Default size:"
2169  #~ msgstr "Tamanho padrão:"
2170  
2171 -#~ msgid "Title"
2172 -#~ msgstr "Título"
2173 +msgid "Title"
2174 +msgstr "Título"
2175  
2176 -#~ msgid "_Title:"
2177 -#~ msgstr "_Título:"
2178 +msgid "_Title:"
2179 +msgstr "_Título:"
2180  
2181  #~ msgid "Title and Command"
2182  #~ msgstr "Título e comando"
2183  
2184 -#~ msgid "Set Title"
2185 -#~ msgstr "Definir título"
2186 +msgid "Set Title"
2187 +msgstr "Definir título"
2188  
2189  #~ msgid "Current Locale"
2190  #~ msgstr "Codificação atual"
2191 @@ -3323,3 +3323,6 @@ msgstr "_Fechar janela"
2192  #~ "terminal poderão usar. Essa é a paleta, na forma de uma lista de nomes de "
2193  #~ "cores separada por dois pontos. Os nomes de cores devem estar no formato "
2194  #~ "hexadecimal. Exemplo: \"#FF00FF\""
2195 +
2196 +msgid "Transparent background"
2197 +msgstr "Fundo transparente"
2198 diff --git a/po/ro.po b/po/ro.po
2199 index 53dd72be9c45..d694adf36934 100644
2200 --- a/po/ro.po
2201 +++ b/po/ro.po
2202 @@ -3412,8 +3412,8 @@ msgstr "Î_nchide fereastra"
2203  #~ msgid "_Solid color"
2204  #~ msgstr "Culoare _solidă"
2205  
2206 -#~ msgid "_Transparent background"
2207 -#~ msgstr "Fundal _transparent"
2208 +msgid "Transparent background"
2209 +msgstr "Fundal transparent"
2210  
2211  #~ msgid "_Unlimited"
2212  #~ msgstr "_Neliminat"
2213 diff --git a/po/ru.po b/po/ru.po
2214 index fedc4d3ec51c..c08bffcb4d10 100644
2215 --- a/po/ru.po
2216 +++ b/po/ru.po
2217 @@ -2539,3 +2539,6 @@ msgstr "_Закрыть окно"
2218  
2219  #~ msgid "_Add or Remove…"
2220  #~ msgstr "_Добавить или удалить…"
2221 +
2222 +msgid "Transparent background"
2223 +msgstr "Прозрачный фон"
2224 diff --git a/po/rw.po b/po/rw.po
2225 index 012f64e325c3..5ff633f8b3c2 100644
2226 --- a/po/rw.po
2227 +++ b/po/rw.po
2228 @@ -749,7 +749,7 @@ msgstr "Ibara ry'Inyandiko..."
2229  
2230  #: ../src/gnome-terminal.glade2.h:102
2231  #, fuzzy
2232 -msgid "_Transparent background"
2233 +msgid "Transparent background"
2234  msgstr "Mbuganyuma"
2235  
2236  #: ../src/gnome-terminal.glade2.h:103
2237 @@ -2398,7 +2398,6 @@ msgstr ""
2238  
2239  # sch/source\ui\app\menu.src:RID_MENU.WORKAROUND_22.SID_INSERT_TITLE.text
2240  #: ../src/terminal-screen.c:2005
2241 -#, fuzzy
2242  msgid "_Title:"
2243  msgstr "Umutwe..."
2244  
2245 diff --git a/po/si.po b/po/si.po
2246 index adca7d5acba9..6379cee7f0a3 100644
2247 --- a/po/si.po
2248 +++ b/po/si.po
2249 @@ -218,8 +218,8 @@ msgid "<b>Background</b>"
2250  msgstr "<b>පසුබිම</b>"
2251  
2252  #: ../src/gnome-terminal.glade2.h:3
2253 -msgid "<b>Command</b>"
2254 -msgstr "<b>විධානය</b>"
2255 +msgid "Command"
2256 +msgstr "විධානය"
2257  
2258  #: ../src/gnome-terminal.glade2.h:4
2259  msgid "<b>Compatibility</b>"
2260 @@ -538,8 +538,8 @@ msgid "_Text color:"
2261  msgstr "පෙළ වර්‍ණ: (_T)"
2262  
2263  #: ../src/gnome-terminal.glade2.h:86
2264 -msgid "_Transparent background"
2265 -msgstr "විනිවිද පෙනෙන පසුබිම (_T)"
2266 +msgid "Transparent background"
2267 +msgstr "විනිවිද පෙනෙන පසුබිම"
2268  
2269  #: ../src/gnome-terminal.glade2.h:87
2270  msgid "_Update login records when command is launched"
2271 diff --git a/po/sk.po b/po/sk.po
2272 index d0282159b459..01dd96a06939 100644
2273 --- a/po/sk.po
2274 +++ b/po/sk.po
2275 @@ -2916,3 +2916,6 @@ msgstr "_Zavrieť okno"
2276  #~ "\n"
2277  #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
2278  #~ "help“.\n"
2279 +
2280 +msgid "Transparent background"
2281 +msgstr "Priehľadné pozadie"
2282 diff --git a/po/sl.po b/po/sl.po
2283 index db9cb98834fe..261abe9c1e64 100644
2284 --- a/po/sl.po
2285 +++ b/po/sl.po
2286 @@ -2663,17 +2663,17 @@ msgstr "_Zapri okno"
2287  #~ msgid "Default size:"
2288  #~ msgstr "Privzeta velikost:"
2289  
2290 -#~ msgid "Title"
2291 -#~ msgstr "Naslov"
2292 +msgid "Title"
2293 +msgstr "Naslov"
2294  
2295 -#~ msgid "_Title:"
2296 -#~ msgstr "_Naziv:"
2297 +msgid "_Title:"
2298 +msgstr "_Naziv:"
2299  
2300  #~ msgid "Title and Command"
2301  #~ msgstr "Naziv in ukaz"
2302  
2303 -#~ msgid "Set Title"
2304 -#~ msgstr "Določitev naziva okna"
2305 +msgid "Set Title"
2306 +msgstr "Določitev naziva okna"
2307  
2308  #~ msgid "Current Locale"
2309  #~ msgstr "Trenutne jezikovne nastavitve"
2310 @@ -2788,3 +2788,6 @@ msgstr "_Zapri okno"
2311  
2312  #~ msgid "_Profile Preferences…"
2313  #~ msgstr "Možnosti _profila ..."
2314 +
2315 +msgid "Transparent background"
2316 +msgstr "Prosojno ozadje"
2317 diff --git a/po/sq.po b/po/sq.po
2318 index 158f6cb167cc..a3494fb70bd6 100644
2319 --- a/po/sq.po
2320 +++ b/po/sq.po
2321 @@ -225,8 +225,8 @@ msgid "<b>Background</b>"
2322  msgstr "<b>Sfondi</b>"
2323  
2324  #: ../src/gnome-terminal.glade2.h:3
2325 -msgid "<b>Command</b>"
2326 -msgstr "<b>Komanda</b>"
2327 +msgid "Command"
2328 +msgstr "Komanda"
2329  
2330  #: ../src/gnome-terminal.glade2.h:4
2331  msgid "<b>Compatibility</b>"
2332 @@ -568,8 +568,8 @@ msgstr "Ngjyra e _tekstit:"
2333  
2334  # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
2335  #: ../src/gnome-terminal.glade2.h:85
2336 -msgid "_Transparent background"
2337 -msgstr "Sfond _Trasparent"
2338 +msgid "Transparent background"
2339 +msgstr "Sfond Trasparent"
2340  
2341  #: ../src/gnome-terminal.glade2.h:86
2342  msgid "_Update login records when command is launched"
2343 diff --git a/po/sr.po b/po/sr.po
2344 index 8bf15f3250a4..81a73722c616 100644
2345 --- a/po/sr.po
2346 +++ b/po/sr.po
2347 @@ -2576,10 +2576,9 @@ msgstr "_Затвори прозор"
2348  #~ msgid "GNOME Terminal Client"
2349  #~ msgstr "Клијент Гномовог терминала"
2350  
2351 -#~| msgid "Terminal"
2352 -#~ msgctxt "title"
2353 -#~ msgid "'Terminal'"
2354 -#~ msgstr "„Терминал“"
2355 +msgctxt "title"
2356 +msgid "'Terminal'"
2357 +msgstr "„Терминал“"
2358  
2359  #~ msgid "Title for terminal"
2360  #~ msgstr "Наслов за терминал"
2361 @@ -2625,11 +2624,11 @@ msgstr "_Затвори прозор"
2362  #~ msgid "Default size:"
2363  #~ msgstr "Основна величина:"
2364  
2365 -#~ msgid "Title"
2366 -#~ msgstr "Наслов"
2367 +msgid "Title"
2368 +msgstr "Наслов"
2369  
2370 -#~ msgid "_Title:"
2371 -#~ msgstr "_Наслов:"
2372 +msgid "_Title:"
2373 +msgstr "_Наслов:"
2374  
2375  #~ msgid "Title and Command"
2376  #~ msgstr "Наслов и наредба"
2377 @@ -2637,8 +2636,8 @@ msgstr "_Затвори прозор"
2378  #~ msgid "_Unlimited"
2379  #~ msgstr "_Неограничено"
2380  
2381 -#~ msgid "Set Title"
2382 -#~ msgstr "Постави наслов"
2383 +msgid "Set Title"
2384 +msgstr "Постави наслов"
2385  
2386  #~ msgid "Current Locale"
2387  #~ msgstr "Текући локалитет"
2388 @@ -2648,3 +2647,6 @@ msgstr "_Затвори прозор"
2389  
2390  #~ msgid "Hidden"
2391  #~ msgstr "Скривен"
2392 +
2393 +msgid "Transparent background"
2394 +msgstr "Провидна позадина"
2395 diff --git a/po/sr@latin.po b/po/sr@latin.po
2396 index 45dbad07fba7..852c47cc6ee5 100644
2397 --- a/po/sr@latin.po
2398 +++ b/po/sr@latin.po
2399 @@ -2576,10 +2576,9 @@ msgstr "_Zatvori prozor"
2400  #~ msgid "GNOME Terminal Client"
2401  #~ msgstr "Klijent Gnomovog terminala"
2402  
2403 -#~| msgid "Terminal"
2404 -#~ msgctxt "title"
2405 -#~ msgid "'Terminal'"
2406 -#~ msgstr "„Terminal“"
2407 +msgctxt "title"
2408 +msgid "'Terminal'"
2409 +msgstr "„Terminal“"
2410  
2411  #~ msgid "Title for terminal"
2412  #~ msgstr "Naslov za terminal"
2413 @@ -2625,11 +2624,11 @@ msgstr "_Zatvori prozor"
2414  #~ msgid "Default size:"
2415  #~ msgstr "Osnovna veličina:"
2416  
2417 -#~ msgid "Title"
2418 -#~ msgstr "Naslov"
2419 +msgid "Title"
2420 +msgstr "Naslov"
2421  
2422 -#~ msgid "_Title:"
2423 -#~ msgstr "_Naslov:"
2424 +msgid "_Title:"
2425 +msgstr "_Naslov:"
2426  
2427  #~ msgid "Title and Command"
2428  #~ msgstr "Naslov i naredba"
2429 @@ -2637,8 +2636,8 @@ msgstr "_Zatvori prozor"
2430  #~ msgid "_Unlimited"
2431  #~ msgstr "_Neograničeno"
2432  
2433 -#~ msgid "Set Title"
2434 -#~ msgstr "Postavi naslov"
2435 +msgid "Set Title"
2436 +msgstr "Postavi naslov"
2437  
2438  #~ msgid "Current Locale"
2439  #~ msgstr "Tekući lokalitet"
2440 @@ -2648,3 +2647,6 @@ msgstr "_Zatvori prozor"
2441  
2442  #~ msgid "Hidden"
2443  #~ msgstr "Skriven"
2444 +
2445 +msgid "Transparent background"
2446 +msgstr "Providna pozadina"
2447 diff --git a/po/sv.po b/po/sv.po
2448 index 8560fde55941..bd1030f519ab 100644
2449 --- a/po/sv.po
2450 +++ b/po/sv.po
2451 @@ -2572,5 +2572,8 @@ msgstr "Stän_g fönster"
2452  #~ msgid "Unknown completion request for \"%s\""
2453  #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
2454  
2455 +msgid "Transparent background"
2456 +msgstr "Genomskinlig bakgrund"
2457 +
2458  #~ msgid "Missing command"
2459  #~ msgstr "Kommando saknas"
2460 diff --git a/po/ta.po b/po/ta.po
2461 index 80aa2f684eec..afd335b0faf0 100644
2462 --- a/po/ta.po
2463 +++ b/po/ta.po
2464 @@ -2171,10 +2171,9 @@ msgstr "_l சாளரத்தை மூடவும்"
2465  #~ msgid "Show server options"
2466  #~ msgstr "சேவையக தேர்வுகளை காட்டுக"
2467  
2468 -#~| msgid "Terminal"
2469 -#~ msgctxt "title"
2470 -#~ msgid "'Terminal'"
2471 -#~ msgstr "'முனையம்'"
2472 +msgctxt "title"
2473 +msgid "'Terminal'"
2474 +msgstr "'முனையம்'"
2475  
2476  #~ msgid "Title for terminal"
2477  #~ msgstr "முனையத்தின் தலைப்பு"
2478 @@ -2221,11 +2220,11 @@ msgstr "_l சாளரத்தை மூடவும்"
2479  #~ msgid "Default size:"
2480  #~ msgstr "முன்னிருப்பு அளவு:"
2481  
2482 -#~ msgid "Title"
2483 -#~ msgstr "தலைப்பு"
2484 +msgid "Title"
2485 +msgstr "தலைப்பு"
2486  
2487 -#~ msgid "_Title:"
2488 -#~ msgstr "_T தலைப்பு:"
2489 +msgid "_Title:"
2490 +msgstr "_T தலைப்பு:"
2491  
2492  #~ msgid "Title and Command"
2493  #~ msgstr "தலைப்பும் கட்டளையும்"
2494 @@ -2233,8 +2232,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2495  #~ msgid "_Unlimited"
2496  #~ msgstr "_U வரையரை இல்லாத"
2497  
2498 -#~ msgid "Set Title"
2499 -#~ msgstr "தலைப்பை அமைக்க"
2500 +msgid "Set Title"
2501 +msgstr "தலைப்பை அமைக்க"
2502  
2503  #~| msgid "_Terminal"
2504  #~ msgid "_About Terminal"
2505 @@ -2243,8 +2242,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2506  #~ msgid "Current Locale"
2507  #~ msgstr "தற்போதைய மொழி"
2508  
2509 -#~ msgid "_Set Title…"
2510 -#~ msgstr "(_S) தலைப்பை அமைக்க..."
2511 +msgid "_Set Title…"
2512 +msgstr "(_S) தலைப்பை அமைக்க..."
2513  
2514  #~ msgid "_Next Tab"
2515  #~ msgstr "அடுத்த கீற்று (_N)"
2516 @@ -3028,8 +3027,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2517  #~ msgid "_Solid color"
2518  #~ msgstr "(_S) ஒரே வண்ணம்"
2519  
2520 -#~ msgid "_Transparent background"
2521 -#~ msgstr "_T புலப்பாடு பின்னணி"
2522 +msgid "Transparent background"
2523 +msgstr "புலப்பாடு பின்னணி"
2524  
2525  #~ msgid "No such profile \"%s\", using default profile\n"
2526  #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
2527 diff --git a/po/te.po b/po/te.po
2528 index 82c0e0fc8f54..0dd3d871f639 100644
2529 --- a/po/te.po
2530 +++ b/po/te.po
2531 @@ -2055,10 +2055,9 @@ msgstr "కిటికీని మూసివేయి (_l)"
2532  #~ msgid "Show server options"
2533  #~ msgstr "సేవకము ఐచ్చికాలను చూపించు"
2534  
2535 -#, fuzzy
2536 -#~ msgctxt "title"
2537 -#~ msgid "'Terminal'"
2538 -#~ msgstr "టెర్మినల్"
2539 +msgctxt "title"
2540 +msgid "'Terminal'"
2541 +msgstr "టెర్మినల్"
2542  
2543  #~ msgid "Title for terminal"
2544  #~ msgstr "టెర్మినల్ కు శీర్షిక"
2545 @@ -2104,11 +2103,11 @@ msgstr "కిటికీని మూసివేయి (_l)"
2546  #~ msgid "Default size:"
2547  #~ msgstr "అప్రమేయ పరిమాణం:"
2548  
2549 -#~ msgid "Title"
2550 -#~ msgstr "శీర్షిక:"
2551 +msgid "Title"
2552 +msgstr "శీర్షిక:"
2553  
2554 -#~ msgid "_Title:"
2555 -#~ msgstr "శీర్షిక (_T):"
2556 +msgid "_Title:"
2557 +msgstr "శీర్షిక (_T):"
2558  
2559  #~ msgid "Title and Command"
2560  #~ msgstr "శీర్షిక మరియు ఆదేశం"
2561 @@ -2116,14 +2115,14 @@ msgstr "కిటికీని మూసివేయి (_l)"
2562  #~ msgid "_Unlimited"
2563  #~ msgstr "అపరిమితమైన (_U)"
2564  
2565 -#~ msgid "Set Title"
2566 -#~ msgstr "శీర్షికను అమర్చు"
2567 +msgid "Set Title"
2568 +msgstr "శీర్షికను అమర్చు"
2569  
2570  #~ msgid "Current Locale"
2571  #~ msgstr "ప్రస్తుత స్థానికం"
2572  
2573 -#~ msgid "_Set Title…"
2574 -#~ msgstr "శీర్షికను అమర్చు... (_S)"
2575 +msgid "_Set Title…"
2576 +msgstr "శీర్షికను అమర్చు... (_S)"
2577  
2578  #~ msgid "_Next Tab"
2579  #~ msgstr "తరువాతి ట్యాబ్(_N)"
2580 @@ -2898,8 +2897,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
2581  #~ msgid "Background image _scrolls"
2582  #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
2583  
2584 -#~ msgid "_Transparent background"
2585 -#~ msgstr "పారదర్శక నేపథ్యం (_T)"
2586 +msgid "Transparent background"
2587 +msgstr "పారదర్శక నేపథ్యం"
2588  
2589  #~ msgid "S_hade transparent or image background:"
2590  #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
2591 diff --git a/po/tg.po b/po/tg.po
2592 index e3feef658e1e..6371c036626f 100644
2593 --- a/po/tg.po
2594 +++ b/po/tg.po
2595 @@ -2158,23 +2158,23 @@ msgstr "П_ӯшонидани равзана"
2596  #~ msgid "Default size:"
2597  #~ msgstr "Андозаи пешфарз:"
2598  
2599 -#~ msgid "Title"
2600 -#~ msgstr "Сарлавҳа"
2601 +msgid "Title"
2602 +msgstr "Сарлавҳа"
2603  
2604 -#~ msgid "_Title:"
2605 -#~ msgstr "_Вазифа:"
2606 +msgid "_Title:"
2607 +msgstr "_Вазифа:"
2608  
2609  #~ msgid "Title and Command"
2610  #~ msgstr "Унвон ва Фармон"
2611  
2612 -#~ msgid "Set Title"
2613 -#~ msgstr "Таъин кардани сарлавҳа"
2614 +msgid "Set Title"
2615 +msgstr "Таъин кардани сарлавҳа"
2616  
2617  #~ msgid "Current Locale"
2618  #~ msgstr "Маҳаллигардонии ҷорӣ"
2619  
2620 -#~ msgid "_Set Title…"
2621 -#~ msgstr "_Танзими сарлавҳа..."
2622 +msgid "_Set Title…"
2623 +msgstr "_Танзими сарлавҳа..."
2624  
2625  #~ msgid "_Next Tab"
2626  #~ msgstr "_Варақаи навбатӣ"
2627 diff --git a/po/th.po b/po/th.po
2628 index 63263749655c..496da331bbf9 100644
2629 --- a/po/th.po
2630 +++ b/po/th.po
2631 @@ -2308,23 +2308,23 @@ msgstr "ปิ_ดหน้าต่าง"
2632  #~ msgid "Default size:"
2633  #~ msgstr "ขนาดปริยาย:"
2634  
2635 -#~ msgid "Title"
2636 -#~ msgstr "หัวเรื่อง"
2637 +msgid "Title"
2638 +msgstr "หัวเรื่อง"
2639  
2640 -#~ msgid "_Title:"
2641 -#~ msgstr "_หัวเรื่อง:"
2642 +msgid "_Title:"
2643 +msgstr "_หัวเรื่อง:"
2644  
2645  #~ msgid "Title and Command"
2646  #~ msgstr "หัวเรื่องและคำสั่ง"
2647  
2648 -#~ msgid "Set Title"
2649 -#~ msgstr "ตั้งหัวเรื่อง"
2650 +msgid "Set Title"
2651 +msgstr "ตั้งหัวเรื่อง"
2652  
2653  #~ msgid "Current Locale"
2654  #~ msgstr "ตามโลแคลปัจจุบัน"
2655  
2656 -#~ msgid "_Set Title…"
2657 -#~ msgstr "ตั้งป้าย_ชื่อ…"
2658 +msgid "_Set Title…"
2659 +msgstr "ตั้งป้าย_ชื่อ…"
2660  
2661  #~ msgid "_Next Tab"
2662  #~ msgstr "แท็บ_ถัดไป"
2663 @@ -2803,8 +2803,8 @@ msgstr "ปิ_ดหน้าต่าง"
2664  #~ msgid "_Solid color"
2665  #~ msgstr "สี_ทึบ"
2666  
2667 -#~ msgid "_Transparent background"
2668 -#~ msgstr "พื้นหลังโปร่งแ_สง"
2669 +msgid "Transparent background"
2670 +msgstr "พื้นหลังโปร่งแสง"
2671  
2672  #~ msgid ""
2673  #~ "You already have a profile called “%s”. Do you want to create another "
2674 diff --git a/po/tr.po b/po/tr.po
2675 index fa79334e08dc..5b988d7dbd4a 100644
2676 --- a/po/tr.po
2677 +++ b/po/tr.po
2678 @@ -2558,3 +2558,6 @@ msgstr "_Pencereyi Kapat"
2679  
2680  #~ msgid "_Same as text color"
2681  #~ msgstr "_Metin rengiyle aynı"
2682 +
2683 +msgid "Transparent background"
2684 +msgstr "Şeffaf arkaplan"
2685 diff --git a/po/ug.po b/po/ug.po
2686 index 313f76b98eae..be6089762082 100644
2687 --- a/po/ug.po
2688 +++ b/po/ug.po
2689 @@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
2690  #~ msgid "_Solid color"
2691  #~ msgstr "ساپ رەڭ(_S)"
2692  
2693 -#~ msgid "_Transparent background"
2694 -#~ msgstr "سۈزۈك تەگلىك(_T)"
2695 +msgid "Transparent background"
2696 +msgstr "سۈزۈك تەگلىك"
2697  
2698  #~ msgid ""
2699  #~ "You already have a profile called “%s”. Do you want to create another "
2700 --- gnome-terminal-3.40.0/po/uk.po.orig 2021-04-17 12:13:49.869425706 +0200
2701 +++ gnome-terminal-3.40.0/po/uk.po      2021-04-17 12:17:37.387909749 +0200
2702 @@ -2431,3 +2431,6 @@ msgstr ""
2703  #: src/terminal-window.c:3242
2704  msgid "C_lose Window"
2705  msgstr "Закр_ити вікно"
2706 +
2707 +msgid "Transparent background"
2708 +msgstr "Прозоре тло"
2709 diff --git a/po/vi.po b/po/vi.po
2710 index 67eb9326545f..5a279ad647b6 100644
2711 --- a/po/vi.po
2712 +++ b/po/vi.po
2713 @@ -2673,8 +2673,8 @@ msgstr "Đón_g cửa sổ"
2714  #~ msgid "Default size:"
2715  #~ msgstr "Cỡ mặc định:"
2716  
2717 -#~ msgid "Title"
2718 -#~ msgstr "Tựa đề"
2719 +msgid "Title"
2720 +msgstr "Tựa đề"
2721  
2722  #~ msgid "When terminal commands set their o_wn titles:"
2723  #~ msgstr "Khi câu lệnh thiết bị cuối tự đặt tựa đề _mình:"
2724 @@ -2685,8 +2685,8 @@ msgstr "Đón_g cửa sổ"
2725  #~ msgid "_Unlimited"
2726  #~ msgstr "_Không hạn chế"
2727  
2728 -#~ msgid "Set Title"
2729 -#~ msgstr "Đặt tựa đề"
2730 +msgid "Set Title"
2731 +msgstr "Đặt tựa đề"
2732  
2733  #~ msgid "Switch to Tab 3"
2734  #~ msgstr "Chuyển sang Thanh 3"
2735 @@ -2727,8 +2727,8 @@ msgstr "Đón_g cửa sổ"
2736  #~ msgid "_Input Methods"
2737  #~ msgstr "K_iểu gõ"
2738  
2739 -#~ msgid "_Title:"
2740 -#~ msgstr "_Tựa đề:"
2741 +msgid "_Title:"
2742 +msgstr "_Tựa đề:"
2743  
2744  #~ msgid "Disable connection to session manager"
2745  #~ msgstr "Tắt kết nối đến trình quản lý phiên làm việc"
2746 @@ -3113,3 +3113,6 @@ msgstr "Đón_g cửa sổ"
2747  #~ "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 "
2748  #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị "
2749  #~ "tắt), nghĩa là không có phím tắt cho hành động này."
2750 +
2751 +msgid "Transparent background"
2752 +msgstr "Nền trong suốt"
2753 diff --git a/po/wa.po b/po/wa.po
2754 index 0e0a6a752b6d..5ddeb2393654 100644
2755 --- a/po/wa.po
2756 +++ b/po/wa.po
2757 @@ -224,8 +224,8 @@ msgid "<b>Background</b>"
2758  msgstr "<b>Fond</b>"
2759  
2760  #: ../src/gnome-terminal.glade2.h:3
2761 -msgid "<b>Command</b>"
2762 -msgstr "<b>Comande</b>"
2763 +msgid "Command"
2764 +msgstr "Comande"
2765  
2766  #: ../src/gnome-terminal.glade2.h:4
2767  msgid "<b>Compatibility</b>"
2768 @@ -564,8 +564,8 @@ msgid "_Text color:"
2769  msgstr "Coleur pol _tecse:"
2770  
2771  #: ../src/gnome-terminal.glade2.h:86
2772 -msgid "_Transparent background"
2773 -msgstr "Fond k' on voet _houte"
2774 +msgid "Transparent background"
2775 +msgstr "Fond k' on voet houte"
2776  
2777  #: ../src/gnome-terminal.glade2.h:87
2778  msgid "_Update login records when command is launched"
2779 @@ -2227,8 +2227,8 @@ msgid "Change _Profile"
2780  msgstr "Candjî _profil"
2781  
2782  #: ../src/terminal-window.c:1013
2783 -msgid "_Set Title..."
2784 -msgstr "_Candjî l' tite..."
2785 +msgid "_Set Title…"
2786 +msgstr "_Candjî l' tite…"
2787  
2788  #: ../src/terminal-window.c:1020
2789  msgid "Set _Character Encoding"
2790 diff --git a/po/xh.po b/po/xh.po
2791 index 44a8e21c7842..12aa6d190d99 100644
2792 --- a/po/xh.po
2793 +++ b/po/xh.po
2794 @@ -217,8 +217,8 @@ msgid "<b>Background</b>"
2795  msgstr "<b>Okungasemva</b>"
2796  
2797  #: ../src/gnome-terminal.glade2.h:2
2798 -msgid "<b>Command</b>"
2799 -msgstr "<b>Umyalelo</b>"
2800 +msgid "Command"
2801 +msgstr "Umyalelo"
2802  
2803  #: ../src/gnome-terminal.glade2.h:3
2804  msgid "<b>Compatibility</b>"
2805 @@ -621,8 +621,8 @@ msgid "_Text color:"
2806  msgstr "_Umbala wombhalo:"
2807  
2808  #: ../src/gnome-terminal.glade2.h:102
2809 -msgid "_Transparent background"
2810 -msgstr "_Okungasemva okucace gca"
2811 +msgid "Transparent background"
2812 +msgstr "Okungasemva okucace gca"
2813  
2814  #: ../src/gnome-terminal.glade2.h:103
2815  msgid "_Update login records when command is launched"
2816 @@ -2265,8 +2265,8 @@ msgid "Change _Profile"
2817  msgstr "Tsintsha i_Nkangeleko"
2818  
2819  #: ../src/terminal-window.c:979
2820 -msgid "_Set Title..."
2821 -msgstr "_Misela..."
2822 +msgid "_Set Title…"
2823 +msgstr "_Misela…"
2824  
2825  #: ../src/terminal-window.c:986
2826  msgid "Set _Character Encoding"
2827 diff --git a/po/zh_CN.po b/po/zh_CN.po
2828 index 6c80dcd1231a..51e5f9999176 100644
2829 --- a/po/zh_CN.po
2830 +++ b/po/zh_CN.po
2831 @@ -2580,17 +2580,17 @@ msgstr "关闭窗口(_L)"
2832  #~ msgid "Default size:"
2833  #~ msgstr "默认大小:"
2834  
2835 -#~ msgid "Title"
2836 -#~ msgstr "标题"
2837 +msgid "Title"
2838 +msgstr "标题"
2839  
2840 -#~ msgid "_Title:"
2841 -#~ msgstr "标题(_T):"
2842 +msgid "_Title:"
2843 +msgstr "标题(_T):"
2844  
2845  #~ msgid "Title and Command"
2846  #~ msgstr "标题和命令"
2847  
2848 -#~ msgid "Set Title"
2849 -#~ msgstr "设置标题"
2850 +msgid "Set Title"
2851 +msgstr "设置标题"
2852  
2853  #~ msgid "Current Locale"
2854  #~ msgstr "当前区域"
2855 @@ -2703,3 +2703,6 @@ msgstr "关闭窗口(_L)"
2856  
2857  #~ msgid "_Find..."
2858  #~ msgstr "查找(_F)..."
2859 +
2860 +msgid "Transparent background"
2861 +msgstr "透明背景"
2862 diff --git a/po/zh_HK.po b/po/zh_HK.po
2863 index 61153529f0c7..c366abddd1af 100644
2864 --- a/po/zh_HK.po
2865 +++ b/po/zh_HK.po
2866 @@ -2114,17 +2114,17 @@ msgstr "關閉視窗(_L)"
2867  #~ msgid "Default size:"
2868  #~ msgstr "預設大小:"
2869  
2870 -#~ msgid "Title"
2871 -#~ msgstr "標題"
2872 +msgid "Title"
2873 +msgstr "標題"
2874  
2875 -#~ msgid "_Title:"
2876 -#~ msgstr "標題(_T):"
2877 +msgid "_Title:"
2878 +msgstr "標題(_T):"
2879  
2880  #~ msgid "Title and Command"
2881  #~ msgstr "標題及指令"
2882  
2883 -#~ msgid "Set Title"
2884 -#~ msgstr "設定標題"
2885 +msgid "Set Title"
2886 +msgstr "設定標題"
2887  
2888  #~ msgid "Current Locale"
2889  #~ msgstr "目前的地區設定"
2890 @@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
2891  
2892  #~ msgid "Show session management options"
2893  #~ msgstr "顯示作業階段管理選項"
2894 +
2895 +msgid "Transparent background"
2896 +msgstr "透明背景"
2897 diff --git a/po/zh_TW.po b/po/zh_TW.po
2898 index b9890ad91bdc..18e55e2e945c 100644
2899 --- a/po/zh_TW.po
2900 +++ b/po/zh_TW.po
2901 @@ -2562,17 +2562,17 @@ msgstr "關閉視窗(_L)"
2902  #~ msgid "Default size:"
2903  #~ msgstr "預設大小:"
2904  
2905 -#~ msgid "Title"
2906 -#~ msgstr "標題"
2907 +msgid "Title"
2908 +msgstr "標題"
2909  
2910 -#~ msgid "_Title:"
2911 -#~ msgstr "標題(_T):"
2912 +msgid "_Title:"
2913 +msgstr "標題(_T):"
2914  
2915  #~ msgid "Title and Command"
2916  #~ msgstr "標題及指令"
2917  
2918 -#~ msgid "Set Title"
2919 -#~ msgstr "設定標題"
2920 +msgid "Set Title"
2921 +msgstr "設定標題"
2922  
2923  #~ msgid "Current Locale"
2924  #~ msgstr "目前的地區設定"
2925 @@ -2784,3 +2784,6 @@ msgstr "關閉視窗(_L)"
2926  
2927  #~ msgid "Show session management options"
2928  #~ msgstr "顯示作業階段管理選項"
2929 +
2930 +msgid "Transparent background"
2931 +msgstr "透明背景"
2932 -- 
2933 2.19.1
This page took 0.468472 seconds and 3 git commands to generate.