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