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