summarylogtreecommitdiffstats
path: root/transparency.patch
diff options
context:
space:
mode:
authorPeter Weber2020-03-24 12:08:45 +0100
committerPeter Weber2020-03-24 12:08:45 +0100
commita2fc7b69075a3032c284bea01a42ecbb68afaa00 (patch)
treeed545390ce1b96965c2772005a499147fab6b948 /transparency.patch
parent8067ca0afa3d8f93bd95b13ed7d934b20318ca58 (diff)
downloadaur-a2fc7b69075a3032c284bea01a42ecbb68afaa00.tar.gz
upstream upgrade
Diffstat (limited to 'transparency.patch')
-rw-r--r--transparency.patch373
1 files changed, 162 insertions, 211 deletions
diff --git a/transparency.patch b/transparency.patch
index d613c28aa55f..bda9e2a865ba 100644
--- a/transparency.patch
+++ b/transparency.patch
@@ -1,7 +1,7 @@
-From fc34114172d60f65ae7f4c663513ae37e0c3ebf2 Mon Sep 17 00:00:00 2001
+From 8179539a9e51b455bb1bafdeece1dfdcc18fd85e Mon Sep 17 00:00:00 2001
From: Debarshi Ray <debarshir@gnome.org>
Date: Mon, 12 May 2014 14:57:18 +0200
-Subject: [PATCH 01/18] Restore transparency
+Subject: [PATCH 01/16] Restore transparency
The transparency settings were removed as a side effect of
2bff4b63ed3ceef6055e35563e9b0b33ad57349d
@@ -25,10 +25,10 @@ Some changes by Peter Weber <peter.weber@mailbox.org>
6 files changed, 104 insertions(+), 1 deletion(-)
diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
-index b9e7d741ee5c..cd64124c1a6e 100644
+index be6205d6a3be..0a1d8eaf5fed 100644
--- a/src/org.gnome.Terminal.gschema.xml
+++ b/src/org.gnome.Terminal.gschema.xml
-@@ -405,6 +405,16 @@
+@@ -344,6 +344,16 @@
<default>'narrow'</default>
<summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
</key>
@@ -46,10 +46,10 @@ index b9e7d741ee5c..cd64124c1a6e 100644
<!-- Keybinding settings -->
diff --git a/src/preferences.ui b/src/preferences.ui
-index f42b652c586b..60ab5b253876 100644
+index a6cf07d2e8c1..6526c4ff4832 100644
--- a/src/preferences.ui
+++ b/src/preferences.ui
-@@ -77,6 +77,11 @@
+@@ -95,6 +95,11 @@
<property name="step_increment">0.05</property>
<property name="page_increment">0.25</property>
</object>
@@ -61,7 +61,7 @@ index f42b652c586b..60ab5b253876 100644
<object class="GtkListStore" id="cjk-ambiguous-width-model">
<columns>
<!-- column-name gchararray -->
-@@ -1316,6 +1321,48 @@
+@@ -1399,6 +1404,48 @@
<property name="position">1</property>
</packing>
</child>
@@ -111,10 +111,10 @@ index f42b652c586b..60ab5b253876 100644
</child>
</object>
diff --git a/src/profile-editor.c b/src/profile-editor.c
-index 1912c8cf2431..a0081e23a1c5 100644
+index f2e8bd45cfe2..6038a9c60949 100644
--- a/src/profile-editor.c
+++ b/src/profile-editor.c
-@@ -1254,6 +1254,22 @@ profile_prefs_load (const char *uuid, GSettings *profile)
+@@ -1389,6 +1389,22 @@ profile_prefs_load (const char *uuid, GSettings *profile)
w,
"active-id",
G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
@@ -138,7 +138,7 @@ index 1912c8cf2431..a0081e23a1c5 100644
/* 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 bd2fa8c5a857..82bbe45ade96 100644
+index 05e9f8198549..c9e7c895d700 100644
--- a/src/terminal-schemas.h
+++ b/src/terminal-schemas.h
@@ -75,6 +75,9 @@ G_BEGIN_DECLS
@@ -152,10 +152,10 @@ index bd2fa8c5a857..82bbe45ade96 100644
#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 684da49afeb9..00aed8f53b78 100644
+index dc9f84471867..29d72df8883c 100644
--- a/src/terminal-screen.c
+++ b/src/terminal-screen.c
-@@ -800,7 +800,9 @@ terminal_screen_profile_changed_cb (GSettings *profile,
+@@ -1059,7 +1059,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) ||
prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_FOREGROUND_COLOR_KEY) ||
@@ -166,7 +166,7 @@ index 684da49afeb9..00aed8f53b78 100644
update_color_scheme (screen);
if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
-@@ -884,6 +886,8 @@ update_color_scheme (TerminalScreen *screen)
+@@ -1140,6 +1142,8 @@ update_color_scheme (TerminalScreen *screen)
GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
GtkStyleContext *context;
@@ -175,7 +175,7 @@ index 684da49afeb9..00aed8f53b78 100644
gboolean use_theme_colors;
context = gtk_widget_get_style_context (widget);
-@@ -925,6 +929,18 @@ update_color_scheme (TerminalScreen *screen)
+@@ -1183,6 +1187,18 @@ update_color_scheme (TerminalScreen *screen)
}
colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
@@ -194,7 +194,7 @@ index 684da49afeb9..00aed8f53b78 100644
vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
colors, n_colors);
vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
-@@ -932,6 +948,10 @@ update_color_scheme (TerminalScreen *screen)
+@@ -1190,6 +1206,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);
@@ -206,10 +206,10 @@ index 684da49afeb9..00aed8f53b78 100644
static void
diff --git a/src/terminal-window.c b/src/terminal-window.c
-index 040fc4f4d71a..e1dca4a23bd0 100644
+index 7a8953c50388..a3d77bf6719d 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
-@@ -2125,6 +2125,8 @@ terminal_window_init (TerminalWindow *window)
+@@ -2094,6 +2094,8 @@ terminal_window_init (TerminalWindow *window)
};
TerminalWindowPrivate *priv;
TerminalApp *app;
@@ -218,7 +218,7 @@ index 040fc4f4d71a..e1dca4a23bd0 100644
GSettings *gtk_debug_settings;
GtkWindowGroup *window_group;
// GtkAccelGroup *accel_group;
-@@ -2140,6 +2142,11 @@ terminal_window_init (TerminalWindow *window)
+@@ -2109,6 +2111,11 @@ terminal_window_init (TerminalWindow *window)
gtk_widget_init_template (GTK_WIDGET (window));
@@ -231,13 +231,13 @@ index 040fc4f4d71a..e1dca4a23bd0 100644
uuid_unparse (u, uuidstr);
priv->uuid = g_strdup (uuidstr);
--
-2.23.0
+2.24.1
-From b554bcd63783e10a2051d80f995a7dccdd282d38 Mon Sep 17 00:00:00 2001
+From 04bfcefd7f23d45e4cbdc74391bcdca44ee7f49a Mon Sep 17 00:00:00 2001
From: Lars Uebernickel <lars.uebernickel@canonical.com>
Date: Wed, 28 May 2014 14:11:02 +0200
-Subject: [PATCH 02/18] window: Make the drawing robust across all themes
+Subject: [PATCH 02/16] window: Make the drawing robust across all themes
There are lots of themes out there in the wild that do not specify a
background-color for all widgets and the default is transparent. This
@@ -254,10 +254,10 @@ https://bugzilla.gnome.org/show_bug.cgi?id=730016
1 file changed, 21 insertions(+)
diff --git a/src/terminal-window.c b/src/terminal-window.c
-index e1dca4a23bd0..525af2e80c1b 100644
+index a3d77bf6719d..36d155a9e420 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
-@@ -1979,6 +1979,26 @@ terminal_window_realize (GtkWidget *widget)
+@@ -1953,6 +1953,26 @@ terminal_window_realize (GtkWidget *widget)
terminal_window_update_size (window);
}
@@ -284,7 +284,7 @@ index e1dca4a23bd0..525af2e80c1b 100644
static gboolean
terminal_window_state_event (GtkWidget *widget,
GdkEventWindowState *event)
-@@ -2301,6 +2321,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
+@@ -2270,6 +2290,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
widget_class->show = terminal_window_show;
widget_class->realize = terminal_window_realize;
@@ -293,35 +293,35 @@ index e1dca4a23bd0..525af2e80c1b 100644
widget_class->screen_changed = terminal_window_screen_changed;
widget_class->style_updated = terminal_window_style_updated;
--
-2.23.0
+2.24.1
-From 3f72661d1b1690be201fdf0b55cab13c67163cad Mon Sep 17 00:00:00 2001
+From 676d1b2e13c497d0380eb7fd7c0c5a426ef96f1b Mon Sep 17 00:00:00 2001
From: "Owen W. Taylor" <otaylor@fishsoup.net>
Date: Fri, 13 Nov 2015 15:16:42 +0100
-Subject: [PATCH 03/18] screen, window: Extra padding around transparent
+Subject: [PATCH 03/16] screen, window: Extra padding around transparent
terminals in Wayland
https://bugzilla.redhat.com/show_bug.cgi?id=1207943
---
- src/terminal-screen.c | 40 +++++++++++++++++++++++++++++++++++++---
+ src/terminal-screen.c | 41 +++++++++++++++++++++++++++++++++++++----
src/terminal-window.c | 18 ++++++++++++------
- 2 files changed, 49 insertions(+), 9 deletions(-)
+ 2 files changed, 49 insertions(+), 10 deletions(-)
diff --git a/src/terminal-screen.c b/src/terminal-screen.c
-index 00aed8f53b78..ffa7b3239cae 100644
+index 29d72df8883c..92b0053de763 100644
--- a/src/terminal-screen.c
+++ b/src/terminal-screen.c
-@@ -139,6 +139,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *,
+@@ -154,6 +154,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *,
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);
+
+@@ -620,6 +622,7 @@ terminal_screen_class_init (TerminalScreenClass *klass)
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;
@@ -329,7 +329,7 @@ index 00aed8f53b78..ffa7b3239cae 100644
terminal_class->child_exited = terminal_screen_child_exited;
-@@ -871,6 +874,32 @@ terminal_screen_profile_changed_cb (GSettings *profile,
+@@ -1127,6 +1130,32 @@ terminal_screen_profile_changed_cb (GSettings *profile,
g_object_thaw_notify (object);
}
@@ -362,7 +362,15 @@ index 00aed8f53b78..ffa7b3239cae 100644
static void
update_color_scheme (TerminalScreen *screen)
{
-@@ -949,9 +978,7 @@ update_color_scheme (TerminalScreen *screen)
+@@ -1142,7 +1171,6 @@ update_color_scheme (TerminalScreen *screen)
+ GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
+ GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
+ GtkStyleContext *context;
+- GtkWidget *toplevel;
+ gboolean transparent;
+ gboolean use_theme_colors;
+
+@@ -1207,9 +1235,7 @@ update_color_scheme (TerminalScreen *screen)
vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
@@ -373,7 +381,7 @@ index 00aed8f53b78..ffa7b3239cae 100644
}
static void
-@@ -1556,6 +1583,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
+@@ -1791,6 +1817,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
terminal_screen_popup_info_unref (info);
}
@@ -388,10 +396,10 @@ index 00aed8f53b78..ffa7b3239cae 100644
terminal_screen_button_press (GtkWidget *widget,
GdkEventButton *event)
diff --git a/src/terminal-window.c b/src/terminal-window.c
-index 525af2e80c1b..87d6d92ccdd7 100644
+index 36d155a9e420..c0219d872725 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
-@@ -1985,15 +1985,21 @@ terminal_window_draw (GtkWidget *widget,
+@@ -1959,15 +1959,21 @@ terminal_window_draw (GtkWidget *widget,
{
if (gtk_widget_get_app_paintable (widget))
{
@@ -420,39 +428,13 @@ index 525af2e80c1b..87d6d92ccdd7 100644
return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
--
-2.23.0
+2.24.1
-From 0cbcb0ceaaf5e82160a3cdc928a402d285377510 Mon Sep 17 00:00:00 2001
-From: Debarshi Ray <debarshir@gnome.org>
-Date: Mon, 27 Feb 2017 16:53:51 +0100
-Subject: [PATCH 04/18] screen: Silence -Wunused variable
-
-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 ffa7b3239cae..6cb3e20c4f42 100644
---- a/src/terminal-screen.c
-+++ b/src/terminal-screen.c
-@@ -915,7 +915,6 @@ update_color_scheme (TerminalScreen *screen)
- GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
- GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
- GtkStyleContext *context;
-- GtkWidget *toplevel;
- gboolean transparent;
- gboolean use_theme_colors;
-
---
-2.23.0
-
-
-From d6d6d29ac8961f5014db5bb7505d33d09a8cfab3 Mon Sep 17 00:00:00 2001
+From 9b9d2dca0b998a1e5076225a764621e7aea14714 Mon Sep 17 00:00:00 2001
From: Debarshi Ray <debarshir@gnome.org>
Date: Tue, 17 Feb 2015 17:06:17 +0100
-Subject: [PATCH 13/18] Restore translations for setting a title and
+Subject: [PATCH 11/16] Restore translations for setting a title and
transparency
---
@@ -489,7 +471,7 @@ Subject: [PATCH 13/18] Restore translations for setting a title and
po/fr.po | 12 ++++++++++++
po/fur.po | 11 +++++++++--
po/ga.po | 3 +++
- po/gl.po | 16 ++++++++--------
+ po/gl.po | 12 ++++++++++++
po/gu.po | 16 ++++++++--------
po/he.po | 16 ++++++++--------
po/hi.po | 17 ++++++++---------
@@ -513,7 +495,7 @@ Subject: [PATCH 13/18] Restore translations for setting a title and
po/ml.po | 3 +++
po/mn.po | 8 ++++----
po/mr.po | 16 ++++++++--------
- po/ms.po | 8 ++++----
+ po/ms.po | 4 ++--
po/nb.po | 12 ++++++++++++
po/nds.po | 8 ++++----
po/ne.po | 12 ++++++------
@@ -541,14 +523,14 @@ Subject: [PATCH 13/18] Restore translations for setting a title and
po/th.po | 20 ++++++++++----------
po/tr.po | 12 ++++++++++++
po/ug.po | 4 ++--
- po/uk.po | 20 ++++++++++----------
+ po/uk.po | 19 +++++++++++--------
po/vi.po | 15 +++++++++------
po/wa.po | 12 ++++++------
po/xh.po | 12 ++++++------
po/zh_CN.po | 15 +++++++++------
po/zh_HK.po | 15 +++++++++------
po/zh_TW.po | 15 +++++++++------
- 92 files changed, 712 insertions(+), 363 deletions(-)
+ 92 files changed, 715 insertions(+), 351 deletions(-)
diff --git a/po/am.po b/po/am.po
index 3445d96da657..ee992f0712a5 100644
@@ -905,13 +887,13 @@ index 49e710859ac9..8703552984b1 100644
+msgid "Set Title"
+msgstr "Postavi naslov"
diff --git a/po/ca.po b/po/ca.po
-index 0d8fb4a47b52..a0c408a3b1df 100644
+index d8e04df44eb7..fe8535547ebe 100644
--- a/po/ca.po
+++ b/po/ca.po
-@@ -2332,3 +2332,15 @@ msgstr ""
- #: ../src/terminal-window.c:3256
- msgid "C_lose Window"
- msgstr "Tanca la _finestra"
+@@ -2454,3 +2454,15 @@ msgstr "Tanca la _finestra"
+
+ #~ msgid "_Detach Tab"
+ #~ msgstr "_Separa la pestanya"
+
+msgid "Transparent background"
+msgstr "Fons transparent"
@@ -945,11 +927,11 @@ index a6e8fb4250dc..c9ed8508228d 100644
+msgid "Set Title"
+msgstr "Estableix el títol"
diff --git a/po/cs.po b/po/cs.po
-index f6b903b04c75..4aeeb060bd23 100644
+index bbb3fd679c8a..98125e7209aa 100644
--- a/po/cs.po
+++ b/po/cs.po
-@@ -2307,3 +2307,15 @@ msgstr ""
- #: ../src/terminal-window.c:3256
+@@ -2297,3 +2297,15 @@ msgstr ""
+ #: ../src/terminal-window.c:3225
msgid "C_lose Window"
msgstr "_Zavřít okno"
+
@@ -991,13 +973,13 @@ 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 f0a55df987d5..e1014bfb18b5 100644
+index 31d145f37174..ebfaaae38ecf 100644
--- a/po/da.po
+++ b/po/da.po
-@@ -2312,3 +2312,15 @@ msgstr ""
- #: ../src/terminal-window.c:3256
- msgid "C_lose Window"
- msgstr "_Luk vindue"
+@@ -2434,3 +2434,15 @@ msgstr "_Luk vindue"
+
+ #~ msgid "_Detach Tab"
+ #~ msgstr "_Løsriv faneblad"
+
+msgid "Title"
+msgstr "Titel"
@@ -1144,10 +1126,10 @@ index 6c9e0cd73d63..db4aa891dd45 100644
#: ../src/gnome-terminal.glade2.h:87
msgid "_Update login records when command is launched"
diff --git a/po/en_GB.po b/po/en_GB.po
-index 4d5bef4fa4f4..fc605c21b66c 100644
+index 4f75ff1425df..7edfb0a08396 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
-@@ -2690,8 +2690,8 @@ msgstr "C_lose Window"
+@@ -2807,8 +2807,8 @@ msgstr "C_lose Window"
#~ msgid "Default size:"
#~ msgstr "Default size:"
@@ -1158,7 +1140,7 @@ index 4d5bef4fa4f4..fc605c21b66c 100644
#~ msgid "When terminal commands set their o_wn titles:"
#~ msgstr "When terminal commands set their o_wn titles:"
-@@ -2708,8 +2708,8 @@ msgstr "C_lose Window"
+@@ -2825,8 +2825,8 @@ msgstr "C_lose Window"
#~ msgid "_Unlimited"
#~ msgstr "_Unlimited"
@@ -1169,7 +1151,7 @@ index 4d5bef4fa4f4..fc605c21b66c 100644
#~ msgid "Switch to Tab 3"
#~ msgstr "Switch to Tab 3"
-@@ -2750,8 +2750,8 @@ msgstr "C_lose Window"
+@@ -2867,8 +2867,8 @@ msgstr "C_lose Window"
#~ msgid "_Input Methods"
#~ msgstr "_Input Methods"
@@ -1180,7 +1162,7 @@ index 4d5bef4fa4f4..fc605c21b66c 100644
#~ msgid "Add or Remove Terminal Encodings"
#~ msgstr "Add or Remove Terminal Encodings"
-@@ -3446,8 +3446,8 @@ msgstr "C_lose Window"
+@@ -3563,8 +3563,8 @@ msgstr "C_lose Window"
#~ msgid "Background image _scrolls"
#~ msgstr "Background image _scrolls"
@@ -1218,10 +1200,10 @@ index 2956aa8c3f6d..a91669d7a5e0 100644
#~ msgid "On the left side"
#~ msgstr "Maldekstre"
diff --git a/po/es.po b/po/es.po
-index 26401a60f509..f44295c5d113 100644
+index 2792ab4d1729..35d80bf8b1ad 100644
--- a/po/es.po
+++ b/po/es.po
-@@ -2750,17 +2750,17 @@ msgstr "_Cerrar ventana"
+@@ -2864,17 +2864,17 @@ msgstr "_Cerrar ventana"
#~ msgid "Default size:"
#~ msgstr "Tamaño predeterminado:"
@@ -1245,7 +1227,7 @@ index 26401a60f509..f44295c5d113 100644
#~ msgid "Current Locale"
#~ msgstr "Configuración regional actual"
-@@ -3586,8 +3586,8 @@ msgstr "_Cerrar ventana"
+@@ -3700,8 +3700,8 @@ msgstr "_Cerrar ventana"
#~ msgid "_Solid color"
#~ msgstr "Color _sólido"
@@ -1268,13 +1250,13 @@ index 4b1c2a7c67e4..770761168806 100644
+msgid "Transparent background"
+msgstr "Läbipaistev taust"
diff --git a/po/eu.po b/po/eu.po
-index 6d71f53e5005..2ef191d5d6e3 100644
+index c37a2b2c6de2..e982592eb140 100644
--- a/po/eu.po
+++ b/po/eu.po
-@@ -2188,3 +2188,15 @@ msgstr "Oraindik prozesu bat exekutatzen ari da terminal honetan. Terminal hau i
- #: ../src/terminal-window.c:3256
- msgid "C_lose Window"
- msgstr "It_xi leihoa"
+@@ -2306,3 +2306,15 @@ msgstr "It_xi leihoa"
+
+ #~ msgid "_Detach Tab"
+ #~ msgstr "_Desuztartu fitxa"
+
+msgid "Title"
+msgstr "Titulua"
@@ -1288,10 +1270,10 @@ index 6d71f53e5005..2ef191d5d6e3 100644
+msgid "Transparent background"
+msgstr "Atzeko plano gardena"
diff --git a/po/fa.po b/po/fa.po
-index 0337bfc40a74..089f9aa2520c 100644
+index 01b58df6b687..c5c7c3c7c35b 100644
--- a/po/fa.po
+++ b/po/fa.po
-@@ -2631,8 +2631,8 @@ msgstr "_بستن پنجره"
+@@ -2716,8 +2716,8 @@ msgstr "_بستن پنجره"
#~ msgid "Use custom default terminal si_ze"
#~ msgstr "استفاده از اندازه‌ی _سفارشی پایانه‌ی پیش‌فرض"
@@ -1302,7 +1284,7 @@ index 0337bfc40a74..089f9aa2520c 100644
#~ msgid "When terminal commands set their o_wn titles:"
#~ msgstr "وقتی که فرمان‌های پایانه عنوان‌های _خودشان را تنظیم می‌کنند:"
-@@ -2646,8 +2646,8 @@ msgstr "_بستن پنجره"
+@@ -2731,8 +2731,8 @@ msgstr "_بستن پنجره"
#~ msgid "_Unlimited"
#~ msgstr "_نامحدود"
@@ -1313,7 +1295,7 @@ index 0337bfc40a74..089f9aa2520c 100644
#~ msgid "Switch to Tab 3"
#~ msgstr "تعویض به زبانه‌ی ۳"
-@@ -2688,5 +2688,8 @@ msgstr "_بستن پنجره"
+@@ -2773,5 +2773,8 @@ msgstr "_بستن پنجره"
#~ msgid "_Input Methods"
#~ msgstr "روش‌های _ورودی"
@@ -1325,10 +1307,10 @@ index 0337bfc40a74..089f9aa2520c 100644
+msgid "Transparent background"
+msgstr "پس‌زمینه‌ی شفاف"
diff --git a/po/fi.po b/po/fi.po
-index 1d341ed83115..7ab745dafa50 100644
+index 056943256725..bbb7ade1bb6b 100644
--- a/po/fi.po
+++ b/po/fi.po
-@@ -2591,9 +2591,21 @@ msgstr "_Sulje ikkuna"
+@@ -2724,9 +2724,21 @@ msgstr "_Sulje ikkuna"
#~ msgid "_Update login records when command is launched"
#~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
@@ -1351,13 +1333,13 @@ index 1d341ed83115..7ab745dafa50 100644
+msgid "Set Title"
+msgstr "Aseta otsikko"
diff --git a/po/fr.po b/po/fr.po
-index 6cd261bd12e8..2d653ab35141 100644
+index f24e886dc948..5a9f9b5cde5c 100644
--- a/po/fr.po
+++ b/po/fr.po
-@@ -2359,3 +2359,15 @@ msgstr ""
- #: ../src/terminal-window.c:3256
- msgid "C_lose Window"
- msgstr "Fermer _la fenêtre"
+@@ -2485,3 +2485,15 @@ msgstr "Fermer _la fenêtre"
+
+ #~ msgid "_Detach Tab"
+ #~ msgstr "_Détacher l’onglet"
+
+msgid "Transparent background"
+msgstr "Arrière-plan transparent"
@@ -1371,10 +1353,10 @@ index 6cd261bd12e8..2d653ab35141 100644
+msgid "Set Title"
+msgstr "Définir le titre"
diff --git a/po/fur.po b/po/fur.po
-index 9749184f89b9..a000152a6164 100644
+index d8e254f5545a..21158b2fa64c 100644
--- a/po/fur.po
+++ b/po/fur.po
-@@ -461,6 +461,10 @@ msgstr ""
+@@ -466,6 +466,10 @@ msgstr ""
msgid "Which encoding to use"
msgstr "Codifiche di doprâ"
@@ -1385,7 +1367,7 @@ index 9749184f89b9..a000152a6164 100644
#: ../src/org.gnome.Terminal.gschema.xml.h:70
msgid ""
"Whether ambiguous-width characters are narrow or wide when using UTF-8 "
-@@ -3401,6 +3405,9 @@ msgstr "_Siere barcon"
+@@ -3427,6 +3431,9 @@ msgstr "_Siere barcon"
#~ 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."
@@ -1395,7 +1377,7 @@ index 9749184f89b9..a000152a6164 100644
#~ msgid "Switch to Tab 3"
#~ msgstr "Passe a la schede 3"
-@@ -3456,8 +3463,8 @@ msgstr "_Siere barcon"
+@@ -3482,8 +3489,8 @@ msgstr "_Siere barcon"
#~ msgid "_Input Methods"
#~ msgstr "_Cemût inserî test"
@@ -1418,44 +1400,25 @@ index 93d5fa9d1481..feb87dce3d6b 100644
+msgid "Transparent background"
+msgstr "Cúlra trédhearcach"
diff --git a/po/gl.po b/po/gl.po
-index 602a307a5ea8..f8584aa98f36 100644
+index 89b7501d2358..0761a31a8d1f 100644
--- a/po/gl.po
+++ b/po/gl.po
-@@ -2709,17 +2709,17 @@ msgstr "P_echar a xanela"
- #~ msgid "Default size:"
- #~ msgstr "Tamaño predeterminado:"
-
--#~ msgid "Title"
--#~ msgstr "Título"
+@@ -2418,3 +2418,15 @@ msgstr ""
+ #: src/terminal-window.c:3224
+ msgid "C_lose Window"
+ msgstr "P_echar a xanela"
++
+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"
-
- #~ msgid "Current Locale"
- #~ msgstr "Configuración rexional actual"
-@@ -3533,8 +3533,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 "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
@@ -1593,10 +1556,10 @@ index 2d7dc5b14008..8d3d0529df61 100644
#~ msgid "S/Key Challenge Response"
#~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
diff --git a/po/hr.po b/po/hr.po
-index 0b617d94ebd6..5f5bfd52514d 100644
+index 4bbb3629a82a..a440505c5203 100644
--- a/po/hr.po
+++ b/po/hr.po
-@@ -2591,3 +2591,13 @@ msgstr "_Zatvori prozor"
+@@ -2710,3 +2710,13 @@ msgstr "_Zatvori prozor"
#~ msgid "Use transparency from system theme"
#~ msgstr "Koristi prozirnost iz teme sustava"
@@ -1611,11 +1574,11 @@ index 0b617d94ebd6..5f5bfd52514d 100644
+msgid "Set Title"
+msgstr "Postavi naslov"
diff --git a/po/hu.po b/po/hu.po
-index 0d5c12c66841..a8bc2d979218 100644
+index b498f34e8983..5e2250e6196e 100644
--- a/po/hu.po
+++ b/po/hu.po
-@@ -2318,3 +2318,15 @@ msgstr ""
- #: ../src/terminal-window.c:3256
+@@ -2410,3 +2410,15 @@ msgstr ""
+ #: src/terminal-window.c:3224
msgid "C_lose Window"
msgstr "_Ablak bezárása"
+
@@ -1657,13 +1620,13 @@ 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 41bbbe3f1eb6..4b89d0f76328 100644
+index 9d37f273ac6b..764008affd95 100644
--- a/po/id.po
+++ b/po/id.po
-@@ -2576,3 +2576,15 @@ msgstr "Tutup Jende_la"
+@@ -2415,3 +2415,15 @@ msgstr "Tutup Jende_la"
- #~ msgid "_Add or Remove…"
- #~ msgstr "T_ambah atau Hapus…"
+ #~ msgid "_Detach Tab"
+ #~ msgstr "_Pisahkan Tab"
+
+msgid "Transparent background"
+msgstr "Latar belakang transparan"
@@ -1677,11 +1640,11 @@ index 41bbbe3f1eb6..4b89d0f76328 100644
+msgid "Set Title"
+msgstr "Atur Judul"
diff --git a/po/it.po b/po/it.po
-index d4a31c1c8b13..fe2766ebaa06 100644
+index e08dfae8009c..b224bbdc1f3a 100644
--- a/po/it.po
+++ b/po/it.po
-@@ -2340,3 +2340,15 @@ msgstr ""
- #: ../src/terminal-window.c:3256
+@@ -2434,3 +2434,15 @@ msgstr ""
+ #: src/terminal-window.c:3224
msgid "C_lose Window"
msgstr "Chiudi _finestra"
+
@@ -1697,13 +1660,13 @@ index d4a31c1c8b13..fe2766ebaa06 100644
+msgid "Set Title"
+msgstr "Imposta titolo"
diff --git a/po/ja.po b/po/ja.po
-index 4332b6badc34..6513d5e18ad0 100644
+index 69608253837f..87d927431d7a 100644
--- a/po/ja.po
+++ b/po/ja.po
-@@ -2541,3 +2541,15 @@ msgstr "ウィンドウを閉じる(_L)"
+@@ -2481,3 +2481,15 @@ msgstr "ウィンドウを閉じる(_L)"
- #~ msgid "_Add or Remove…"
- #~ msgstr "追加/削除(_A)…"
+ #~ msgid "_Incremental Search…"
+ #~ msgstr "インクリメンタル検索(_I)…"
+
+msgid "Transparent background"
+msgstr "透過な画像にする"
@@ -1813,10 +1776,10 @@ index c887f88a2c87..0fc1c3139258 100644
+msgid "Transparent background"
+msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
diff --git a/po/ko.po b/po/ko.po
-index 21c29a9d10a1..5b283fec04f7 100644
+index 4e322035a8dd..51f955189dd2 100644
--- a/po/ko.po
+++ b/po/ko.po
-@@ -2323,3 +2323,15 @@ msgstr "창 닫기(_L)"
+@@ -2445,3 +2445,15 @@ msgstr "창 닫기(_L)"
#~ msgid "Verbose output"
#~ msgstr "많이 출력"
@@ -1859,10 +1822,10 @@ index bc2bb7f03de4..d2a83a007097 100644
#: ../src/gnome-terminal.glade2.h:87
msgid "_Update login records when command is launched"
diff --git a/po/lt.po b/po/lt.po
-index de548da98463..1177bd8f0f8c 100644
+index 6fc6ac62c742..d57a5bde8007 100644
--- a/po/lt.po
+++ b/po/lt.po
-@@ -2601,3 +2601,15 @@ msgstr "_Užverti langą"
+@@ -2715,3 +2715,15 @@ msgstr "_Užverti langą"
#~ msgid "Whether to use a dark theme variant"
#~ msgstr "Ar naudoti tamsų temos variantą"
@@ -2066,31 +2029,20 @@ index 61997dafbd03..9c7dc77abd22 100644
#~ msgid "Disabled"
#~ msgstr "अकार्यान्वीतित"
diff --git a/po/ms.po b/po/ms.po
-index f2ebd4851d3b..f3d44c9c6294 100644
+index 114f0d4e50c2..5d3f2e011f1c 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"
+@@ -2717,8 +2717,8 @@ msgstr "T_utup Tetingkap"
+ #~ msgid "_Profile name:"
+ #~ msgstr "_Nama profil: "
- #: ../src/gnome-terminal.glade2.h:3
- msgid "<b>Compatibility</b>"
-@@ -631,8 +631,8 @@ msgid "_Text color:"
- msgstr "Warna _Teks:"
-
- #: ../src/gnome-terminal.glade2.h:102
--msgid "_Transparent background"
--msgstr "LatarBelakang _Telus"
+-#~ msgid "_Transparent background"
+-#~ msgstr "LatarBelakang _Telus"
+msgid "Transparent background"
+msgstr "LatarBelakang Telus"
- #: ../src/gnome-terminal.glade2.h:103
- msgid "_Update login records when command is launched"
+ #~ msgid "_Update login records when command is launched"
+ #~ msgstr "_Kemaskini rekod logmasuk bila arahan dilancarkan"
diff --git a/po/nb.po b/po/nb.po
index 683acfe5221e..3dc97ee17fec 100644
--- a/po/nb.po
@@ -2175,10 +2127,10 @@ index 4fe16cc88a9a..53fb89134be0 100644
#~ msgid ""
#~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
diff --git a/po/nl.po b/po/nl.po
-index 66a5ca65c0fc..2ae40798f830 100644
+index 005ec063a4bb..4f6a56a1cffa 100644
--- a/po/nl.po
+++ b/po/nl.po
-@@ -2608,3 +2608,15 @@ msgstr "Venster sl_uiten"
+@@ -2747,3 +2747,15 @@ msgstr "Venster sl_uiten"
#~ msgid "_Add or Remove…"
#~ msgstr "_Toevoegen of verwijderen…"
@@ -2397,10 +2349,10 @@ 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 6e438ba8699f..c76df0b991a4 100644
+index d5f10e4f2cbd..cd2f908fb579 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
-@@ -2717,17 +2717,17 @@ msgstr "_Fechar janela"
+@@ -2831,17 +2831,17 @@ msgstr "_Fechar janela"
#~ msgid "Default size:"
#~ msgstr "Tamanho padrão:"
@@ -2424,7 +2376,7 @@ index 6e438ba8699f..c76df0b991a4 100644
#~ msgid "Current Locale"
#~ msgstr "Codificação atual"
-@@ -3353,3 +3353,6 @@ msgstr "_Fechar janela"
+@@ -3467,3 +3467,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\""
@@ -2518,10 +2470,10 @@ index adca7d5acba9..6379cee7f0a3 100644
#: ../src/gnome-terminal.glade2.h:87
msgid "_Update login records when command is launched"
diff --git a/po/sk.po b/po/sk.po
-index d0282159b459..01dd96a06939 100644
+index baf4db0fe376..7b4ce4bfd9bc 100644
--- a/po/sk.po
+++ b/po/sk.po
-@@ -2916,3 +2916,15 @@ msgstr "_Zavrieť okno"
+@@ -2959,3 +2959,15 @@ msgstr "_Zavrieť okno"
#~ "\n"
#~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
#~ "help“.\n"
@@ -2599,10 +2551,10 @@ index 158f6cb167cc..a3494fb70bd6 100644
#: ../src/gnome-terminal.glade2.h:86
msgid "_Update login records when command is launched"
diff --git a/po/sr.po b/po/sr.po
-index 9481a154a62f..2cd9d05e49ac 100644
+index 9b3545059f1f..04d2fb625b4d 100644
--- a/po/sr.po
+++ b/po/sr.po
-@@ -2607,10 +2607,9 @@ msgstr "_Затвори прозор"
+@@ -2719,10 +2719,9 @@ msgstr "_Затвори прозор"
#~ msgid "GNOME Terminal Client"
#~ msgstr "Клијент Гномовог терминала"
@@ -2616,7 +2568,7 @@ index 9481a154a62f..2cd9d05e49ac 100644
#~ msgid "Title for terminal"
#~ msgstr "Наслов за терминал"
-@@ -2656,11 +2655,11 @@ msgstr "_Затвори прозор"
+@@ -2768,11 +2767,11 @@ msgstr "_Затвори прозор"
#~ msgid "Default size:"
#~ msgstr "Основна величина:"
@@ -2632,7 +2584,7 @@ index 9481a154a62f..2cd9d05e49ac 100644
#~ msgid "Title and Command"
#~ msgstr "Наслов и наредба"
-@@ -2668,8 +2667,8 @@ msgstr "_Затвори прозор"
+@@ -2780,8 +2779,8 @@ msgstr "_Затвори прозор"
#~ msgid "_Unlimited"
#~ msgstr "_Неограничено"
@@ -2643,7 +2595,7 @@ index 9481a154a62f..2cd9d05e49ac 100644
#~ msgid "Current Locale"
#~ msgstr "Текући локалитет"
-@@ -2679,3 +2678,6 @@ msgstr "_Затвори прозор"
+@@ -2791,3 +2790,6 @@ msgstr "_Затвори прозор"
#~ msgid "Hidden"
#~ msgstr "Скривен"
@@ -2703,10 +2655,10 @@ index 45dbad07fba7..852c47cc6ee5 100644
+msgid "Transparent background"
+msgstr "Providna pozadina"
diff --git a/po/sv.po b/po/sv.po
-index c2b8a29948bd..ad0df4601a7c 100644
+index 47810e8ed084..58785b0cb82f 100644
--- a/po/sv.po
+++ b/po/sv.po
-@@ -2599,5 +2599,17 @@ msgstr "Stän_g fönster"
+@@ -2710,5 +2710,17 @@ msgstr "Stän_g fönster"
#~ msgid "Unknown completion request for \"%s\""
#~ msgstr "Okänd kompletteringsbegäran för \"%s\""
@@ -2939,10 +2891,10 @@ 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 30a9fbec7c8b..dec58d0391ca 100644
+index 868ad445e6a4..660225ffd360 100644
--- a/po/tr.po
+++ b/po/tr.po
-@@ -2587,3 +2587,15 @@ msgstr "_Pencereyi Kapat"
+@@ -2703,3 +2703,15 @@ msgstr "_Pencereyi Kapat"
#~ msgid "_Same as text color"
#~ msgstr "_Metin rengiyle aynı"
@@ -2974,10 +2926,10 @@ 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
+index eac987c92a7a..10ad3394f4ec 100644
--- a/po/uk.po
+++ b/po/uk.po
-@@ -2353,11 +2353,11 @@ msgstr "Закр_ити вікно"
+@@ -2647,11 +2647,11 @@ msgstr "Закр_ити вікно"
#~ msgid "Default size:"
#~ msgstr "Типовий розмір:"
@@ -2993,7 +2945,7 @@ index a08f25914d12..a4fbcbe6e474 100644
#~ msgid "Title and Command"
#~ msgstr "Заголовок та команда"
-@@ -2365,14 +2365,14 @@ msgstr "Закр_ити вікно"
+@@ -2659,12 +2659,15 @@ msgstr "Закр_ити вікно"
#~ msgid "_Unlimited"
#~ msgstr "_Нескінченно"
@@ -3005,14 +2957,13 @@ index a08f25914d12..a4fbcbe6e474 100644
#~ msgid "Current Locale"
#~ msgstr "Теперішня локаль"
--#~ msgid "_Set Title…"
--#~ msgstr "_Встановити заголовок…"
+msgid "_Set Title…"
+msgstr "_Встановити заголовок…"
++
+ #~ msgid "What to do with dynamic title"
+ #~ msgstr "Що робити з динамічним заголовком"
- #~ msgid "_Next Tab"
- #~ msgstr "_Наступна вкладка"
-@@ -3134,8 +3134,8 @@ msgstr "Закр_ити вікно"
+@@ -3398,8 +3401,8 @@ msgstr "Закр_ити вікно"
#~ msgid "_Solid color"
#~ msgstr "_Суцільний колір"
@@ -3021,8 +2972,8 @@ index a08f25914d12..a4fbcbe6e474 100644
+msgid "Transparent background"
+msgstr "Прозоре тло"
- #~ msgid "Switch to Tab 2"
- #~ msgstr "До вкладки 2"
+ #~ msgid "Switch to Tab 3"
+ #~ msgstr "До вкладки 3"
diff --git a/po/vi.po b/po/vi.po
index d5f27612f4be..8bb576b6d875 100644
--- a/po/vi.po
@@ -3212,10 +3163,10 @@ index 61153529f0c7..c366abddd1af 100644
+msgid "Transparent background"
+msgstr "透明背景"
diff --git a/po/zh_TW.po b/po/zh_TW.po
-index e740ebc6df0b..2fa8c3236b8f 100644
+index 0ef3bb80be49..5c162706fa7b 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
-@@ -2584,17 +2584,17 @@ msgstr "關閉視窗(_L)"
+@@ -2710,17 +2710,17 @@ msgstr "關閉視窗(_L)"
#~ msgid "Default size:"
#~ msgstr "預設大小:"
@@ -3239,7 +3190,7 @@ index e740ebc6df0b..2fa8c3236b8f 100644
#~ msgid "Current Locale"
#~ msgstr "目前的地區設定"
-@@ -2806,3 +2806,6 @@ msgstr "關閉視窗(_L)"
+@@ -2932,3 +2932,6 @@ msgstr "關閉視窗(_L)"
#~ msgid "Show session management options"
#~ msgstr "顯示作業階段管理選項"
@@ -3247,4 +3198,4 @@ index e740ebc6df0b..2fa8c3236b8f 100644
+msgid "Transparent background"
+msgstr "透明背景"
--
-2.23.0
+2.24.1