]> 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 3db145fffeeaf1a403d4be308c7c92ef2fed69ca..734f6130a08bc4bf053aa164ef8a801f65c4ed01 100644 (file)
@@ -110,35 +110,33 @@ index 6259aac0f02f..f5c366f14e10 100644
                                        </object>
                                      </child>
                                    </object>
-diff --git a/src/profile-editor.c b/src/profile-editor.c
-index eaad9182fed2..e03e35fc1bea 100644
---- gnome-terminal-3.38.0/src/profile-editor.c.orig    2020-09-20 11:56:27.749274156 +0200
-+++ gnome-terminal-3.38.0/src/profile-editor.c 2020-09-20 11:59:49.354848632 +0200
-@@ -1427,6 +1427,22 @@
-                                "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);
++                               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", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
---- gnome-terminal-3.40.0/src/terminal-schemas.h.orig  2021-04-17 08:51:31.266561277 +0200
-+++ gnome-terminal-3.40.0/src/terminal-schemas.h       2021-04-17 09:04:42.797545957 +0200
+                                "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,10 +147,8 @@ index eaad9182fed2..e03e35fc1bea 100644
  #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"
-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) ||
@@ -164,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);
@@ -192,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);
@@ -203,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;
@@ -251,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);
  }
@@ -306,10 +298,8 @@ 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
+--- 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,
@@ -385,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))
@@ -431,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;
@@ -787,19 +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,6 @@ 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 "Прозрачен фон"
-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:"
@@ -887,20 +869,15 @@ 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"
-diff --git a/po/ca.po b/po/ca.po
-index 4a612fcfc0ba..6091324a9547 100644
---- a/po/ca.po
-+++ b/po/ca.po
-@@ -2420,6 +2420,9 @@ msgstr ""
- 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 "Whether to allow bold text"
- #~ msgstr "Si es permet o no text en negreta"
 diff --git a/po/ca@valencia.po b/po/ca@valencia.po
 index a6e8fb4250dc..c9ed8508228d 100644
 --- a/po/ca@valencia.po
@@ -912,15 +889,18 @@ index a6e8fb4250dc..c9ed8508228d 100644
 +
 +msgid "Transparent background"
 +msgstr "Fons transparent"
---- gnome-terminal-3.40.0/po/cs.po.orig        2021-04-17 09:13:42.492163594 +0200
-+++ gnome-terminal-3.40.0/po/cs.po     2021-04-17 09:15:32.217846326 +0200
-@@ -2432,3 +2432,6 @@ msgstr ""
- #: src/terminal-window.c:3242
- 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 "Armenian"
+ #~ msgstr "Arménské"
 diff --git a/po/cy.po b/po/cy.po
 index 644df82363f1..cd862feb50c0 100644
 --- a/po/cy.po
@@ -947,32 +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
-@@ -2401,6 +2401,9 @@ msgstr ""
- #: src/terminal-window.c:3224
- 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 "Transparent background"
 +msgstr "Gennemsigtig baggrund"
  
- #~ msgid "Whether to allow bold text"
- #~ msgstr "Om fed tekst skal tillades"
---- gnome-terminal-3.40.0/po/de.po.orig        2021-04-17 09:15:55.582389716 +0200
-+++ gnome-terminal-3.40.0/po/de.po     2021-04-17 09:16:52.815353833 +0200
-@@ -2503,6 +2503,9 @@ msgstr ""
- msgid "C_lose Window"
- msgstr "Fenster _schließen"
+ #~ 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"
 +
- # missing accelerator
- #~ msgid "Whether to allow bold text"
- #~ msgstr "Fetten Text erlauben?"
+ #~ 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
@@ -1208,25 +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
-@@ -2272,6 +2272,9 @@ msgstr "Oraindik prozesu bat exekutatzen
- msgid "C_lose Window"
- msgstr "It_xi leihoa"
+--- 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"
 +
- #~ msgid "Whether to allow bold text"
- #~ msgstr "Testu-formatu lodia onartzen den"
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
  
---- gnome-terminal-3.40.0/po/fa.po.orig        2021-03-19 22:43:50.000000000 +0100
-+++ gnome-terminal-3.40.0/po/fa.po     2021-04-17 11:23:51.866939429 +0200
-@@ -2782,8 +2782,8 @@ msgstr "_بستن پنجره"
- #~ msgid "Use custom default terminal si_ze"
- #~ msgstr "استفاده از اندازه‌ی _سفارشی پایانه‌ی پیش‌فرض"
+--- 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 "عنوان"
@@ -1235,7 +1211,7 @@ index f3aab7879a6f..543a121f6aac 100644
  
  #~ msgid "When terminal commands set their o_wn titles:"
  #~ msgstr "وقتی که فرمان‌های پایانه عنوان‌های _خودشان را تنظیم می‌کنند:"
-@@ -2797,8 +2797,8 @@ msgstr "_بستن پنجره"
+@@ -2809,8 +2809,8 @@ msgstr "تجزیهٔ آرگومان‌ه
  #~ msgid "_Unlimited"
  #~ msgstr "_نامحدود"
  
@@ -1246,7 +1222,7 @@ index f3aab7879a6f..543a121f6aac 100644
  
  #~ msgid "Switch to Tab 3"
  #~ msgstr "تعویض به زبانه‌ی ۳"
-@@ -2839,5 +2839,8 @@ msgstr "_بستن پنجره"
+@@ -2851,5 +2851,8 @@ msgstr "تجزیهٔ آرگومان‌ه
  #~ msgid "_Input Methods"
  #~ msgstr "روش‌های _ورودی"
  
@@ -1271,33 +1247,31 @@ index e284b406f040..6e7f402af7bd 100644
  #~| msgid "Error parsing command: %s"
  #~ msgid "Missing command"
  #~ msgstr "Puuttuva komento"
-diff --git a/po/fr.po b/po/fr.po
-index 87a8e0ff46d4..2eacb4584f32 100644
---- a/po/fr.po
-+++ b/po/fr.po
-@@ -2452,6 +2452,9 @@ msgstr ""
- msgid "C_lose Window"
- msgstr "Fermer _la fenêtre"
+--- 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 "Transparent background"
 +msgstr "Arrière-plan transparent"
 +
- #~ msgid "Whether to allow bold text"
- #~ msgstr "Indique s’il faut autoriser le texte en gras"
---- gnome-terminal-3.38.0/po/fur.po.orig       2020-09-12 21:18:27.000000000 +0200
-+++ gnome-terminal-3.38.0/po/fur.po    2020-09-20 12:01:34.634278284 +0200
-@@ -2417,6 +2417,9 @@
- msgid "C_lose Window"
- msgstr "_Siere barcon"
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
+--- 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"
-+
- #~ msgid "Hindi"
- #~ msgstr "Hindi"
  
-@@ -3546,6 +3549,9 @@
+ #~ 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."
  
@@ -1307,7 +1281,7 @@ index 87a8e0ff46d4..2eacb4584f32 100644
  #~ msgid "Switch to Tab 3"
  #~ msgstr "Passe a la schede 3"
  
-@@ -3601,8 +3607,8 @@
+@@ -3668,8 +3674,8 @@ msgstr "Analisi dai argoments falide: %s
  #~ msgid "_Input Methods"
  #~ msgstr "_Cemût inserî test"
  
@@ -1316,8 +1290,8 @@ index 87a8e0ff46d4..2eacb4584f32 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
@@ -1329,15 +1303,18 @@ index 93d5fa9d1481..feb87dce3d6b 100644
 +
 +msgid "Transparent background"
 +msgstr "Cúlra trédhearcach"
---- gnome-terminal-3.40.0/po/gl.po.orig        2021-04-17 11:24:17.591609307 +0200
-+++ gnome-terminal-3.40.0/po/gl.po     2021-04-17 11:24:36.055901966 +0200
-@@ -2454,3 +2454,6 @@ msgstr ""
- #: src/terminal-window.c:3245
- msgid "C_lose Window"
- msgstr "P_echar a xanela"
-+
+--- 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 "Transparent background"
 +msgstr "Fondo transparente"
++
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
 diff --git a/po/gu.po b/po/gu.po
 index 76b459cf8dc5..485beeac98b7 100644
 --- a/po/gu.po
@@ -1486,12 +1463,12 @@ index aec2eaa8bac1..207b5c774b32 100644
 +#: ../src/profile-preferences.glade.h:69
 +msgid "Transparent background"
 +msgstr "Prozirna pozadina"
---- gnome-terminal-3.40.0/po/hu.po.orig        2021-04-17 11:24:59.037095972 +0200
-+++ gnome-terminal-3.40.0/po/hu.po     2021-04-17 11:28:58.849555608 +0200
-@@ -2442,3 +2442,6 @@ msgstr ""
- #: src/terminal-window.c:3245
- msgid "C_lose Window"
- msgstr "_Ablak bezárá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"
@@ -1521,26 +1498,24 @@ 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
-@@ -2392,6 +2392,9 @@ msgstr ""
- msgid "C_lose Window"
- 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 "Transparent background"
 +msgstr "Latar belakang transparan"
 +
- #~ msgid "Hindi"
- #~ msgstr "Hindi"
---- gnome-terminal-3.40.0/po/it.po.orig        2021-04-17 11:29:23.354162096 +0200
-+++ gnome-terminal-3.40.0/po/it.po     2021-04-17 12:02:02.886015004 +0200
-@@ -2468,3 +2468,6 @@ msgstr ""
- #: src/terminal-window.c:3245
- 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"
@@ -1556,28 +1531,18 @@ index 9198218c5aaa..9f2fbd0c9d4c 100644
  #~ msgid "Whether to allow bold text"
  #~ msgstr "太字のフォントを許可するかどうか"
  
---- gnome-terminal-3.40.0/po/ka.po.orig        2021-02-22 17:08:51.000000000 +0100
-+++ gnome-terminal-3.40.0/po/ka.po     2021-04-17 12:12:38.605723333 +0200
-@@ -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 "ბრძანება"
- #: ../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
@@ -1877,12 +1842,12 @@ index f2ebd4851d3b..f3d44c9c6294 100644
  #~ msgid "Accelerator key"
  #~ msgstr "Kekunci pemecut"
  
---- gnome-terminal-3.40.0/po/nb.po.orig        2021-04-17 12:13:02.850316782 +0200
-+++ gnome-terminal-3.40.0/po/nb.po     2021-04-17 12:13:27.591601923 +0200
-@@ -2406,3 +2406,6 @@ msgstr ""
- #: src/terminal-window.c:3224
- 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"
@@ -1912,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 "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
  
@@ -1927,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 "आगत विधि"
  
@@ -1947,8 +1899,19 @@ 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
@@ -2162,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"
@@ -2281,11 +2218,19 @@ index d0282159b459..01dd96a06939 100644
 +
 +msgid "Transparent background"
 +msgstr "Priehľadné pozadie"
-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"
+--- 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 "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
+@@ -2890,17 +2893,17 @@ msgstr "Napaka med razčlenjevanjem argu
  #~ msgid "Default size:"
  #~ msgstr "Privzeta velikost:"
  
@@ -2309,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
@@ -2673,14 +2611,12 @@ 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,6 @@ 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"
@@ -2699,17 +2635,18 @@ index 313f76b98eae..be6089762082 100644
  
  #~ msgid ""
  #~ "You already have a profile called “%s”. Do you want to create another "
---- gnome-terminal-3.40.0/po/uk.po.orig        2021-04-17 12:13:49.869425706 +0200
-+++ gnome-terminal-3.40.0/po/uk.po     2021-04-17 12:17:37.387909749 +0200
-@@ -2431,3 +2431,6 @@ msgstr ""
- #: src/terminal-window.c:3242
- msgid "C_lose Window"
- 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 "Transparent background"
 +msgstr "Прозоре тло"
-diff --git a/po/vi.po b/po/vi.po
-index 67eb9326545f..5a279ad647b6 100644
++
+ #~ msgid "org.gnome.Terminal"
+ #~ msgstr "org.gnome.Terminal"
 --- a/po/vi.po
 +++ b/po/vi.po
 @@ -2673,8 +2673,8 @@ msgstr "Đón_g cửa sổ"
This page took 0.104286 seconds and 4 git commands to generate.