]> git.pld-linux.org Git - packages/gnome-terminal.git/blobdiff - gnome-terminal-transparency.patch
- updated to 3.48.1 (GNOME 44)
[packages/gnome-terminal.git] / gnome-terminal-transparency.patch
index 35f1e031cc0c1926151f7fe691ecfb54155e0050..734f6130a08bc4bf053aa164ef8a801f65c4ed01 100644 (file)
@@ -110,38 +110,34 @@ index 6259aac0f02f..f5c366f14e10 100644
                                        </object>
                                      </child>
                                    </object>
-diff --git a/src/profile-editor.c b/src/profile-editor.c
-index eaad9182fed2..e03e35fc1bea 100644
---- a/src/profile-editor.c
-+++ b/src/profile-editor.c
-@@ -1254,6 +1254,22 @@ profile_prefs_load (const char *uuid, GSettings *profile)
-                                w,
-                                "active-id",
-                                G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
-+
+--- gnome-terminal-3.42.0/src/profile-editor.cc.orig   2021-09-22 18:38:05.775667700 +0200
++++ gnome-terminal-3.42.0/src/profile-editor.cc        2021-09-27 21:23:43.302820304 +0200
+@@ -1486,6 +1486,22 @@ profile_prefs_load (const char *uuid, GS
+                                GSettingsBindFlags(G_SETTINGS_BIND_GET |
+                                                 G_SETTINGS_BIND_SET));
 +  profile_prefs_settings_bind (profile,
 +                               TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
 +                               gtk_builder_get_object (builder, "use-transparent-background"),
 +                               "active",
-+                               G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
++                               GSettingsBindFlags(G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET));
 +  profile_prefs_settings_bind (profile,
 +                               TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
 +                               gtk_builder_get_object (builder, "background-transparent-scale"),
 +                               "sensitive",
-+                               G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY);
++                               GSettingsBindFlags(G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY));
 +  profile_prefs_settings_bind (profile,
 +                               TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT,
 +                               gtk_builder_get_object (builder, "background-transparent-adjustment"),
 +                               "value",
-+                               G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
- }
- /* Called once per Preferences window, to destroy stuff that doesn't depend on the profile being edited */
-diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
-index 5b0d8c3ed416..4da44232e491 100644
---- a/src/terminal-schemas.h
-+++ b/src/terminal-schemas.h
-@@ -73,6 +73,9 @@ G_BEGIN_DECLS
++                               GSettingsBindFlags(G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET));
++
+   w = (GtkWidget *) gtk_builder_get_object (builder, "enable-sixel-checkbutton");
+   profile_prefs_settings_bind (profile, TERMINAL_PROFILE_ENABLE_SIXEL_KEY, w,
+                                "active",
+--- gnome-terminal-3.42.0/src/terminal-schemas.hh.orig 2021-04-17 08:51:31.266561277 +0200
++++ gnome-terminal-3.42.0/src/terminal-schemas.hh      2021-04-17 09:04:42.797545957 +0200
+@@ -76,6 +76,9 @@ G_BEGIN_DECLS
  #define TERMINAL_PROFILE_VISIBLE_NAME_KEY               "visible-name"
  #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY       "word-char-exceptions"
  
@@ -149,12 +145,10 @@ index 5b0d8c3ed416..4da44232e491 100644
 +#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent"
 +
  #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY              "confirm-close"
+ #define TERMINAL_SETTING_CONTEXT_INFO_KEY               "context-info"
  #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY       "default-show-menubar"
- #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY      "menu-accelerator-enabled"
-diff --git a/src/terminal-screen.c b/src/terminal-screen.c
-index a85fcefd40e1..26202e4555ea 100644
---- a/src/terminal-screen.c
-+++ b/src/terminal-screen.c
+--- a/src/terminal-screen.cc
++++ b/src/terminal-screen.cc
 @@ -800,7 +800,9 @@ terminal_screen_profile_changed_cb (GSettings     *profile,
        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_COLORS_SET_KEY) ||
        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_BACKGROUND_COLOR_KEY) ||
@@ -166,16 +160,16 @@ index a85fcefd40e1..26202e4555ea 100644
      update_color_scheme (screen);
  
    if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
-@@ -877,6 +879,8 @@ update_color_scheme (TerminalScreen *screen)
-   GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
-   GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
+@@ -1198,6 +1198,8 @@ update_color_scheme (TerminalScreen *scr
+   GdkRGBA *cursor_bgp = nullptr, *cursor_fgp = nullptr;
+   GdkRGBA *highlight_bgp = nullptr, *highlight_fgp = nullptr;
    GtkStyleContext *context;
 +  GtkWidget *toplevel;
 +  gboolean transparent;
    gboolean use_theme_colors;
  
    context = gtk_widget_get_style_context (widget);
-@@ -918,6 +922,18 @@ update_color_scheme (TerminalScreen *screen)
+@@ -1239,6 +1241,18 @@ update_color_scheme (TerminalScreen *screen)
      }
  
    colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
@@ -194,7 +188,7 @@ index a85fcefd40e1..26202e4555ea 100644
    vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
                             colors, n_colors);
    vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
-@@ -925,6 +941,10 @@ update_color_scheme (TerminalScreen *screen)
+@@ -1246,6 +1260,10 @@ update_color_scheme (TerminalScreen *screen)
    vte_terminal_set_color_cursor_foreground (VTE_TERMINAL (screen), cursor_fgp);
    vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
    vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
@@ -205,10 +199,8 @@ index a85fcefd40e1..26202e4555ea 100644
  }
  
  static void
-diff --git a/src/terminal-window.c b/src/terminal-window.c
-index 4ed3647498b2..8fc70ce74252 100644
---- a/src/terminal-window.c
-+++ b/src/terminal-window.c
+--- a/src/terminal-window.cc
++++ b/src/terminal-window.cc
 @@ -2088,6 +2088,8 @@ terminal_window_init (TerminalWindow *window)
    };
    TerminalWindowPrivate *priv;
@@ -253,10 +245,8 @@ https://bugzilla.gnome.org/show_bug.cgi?id=730016
  src/terminal-window.c | 21 +++++++++++++++++++++
  1 file changed, 21 insertions(+)
 
-diff --git a/src/terminal-window.c b/src/terminal-window.c
-index 8fc70ce74252..1707ada83ce8 100644
---- a/src/terminal-window.c
-+++ b/src/terminal-window.c
+--- a/src/terminal-window.cc
++++ b/src/terminal-window.cc
 @@ -1944,6 +1944,26 @@ terminal_window_realize (GtkWidget *widget)
    terminal_window_update_size (window);
  }
@@ -308,20 +298,18 @@ https://bugzilla.redhat.com/show_bug.cgi?id=1207943
  src/terminal-window.c | 18 ++++++++++++------
  2 files changed, 49 insertions(+), 9 deletions(-)
 
-diff --git a/src/terminal-screen.c b/src/terminal-screen.c
-index 26202e4555ea..c0ce8a89126c 100644
---- a/src/terminal-screen.c
-+++ b/src/terminal-screen.c
-@@ -139,6 +139,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *,
+--- a/src/terminal-screen.cc
++++ b/src/terminal-screen.cc
+@@ -155,6 +155,8 @@ static void terminal_screen_system_font_
  static gboolean terminal_screen_popup_menu (GtkWidget *widget);
  static gboolean terminal_screen_button_press (GtkWidget *widget,
                                                GdkEventButton *event);
 +static void terminal_screen_hierarchy_changed (GtkWidget *widget,
 +                                               GtkWidget *previous_toplevel);
- static gboolean terminal_screen_do_exec (TerminalScreen *screen,
-                                          FDSetupData    *data,
-                                          GError **error);
-@@ -475,6 +477,7 @@ terminal_screen_class_init (TerminalScreenClass *klass)
+ static void terminal_screen_child_exited  (VteTerminal *terminal,
+                                            int status);
+@@ -624,6 +626,7 @@ terminal_screen_class_init (TerminalScre
    widget_class->drag_data_received = terminal_screen_drag_data_received;
    widget_class->button_press_event = terminal_screen_button_press;
    widget_class->popup_menu = terminal_screen_popup_menu;
@@ -387,10 +375,8 @@ index 26202e4555ea..c0ce8a89126c 100644
  static gboolean
  terminal_screen_button_press (GtkWidget      *widget,
                                GdkEventButton *event)
-diff --git a/src/terminal-window.c b/src/terminal-window.c
-index 1707ada83ce8..a3c5a7fc2f46 100644
---- a/src/terminal-window.c
-+++ b/src/terminal-window.c
+--- a/src/terminal-window.cc
++++ b/src/terminal-window.cc
 @@ -1950,15 +1950,21 @@ terminal_window_draw (GtkWidget *widget,
  {
    if (gtk_widget_get_app_paintable (widget))
@@ -433,13 +419,11 @@ https://bugzilla.redhat.com/show_bug.cgi?id=1207943
  src/terminal-screen.c | 1 -
  1 file changed, 1 deletion(-)
 
-diff --git a/src/terminal-screen.c b/src/terminal-screen.c
-index c0ce8a89126c..1b763a3890dd 100644
---- a/src/terminal-screen.c
-+++ b/src/terminal-screen.c
-@@ -908,7 +908,6 @@ update_color_scheme (TerminalScreen *screen)
-   GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
-   GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
+--- gnome-terminal-3.42.0/src/terminal-screen.cc.orig  2021-09-28 20:41:52.910073654 +0200
++++ gnome-terminal-3.42.0/src/terminal-screen.cc       2021-09-28 20:42:11.541041566 +0200
+@@ -1198,7 +1198,6 @@ update_color_scheme (TerminalScreen *scr
+   GdkRGBA *cursor_bgp = nullptr, *cursor_fgp = nullptr;
+   GdkRGBA *highlight_bgp = nullptr, *highlight_fgp = nullptr;
    GtkStyleContext *context;
 -  GtkWidget *toplevel;
    gboolean transparent;
@@ -789,25 +773,15 @@ index 82ef0664ae1e..27e9877f96e8 100644
  
  #: ../src/profile-preferences.glade.h:74
  msgid "_Update login records when command is launched"
-diff --git a/po/bg.po b/po/bg.po
-index 9a4f32e4b135..6ac17c17efb8 100644
---- a/po/bg.po
-+++ b/po/bg.po
-@@ -2305,3 +2305,12 @@ msgstr ""
- #: ../src/terminal-window.c:3953
- msgid "C_lose Window"
- msgstr "_Затваряне на този прозорец"
+--- gnome-terminal-3.42.0/po/bg.po.orig        2021-09-27 20:34:18.648881212 +0200
++++ gnome-terminal-3.42.0/po/bg.po     2021-09-27 20:42:08.969666599 +0200
+@@ -2448,3 +2448,6 @@ msgstr "_Ð\97аÑ\82ваÑ\80Ñ\8fне Ð½Ð° Ñ\82озÐ
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Аргументите не могат да бъдат анализирани: %s\n"
 +
 +msgid "Transparent background"
 +msgstr "Прозрачен фон"
-+
-+msgid "_Title:"
-+msgstr "_Заглавие:"
-+
-+msgid "Set Title"
-+msgstr "Задаване на заглавие"
-diff --git a/po/bn.po b/po/bn.po
-index 4906009cf46f..f97d43b0e515 100644
 --- a/po/bn.po
 +++ b/po/bn.po
 @@ -1217,8 +1217,8 @@ msgid "_Base on:"
@@ -832,22 +806,20 @@ index 4906009cf46f..f97d43b0e515 100644
  
  #: ../src/profile-preferences.glade.h:77
  msgid "_Unlimited"
-diff --git a/po/bn_IN.po b/po/bn_IN.po
-index f196e5084797..0ac3caf77e73 100644
---- a/po/bn_IN.po
-+++ b/po/bn_IN.po
-@@ -2296,8 +2296,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
- #~ msgid "Close Window"
- #~ msgstr "উইন্ডো বন্ধ করুন"
+--- gnome-terminal-3.40.0/po/bn_IN.po.orig     2021-02-22 17:08:51.000000000 +0100
++++ gnome-terminal-3.40.0/po/bn_IN.po  2021-04-17 09:13:12.663952116 +0200
+@@ -2894,8 +2894,8 @@ msgstr "উইন্ডো বন্ধ
+ #~ msgid "_Unlimited"
+ #~ msgstr "সীমাহীন (_U)"
  
 -#~ msgid "Set Title"
 -#~ msgstr "শিরোনাম নির্ধারণ করুন"
 +msgid "Set Title"
 +msgstr "শিরোনাম নির্ধারণ করুন"
  
- #~ msgid "Switch to Tab 2"
- #~ msgstr "à¦\9fà§\8dযাব à§¨-এ পরিবর্তন করুন"
-@@ -2356,5 +2356,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
+ #~ msgid "Switch to Tab 3"
+ #~ msgstr "à¦\9fà§\8dযাব à§©-এ পরিবর্তন করুন"
+@@ -2936,5 +2936,8 @@ msgstr "উইন্ডো বন্ধ
  #~ msgid "_Input Methods"
  #~ msgstr "ইনপুট পদ্ধতি (_I)"
  
@@ -897,76 +869,38 @@ index 49e710859ac9..8703552984b1 100644
  #: ../src/org.gnome.Terminal.gschema.xml.h:78
  msgid "Keyboard shortcut to make font normal-size"
  msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
-@@ -2054,3 +2058,9 @@ msgstr ""
- #: ../src/terminal-window.c:3652
- msgid "C_lose Window"
- msgstr "_Zatvori prozor"
-+
-+msgid "_Title:"
-+msgstr "_Naslov:"
-+
-+msgid "Set Title"
-+msgstr "Postavi naslov"
-diff --git a/po/ca.po b/po/ca.po
-index 4a612fcfc0ba..6091324a9547 100644
---- a/po/ca.po
-+++ b/po/ca.po
-@@ -2332,3 +2332,15 @@
- #: ../src/terminal-window.c:3256
- msgid "C_lose Window"
- msgstr "Tanca la _finestra"
-+
+--- gnome-terminal-3.48.1/po/ca.po.orig        2023-07-24 19:50:45.017083365 +0200
++++ gnome-terminal-3.48.1/po/ca.po     2023-07-24 19:54:57.535715354 +0200
+@@ -2510,3 +2510,6 @@ msgstr "Tanca la _finestra"
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Ha fallat l'anàlisi dels arguments: %s\n"
++ 
 +msgid "Transparent background"
 +msgstr "Fons transparent"
-+
-+msgid "Title"
-+msgstr "Títol"
-+
-+msgid "_Title:"
-+msgstr "Tít_ol:"
-+
-+msgid "Set Title"
-+msgstr "Estableix el títol"
 diff --git a/po/ca@valencia.po b/po/ca@valencia.po
 index a6e8fb4250dc..c9ed8508228d 100644
 --- a/po/ca@valencia.po
 +++ b/po/ca@valencia.po
-@@ -2357,3 +2357,15 @@ msgstr "Tanca la _finestra"
+@@ -2357,3 +2357,6 @@ msgstr "Tanca la _finestra"
  
  #~ msgid "Whether to use a dark theme variant"
  #~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
 +
 +msgid "Transparent background"
 +msgstr "Fons transparent"
-+
-+msgid "Title"
-+msgstr "Títol"
-+
-+msgid "_Title:"
-+msgstr "Tít_ol:"
-+
-+msgid "Set Title"
-+msgstr "Estableix el títol"
-diff --git a/po/cs.po b/po/cs.po
-index ee33ed2a0103..2acf2aa99656 100644
---- a/po/cs.po
-+++ b/po/cs.po
-@@ -2310,3 +2310,15 @@ msgstr ""
- #: ../src/terminal-window.c:3353
- msgid "C_lose Window"
- msgstr "_Zavřít okno"
-+
+--- gnome-terminal-3.48.1/po/cs.po.orig        2023-07-24 19:55:41.142145784 +0200
++++ gnome-terminal-3.48.1/po/cs.po     2023-07-24 19:57:02.448371977 +0200
+@@ -2473,6 +2473,9 @@ msgstr "_Zavřít okno"
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Selhala analýza argumentů: %s\n"
 +msgid "Transparent background"
 +msgstr "Průsvitné pozadí"
 +
-+msgid "Title"
-+msgstr "Záhlaví"
-+
-+msgid "_Title:"
-+msgstr "Zá_hlaví:"
-+
-+msgid "Set Title"
-+msgstr "Nastavit záhlaví"
+ #~ msgid "Armenian"
+ #~ msgstr "Arménské"
 diff --git a/po/cy.po b/po/cy.po
 index 644df82363f1..cd862feb50c0 100644
 --- a/po/cy.po
@@ -993,49 +927,30 @@ index 644df82363f1..cd862feb50c0 100644
  
  #: ../src/profile-preferences.glade.h:74
  msgid "_Update login records when command is launched"
-diff --git a/po/da.po b/po/da.po
-index 65cfb20d9ad3..8c5c97c7465a 100644
---- a/po/da.po
-+++ b/po/da.po
-@@ -2312,3 +2312,15 @@
- #: ../src/terminal-window.c:3256
- msgid "C_lose Window"
- msgstr "_Luk vindue"
+--- gnome-terminal-3.48.1/po/da.po.orig        2023-07-24 19:57:25.464913953 +0200
++++ gnome-terminal-3.48.1/po/da.po     2023-07-24 19:58:17.831296926 +0200
+@@ -2475,6 +2475,9 @@ msgstr "_Luk vindue"
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Kunne ikke fortolke argumenter: %s\n"
 + 
-+msgid "Title"
-+msgstr "Titel"
-+
-+msgid "_Title:"
-+msgstr "_Titel:"
-+
-+msgid "Set Title"
-+msgstr "Sæt titel"
-+
 +msgid "Transparent background"
 +msgstr "Gennemsigtig baggrund"
-diff --git a/po/de.po b/po/de.po
-index 205f69111437..61b0214daf5b 100644
---- a/po/de.po
-+++ b/po/de.po
-@@ -2373,6 +2373,18 @@
- msgid "C_lose Window"
- msgstr "Fenster _schließen"
  
-+msgid "Title"
-+msgstr "Titel"
-+
-+msgid "_Title:"
-+msgstr "_Titel:"
-+
-+msgid "Set Title"
-+msgstr "Titel festlegen"
-+
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
+--- gnome-terminal-3.48.1/po/de.po.orig        2023-07-24 19:58:37.841188523 +0200
++++ gnome-terminal-3.48.1/po/de.po     2023-07-24 20:00:29.173918716 +0200
+@@ -2548,6 +2548,9 @@ msgstr "Fenster _schließen"
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Einlesen der Argumente schlug fehl: %s\n"
 +msgid "Transparent background"
 +msgstr "Transparenter Hintergrund"
 +
- #~ msgid "Whether to show menubar in new windows/tabs"
- #~ msgstr ""
- #~ "Legt fest, ob in Fenstern/Reitern per Vorgabe die Menüleiste angezeigt "
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
 diff --git a/po/dz.po b/po/dz.po
 index d97e6102b850..a768fe4adc54 100644
 --- a/po/dz.po
@@ -1197,22 +1112,20 @@ index c9999e204f33..dfbff85bf907 100644
  
  #~ msgid "S_hade transparent or image background:"
  #~ msgstr "S_hade transparent or image background:"
-diff --git a/po/eo.po b/po/eo.po
-index 567c08dc1da8..c59f57c6a8d5 100644
---- a/po/eo.po
-+++ b/po/eo.po
-@@ -2215,8 +2215,8 @@ msgstr "_Fermi la fenestron"
- #~ msgid "Close Window"
- #~ msgstr "Fermi la fenestron"
+--- gnome-terminal-3.40.0/po/eo.po.orig        2021-02-22 17:08:51.000000000 +0100
++++ gnome-terminal-3.40.0/po/eo.po     2021-04-17 11:16:42.667994998 +0200
+@@ -2827,8 +2827,8 @@ msgstr "_Fermi la fenestron"
+ #~ msgid "_Font:"
+ #~ msgstr "_Tiparo:"
  
 -#~ msgid "Set Title"
 -#~ msgstr "Agordi titolon"
 +msgid "Set Title"
 +msgstr "Agordi titolon"
  
- #~ msgid "Switch to Tab 2"
- #~ msgstr "Ŝalti al langeto 2"
-@@ -2299,8 +2299,8 @@ msgstr "_Fermi la fenestron"
+ #~ msgid "Switch to Tab 3"
+ #~ msgstr "Ŝalti al langeto 3"
+@@ -2890,8 +2890,8 @@ msgstr "_Fermi la fenestron"
  #~ msgid "_Input Methods"
  #~ msgstr "_Enigmetodoj"
  
@@ -1273,33 +1186,23 @@ index 4b1c2a7c67e4..770761168806 100644
 +
 +msgid "Transparent background"
 +msgstr "Läbipaistev taust"
-diff --git a/po/eu.po b/po/eu.po
-index f3aab7879a6f..543a121f6aac 100644
---- a/po/eu.po
-+++ b/po/eu.po
-@@ -2188,3 +2188,15 @@
- #: ../src/terminal-window.c:3256
- msgid "C_lose Window"
- msgstr "It_xi leihoa"
-+
-+msgid "Title"
-+msgstr "Titulua"
-+
-+msgid "_Title:"
-+msgstr "_Titulua:"
-+
-+msgid "Set Title"
-+msgstr "Ezarri titulua"
-+
+--- gnome-terminal-3.48.1/po/eu.po.orig        2023-07-24 20:01:00.530415509 +0200
++++ gnome-terminal-3.48.1/po/eu.po     2023-07-24 20:02:14.050017220 +0200
+@@ -2348,6 +2348,9 @@ msgstr "It_xi leihoa"
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Huts egin du argumentuak analizatzean: %s\n"
 +msgid "Transparent background"
 +msgstr "Atzeko plano gardena"
-diff --git a/po/fa.po b/po/fa.po
-index 8b0ca26eebe5..6079d0c40a1d 100644
---- a/po/fa.po
-+++ b/po/fa.po
-@@ -2402,8 +2402,8 @@ msgstr "_بستن پنجره"
- #~ msgid "Use custom default terminal si_ze"
- #~ msgstr "استفاده از اندازه‌ی _سفارشی پایانه‌ی پیش‌فرض"
++
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
+--- gnome-terminal-3.46.9/po/fa.po.orig        2023-04-05 11:18:23.000000000 +0200
++++ gnome-terminal-3.46.9/po/fa.po     2023-05-18 21:16:02.912432315 +0200
+@@ -2794,8 +2794,8 @@ msgstr "تجزیهٔ آرگومان‌ه
+ #~ msgid "_Font:"
+ #~ msgstr "_قلم:"
  
 -#~ msgid "Title"
 -#~ msgstr "عنوان"
@@ -1308,18 +1211,18 @@ index 8b0ca26eebe5..6079d0c40a1d 100644
  
  #~ msgid "When terminal commands set their o_wn titles:"
  #~ msgstr "وقتی که فرمان‌های پایانه عنوان‌های _خودشان را تنظیم می‌کنند:"
-@@ -2426,8 +2426,8 @@ msgstr "_بستن پنجره"
- #~ msgid "Close Window"
- #~ msgstr "بستن پنجره"
+@@ -2809,8 +2809,8 @@ msgstr "تجزیهٔ آرگومان‌ه
+ #~ msgid "_Unlimited"
+ #~ msgstr "_نامحدود"
  
 -#~ msgid "Set Title"
 -#~ msgstr "تنظیم عنوان"
 +msgid "Set Title"
 +msgstr "تنظیم عنوان"
  
- #~ msgid "Switch to Tab 2"
- #~ msgstr "تعÙ\88Û\8cض Ø¨Ù\87 Ø²Ø¨Ø§Ù\86Ù\87â\80\8cÛ\8c Û²"
-@@ -2486,5 +2486,8 @@ msgstr "_بستن پنجره"
+ #~ msgid "Switch to Tab 3"
+ #~ msgstr "تعÙ\88Û\8cض Ø¨Ù\87 Ø²Ø¨Ø§Ù\86Ù\87â\80\8cÛ\8c Û³"
+@@ -2851,5 +2851,8 @@ msgstr "تجزیهٔ آرگومان‌ه
  #~ msgid "_Input Methods"
  #~ msgstr "روش‌های _ورودی"
  
@@ -1334,7 +1237,7 @@ diff --git a/po/fi.po b/po/fi.po
 index e284b406f040..6e7f402af7bd 100644
 --- a/po/fi.po
 +++ b/po/fi.po
-@@ -2589,9 +2589,21 @@ msgstr "_Sulje ikkuna"
+@@ -2589,6 +2589,9 @@ msgstr "_Sulje ikkuna"
  #~ msgid "_Update login records when command is launched"
  #~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
  
@@ -1344,54 +1247,31 @@ index e284b406f040..6e7f402af7bd 100644
  #~| msgid "Error parsing command: %s"
  #~ msgid "Missing command"
  #~ msgstr "Puuttuva komento"
+--- gnome-terminal-3.48.1/po/fr.po.orig        2023-07-24 20:02:33.279913042 +0200
++++ gnome-terminal-3.48.1/po/fr.po     2023-07-24 20:02:57.833113360 +0200
+@@ -2539,6 +2539,9 @@ msgstr "Fermer _la fenêtre"
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Impossible d’analyser les paramètres : %s\n"
  
- #~ msgid "Whether to use a dark theme variant"
- #~ msgstr "Käytetäänkö teeman tummaan muunnelmaa"
-+
-+msgid "Title"
-+msgstr "Otsikko"
-+
-+msgid "_Title:"
-+msgstr "_Otsikko:"
-+
-+msgid "Set Title"
-+msgstr "Aseta otsikko"
-diff --git a/po/fr.po b/po/fr.po
-index 87a8e0ff46d4..2eacb4584f32 100644
---- a/po/fr.po
-+++ b/po/fr.po
-@@ -2359,3 +2359,15 @@
- #: ../src/terminal-window.c:3256
- msgid "C_lose Window"
- msgstr "Fermer _la fenêtre"
-+
 +msgid "Transparent background"
 +msgstr "Arrière-plan transparent"
 +
-+msgid "Title"
-+msgstr "Titre"
-+
-+msgid "_Title:"
-+msgstr "_Titre :"
-+
-+msgid "Set Title"
-+msgstr "Définir le titre"
-diff --git a/po/fur.po b/po/fur.po
-index 3f5429cfecd8..e637a6c0dc5f 100644
---- a/po/fur.po
-+++ b/po/fur.po
-@@ -454,6 +454,10 @@ msgstr ""
- msgid "Which encoding to use"
- msgstr "Codifiche di doprâ"
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
  
-+#: ../src/gnome-terminal.glade2.h:86
+--- gnome-terminal-3.48.1/po/fur.po.orig       2023-04-07 19:40:45.000000000 +0200
++++ gnome-terminal-3.48.1/po/fur.po    2023-07-24 20:03:48.832837070 +0200
+@@ -2484,6 +2484,9 @@ msgstr "_Siere barcon"
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Analisi dai argoments falide: %s\n"
++ 
 +msgid "Transparent background"
 +msgstr "Fondâl trasparent"
-+
- #: ../src/org.gnome.Terminal.gschema.xml.h:68
- msgid ""
- "Whether ambiguous-width characters are narrow or wide when using UTF-8 "
-@@ -3371,6 +3375,9 @@ msgstr "_Siere barcon"
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
+@@ -3613,6 +3616,9 @@ msgstr "Analisi dai argoments falide: %s
  #~ msgid "The text you clicked on doesn't seem to be a valid OTP challenge."
  #~ msgstr "Il test fracât nol samee jessi un OTP challenge."
  
@@ -1401,7 +1281,7 @@ index 3f5429cfecd8..e637a6c0dc5f 100644
  #~ msgid "Switch to Tab 3"
  #~ msgstr "Passe a la schede 3"
  
-@@ -3426,8 +3433,8 @@ msgstr "_Siere barcon"
+@@ -3668,8 +3674,8 @@ msgstr "Analisi dai argoments falide: %s
  #~ msgid "_Input Methods"
  #~ msgstr "_Cemût inserî test"
  
@@ -1410,8 +1290,8 @@ index 3f5429cfecd8..e637a6c0dc5f 100644
 +msgid "_Title:"
 +msgstr "_Titul:"
  
- #~ msgid ""
- #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
+ #~ msgid "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
+ #~ msgstr ""
 diff --git a/po/ga.po b/po/ga.po
 index 93d5fa9d1481..feb87dce3d6b 100644
 --- a/po/ga.po
@@ -1423,45 +1303,18 @@ index 93d5fa9d1481..feb87dce3d6b 100644
 +
 +msgid "Transparent background"
 +msgstr "Cúlra trédhearcach"
-diff --git a/po/gl.po b/po/gl.po
-index 4ae0f6a0935c..fa643dc89659 100644
---- a/po/gl.po
-+++ b/po/gl.po
-@@ -2678,17 +2678,17 @@ msgstr "P_echar a xanela"
- #~ msgid "Default size:"
- #~ msgstr "Tamaño predeterminado:"
--#~ msgid "Title"
--#~ msgstr "Título"
-+msgid "Title"
-+msgstr "Título"
--#~ msgid "_Title:"
--#~ msgstr "_Título:"
-+msgid "_Title:"
-+msgstr "_Título:"
- #~ msgid "Title and Command"
- #~ msgstr "Título e orde"
--#~ msgid "Set Title"
--#~ msgstr "Definir o título"
-+msgid "Set Title"
-+msgstr "Definir o título"
+--- gnome-terminal-3.46.9/po/gl.po.orig        2023-05-18 21:18:07.525090563 +0200
++++ gnome-terminal-3.46.9/po/gl.po     2023-05-18 21:19:01.081467090 +0200
+@@ -2500,6 +2500,9 @@ msgstr "P_echar a xanela"
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Produciuse un erro ao analizar os argumentos: %s\n"
  
- #~ msgid "Current Locale"
- #~ msgstr "Configuración rexional actual"
-@@ -3502,8 +3502,8 @@ msgstr "P_echar a xanela"
- #~ msgid "Background image _scrolls"
- #~ msgstr "A imaxe de fondo _desprázase"
--#~ msgid "_Transparent background"
--#~ msgstr "Fondo _transparente"
 +msgid "Transparent background"
 +msgstr "Fondo transparente"
++
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
  
- #~ msgid "S_hade transparent or image background:"
- #~ msgstr "_Sombra transparente ou imaxe de fondo:"
 diff --git a/po/gu.po b/po/gu.po
 index 76b459cf8dc5..485beeac98b7 100644
 --- a/po/gu.po
@@ -1602,7 +1455,7 @@ diff --git a/po/hr.po b/po/hr.po
 index aec2eaa8bac1..207b5c774b32 100644
 --- a/po/hr.po
 +++ b/po/hr.po
-@@ -2565,3 +2565,13 @@ msgstr "_Zatvori prozor"
+@@ -2565,3 +2565,7 @@ msgstr "_Zatvori prozor"
  
  #~ msgid "Use transparency from system theme"
  #~ msgstr "Koristi prozirnost iz teme sustava"
@@ -1610,29 +1463,12 @@ index aec2eaa8bac1..207b5c774b32 100644
 +#: ../src/profile-preferences.glade.h:69
 +msgid "Transparent background"
 +msgstr "Prozirna pozadina"
-+
-+msgid "_Title:"
-+msgstr "_Naslov:"
-+
-+msgid "Set Title"
-+msgstr "Postavi naslov"
-diff --git a/po/hu.po b/po/hu.po
-index 401ae619d5d2..b6e96230111b 100644
---- a/po/hu.po
-+++ b/po/hu.po
-@@ -2318,3 +2318,15 @@
- #: ../src/terminal-window.c:3256
- msgid "C_lose Window"
- msgstr "_Ablak bezárása"
-+
-+msgid "Title"
-+msgstr "Cím"
-+
-+msgid "_Title:"
-+msgstr "_Cím:"
-+
-+msgid "Set Title"
-+msgstr "Cím beállítása"
+--- gnome-terminal-3.42.0/po/hu.po.orig        2021-09-27 20:45:45.238494971 +0200
++++ gnome-terminal-3.42.0/po/hu.po     2021-09-27 20:48:32.504255481 +0200
+@@ -2463,3 +2463,6 @@ msgstr "_Ablak bezárása"
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "A paraméterek feldolgozása meghiúsult: %s\n"
 +
 +msgid "Transparent background"
 +msgstr "Áttetsző háttér"
@@ -1662,113 +1498,62 @@ index aaf2d9b292da..4d466f164420 100644
  
  #: ../src/profile-preferences.glade.h:74
  msgid "_Update login records when command is launched"
-diff --git a/po/id.po b/po/id.po
-index 9198218c5aaa..9f2fbd0c9d4c 100644
---- a/po/id.po
-+++ b/po/id.po
-@@ -2548,3 +2548,15 @@ msgstr "Tutup Jende_la"
+--- gnome-terminal-3.48.1/po/id.po.orig        2023-07-24 20:04:07.526069134 +0200
++++ gnome-terminal-3.48.1/po/id.po     2023-07-24 20:05:34.572264231 +0200
+@@ -2468,6 +2468,9 @@ msgstr "Tutup Jende_la"
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Gagal mengurai argumen: \"%s\"\n"
  
- #~ msgid "_Add or Remove…"
- #~ msgstr "T_ambah atau Hapus…"
-+
 +msgid "Transparent background"
 +msgstr "Latar belakang transparan"
 +
-+msgid "Title"
-+msgstr "Judul"
-+
-+msgid "_Title:"
-+msgstr "_Judul:"
-+
-+msgid "Set Title"
-+msgstr "Atur Judul"
-diff --git a/po/it.po b/po/it.po
-index 632667207c17..2cd93716f4f9 100644
---- a/po/it.po
-+++ b/po/it.po
-@@ -2348,3 +2348,15 @@ msgstr ""
- #: ../src/terminal-window.c:3354
- msgid "C_lose Window"
- msgstr "Chiudi _finestra"
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
+--- gnome-terminal-3.44.2/po/it.po.orig        2022-12-05 19:57:22.075704335 +0100
++++ gnome-terminal-3.44.2/po/it.po     2022-12-05 19:57:50.965547825 +0100
+@@ -2485,3 +2485,6 @@ msgstr "Chiudi _finestra"
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Analisi degli argomenti non riuscita: %s\n"
 +
 +msgid "Transparent background"
 +msgstr "Sfondo trasparente"
-+
-+msgid "Title"
-+msgstr "Titolo"
-+
-+msgid "_Title:"
-+msgstr "_Titolo:"
-+
-+msgid "Set Title"
-+msgstr "Imposta titolo"
-diff --git a/po/ja.po b/po/ja.po
-index 9a18d3db624f..bbfd18e6ab24 100644
---- a/po/ja.po
-+++ b/po/ja.po
-@@ -2294,6 +2294,18 @@
+--- gnome-terminal-3.40.0/po/ja.po.orig        2021-04-17 12:02:26.077220372 +0200
++++ gnome-terminal-3.40.0/po/ja.po     2021-04-17 12:07:39.686853629 +0200
+@@ -2431,6 +2431,9 @@ msgstr ""
  msgid "C_lose Window"
  msgstr "ウィンドウを閉じる(_L)"
  
 +msgid "Transparent background"
 +msgstr "透過な画像にする"
 +
-+msgid "Title"
-+msgstr "タイトル"
-+
-+msgid "_Title:"
-+msgstr "タイトル(_T):"
-+
-+msgid "Set Title"
-+msgstr "タイトルを設定する"
-+
- #~ msgid "Verbose output"
- #~ msgstr "詳細な出力"
-diff --git a/po/ka.po b/po/ka.po
-index 2a0bc91fad40..c289e30eb4fa 100644
---- a/po/ka.po
-+++ b/po/ka.po
-@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
- msgstr "b>ფონი</b>"
- #: ../src/gnome-terminal.glade2.h:3
--msgid "<b>Command</b>"
--msgstr "<b>ბრძანება</b>"
-+msgid "Command"
-+msgstr "ბრძანება"
+ #~ msgid "Whether to allow bold text"
+ #~ msgstr "太字のフォントを許可するかどうか"
  
- #: ../src/gnome-terminal.glade2.h:4
- msgid "<b>Compatibility</b>"
-@@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერი:"
+--- gnome-terminal-3.48.1/po/ka.po.orig        2023-07-24 20:05:53.048830801 +0200
++++ gnome-terminal-3.48.1/po/ka.po     2023-07-24 20:06:32.825281980 +0200
+@@ -2371,6 +2371,9 @@ msgstr "_ფანჯრის დახ
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "არგუმენტების დამუშავების შეცდომა: %s\n"
  
- #: ../src/gnome-terminal.glade2.h:86
- #, fuzzy
--msgid "_Transparent background"
 +msgid "Transparent background"
- msgstr "გამჭირვალე"
- #: ../src/gnome-terminal.glade2.h:87
++msgstr "გამჭირვალე"
++
+ #~| msgid "Terminal"
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
 diff --git a/po/kk.po b/po/kk.po
 index 2811b7ec6239..d4239e5d12c5 100644
 --- a/po/kk.po
 +++ b/po/kk.po
-@@ -2547,3 +2547,15 @@ msgstr "Терезені жа_бу"
+@@ -2547,3 +2547,6 @@ msgstr "Терезені жа_бу"
  
  #~ msgid "Be quiet"
  #~ msgstr "Тыныш болу"
 +
 +msgid "Transparent background"
 +msgstr "Мөлдір фон"
-+
-+msgid "Title"
-+msgstr "Атауы"
-+
-+msgid "_Title:"
-+msgstr "А_тауы:"
-+
-+msgid "Set Title"
-+msgstr "Атауын орнату"
 diff --git a/po/km.po b/po/km.po
 index 352897d2963b..b6db9394a307 100644
 --- a/po/km.po
@@ -1825,22 +1610,13 @@ diff --git a/po/ko.po b/po/ko.po
 index d1be8c3fdab8..02de5aa11be1 100644
 --- a/po/ko.po
 +++ b/po/ko.po
-@@ -2292,3 +2292,15 @@ msgstr "창 닫기(_L)"
+@@ -2292,3 +2292,6 @@ msgstr "창 닫기(_L)"
  
  #~ msgid "Verbose output"
  #~ msgstr "많이 출력"
 +
 +msgid "Transparent background"
 +msgstr "투명한 배경"
-+
-+msgid "Title"
-+msgstr "제목"
-+
-+msgid "_Title:"
-+msgstr "제목(_T):"
-+
-+msgid "Set Title"
-+msgstr "제목 설정"
 diff --git a/po/ku.po b/po/ku.po
 index bc2bb7f03de4..d2a83a007097 100644
 --- a/po/ku.po
@@ -1871,46 +1647,24 @@ diff --git a/po/lt.po b/po/lt.po
 index e8b7622e5d46..c6fe38021b6a 100644
 --- a/po/lt.po
 +++ b/po/lt.po
-@@ -2571,3 +2571,15 @@ msgstr "_Užverti langą"
+@@ -2571,3 +2571,6 @@ msgstr "_Užverti langą"
  
  #~ msgid "Whether to use a dark theme variant"
  #~ msgstr "Ar naudoti tamsų temos variantą"
 +
 +msgid "Transparent background"
 +msgstr "Permatomas fonas"
-+
-+msgid "Title"
-+msgstr "Pavadinimas"
-+
-+msgid "_Title:"
-+msgstr "_Pavadinimas:"
-+
-+msgid "Set Title"
-+msgstr "Nustatyti pavadinimą"
 diff --git a/po/lv.po b/po/lv.po
 index 47d9e75b1ee8..a8dad3bc0d6b 100644
 --- a/po/lv.po
 +++ b/po/lv.po
-@@ -2578,3 +2578,19 @@ msgstr "Aizvērt _logu"
+@@ -2578,3 +2578,6 @@ msgstr "Aizvērt _logu"
  
  #~ msgid "_Add or Remove…"
  #~ msgstr "_Pievienot vai izņemt…"
 +
 +msgid "Transparent background"
 +msgstr "Caurspīdīgs fons"
-+
-+msgid "Title"
-+msgstr "Nosaukums"
-+
-+msgid "_Title:"
-+msgstr "_Nosaukums:"
-+
-+msgctxt "title"
-+msgid "'Terminal'"
-+msgstr "“Terminālis”"
-+
-+msgid "Set Title"
-+msgstr "Iestatīt nosaukumu"
 diff --git a/po/mai.po b/po/mai.po
 index 715d0b9e1c82..0f31634e4f2e 100644
 --- a/po/mai.po
@@ -2078,48 +1832,25 @@ diff --git a/po/ms.po b/po/ms.po
 index f2ebd4851d3b..f3d44c9c6294 100644
 --- a/po/ms.po
 +++ b/po/ms.po
-@@ -227,8 +227,8 @@ msgstr "<b>LatarBelakang</b>"
- # help-browser/toc-man.c:19
- # help-browser/toc2-man.c:21
- #: ../src/gnome-terminal.glade2.h:2
--msgid "<b>Command</b>"
--msgstr "<b>Arahan</b>"
-+msgid "Command"
-+msgstr "Arahan"
- #: ../src/gnome-terminal.glade2.h:3
- msgid "<b>Compatibility</b>"
-@@ -631,8 +631,8 @@ msgid "_Text color:"
- msgstr "Warna _Teks:"
+@@ -2502,6 +2502,9 @@ msgstr ""
+ msgid "C_lose Window"
+ msgstr "T_utup Tetingkap"
  
- #: ../src/gnome-terminal.glade2.h:102
--msgid "_Transparent background"
--msgstr "LatarBelakang _Telus"
 +msgid "Transparent background"
 +msgstr "LatarBelakang Telus"
++
+ #~ msgid "Accelerator key"
+ #~ msgstr "Kekunci pemecut"
  
- #: ../src/gnome-terminal.glade2.h:103
- msgid "_Update login records when command is launched"
-diff --git a/po/nb.po b/po/nb.po
-index 683acfe5221e..3dc97ee17fec 100644
---- a/po/nb.po
-+++ b/po/nb.po
-@@ -2261,3 +2261,15 @@ msgstr ""
- #: ../src/terminal-window.c:3210
- msgid "C_lose Window"
- msgstr "_Lukk vindu"
+--- gnome-terminal-3.44.1/po/nb.po.orig        2022-06-05 19:43:17.500040866 +0200
++++ gnome-terminal-3.44.1/po/nb.po     2022-06-05 19:44:54.278406486 +0200
+@@ -2436,3 +2436,6 @@ msgstr "_Lukk vindu"
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Klarte ikke å lese argumenter: %s\n"
 +
 +msgid "Transparent background"
 +msgstr "Gjennomsiktig bakgrunn"
-+
-+msgid "Title"
-+msgstr "Tittel"
-+
-+msgid "_Title:"
-+msgstr "_Tittel:"
-+
-+msgid "Set Title"
-+msgstr "Sett tittel"
 diff --git a/po/nds.po b/po/nds.po
 index 82f930b1cc0c..d52fbd94eb58 100644
 --- a/po/nds.po
@@ -2146,11 +1877,9 @@ index 82f930b1cc0c..d52fbd94eb58 100644
  
  #: ../src/profile-preferences.glade.h:74
  msgid "_Update login records when command is launched"
-diff --git a/po/ne.po b/po/ne.po
-index 4fe16cc88a9a..53fb89134be0 100644
---- a/po/ne.po
-+++ b/po/ne.po
-@@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
+--- gnome-terminal-3.40.1/po/ne.po.orig        2021-04-30 13:30:46.000000000 +0200
++++ gnome-terminal-3.40.1/po/ne.po     2021-05-05 22:44:16.302461546 +0200
+@@ -2862,8 +2862,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
  #~ msgid "_None (use solid color)"
  #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
  
@@ -2161,18 +1890,7 @@ index 4fe16cc88a9a..53fb89134be0 100644
  
  #~ msgid "_Use the system fixed width font"
  #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
-@@ -3052,8 +3052,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
- #~ msgid "Close Tab"
- #~ msgstr "ट्याब बन्द गर्नुहोस्"
--#~ msgid "Set Title"
--#~ msgstr "शीर्षक सेट गर्नुहोस्"
-+msgid "Set Title"
-+msgstr "शीर्षक सेट गर्नुहोस्"
- #~ msgid "Switch to Tab 2"
- #~ msgstr "ट्याब २ मा स्विच गर्नुहोस्"
-@@ -3232,8 +3232,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
+@@ -3524,8 +3524,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
  #~ msgid "_Input Methods"
  #~ msgstr "आगत विधि"
  
@@ -2181,28 +1899,30 @@ index 4fe16cc88a9a..53fb89134be0 100644
 +msgid "_Title:"
 +msgstr "शीर्षक:"
  
- #~ msgid ""
- #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
+ #~ msgid "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
+ #~ msgstr "टर्मिनलमा छोडिएको पाठ/सादा गलत ढाँचा (%d) वा लम्बाइ (%d)को थियो\n"
+@@ -3560,8 +3560,8 @@ msgstr "सà¤\9eà¥\8dà¤\9dà¥\8dयाल à¤¬à¤¨à
+ #~ msgid "C_urrent Profile..."
+ #~ msgstr "हालको प्रोफाइल..."
+-#~ msgid "_Set Title..."
+-#~ msgstr "शीर्षक राख्नुहोस्..."
++msgid "Set Title"
++msgstr "शीर्षक सेट गर्नुहोस्"
+ #~ msgid "There was an error loading config value for whether to use mnemonics. (%s)\n"
+ #~ msgstr "निमोनिक प्रयोग गर्न या नगर्नका लागि कन्फिग मान लोड गर्दा त्रुटि भएको थियो । (%s)\n"
 diff --git a/po/nl.po b/po/nl.po
 index 5f070152cade..560e472f0917 100644
 --- a/po/nl.po
 +++ b/po/nl.po
-@@ -2596,3 +2596,15 @@ msgstr "Venster sl_uiten"
+@@ -2596,3 +2596,6 @@ msgstr "Venster sl_uiten"
  
  #~ msgid "_Add or Remove…"
  #~ msgstr "_Toevoegen of verwijderen…"
 +
 +msgid "Title"
 +msgstr "Titel"
-+
-+msgid "_Title:"
-+msgstr "_Titel:"
-+
-+msgid "Set Title"
-+msgstr "Titel instellen"
-+
-+msgid "Transparent background"
-+msgstr "Transparante achtergrond"
 diff --git a/po/nn.po b/po/nn.po
 index 5aa43b113ed9..f892290c256f 100644
 --- a/po/nn.po
@@ -2405,38 +2125,12 @@ index 5181419ad973..3df37f6d5bc7 100644
  
  #~ msgid "S_hade transparent or image background:"
  #~ msgstr "Transparente som_breado ou imagem de fundo:"
-diff --git a/po/pt_BR.po b/po/pt_BR.po
-index c40dba26b08a..9be7eec414e9 100644
---- a/po/pt_BR.po
-+++ b/po/pt_BR.po
-@@ -2687,17 +2687,17 @@ msgstr "_Fechar janela"
- #~ msgid "Default size:"
- #~ msgstr "Tamanho padrão:"
--#~ msgid "Title"
--#~ msgstr "Título"
-+msgid "Title"
-+msgstr "Título"
--#~ msgid "_Title:"
--#~ msgstr "_Título:"
-+msgid "_Title:"
-+msgstr "_Título:"
- #~ msgid "Title and Command"
- #~ msgstr "Título e comando"
--#~ msgid "Set Title"
--#~ msgstr "Definir título"
-+msgid "Set Title"
-+msgstr "Definir título"
- #~ msgid "Current Locale"
- #~ msgstr "Codificação atual"
-@@ -3323,3 +3323,6 @@ msgstr "_Fechar janela"
- #~ "terminal poderão usar. Essa é a paleta, na forma de uma lista de nomes de "
- #~ "cores separada por dois pontos. Os nomes de cores devem estar no formato "
- #~ "hexadecimal. Exemplo: \"#FF00FF\""
+--- gnome-terminal-3.42.0/po/pt_BR.po.orig     2021-09-27 20:48:56.414125950 +0200
++++ gnome-terminal-3.42.0/po/pt_BR.po  2021-09-27 20:52:08.016421285 +0200
+@@ -2482,3 +2482,6 @@ msgstr "_Fechar janela"
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Falha ao analisar os argumentos: %s\n"
 +
 +msgid "Transparent background"
 +msgstr "Fundo transparente"
@@ -2459,26 +2153,13 @@ diff --git a/po/ru.po b/po/ru.po
 index fedc4d3ec51c..c08bffcb4d10 100644
 --- a/po/ru.po
 +++ b/po/ru.po
-@@ -2539,3 +2539,19 @@ msgstr "_Закрыть окно"
+@@ -2539,3 +2539,6 @@ msgstr "_Закрыть окно"
  
  #~ msgid "_Add or Remove…"
  #~ msgstr "_Добавить или удалить…"
 +
 +msgid "Transparent background"
 +msgstr "Прозрачный фон"
-+
-+msgid "Title"
-+msgstr "Заголовок"
-+
-+msgid "_Title:"
-+msgstr "За_головок:"
-+
-+msgctxt "title"
-+msgid "'Terminal'"
-+msgstr "'Терминал'"
-+
-+msgid "Set Title"
-+msgstr "Установить заголовок"
 diff --git a/po/rw.po b/po/rw.po
 index 012f64e325c3..5ff633f8b3c2 100644
 --- a/po/rw.po
@@ -2530,27 +2211,26 @@ diff --git a/po/sk.po b/po/sk.po
 index d0282159b459..01dd96a06939 100644
 --- a/po/sk.po
 +++ b/po/sk.po
-@@ -2916,3 +2916,15 @@ msgstr "_Zavrieť okno"
+@@ -2916,3 +2916,6 @@ msgstr "_Zavrieť okno"
  #~ "\n"
  #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
  #~ "help“.\n"
 +
 +msgid "Transparent background"
 +msgstr "Priehľadné pozadie"
+--- gnome-terminal-3.48.1/po/sl.po.orig        2023-04-07 19:40:45.000000000 +0200
++++ gnome-terminal-3.48.1/po/sl.po     2023-07-24 20:25:28.135798142 +0200
+@@ -2461,6 +2461,9 @@ msgstr "_Zapri okno"
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Napaka med razčlenjevanjem argumentov: %s\n"
++msgid "Transparent background"
++msgstr "Prosojno ozadje"
 +
-+msgid "Title"
-+msgstr "Titulok"
-+
-+msgid "_Title:"
-+msgstr "_Titulok:"
-+
-+msgid "Set Title"
-+msgstr "Nastaviť titulok"
-diff --git a/po/sl.po b/po/sl.po
-index db9cb98834fe..261abe9c1e64 100644
---- a/po/sl.po
-+++ b/po/sl.po
-@@ -2663,17 +2663,17 @@ msgstr "_Zapri okno"
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
+@@ -2890,17 +2893,17 @@ msgstr "Napaka med razčlenjevanjem argu
  #~ msgid "Default size:"
  #~ msgstr "Privzeta velikost:"
  
@@ -2574,13 +2254,6 @@ index db9cb98834fe..261abe9c1e64 100644
  
  #~ msgid "Current Locale"
  #~ msgstr "Trenutne jezikovne nastavitve"
-@@ -2788,3 +2788,6 @@ msgstr "_Zapri okno"
- #~ msgid "_Profile Preferences…"
- #~ msgstr "Možnosti _profila ..."
-+
-+msgid "Transparent background"
-+msgstr "Prosojno ozadje"
 diff --git a/po/sq.po b/po/sq.po
 index 158f6cb167cc..a3494fb70bd6 100644
 --- a/po/sq.po
@@ -2715,7 +2388,7 @@ diff --git a/po/sv.po b/po/sv.po
 index 8560fde55941..bd1030f519ab 100644
 --- a/po/sv.po
 +++ b/po/sv.po
-@@ -2572,5 +2572,17 @@ msgstr "Stän_g fönster"
+@@ -2572,5 +2572,8 @@ msgstr "Stän_g fönster"
  #~ msgid "Unknown completion request for \"%s\""
  #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
  
@@ -2724,15 +2397,6 @@ index 8560fde55941..bd1030f519ab 100644
 +
  #~ msgid "Missing command"
  #~ msgstr "Kommando saknas"
-+
-+msgid "_Title:"
-+msgstr "_Titel:"
-+
-+msgid "Set Title"
-+msgstr "Ställ in titel"
-+
-+msgid "_Set Title…"
-+msgstr "A_nge titel..."
 diff --git a/po/ta.po b/po/ta.po
 index 80aa2f684eec..afd335b0faf0 100644
 --- a/po/ta.po
@@ -2947,26 +2611,15 @@ index 63263749655c..496da331bbf9 100644
  
  #~ msgid ""
  #~ "You already have a profile called “%s”. Do you want to create another "
-diff --git a/po/tr.po b/po/tr.po
-index fa79334e08dc..5b988d7dbd4a 100644
---- a/po/tr.po
-+++ b/po/tr.po
-@@ -2558,3 +2558,15 @@ msgstr "_Pencereyi Kapat"
- #~ msgid "_Same as text color"
- #~ msgstr "_Metin rengiyle aynı"
+--- gnome-terminal-3.46.9/po/tr.po.orig        2023-05-18 21:25:58.042541551 +0200
++++ gnome-terminal-3.46.9/po/tr.po     2023-05-18 21:26:12.169131688 +0200
+@@ -2385,3 +2385,6 @@ msgstr "_Pencereyi Kapat"
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Bağımsız değişkenler ayrıştırılamadı: %s\n"
 +
 +msgid "Transparent background"
 +msgstr "Şeffaf arkaplan"
-+
-+msgid "_Title:"
-+msgstr "_Başlık:"
-+
-+msgid "Set Title"
-+msgstr "Başlığı Düzenle"
-+
-+msgid "_Set Title…"
-+msgstr "_Başlığı Ata..."
 diff --git a/po/ug.po b/po/ug.po
 index 313f76b98eae..be6089762082 100644
 --- a/po/ug.po
@@ -2982,58 +2635,18 @@ index 313f76b98eae..be6089762082 100644
  
  #~ msgid ""
  #~ "You already have a profile called “%s”. Do you want to create another "
-diff --git a/po/uk.po b/po/uk.po
-index a08f25914d12..a4fbcbe6e474 100644
---- a/po/uk.po
-+++ b/po/uk.po
-@@ -2353,11 +2353,11 @@ msgstr "Закр_ити вікно"
- #~ msgid "Default size:"
- #~ msgstr "Типовий розмір:"
+--- gnome-terminal-3.48.1/po/uk.po.orig        2023-07-24 20:07:44.728225782 +0200
++++ gnome-terminal-3.48.1/po/uk.po     2023-07-24 20:08:32.964631130 +0200
+@@ -2473,6 +2473,9 @@ msgstr "Закр_ити вікно"
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Не вдається визначити аргументи: %s\n"
  
--#~ msgid "Title"
--#~ msgstr "Заголовок"
-+msgid "Title"
-+msgstr "Заголовок"
--#~ msgid "_Title:"
--#~ msgstr "За_головок:"
-+msgid "_Title:"
-+msgstr "За_головок:"
- #~ msgid "Title and Command"
- #~ msgstr "Заголовок та команда"
-@@ -2365,14 +2365,14 @@ msgstr "Закр_ити вікно"
- #~ msgid "_Unlimited"
- #~ msgstr "_Нескінченно"
--#~ msgid "Set Title"
--#~ msgstr "Встановлення заголовка"
-+msgid "Set Title"
-+msgstr "Встановлення заголовка"
- #~ msgid "Current Locale"
- #~ msgstr "Теперішня локаль"
--#~ msgid "_Set Title…"
--#~ msgstr "_Встановити заголовок…"
-+msgid "_Set Title…"
-+msgstr "_Встановити заголовок…"
- #~ msgid "_Next Tab"
- #~ msgstr "_Наступна вкладка"
-@@ -3134,8 +3134,8 @@ msgstr "Закр_ити вікно"
- #~ msgid "_Solid color"
- #~ msgstr "_Суцільний колір"
--#~ msgid "_Transparent background"
--#~ msgstr "П_розоре тло"
 +msgid "Transparent background"
 +msgstr "Прозоре тло"
++
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
  
- #~ msgid "Switch to Tab 2"
- #~ msgstr "До вкладки 2"
-diff --git a/po/vi.po b/po/vi.po
-index 67eb9326545f..5a279ad647b6 100644
 --- a/po/vi.po
 +++ b/po/vi.po
 @@ -2673,8 +2673,8 @@ msgstr "Đón_g cửa sổ"
This page took 0.139076 seconds and 4 git commands to generate.