diff --git a/.gitignore b/.gitignore index c6b4969..0f2a09f 100644 --- a/.gitignore +++ b/.gitignore @@ -78,3 +78,4 @@ gnome-terminal-2.31.3.tar.bz2 /gnome-terminal-3.27.3.tar.xz /gnome-terminal-3.27.4.tar.xz /gnome-terminal-3.27.90.tar.xz +/gnome-terminal-3.28.1.tar.xz diff --git a/gnome-terminal-notify-open-title-transparency.patch b/gnome-terminal-notify-open-title-transparency.patch index 1ec48e4..a1098f1 100644 --- a/gnome-terminal-notify-open-title-transparency.patch +++ b/gnome-terminal-notify-open-title-transparency.patch @@ -1,4 +1,4 @@ -From 6dd2681c633340672dbbb2ba533e53c30f4785f2 Mon Sep 17 00:00:00 2001 +From 8280180dd48841ea04c9eb437c2d015423673763 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Mon, 12 May 2014 14:57:18 +0200 Subject: [PATCH 01/16] Restore transparency @@ -46,7 +46,7 @@ index 2edeceacf9e5..b828471bd71d 100644 diff --git a/src/preferences.ui b/src/preferences.ui -index 0f14fbcbf250..43b322bb972e 100644 +index 6259aac0f02f..f5c366f14e10 100644 --- a/src/preferences.ui +++ b/src/preferences.ui @@ -77,6 +77,11 @@ @@ -152,7 +152,7 @@ index 46ed321df074..8e79bb2e49f5 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 5f78de93dd5e..48293e6e7022 100644 +index f67f8a2fd995..1d99ba0cb289 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c @@ -832,7 +832,9 @@ terminal_screen_profile_changed_cb (GSettings *profile, @@ -206,10 +206,10 @@ index 5f78de93dd5e..48293e6e7022 100644 static void diff --git a/src/terminal-window.c b/src/terminal-window.c -index a8ff746cdad2..d99601956e19 100644 +index a348a8032c18..b665d3101b10 100644 --- a/src/terminal-window.c +++ b/src/terminal-window.c -@@ -2157,6 +2157,8 @@ terminal_window_init (TerminalWindow *window) +@@ -2100,6 +2100,8 @@ terminal_window_init (TerminalWindow *window) }; TerminalWindowPrivate *priv; TerminalApp *app; @@ -218,7 +218,7 @@ index a8ff746cdad2..d99601956e19 100644 GSettings *gtk_debug_settings; GtkWindowGroup *window_group; // GtkAccelGroup *accel_group; -@@ -2171,6 +2173,11 @@ terminal_window_init (TerminalWindow *window) +@@ -2114,6 +2116,11 @@ terminal_window_init (TerminalWindow *window) gtk_widget_init_template (GTK_WIDGET (window)); @@ -234,7 +234,7 @@ index a8ff746cdad2..d99601956e19 100644 2.14.3 -From a36b28d300c091437d237c211d825de635df6159 Mon Sep 17 00:00:00 2001 +From 44fd3a09d263851285a0e72f73f213dc50d0d797 Mon Sep 17 00:00:00 2001 From: Lars Uebernickel Date: Wed, 28 May 2014 14:11:02 +0200 Subject: [PATCH 02/16] window: Make the drawing robust across all themes @@ -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 d99601956e19..6972ecb0098c 100644 +index b665d3101b10..3835c617b660 100644 --- a/src/terminal-window.c +++ b/src/terminal-window.c -@@ -2013,6 +2013,26 @@ terminal_window_realize (GtkWidget *widget) +@@ -1956,6 +1956,26 @@ terminal_window_realize (GtkWidget *widget) terminal_window_update_size (window); } @@ -284,7 +284,7 @@ index d99601956e19..6972ecb0098c 100644 static gboolean terminal_window_state_event (GtkWidget *widget, GdkEventWindowState *event) -@@ -2324,6 +2344,7 @@ terminal_window_class_init (TerminalWindowClass *klass) +@@ -2267,6 +2287,7 @@ terminal_window_class_init (TerminalWindowClass *klass) widget_class->show = terminal_window_show; widget_class->realize = terminal_window_realize; @@ -296,7 +296,7 @@ index d99601956e19..6972ecb0098c 100644 2.14.3 -From c7da5977568c1b860875b49f519251fd3ceec47e Mon Sep 17 00:00:00 2001 +From 6603429319268785b3314a5e301a88f6571687f9 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Fri, 13 Nov 2015 15:16:42 +0100 Subject: [PATCH 03/16] screen, window: Extra padding around transparent @@ -309,7 +309,7 @@ https://bugzilla.redhat.com/show_bug.cgi?id=1207943 2 files changed, 49 insertions(+), 9 deletions(-) diff --git a/src/terminal-screen.c b/src/terminal-screen.c -index 48293e6e7022..1a9745cd427f 100644 +index 1d99ba0cb289..e074bbf35405 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c @@ -141,6 +141,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *, @@ -373,7 +373,7 @@ index 48293e6e7022..1a9745cd427f 100644 } static void -@@ -1587,6 +1614,13 @@ terminal_screen_do_popup (TerminalScreen *screen, +@@ -1581,6 +1608,13 @@ terminal_screen_do_popup (TerminalScreen *screen, terminal_screen_popup_info_unref (info); } @@ -388,10 +388,10 @@ index 48293e6e7022..1a9745cd427f 100644 terminal_screen_button_press (GtkWidget *widget, GdkEventButton *event) diff --git a/src/terminal-window.c b/src/terminal-window.c -index 6972ecb0098c..1b49ea66f846 100644 +index 3835c617b660..662475af107e 100644 --- a/src/terminal-window.c +++ b/src/terminal-window.c -@@ -2019,15 +2019,21 @@ terminal_window_draw (GtkWidget *widget, +@@ -1962,15 +1962,21 @@ terminal_window_draw (GtkWidget *widget, { if (gtk_widget_get_app_paintable (widget)) { @@ -423,7 +423,7 @@ index 6972ecb0098c..1b49ea66f846 100644 2.14.3 -From 22d93911e7dd29633b2411021bbf3c935c2df7a2 Mon Sep 17 00:00:00 2001 +From 7f61a674fb8afc3f1546442610165d131819b9e6 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Mon, 27 Feb 2017 16:53:51 +0100 Subject: [PATCH 04/16] screen: Silence -Wunused variable @@ -434,7 +434,7 @@ https://bugzilla.redhat.com/show_bug.cgi?id=1207943 1 file changed, 1 deletion(-) diff --git a/src/terminal-screen.c b/src/terminal-screen.c -index 1a9745cd427f..cdc93b57c630 100644 +index e074bbf35405..1894bc0c366d 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c @@ -940,7 +940,6 @@ update_color_scheme (TerminalScreen *screen) @@ -449,7 +449,7 @@ index 1a9745cd427f..cdc93b57c630 100644 2.14.3 -From 980dd246c74bf96499c7978d93aa03ed481eecc4 Mon Sep 17 00:00:00 2001 +From 793a0c45f37cbfa55a09b71369ee36f4ddb33f80 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Tue, 27 Jan 2015 18:40:13 +0100 Subject: [PATCH 05/16] Support desktop notifications from OSC 777 @@ -463,10 +463,10 @@ https://bugzilla.gnome.org/show_bug.cgi?id=711059 4 files changed, 171 insertions(+), 1 deletion(-) diff --git a/src/terminal-app.c b/src/terminal-app.c -index f820d2bfd9a6..5736df102a35 100644 +index 6a7ba4731df7..2f087f8fa333 100644 --- a/src/terminal-app.c +++ b/src/terminal-app.c -@@ -652,6 +652,31 @@ app_menu_quit_cb (GSimpleAction *action, +@@ -651,6 +651,31 @@ app_menu_quit_cb (GSimpleAction *action, gtk_widget_destroy (GTK_WIDGET (window)); } @@ -498,7 +498,7 @@ index f820d2bfd9a6..5736df102a35 100644 /* Class implementation */ G_DEFINE_TYPE (TerminalApp, terminal_app, GTK_TYPE_APPLICATION) -@@ -676,6 +701,10 @@ terminal_app_startup (GApplication *application) +@@ -675,6 +700,10 @@ terminal_app_startup (GApplication *application) { "quit", app_menu_quit_cb, NULL, NULL, NULL } }; @@ -509,7 +509,7 @@ index f820d2bfd9a6..5736df102a35 100644 g_application_set_resource_base_path (application, TERMINAL_RESOURCES_PATH_PREFIX); G_APPLICATION_CLASS (terminal_app_parent_class)->startup (application); -@@ -686,6 +715,9 @@ terminal_app_startup (GApplication *application) +@@ -685,6 +714,9 @@ terminal_app_startup (GApplication *application) g_action_map_add_action_entries (G_ACTION_MAP (application), action_entries, G_N_ELEMENTS (action_entries), application); @@ -520,7 +520,7 @@ index f820d2bfd9a6..5736df102a35 100644 app_load_css (application); diff --git a/src/terminal-screen.c b/src/terminal-screen.c -index cdc93b57c630..1799608172fa 100644 +index 1894bc0c366d..fa967c5e1593 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c @@ -55,6 +55,7 @@ @@ -583,7 +583,7 @@ index cdc93b57c630..1799608172fa 100644 settings = gtk_widget_get_settings (GTK_WIDGET (screen)); g_signal_handlers_disconnect_matched (settings, G_SIGNAL_MATCH_DATA, -@@ -1702,6 +1715,43 @@ terminal_screen_button_press (GtkWidget *widget, +@@ -1696,6 +1709,43 @@ terminal_screen_button_press (GtkWidget *widget, return FALSE; } @@ -627,7 +627,7 @@ index cdc93b57c630..1799608172fa 100644 /** * terminal_screen_get_current_dir: * @screen: -@@ -1802,6 +1852,64 @@ terminal_screen_child_exited (VteTerminal *terminal, +@@ -1796,6 +1846,64 @@ terminal_screen_child_exited (VteTerminal *terminal, } } @@ -771,7 +771,7 @@ index 20cfbceb36b0..a987025e0524 100644 2.14.3 -From 189f7aa282fb1d4e2c0705bab1134675dc0fe8f1 Mon Sep 17 00:00:00 2001 +From 870a2ff157140309dbf5ba777f5f7c3625fb9dab Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Thu, 29 Jan 2015 11:47:21 +0100 Subject: [PATCH 06/16] Sprinkle debug messages for notifications @@ -813,10 +813,10 @@ index 0fafcc3a846c..af1358683994 100644 void _terminal_debug_init(void); diff --git a/src/terminal-screen.c b/src/terminal-screen.c -index 1799608172fa..56d11ea76fc6 100644 +index fa967c5e1593..41d30b0350a4 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c -@@ -1723,6 +1723,8 @@ terminal_screen_focus_in (GtkWidget *widget, +@@ -1717,6 +1717,8 @@ terminal_screen_focus_in (GtkWidget *widget, TerminalApp *app; TerminalWindow *window; @@ -825,7 +825,7 @@ index 1799608172fa..56d11ea76fc6 100644 window = terminal_screen_get_window (screen); if (window != NULL) { -@@ -1861,6 +1863,8 @@ terminal_screen_notification_received (VteTerminal *terminal, +@@ -1855,6 +1857,8 @@ terminal_screen_notification_received (VteTerminal *terminal, TerminalScreenPrivate *priv = screen->priv; TerminalWindow *window; @@ -834,7 +834,7 @@ index 1799608172fa..56d11ea76fc6 100644 if (G_UNLIKELY (!priv->shell_prompt_shown)) { priv->shell_prompt_shown = TRUE; -@@ -1892,6 +1896,7 @@ terminal_screen_notification_received (VteTerminal *terminal, +@@ -1886,6 +1890,7 @@ terminal_screen_notification_received (VteTerminal *terminal, tab_label = gtk_notebook_get_tab_label (GTK_NOTEBOOK (mdi_container), GTK_WIDGET (screen_container)); terminal_tab_label_set_bold (TERMINAL_TAB_LABEL (tab_label), TRUE); terminal_tab_label_set_icon (TERMINAL_TAB_LABEL (tab_label), "dialog-information-symbolic", summary); @@ -842,7 +842,7 @@ index 1799608172fa..56d11ea76fc6 100644 } } else -@@ -1907,6 +1912,7 @@ terminal_screen_notification_received (VteTerminal *terminal, +@@ -1901,6 +1906,7 @@ terminal_screen_notification_received (VteTerminal *terminal, app = terminal_app_get (); g_application_send_notification (G_APPLICATION (app), priv->uuid, notification); @@ -854,7 +854,7 @@ index 1799608172fa..56d11ea76fc6 100644 2.14.3 -From b5807f562ceb4e5d0644cc91803314c36e6ea6a8 Mon Sep 17 00:00:00 2001 +From cbccd30b5e871b4f012af78b70ca0b141506101c Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Wed, 28 Mar 2018 18:50:16 +0200 Subject: [PATCH 07/16] Restore separate menuitems for opening tabs and windows @@ -890,7 +890,7 @@ index 815333154958..3645c5548d25 100644 2.14.3 -From a28ca4baa4ccbad5191765fab18a9df2bd630184 Mon Sep 17 00:00:00 2001 +From f85b35457d680b2c7d50470a69f461d9bbe33425 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Tue, 10 Apr 2018 15:39:35 +0200 Subject: [PATCH 08/16] profile: Split the Command tab into two nested GtkGrids @@ -904,7 +904,7 @@ https://bugzilla.redhat.com/show_bug.cgi?id=1296110 1 file changed, 90 insertions(+), 83 deletions(-) diff --git a/src/preferences.ui b/src/preferences.ui -index 43b322bb972e..5b1dd6cb4daa 100644 +index f5c366f14e10..edd924689d35 100644 --- a/src/preferences.ui +++ b/src/preferences.ui @@ -1863,95 +1863,102 @@ @@ -1097,7 +1097,7 @@ index 43b322bb972e..5b1dd6cb4daa 100644 2.14.3 -From 7a9d25b856053110b661be240ec50d321ed5c3a5 Mon Sep 17 00:00:00 2001 +From b1c245c19e2c28f1a3a91f212047acfe9e0f6ff7 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Tue, 10 Apr 2018 16:01:51 +0200 Subject: [PATCH 09/16] Revert "profile: Remove the "Command" sub-heading" @@ -1110,7 +1110,7 @@ https://bugzilla.redhat.com/show_bug.cgi?id=1296110 1 file changed, 109 insertions(+), 70 deletions(-) diff --git a/src/preferences.ui b/src/preferences.ui -index 5b1dd6cb4daa..a521dc8494ec 100644 +index edd924689d35..11a283064996 100644 --- a/src/preferences.ui +++ b/src/preferences.ui @@ -1871,94 +1871,133 @@ @@ -1321,7 +1321,7 @@ index 5b1dd6cb4daa..a521dc8494ec 100644 2.14.3 -From 0de4b727da4ecd4102a91d2ac0ba0614c069a522 Mon Sep 17 00:00:00 2001 +From 04de9c589603437e09d19079d621295a954dc5c8 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Thu, 30 Jun 2016 16:02:13 +0200 Subject: [PATCH 10/16] Revert "screen: Remove unused description and @@ -1336,7 +1336,7 @@ https://bugzilla.redhat.com/show_bug.cgi?id=1296110 2 files changed, 69 insertions(+) diff --git a/src/terminal-screen.c b/src/terminal-screen.c -index 56d11ea76fc6..d39ad4ffa56d 100644 +index 41d30b0350a4..4b972922c783 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c @@ -88,6 +88,7 @@ struct _TerminalScreenPrivate @@ -1425,7 +1425,7 @@ index 56d11ea76fc6..d39ad4ffa56d 100644 } GSettings* -@@ -1443,6 +1473,8 @@ spawn_result_cb (VteTerminal *terminal, +@@ -1437,6 +1467,8 @@ spawn_result_cb (VteTerminal *terminal, priv->child_pid = pid; @@ -1434,7 +1434,7 @@ index 56d11ea76fc6..d39ad4ffa56d 100644 if (error) { GtkWidget *info_bar; -@@ -1754,6 +1786,35 @@ terminal_screen_focus_in (GtkWidget *widget, +@@ -1748,6 +1780,35 @@ terminal_screen_focus_in (GtkWidget *widget, return GTK_WIDGET_CLASS (terminal_screen_parent_class)->focus_in_event (widget, event); } @@ -1470,7 +1470,7 @@ index 56d11ea76fc6..d39ad4ffa56d 100644 /** * terminal_screen_get_current_dir: * @screen: -@@ -1811,6 +1872,8 @@ terminal_screen_child_exited (VteTerminal *terminal, +@@ -1805,6 +1866,8 @@ terminal_screen_child_exited (VteTerminal *terminal, priv->child_pid = -1; @@ -1503,7 +1503,7 @@ index 743071d5e38f..63f9c47e115a 100644 2.14.3 -From 512b012751fce0482b8a82f1373e1540965c5c64 Mon Sep 17 00:00:00 2001 +From 946b733a351cb2010452ae04110010968e494e18 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Thu, 30 Jun 2016 17:39:48 +0200 Subject: [PATCH 11/16] Revert "Remove the static title setting from profile @@ -1559,7 +1559,7 @@ index b828471bd71d..ff54ebb2544f 100644 true Whether to allow bold text diff --git a/src/preferences.ui b/src/preferences.ui -index a521dc8494ec..cef3de7cd00b 100644 +index 11a283064996..baa65c705b32 100644 --- a/src/preferences.ui +++ b/src/preferences.ui @@ -1864,6 +1864,77 @@ @@ -1669,7 +1669,7 @@ index 8e79bb2e49f5..b9c6990e356c 100644 #define TERMINAL_PROFILE_USE_SKEY_KEY "use-skey" #define TERMINAL_PROFILE_USE_SYSTEM_FONT_KEY "use-system-font" diff --git a/src/terminal-screen.c b/src/terminal-screen.c -index d39ad4ffa56d..ddd3aca4d23a 100644 +index 4b972922c783..0e4c23fa8e8c 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c @@ -808,11 +808,14 @@ char * @@ -1704,7 +1704,7 @@ index d39ad4ffa56d..ddd3aca4d23a 100644 2.14.3 -From dc3e29d1b362e85be7c2a52fd84339441a14b723 Mon Sep 17 00:00:00 2001 +From b58560467b9022905b56d58b3ff60cf3154a7a81 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Tue, 17 Feb 2015 17:06:17 +0100 Subject: [PATCH 12/16] Restore translations for setting a title and @@ -1724,7 +1724,7 @@ Subject: [PATCH 12/16] Restore translations for setting a title and po/bn_IN.po | 11 +++++++---- po/br.po | 6 +++--- po/bs.po | 10 ++++++++++ - po/ca.po | 12 ++++++++++++ + po/ca.po | 13 +++++++++++++ po/ca@valencia.po | 12 ++++++++++++ po/cs.po | 12 ++++++++++++ po/cy.po | 8 ++++---- @@ -1755,40 +1755,40 @@ Subject: [PATCH 12/16] Restore translations for setting a title and po/it.po | 12 ++++++++++++ po/ja.po | 12 ++++++++++++ po/ka.po | 6 +++--- - po/kk.po | 15 +++++++++++++++ + po/kk.po | 12 ++++++++++++ po/km.po | 4 ++-- - po/kn.po | 19 +++++++++++-------- - po/ko.po | 15 +++++++++++++++ + po/kn.po | 15 +++++++++------ + po/ko.po | 12 ++++++++++++ po/ku.po | 8 ++++---- - po/lt.po | 15 +++++++++++++++ - po/lv.po | 18 ++++++++++++++++++ + po/lt.po | 12 ++++++++++++ + po/lv.po | 16 ++++++++++++++++ po/mai.po | 8 ++++---- - po/mg.po | 12 ++++++------ + po/mg.po | 8 ++++---- po/mk.po | 8 ++++---- po/ml.po | 3 +++ - po/mn.po | 12 ++++++------ - po/mr.po | 20 ++++++++++---------- - po/ms.po | 12 ++++++------ - po/nb.po | 15 +++++++++++++++ + po/mn.po | 8 ++++---- + po/mr.po | 16 ++++++++-------- + po/ms.po | 8 ++++---- + po/nb.po | 12 ++++++++++++ po/nds.po | 8 ++++---- - po/ne.po | 16 ++++++++-------- - po/nl.po | 15 +++++++++++++++ + po/ne.po | 12 ++++++------ + po/nl.po | 12 ++++++++++++ po/nn.po | 8 ++++---- - po/oc.po | 16 ++++++++-------- + po/oc.po | 12 ++++++------ po/or.po | 4 ++-- - po/pa.po | 27 +++++++++++++-------------- + po/pa.po | 23 +++++++++++------------ po/ps.po | 8 ++++---- - po/pt.po | 20 ++++++++++---------- + po/pt.po | 16 ++++++++-------- po/pt_BR.po | 15 +++++++++------ po/ro.po | 4 ++-- - po/ru.po | 19 +++++++++++++++++++ + po/ru.po | 16 ++++++++++++++++ po/rw.po | 3 +-- - po/si.po | 12 ++++++------ - po/sk.po | 15 +++++++++++++++ - po/sl.po | 19 +++++++++++-------- + po/si.po | 8 ++++---- + po/sk.po | 12 ++++++++++++ + po/sl.po | 15 +++++++++------ po/sq.po | 8 ++++---- - po/sr.po | 26 ++++++++++++++------------ - po/sr@latin.po | 26 ++++++++++++++------------ + po/sr.po | 22 ++++++++++++---------- + po/sr@latin.po | 22 ++++++++++++---------- po/sv.po | 12 ++++++++++++ po/ta.po | 27 +++++++++++++-------------- po/te.po | 27 +++++++++++++-------------- @@ -1797,13 +1797,13 @@ Subject: [PATCH 12/16] Restore translations for setting a title and po/tr.po | 12 ++++++++++++ po/ug.po | 4 ++-- po/uk.po | 20 ++++++++++---------- - po/vi.po | 19 +++++++++++-------- + po/vi.po | 15 +++++++++------ po/wa.po | 12 ++++++------ po/xh.po | 12 ++++++------ - po/zh_CN.po | 19 +++++++++++-------- - po/zh_HK.po | 19 +++++++++++-------- - po/zh_TW.po | 19 +++++++++++-------- - 92 files changed, 764 insertions(+), 405 deletions(-) + po/zh_CN.po | 15 +++++++++------ + po/zh_HK.po | 15 +++++++++------ + po/zh_TW.po | 15 +++++++++------ + 92 files changed, 708 insertions(+), 371 deletions(-) diff --git a/po/am.po b/po/am.po index 3445d96da657..ee992f0712a5 100644 @@ -1869,10 +1869,10 @@ index fcec2668aa11..9e07cb682c57 100644 #~ msgid "Keyboard Shortcuts" #~ msgstr "Alcorces de teclau" diff --git a/po/ar.po b/po/ar.po -index 4de91d51e9a7..1fd466a078d4 100644 +index 076043f99937..ab4042814dd7 100644 --- a/po/ar.po +++ b/po/ar.po -@@ -2354,11 +2354,11 @@ msgstr "أغ_لق النافذة" +@@ -2558,11 +2558,11 @@ msgstr "أغ_لق النافذة" #~ msgid "Default size:" #~ msgstr "الحجم المبدئي:" @@ -1888,7 +1888,7 @@ index 4de91d51e9a7..1fd466a078d4 100644 #~ msgid "Title and Command" #~ msgstr "العنوان والأمر" -@@ -2366,8 +2366,8 @@ msgstr "أغ_لق النافذة" +@@ -2570,8 +2570,8 @@ msgstr "أغ_لق النافذة" #~ msgid "_Unlimited" #~ msgstr "_غير محدود" @@ -1899,7 +1899,7 @@ index 4de91d51e9a7..1fd466a078d4 100644 #~ msgid "Current Locale" #~ msgstr "المحليّة الحالية" -@@ -3149,8 +3149,8 @@ msgstr "أغ_لق النافذة" +@@ -3314,8 +3314,8 @@ msgstr "أغ_لق النافذة" #~ msgid "Background image _scrolls" #~ msgstr "صورة الخلفية ت_لتف" @@ -2160,13 +2160,13 @@ index 49e710859ac9..8703552984b1 100644 +msgid "Set Title" +msgstr "Postavi naslov" diff --git a/po/ca.po b/po/ca.po -index 493ce74cb96f..d6cac97e4600 100644 +index fdd3a5ae5982..94f69c2cde31 100644 --- a/po/ca.po +++ b/po/ca.po -@@ -2473,3 +2473,15 @@ msgstr "Tanca la _finestra" - - #~ msgid "Whether to use a dark theme variant" - #~ msgstr "Si s'ha d'utilitzar la variant de tema fosc" +@@ -2333,3 +2333,16 @@ msgstr "" + #: ../src/terminal-window.c:3353 + msgid "C_lose Window" + msgstr "Tanca la _finestra" + +msgid "Transparent background" +msgstr "Fons transparent" @@ -2179,6 +2179,7 @@ index 493ce74cb96f..d6cac97e4600 100644 + +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 @@ -2200,13 +2201,13 @@ index a6e8fb4250dc..c9ed8508228d 100644 +msgid "Set Title" +msgstr "Estableix el títol" diff --git a/po/cs.po b/po/cs.po -index 71a7b05a70d2..bec071d48a4e 100644 +index ee33ed2a0103..2acf2aa99656 100644 --- a/po/cs.po +++ b/po/cs.po -@@ -2358,3 +2358,15 @@ msgstr "_Zavřít okno" - - #~ msgid "Legacy European Encodings" - #~ msgstr "Zastaralá evropská kódování" +@@ -2310,3 +2310,15 @@ msgstr "" + #: ../src/terminal-window.c:3353 + msgid "C_lose Window" + msgstr "_Zavřít okno" + +msgid "Transparent background" +msgstr "Průsvitné pozadí" @@ -2246,10 +2247,10 @@ 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 305147fa0e12..fe8445e17aa1 100644 +index 65cfb20d9ad3..8c5c97c7465a 100644 --- a/po/da.po +++ b/po/da.po -@@ -2311,3 +2311,14 @@ msgstr "" +@@ -2325,3 +2325,14 @@ msgstr "" msgid "C_lose Window" msgstr "_Luk vindue" @@ -2398,10 +2399,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 2fb1448eccbe..e439d94d5253 100644 +index c9999e204f33..dfbff85bf907 100644 --- a/po/en_GB.po +++ b/po/en_GB.po -@@ -2386,8 +2386,8 @@ msgstr "C_lose Window" +@@ -2796,8 +2796,8 @@ msgstr "C_lose Window" #~ msgid "Default size:" #~ msgstr "Default size:" @@ -2412,18 +2413,18 @@ index 2fb1448eccbe..e439d94d5253 100644 #~ msgid "When terminal commands set their o_wn titles:" #~ msgstr "When terminal commands set their o_wn titles:" -@@ -2413,8 +2413,8 @@ msgstr "C_lose Window" - #~ msgid "Close Window" - #~ msgstr "Close Window" +@@ -2814,8 +2814,8 @@ msgstr "C_lose Window" + #~ msgid "_Unlimited" + #~ msgstr "_Unlimited" -#~ msgid "Set Title" -#~ msgstr "Set Title" +msgid "Set Title" +msgstr "Set Title" - #~ msgid "Switch to Tab 2" - #~ msgstr "Switch to Tab 2" -@@ -2473,8 +2473,8 @@ msgstr "C_lose Window" + #~ msgid "Switch to Tab 3" + #~ msgstr "Switch to Tab 3" +@@ -2856,8 +2856,8 @@ msgstr "C_lose Window" #~ msgid "_Input Methods" #~ msgstr "_Input Methods" @@ -2434,7 +2435,7 @@ index 2fb1448eccbe..e439d94d5253 100644 #~ msgid "Add or Remove Terminal Encodings" #~ msgstr "Add or Remove Terminal Encodings" -@@ -3176,8 +3176,8 @@ msgstr "C_lose Window" +@@ -3552,8 +3552,8 @@ msgstr "C_lose Window" #~ msgid "Background image _scrolls" #~ msgstr "Background image _scrolls" @@ -2601,10 +2602,10 @@ index 8b0ca26eebe5..6079d0c40a1d 100644 +msgid "Transparent background" +msgstr "پس‌زمینه‌ی شفاف" diff --git a/po/fi.po b/po/fi.po -index 976926087a4b..30858cd309de 100644 +index e284b406f040..6e7f402af7bd 100644 --- a/po/fi.po +++ b/po/fi.po -@@ -2516,9 +2516,21 @@ msgstr "_Sulje ikkuna" +@@ -2589,9 +2589,21 @@ msgstr "_Sulje ikkuna" #~ msgid "_Update login records when command is launched" #~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään" @@ -2627,10 +2628,10 @@ index 976926087a4b..30858cd309de 100644 +msgid "Set Title" +msgstr "Aseta otsikko" diff --git a/po/fr.po b/po/fr.po -index 4ccd9e2e8c0f..a136368e8db1 100644 +index 87a8e0ff46d4..2eacb4584f32 100644 --- a/po/fr.po +++ b/po/fr.po -@@ -2355,3 +2355,15 @@ msgstr "Fermer _la fenêtre" +@@ -2591,3 +2591,15 @@ msgstr "Fermer _la fenêtre" #~ msgid "_Same as text color" #~ msgstr "_Même couleur que le texte" @@ -2694,10 +2695,10 @@ index 93d5fa9d1481..feb87dce3d6b 100644 +msgid "Transparent background" +msgstr "Cúlra trédhearcach" diff --git a/po/gl.po b/po/gl.po -index 4b51afb0df44..d7472f57c717 100644 +index 4ae0f6a0935c..fa643dc89659 100644 --- a/po/gl.po +++ b/po/gl.po -@@ -2662,17 +2662,17 @@ msgstr "P_echar a xanela" +@@ -2678,17 +2678,17 @@ msgstr "P_echar a xanela" #~ msgid "Default size:" #~ msgstr "Tamaño predeterminado:" @@ -2721,7 +2722,7 @@ index 4b51afb0df44..d7472f57c717 100644 #~ msgid "Current Locale" #~ msgstr "Configuración rexional actual" -@@ -3492,8 +3492,8 @@ msgstr "P_echar a xanela" +@@ -3502,8 +3502,8 @@ msgstr "P_echar a xanela" #~ msgid "Background image _scrolls" #~ msgstr "A imaxe de fondo _desprázase" @@ -2869,10 +2870,10 @@ index 2d7dc5b14008..8d3d0529df61 100644 #~ msgid "S/Key Challenge Response" #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया" diff --git a/po/hr.po b/po/hr.po -index ac7dcd93b766..88e562be0699 100644 +index aec2eaa8bac1..207b5c774b32 100644 --- a/po/hr.po +++ b/po/hr.po -@@ -2391,3 +2391,13 @@ msgstr "_Zatvori prozor" +@@ -2565,3 +2565,13 @@ msgstr "_Zatvori prozor" #~ msgid "Use transparency from system theme" #~ msgstr "Koristi prozirnost iz teme sustava" @@ -2933,10 +2934,10 @@ 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 a95c58aad3af..b8432186e500 100644 +index 9198218c5aaa..9f2fbd0c9d4c 100644 --- a/po/id.po +++ b/po/id.po -@@ -2397,3 +2397,15 @@ msgstr "Tutup Jende_la" +@@ -2548,3 +2548,15 @@ msgstr "Tutup Jende_la" #~ msgid "_Add or Remove…" #~ msgstr "T_ambah atau Hapus…" @@ -2953,11 +2954,11 @@ index a95c58aad3af..b8432186e500 100644 +msgid "Set Title" +msgstr "Atur Judul" diff --git a/po/it.po b/po/it.po -index d0c44222b261..b277bf9abb8b 100644 +index 632667207c17..2cd93716f4f9 100644 --- a/po/it.po +++ b/po/it.po -@@ -2332,3 +2332,15 @@ msgstr "" - #: ../src/terminal-window.c:3953 +@@ -2348,3 +2348,15 @@ msgstr "" + #: ../src/terminal-window.c:3354 msgid "C_lose Window" msgstr "Chiudi _finestra" + @@ -3017,10 +3018,10 @@ index 2a0bc91fad40..c289e30eb4fa 100644 #: ../src/gnome-terminal.glade2.h:87 diff --git a/po/kk.po b/po/kk.po -index 963a7ba1cebf..28afd931cb76 100644 +index 2811b7ec6239..d4239e5d12c5 100644 --- a/po/kk.po +++ b/po/kk.po -@@ -2312,3 +2312,18 @@ msgstr "Терезені жа_бу" +@@ -2547,3 +2547,15 @@ msgstr "Терезені жа_бу" #~ msgid "Be quiet" #~ msgstr "Тыныш болу" @@ -3036,9 +3037,6 @@ index 963a7ba1cebf..28afd931cb76 100644 + +msgid "Set Title" +msgstr "Атауын орнату" -+ -+msgid "_Set Title…" -+msgstr "Атауын ор_нату…" diff --git a/po/km.po b/po/km.po index 352897d2963b..b6db9394a307 100644 --- a/po/km.po @@ -3055,7 +3053,7 @@ index 352897d2963b..b6db9394a307 100644 #~ msgid "S_hade transparent or image background:" #~ msgstr "ដាក់​ស្រមោល​ផ្ទៃខាងក្រោយ​ថ្លា ឬ​ផ្ទៃខាងក្រោយ​​រូបភាព ៖" diff --git a/po/kn.po b/po/kn.po -index c887f88a2c87..3f3d7fe378b3 100644 +index c887f88a2c87..0fc1c3139258 100644 --- a/po/kn.po +++ b/po/kn.po @@ -2261,8 +2261,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)" @@ -3080,17 +3078,6 @@ index c887f88a2c87..3f3d7fe378b3 100644 #~ msgid "Switch to Tab 2" #~ msgstr "2 ನೆ ಟ್ಯಾಬ್‌ಗೆ ಬದಲಾಯಿಸಿ" -@@ -2330,8 +2330,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)" - #~ msgid "_Close Window" - #~ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_C)" - --#~ msgid "_Set Title…" --#~ msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು (_S)" -+msgid "_Set Title…" -+msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು (_S)" - - #~ msgid "_Next Tab" - #~ msgstr "ಮುಂದಿನ ಟ್ಯಾಬ್‌ (_N)" @@ -2342,5 +2342,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)" #~ msgid "_Input Methods" #~ msgstr "ಇನ್‌ಪುಟ್ ಕ್ರಮಗಳು (_I)" @@ -3103,13 +3090,13 @@ index c887f88a2c87..3f3d7fe378b3 100644 +msgid "Transparent background" +msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ" diff --git a/po/ko.po b/po/ko.po -index acf1b6f9168a..c218b251e077 100644 +index d1be8c3fdab8..02de5aa11be1 100644 --- a/po/ko.po +++ b/po/ko.po -@@ -2353,3 +2353,18 @@ msgstr "창 닫기(_L)" +@@ -2292,3 +2292,15 @@ msgstr "창 닫기(_L)" - #~ msgid "Whether to use a dark theme variant" - #~ msgstr "어두운 테마를 사용할 지 여부" + #~ msgid "Verbose output" + #~ msgstr "많이 출력" + +msgid "Transparent background" +msgstr "투명한 배경" @@ -3122,9 +3109,6 @@ index acf1b6f9168a..c218b251e077 100644 + +msgid "Set Title" +msgstr "제목 설정" -+ -+msgid "_Set Title…" -+msgstr "제목 설정(_S)…" diff --git a/po/ku.po b/po/ku.po index bc2bb7f03de4..d2a83a007097 100644 --- a/po/ku.po @@ -3152,10 +3136,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 f81b4322ef31..9e9280ac7cad 100644 +index e8b7622e5d46..c6fe38021b6a 100644 --- a/po/lt.po +++ b/po/lt.po -@@ -2558,3 +2558,18 @@ msgstr "_Užverti langą" +@@ -2571,3 +2571,15 @@ msgstr "_Užverti langą" #~ msgid "Whether to use a dark theme variant" #~ msgstr "Ar naudoti tamsų temos variantą" @@ -3171,17 +3155,15 @@ index f81b4322ef31..9e9280ac7cad 100644 + +msgid "Set Title" +msgstr "Nustatyti pavadinimą" -+ -+msgid "_Set Title…" -+msgstr "_Nustatyti pavadinimą…" diff --git a/po/lv.po b/po/lv.po -index 46a3ae1442cd..3fa397f1b918 100644 +index 47d9e75b1ee8..a8dad3bc0d6b 100644 --- a/po/lv.po +++ b/po/lv.po -@@ -2283,3 +2283,21 @@ msgstr "" - msgid "C_lose Window" - msgstr "Aizvērt _logu" +@@ -2578,3 +2578,19 @@ msgstr "Aizvērt _logu" + #~ msgid "_Add or Remove…" + #~ msgstr "_Pievienot vai izņemt…" ++ +msgid "Transparent background" +msgstr "Caurspīdīgs fons" + @@ -3197,9 +3179,6 @@ index 46a3ae1442cd..3fa397f1b918 100644 + +msgid "Set Title" +msgstr "Iestatīt nosaukumu" -+ -+msgid "_Set Title…" -+msgstr "Ie_statīt nosaukumu…" diff --git a/po/mai.po b/po/mai.po index 715d0b9e1c82..0f31634e4f2e 100644 --- a/po/mai.po @@ -3227,7 +3206,7 @@ index 715d0b9e1c82..0f31634e4f2e 100644 #: ../src/profile-preferences.glade.h:70 msgid "_Update login records when command is launched" diff --git a/po/mg.po b/po/mg.po -index 99fa0f5e4059..2ac0152b849d 100644 +index 99fa0f5e4059..a216602569af 100644 --- a/po/mg.po +++ b/po/mg.po @@ -220,8 +220,8 @@ msgid "Background" @@ -3252,17 +3231,6 @@ index 99fa0f5e4059..2ac0152b849d 100644 #: ../src/gnome-terminal.glade2.h:87 msgid "_Update login records when command is launched" -@@ -2300,8 +2300,8 @@ msgid "Change _Profile" - msgstr "Hanova _profil" - - #: ../src/terminal-window.c:1017 --msgid "_Set Title..." --msgstr "_Hamaritra ny lohateny..." -+msgid "_Set Title…" -+msgstr "_Hamaritra ny lohateny…" - - #: ../src/terminal-window.c:1024 - msgid "Set _Character Encoding" diff --git a/po/mk.po b/po/mk.po index 4fe43192fe57..a5a874b49c59 100644 --- a/po/mk.po @@ -3301,7 +3269,7 @@ index a23f4cc4f1ae..49caa9efe94f 100644 +msgid "Transparent background" +msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം" diff --git a/po/mn.po b/po/mn.po -index 2f9d86072d1c..e67c1792bad5 100644 +index 2f9d86072d1c..09c4437d10f9 100644 --- a/po/mn.po +++ b/po/mn.po @@ -217,8 +217,8 @@ msgid "Background" @@ -3326,19 +3294,8 @@ index 2f9d86072d1c..e67c1792bad5 100644 #: ../src/gnome-terminal.glade2.h:103 msgid "_Update login records when command is launched" -@@ -2095,8 +2095,8 @@ msgid "Change _Profile" - msgstr "_Профил өөрчилөх" - - #: ../src/terminal-window.c:979 --msgid "_Set Title..." --msgstr "Гарчиг _өгөх..." -+msgid "_Set Title…" -+msgstr "Гарчиг _өгөх…" - - #: ../src/terminal-window.c:986 - msgid "Set _Character Encoding" diff --git a/po/mr.po b/po/mr.po -index 61997dafbd03..406d26b5c340 100644 +index 61997dafbd03..9c7dc77abd22 100644 --- a/po/mr.po +++ b/po/mr.po @@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा (_l)" @@ -3363,17 +3320,6 @@ index 61997dafbd03..406d26b5c340 100644 #~ msgid "The shortcut key “%s” is already bound to the “%s” action" #~ msgstr "“%s” ही शार्टकट कि “%s” या कृतीशी संलग्न आहे" -@@ -2255,8 +2255,8 @@ msgstr "चौकट बंद करा (_l)" - #~ msgid "_Close Window" - #~ msgstr "चौकट बंद करा(_C)" - --#~ msgid "_Set Title…" --#~ msgstr "शिर्षक सेट करा (_S)…" -+msgid "_Set Title…" -+msgstr "शिर्षक सेट करा (_S)…" - - #~ msgid "_Next Tab" - #~ msgstr "पुढील टॅब(_N)" @@ -2267,8 +2267,8 @@ msgstr "चौकट बंद करा (_l)" #~ msgid "_Input Methods" #~ msgstr "इनपुट पध्दती (_I)" @@ -3397,7 +3343,7 @@ index 61997dafbd03..406d26b5c340 100644 #~ msgid "Disabled" #~ msgstr "अकार्यान्वीतित" diff --git a/po/ms.po b/po/ms.po -index f2ebd4851d3b..4029548e813f 100644 +index f2ebd4851d3b..f3d44c9c6294 100644 --- a/po/ms.po +++ b/po/ms.po @@ -227,8 +227,8 @@ msgstr "LatarBelakang" @@ -3422,22 +3368,11 @@ index f2ebd4851d3b..4029548e813f 100644 #: ../src/gnome-terminal.glade2.h:103 msgid "_Update login records when command is launched" -@@ -2151,8 +2151,8 @@ msgid "Change _Profile" - msgstr "Tukar _Profil" - - #: ../src/terminal-window.c:979 --msgid "_Set Title..." --msgstr "_Tetapkan Tajuk..." -+msgid "_Set Title…" -+msgstr "_Tetapkan Tajuk…" - - #: ../src/terminal-window.c:986 - msgid "Set _Character Encoding" diff --git a/po/nb.po b/po/nb.po -index 53da54ab54e0..ca11abd66193 100644 +index 53da54ab54e0..c5aa509f7003 100644 --- a/po/nb.po +++ b/po/nb.po -@@ -2183,3 +2183,18 @@ msgstr "" +@@ -2183,3 +2183,15 @@ msgstr "" #: ../src/terminal-window.c:3346 msgid "C_lose Window" msgstr "_Lukk vindu" @@ -3453,9 +3388,6 @@ index 53da54ab54e0..ca11abd66193 100644 + +msgid "Set Title" +msgstr "Sett 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 @@ -3483,7 +3415,7 @@ 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..2a033b8c17d4 100644 +index 4fe16cc88a9a..53fb89134be0 100644 --- a/po/ne.po +++ b/po/ne.po @@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्" @@ -3519,25 +3451,14 @@ index 4fe16cc88a9a..2a033b8c17d4 100644 #~ msgid "" #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n" -@@ -3282,8 +3282,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्" - #~ msgid "Show Menu_bar" - #~ msgstr "मेनुपट्टी देखाउनुहोस्" - --#~ msgid "_Set Title..." --#~ msgstr "शीर्षक राख्नुहोस्..." -+msgid "_Set Title…" -+msgstr "शीर्षक राख्नुहोस्…" - - #~ msgid "_Next Tab" - #~ msgstr "पछिल्लो ट्याब" diff --git a/po/nl.po b/po/nl.po -index 62d0aa881c79..cef17b409dfb 100644 +index d411dad7fa8d..710211ccb6fd 100644 --- a/po/nl.po +++ b/po/nl.po -@@ -2345,3 +2345,18 @@ msgstr "" - #: ../src/terminal-window.c:3953 - msgid "C_lose Window" - msgstr "Venster sl_uiten" +@@ -2594,3 +2594,15 @@ msgstr "Venster sl_uiten" + + #~ msgid "_Add or Remove…" + #~ msgstr "_Toevoegen of verwijderen…" + +msgid "Title" +msgstr "Titel" @@ -3548,9 +3469,6 @@ index 62d0aa881c79..cef17b409dfb 100644 +msgid "Set Title" +msgstr "Titel instellen" + -+msgid "_Set Title…" -+msgstr "Titel _instellen…" -+ +msgid "Transparent background" +msgstr "Transparante achtergrond" diff --git a/po/nn.po b/po/nn.po @@ -3580,7 +3498,7 @@ index 5aa43b113ed9..f892290c256f 100644 #: ../src/profile-preferences.glade.h:74 msgid "_Update login records when command is launched" diff --git a/po/oc.po b/po/oc.po -index b1befba5b372..f51dffb01c07 100644 +index b1befba5b372..56d697a6828d 100644 --- a/po/oc.po +++ b/po/oc.po @@ -2549,8 +2549,8 @@ msgstr "Tampar _la fenèstra" @@ -3594,17 +3512,6 @@ index b1befba5b372..f51dffb01c07 100644 #~ msgid "Move Tab _Right" #~ msgstr "Desplaçar l'onglet cap a _dreita" -@@ -2558,8 +2558,8 @@ msgstr "Tampar _la fenèstra" - #~ msgid "Move Tab _Left" - #~ msgstr "Desplaçar l'onglet cap a _esquèrra" - --#~ msgid "_Set Title…" --#~ msgstr "_Modificar lo títol…" -+msgid "_Set Title…" -+msgstr "_Modificar lo títol…" - - #~ msgid "_Detach tab" - #~ msgstr "Des_tacar l'onglet" @@ -3019,8 +3019,8 @@ msgstr "Tampar _la fenèstra" #~ msgid "_Use the system fixed width font" #~ msgstr "_Utilizar la poliça de chassa fixa del sistèma" @@ -3643,7 +3550,7 @@ index ec1e6bfb9a28..218acd712df6 100644 #~ msgid "S_hade transparent or image background:" #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):" diff --git a/po/pa.po b/po/pa.po -index f1abdb6306f6..b10907ddc82a 100644 +index f1abdb6306f6..3ceb7aa4df44 100644 --- a/po/pa.po +++ b/po/pa.po @@ -2449,10 +2449,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)" @@ -3676,7 +3583,7 @@ index f1abdb6306f6..b10907ddc82a 100644 #~ msgid "Title and Command" #~ msgstr "ਟਾਈਟਲ ਅਤੇ ਕਮਾਂਡ" -@@ -2509,14 +2508,14 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)" +@@ -2509,8 +2508,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)" #~ msgid "_Unlimited" #~ msgstr "ਬੇਅੰਤ(_U)" @@ -3687,14 +3594,6 @@ index f1abdb6306f6..b10907ddc82a 100644 #~ msgid "Current Locale" #~ msgstr "ਮੌਜੂਦ ਲੋਕੇਲ" - --#~ msgid "_Set Title…" --#~ msgstr "…ਟਾਈਟਲ ਦਿਓ(_S)" -+msgid "_Set Title…" -+msgstr "…ਟਾਈਟਲ ਦਿਓ(_S)" - - #~ msgid "What to do with dynamic title" - #~ msgstr "ਡਾਇਨਾਮਿਕ ਟਾਈਟਲ ਦਾ ਕੀ ਕਰਨਾ ਹੈ" @@ -3326,8 +3325,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)" #~ msgid "_Solid color" #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)" @@ -3733,7 +3632,7 @@ index b25a2cb41712..3855b2f3423f 100644 #: ../src/profile-preferences.glade.h:70 msgid "_Update login records when command is launched" diff --git a/po/pt.po b/po/pt.po -index 5181419ad973..40eb8227f333 100644 +index 5181419ad973..3df37f6d5bc7 100644 --- a/po/pt.po +++ b/po/pt.po @@ -2360,11 +2360,11 @@ msgstr "Fechar jane_la" @@ -3752,7 +3651,7 @@ index 5181419ad973..40eb8227f333 100644 #~ msgid "Title and Command" #~ msgstr "Título e comando" -@@ -2372,14 +2372,14 @@ msgstr "Fechar jane_la" +@@ -2372,8 +2372,8 @@ msgstr "Fechar jane_la" #~ msgid "_Unlimited" #~ msgstr "_Ilimitado" @@ -3763,14 +3662,6 @@ index 5181419ad973..40eb8227f333 100644 #~ msgid "Current Locale" #~ msgstr "Configuração Regional Atual" - --#~ msgid "_Set Title…" --#~ msgstr "_Definir o Título…" -+msgid "_Set Title…" -+msgstr "_Definir o Título…" - - #~ msgid "Always visible" - #~ msgstr "Sempre visível" @@ -3160,8 +3160,8 @@ msgstr "Fechar jane_la" #~ msgid "Background image _scrolls" #~ msgstr "Imagem de fundo _rola" @@ -3783,10 +3674,10 @@ index 5181419ad973..40eb8227f333 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 956b0141d1f0..f898179ee27c 100644 +index c40dba26b08a..9be7eec414e9 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po -@@ -2670,17 +2670,17 @@ msgstr "_Fechar janela" +@@ -2687,17 +2687,17 @@ msgstr "_Fechar janela" #~ msgid "Default size:" #~ msgstr "Tamanho padrão:" @@ -3810,7 +3701,7 @@ index 956b0141d1f0..f898179ee27c 100644 #~ msgid "Current Locale" #~ msgstr "Codificação atual" -@@ -3306,3 +3306,6 @@ msgstr "_Fechar janela" +@@ -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\"" @@ -3818,10 +3709,10 @@ index 956b0141d1f0..f898179ee27c 100644 +msgid "Transparent background" +msgstr "Fundo transparente" diff --git a/po/ro.po b/po/ro.po -index 23d40cf63e30..9386940431dd 100644 +index acd25ab33eca..5bd7303eb50c 100644 --- a/po/ro.po +++ b/po/ro.po -@@ -3176,8 +3176,8 @@ msgstr "Î_nchide fereastra" +@@ -3412,8 +3412,8 @@ msgstr "Î_nchide fereastra" #~ msgid "_Solid color" #~ msgstr "Culoare _solidă" @@ -3833,13 +3724,13 @@ index 23d40cf63e30..9386940431dd 100644 #~ msgid "_Unlimited" #~ msgstr "_Neliminat" diff --git a/po/ru.po b/po/ru.po -index 5cb6bfdebe44..438e9b8dbe7b 100644 +index fedc4d3ec51c..c08bffcb4d10 100644 --- a/po/ru.po +++ b/po/ru.po -@@ -2304,3 +2304,22 @@ msgstr "" - #: ../src/terminal-window.c:3953 - msgid "C_lose Window" - msgstr "_Закрыть окно" +@@ -2539,3 +2539,19 @@ msgstr "_Закрыть окно" + + #~ msgid "_Add or Remove…" + #~ msgstr "_Добавить или удалить…" + +msgid "Transparent background" +msgstr "Прозрачный фон" @@ -3856,9 +3747,6 @@ index 5cb6bfdebe44..438e9b8dbe7b 100644 + +msgid "Set Title" +msgstr "Установить заголовок" -+ -+msgid "_Set Title…" -+msgstr "_Установить заголовок…" diff --git a/po/rw.po b/po/rw.po index 012f64e325c3..5ff633f8b3c2 100644 --- a/po/rw.po @@ -3881,7 +3769,7 @@ index 012f64e325c3..5ff633f8b3c2 100644 msgstr "Umutwe..." diff --git a/po/si.po b/po/si.po -index adca7d5acba9..adeea9e95544 100644 +index adca7d5acba9..6379cee7f0a3 100644 --- a/po/si.po +++ b/po/si.po @@ -218,8 +218,8 @@ msgid "Background" @@ -3906,22 +3794,11 @@ index adca7d5acba9..adeea9e95544 100644 #: ../src/gnome-terminal.glade2.h:87 msgid "_Update login records when command is launched" -@@ -1973,8 +1973,8 @@ msgid "Change _Profile" - msgstr "දැනට ඇති පැතිකඩ (_P)" - - #: ../src/terminal-window.c:1018 --msgid "_Set Title..." --msgstr "සිරස්තලය සකසන්න... (_S)" -+msgid "_Set Title…" -+msgstr "සිරස්තලය සකසන්න… (_S)" - - #: ../src/terminal-window.c:1025 - msgid "Set _Character Encoding" diff --git a/po/sk.po b/po/sk.po -index 8cf2a62bd08c..586a95b12cec 100644 +index d0282159b459..01dd96a06939 100644 --- a/po/sk.po +++ b/po/sk.po -@@ -2632,3 +2632,18 @@ msgstr "_Zavrieť okno" +@@ -2916,3 +2916,15 @@ msgstr "_Zavrieť okno" #~ "\n" #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --" #~ "help“.\n" @@ -3937,14 +3814,11 @@ index 8cf2a62bd08c..586a95b12cec 100644 + +msgid "Set Title" +msgstr "Nastaviť titulok" -+ -+msgid "_Set Title…" -+msgstr "_Nastaviť titulok…" diff --git a/po/sl.po b/po/sl.po -index 2302966b5585..7a08ee9c7e87 100644 +index 2302966b5585..ea8d20160cd0 100644 --- a/po/sl.po +++ b/po/sl.po -@@ -2428,23 +2428,23 @@ msgstr "_Zapri okno" +@@ -2428,17 +2428,17 @@ msgstr "_Zapri okno" #~ msgid "Default size:" #~ msgstr "Privzeta velikost:" @@ -3968,14 +3842,6 @@ index 2302966b5585..7a08ee9c7e87 100644 #~ msgid "Current Locale" #~ msgstr "Trenutne jezikovne nastavitve" - --#~ msgid "_Set Title…" --#~ msgstr "_Določi naziv okna ..." -+msgid "_Set Title…" -+msgstr "_Določi naziv okna ..." - - #~ msgid "_Next Tab" - #~ msgstr "_Naslednji zavihek" @@ -2589,3 +2589,6 @@ msgstr "_Zapri okno" #~ msgid "_Profile Preferences…" @@ -4010,10 +3876,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 756e6d2e8cd8..2af31d40b11d 100644 +index 8bf15f3250a4..81a73722c616 100644 --- a/po/sr.po +++ b/po/sr.po -@@ -2341,10 +2341,9 @@ msgstr "_Затвори прозор" +@@ -2576,10 +2576,9 @@ msgstr "_Затвори прозор" #~ msgid "GNOME Terminal Client" #~ msgstr "Клијент Гномовог терминала" @@ -4027,7 +3893,7 @@ index 756e6d2e8cd8..2af31d40b11d 100644 #~ msgid "Title for terminal" #~ msgstr "Наслов за терминал" -@@ -2390,11 +2389,11 @@ msgstr "_Затвори прозор" +@@ -2625,11 +2624,11 @@ msgstr "_Затвори прозор" #~ msgid "Default size:" #~ msgstr "Основна величина:" @@ -4043,7 +3909,7 @@ index 756e6d2e8cd8..2af31d40b11d 100644 #~ msgid "Title and Command" #~ msgstr "Наслов и наредба" -@@ -2402,14 +2401,14 @@ msgstr "_Затвори прозор" +@@ -2637,8 +2636,8 @@ msgstr "_Затвори прозор" #~ msgid "_Unlimited" #~ msgstr "_Неограничено" @@ -4054,26 +3920,18 @@ index 756e6d2e8cd8..2af31d40b11d 100644 #~ msgid "Current Locale" #~ msgstr "Текући локалитет" +@@ -2648,3 +2647,6 @@ msgstr "_Затвори прозор" --#~ msgid "_Set Title…" --#~ msgstr "Постави _наслов…" -+msgid "_Set Title…" -+msgstr "Постави _наслов…" - - #~ msgid "Always visible" - #~ msgstr "Увек видљив" -@@ -2431,3 +2430,6 @@ msgstr "_Затвори прозор" - - #~ msgid "Close Window" - #~ msgstr "Затвори прозор" + #~ msgid "Hidden" + #~ msgstr "Скривен" + +msgid "Transparent background" +msgstr "Провидна позадина" diff --git a/po/sr@latin.po b/po/sr@latin.po -index df24091cce1b..8bad95380588 100644 +index 45dbad07fba7..852c47cc6ee5 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po -@@ -2341,10 +2341,9 @@ msgstr "_Zatvori prozor" +@@ -2576,10 +2576,9 @@ msgstr "_Zatvori prozor" #~ msgid "GNOME Terminal Client" #~ msgstr "Klijent Gnomovog terminala" @@ -4087,7 +3945,7 @@ index df24091cce1b..8bad95380588 100644 #~ msgid "Title for terminal" #~ msgstr "Naslov za terminal" -@@ -2390,11 +2389,11 @@ msgstr "_Zatvori prozor" +@@ -2625,11 +2624,11 @@ msgstr "_Zatvori prozor" #~ msgid "Default size:" #~ msgstr "Osnovna veličina:" @@ -4103,7 +3961,7 @@ index df24091cce1b..8bad95380588 100644 #~ msgid "Title and Command" #~ msgstr "Naslov i naredba" -@@ -2402,14 +2401,14 @@ msgstr "_Zatvori prozor" +@@ -2637,8 +2636,8 @@ msgstr "_Zatvori prozor" #~ msgid "_Unlimited" #~ msgstr "_Neograničeno" @@ -4114,26 +3972,18 @@ index df24091cce1b..8bad95380588 100644 #~ msgid "Current Locale" #~ msgstr "Tekući lokalitet" +@@ -2648,3 +2647,6 @@ msgstr "_Zatvori prozor" --#~ msgid "_Set Title…" --#~ msgstr "Postavi _naslov…" -+msgid "_Set Title…" -+msgstr "Postavi _naslov…" - - #~ msgid "Always visible" - #~ msgstr "Uvek vidljiv" -@@ -2431,3 +2430,6 @@ msgstr "_Zatvori prozor" - - #~ msgid "Close Window" - #~ msgstr "Zatvori prozor" + #~ msgid "Hidden" + #~ msgstr "Skriven" + +msgid "Transparent background" +msgstr "Providna pozadina" diff --git a/po/sv.po b/po/sv.po -index 3a67d6247216..2ab280b3a11c 100644 +index 8560fde55941..bd1030f519ab 100644 --- a/po/sv.po +++ b/po/sv.po -@@ -2337,5 +2337,17 @@ msgstr "Stän_g fönster" +@@ -2572,5 +2572,17 @@ msgstr "Stän_g fönster" #~ msgid "Unknown completion request for \"%s\"" #~ msgstr "Okänd kompletteringsbegäran för \"%s\"" @@ -4366,10 +4216,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 32b3976267d5..d98244f76d47 100644 +index fa79334e08dc..5b988d7dbd4a 100644 --- a/po/tr.po +++ b/po/tr.po -@@ -2436,3 +2436,15 @@ msgstr "_Pencereyi Kapat" +@@ -2558,3 +2558,15 @@ msgstr "_Pencereyi Kapat" #~ msgid "_Same as text color" #~ msgstr "_Metin rengiyle aynı" @@ -4451,10 +4301,10 @@ index a08f25914d12..a4fbcbe6e474 100644 #~ msgid "Switch to Tab 2" #~ msgstr "До вкладки 2" diff --git a/po/vi.po b/po/vi.po -index 98bb18d02e33..253ea1dbaf3f 100644 +index 67eb9326545f..5a279ad647b6 100644 --- a/po/vi.po +++ b/po/vi.po -@@ -2438,8 +2438,8 @@ msgstr "Đón_g cửa sổ" +@@ -2673,8 +2673,8 @@ msgstr "Đón_g cửa sổ" #~ msgid "Default size:" #~ msgstr "Cỡ mặc định:" @@ -4465,29 +4315,18 @@ index 98bb18d02e33..253ea1dbaf3f 100644 #~ msgid "When terminal commands set their o_wn titles:" #~ msgstr "Khi câu lệnh thiết bị cuối tự đặt tựa đề _mình:" -@@ -2459,8 +2459,8 @@ msgstr "Đón_g cửa sổ" - #~ msgid "Close Window" - #~ msgstr "Đóng cửa sổ" +@@ -2685,8 +2685,8 @@ msgstr "Đón_g cửa sổ" + #~ msgid "_Unlimited" + #~ msgstr "_Không hạn chế" -#~ msgid "Set Title" -#~ msgstr "Đặt tựa đề" +msgid "Set Title" +msgstr "Đặt tựa đề" - #~ msgid "Switch to Tab 2" - #~ msgstr "Chuyển sang Thanh 2" -@@ -2507,8 +2507,8 @@ msgstr "Đón_g cửa sổ" - #~ msgid "_Close Window" - #~ msgstr "Đón_g cửa sổ" - --#~ msgid "_Set Title…" --#~ msgstr "Đặt tự_a đề" -+msgid "_Set Title…" -+msgstr "Đặt tự_a đề" - - #~ msgid "_Next Tab" - #~ msgstr "Thanh _sau" -@@ -2519,8 +2519,8 @@ msgstr "Đón_g cửa sổ" + #~ msgid "Switch to Tab 3" + #~ msgstr "Chuyển sang Thanh 3" +@@ -2727,8 +2727,8 @@ msgstr "Đón_g cửa sổ" #~ msgid "_Input Methods" #~ msgstr "K_iểu gõ" @@ -4498,7 +4337,7 @@ index 98bb18d02e33..253ea1dbaf3f 100644 #~ msgid "Disable connection to session manager" #~ msgstr "Tắt kết nối đến trình quản lý phiên làm việc" -@@ -2905,3 +2905,6 @@ msgstr "Đón_g cửa sổ" +@@ -3113,3 +3113,6 @@ msgstr "Đón_g cửa sổ" #~ "Phím tắt để đặt lại thiết bị cuối. Dùng dạng chuỗi có cùng một khuôn dạng " #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị " #~ "tắt), nghĩa là không có phím tắt cho hành động này." @@ -4580,10 +4419,10 @@ index 44a8e21c7842..12aa6d190d99 100644 #: ../src/terminal-window.c:986 msgid "Set _Character Encoding" diff --git a/po/zh_CN.po b/po/zh_CN.po -index b64071ce4bae..f18872ab8434 100644 +index b64071ce4bae..3f4aefe744fd 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po -@@ -2356,23 +2356,23 @@ msgstr "关闭窗口(_L)" +@@ -2356,17 +2356,17 @@ msgstr "关闭窗口(_L)" #~ msgid "Default size:" #~ msgstr "默认大小:" @@ -4607,14 +4446,6 @@ index b64071ce4bae..f18872ab8434 100644 #~ msgid "Current Locale" #~ msgstr "当前区域" - --#~ msgid "_Set Title…" --#~ msgstr "设置标题(_S)..." -+msgid "_Set Title…" -+msgstr "设置标题(_S)..." - - #~ msgid "_Next Tab" - #~ msgstr "后一标签页(_N)" @@ -2512,3 +2512,6 @@ msgstr "关闭窗口(_L)" #~ msgid "_Find..." @@ -4623,10 +4454,10 @@ index b64071ce4bae..f18872ab8434 100644 +msgid "Transparent background" +msgstr "透明背景" diff --git a/po/zh_HK.po b/po/zh_HK.po -index 61153529f0c7..3b269ea13a71 100644 +index 61153529f0c7..c366abddd1af 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po -@@ -2114,23 +2114,23 @@ msgstr "關閉視窗(_L)" +@@ -2114,17 +2114,17 @@ msgstr "關閉視窗(_L)" #~ msgid "Default size:" #~ msgstr "預設大小:" @@ -4650,14 +4481,6 @@ index 61153529f0c7..3b269ea13a71 100644 #~ msgid "Current Locale" #~ msgstr "目前的地區設定" - --#~ msgid "_Set Title…" --#~ msgstr "設定標題(_S)…" -+msgid "_Set Title…" -+msgstr "設定標題(_S)…" - - #~ msgid "_Next Tab" - #~ msgstr "下一個分頁(_N)" @@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)" #~ msgid "Show session management options" @@ -4666,10 +4489,10 @@ index 61153529f0c7..3b269ea13a71 100644 +msgid "Transparent background" +msgstr "透明背景" diff --git a/po/zh_TW.po b/po/zh_TW.po -index f5e3110135c3..f9d7c6449a3e 100644 +index 169c0bd009f9..2a3448af26ef 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po -@@ -2340,23 +2340,23 @@ msgstr "關閉視窗(_L)" +@@ -2570,17 +2570,17 @@ msgstr "關閉視窗(_L)" #~ msgid "Default size:" #~ msgstr "預設大小:" @@ -4693,15 +4516,7 @@ index f5e3110135c3..f9d7c6449a3e 100644 #~ msgid "Current Locale" #~ msgstr "目前的地區設定" - --#~ msgid "_Set Title…" --#~ msgstr "設定標題(_S)…" -+msgid "_Set Title…" -+msgstr "設定標題(_S)…" - - #~ msgid "_Next Tab" - #~ msgstr "下一個分頁(_N)" -@@ -2601,3 +2601,6 @@ msgstr "關閉視窗(_L)" +@@ -2792,3 +2792,6 @@ msgstr "關閉視窗(_L)" #~ msgid "Show session management options" #~ msgstr "顯示作業階段管理選項" @@ -4712,7 +4527,7 @@ index f5e3110135c3..f9d7c6449a3e 100644 2.14.3 -From d07a8c3fe3825e8ddadae8a25fd2f0aa8bae3289 Mon Sep 17 00:00:00 2001 +From 09085f916e0984d7e4cf7d3da0e8ed5a799f963d Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Fri, 6 Apr 2018 14:40:29 +0200 Subject: [PATCH 13/16] notebook-menu: Add placeholder item for win.set-title @@ -4744,7 +4559,7 @@ index 8854a7b35e44..d5c7f41e7561 100644 2.14.3 -From 715fc47c3782e0b48566713b2b3a9df0fd64de1b Mon Sep 17 00:00:00 2001 +From fc1fd71fc9e06e4d1b68ff76803d622b1275c5da Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Wed, 25 May 2016 13:47:36 +0200 Subject: [PATCH 14/16] Restore the action and shortcut to set a static title @@ -4809,10 +4624,10 @@ index bbe3268bc9a4..3162108071bf 100644 static KeyEntry tabs_entries[] = { diff --git a/src/terminal-window.c b/src/terminal-window.c -index 1b49ea66f846..f65c359feece 100644 +index 662475af107e..05a812544bb2 100644 --- a/src/terminal-window.c +++ b/src/terminal-window.c -@@ -751,6 +751,80 @@ action_select_all_cb (GSimpleAction *action, +@@ -747,6 +747,80 @@ action_select_all_cb (GSimpleAction *action, vte_terminal_select_all (VTE_TERMINAL (priv->active_screen)); } @@ -4893,7 +4708,7 @@ index 1b49ea66f846..f65c359feece 100644 static void action_reset_cb (GSimpleAction *action, GVariant *parameter, -@@ -2149,6 +2223,7 @@ terminal_window_init (TerminalWindow *window) +@@ -2092,6 +2166,7 @@ terminal_window_init (TerminalWindow *window) { "paste-uris", action_paste_uris_cb, NULL, NULL, NULL }, { "reset", action_reset_cb, "b", NULL, NULL }, { "select-all", action_select_all_cb, NULL, NULL, NULL }, @@ -4905,7 +4720,7 @@ index 1b49ea66f846..f65c359feece 100644 2.14.3 -From 5e4f1ffef57d785e262215f9fa09969f5e08f744 Mon Sep 17 00:00:00 2001 +From 97bb6a9bacb3496f669bb0f876c629015f1fc211 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Thu, 30 Jun 2016 18:14:36 +0200 Subject: [PATCH 15/16] screen: Style fix @@ -4919,7 +4734,7 @@ https://bugzilla.redhat.com/show_bug.cgi?id=1296110 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminal-screen.c b/src/terminal-screen.c -index ddd3aca4d23a..bf5cd891ed90 100644 +index 0e4c23fa8e8c..cdf1a2baecfc 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c @@ -713,7 +713,7 @@ terminal_screen_new (GSettings *profile, @@ -4935,7 +4750,7 @@ index ddd3aca4d23a..bf5cd891ed90 100644 2.14.3 -From 9e8e8adea285f1aac3a55dcc36642f328dc7fdd9 Mon Sep 17 00:00:00 2001 +From 674fbfae9c998e242b344aa16c50388419a0078f Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Thu, 30 Jun 2016 16:58:15 +0200 Subject: [PATCH 16/16] Restore the rest of the title handling options and make @@ -5010,7 +4825,7 @@ index 147d36017c1f..04be15324d3d 100644 'Terminal' Title for terminal diff --git a/src/preferences.ui b/src/preferences.ui -index cef3de7cd00b..d6deb580dcd2 100644 +index baa65c705b32..0dddd9bf32ba 100644 --- a/src/preferences.ui +++ b/src/preferences.ui @@ -1900,7 +1900,7 @@ @@ -5112,7 +4927,7 @@ index b9c6990e356c..240213fead43 100644 #define TERMINAL_PROFILE_USE_CUSTOM_COMMAND_KEY "use-custom-command" #define TERMINAL_PROFILE_USE_SKEY_KEY "use-skey" diff --git a/src/terminal-screen.c b/src/terminal-screen.c -index bf5cd891ed90..2f89c976dee4 100644 +index cdf1a2baecfc..faf906c763e7 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c @@ -88,13 +88,17 @@ struct _TerminalScreenPrivate @@ -5454,7 +5269,7 @@ index bf5cd891ed90..2f89c976dee4 100644 } GSettings* -@@ -1482,8 +1597,6 @@ spawn_result_cb (VteTerminal *terminal, +@@ -1476,8 +1591,6 @@ spawn_result_cb (VteTerminal *terminal, priv->child_pid = pid; @@ -5463,7 +5278,7 @@ index bf5cd891ed90..2f89c976dee4 100644 if (error) { GtkWidget *info_bar; -@@ -1795,33 +1908,83 @@ terminal_screen_focus_in (GtkWidget *widget, +@@ -1789,33 +1902,83 @@ terminal_screen_focus_in (GtkWidget *widget, return GTK_WIDGET_CLASS (terminal_screen_parent_class)->focus_in_event (widget, event); } @@ -5561,7 +5376,7 @@ index bf5cd891ed90..2f89c976dee4 100644 } /** -@@ -1854,15 +2017,18 @@ static void +@@ -1848,15 +2011,18 @@ static void terminal_screen_window_title_changed (VteTerminal *vte_terminal, TerminalScreen *screen) { @@ -5583,7 +5398,7 @@ index bf5cd891ed90..2f89c976dee4 100644 } static void -@@ -1881,8 +2047,6 @@ terminal_screen_child_exited (VteTerminal *terminal, +@@ -1875,8 +2041,6 @@ terminal_screen_child_exited (VteTerminal *terminal, priv->child_pid = -1; @@ -5592,7 +5407,7 @@ index bf5cd891ed90..2f89c976dee4 100644 action = g_settings_get_enum (priv->profile, TERMINAL_PROFILE_EXIT_ACTION_KEY); switch (action) -@@ -1926,6 +2090,24 @@ terminal_screen_child_exited (VteTerminal *terminal, +@@ -1920,6 +2084,24 @@ terminal_screen_child_exited (VteTerminal *terminal, } } @@ -5644,10 +5459,10 @@ index 63f9c47e115a..51472685f402 100644 char *terminal_screen_get_current_dir (TerminalScreen *screen); diff --git a/src/terminal-window.c b/src/terminal-window.c -index f65c359feece..d9def99d77d8 100644 +index 05a812544bb2..adf13e60472d 100644 --- a/src/terminal-window.c +++ b/src/terminal-window.c -@@ -769,6 +769,12 @@ terminal_set_title_dialog_response_cb (GtkWidget *dialog, +@@ -765,6 +765,12 @@ terminal_set_title_dialog_response_cb (GtkWidget *dialog, gtk_widget_destroy (dialog); } @@ -5660,7 +5475,7 @@ index f65c359feece..d9def99d77d8 100644 static void action_set_title_cb (GSimpleAction *action, GVariant *parameter, -@@ -2578,14 +2584,11 @@ sync_screen_title (TerminalScreen *screen, +@@ -2521,14 +2527,11 @@ sync_screen_title (TerminalScreen *screen, TerminalWindow *window) { TerminalWindowPrivate *priv = window->priv; diff --git a/gnome-terminal.spec b/gnome-terminal.spec index f213892..5360e24 100644 --- a/gnome-terminal.spec +++ b/gnome-terminal.spec @@ -6,20 +6,17 @@ %define desktop_file_utils_version 0.2.90 Name: gnome-terminal -Version: 3.27.90 +Version: 3.28.1 Release: 1%{?dist} Summary: Terminal emulator for GNOME License: GPLv3+ and GFDL URL: http://www.gnome.org/ -Source0: http://download.gnome.org/sources/gnome-terminal/3.27/gnome-terminal-%{version}.tar.xz +Source0: http://download.gnome.org/sources/gnome-terminal/3.28/gnome-terminal-%{version}.tar.xz Source1: org.gnome.Terminal.gschema.override Patch0: 0001-build-Don-t-treat-warnings-as-errors.patch -# https://bugzilla.gnome.org/show_bug.cgi?id=794935 -Patch1: gnome-terminal-dont-misplace-the-notebook-popup-on-wayland.patch - Patch100: gnome-terminal-notify-open-title-transparency.patch BuildRequires: glib2-devel >= %{glib2_version} @@ -65,7 +62,6 @@ option to the right-click context menu in Nautilus. %prep %setup -q %patch0 -p1 -b .warnings -%patch1 -p1 -b .notebook-popup %patch100 -p1 -b .notify-open-title-transparency %build @@ -106,6 +102,10 @@ make check %{_datadir}/metainfo/org.gnome.Terminal.Nautilus.metainfo.xml %changelog +* Fri Apr 13 2018 Debarshi Ray - 3.28.1-1 +- Update to 3.28.1 +- Rebase the translations + * Thu Apr 12 2018 Debarshi Ray - 3.27.90-1 - Update to 3.27.90 - Rebase transparency, command-notify and translation patches diff --git a/sources b/sources index 9569fcb..adae46a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gnome-terminal-3.27.90.tar.xz) = 3568efc66a081136d03d45fccfb1aa7992bf661e1dcfa2ed70b12f3bd16e084f0fa7927ff7522f6f1508b81aea827bc00830e37e7787f0db9739d3e504e27450 +SHA512 (gnome-terminal-3.28.1.tar.xz) = c6bf5619de37e3047482b41b24a82c95471d9748a198d92bd7ae5cccb7aff0f01e7cb4d249a9eb08401725b83ac5ea5072b3174472ed1e7dbd241ec6405a5a89