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