]> git.pld-linux.org Git - packages/gnome-terminal.git/blobdiff - gnome-terminal-transparency.patch
- updated to 3.42.2
[packages/gnome-terminal.git] / gnome-terminal-transparency.patch
index 3db145fffeeaf1a403d4be308c7c92ef2fed69ca..b5609578027e2218ac1348bd95f73de36330037e 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,13 +869,11 @@ 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.42.0/po/ca.po.orig        2021-09-28 20:51:59.251573903 +0200
++++ gnome-terminal-3.42.0/po/ca.po     2021-09-28 20:52:42.247140898 +0200
+@@ -2478,6 +2478,9 @@ msgstr "Tanca la _finestra"
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Ha fallat l'anàlisi dels arguments: %s\n"
  
 +msgid "Transparent background"
 +msgstr "Fons transparent"
@@ -912,13 +892,12 @@ 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.42.1/po/cs.po.orig        2021-10-30 21:50:29.120028953 +0200
++++ gnome-terminal-3.42.1/po/cs.po     2021-10-30 22:53:37.762837447 +0200
+@@ -2378,3 +2378,5 @@ 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í"
 diff --git a/po/cy.po b/po/cy.po
@@ -947,25 +926,23 @@ 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.42.0/po/da.po.orig        2021-09-28 20:53:11.281982620 +0200
++++ gnome-terminal-3.42.0/po/da.po     2021-09-28 20:53:37.063321984 +0200
+@@ -2456,6 +2456,9 @@ msgstr "_Luk vindue"
+ 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"
+--- gnome-terminal-3.42.0/po/de.po.orig        2021-09-28 20:53:56.974356382 +0200
++++ gnome-terminal-3.42.0/po/de.po     2021-09-28 20:54:19.262180924 +0200
+@@ -2524,6 +2524,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"
@@ -1208,13 +1185,11 @@ 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.42.0/po/eu.po.orig        2021-09-28 20:54:46.463594063 +0200
++++ gnome-terminal-3.42.0/po/eu.po     2021-09-28 20:55:11.768241998 +0200
+@@ -2328,6 +2328,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"
@@ -1271,13 +1246,11 @@ 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.42.0/po/fr.po.orig        2021-09-28 20:55:36.466191747 +0200
++++ gnome-terminal-3.42.0/po/fr.po     2021-09-28 20:55:56.450563288 +0200
+@@ -2512,6 +2512,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"
@@ -1329,12 +1302,12 @@ 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.42.0/po/gl.po.orig        2021-09-27 20:43:51.119113208 +0200
++++ gnome-terminal-3.42.0/po/gl.po     2021-09-27 20:45:04.598715135 +0200
+@@ -2481,3 +2481,6 @@ msgstr "P_echar a xanela"
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Produciuse un erro ao analizar os argumentos: %s\n"
 +
 +msgid "Transparent background"
 +msgstr "Fondo transparente"
@@ -1486,12 +1459,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,13 +1494,11 @@ 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.42.0/po/id.po.orig        2021-09-28 20:56:11.671354023 +0200
++++ gnome-terminal-3.42.0/po/id.po     2021-09-28 20:56:32.785784271 +0200
+@@ -2448,6 +2448,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"
@@ -1912,11 +1883,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 +1896,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 +1905,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 +2131,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"
@@ -2699,17 +2642,15 @@ 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 "Ð\97акÑ\80_иÑ\82и Ð²Ñ\96кно"
+--- gnome-terminal-3.42.0/po/uk.po.orig        2021-09-27 20:52:35.752937690 +0200
++++ gnome-terminal-3.42.0/po/uk.po     2021-09-27 20:54:10.739089772 +0200
+@@ -2453,3 +2453,6 @@ msgstr "Закр_ити вікно"
+ #, c-format
+ msgid "Failed to parse arguments: %s\n"
+ msgstr "Ð\9dе Ð²Ð´Ð°Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f Ð²Ð¸Ð·Ð½Ð°Ñ\87иÑ\82и Ð°Ñ\80гÑ\83менÑ\82и: %s\n"
 +
 +msgid "Transparent background"
 +msgstr "Прозоре тло"
-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.074552 seconds and 4 git commands to generate.