]> git.pld-linux.org Git - packages/gnome-terminal.git/blob - gnome-terminal-transparency.patch
- updated to 3.42.1
[packages/gnome-terminal.git] / gnome-terminal-transparency.patch
1 From c9a5c9630248efe0bc34dfbd4f54c8d4f68d4ee6 Mon Sep 17 00:00:00 2001
2 From: Debarshi Ray <debarshir@gnome.org>
3 Date: Mon, 12 May 2014 14:57:18 +0200
4 Subject: [PATCH 01/14] Restore transparency
5
6 The transparency settings were removed as a side effect of
7 2bff4b63ed3ceef6055e35563e9b0b33ad57349d
8
9 This restores them and you will need a compositing window manager to
10 use it. The background image setting, also known as faux transparency,
11 was not restored.
12
13 The transparency checkbox lost its mnemonic accelerator because 't'
14 is already taken and using any other letter would make it hard to
15 restore the translations of the string.
16
17 Some changes by Peter Weber <peter.weber@mailbox.org>
18 ---
19  src/org.gnome.Terminal.gschema.xml | 10 +++++++
20  src/preferences.ui                 | 47 ++++++++++++++++++++++++++++++
21  src/profile-editor.c               | 16 ++++++++++
22  src/terminal-schemas.h             |  3 ++
23  src/terminal-screen.c              | 22 +++++++++++++-
24  src/terminal-window.c              |  7 +++++
25  6 files changed, 104 insertions(+), 1 deletion(-)
26
27 diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
28 index 945b0bd661c5..c581f3cf2553 100644
29 --- a/src/org.gnome.Terminal.gschema.xml
30 +++ b/src/org.gnome.Terminal.gschema.xml
31 @@ -400,6 +400,16 @@
32        <default>'narrow'</default>
33        <summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
34      </key>
35 +    <key name="use-transparent-background" type="b">
36 +      <default>false</default>
37 +      <summary>Whether to use a transparent background</summary>
38 +    </key>
39 +    <key name="background-transparency-percent" type="i">
40 +      <default>50</default>
41 +      <range min="0" max="100"/>
42 +      <summary>Adjust the amount of transparency</summary>
43 +      <description>A value between 0 and 100, where 0 is opaque and 100 is fully transparent.</description>
44 +    </key>
45    </schema>
46  
47    <!-- Keybinding settings -->
48 diff --git a/src/preferences.ui b/src/preferences.ui
49 index 6259aac0f02f..f5c366f14e10 100644
50 --- a/src/preferences.ui
51 +++ b/src/preferences.ui
52 @@ -77,6 +77,11 @@
53      <property name="step_increment">0.05</property>
54      <property name="page_increment">0.25</property>
55    </object>
56 +  <object class="GtkAdjustment" id="background-transparent-adjustment">
57 +    <property name="upper">100</property>
58 +    <property name="step_increment">1</property>
59 +    <property name="page_increment">10</property>
60 +  </object>
61    <object class="GtkListStore" id="cjk-ambiguous-width-model">
62      <columns>
63        <!-- column-name gchararray -->
64 @@ -1317,6 +1322,48 @@
65                                              <property name="position">1</property>
66                                            </packing>
67                                          </child>
68 +                                        <child>
69 +                                          <object class="GtkBox" id="use-transparent-background-box">
70 +                                            <property name="visible">True</property>
71 +                                            <property name="can_focus">False</property>
72 +                                            <property name="orientation">horizontal</property>
73 +                                            <property name="spacing">12</property>
74 +                                            <child>
75 +                                              <object class="GtkCheckButton" id="use-transparent-background">
76 +                                                <property name="label" translatable="yes">Transparent background</property>
77 +                                                <property name="visible">True</property>
78 +                                                <property name="can_focus">True</property>
79 +                                                <property name="receives_default">False</property>
80 +                                                <property name="use_underline">True</property>
81 +                                                <property name="xalign">0</property>
82 +                                                <property name="draw_indicator">True</property>
83 +                                              </object>
84 +                                              <packing>
85 +                                                <property name="expand">False</property>
86 +                                                <property name="fill">False</property>
87 +                                                <property name="position">0</property>
88 +                                              </packing>
89 +                                            </child>
90 +                                            <child>
91 +                                              <object class="GtkScale" id="background-transparent-scale">
92 +                                                <property name="visible">True</property>
93 +                                                <property name="can_focus">True</property>
94 +                                                <property name="adjustment">background-transparent-adjustment</property>
95 +                                                <property name="draw_value">False</property>
96 +                                              </object>
97 +                                              <packing>
98 +                                                <property name="expand">True</property>
99 +                                                <property name="fill">True</property>
100 +                                                <property name="position">1</property>
101 +                                              </packing>
102 +                                            </child>
103 +                                          </object>
104 +                                          <packing>
105 +                                            <property name="expand">True</property>
106 +                                            <property name="fill">True</property>
107 +                                            <property name="position">2</property>
108 +                                          </packing>
109 +                                        </child>
110                                        </object>
111                                      </child>
112                                    </object>
113 --- 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.1/po/cs.po.orig 2021-10-30 21:50:29.120028953 +0200
896 +++ gnome-terminal-3.42.1/po/cs.po      2021-10-30 22:53:37.762837447 +0200
897 @@ -2378,3 +2378,5 @@ msgstr "_Zavřít okno"
898  msgid "Failed to parse arguments: %s\n"
899  msgstr "Selhala analýza argumentů: %s\n"
900  
901 +msgid "Transparent background"
902 +msgstr "Průsvitné pozadí"
903 diff --git a/po/cy.po b/po/cy.po
904 index 644df82363f1..cd862feb50c0 100644
905 --- a/po/cy.po
906 +++ b/po/cy.po
907 @@ -1167,8 +1167,8 @@ msgid "_Base on:"
908  msgstr "Ei _seilio ar:"
909  
910  #: ../src/profile-preferences.glade.h:1
911 -msgid "<b>Command</b>"
912 -msgstr "<b>Gorchymyn</b>"
913 +msgid "Command"
914 +msgstr "Gorchymyn"
915  
916  #: ../src/profile-preferences.glade.h:2
917  msgid "<b>Foreground and Background</b>"
918 @@ -1448,8 +1448,8 @@ msgid "_Text color:"
919  msgstr "Lliw'r _testun:"
920  
921  #: ../src/profile-preferences.glade.h:73
922 -msgid "_Transparent background"
923 -msgstr "Cefndir _tryloyw"
924 +msgid "Transparent background"
925 +msgstr "Cefndir tryloyw"
926  
927  #: ../src/profile-preferences.glade.h:74
928  msgid "_Update login records when command is launched"
929 --- gnome-terminal-3.42.0/po/da.po.orig 2021-09-28 20:53:11.281982620 +0200
930 +++ gnome-terminal-3.42.0/po/da.po      2021-09-28 20:53:37.063321984 +0200
931 @@ -2456,6 +2456,9 @@ msgstr "_Luk vindue"
932  msgid "Failed to parse arguments: %s\n"
933  msgstr "Kunne ikke fortolke argumenter: %s\n"
934  
935 +msgid "Transparent background"
936 +msgstr "Gennemsigtig baggrund"
937 +
938  #~ msgid "Whether to allow bold text"
939  #~ msgstr "Om fed tekst skal tillades"
940  
941 --- gnome-terminal-3.42.0/po/de.po.orig 2021-09-28 20:53:56.974356382 +0200
942 +++ gnome-terminal-3.42.0/po/de.po      2021-09-28 20:54:19.262180924 +0200
943 @@ -2524,6 +2524,9 @@ msgstr "Fenster _schließen"
944  msgid "Failed to parse arguments: %s\n"
945  msgstr "Einlesen der Argumente schlug fehl: %s\n"
946  
947 +msgid "Transparent background"
948 +msgstr "Transparenter Hintergrund"
949 +
950  # missing accelerator
951  #~ msgid "Whether to allow bold text"
952  #~ msgstr "Fetten Text erlauben?"
953 diff --git a/po/dz.po b/po/dz.po
954 index d97e6102b850..a768fe4adc54 100644
955 --- a/po/dz.po
956 +++ b/po/dz.po
957 @@ -1255,8 +1255,8 @@ msgid "_Base on:"
958  msgstr "གཞི་བཞག་སྟེ་:(_B)"
959  
960  #: ../src/profile-preferences.glade.h:1
961 -msgid "<b>Command</b>"
962 -msgstr "<b>བརྡ་བཀོད་</b>"
963 +msgid "Command"
964 +msgstr "བརྡ་བཀོད་"
965  
966  #: ../src/profile-preferences.glade.h:2
967  #, fuzzy
968 @@ -1551,8 +1551,8 @@ msgid "_Text color:"
969  msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
970  
971  #: ../src/profile-preferences.glade.h:77
972 -msgid "_Transparent background"
973 -msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)"
974 +msgid "Transparent background"
975 +msgstr "དྭངས་གསལ་རྒྱབ་གཞི།"
976  
977  #: ../src/profile-preferences.glade.h:78
978  #, fuzzy
979 diff --git a/po/el.po b/po/el.po
980 index a32f5b1684f6..7fa98b45e6f5 100644
981 --- a/po/el.po
982 +++ b/po/el.po
983 @@ -2710,17 +2710,17 @@ msgstr "Κ_λείσιμο παραθύρου"
984  #~ msgid "Default size:"
985  #~ msgstr "Προεπιλεγμένο μέγεθος:"
986  
987 -#~ msgid "Title"
988 -#~ msgstr "Τίτλος"
989 +msgid "Title"
990 +msgstr "Τίτλος"
991  
992 -#~ msgid "_Title:"
993 -#~ msgstr "_Τίτλος:"
994 +msgid "_Title:"
995 +msgstr "_Τίτλος:"
996  
997  #~ msgid "Title and Command"
998  #~ msgstr "Τίτλος και εντολή"
999  
1000 -#~ msgid "Set Title"
1001 -#~ msgstr "Ορισμός τίτλου"
1002 +msgid "Set Title"
1003 +msgstr "Ορισμός τίτλου"
1004  
1005  #~ msgid "Current Locale"
1006  #~ msgstr "Τρέχουσα τοπική ρύθμιση"
1007 @@ -2758,3 +2758,6 @@ msgstr "Κ_λείσιμο παραθύρου"
1008  
1009  #~ msgid "_Input Methods"
1010  #~ msgstr "_Μέθοδοι εισαγωγής"
1011 +
1012 +msgid "Transparent background"
1013 +msgstr "Διάφανο παρασκήνιο"
1014 diff --git a/po/en@shaw.po b/po/en@shaw.po
1015 index 82b2d53401b2..28f5dc02575b 100644
1016 --- a/po/en@shaw.po
1017 +++ b/po/en@shaw.po
1018 @@ -1212,8 +1212,8 @@ msgid "_Base on:"
1019  msgstr "_𐑚𐑱𐑕 𐑪𐑯:"
1020  
1021  #: ../src/profile-preferences.glade.h:1
1022 -msgid "<b>Command</b>"
1023 -msgstr "<b>𐑒𐑩𐑥𐑭𐑯𐑛</b>"
1024 +msgid "Command"
1025 +msgstr "𐑒𐑩𐑥𐑭𐑯𐑛"
1026  
1027  #: ../src/profile-preferences.glade.h:2
1028  msgid "<b>Foreground, Background, Bold and Underline</b>"
1029 @@ -1468,8 +1468,8 @@ msgid "_Text color:"
1030  msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
1031  
1032  #: ../src/profile-preferences.glade.h:78
1033 -msgid "_Transparent background"
1034 -msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1035 +msgid "Transparent background"
1036 +msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1037  
1038  #: ../src/profile-preferences.glade.h:79
1039  msgid "_Underline color:"
1040 diff --git a/po/en_CA.po b/po/en_CA.po
1041 index 6c9e0cd73d63..db4aa891dd45 100644
1042 --- a/po/en_CA.po
1043 +++ b/po/en_CA.po
1044 @@ -219,8 +219,8 @@ msgid "<b>Background</b>"
1045  msgstr "<b>Background</b>"
1046  
1047  #: ../src/gnome-terminal.glade2.h:3
1048 -msgid "<b>Command</b>"
1049 -msgstr "<b>Command</b>"
1050 +msgid "Command"
1051 +msgstr "Command"
1052  
1053  #: ../src/gnome-terminal.glade2.h:4
1054  msgid "<b>Compatibility</b>"
1055 @@ -557,8 +557,8 @@ msgid "_Text color:"
1056  msgstr "_Text colour:"
1057  
1058  #: ../src/gnome-terminal.glade2.h:86
1059 -msgid "_Transparent background"
1060 -msgstr "_Transparent background"
1061 +msgid "Transparent background"
1062 +msgstr "Transparent background"
1063  
1064  #: ../src/gnome-terminal.glade2.h:87
1065  msgid "_Update login records when command is launched"
1066 diff --git a/po/en_GB.po b/po/en_GB.po
1067 index c9999e204f33..dfbff85bf907 100644
1068 --- a/po/en_GB.po
1069 +++ b/po/en_GB.po
1070 @@ -2796,8 +2796,8 @@ msgstr "C_lose Window"
1071  #~ msgid "Default size:"
1072  #~ msgstr "Default size:"
1073  
1074 -#~ msgid "Title"
1075 -#~ msgstr "Title"
1076 +msgid "Title"
1077 +msgstr "Title"
1078  
1079  #~ msgid "When terminal commands set their o_wn titles:"
1080  #~ msgstr "When terminal commands set their o_wn titles:"
1081 @@ -2814,8 +2814,8 @@ msgstr "C_lose Window"
1082  #~ msgid "_Unlimited"
1083  #~ msgstr "_Unlimited"
1084  
1085 -#~ msgid "Set Title"
1086 -#~ msgstr "Set Title"
1087 +msgid "Set Title"
1088 +msgstr "Set Title"
1089  
1090  #~ msgid "Switch to Tab 3"
1091  #~ msgstr "Switch to Tab 3"
1092 @@ -2856,8 +2856,8 @@ msgstr "C_lose Window"
1093  #~ msgid "_Input Methods"
1094  #~ msgstr "_Input Methods"
1095  
1096 -#~ msgid "_Title:"
1097 -#~ msgstr "_Title:"
1098 +msgid "_Title:"
1099 +msgstr "_Title:"
1100  
1101  #~ msgid "Add or Remove Terminal Encodings"
1102  #~ msgstr "Add or Remove Terminal Encodings"
1103 @@ -3552,8 +3552,8 @@ msgstr "C_lose Window"
1104  #~ msgid "Background image _scrolls"
1105  #~ msgstr "Background image _scrolls"
1106  
1107 -#~ msgid "_Transparent background"
1108 -#~ msgstr "_Transparent background"
1109 +msgid "Transparent background"
1110 +msgstr "Transparent background"
1111  
1112  #~ msgid "S_hade transparent or image background:"
1113  #~ msgstr "S_hade transparent or image background:"
1114 --- gnome-terminal-3.40.0/po/eo.po.orig 2021-02-22 17:08:51.000000000 +0100
1115 +++ gnome-terminal-3.40.0/po/eo.po      2021-04-17 11:16:42.667994998 +0200
1116 @@ -2827,8 +2827,8 @@ msgstr "_Fermi la fenestron"
1117  #~ msgid "_Font:"
1118  #~ msgstr "_Tiparo:"
1119  
1120 -#~ msgid "Set Title"
1121 -#~ msgstr "Agordi titolon"
1122 +msgid "Set Title"
1123 +msgstr "Agordi titolon"
1124  
1125  #~ msgid "Switch to Tab 3"
1126  #~ msgstr "Ŝalti al langeto 3"
1127 @@ -2890,8 +2890,8 @@ msgstr "_Fermi la fenestron"
1128  #~ msgid "_Input Methods"
1129  #~ msgstr "_Enigmetodoj"
1130  
1131 -#~ msgid "_Title:"
1132 -#~ msgstr "_Titolo:"
1133 +msgid "_Title:"
1134 +msgstr "_Titolo:"
1135  
1136  #~ msgid "On the left side"
1137  #~ msgstr "Maldekstre"
1138 diff --git a/po/es.po b/po/es.po
1139 index 142347b3720a..9325d95de22f 100644
1140 --- a/po/es.po
1141 +++ b/po/es.po
1142 @@ -2741,17 +2741,17 @@ msgstr "_Cerrar ventana"
1143  #~ msgid "Default size:"
1144  #~ msgstr "Tamaño predeterminado:"
1145  
1146 -#~ msgid "Title"
1147 -#~ msgstr "Título"
1148 +msgid "Title"
1149 +msgstr "Título"
1150  
1151 -#~ msgid "_Title:"
1152 -#~ msgstr "_Título:"
1153 +msgid "_Title:"
1154 +msgstr "_Título:"
1155  
1156  #~ msgid "Title and Command"
1157  #~ msgstr "Título y comando"
1158  
1159 -#~ msgid "Set Title"
1160 -#~ msgstr "Establecer título"
1161 +msgid "Set Title"
1162 +msgstr "Establecer título"
1163  
1164  #~ msgid "Current Locale"
1165  #~ msgstr "Configuración regional actual"
1166 @@ -3577,8 +3577,8 @@ msgstr "_Cerrar ventana"
1167  #~ msgid "_Solid color"
1168  #~ msgstr "Color _sólido"
1169  
1170 -#~ msgid "_Transparent background"
1171 -#~ msgstr "Fondo _transparente"
1172 +msgid "Transparent background"
1173 +msgstr "Fondo transparente"
1174  
1175  #~ msgid "No such profile \"%s\", using default profile\n"
1176  #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
1177 diff --git a/po/et.po b/po/et.po
1178 index 4b1c2a7c67e4..770761168806 100644
1179 --- a/po/et.po
1180 +++ b/po/et.po
1181 @@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
1182  
1183  #~ msgid "Choose base profile"
1184  #~ msgstr "Vali põhiprofiil"
1185 +
1186 +msgid "Transparent background"
1187 +msgstr "Läbipaistev taust"
1188 --- gnome-terminal-3.42.0/po/eu.po.orig 2021-09-28 20:54:46.463594063 +0200
1189 +++ gnome-terminal-3.42.0/po/eu.po      2021-09-28 20:55:11.768241998 +0200
1190 @@ -2328,6 +2328,9 @@ msgstr "It_xi leihoa"
1191  msgid "Failed to parse arguments: %s\n"
1192  msgstr "Huts egin du argumentuak analizatzean: %s\n"
1193  
1194 +msgid "Transparent background"
1195 +msgstr "Atzeko plano gardena"
1196 +
1197  #~ msgid "Whether to allow bold text"
1198  #~ msgstr "Testu-formatu lodia onartzen den"
1199  
1200 --- gnome-terminal-3.40.0/po/fa.po.orig 2021-03-19 22:43:50.000000000 +0100
1201 +++ gnome-terminal-3.40.0/po/fa.po      2021-04-17 11:23:51.866939429 +0200
1202 @@ -2782,8 +2782,8 @@ msgstr "_بستن پنجره"
1203  #~ msgid "Use custom default terminal si_ze"
1204  #~ msgstr "استفاده از اندازه‌ی _سفارشی پایانه‌ی پیش‌فرض"
1205  
1206 -#~ msgid "Title"
1207 -#~ msgstr "عنوان"
1208 +msgid "Title"
1209 +msgstr "عنوان"
1210  
1211  #~ msgid "When terminal commands set their o_wn titles:"
1212  #~ msgstr "وقتی که فرمان‌های پایانه عنوان‌های _خودشان را تنظیم می‌کنند:"
1213 @@ -2797,8 +2797,8 @@ msgstr "_بستن پنجره"
1214  #~ msgid "_Unlimited"
1215  #~ msgstr "_نامحدود"
1216  
1217 -#~ msgid "Set Title"
1218 -#~ msgstr "تنظیم عنوان"
1219 +msgid "Set Title"
1220 +msgstr "تنظیم عنوان"
1221  
1222  #~ msgid "Switch to Tab 3"
1223  #~ msgstr "تعویض به زبانه‌ی ۳"
1224 @@ -2839,5 +2839,8 @@ msgstr "_بستن پنجره"
1225  #~ msgid "_Input Methods"
1226  #~ msgstr "روش‌های _ورودی"
1227  
1228 -#~ msgid "_Title:"
1229 -#~ msgstr "_عنوان:"
1230 +msgid "_Title:"
1231 +msgstr "_عنوان:"
1232 +
1233 +msgid "Transparent background"
1234 +msgstr "پس‌زمینه‌ی شفاف"
1235 diff --git a/po/fi.po b/po/fi.po
1236 index e284b406f040..6e7f402af7bd 100644
1237 --- a/po/fi.po
1238 +++ b/po/fi.po
1239 @@ -2589,6 +2589,9 @@ msgstr "_Sulje ikkuna"
1240  #~ msgid "_Update login records when command is launched"
1241  #~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
1242  
1243 +msgid "Transparent background"
1244 +msgstr "Läpinäkyvä tausta"
1245 +
1246  #~| msgid "Error parsing command: %s"
1247  #~ msgid "Missing command"
1248  #~ msgstr "Puuttuva komento"
1249 --- gnome-terminal-3.42.0/po/fr.po.orig 2021-09-28 20:55:36.466191747 +0200
1250 +++ gnome-terminal-3.42.0/po/fr.po      2021-09-28 20:55:56.450563288 +0200
1251 @@ -2512,6 +2512,9 @@ msgstr "Fermer _la fenêtre"
1252  msgid "Failed to parse arguments: %s\n"
1253  msgstr "Impossible d’analyser les paramètres : %s\n"
1254  
1255 +msgid "Transparent background"
1256 +msgstr "Arrière-plan transparent"
1257 +
1258  #~ msgid "Whether to allow bold text"
1259  #~ msgstr "Indique s’il faut autoriser le texte en gras"
1260  
1261 --- gnome-terminal-3.38.0/po/fur.po.orig        2020-09-12 21:18:27.000000000 +0200
1262 +++ gnome-terminal-3.38.0/po/fur.po     2020-09-20 12:01:34.634278284 +0200
1263 @@ -2417,6 +2417,9 @@
1264  msgid "C_lose Window"
1265  msgstr "_Siere barcon"
1266  
1267 +msgid "Transparent background"
1268 +msgstr "Fondâl trasparent"
1269 +
1270  #~ msgid "Hindi"
1271  #~ msgstr "Hindi"
1272  
1273 @@ -3546,6 +3549,9 @@
1274  #~ msgid "The text you clicked on doesn't seem to be a valid OTP challenge."
1275  #~ msgstr "Il test fracât nol samee jessi un OTP challenge."
1276  
1277 +msgid "Set Title"
1278 +msgstr "Imposte titul"
1279 +
1280  #~ msgid "Switch to Tab 3"
1281  #~ msgstr "Passe a la schede 3"
1282  
1283 @@ -3601,8 +3607,8 @@
1284  #~ msgid "_Input Methods"
1285  #~ msgstr "_Cemût inserî test"
1286  
1287 -#~ msgid "_Title:"
1288 -#~ msgstr "_Titul:"
1289 +msgid "_Title:"
1290 +msgstr "_Titul:"
1291  
1292  #~ msgid ""
1293  #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
1294 diff --git a/po/ga.po b/po/ga.po
1295 index 93d5fa9d1481..feb87dce3d6b 100644
1296 --- a/po/ga.po
1297 +++ b/po/ga.po
1298 @@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
1299  #: ../src/terminal-window.c:3582
1300  msgid "C_lose Terminal"
1301  msgstr "_Dún Teirminéal"
1302 +
1303 +msgid "Transparent background"
1304 +msgstr "Cúlra trédhearcach"
1305 --- gnome-terminal-3.42.0/po/gl.po.orig 2021-09-27 20:43:51.119113208 +0200
1306 +++ gnome-terminal-3.42.0/po/gl.po      2021-09-27 20:45:04.598715135 +0200
1307 @@ -2481,3 +2481,6 @@ msgstr "P_echar a xanela"
1308  #, c-format
1309  msgid "Failed to parse arguments: %s\n"
1310  msgstr "Produciuse un erro ao analizar os argumentos: %s\n"
1311 +
1312 +msgid "Transparent background"
1313 +msgstr "Fondo transparente"
1314 diff --git a/po/gu.po b/po/gu.po
1315 index 76b459cf8dc5..485beeac98b7 100644
1316 --- a/po/gu.po
1317 +++ b/po/gu.po
1318 @@ -2155,8 +2155,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1319  #~ msgid "Default size:"
1320  #~ msgstr "મૂળભૂત માપ:"
1321  
1322 -#~ msgid "Title"
1323 -#~ msgstr "શીર્ષક"
1324 +msgid "Title"
1325 +msgstr "શીર્ષક"
1326  
1327  #~ msgid "When terminal commands set their o_wn titles:"
1328  #~ msgstr "જ્યારે આદેશો તેમના પોતાના શીર્ષકો સુયોજીત કરે (_w):"
1329 @@ -2176,8 +2176,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1330  #~ msgid "Close Window"
1331  #~ msgstr "વિન્ડો બંધ કરો"
1332  
1333 -#~ msgid "Set Title"
1334 -#~ msgstr "શીર્ષકની ગોઠવણી કરો"
1335 +msgid "Set Title"
1336 +msgstr "શીર્ષકની ગોઠવણી કરો"
1337  
1338  #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1339  #~ msgstr "ટુંકાણ કી “%s“ એ પહેલાથી ક્રિયા “%s“ સાથે બંધાયેલી છે"
1340 @@ -2203,8 +2203,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1341  #~ msgid "_Input Methods"
1342  #~ msgstr "ઈનપુટ માટેની પધ્ધિતિઓ (_I)"
1343  
1344 -#~ msgid "_Title:"
1345 -#~ msgstr "શીર્ષક (_T):"
1346 +msgid "_Title:"
1347 +msgstr "શીર્ષક (_T):"
1348  
1349  #~ msgid "Keyboard shortcut to switch to tab 1"
1350  #~ msgstr "ટૅબ ૧ પર જવા માટે કીબોર્ડનું ટુંકાણ"
1351 @@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1352  #~ msgid "_Solid color"
1353  #~ msgstr "ઘટ્ટ રંગ (_S)"
1354  
1355 -#~ msgid "_Transparent background"
1356 -#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)"
1357 +msgid "Transparent background"
1358 +msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ"
1359  
1360  #~ msgid "No such profile \"%s\", using default profile\n"
1361  #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
1362 diff --git a/po/he.po b/po/he.po
1363 index 57cb2d0d110f..efe8fa100074 100644
1364 --- a/po/he.po
1365 +++ b/po/he.po
1366 @@ -2333,17 +2333,17 @@ msgstr "סגירת ה_חלון"
1367  #~ msgid "Default size:"
1368  #~ msgstr "גודל בררת מחדל:"
1369  
1370 -#~ msgid "Title"
1371 -#~ msgstr "כותרת"
1372 +msgid "Title"
1373 +msgstr "כותרת"
1374  
1375 -#~ msgid "_Title:"
1376 -#~ msgstr "_כותרת:"
1377 +msgid "_Title:"
1378 +msgstr "_כותרת:"
1379  
1380  #~ msgid "Title and Command"
1381  #~ msgstr "כותרת ופקודה"
1382  
1383 -#~ msgid "Set Title"
1384 -#~ msgstr "הגדרת כותרת"
1385 +msgid "Set Title"
1386 +msgstr "הגדרת כותרת"
1387  
1388  #~ msgid "Current Locale"
1389  #~ msgstr "השפה הנוכחית"
1390 @@ -3194,8 +3194,8 @@ msgstr "סגירת ה_חלון"
1391  #~ msgid "_Solid color"
1392  #~ msgstr "צבע _אחיד"
1393  
1394 -#~ msgid "_Transparent background"
1395 -#~ msgstr "רקע _שקוף"
1396 +msgid "Transparent background"
1397 +msgstr "רקע שקוף"
1398  
1399  #~ msgid "No such profile \"%s\", using default profile\n"
1400  #~ msgstr "No such profile \"%s\", using default profile\n"
1401 diff --git a/po/hi.po b/po/hi.po
1402 index 2d7dc5b14008..8d3d0529df61 100644
1403 --- a/po/hi.po
1404 +++ b/po/hi.po
1405 @@ -2267,9 +2267,8 @@ msgstr "विंडो बंद करें (_l)"
1406  #~ msgid "Use custom default terminal si_ze"
1407  #~ msgstr "कस्टम डिफ़ॉल्ट टर्मिनल आकार का उपयोग करें (_z)"
1408  
1409 -#~| msgid "_Title:"
1410 -#~ msgid "Title"
1411 -#~ msgstr "शीर्षक"
1412 +msgid "Title"
1413 +msgstr "शीर्षक"
1414  
1415  #~ msgid "When terminal commands set their o_wn titles:"
1416  #~ msgstr "जब टर्मिनल कमांड उनका अपना शीर्षक सेट करता है (_w):"
1417 @@ -2289,8 +2288,8 @@ msgstr "विंडो बंद करें (_l)"
1418  #~ msgid "Close Window"
1419  #~ msgstr "विंडो बंद करें"
1420  
1421 -#~ msgid "Set Title"
1422 -#~ msgstr "शीर्षक नियत करें"
1423 +msgid "Set Title"
1424 +msgstr "शीर्षक नियत करें"
1425  
1426  #~ msgid "Switch to Tab 2"
1427  #~ msgstr "टैब 2 पर जाएँ"
1428 @@ -2349,8 +2348,8 @@ msgstr "विंडो बंद करें (_l)"
1429  #~ msgid "_Input Methods"
1430  #~ msgstr "इनपुट विधियाँ (_I)"
1431  
1432 -#~ msgid "_Title:"
1433 -#~ msgstr "शीर्षक (_T):"
1434 +msgid "_Title:"
1435 +msgstr "शीर्षक (_T):"
1436  
1437  #~ msgid "Disable connection to session manager"
1438  #~ msgstr "सत्र प्रबंधक में कनेक्शन निष्क्रिय करें"
1439 @@ -2979,8 +2978,8 @@ msgstr "विंडो बंद करें (_l)"
1440  #~ msgid "_Background image"
1441  #~ msgstr "पृष्ठभूमि छवि (_B)"
1442  
1443 -#~ msgid "_Transparent background"
1444 -#~ msgstr "पारदर्शी पृष्ठभूमि (_T)"
1445 +msgid "Transparent background"
1446 +msgstr "पारदर्शी पृष्ठभूमि"
1447  
1448  #~ msgid "S/Key Challenge Response"
1449  #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
1450 diff --git a/po/hr.po b/po/hr.po
1451 index aec2eaa8bac1..207b5c774b32 100644
1452 --- a/po/hr.po
1453 +++ b/po/hr.po
1454 @@ -2565,3 +2565,7 @@ msgstr "_Zatvori prozor"
1455  
1456  #~ msgid "Use transparency from system theme"
1457  #~ msgstr "Koristi prozirnost iz teme sustava"
1458 +
1459 +#: ../src/profile-preferences.glade.h:69
1460 +msgid "Transparent background"
1461 +msgstr "Prozirna pozadina"
1462 --- gnome-terminal-3.42.0/po/hu.po.orig 2021-09-27 20:45:45.238494971 +0200
1463 +++ gnome-terminal-3.42.0/po/hu.po      2021-09-27 20:48:32.504255481 +0200
1464 @@ -2463,3 +2463,6 @@ msgstr "_Ablak bezárása"
1465  #, c-format
1466  msgid "Failed to parse arguments: %s\n"
1467  msgstr "A paraméterek feldolgozása meghiúsult: %s\n"
1468 +
1469 +msgid "Transparent background"
1470 +msgstr "Áttetsző háttér"
1471 diff --git a/po/hy.po b/po/hy.po
1472 index aaf2d9b292da..4d466f164420 100644
1473 --- a/po/hy.po
1474 +++ b/po/hy.po
1475 @@ -757,8 +757,8 @@ msgid "_Base on:"
1476  msgstr ""
1477  
1478  #: ../src/profile-preferences.glade.h:1
1479 -msgid "<b>Command</b>"
1480 -msgstr "<b>Հրաման</b>"
1481 +msgid "Command"
1482 +msgstr "Հրաման"
1483  
1484  #: ../src/profile-preferences.glade.h:2
1485  msgid "<b>Foreground and Background</b>"
1486 @@ -1012,8 +1012,8 @@ msgid "_Text color:"
1487  msgstr "_Տեքստի գույնը՝"
1488  
1489  #: ../src/profile-preferences.glade.h:73
1490 -msgid "_Transparent background"
1491 -msgstr "_Թափանցիկ նախադրյալ"
1492 +msgid "Transparent background"
1493 +msgstr "Թափանցիկ նախադրյալ"
1494  
1495  #: ../src/profile-preferences.glade.h:74
1496  msgid "_Update login records when command is launched"
1497 --- gnome-terminal-3.42.0/po/id.po.orig 2021-09-28 20:56:11.671354023 +0200
1498 +++ gnome-terminal-3.42.0/po/id.po      2021-09-28 20:56:32.785784271 +0200
1499 @@ -2448,6 +2448,9 @@ msgstr "Tutup Jende_la"
1500  msgid "Failed to parse arguments: %s\n"
1501  msgstr "Gagal mengurai argumen: \"%s\"\n"
1502  
1503 +msgid "Transparent background"
1504 +msgstr "Latar belakang transparan"
1505 +
1506  #~ msgid "Hindi"
1507  #~ msgstr "Hindi"
1508  
1509 --- gnome-terminal-3.40.0/po/it.po.orig 2021-04-17 11:29:23.354162096 +0200
1510 +++ gnome-terminal-3.40.0/po/it.po      2021-04-17 12:02:02.886015004 +0200
1511 @@ -2468,3 +2468,6 @@ msgstr ""
1512  #: src/terminal-window.c:3245
1513  msgid "C_lose Window"
1514  msgstr "Chiudi _finestra"
1515 +
1516 +msgid "Transparent background"
1517 +msgstr "Sfondo trasparente"
1518 --- gnome-terminal-3.40.0/po/ja.po.orig 2021-04-17 12:02:26.077220372 +0200
1519 +++ gnome-terminal-3.40.0/po/ja.po      2021-04-17 12:07:39.686853629 +0200
1520 @@ -2431,6 +2431,9 @@ msgstr ""
1521  msgid "C_lose Window"
1522  msgstr "ウィンドウを閉じる(_L)"
1523  
1524 +msgid "Transparent background"
1525 +msgstr "透過な画像にする"
1526 +
1527  #~ msgid "Whether to allow bold text"
1528  #~ msgstr "太字のフォントを許可するかどうか"
1529  
1530 --- gnome-terminal-3.40.0/po/ka.po.orig 2021-02-22 17:08:51.000000000 +0100
1531 +++ gnome-terminal-3.40.0/po/ka.po      2021-04-17 12:12:38.605723333 +0200
1532 @@ -219,8 +219,8 @@ msgid "<b>Background</b>"
1533  msgstr "<b>ფონი</b>"
1534  
1535  #: ../src/gnome-terminal.glade2.h:3
1536 -msgid "<b>Command</b>"
1537 -msgstr "<b>ბრძანება</b>"
1538 +msgid "Command"
1539 +msgstr "ბრძანება"
1540  
1541  #: ../src/gnome-terminal.glade2.h:4
1542  msgid "<b>Compatibility</b>"
1543 @@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერ
1544  
1545  #: ../src/gnome-terminal.glade2.h:86
1546  #, fuzzy
1547 -msgid "_Transparent background"
1548 +msgid "Transparent background"
1549  msgstr "გამჭირვალე"
1550  
1551  #: ../src/gnome-terminal.glade2.h:87
1552 diff --git a/po/kk.po b/po/kk.po
1553 index 2811b7ec6239..d4239e5d12c5 100644
1554 --- a/po/kk.po
1555 +++ b/po/kk.po
1556 @@ -2547,3 +2547,6 @@ msgstr "Терезені жа_бу"
1557  
1558  #~ msgid "Be quiet"
1559  #~ msgstr "Тыныш болу"
1560 +
1561 +msgid "Transparent background"
1562 +msgstr "Мөлдір фон"
1563 diff --git a/po/km.po b/po/km.po
1564 index 352897d2963b..b6db9394a307 100644
1565 --- a/po/km.po
1566 +++ b/po/km.po
1567 @@ -2909,8 +2909,8 @@ msgstr "បិទ​បង្អួច"
1568  #~ msgid "Background image _scrolls"
1569  #~ msgstr "រមូរ​រូបភាព​ផ្ទៃខាងក្រោយ"
1570  
1571 -#~ msgid "_Transparent background"
1572 -#~ msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
1573 +msgid "Transparent background"
1574 +msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
1575  
1576  #~ msgid "S_hade transparent or image background:"
1577  #~ msgstr "ដាក់​ស្រមោល​ផ្ទៃខាងក្រោយ​ថ្លា ឬ​ផ្ទៃខាងក្រោយ​​រូបភាព ៖"
1578 diff --git a/po/kn.po b/po/kn.po
1579 index c887f88a2c87..0fc1c3139258 100644
1580 --- a/po/kn.po
1581 +++ b/po/kn.po
1582 @@ -2261,8 +2261,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
1583  #~ msgid "Use custom default terminal si_ze"
1584  #~ msgstr "ಅಗತ್ಯಾನುಗುಣ ಆದೇಶತೆರೆ ಗಾತ್ರವನ್ನು ಬಳಸು (_z)"
1585  
1586 -#~ msgid "Title"
1587 -#~ msgstr "ಶೀರ್ಷಿಕೆ"
1588 +msgid "Title"
1589 +msgstr "ಶೀರ್ಷಿಕೆ"
1590  
1591  #~ msgid "When terminal commands set their o_wn titles:"
1592  #~ msgstr "ಆದೇಶಗಳು ತಮ್ಮದೆ ಆದ ಹೆಸರಗಳನ್ನು ಇರಿಸಿಕೊಂಡಾಗ (_w):"
1593 @@ -2282,8 +2282,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
1594  #~ msgid "Close Window"
1595  #~ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು"
1596  
1597 -#~ msgid "Set Title"
1598 -#~ msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
1599 +msgid "Set Title"
1600 +msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
1601  
1602  #~ msgid "Switch to Tab 2"
1603  #~ msgstr "2 ನೆ ಟ್ಯಾಬ್‌ಗೆ ಬದಲಾಯಿಸಿ"
1604 @@ -2342,5 +2342,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
1605  #~ msgid "_Input Methods"
1606  #~ msgstr "ಇನ್‌ಪುಟ್ ಕ್ರಮಗಳು (_I)"
1607  
1608 -#~ msgid "_Title:"
1609 -#~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
1610 +msgid "_Title:"
1611 +msgstr "ಶೀರ್ಷಿಕೆ(_T):"
1612 +
1613 +msgid "Transparent background"
1614 +msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
1615 diff --git a/po/ko.po b/po/ko.po
1616 index d1be8c3fdab8..02de5aa11be1 100644
1617 --- a/po/ko.po
1618 +++ b/po/ko.po
1619 @@ -2292,3 +2292,6 @@ msgstr "창 닫기(_L)"
1620  
1621  #~ msgid "Verbose output"
1622  #~ msgstr "많이 출력"
1623 +
1624 +msgid "Transparent background"
1625 +msgstr "투명한 배경"
1626 diff --git a/po/ku.po b/po/ku.po
1627 index bc2bb7f03de4..d2a83a007097 100644
1628 --- a/po/ku.po
1629 +++ b/po/ku.po
1630 @@ -223,8 +223,8 @@ msgid "<b>Background</b>"
1631  msgstr "<b>Zemîn</b>"
1632  
1633  #: ../src/gnome-terminal.glade2.h:3
1634 -msgid "<b>Command</b>"
1635 -msgstr "<b>Ferman</b>"
1636 +msgid "Command"
1637 +msgstr "Ferman"
1638  
1639  #: ../src/gnome-terminal.glade2.h:4
1640  msgid "<b>Compatibility</b>"
1641 @@ -558,8 +558,8 @@ msgid "_Text color:"
1642  msgstr "Rengê _nivîsê:"
1643  
1644  #: ../src/gnome-terminal.glade2.h:86
1645 -msgid "_Transparent background"
1646 -msgstr "Rûerdê _transparan"
1647 +msgid "Transparent background"
1648 +msgstr "Rûerdê transparan"
1649  
1650  #: ../src/gnome-terminal.glade2.h:87
1651  msgid "_Update login records when command is launched"
1652 diff --git a/po/lt.po b/po/lt.po
1653 index e8b7622e5d46..c6fe38021b6a 100644
1654 --- a/po/lt.po
1655 +++ b/po/lt.po
1656 @@ -2571,3 +2571,6 @@ msgstr "_Užverti langą"
1657  
1658  #~ msgid "Whether to use a dark theme variant"
1659  #~ msgstr "Ar naudoti tamsų temos variantą"
1660 +
1661 +msgid "Transparent background"
1662 +msgstr "Permatomas fonas"
1663 diff --git a/po/lv.po b/po/lv.po
1664 index 47d9e75b1ee8..a8dad3bc0d6b 100644
1665 --- a/po/lv.po
1666 +++ b/po/lv.po
1667 @@ -2578,3 +2578,6 @@ msgstr "Aizvērt _logu"
1668  
1669  #~ msgid "_Add or Remove…"
1670  #~ msgstr "_Pievienot vai izņemt…"
1671 +
1672 +msgid "Transparent background"
1673 +msgstr "Caurspīdīgs fons"
1674 diff --git a/po/mai.po b/po/mai.po
1675 index 715d0b9e1c82..0f31634e4f2e 100644
1676 --- a/po/mai.po
1677 +++ b/po/mai.po
1678 @@ -1044,8 +1044,8 @@ msgid "_Base on:"
1679  msgstr "आधार पर: (_B)"
1680  
1681  #: ../src/profile-preferences.glade.h:1
1682 -msgid "<b>Command</b>"
1683 -msgstr "<b>कमांड</b>"
1684 +msgid "Command"
1685 +msgstr "कमांड"
1686  
1687  #: ../src/profile-preferences.glade.h:2
1688  msgid "<b>Foreground and Background</b>"
1689 @@ -1291,8 +1291,8 @@ msgid "_Text color:"
1690  msgstr "पाठ रँग (_T):"
1691  
1692  #: ../src/profile-preferences.glade.h:69
1693 -msgid "_Transparent background"
1694 -msgstr "पारदर्शी पृष्ठभूमि (_T)"
1695 +msgid "Transparent background"
1696 +msgstr "पारदर्शी पृष्ठभूमि"
1697  
1698  #: ../src/profile-preferences.glade.h:70
1699  msgid "_Update login records when command is launched"
1700 diff --git a/po/mg.po b/po/mg.po
1701 index 99fa0f5e4059..a216602569af 100644
1702 --- a/po/mg.po
1703 +++ b/po/mg.po
1704 @@ -220,8 +220,8 @@ msgid "<b>Background</b>"
1705  msgstr "<b>Afara</b>"
1706  
1707  #: ../src/gnome-terminal.glade2.h:3
1708 -msgid "<b>Command</b>"
1709 -msgstr "<b>Baiko</b>"
1710 +msgid "Command"
1711 +msgstr "Baiko"
1712  
1713  #: ../src/gnome-terminal.glade2.h:4
1714  msgid "<b>Compatibility</b>"
1715 @@ -567,8 +567,8 @@ msgid "_Text color:"
1716  msgstr "Lokon'ny _soratra:"
1717  
1718  #: ../src/gnome-terminal.glade2.h:86
1719 -msgid "_Transparent background"
1720 -msgstr "_Afara tatera-pahazavana"
1721 +msgid "Transparent background"
1722 +msgstr "Afara tatera-pahazavana"
1723  
1724  #: ../src/gnome-terminal.glade2.h:87
1725  msgid "_Update login records when command is launched"
1726 diff --git a/po/mk.po b/po/mk.po
1727 index 4fe43192fe57..a5a874b49c59 100644
1728 --- a/po/mk.po
1729 +++ b/po/mk.po
1730 @@ -863,8 +863,8 @@ msgid "_Base on:"
1731  msgstr "_Базирано на:"
1732  
1733  #: ../src/profile-preferences.glade.h:1
1734 -msgid "<b>Command</b>"
1735 -msgstr "<b>Команда</b>"
1736 +msgid "Command"
1737 +msgstr "Команда"
1738  
1739  #: ../src/profile-preferences.glade.h:2
1740  #| msgid "<b>Foreground and Background</b>"
1741 @@ -1167,8 +1167,8 @@ msgid "_Text color:"
1742  msgstr "_Боја на текстот:"
1743  
1744  #: ../src/profile-preferences.glade.h:77
1745 -msgid "_Transparent background"
1746 -msgstr "_Транспарентна позадина"
1747 +msgid "Transparent background"
1748 +msgstr "Транспарентна позадина"
1749  
1750  #: ../src/profile-preferences.glade.h:78
1751  #| msgid "_Text color:"
1752 diff --git a/po/ml.po b/po/ml.po
1753 index a23f4cc4f1ae..49caa9efe94f 100644
1754 --- a/po/ml.po
1755 +++ b/po/ml.po
1756 @@ -2461,3 +2461,6 @@ msgstr "ജാലകം അടയ്ക്കുക (_l)"
1757  
1758  #~ msgid "_Unlimited"
1759  #~ msgstr "പരിധിയില്ല (_U)"
1760 +
1761 +msgid "Transparent background"
1762 +msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
1763 diff --git a/po/mn.po b/po/mn.po
1764 index 2f9d86072d1c..09c4437d10f9 100644
1765 --- a/po/mn.po
1766 +++ b/po/mn.po
1767 @@ -217,8 +217,8 @@ msgid "<b>Background</b>"
1768  msgstr "<b>Дэвсгэр</b>"
1769  
1770  #: ../src/gnome-terminal.glade2.h:2
1771 -msgid "<b>Command</b>"
1772 -msgstr "<b>Тушаал</b>"
1773 +msgid "Command"
1774 +msgstr "Тушаал"
1775  
1776  #: ../src/gnome-terminal.glade2.h:3
1777  msgid "<b>Compatibility</b>"
1778 @@ -618,8 +618,8 @@ msgid "_Text color:"
1779  msgstr "_Текстийн өнгө:"
1780  
1781  #: ../src/gnome-terminal.glade2.h:102
1782 -msgid "_Transparent background"
1783 -msgstr "_Тунгалаг дэвсгэр"
1784 +msgid "Transparent background"
1785 +msgstr "Тунгалаг дэвсгэр"
1786  
1787  #: ../src/gnome-terminal.glade2.h:103
1788  msgid "_Update login records when command is launched"
1789 diff --git a/po/mr.po b/po/mr.po
1790 index 61997dafbd03..9c7dc77abd22 100644
1791 --- a/po/mr.po
1792 +++ b/po/mr.po
1793 @@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा (_l)"
1794  #~ msgid "Default size:"
1795  #~ msgstr "पूर्वनिर्धारीत आकार:"
1796  
1797 -#~ msgid "Title"
1798 -#~ msgstr "शीर्षक"
1799 +msgid "Title"
1800 +msgstr "शीर्षक"
1801  
1802  #~ msgid "When terminal commands set their o_wn titles:"
1803  #~ msgstr "जेव्हा टर्मिनल आदेश स्वतःचे शिर्षक निश्चित करते (_w):"
1804 @@ -2240,8 +2240,8 @@ msgstr "चौकट बंद करा (_l)"
1805  #~ msgid "Close Window"
1806  #~ msgstr "चौकट बंद करा"
1807  
1808 -#~ msgid "Set Title"
1809 -#~ msgstr "शिर्षक निश्चित करा"
1810 +msgid "Set Title"
1811 +msgstr "शिर्षक निश्चित करा"
1812  
1813  #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1814  #~ msgstr "“%s” ही शार्टकट कि “%s” या कृतीशी संलग्न आहे"
1815 @@ -2267,8 +2267,8 @@ msgstr "चौकट बंद करा (_l)"
1816  #~ msgid "_Input Methods"
1817  #~ msgstr "इनपुट पध्दती (_I)"
1818  
1819 -#~ msgid "_Title:"
1820 -#~ msgstr "शिर्षक (_T):"
1821 +msgid "_Title:"
1822 +msgstr "शिर्षक (_T):"
1823  
1824  #~ msgid "Keyboard shortcut to switch to tab 1"
1825  #~ msgstr "टॅब 1 वापरण्याकरीता कळफलक शॉर्टकट"
1826 @@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
1827  #~ msgid "_Solid color"
1828  #~ msgstr "गडद रंग (_S)"
1829  
1830 -#~ msgid "_Transparent background"
1831 -#~ msgstr "पारदर्शी पार्श्वभूमी(_T)"
1832 +msgid "Transparent background"
1833 +msgstr "पारदर्शी पार्श्वभूमी"
1834  
1835  #~ msgid "Disabled"
1836  #~ msgstr "अकार्यान्वीतित"
1837 diff --git a/po/ms.po b/po/ms.po
1838 index f2ebd4851d3b..f3d44c9c6294 100644
1839 --- a/po/ms.po
1840 +++ b/po/ms.po
1841 @@ -2502,6 +2502,9 @@ msgstr ""
1842  msgid "C_lose Window"
1843  msgstr "T_utup Tetingkap"
1844  
1845 +msgid "Transparent background"
1846 +msgstr "LatarBelakang Telus"
1847 +
1848  #~ msgid "Accelerator key"
1849  #~ msgstr "Kekunci pemecut"
1850  
1851 --- gnome-terminal-3.40.0/po/nb.po.orig 2021-04-17 12:13:02.850316782 +0200
1852 +++ gnome-terminal-3.40.0/po/nb.po      2021-04-17 12:13:27.591601923 +0200
1853 @@ -2406,3 +2406,6 @@ msgstr ""
1854  #: src/terminal-window.c:3224
1855  msgid "C_lose Window"
1856  msgstr "_Lukk vindu"
1857 +
1858 +msgid "Transparent background"
1859 +msgstr "Gjennomsiktig bakgrunn"
1860 diff --git a/po/nds.po b/po/nds.po
1861 index 82f930b1cc0c..d52fbd94eb58 100644
1862 --- a/po/nds.po
1863 +++ b/po/nds.po
1864 @@ -748,8 +748,8 @@ msgid "_Base on:"
1865  msgstr "_Steiht op:"
1866  
1867  #: ../src/profile-preferences.glade.h:1
1868 -msgid "<b>Command</b>"
1869 -msgstr "<b>Order</b>"
1870 +msgid "Command"
1871 +msgstr "Order"
1872  
1873  #: ../src/profile-preferences.glade.h:2
1874  msgid "<b>Foreground and Background</b>"
1875 @@ -996,8 +996,8 @@ msgid "_Text color:"
1876  msgstr "_Textklöör:"
1877  
1878  #: ../src/profile-preferences.glade.h:73
1879 -msgid "_Transparent background"
1880 -msgstr "_Döörschienenachtergrund:"
1881 +msgid "Transparent background"
1882 +msgstr "Döörschienenachtergrund:"
1883  
1884  #: ../src/profile-preferences.glade.h:74
1885  msgid "_Update login records when command is launched"
1886 --- gnome-terminal-3.40.1/po/ne.po.orig 2021-04-30 13:30:46.000000000 +0200
1887 +++ gnome-terminal-3.40.1/po/ne.po      2021-05-05 22:44:16.302461546 +0200
1888 @@ -2862,8 +2862,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
1889  #~ msgid "_None (use solid color)"
1890  #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
1891  
1892 -#~ msgid "_Transparent background"
1893 -#~ msgstr "पारदर्शी पृष्ठभूमि"
1894 +msgid "Transparent background"
1895 +msgstr "पारदर्शी पृष्ठभूमि"
1896  
1897  #~ msgid "_Use the system fixed width font"
1898  #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
1899 @@ -3524,8 +3524,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
1900  #~ msgid "_Input Methods"
1901  #~ msgstr "आगत विधि"
1902  
1903 -#~ msgid "_Title:"
1904 -#~ msgstr "शीर्षक:"
1905 +msgid "_Title:"
1906 +msgstr "शीर्षक:"
1907  
1908  #~ msgid "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
1909  #~ msgstr "टर्मिनलमा छोडिएको पाठ/सादा गलत ढाँचा (%d) वा लम्बाइ (%d)को थियो\n"
1910 @@ -3560,8 +3560,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
1911  #~ msgid "C_urrent Profile..."
1912  #~ msgstr "हालको प्रोफाइल..."
1913  
1914 -#~ msgid "_Set Title..."
1915 -#~ msgstr "शीर्षक राख्नुहोस्..."
1916 +msgid "Set Title"
1917 +msgstr "शीर्षक सेट गर्नुहोस्"
1918  
1919  #~ msgid "There was an error loading config value for whether to use mnemonics. (%s)\n"
1920  #~ msgstr "निमोनिक प्रयोग गर्न या नगर्नका लागि कन्फिग मान लोड गर्दा त्रुटि भएको थियो । (%s)\n"
1921 diff --git a/po/nl.po b/po/nl.po
1922 index 5f070152cade..560e472f0917 100644
1923 --- a/po/nl.po
1924 +++ b/po/nl.po
1925 @@ -2596,3 +2596,6 @@ msgstr "Venster sl_uiten"
1926  
1927  #~ msgid "_Add or Remove…"
1928  #~ msgstr "_Toevoegen of verwijderen…"
1929 +
1930 +msgid "Title"
1931 +msgstr "Titel"
1932 diff --git a/po/nn.po b/po/nn.po
1933 index 5aa43b113ed9..f892290c256f 100644
1934 --- a/po/nn.po
1935 +++ b/po/nn.po
1936 @@ -1149,8 +1149,8 @@ msgid "_Base on:"
1937  msgstr "_Tuft på:"
1938  
1939  #: ../src/profile-preferences.glade.h:1
1940 -msgid "<b>Command</b>"
1941 -msgstr "<b>Kommando</b>"
1942 +msgid "Command"
1943 +msgstr "Kommando"
1944  
1945  #: ../src/profile-preferences.glade.h:2
1946  msgid "<b>Foreground and Background</b>"
1947 @@ -1429,8 +1429,8 @@ msgid "_Text color:"
1948  msgstr "_Tekstfarge:"
1949  
1950  #: ../src/profile-preferences.glade.h:73
1951 -msgid "_Transparent background"
1952 -msgstr "_Gjennomskinleg bakgrunn"
1953 +msgid "Transparent background"
1954 +msgstr "Gjennomskinleg bakgrunn"
1955  
1956  #: ../src/profile-preferences.glade.h:74
1957  msgid "_Update login records when command is launched"
1958 diff --git a/po/oc.po b/po/oc.po
1959 index 9a6f6186019a..6e51ea2f8980 100644
1960 --- a/po/oc.po
1961 +++ b/po/oc.po
1962 @@ -2944,8 +2944,8 @@ msgstr "Tampar _la fenèstra"
1963  #~ msgid "Save as..."
1964  #~ msgstr "Enregistrar jos..."
1965  
1966 -#~ msgid "_Title:"
1967 -#~ msgstr "_Títol :"
1968 +msgid "_Title:"
1969 +msgstr "_Títol :"
1970  
1971  #~ msgid "_Detach tab"
1972  #~ msgstr "Des_tacar l'onglet"
1973 @@ -3405,8 +3405,8 @@ msgstr "Tampar _la fenèstra"
1974  #~ msgid "_Use the system fixed width font"
1975  #~ msgstr "_Utilizar la poliça de chassa fixa del sistèma"
1976  
1977 -#~ msgid "Set Title"
1978 -#~ msgstr "Definir lo títol"
1979 +msgid "Set Title"
1980 +msgstr "Definir lo títol"
1981  
1982  #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1983  #~ msgstr "L'acorchi de clavièr « %s » es ja atribuit a l'accion « %s »"
1984 @@ -3723,8 +3723,8 @@ msgstr "Tampar _la fenèstra"
1985  #~ msgid "Run;"
1986  #~ msgstr "Executar;Consòla;Shell;"
1987  
1988 -#~ msgid "_Transparent background"
1989 -#~ msgstr "Rèireplan _transparent"
1990 +msgid "Transparent background"
1991 +msgstr "Rèireplan transparent"
1992  
1993  #~ msgid ""
1994  #~ "A subset of possible encodings are presented in the Encoding submenu. "
1995 diff --git a/po/or.po b/po/or.po
1996 index ec1e6bfb9a28..218acd712df6 100644
1997 --- a/po/or.po
1998 +++ b/po/or.po
1999 @@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
2000  #~ msgid "Background image _scrolls"
2001  #~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)"
2002  
2003 -#~ msgid "_Transparent background"
2004 -#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)"
2005 +msgid "Transparent background"
2006 +msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି"
2007  
2008  #~ msgid "S_hade transparent or image background:"
2009  #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
2010 diff --git a/po/pa.po b/po/pa.po
2011 index 1cb4b46dc2aa..2bdd01fecaab 100644
2012 --- a/po/pa.po
2013 +++ b/po/pa.po
2014 @@ -2718,10 +2718,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2015  #~ msgid "GNOME Terminal Client"
2016  #~ msgstr "ਗਨੋਮ ਟਰਮੀਨਲ ਕਲਾਇਟ"
2017  
2018 -#~| msgid "Terminal"
2019 -#~ msgctxt "title"
2020 -#~ msgid "'Terminal'"
2021 -#~ msgstr "'ਟਰਮੀਨਲ'"
2022 +msgctxt "title"
2023 +msgid "'Terminal'"
2024 +msgstr "'ਟਰਮੀਨਲ'"
2025  
2026  #~ msgid "Title for terminal"
2027  #~ msgstr "ਟਰਮੀਨਲ ਲਈ ਟਾਈਟਲ"
2028 @@ -2766,11 +2765,11 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2029  #~ msgid "Default size:"
2030  #~ msgstr "ਡਿਫਾਲਟ ਸਾਈਜ਼:"
2031  
2032 -#~ msgid "Title"
2033 -#~ msgstr "ਟਾਈਟਲ"
2034 +msgid "Title"
2035 +msgstr "ਟਾਈਟਲ"
2036  
2037 -#~ msgid "_Title:"
2038 -#~ msgstr "ਟਾਈਟਲ(_T):"
2039 +msgid "_Title:"
2040 +msgstr "ਟਾਈਟਲ(_T):"
2041  
2042  #~ msgid "Title and Command"
2043  #~ msgstr "ਟਾਈਟਲ ਅਤੇ ਕਮਾਂਡ"
2044 @@ -2778,8 +2777,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2045  #~ msgid "_Unlimited"
2046  #~ msgstr "ਬੇਅੰਤ(_U)"
2047  
2048 -#~ msgid "Set Title"
2049 -#~ msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
2050 +msgid "Set Title"
2051 +msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
2052  
2053  #~ msgid "Current Locale"
2054  #~ msgstr "ਮੌਜੂਦ ਲੋਕੇਲ"
2055 @@ -3559,8 +3558,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2056  #~ msgid "_Solid color"
2057  #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
2058  
2059 -#~ msgid "_Transparent background"
2060 -#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)"
2061 +msgid "Transparent background"
2062 +msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ"
2063  
2064  #~ msgid "S/Key Challenge Response"
2065  #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
2066 diff --git a/po/ps.po b/po/ps.po
2067 index b25a2cb41712..3855b2f3423f 100644
2068 --- a/po/ps.po
2069 +++ b/po/ps.po
2070 @@ -810,8 +810,8 @@ msgid "_Base on:"
2071  msgstr ":پر بنسټ د_"
2072  
2073  #: ../src/profile-preferences.glade.h:1
2074 -msgid "<b>Command</b>"
2075 -msgstr "<b>بولۍ</b>"
2076 +msgid "Command"
2077 +msgstr "بولۍ"
2078  
2079  #: ../src/profile-preferences.glade.h:2
2080  msgid "<b>Foreground and Background</b>"
2081 @@ -1053,8 +1053,8 @@ msgid "_Text color:"
2082  msgstr ":د ليکنې رنګ_"
2083  
2084  #: ../src/profile-preferences.glade.h:69
2085 -msgid "_Transparent background"
2086 -msgstr "روڼ شاليد_"
2087 +msgid "Transparent background"
2088 +msgstr "روڼ شاليد"
2089  
2090  #: ../src/profile-preferences.glade.h:70
2091  msgid "_Update login records when command is launched"
2092 diff --git a/po/pt.po b/po/pt.po
2093 index 5181419ad973..3df37f6d5bc7 100644
2094 --- a/po/pt.po
2095 +++ b/po/pt.po
2096 @@ -2360,11 +2360,11 @@ msgstr "Fechar jane_la"
2097  #~ msgid "Default size:"
2098  #~ msgstr "Tamanho predefinido:"
2099  
2100 -#~ msgid "Title"
2101 -#~ msgstr "Título"
2102 +msgid "Title"
2103 +msgstr "Título"
2104  
2105 -#~ msgid "_Title:"
2106 -#~ msgstr "_Título:"
2107 +msgid "_Title:"
2108 +msgstr "_Título:"
2109  
2110  #~ msgid "Title and Command"
2111  #~ msgstr "Título e comando"
2112 @@ -2372,8 +2372,8 @@ msgstr "Fechar jane_la"
2113  #~ msgid "_Unlimited"
2114  #~ msgstr "_Ilimitado"
2115  
2116 -#~ msgid "Set Title"
2117 -#~ msgstr "Definir o Título"
2118 +msgid "Set Title"
2119 +msgstr "Definir o Título"
2120  
2121  #~ msgid "Current Locale"
2122  #~ msgstr "Configuração Regional Atual"
2123 @@ -3160,8 +3160,8 @@ msgstr "Fechar jane_la"
2124  #~ msgid "Background image _scrolls"
2125  #~ msgstr "Imagem de fundo _rola"
2126  
2127 -#~ msgid "_Transparent background"
2128 -#~ msgstr "Fundo _transparente"
2129 +msgid "Transparent background"
2130 +msgstr "Fundo transparente"
2131  
2132  #~ msgid "S_hade transparent or image background:"
2133  #~ msgstr "Transparente som_breado ou imagem de fundo:"
2134 --- gnome-terminal-3.42.0/po/pt_BR.po.orig      2021-09-27 20:48:56.414125950 +0200
2135 +++ gnome-terminal-3.42.0/po/pt_BR.po   2021-09-27 20:52:08.016421285 +0200
2136 @@ -2482,3 +2482,6 @@ msgstr "_Fechar janela"
2137  #, c-format
2138  msgid "Failed to parse arguments: %s\n"
2139  msgstr "Falha ao analisar os argumentos: %s\n"
2140 +
2141 +msgid "Transparent background"
2142 +msgstr "Fundo transparente"
2143 diff --git a/po/ro.po b/po/ro.po
2144 index 53dd72be9c45..d694adf36934 100644
2145 --- a/po/ro.po
2146 +++ b/po/ro.po
2147 @@ -3412,8 +3412,8 @@ msgstr "Î_nchide fereastra"
2148  #~ msgid "_Solid color"
2149  #~ msgstr "Culoare _solidă"
2150  
2151 -#~ msgid "_Transparent background"
2152 -#~ msgstr "Fundal _transparent"
2153 +msgid "Transparent background"
2154 +msgstr "Fundal transparent"
2155  
2156  #~ msgid "_Unlimited"
2157  #~ msgstr "_Neliminat"
2158 diff --git a/po/ru.po b/po/ru.po
2159 index fedc4d3ec51c..c08bffcb4d10 100644
2160 --- a/po/ru.po
2161 +++ b/po/ru.po
2162 @@ -2539,3 +2539,6 @@ msgstr "_Закрыть окно"
2163  
2164  #~ msgid "_Add or Remove…"
2165  #~ msgstr "_Добавить или удалить…"
2166 +
2167 +msgid "Transparent background"
2168 +msgstr "Прозрачный фон"
2169 diff --git a/po/rw.po b/po/rw.po
2170 index 012f64e325c3..5ff633f8b3c2 100644
2171 --- a/po/rw.po
2172 +++ b/po/rw.po
2173 @@ -749,7 +749,7 @@ msgstr "Ibara ry'Inyandiko..."
2174  
2175  #: ../src/gnome-terminal.glade2.h:102
2176  #, fuzzy
2177 -msgid "_Transparent background"
2178 +msgid "Transparent background"
2179  msgstr "Mbuganyuma"
2180  
2181  #: ../src/gnome-terminal.glade2.h:103
2182 @@ -2398,7 +2398,6 @@ msgstr ""
2183  
2184  # sch/source\ui\app\menu.src:RID_MENU.WORKAROUND_22.SID_INSERT_TITLE.text
2185  #: ../src/terminal-screen.c:2005
2186 -#, fuzzy
2187  msgid "_Title:"
2188  msgstr "Umutwe..."
2189  
2190 diff --git a/po/si.po b/po/si.po
2191 index adca7d5acba9..6379cee7f0a3 100644
2192 --- a/po/si.po
2193 +++ b/po/si.po
2194 @@ -218,8 +218,8 @@ msgid "<b>Background</b>"
2195  msgstr "<b>පසුබිම</b>"
2196  
2197  #: ../src/gnome-terminal.glade2.h:3
2198 -msgid "<b>Command</b>"
2199 -msgstr "<b>විධානය</b>"
2200 +msgid "Command"
2201 +msgstr "විධානය"
2202  
2203  #: ../src/gnome-terminal.glade2.h:4
2204  msgid "<b>Compatibility</b>"
2205 @@ -538,8 +538,8 @@ msgid "_Text color:"
2206  msgstr "පෙළ වර්‍ණ: (_T)"
2207  
2208  #: ../src/gnome-terminal.glade2.h:86
2209 -msgid "_Transparent background"
2210 -msgstr "විනිවිද පෙනෙන පසුබිම (_T)"
2211 +msgid "Transparent background"
2212 +msgstr "විනිවිද පෙනෙන පසුබිම"
2213  
2214  #: ../src/gnome-terminal.glade2.h:87
2215  msgid "_Update login records when command is launched"
2216 diff --git a/po/sk.po b/po/sk.po
2217 index d0282159b459..01dd96a06939 100644
2218 --- a/po/sk.po
2219 +++ b/po/sk.po
2220 @@ -2916,3 +2916,6 @@ msgstr "_Zavrieť okno"
2221  #~ "\n"
2222  #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
2223  #~ "help“.\n"
2224 +
2225 +msgid "Transparent background"
2226 +msgstr "Priehľadné pozadie"
2227 diff --git a/po/sl.po b/po/sl.po
2228 index db9cb98834fe..261abe9c1e64 100644
2229 --- a/po/sl.po
2230 +++ b/po/sl.po
2231 @@ -2663,17 +2663,17 @@ msgstr "_Zapri okno"
2232  #~ msgid "Default size:"
2233  #~ msgstr "Privzeta velikost:"
2234  
2235 -#~ msgid "Title"
2236 -#~ msgstr "Naslov"
2237 +msgid "Title"
2238 +msgstr "Naslov"
2239  
2240 -#~ msgid "_Title:"
2241 -#~ msgstr "_Naziv:"
2242 +msgid "_Title:"
2243 +msgstr "_Naziv:"
2244  
2245  #~ msgid "Title and Command"
2246  #~ msgstr "Naziv in ukaz"
2247  
2248 -#~ msgid "Set Title"
2249 -#~ msgstr "Določitev naziva okna"
2250 +msgid "Set Title"
2251 +msgstr "Določitev naziva okna"
2252  
2253  #~ msgid "Current Locale"
2254  #~ msgstr "Trenutne jezikovne nastavitve"
2255 @@ -2788,3 +2788,6 @@ msgstr "_Zapri okno"
2256  
2257  #~ msgid "_Profile Preferences…"
2258  #~ msgstr "Možnosti _profila ..."
2259 +
2260 +msgid "Transparent background"
2261 +msgstr "Prosojno ozadje"
2262 diff --git a/po/sq.po b/po/sq.po
2263 index 158f6cb167cc..a3494fb70bd6 100644
2264 --- a/po/sq.po
2265 +++ b/po/sq.po
2266 @@ -225,8 +225,8 @@ msgid "<b>Background</b>"
2267  msgstr "<b>Sfondi</b>"
2268  
2269  #: ../src/gnome-terminal.glade2.h:3
2270 -msgid "<b>Command</b>"
2271 -msgstr "<b>Komanda</b>"
2272 +msgid "Command"
2273 +msgstr "Komanda"
2274  
2275  #: ../src/gnome-terminal.glade2.h:4
2276  msgid "<b>Compatibility</b>"
2277 @@ -568,8 +568,8 @@ msgstr "Ngjyra e _tekstit:"
2278  
2279  # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
2280  #: ../src/gnome-terminal.glade2.h:85
2281 -msgid "_Transparent background"
2282 -msgstr "Sfond _Trasparent"
2283 +msgid "Transparent background"
2284 +msgstr "Sfond Trasparent"
2285  
2286  #: ../src/gnome-terminal.glade2.h:86
2287  msgid "_Update login records when command is launched"
2288 diff --git a/po/sr.po b/po/sr.po
2289 index 8bf15f3250a4..81a73722c616 100644
2290 --- a/po/sr.po
2291 +++ b/po/sr.po
2292 @@ -2576,10 +2576,9 @@ msgstr "_Затвори прозор"
2293  #~ msgid "GNOME Terminal Client"
2294  #~ msgstr "Клијент Гномовог терминала"
2295  
2296 -#~| msgid "Terminal"
2297 -#~ msgctxt "title"
2298 -#~ msgid "'Terminal'"
2299 -#~ msgstr "„Терминал“"
2300 +msgctxt "title"
2301 +msgid "'Terminal'"
2302 +msgstr "„Терминал“"
2303  
2304  #~ msgid "Title for terminal"
2305  #~ msgstr "Наслов за терминал"
2306 @@ -2625,11 +2624,11 @@ msgstr "_Затвори прозор"
2307  #~ msgid "Default size:"
2308  #~ msgstr "Основна величина:"
2309  
2310 -#~ msgid "Title"
2311 -#~ msgstr "Наслов"
2312 +msgid "Title"
2313 +msgstr "Наслов"
2314  
2315 -#~ msgid "_Title:"
2316 -#~ msgstr "_Наслов:"
2317 +msgid "_Title:"
2318 +msgstr "_Наслов:"
2319  
2320  #~ msgid "Title and Command"
2321  #~ msgstr "Наслов и наредба"
2322 @@ -2637,8 +2636,8 @@ msgstr "_Затвори прозор"
2323  #~ msgid "_Unlimited"
2324  #~ msgstr "_Неограничено"
2325  
2326 -#~ msgid "Set Title"
2327 -#~ msgstr "Постави наслов"
2328 +msgid "Set Title"
2329 +msgstr "Постави наслов"
2330  
2331  #~ msgid "Current Locale"
2332  #~ msgstr "Текући локалитет"
2333 @@ -2648,3 +2647,6 @@ msgstr "_Затвори прозор"
2334  
2335  #~ msgid "Hidden"
2336  #~ msgstr "Скривен"
2337 +
2338 +msgid "Transparent background"
2339 +msgstr "Провидна позадина"
2340 diff --git a/po/sr@latin.po b/po/sr@latin.po
2341 index 45dbad07fba7..852c47cc6ee5 100644
2342 --- a/po/sr@latin.po
2343 +++ b/po/sr@latin.po
2344 @@ -2576,10 +2576,9 @@ msgstr "_Zatvori prozor"
2345  #~ msgid "GNOME Terminal Client"
2346  #~ msgstr "Klijent Gnomovog terminala"
2347  
2348 -#~| msgid "Terminal"
2349 -#~ msgctxt "title"
2350 -#~ msgid "'Terminal'"
2351 -#~ msgstr "„Terminal“"
2352 +msgctxt "title"
2353 +msgid "'Terminal'"
2354 +msgstr "„Terminal“"
2355  
2356  #~ msgid "Title for terminal"
2357  #~ msgstr "Naslov za terminal"
2358 @@ -2625,11 +2624,11 @@ msgstr "_Zatvori prozor"
2359  #~ msgid "Default size:"
2360  #~ msgstr "Osnovna veličina:"
2361  
2362 -#~ msgid "Title"
2363 -#~ msgstr "Naslov"
2364 +msgid "Title"
2365 +msgstr "Naslov"
2366  
2367 -#~ msgid "_Title:"
2368 -#~ msgstr "_Naslov:"
2369 +msgid "_Title:"
2370 +msgstr "_Naslov:"
2371  
2372  #~ msgid "Title and Command"
2373  #~ msgstr "Naslov i naredba"
2374 @@ -2637,8 +2636,8 @@ msgstr "_Zatvori prozor"
2375  #~ msgid "_Unlimited"
2376  #~ msgstr "_Neograničeno"
2377  
2378 -#~ msgid "Set Title"
2379 -#~ msgstr "Postavi naslov"
2380 +msgid "Set Title"
2381 +msgstr "Postavi naslov"
2382  
2383  #~ msgid "Current Locale"
2384  #~ msgstr "Tekući lokalitet"
2385 @@ -2648,3 +2647,6 @@ msgstr "_Zatvori prozor"
2386  
2387  #~ msgid "Hidden"
2388  #~ msgstr "Skriven"
2389 +
2390 +msgid "Transparent background"
2391 +msgstr "Providna pozadina"
2392 diff --git a/po/sv.po b/po/sv.po
2393 index 8560fde55941..bd1030f519ab 100644
2394 --- a/po/sv.po
2395 +++ b/po/sv.po
2396 @@ -2572,5 +2572,8 @@ msgstr "Stän_g fönster"
2397  #~ msgid "Unknown completion request for \"%s\""
2398  #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
2399  
2400 +msgid "Transparent background"
2401 +msgstr "Genomskinlig bakgrund"
2402 +
2403  #~ msgid "Missing command"
2404  #~ msgstr "Kommando saknas"
2405 diff --git a/po/ta.po b/po/ta.po
2406 index 80aa2f684eec..afd335b0faf0 100644
2407 --- a/po/ta.po
2408 +++ b/po/ta.po
2409 @@ -2171,10 +2171,9 @@ msgstr "_l சாளரத்தை மூடவும்"
2410  #~ msgid "Show server options"
2411  #~ msgstr "சேவையக தேர்வுகளை காட்டுக"
2412  
2413 -#~| msgid "Terminal"
2414 -#~ msgctxt "title"
2415 -#~ msgid "'Terminal'"
2416 -#~ msgstr "'முனையம்'"
2417 +msgctxt "title"
2418 +msgid "'Terminal'"
2419 +msgstr "'முனையம்'"
2420  
2421  #~ msgid "Title for terminal"
2422  #~ msgstr "முனையத்தின் தலைப்பு"
2423 @@ -2221,11 +2220,11 @@ msgstr "_l சாளரத்தை மூடவும்"
2424  #~ msgid "Default size:"
2425  #~ msgstr "முன்னிருப்பு அளவு:"
2426  
2427 -#~ msgid "Title"
2428 -#~ msgstr "தலைப்பு"
2429 +msgid "Title"
2430 +msgstr "தலைப்பு"
2431  
2432 -#~ msgid "_Title:"
2433 -#~ msgstr "_T தலைப்பு:"
2434 +msgid "_Title:"
2435 +msgstr "_T தலைப்பு:"
2436  
2437  #~ msgid "Title and Command"
2438  #~ msgstr "தலைப்பும் கட்டளையும்"
2439 @@ -2233,8 +2232,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2440  #~ msgid "_Unlimited"
2441  #~ msgstr "_U வரையரை இல்லாத"
2442  
2443 -#~ msgid "Set Title"
2444 -#~ msgstr "தலைப்பை அமைக்க"
2445 +msgid "Set Title"
2446 +msgstr "தலைப்பை அமைக்க"
2447  
2448  #~| msgid "_Terminal"
2449  #~ msgid "_About Terminal"
2450 @@ -2243,8 +2242,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2451  #~ msgid "Current Locale"
2452  #~ msgstr "தற்போதைய மொழி"
2453  
2454 -#~ msgid "_Set Title…"
2455 -#~ msgstr "(_S) தலைப்பை அமைக்க..."
2456 +msgid "_Set Title…"
2457 +msgstr "(_S) தலைப்பை அமைக்க..."
2458  
2459  #~ msgid "_Next Tab"
2460  #~ msgstr "அடுத்த கீற்று (_N)"
2461 @@ -3028,8 +3027,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2462  #~ msgid "_Solid color"
2463  #~ msgstr "(_S) ஒரே வண்ணம்"
2464  
2465 -#~ msgid "_Transparent background"
2466 -#~ msgstr "_T புலப்பாடு பின்னணி"
2467 +msgid "Transparent background"
2468 +msgstr "புலப்பாடு பின்னணி"
2469  
2470  #~ msgid "No such profile \"%s\", using default profile\n"
2471  #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
2472 diff --git a/po/te.po b/po/te.po
2473 index 82c0e0fc8f54..0dd3d871f639 100644
2474 --- a/po/te.po
2475 +++ b/po/te.po
2476 @@ -2055,10 +2055,9 @@ msgstr "కిటికీని మూసివేయి (_l)"
2477  #~ msgid "Show server options"
2478  #~ msgstr "సేవకము ఐచ్చికాలను చూపించు"
2479  
2480 -#, fuzzy
2481 -#~ msgctxt "title"
2482 -#~ msgid "'Terminal'"
2483 -#~ msgstr "టెర్మినల్"
2484 +msgctxt "title"
2485 +msgid "'Terminal'"
2486 +msgstr "టెర్మినల్"
2487  
2488  #~ msgid "Title for terminal"
2489  #~ msgstr "టెర్మినల్ కు శీర్షిక"
2490 @@ -2104,11 +2103,11 @@ msgstr "కిటికీని మూసివేయి (_l)"
2491  #~ msgid "Default size:"
2492  #~ msgstr "అప్రమేయ పరిమాణం:"
2493  
2494 -#~ msgid "Title"
2495 -#~ msgstr "శీర్షిక:"
2496 +msgid "Title"
2497 +msgstr "శీర్షిక:"
2498  
2499 -#~ msgid "_Title:"
2500 -#~ msgstr "శీర్షిక (_T):"
2501 +msgid "_Title:"
2502 +msgstr "శీర్షిక (_T):"
2503  
2504  #~ msgid "Title and Command"
2505  #~ msgstr "శీర్షిక మరియు ఆదేశం"
2506 @@ -2116,14 +2115,14 @@ msgstr "కిటికీని మూసివేయి (_l)"
2507  #~ msgid "_Unlimited"
2508  #~ msgstr "అపరిమితమైన (_U)"
2509  
2510 -#~ msgid "Set Title"
2511 -#~ msgstr "శీర్షికను అమర్చు"
2512 +msgid "Set Title"
2513 +msgstr "శీర్షికను అమర్చు"
2514  
2515  #~ msgid "Current Locale"
2516  #~ msgstr "ప్రస్తుత స్థానికం"
2517  
2518 -#~ msgid "_Set Title…"
2519 -#~ msgstr "శీర్షికను అమర్చు... (_S)"
2520 +msgid "_Set Title…"
2521 +msgstr "శీర్షికను అమర్చు... (_S)"
2522  
2523  #~ msgid "_Next Tab"
2524  #~ msgstr "తరువాతి ట్యాబ్(_N)"
2525 @@ -2898,8 +2897,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
2526  #~ msgid "Background image _scrolls"
2527  #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
2528  
2529 -#~ msgid "_Transparent background"
2530 -#~ msgstr "పారదర్శక నేపథ్యం (_T)"
2531 +msgid "Transparent background"
2532 +msgstr "పారదర్శక నేపథ్యం"
2533  
2534  #~ msgid "S_hade transparent or image background:"
2535  #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
2536 diff --git a/po/tg.po b/po/tg.po
2537 index e3feef658e1e..6371c036626f 100644
2538 --- a/po/tg.po
2539 +++ b/po/tg.po
2540 @@ -2158,23 +2158,23 @@ msgstr "П_ӯшонидани равзана"
2541  #~ msgid "Default size:"
2542  #~ msgstr "Андозаи пешфарз:"
2543  
2544 -#~ msgid "Title"
2545 -#~ msgstr "Сарлавҳа"
2546 +msgid "Title"
2547 +msgstr "Сарлавҳа"
2548  
2549 -#~ msgid "_Title:"
2550 -#~ msgstr "_Вазифа:"
2551 +msgid "_Title:"
2552 +msgstr "_Вазифа:"
2553  
2554  #~ msgid "Title and Command"
2555  #~ msgstr "Унвон ва Фармон"
2556  
2557 -#~ msgid "Set Title"
2558 -#~ msgstr "Таъин кардани сарлавҳа"
2559 +msgid "Set Title"
2560 +msgstr "Таъин кардани сарлавҳа"
2561  
2562  #~ msgid "Current Locale"
2563  #~ msgstr "Маҳаллигардонии ҷорӣ"
2564  
2565 -#~ msgid "_Set Title…"
2566 -#~ msgstr "_Танзими сарлавҳа..."
2567 +msgid "_Set Title…"
2568 +msgstr "_Танзими сарлавҳа..."
2569  
2570  #~ msgid "_Next Tab"
2571  #~ msgstr "_Варақаи навбатӣ"
2572 diff --git a/po/th.po b/po/th.po
2573 index 63263749655c..496da331bbf9 100644
2574 --- a/po/th.po
2575 +++ b/po/th.po
2576 @@ -2308,23 +2308,23 @@ msgstr "ปิ_ดหน้าต่าง"
2577  #~ msgid "Default size:"
2578  #~ msgstr "ขนาดปริยาย:"
2579  
2580 -#~ msgid "Title"
2581 -#~ msgstr "หัวเรื่อง"
2582 +msgid "Title"
2583 +msgstr "หัวเรื่อง"
2584  
2585 -#~ msgid "_Title:"
2586 -#~ msgstr "_หัวเรื่อง:"
2587 +msgid "_Title:"
2588 +msgstr "_หัวเรื่อง:"
2589  
2590  #~ msgid "Title and Command"
2591  #~ msgstr "หัวเรื่องและคำสั่ง"
2592  
2593 -#~ msgid "Set Title"
2594 -#~ msgstr "ตั้งหัวเรื่อง"
2595 +msgid "Set Title"
2596 +msgstr "ตั้งหัวเรื่อง"
2597  
2598  #~ msgid "Current Locale"
2599  #~ msgstr "ตามโลแคลปัจจุบัน"
2600  
2601 -#~ msgid "_Set Title…"
2602 -#~ msgstr "ตั้งป้าย_ชื่อ…"
2603 +msgid "_Set Title…"
2604 +msgstr "ตั้งป้าย_ชื่อ…"
2605  
2606  #~ msgid "_Next Tab"
2607  #~ msgstr "แท็บ_ถัดไป"
2608 @@ -2803,8 +2803,8 @@ msgstr "ปิ_ดหน้าต่าง"
2609  #~ msgid "_Solid color"
2610  #~ msgstr "สี_ทึบ"
2611  
2612 -#~ msgid "_Transparent background"
2613 -#~ msgstr "พื้นหลังโปร่งแ_สง"
2614 +msgid "Transparent background"
2615 +msgstr "พื้นหลังโปร่งแสง"
2616  
2617  #~ msgid ""
2618  #~ "You already have a profile called “%s”. Do you want to create another "
2619 diff --git a/po/tr.po b/po/tr.po
2620 index fa79334e08dc..5b988d7dbd4a 100644
2621 --- a/po/tr.po
2622 +++ b/po/tr.po
2623 @@ -2558,3 +2558,6 @@ msgstr "_Pencereyi Kapat"
2624  
2625  #~ msgid "_Same as text color"
2626  #~ msgstr "_Metin rengiyle aynı"
2627 +
2628 +msgid "Transparent background"
2629 +msgstr "Şeffaf arkaplan"
2630 diff --git a/po/ug.po b/po/ug.po
2631 index 313f76b98eae..be6089762082 100644
2632 --- a/po/ug.po
2633 +++ b/po/ug.po
2634 @@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
2635  #~ msgid "_Solid color"
2636  #~ msgstr "ساپ رەڭ(_S)"
2637  
2638 -#~ msgid "_Transparent background"
2639 -#~ msgstr "سۈزۈك تەگلىك(_T)"
2640 +msgid "Transparent background"
2641 +msgstr "سۈزۈك تەگلىك"
2642  
2643  #~ msgid ""
2644  #~ "You already have a profile called “%s”. Do you want to create another "
2645 --- gnome-terminal-3.42.0/po/uk.po.orig 2021-09-27 20:52:35.752937690 +0200
2646 +++ gnome-terminal-3.42.0/po/uk.po      2021-09-27 20:54:10.739089772 +0200
2647 @@ -2453,3 +2453,6 @@ msgstr "Закр_ити вікно"
2648  #, c-format
2649  msgid "Failed to parse arguments: %s\n"
2650  msgstr "Не вдається визначити аргументи: %s\n"
2651 +
2652 +msgid "Transparent background"
2653 +msgstr "Прозоре тло"
2654 --- a/po/vi.po
2655 +++ b/po/vi.po
2656 @@ -2673,8 +2673,8 @@ msgstr "Đón_g cửa sổ"
2657  #~ msgid "Default size:"
2658  #~ msgstr "Cỡ mặc định:"
2659  
2660 -#~ msgid "Title"
2661 -#~ msgstr "Tựa đề"
2662 +msgid "Title"
2663 +msgstr "Tựa đề"
2664  
2665  #~ msgid "When terminal commands set their o_wn titles:"
2666  #~ msgstr "Khi câu lệnh thiết bị cuối tự đặt tựa đề _mình:"
2667 @@ -2685,8 +2685,8 @@ msgstr "Đón_g cửa sổ"
2668  #~ msgid "_Unlimited"
2669  #~ msgstr "_Không hạn chế"
2670  
2671 -#~ msgid "Set Title"
2672 -#~ msgstr "Đặt tựa đề"
2673 +msgid "Set Title"
2674 +msgstr "Đặt tựa đề"
2675  
2676  #~ msgid "Switch to Tab 3"
2677  #~ msgstr "Chuyển sang Thanh 3"
2678 @@ -2727,8 +2727,8 @@ msgstr "Đón_g cửa sổ"
2679  #~ msgid "_Input Methods"
2680  #~ msgstr "K_iểu gõ"
2681  
2682 -#~ msgid "_Title:"
2683 -#~ msgstr "_Tựa đề:"
2684 +msgid "_Title:"
2685 +msgstr "_Tựa đề:"
2686  
2687  #~ msgid "Disable connection to session manager"
2688  #~ msgstr "Tắt kết nối đến trình quản lý phiên làm việc"
2689 @@ -3113,3 +3113,6 @@ msgstr "Đón_g cửa sổ"
2690  #~ "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 "
2691  #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị "
2692  #~ "tắt), nghĩa là không có phím tắt cho hành động này."
2693 +
2694 +msgid "Transparent background"
2695 +msgstr "Nền trong suốt"
2696 diff --git a/po/wa.po b/po/wa.po
2697 index 0e0a6a752b6d..5ddeb2393654 100644
2698 --- a/po/wa.po
2699 +++ b/po/wa.po
2700 @@ -224,8 +224,8 @@ msgid "<b>Background</b>"
2701  msgstr "<b>Fond</b>"
2702  
2703  #: ../src/gnome-terminal.glade2.h:3
2704 -msgid "<b>Command</b>"
2705 -msgstr "<b>Comande</b>"
2706 +msgid "Command"
2707 +msgstr "Comande"
2708  
2709  #: ../src/gnome-terminal.glade2.h:4
2710  msgid "<b>Compatibility</b>"
2711 @@ -564,8 +564,8 @@ msgid "_Text color:"
2712  msgstr "Coleur pol _tecse:"
2713  
2714  #: ../src/gnome-terminal.glade2.h:86
2715 -msgid "_Transparent background"
2716 -msgstr "Fond k' on voet _houte"
2717 +msgid "Transparent background"
2718 +msgstr "Fond k' on voet houte"
2719  
2720  #: ../src/gnome-terminal.glade2.h:87
2721  msgid "_Update login records when command is launched"
2722 @@ -2227,8 +2227,8 @@ msgid "Change _Profile"
2723  msgstr "Candjî _profil"
2724  
2725  #: ../src/terminal-window.c:1013
2726 -msgid "_Set Title..."
2727 -msgstr "_Candjî l' tite..."
2728 +msgid "_Set Title…"
2729 +msgstr "_Candjî l' tite…"
2730  
2731  #: ../src/terminal-window.c:1020
2732  msgid "Set _Character Encoding"
2733 diff --git a/po/xh.po b/po/xh.po
2734 index 44a8e21c7842..12aa6d190d99 100644
2735 --- a/po/xh.po
2736 +++ b/po/xh.po
2737 @@ -217,8 +217,8 @@ msgid "<b>Background</b>"
2738  msgstr "<b>Okungasemva</b>"
2739  
2740  #: ../src/gnome-terminal.glade2.h:2
2741 -msgid "<b>Command</b>"
2742 -msgstr "<b>Umyalelo</b>"
2743 +msgid "Command"
2744 +msgstr "Umyalelo"
2745  
2746  #: ../src/gnome-terminal.glade2.h:3
2747  msgid "<b>Compatibility</b>"
2748 @@ -621,8 +621,8 @@ msgid "_Text color:"
2749  msgstr "_Umbala wombhalo:"
2750  
2751  #: ../src/gnome-terminal.glade2.h:102
2752 -msgid "_Transparent background"
2753 -msgstr "_Okungasemva okucace gca"
2754 +msgid "Transparent background"
2755 +msgstr "Okungasemva okucace gca"
2756  
2757  #: ../src/gnome-terminal.glade2.h:103
2758  msgid "_Update login records when command is launched"
2759 @@ -2265,8 +2265,8 @@ msgid "Change _Profile"
2760  msgstr "Tsintsha i_Nkangeleko"
2761  
2762  #: ../src/terminal-window.c:979
2763 -msgid "_Set Title..."
2764 -msgstr "_Misela..."
2765 +msgid "_Set Title…"
2766 +msgstr "_Misela…"
2767  
2768  #: ../src/terminal-window.c:986
2769  msgid "Set _Character Encoding"
2770 diff --git a/po/zh_CN.po b/po/zh_CN.po
2771 index 6c80dcd1231a..51e5f9999176 100644
2772 --- a/po/zh_CN.po
2773 +++ b/po/zh_CN.po
2774 @@ -2580,17 +2580,17 @@ msgstr "关闭窗口(_L)"
2775  #~ msgid "Default size:"
2776  #~ msgstr "默认大小:"
2777  
2778 -#~ msgid "Title"
2779 -#~ msgstr "标题"
2780 +msgid "Title"
2781 +msgstr "标题"
2782  
2783 -#~ msgid "_Title:"
2784 -#~ msgstr "标题(_T):"
2785 +msgid "_Title:"
2786 +msgstr "标题(_T):"
2787  
2788  #~ msgid "Title and Command"
2789  #~ msgstr "标题和命令"
2790  
2791 -#~ msgid "Set Title"
2792 -#~ msgstr "设置标题"
2793 +msgid "Set Title"
2794 +msgstr "设置标题"
2795  
2796  #~ msgid "Current Locale"
2797  #~ msgstr "当前区域"
2798 @@ -2703,3 +2703,6 @@ msgstr "关闭窗口(_L)"
2799  
2800  #~ msgid "_Find..."
2801  #~ msgstr "查找(_F)..."
2802 +
2803 +msgid "Transparent background"
2804 +msgstr "透明背景"
2805 diff --git a/po/zh_HK.po b/po/zh_HK.po
2806 index 61153529f0c7..c366abddd1af 100644
2807 --- a/po/zh_HK.po
2808 +++ b/po/zh_HK.po
2809 @@ -2114,17 +2114,17 @@ msgstr "關閉視窗(_L)"
2810  #~ msgid "Default size:"
2811  #~ msgstr "預設大小:"
2812  
2813 -#~ msgid "Title"
2814 -#~ msgstr "標題"
2815 +msgid "Title"
2816 +msgstr "標題"
2817  
2818 -#~ msgid "_Title:"
2819 -#~ msgstr "標題(_T):"
2820 +msgid "_Title:"
2821 +msgstr "標題(_T):"
2822  
2823  #~ msgid "Title and Command"
2824  #~ msgstr "標題及指令"
2825  
2826 -#~ msgid "Set Title"
2827 -#~ msgstr "設定標題"
2828 +msgid "Set Title"
2829 +msgstr "設定標題"
2830  
2831  #~ msgid "Current Locale"
2832  #~ msgstr "目前的地區設定"
2833 @@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
2834  
2835  #~ msgid "Show session management options"
2836  #~ msgstr "顯示作業階段管理選項"
2837 +
2838 +msgid "Transparent background"
2839 +msgstr "透明背景"
2840 diff --git a/po/zh_TW.po b/po/zh_TW.po
2841 index b9890ad91bdc..18e55e2e945c 100644
2842 --- a/po/zh_TW.po
2843 +++ b/po/zh_TW.po
2844 @@ -2562,17 +2562,17 @@ msgstr "關閉視窗(_L)"
2845  #~ msgid "Default size:"
2846  #~ msgstr "預設大小:"
2847  
2848 -#~ msgid "Title"
2849 -#~ msgstr "標題"
2850 +msgid "Title"
2851 +msgstr "標題"
2852  
2853 -#~ msgid "_Title:"
2854 -#~ msgstr "標題(_T):"
2855 +msgid "_Title:"
2856 +msgstr "標題(_T):"
2857  
2858  #~ msgid "Title and Command"
2859  #~ msgstr "標題及指令"
2860  
2861 -#~ msgid "Set Title"
2862 -#~ msgstr "設定標題"
2863 +msgid "Set Title"
2864 +msgstr "設定標題"
2865  
2866  #~ msgid "Current Locale"
2867  #~ msgstr "目前的地區設定"
2868 @@ -2784,3 +2784,6 @@ msgstr "關閉視窗(_L)"
2869  
2870  #~ msgid "Show session management options"
2871  #~ msgstr "顯示作業階段管理選項"
2872 +
2873 +msgid "Transparent background"
2874 +msgstr "透明背景"
2875 -- 
2876 2.19.1
This page took 0.548446 seconds and 4 git commands to generate.