summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD6
-rw-r--r--package.changelog4
-rw-r--r--transparency.patch996
4 files changed, 365 insertions, 651 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 50751b7e11eb..0539a76386d7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = gnome-terminal-transparency
pkgdesc = The GNOME Terminal Emulator, with background transparency
- pkgver = 3.28.1
+ pkgver = 3.28.2
pkgrel = 1
url = https://wiki.gnome.org/Apps/Terminal
changelog = package.changelog
@@ -19,13 +19,13 @@ pkgbase = gnome-terminal-transparency
depends = vte3>=0.52.0
depends = gsettings-desktop-schemas
depends = dconf
- provides = gnome-terminal=3.28.1
+ provides = gnome-terminal=3.28.2
conflicts = gnome-terminal
options = !emptydirs
- source = https://download.gnome.org/sources/gnome-terminal/3.28/gnome-terminal-3.28.1.tar.xz
+ source = https://download.gnome.org/sources/gnome-terminal/3.28/gnome-terminal-3.28.2.tar.xz
source = transparency.patch
- sha256sums = f7a6a0189a0b0fbf7845d092e5444fc6303225c2d9ef87bfaae3f80845801cc3
- sha256sums = c697d0b5ac2c2d239e82e32e895890bf9023c7ea4f77bac09c6afbde070c534b
+ sha256sums = a283dca4980eecf9184a55aac03fef99f85748461ff190423a2253f3b4557279
+ sha256sums = cd3e0adb14b1002e53a086edf803923d1a2d9974419e20777968eed7199cbca0
pkgname = gnome-terminal-transparency
diff --git a/PKGBUILD b/PKGBUILD
index 5fbae26b8277..1965485e395d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=gnome-terminal-transparency
_pkgname=gnome-terminal
-pkgver=3.28.1
+pkgver=3.28.2
pkgrel=1
pkgdesc="The GNOME Terminal Emulator, with background transparency"
url="https://wiki.gnome.org/Apps/Terminal"
@@ -21,8 +21,8 @@ groups=(gnome)
changelog=package.changelog
source=(https://download.gnome.org/sources/$_pkgname/${pkgver:0:4}/$_pkgname-$pkgver.tar.xz
transparency.patch)
-sha256sums=('f7a6a0189a0b0fbf7845d092e5444fc6303225c2d9ef87bfaae3f80845801cc3'
- 'c697d0b5ac2c2d239e82e32e895890bf9023c7ea4f77bac09c6afbde070c534b')
+sha256sums=('a283dca4980eecf9184a55aac03fef99f85748461ff190423a2253f3b4557279'
+ 'cd3e0adb14b1002e53a086edf803923d1a2d9974419e20777968eed7199cbca0')
prepare() {
cd $_pkgname-$pkgver
diff --git a/package.changelog b/package.changelog
index fdf87b8683e4..02b74918ac91 100644
--- a/package.changelog
+++ b/package.changelog
@@ -1,3 +1,7 @@
+2018-05-22
+ upstream update: 3.28.1 -> 3.28.2
+ use again patches provided by Debarshi Ray from Fedora
+
2018-04-10
upstream update: 3.28.0 -> 3.28.1
diff --git a/transparency.patch b/transparency.patch
index 64e9bf2d8ae8..2b0fe95995b0 100644
--- a/transparency.patch
+++ b/transparency.patch
@@ -1,19 +1,31 @@
-From b79d8f68eda5a8fe3905fb364d2dd6936a4e1578 Mon Sep 17 00:00:00 2001
-From: Peter Weber <peter.weber@mailbox.org>
-Date: Tue, 10 Apr 2018 08:41:52 +0200
-Subject: [PATCH 1/4] transparency for 3.28.1 [01/14]
+From 8280180dd48841ea04c9eb437c2d015423673763 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/16] Restore transparency
+The transparency settings were removed as a side effect of
+2bff4b63ed3ceef6055e35563e9b0b33ad57349d
+
+This restores them and you will need a compositing window manager to
+use it. The background image setting, also known as faux transparency,
+was not restored.
+
+The transparency checkbox lost its mnemonic accelerator because 't'
+is already taken and using any other letter would make it hard to
+restore the translations of the string.
+
+Some changes by Peter Weber <peter.weber@mailbox.org>
---
- src/org.gnome.Terminal.gschema.xml | 10 +++++++
- src/preferences.ui | 47 ++++++++++++++++++++++++++++++
- src/profile-editor.c | 16 ++++++++++
- src/terminal-schemas.h | 3 ++
- src/terminal-screen.c | 21 ++++++++++++-
- src/terminal-window.c | 7 +++++
- 6 files changed, 103 insertions(+), 1 deletion(-)
+ src/org.gnome.Terminal.gschema.xml | 10 ++++++++
+ src/preferences.ui | 47 ++++++++++++++++++++++++++++++++++++++
+ src/profile-editor.c | 16 +++++++++++++
+ src/terminal-schemas.h | 3 +++
+ src/terminal-screen.c | 22 +++++++++++++++++-
+ src/terminal-window.c | 7 ++++++
+ 6 files changed, 104 insertions(+), 1 deletion(-)
diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
-index 2edeceac..b828471b 100644
+index 2edeceacf9e5..b828471bd71d 100644
--- a/src/org.gnome.Terminal.gschema.xml
+++ b/src/org.gnome.Terminal.gschema.xml
@@ -400,6 +400,16 @@
@@ -34,7 +46,7 @@ index 2edeceac..b828471b 100644
<!-- Keybinding settings -->
diff --git a/src/preferences.ui b/src/preferences.ui
-index 6259aac0..c19122d7 100644
+index 6259aac0f02f..f5c366f14e10 100644
--- a/src/preferences.ui
+++ b/src/preferences.ui
@@ -77,6 +77,11 @@
@@ -89,17 +101,17 @@ index 6259aac0..c19122d7 100644
+ </packing>
+ </child>
+ </object>
-+ <packing>
-+ <property name="expand">True</property>
-+ <property name="fill">True</property>
-+ <property name="position">2</property>
-+ </packing>
-+ </child>
++ <packing>
++ <property name="expand">True</property>
++ <property name="fill">True</property>
++ <property name="position">2</property>
++ </packing>
++ </child>
</object>
</child>
</object>
diff --git a/src/profile-editor.c b/src/profile-editor.c
-index c93a1912..105a2658 100644
+index c93a1912649c..8c25c6372901 100644
--- a/src/profile-editor.c
+++ b/src/profile-editor.c
@@ -1325,6 +1325,22 @@ profile_prefs_load (const char *uuid, GSettings *profile)
@@ -107,7 +119,6 @@ index c93a1912..105a2658 100644
"active-id",
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"),
@@ -121,12 +132,13 @@ index c93a1912..105a2658 100644
+ 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);
++ "value",
++ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
}
/* Called once per Preferences window, to destroy stuff that doesn't depend on the profile being edited */
diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
-index 46ed321d..8e79bb2e 100644
+index 46ed321df074..8e79bb2e49f5 100644
--- a/src/terminal-schemas.h
+++ b/src/terminal-schemas.h
@@ -73,6 +73,9 @@ G_BEGIN_DECLS
@@ -140,7 +152,7 @@ index 46ed321d..8e79bb2e 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 f67f8a2f..fc811f8c 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,
@@ -163,25 +175,26 @@ index f67f8a2f..fc811f8c 100644
gboolean use_theme_colors;
context = gtk_widget_get_style_context (widget);
-@@ -950,6 +954,17 @@ update_color_scheme (TerminalScreen *screen)
+@@ -950,6 +954,18 @@ update_color_scheme (TerminalScreen *screen)
}
colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
-+ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
-+ if (transparent)
++
++ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
++ if (transparent)
+ {
+ gint transparency_percent;
+
+ transparency_percent = g_settings_get_int (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT);
+ bg.alpha = (100 - transparency_percent) / 100.0;
+ }
-+ else
++ else
+ bg.alpha = 1.0;
+
vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
colors, n_colors);
vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
-@@ -957,6 +972,10 @@ update_color_scheme (TerminalScreen *screen)
+@@ -957,6 +973,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);
@@ -193,18 +206,18 @@ index f67f8a2f..fc811f8c 100644
static void
diff --git a/src/terminal-window.c b/src/terminal-window.c
-index a348a803..e4a47c37 100644
+index a348a8032c18..b665d3101b10 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
-@@ -2101,6 +2101,8 @@ terminal_window_init (TerminalWindow *window)
+@@ -2100,6 +2100,8 @@ terminal_window_init (TerminalWindow *window)
+ };
TerminalWindowPrivate *priv;
TerminalApp *app;
- GSettings *gtk_debug_settings;
+ GdkScreen *screen;
+ GdkVisual *visual;
+ GSettings *gtk_debug_settings;
GtkWindowGroup *window_group;
// GtkAccelGroup *accel_group;
- uuid_t u;
@@ -2114,6 +2116,11 @@ terminal_window_init (TerminalWindow *window)
gtk_widget_init_template (GTK_WIDGET (window));
@@ -218,19 +231,30 @@ index a348a803..e4a47c37 100644
uuid_unparse (u, uuidstr);
priv->uuid = g_strdup (uuidstr);
--
-2.17.0
+2.14.3
-From 80573fdd04fb858d35487e19fa14d002dce980cc Mon Sep 17 00:00:00 2001
-From: Peter Weber <peter.weber@mailbox.org>
-Date: Tue, 10 Apr 2018 08:43:05 +0200
-Subject: [PATCH 2/4] window, make drawing more robust [02/14]
+From 44fd3a09d263851285a0e72f73f213dc50d0d797 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/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
+is usually not a problem because GTK+ sets an opaque region on the
+whole window and things without a background-color get drawn with the
+theme's default background colour. However, to achieve transparency
+we disable the opaque region by making the window app-paintable. This
+can lead to transparent menubars or notebook tabs in some themes. We
+can avoid this by ensuring that the window always renders a background.
+
+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 e4a47c37..a3841591 100644
+index b665d3101b10..3835c617b660 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
@@ -1956,6 +1956,26 @@ terminal_window_realize (GtkWidget *widget)
@@ -269,20 +293,23 @@ index e4a47c37..a3841591 100644
widget_class->screen_changed = terminal_window_screen_changed;
widget_class->style_updated = terminal_window_style_updated;
--
-2.17.0
+2.14.3
-From a6eaaa347d8a1bb1ef4915572c1b4bfa2e61a5ae Mon Sep 17 00:00:00 2001
-From: Peter Weber <peter.weber@mailbox.org>
-Date: Tue, 10 Apr 2018 08:44:51 +0200
-Subject: [PATCH 3/4] extra padding on wayland [03/14]
+From 6603429319268785b3314a5e301a88f6571687f9 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/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-window.c | 18 ++++++++++++------
2 files changed, 49 insertions(+), 9 deletions(-)
diff --git a/src/terminal-screen.c b/src/terminal-screen.c
-index fc811f8c..0ac45171 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 *,
@@ -335,7 +362,7 @@ index fc811f8c..0ac45171 100644
static void
update_color_scheme (TerminalScreen *screen)
{
-@@ -973,9 +1002,7 @@ update_color_scheme (TerminalScreen *screen)
+@@ -974,9 +1003,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);
@@ -346,7 +373,7 @@ index fc811f8c..0ac45171 100644
}
static void
-@@ -1580,6 +1607,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
+@@ -1581,6 +1608,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
terminal_screen_popup_info_unref (info);
}
@@ -361,7 +388,7 @@ index fc811f8c..0ac45171 100644
terminal_screen_button_press (GtkWidget *widget,
GdkEventButton *event)
diff --git a/src/terminal-window.c b/src/terminal-window.c
-index a3841591..debfd8ff 100644
+index 3835c617b660..662475af107e 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
@@ -1962,15 +1962,21 @@ terminal_window_draw (GtkWidget *widget,
@@ -393,90 +420,119 @@ index a3841591..debfd8ff 100644
return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
--
-2.17.0
+2.14.3
+
+
+From 7f61a674fb8afc3f1546442610165d131819b9e6 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/16] 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 e074bbf35405..1894bc0c366d 100644
+--- a/src/terminal-screen.c
++++ b/src/terminal-screen.c
+@@ -940,7 +940,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.14.3
+
-From 3a201b5b9a3d31b034d9954452b4ec727037e774 Mon Sep 17 00:00:00 2001
-From: Peter Weber <peter.weber@mailbox.org>
-Date: Tue, 10 Apr 2018 08:55:05 +0200
-Subject: [PATCH 4/4] translations [11/14]
+From b58560467b9022905b56d58b3ff60cf3154a7a81 Mon Sep 17 00:00:00 2001
+From: Debarshi Ray <debarshir@gnome.org>
+Date: Tue, 17 Feb 2015 17:06:17 +0100
+Subject: [PATCH 12/16] Restore translations for setting a title and
+ transparency
---
- po/am.po | 12 ++++++------
- po/an.po | 16 ++++++++--------
+ po/am.po | 8 ++++----
+ po/an.po | 12 ++++++------
po/ar.po | 16 ++++++++--------
- po/as.po | 20 ++++++++++----------
+ po/as.po | 16 ++++++++--------
po/ast.po | 8 ++++----
- po/az.po | 12 ++++++------
+ po/az.po | 8 ++++----
po/be.po | 3 +++
po/be@latin.po | 8 ++++----
- po/bg.po | 12 ++++++++++++
+ po/bg.po | 9 +++++++++
po/bn.po | 8 ++++----
- po/bn_IN.po | 15 +++++++++------
+ po/bn_IN.po | 11 +++++++----
po/br.po | 6 +++---
- po/bs.po | 13 +++++++++++++
- po/ca.po | 15 +++++++++++++++
- po/ca@valencia.po | 15 +++++++++++++++
- po/cs.po | 15 +++++++++++++++
+ po/bs.po | 10 ++++++++++
+ po/ca.po | 13 +++++++++++++
+ po/ca@valencia.po | 12 ++++++++++++
+ po/cs.po | 12 ++++++++++++
po/cy.po | 8 ++++----
- po/da.po | 14 ++++++++++++++
- po/de.po | 15 +++++++++++++++
+ po/da.po | 11 +++++++++++
+ po/de.po | 12 ++++++++++++
po/dz.po | 8 ++++----
- po/el.po | 19 +++++++++++--------
+ po/el.po | 15 +++++++++------
po/en@shaw.po | 8 ++++----
- po/en_CA.po | 12 ++++++------
- po/en_GB.po | 19 +++++++++++--------
- po/eo.po | 12 ++++++------
- po/es.po | 19 +++++++++++--------
+ po/en_CA.po | 8 ++++----
+ po/en_GB.po | 16 ++++++++--------
+ po/eo.po | 8 ++++----
+ po/es.po | 16 ++++++++--------
po/et.po | 3 +++
- po/eu.po | 20 ++++++++++----------
- po/fa.po | 19 +++++++++++--------
- po/fi.po | 15 +++++++++++++++
- po/fr.po | 15 +++++++++++++++
- po/fur.po | 15 +++++++++++----
+ po/eu.po | 16 ++++++++--------
+ po/fa.po | 15 +++++++++------
+ po/fi.po | 12 ++++++++++++
+ po/fr.po | 12 ++++++++++++
+ po/fur.po | 11 +++++++++--
po/ga.po | 3 +++
- po/gl.po | 19 +++++++++++--------
- po/gu.po | 20 ++++++++++----------
- po/he.po | 20 ++++++++++----------
- po/hi.po | 21 ++++++++++-----------
- po/hr.po | 12 ++++++++++++
+ po/gl.po | 16 ++++++++--------
+ po/gu.po | 16 ++++++++--------
+ po/he.po | 16 ++++++++--------
+ po/hi.po | 17 ++++++++---------
+ po/hr.po | 10 ++++++++++
+ po/hu.po | 12 ++++++++++++
po/hy.po | 8 ++++----
- po/id.po | 15 +++++++++++++++
- po/it.po | 15 +++++++++++++++
- po/ja.po | 15 +++++++++++++++
- po/ka.po | 10 +++++-----
- po/kk.po | 15 +++++++++++++++
+ po/id.po | 12 ++++++++++++
+ po/it.po | 12 ++++++++++++
+ po/ja.po | 12 ++++++++++++
+ po/ka.po | 6 +++---
+ 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 | 19 +++++++++++++++++++
+ 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_BR.po | 18 ++++++++++++------
+ po/pt.po | 16 ++++++++--------
+ po/pt_BR.po | 15 +++++++++------
po/ro.po | 4 ++--
- po/ru.po | 20 ++++++++++++++++++++
+ 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 | 25 +++++++++++++++----------
+ po/sr.po | 22 ++++++++++++----------
po/sr@latin.po | 22 ++++++++++++----------
po/sv.po | 12 ++++++++++++
po/ta.po | 27 +++++++++++++--------------
@@ -486,16 +542,16 @@ Subject: [PATCH 4/4] translations [11/14]
po/tr.po | 12 ++++++++++++
po/ug.po | 4 ++--
po/uk.po | 20 ++++++++++----------
- po/vi.po | 18 ++++++++++++------
+ 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 | 18 ++++++++++++------
- 91 files changed, 835 insertions(+), 427 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 3445d96d..f28fc8bf 100644
+index 3445d96da657..ee992f0712a5 100644
--- a/po/am.po
+++ b/po/am.po
@@ -214,8 +214,8 @@ msgid "<b>Background</b>"
@@ -520,19 +576,8 @@ index 3445d96d..f28fc8bf 100644
#: ../src/gnome-terminal.glade2.h:103
msgid "_Update login records when command is launched"
-@@ -1969,8 +1969,8 @@ msgid "Change _Profile"
- msgstr "_ግለ መግለጫ"
-
- #: ../src/terminal-window.c:979
--msgid "_Set Title..."
--msgstr "አርእስት _ይምረጡ..."
-+msgid "_Set Title…"
-+msgstr "አርእስት _ይምረጡ…"
-
- #: ../src/terminal-window.c:986
- #, fuzzy
diff --git a/po/an.po b/po/an.po
-index fcec2668..53c7d220 100644
+index fcec2668aa11..9e07cb682c57 100644
--- a/po/an.po
+++ b/po/an.po
@@ -2241,8 +2241,8 @@ msgstr "_Zarrar a finestra"
@@ -557,17 +602,6 @@ index fcec2668..53c7d220 100644
#~ msgid "Switch to Tab 2"
#~ msgstr "Cambiar a la pestanya 2"
-@@ -2328,8 +2328,8 @@ msgstr "_Zarrar a finestra"
- #~ msgid "_Find..."
- #~ msgstr "_Mirar"
-
--#~ msgid "_Set Title…"
--#~ msgstr "E_stablir o titol…"
-+msgid "_Set Title…"
-+msgstr "E_stablir o titol…"
-
- #~ msgid "_Next Tab"
- #~ msgstr "Pestanya siguie_nt"
@@ -2340,8 +2340,8 @@ msgstr "_Zarrar a finestra"
#~ msgid "_Input Methods"
#~ msgstr "Me_todos de dentrada"
@@ -580,7 +614,7 @@ index fcec2668..53c7d220 100644
#~ msgid "Keyboard Shortcuts"
#~ msgstr "Alcorces de teclau"
diff --git a/po/ar.po b/po/ar.po
-index 076043f9..3c15d6af 100644
+index 076043f99937..ab4042814dd7 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -2558,11 +2558,11 @@ msgstr "أغ_لق النافذة"
@@ -616,13 +650,13 @@ index 076043f9..3c15d6af 100644
-#~ msgid "_Transparent background"
-#~ msgstr "خلفية _شفافة"
-+msgid "_Transparent background"
-+msgstr "خلفية _شفافة"
++msgid "Transparent background"
++msgstr "خلفية شفافة"
#~ msgid "S_hade transparent or image background:"
#~ msgstr "_ظلل شفافية أو صورة الخلفية:"
diff --git a/po/as.po b/po/as.po
-index 3fade2b8..e0c8d9a8 100644
+index 3fade2b8cb12..5b905340f89f 100644
--- a/po/as.po
+++ b/po/as.po
@@ -2163,11 +2163,11 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
@@ -641,7 +675,7 @@ index 3fade2b8..e0c8d9a8 100644
#~ msgid "Title and Command"
#~ msgstr "শীৰ্ষক আৰু কমান্ড"
-@@ -2175,14 +2175,14 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
+@@ -2175,8 +2175,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
#~ msgid "_Unlimited"
#~ msgstr "অসীমিত (_U)"
@@ -652,14 +686,6 @@ index 3fade2b8..e0c8d9a8 100644
#~ msgid "Current Locale"
#~ msgstr "বৰ্তমান স্থানীয়"
-
--#~ msgid "_Set Title…"
--#~ msgstr "শীৰ্ষক নিৰ্ধাৰণ কৰক...(_S)"
-+msgid "_Set Title…"
-+msgstr "শীৰ্ষক নিৰ্ধাৰণ কৰক...(_S)"
-
- #~ msgid "_Next Tab"
- #~ msgstr "পৰবৰ্তী টেব (_N)"
@@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
#~ msgid "Background image _scrolls"
#~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
@@ -672,7 +698,7 @@ index 3fade2b8..e0c8d9a8 100644
#~ msgid "S_hade transparent or image background:"
#~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
diff --git a/po/ast.po b/po/ast.po
-index d1c6e7b8..4dc0892e 100644
+index d1c6e7b8174a..4dc0892ed9c4 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -1304,8 +1304,8 @@ msgid "_Base on:"
@@ -698,7 +724,7 @@ index d1c6e7b8..4dc0892e 100644
#: ../src/profile-preferences.glade.h:78
msgid "_Underline color:"
diff --git a/po/az.po b/po/az.po
-index 586c1e4d..08fbdb7b 100644
+index 586c1e4d827b..4bd846797101 100644
--- a/po/az.po
+++ b/po/az.po
@@ -218,8 +218,8 @@ msgid "<b>Background</b>"
@@ -723,19 +749,8 @@ index 586c1e4d..08fbdb7b 100644
#: ../src/gnome-terminal.glade2.h:103
msgid "_Update login records when command is launched"
-@@ -2144,8 +2144,8 @@ msgid "Change _Profile"
- msgstr "_Profili Dəyişdir"
-
- #: ../src/terminal-window.c:979
--msgid "_Set Title..."
--msgstr "_Başlığı Dəyişdir..."
-+msgid "_Set Title…"
-+msgstr "_Başlığı Dəyişdir…"
-
- #: ../src/terminal-window.c:986
- msgid "Set _Character Encoding"
diff --git a/po/be.po b/po/be.po
-index ce07d479..3c65f909 100644
+index ce07d47995ca..3c65f9090ef4 100644
--- a/po/be.po
+++ b/po/be.po
@@ -2392,3 +2392,6 @@ msgstr "_Закрыць акно"
@@ -746,7 +761,7 @@ index ce07d479..3c65f909 100644
+msgid "Transparent background"
+msgstr "Празрысты фон"
diff --git a/po/be@latin.po b/po/be@latin.po
-index 82ef0664..27e9877f 100644
+index 82ef0664ae1e..27e9877f96e8 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -1146,8 +1146,8 @@ msgid "_Base on:"
@@ -772,10 +787,10 @@ index 82ef0664..27e9877f 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 9a4f32e4..24157396 100644
+index 9a4f32e4b135..6ac17c17efb8 100644
--- a/po/bg.po
+++ b/po/bg.po
-@@ -2305,3 +2305,15 @@ msgstr ""
+@@ -2305,3 +2305,12 @@ msgstr ""
#: ../src/terminal-window.c:3953
msgid "C_lose Window"
msgstr "_Затваряне на този прозорец"
@@ -788,11 +803,8 @@ index 9a4f32e4..24157396 100644
+
+msgid "Set Title"
+msgstr "Задаване на заглавие"
-+
-+msgid "_Set Title…"
-+msgstr "_Задаване на заглавие…"
diff --git a/po/bn.po b/po/bn.po
-index 4906009c..f97d43b0 100644
+index 4906009cf46f..f97d43b0e515 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1217,8 +1217,8 @@ msgid "_Base on:"
@@ -818,7 +830,7 @@ index 4906009c..f97d43b0 100644
#: ../src/profile-preferences.glade.h:77
msgid "_Unlimited"
diff --git a/po/bn_IN.po b/po/bn_IN.po
-index f196e508..b5b5e95b 100644
+index f196e5084797..0ac3caf77e73 100644
--- a/po/bn_IN.po
+++ b/po/bn_IN.po
@@ -2296,8 +2296,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
@@ -832,17 +844,6 @@ index f196e508..b5b5e95b 100644
#~ msgid "Switch to Tab 2"
#~ msgstr "ট্যাব ২-এ পরিবর্তন করুন"
-@@ -2344,8 +2344,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
- #~ msgid "_Close Window"
- #~ msgstr "উইন্ডো বন্ধ করুন (_C)"
-
--#~ msgid "_Set Title…"
--#~ msgstr "শিরোনাম নির্ধারণ করুন...(_S)"
-+msgid "_Set Title…"
-+msgstr "শিরোনাম নির্ধারণ করুন...(_S)"
-
- #~ msgid "_Next Tab"
- #~ msgstr "পরবর্তী ট্যাব (_N)"
@@ -2356,5 +2356,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
#~ msgid "_Input Methods"
#~ msgstr "ইনপুট পদ্ধতি (_I)"
@@ -855,7 +856,7 @@ index f196e508..b5b5e95b 100644
+msgid "Transparent background"
+msgstr "স্বচ্চ পটভূমি "
diff --git a/po/br.po b/po/br.po
-index e16ea07d..f4cbe857 100644
+index e16ea07dfc21..f4cbe857d5ca 100644
--- a/po/br.po
+++ b/po/br.po
@@ -958,8 +958,8 @@ msgid "_Base on:"
@@ -879,7 +880,7 @@ index e16ea07d..f4cbe857 100644
#: ../src/profile-preferences.glade.h:74
diff --git a/po/bs.po b/po/bs.po
-index 49e71085..7ab2207b 100644
+index 49e710859ac9..8703552984b1 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
@@ -893,7 +894,7 @@ index 49e71085..7ab2207b 100644
#: ../src/org.gnome.Terminal.gschema.xml.h:78
msgid "Keyboard shortcut to make font normal-size"
msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
-@@ -2054,3 +2058,12 @@ msgstr ""
+@@ -2054,3 +2058,9 @@ msgstr ""
#: ../src/terminal-window.c:3652
msgid "C_lose Window"
msgstr "_Zatvori prozor"
@@ -903,15 +904,11 @@ index 49e71085..7ab2207b 100644
+
+msgid "Set Title"
+msgstr "Postavi naslov"
-+
-+msgid "_Set Title..."
-+msgstr "_Postavi naslov..."
-\ No newline at end of file
diff --git a/po/ca.po b/po/ca.po
-index fdd3a5ae..61b2f560 100644
+index fdd3a5ae5982..94f69c2cde31 100644
--- a/po/ca.po
+++ b/po/ca.po
-@@ -2333,3 +2333,18 @@ msgstr ""
+@@ -2333,3 +2333,16 @@ msgstr ""
#: ../src/terminal-window.c:3353
msgid "C_lose Window"
msgstr "Tanca la _finestra"
@@ -928,13 +925,11 @@ index fdd3a5ae..61b2f560 100644
+msgid "Set Title"
+msgstr "Estableix el títol"
+
-+msgid "_Set Title…"
-+msgstr "_Estableix el títol…"
diff --git a/po/ca@valencia.po b/po/ca@valencia.po
-index a6e8fb42..b34cbfd8 100644
+index a6e8fb4250dc..c9ed8508228d 100644
--- a/po/ca@valencia.po
+++ b/po/ca@valencia.po
-@@ -2357,3 +2357,18 @@ msgstr "Tanca la _finestra"
+@@ -2357,3 +2357,15 @@ msgstr "Tanca la _finestra"
#~ msgid "Whether to use a dark theme variant"
#~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
@@ -950,14 +945,11 @@ index a6e8fb42..b34cbfd8 100644
+
+msgid "Set Title"
+msgstr "Estableix el títol"
-+
-+msgid "_Set Title…"
-+msgstr "_Estableix el títol…"
diff --git a/po/cs.po b/po/cs.po
-index ee33ed2a..8d7a1564 100644
+index ee33ed2a0103..2acf2aa99656 100644
--- a/po/cs.po
+++ b/po/cs.po
-@@ -2310,3 +2310,18 @@ msgstr ""
+@@ -2310,3 +2310,15 @@ msgstr ""
#: ../src/terminal-window.c:3353
msgid "C_lose Window"
msgstr "_Zavřít okno"
@@ -973,11 +965,8 @@ index ee33ed2a..8d7a1564 100644
+
+msgid "Set Title"
+msgstr "Nastavit záhlaví"
-+
-+msgid "_Set Title…"
-+msgstr "Na_stavit záhlaví…"
diff --git a/po/cy.po b/po/cy.po
-index 644df823..cd862feb 100644
+index 644df82363f1..cd862feb50c0 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -1167,8 +1167,8 @@ msgid "_Base on:"
@@ -1003,10 +992,10 @@ index 644df823..cd862feb 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 65cfb20d..6ac445f7 100644
+index 65cfb20d9ad3..8c5c97c7465a 100644
--- a/po/da.po
+++ b/po/da.po
-@@ -2325,3 +2325,17 @@ msgstr ""
+@@ -2325,3 +2325,14 @@ msgstr ""
msgid "C_lose Window"
msgstr "_Luk vindue"
@@ -1019,16 +1008,13 @@ index 65cfb20d..6ac445f7 100644
+msgid "Set Title"
+msgstr "Sæt titel"
+
-+msgid "_Set Title…"
-+msgstr "_Sæt titel …"
-+
+msgid "Transparent background"
+msgstr "Gennemsigtig baggrund"
diff --git a/po/de.po b/po/de.po
-index 79f42cfe..1d498568 100644
+index 79f42cfe7f4c..8d0bfcd53fe2 100644
--- a/po/de.po
+++ b/po/de.po
-@@ -2380,3 +2380,18 @@ msgstr ""
+@@ -2380,3 +2380,15 @@ msgstr ""
#: ../src/terminal-window.c:3354
msgid "C_lose Window"
msgstr "Fenster _schließen"
@@ -1042,13 +1028,10 @@ index 79f42cfe..1d498568 100644
+msgid "Set Title"
+msgstr "Titel festlegen"
+
-+msgid "_Set Title…"
-+msgstr "T_itel festlegen …"
-+
+msgid "Transparent background"
+msgstr "Transparenter Hintergrund"
diff --git a/po/dz.po b/po/dz.po
-index d97e6102..a768fe4a 100644
+index d97e6102b850..a768fe4adc54 100644
--- a/po/dz.po
+++ b/po/dz.po
@@ -1255,8 +1255,8 @@ msgid "_Base on:"
@@ -1074,10 +1057,10 @@ index d97e6102..a768fe4a 100644
#: ../src/profile-preferences.glade.h:78
#, fuzzy
diff --git a/po/el.po b/po/el.po
-index d4d2e487..0f901ad6 100644
+index d4d2e487df32..eebd8e602b17 100644
--- a/po/el.po
+++ b/po/el.po
-@@ -2484,23 +2484,23 @@ msgstr "Κ_λείσιμο παραθύρου"
+@@ -2484,17 +2484,17 @@ msgstr "Κ_λείσιμο παραθύρου"
#~ msgid "Default size:"
#~ msgstr "Προεπιλεγμένο μέγεθος:"
@@ -1101,14 +1084,6 @@ index d4d2e487..0f901ad6 100644
#~ msgid "Current Locale"
#~ msgstr "Τρέχουσα τοπική ρύθμιση"
-
--#~ msgid "_Set Title…"
--#~ msgstr "_Ορισμός τίτλου…"
-+msgid "_Set Title…"
-+msgstr "_Ορισμός τίτλου…"
-
- #~ msgid "_Next Tab"
- #~ msgstr "_Επόμενη καρτέλα"
@@ -2559,3 +2559,6 @@ msgstr "Κ_λείσιμο παραθύρου"
#~ msgid "_Input Methods"
@@ -1117,7 +1092,7 @@ index d4d2e487..0f901ad6 100644
+msgid "Transparent background"
+msgstr "Διάφανο παρασκήνιο"
diff --git a/po/en@shaw.po b/po/en@shaw.po
-index 82b2d534..28f5dc02 100644
+index 82b2d53401b2..28f5dc02575b 100644
--- a/po/en@shaw.po
+++ b/po/en@shaw.po
@@ -1212,8 +1212,8 @@ msgid "_Base on:"
@@ -1143,7 +1118,7 @@ index 82b2d534..28f5dc02 100644
#: ../src/profile-preferences.glade.h:79
msgid "_Underline color:"
diff --git a/po/en_CA.po b/po/en_CA.po
-index 6c9e0cd7..ffff9caa 100644
+index 6c9e0cd73d63..db4aa891dd45 100644
--- a/po/en_CA.po
+++ b/po/en_CA.po
@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
@@ -1168,32 +1143,11 @@ index 6c9e0cd7..ffff9caa 100644
#: ../src/gnome-terminal.glade2.h:87
msgid "_Update login records when command is launched"
-@@ -2219,8 +2219,8 @@ msgid "Change _Profile"
- msgstr "Change _Profile"
-
- #: ../src/terminal-window.c:981
--msgid "_Set Title..."
--msgstr "_Set Title..."
-+msgid "_Set Title…"
-+msgstr "_Set Title…"
-
- #: ../src/terminal-window.c:988
- msgid "Set _Character Encoding"
diff --git a/po/en_GB.po b/po/en_GB.po
-index c9999e20..232712d9 100644
+index c9999e204f33..dfbff85bf907 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
-@@ -1645,6 +1645,9 @@ msgstr "C_lose Tab"
- msgid "_Close Window"
- msgstr "_Close Window"
-
-+msgid "_Set Title…"
-+msgstr "_Set Title…"
-+
- #: ../src/terminal-menubar.ui.in.h:8
- msgid "_Edit"
- msgstr "_Edit"
-@@ -2796,8 +2799,8 @@ msgstr "C_lose Window"
+@@ -2796,8 +2796,8 @@ msgstr "C_lose Window"
#~ msgid "Default size:"
#~ msgstr "Default size:"
@@ -1204,7 +1158,7 @@ index c9999e20..232712d9 100644
#~ msgid "When terminal commands set their o_wn titles:"
#~ msgstr "When terminal commands set their o_wn titles:"
-@@ -2814,8 +2817,8 @@ msgstr "C_lose Window"
+@@ -2814,8 +2814,8 @@ msgstr "C_lose Window"
#~ msgid "_Unlimited"
#~ msgstr "_Unlimited"
@@ -1215,7 +1169,7 @@ index c9999e20..232712d9 100644
#~ msgid "Switch to Tab 3"
#~ msgstr "Switch to Tab 3"
-@@ -2856,8 +2859,8 @@ msgstr "C_lose Window"
+@@ -2856,8 +2856,8 @@ msgstr "C_lose Window"
#~ msgid "_Input Methods"
#~ msgstr "_Input Methods"
@@ -1226,7 +1180,7 @@ index c9999e20..232712d9 100644
#~ msgid "Add or Remove Terminal Encodings"
#~ msgstr "Add or Remove Terminal Encodings"
-@@ -3552,8 +3555,8 @@ msgstr "C_lose Window"
+@@ -3552,8 +3552,8 @@ msgstr "C_lose Window"
#~ msgid "Background image _scrolls"
#~ msgstr "Background image _scrolls"
@@ -1238,7 +1192,7 @@ index c9999e20..232712d9 100644
#~ msgid "S_hade transparent or image background:"
#~ msgstr "S_hade transparent or image background:"
diff --git a/po/eo.po b/po/eo.po
-index 567c08dc..c538c13f 100644
+index 567c08dc1da8..c59f57c6a8d5 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -2215,8 +2215,8 @@ msgstr "_Fermi la fenestron"
@@ -1252,17 +1206,6 @@ index 567c08dc..c538c13f 100644
#~ msgid "Switch to Tab 2"
#~ msgstr "Ŝalti al langeto 2"
-@@ -2287,8 +2287,8 @@ msgstr "_Fermi la fenestron"
- #~ msgid "_Find..."
- #~ msgstr "_Serĉi..."
-
--#~ msgid "_Set Title…"
--#~ msgstr "_Agordi titolon…"
-+msgid "_Set Title…"
-+msgstr "_Agordi titolon…"
-
- #~ msgid "_Next Tab"
- #~ msgstr "_Sekva langeto"
@@ -2299,8 +2299,8 @@ msgstr "_Fermi la fenestron"
#~ msgid "_Input Methods"
#~ msgstr "_Enigmetodoj"
@@ -1275,10 +1218,10 @@ index 567c08dc..c538c13f 100644
#~ msgid "On the left side"
#~ msgstr "Maldekstre"
diff --git a/po/es.po b/po/es.po
-index 142347b3..257e6c2e 100644
+index 142347b3720a..9325d95de22f 100644
--- a/po/es.po
+++ b/po/es.po
-@@ -2741,17 +2741,20 @@ msgstr "_Cerrar ventana"
+@@ -2741,17 +2741,17 @@ msgstr "_Cerrar ventana"
#~ msgid "Default size:"
#~ msgstr "Tamaño predeterminado:"
@@ -1299,13 +1242,10 @@ index 142347b3..257e6c2e 100644
-#~ msgstr "Establecer título"
+msgid "Set Title"
+msgstr "Establecer título"
-+
-+msgid "_Set Title…"
-+msgstr "E_stablecer título…"
#~ msgid "Current Locale"
#~ msgstr "Configuración regional actual"
-@@ -3577,8 +3580,8 @@ msgstr "_Cerrar ventana"
+@@ -3577,8 +3577,8 @@ msgstr "_Cerrar ventana"
#~ msgid "_Solid color"
#~ msgstr "Color _sólido"
@@ -1317,7 +1257,7 @@ index 142347b3..257e6c2e 100644
#~ msgid "No such profile \"%s\", using default profile\n"
#~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
diff --git a/po/et.po b/po/et.po
-index 4b1c2a7c..77076116 100644
+index 4b1c2a7c67e4..770761168806 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
@@ -1328,7 +1268,7 @@ index 4b1c2a7c..77076116 100644
+msgid "Transparent background"
+msgstr "Läbipaistev taust"
diff --git a/po/eu.po b/po/eu.po
-index f3aab787..315bb804 100644
+index f3aab7879a6f..543a121f6aac 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -2411,11 +2411,11 @@ msgstr "It_xi leihoa"
@@ -1347,7 +1287,7 @@ index f3aab787..315bb804 100644
#~ msgid "Title and Command"
#~ msgstr "Titulua eta komandoa"
-@@ -2423,14 +2423,14 @@ msgstr "It_xi leihoa"
+@@ -2423,8 +2423,8 @@ msgstr "It_xi leihoa"
#~ msgid "_Unlimited"
#~ msgstr "_Mugagabea"
@@ -1358,14 +1298,6 @@ index f3aab787..315bb804 100644
#~ msgid "Current Locale"
#~ msgstr "Uneko hizkuntza-ezarpena"
-
--#~ msgid "_Set Title…"
--#~ msgstr "_Ezarri titulua..."
-+msgid "_Set Title…"
-+msgstr "_Ezarri titulua..."
-
- #~ msgid "What to do with dynamic title"
- #~ msgstr "Zer egin titulu dinamikoarekin"
@@ -3211,8 +3211,8 @@ msgstr "It_xi leihoa"
#~ msgid "_Solid color"
#~ msgstr "_Kolore solidoa"
@@ -1378,7 +1310,7 @@ index f3aab787..315bb804 100644
#~ msgid ""
#~ "You already have a profile called “%s”. Do you want to create another "
diff --git a/po/fa.po b/po/fa.po
-index 8b0ca26e..8a48e03f 100644
+index 8b0ca26eebe5..6079d0c40a1d 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -2402,8 +2402,8 @@ msgstr "_بستن پنجره"
@@ -1403,17 +1335,6 @@ index 8b0ca26e..8a48e03f 100644
#~ msgid "Switch to Tab 2"
#~ msgstr "تعویض به زبانه‌ی ۲"
-@@ -2474,8 +2474,8 @@ msgstr "_بستن پنجره"
- #~ msgid "_Close Window"
- #~ msgstr "بس_تن پنجره"
-
--#~ msgid "_Set Title…"
--#~ msgstr "_تنظیم عنوان..."
-+msgid "_Set Title…"
-+msgstr "_تنظیم عنوان..."
-
- #~ msgid "_Next Tab"
- #~ msgstr "زبانه‌ی _بعدی"
@@ -2486,5 +2486,8 @@ msgstr "_بستن پنجره"
#~ msgid "_Input Methods"
#~ msgstr "روش‌های _ورودی"
@@ -1426,10 +1347,10 @@ index 8b0ca26e..8a48e03f 100644
+msgid "Transparent background"
+msgstr "پس‌زمینه‌ی شفاف"
diff --git a/po/fi.po b/po/fi.po
-index e284b406..2acd3542 100644
+index e284b406f040..6e7f402af7bd 100644
--- a/po/fi.po
+++ b/po/fi.po
-@@ -2589,9 +2589,24 @@ 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"
@@ -1451,14 +1372,11 @@ index e284b406..2acd3542 100644
+
+msgid "Set Title"
+msgstr "Aseta otsikko"
-+
-+msgid "_Set Title…"
-+msgstr "Aseta otsikko…"
diff --git a/po/fr.po b/po/fr.po
-index 87a8e0ff..201fdd76 100644
+index 87a8e0ff46d4..2eacb4584f32 100644
--- a/po/fr.po
+++ b/po/fr.po
-@@ -2591,3 +2591,18 @@ 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"
@@ -1474,34 +1392,31 @@ index 87a8e0ff..201fdd76 100644
+
+msgid "Set Title"
+msgstr "Définir le titre"
-+
-+msgid "_Set Title…"
-+msgstr "_Modifier le titre…"
diff --git a/po/fur.po b/po/fur.po
-index 3f5429cf..ab3380cb 100644
+index 3f5429cfecd8..e637a6c0dc5f 100644
--- a/po/fur.po
+++ b/po/fur.po
-@@ -432,6 +432,10 @@ msgstr "Non e dimension di un caratar Pango"
- msgid "The code sequence the Backspace key generates"
- msgstr "La secuence di codiç gjenerade dal boton Backspace"
+@@ -454,6 +454,10 @@ msgstr ""
+ msgid "Which encoding to use"
+ msgstr "Codifiche di doprâ"
+#: ../src/gnome-terminal.glade2.h:86
+msgid "Transparent background"
+msgstr "Fondâl trasparent"
+
- #: ../src/org.gnome.Terminal.gschema.xml.h:63
- msgid "The code sequence the Delete key generates"
- msgstr "La secuence di codiç gjenerade dal boton Canc"
-@@ -1226,6 +1230,9 @@ msgstr "Stampe"
- msgid "Close Tab"
- msgstr "Siere schede"
+ #: ../src/org.gnome.Terminal.gschema.xml.h:68
+ msgid ""
+ "Whether ambiguous-width characters are narrow or wide when using UTF-8 "
+@@ -3371,6 +3375,9 @@ msgstr "_Siere barcon"
+ #~ msgid "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."
+msgid "Set Title"
+msgstr "Imposte titul"
+
- #: ../src/terminal-accels.c:136
- msgid "Close Window"
- msgstr "Siere barcon"
+ #~ msgid "Switch to Tab 3"
+ #~ msgstr "Passe a la schede 3"
+
@@ -3426,8 +3433,8 @@ msgstr "_Siere barcon"
#~ msgid "_Input Methods"
#~ msgstr "_Cemût inserî test"
@@ -1513,19 +1428,8 @@ index 3f5429cf..ab3380cb 100644
#~ msgid ""
#~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
-@@ -3489,8 +3496,8 @@ msgstr "_Siere barcon"
- #~ msgid "Show Menu_bar"
- #~ msgstr "Mostre ba_re di menu"
-
--#~ msgid "_Set Title..."
--#~ msgstr "_Imposte titul..."
-+msgid "_Set Title…"
-+msgstr "_Imposte titul…"
-
- #~ msgid "Close all tabs?"
- #~ msgstr "Sierâ dutis lis schedis?"
diff --git a/po/ga.po b/po/ga.po
-index 93d5fa9d..feb87dce 100644
+index 93d5fa9d1481..feb87dce3d6b 100644
--- a/po/ga.po
+++ b/po/ga.po
@@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
@@ -1536,10 +1440,10 @@ index 93d5fa9d..feb87dce 100644
+msgid "Transparent background"
+msgstr "Cúlra trédhearcach"
diff --git a/po/gl.po b/po/gl.po
-index 4ae0f6a0..1806cdec 100644
+index 4ae0f6a0935c..fa643dc89659 100644
--- a/po/gl.po
+++ b/po/gl.po
-@@ -2678,17 +2678,20 @@ msgstr "P_echar a xanela"
+@@ -2678,17 +2678,17 @@ msgstr "P_echar a xanela"
#~ msgid "Default size:"
#~ msgstr "Tamaño predeterminado:"
@@ -1560,13 +1464,10 @@ index 4ae0f6a0..1806cdec 100644
-#~ msgstr "Definir o título"
+msgid "Set Title"
+msgstr "Definir o título"
-+
-+msgid "_Set Title…"
-+msgstr "_Definir o título…"
#~ msgid "Current Locale"
#~ msgstr "Configuración rexional actual"
-@@ -3502,8 +3505,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"
@@ -1578,7 +1479,7 @@ index 4ae0f6a0..1806cdec 100644
#~ 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 76b459cf..47e41333 100644
+index 76b459cf8dc5..485beeac98b7 100644
--- a/po/gu.po
+++ b/po/gu.po
@@ -2155,8 +2155,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
@@ -1603,17 +1504,6 @@ index 76b459cf..47e41333 100644
#~ msgid "The shortcut key “%s” is already bound to the “%s” action"
#~ msgstr "ટુંકાણ કી “%s“ એ પહેલાથી ક્રિયા “%s“ સાથે બંધાયેલી છે"
-@@ -2191,8 +2191,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
- #~ msgid "_Close Window"
- #~ msgstr "વિન્ડો બંધ કરો (_C)"
-
--#~ msgid "_Set Title…"
--#~ msgstr "શીર્ષકની ગોઠવણી કરો (_S)..."
-+msgid "_Set Title…"
-+msgstr "શીર્ષકની ગોઠવણી કરો (_S)..."
-
- #~ msgid "_Next Tab"
- #~ msgstr "પછીનું ટેબ (_N)"
@@ -2203,8 +2203,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
#~ msgid "_Input Methods"
#~ msgstr "ઈનપુટ માટેની પધ્ધિતિઓ (_I)"
@@ -1637,10 +1527,10 @@ index 76b459cf..47e41333 100644
#~ msgid "No such profile \"%s\", using default profile\n"
#~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
diff --git a/po/he.po b/po/he.po
-index 57cb2d0d..058d9e97 100644
+index 57cb2d0d110f..efe8fa100074 100644
--- a/po/he.po
+++ b/po/he.po
-@@ -2333,23 +2333,23 @@ msgstr "סגירת ה_חלון"
+@@ -2333,17 +2333,17 @@ msgstr "סגירת ה_חלון"
#~ msgid "Default size:"
#~ msgstr "גודל בררת מחדל:"
@@ -1664,14 +1554,6 @@ index 57cb2d0d..058d9e97 100644
#~ msgid "Current Locale"
#~ msgstr "השפה הנוכחית"
-
--#~ msgid "_Set Title…"
--#~ msgstr "הגדרת _כותרת..."
-+msgid "_Set Title…"
-+msgstr "הגדרת _כותרת..."
-
- #~ msgid "_Next Tab"
- #~ msgstr "הלשונית ה_באה"
@@ -3194,8 +3194,8 @@ msgstr "סגירת ה_חלון"
#~ msgid "_Solid color"
#~ msgstr "צבע _אחיד"
@@ -1684,7 +1566,7 @@ index 57cb2d0d..058d9e97 100644
#~ msgid "No such profile \"%s\", using default profile\n"
#~ msgstr "No such profile \"%s\", using default profile\n"
diff --git a/po/hi.po b/po/hi.po
-index 2d7dc5b1..acbff9a1 100644
+index 2d7dc5b14008..8d3d0529df61 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -2267,9 +2267,8 @@ msgstr "विंडो बंद करें (_l)"
@@ -1710,17 +1592,6 @@ index 2d7dc5b1..acbff9a1 100644
#~ msgid "Switch to Tab 2"
#~ msgstr "टैब 2 पर जाएँ"
-@@ -2337,8 +2336,8 @@ msgstr "विंडो बंद करें (_l)"
- #~ msgid "_Close Window"
- #~ msgstr "विंडो बंद करें (_C)"
-
--#~ msgid "_Set Title…"
--#~ msgstr "शीर्षक नियत करें (_S)"
-+msgid "_Set Title…"
-+msgstr "शीर्षक नियत करें (_S)"
-
- #~ msgid "_Next Tab"
- #~ msgstr "अगला टेब (_N)"
@@ -2349,8 +2348,8 @@ msgstr "विंडो बंद करें (_l)"
#~ msgid "_Input Methods"
#~ msgstr "इनपुट विधियाँ (_I)"
@@ -1744,27 +1615,45 @@ index 2d7dc5b1..acbff9a1 100644
#~ msgid "S/Key Challenge Response"
#~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
diff --git a/po/hr.po b/po/hr.po
-index aec2eaa8..ed217a3f 100644
+index aec2eaa8bac1..207b5c774b32 100644
--- a/po/hr.po
+++ b/po/hr.po
-@@ -2565,3 +2565,15 @@ msgstr "_Zatvori prozor"
+@@ -2565,3 +2565,13 @@ msgstr "_Zatvori prozor"
#~ msgid "Use transparency from system theme"
#~ msgstr "Koristi prozirnost iz teme sustava"
+
++#: ../src/profile-preferences.glade.h:69
+msgid "Transparent background"
+msgstr "Prozirna pozadina"
+
+msgid "_Title:"
+msgstr "_Naslov:"
-+
++
+msgid "Set Title"
+msgstr "Postavi naslov"
-+
-+msgid "_Set Title…"
-+msgstr "Postavi naslov"
+diff --git a/po/hu.po b/po/hu.po
+index 401ae619d5d2..b6e96230111b 100644
+--- a/po/hu.po
++++ b/po/hu.po
+@@ -2370,3 +2370,15 @@ msgstr "_Ablak bezárása"
+
+ #~ msgid "_Profile Preferences"
+ #~ msgstr "_Profil beállításai"
++
++msgid "Title"
++msgstr "Cím"
++
++msgid "_Title:"
++msgstr "_Cím:"
++
++msgid "Set Title"
++msgstr "Cím beállítása"
++
++msgid "Transparent background"
++msgstr "Áttetsző háttér"
diff --git a/po/hy.po b/po/hy.po
-index aaf2d9b2..4d466f16 100644
+index aaf2d9b292da..4d466f164420 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -757,8 +757,8 @@ msgid "_Base on:"
@@ -1790,10 +1679,10 @@ index aaf2d9b2..4d466f16 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 9198218c..d5250016 100644
+index 9198218c5aaa..9f2fbd0c9d4c 100644
--- a/po/id.po
+++ b/po/id.po
-@@ -2548,3 +2548,18 @@ msgstr "Tutup Jende_la"
+@@ -2548,3 +2548,15 @@ msgstr "Tutup Jende_la"
#~ msgid "_Add or Remove…"
#~ msgstr "T_ambah atau Hapus…"
@@ -1809,14 +1698,11 @@ index 9198218c..d5250016 100644
+
+msgid "Set Title"
+msgstr "Atur Judul"
-+
-+msgid "_Set Title…"
-+msgstr "_Atur Judul…"
diff --git a/po/it.po b/po/it.po
-index 63266720..1ac3d221 100644
+index 632667207c17..2cd93716f4f9 100644
--- a/po/it.po
+++ b/po/it.po
-@@ -2348,3 +2348,18 @@ msgstr ""
+@@ -2348,3 +2348,15 @@ msgstr ""
#: ../src/terminal-window.c:3354
msgid "C_lose Window"
msgstr "Chiudi _finestra"
@@ -1832,14 +1718,11 @@ index 63266720..1ac3d221 100644
+
+msgid "Set Title"
+msgstr "Imposta titolo"
-+
-+msgid "_Set Title…"
-+msgstr "_Imposta titolo…"
diff --git a/po/ja.po b/po/ja.po
-index 9a18d3db..e46a3730 100644
+index 9a18d3db624f..bbfd18e6ab24 100644
--- a/po/ja.po
+++ b/po/ja.po
-@@ -2096,3 +2096,18 @@ msgstr "この端末には未だ実行中のプロセスが存在しています
+@@ -2096,3 +2096,15 @@ msgstr "この端末には未だ実行中のプロセスが存在しています
#: ../src/terminal-window.c:3953
msgid "C_lose Window"
msgstr "ウィンドウを閉じる(_L)"
@@ -1855,11 +1738,8 @@ index 9a18d3db..e46a3730 100644
+
+msgid "Set Title"
+msgstr "タイトルを設定する"
-+
-+msgid "_Set Title…"
-+msgstr "タイトルを指定する(_S)…"
diff --git a/po/ka.po b/po/ka.po
-index 2a0bc91f..f87c4496 100644
+index 2a0bc91fad40..c289e30eb4fa 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
@@ -1882,22 +1762,11 @@ index 2a0bc91f..f87c4496 100644
msgstr "გამჭირვალე"
#: ../src/gnome-terminal.glade2.h:87
-@@ -2193,8 +2193,8 @@ msgid "Change _Profile"
- msgstr "პროფილის _შეცვლა"
-
- #: ../src/terminal-window.c:981
--msgid "_Set Title..."
--msgstr "_სათაურის მითითება..."
-+msgid "_Set Title…"
-+msgstr "_სათაურის მითითება…"
-
- #: ../src/terminal-window.c:988
- msgid "Set _Character Encoding"
diff --git a/po/kk.po b/po/kk.po
-index 2811b7ec..761cdcdd 100644
+index 2811b7ec6239..d4239e5d12c5 100644
--- a/po/kk.po
+++ b/po/kk.po
-@@ -2547,3 +2547,18 @@ msgstr "Терезені жа_бу"
+@@ -2547,3 +2547,15 @@ msgstr "Терезені жа_бу"
#~ msgid "Be quiet"
#~ msgstr "Тыныш болу"
@@ -1913,11 +1782,8 @@ index 2811b7ec..761cdcdd 100644
+
+msgid "Set Title"
+msgstr "Атауын орнату"
-+
-+msgid "_Set Title…"
-+msgstr "Атауын ор_нату…"
diff --git a/po/km.po b/po/km.po
-index 352897d2..b6db9394 100644
+index 352897d2963b..b6db9394a307 100644
--- a/po/km.po
+++ b/po/km.po
@@ -2909,8 +2909,8 @@ msgstr "បិទ​បង្អួច"
@@ -1932,7 +1798,7 @@ index 352897d2..b6db9394 100644
#~ msgid "S_hade transparent or image background:"
#~ msgstr "ដាក់​ស្រមោល​ផ្ទៃខាងក្រោយ​ថ្លា ឬ​ផ្ទៃខាងក្រោយ​​រូបភាព ៖"
diff --git a/po/kn.po b/po/kn.po
-index c887f88a..3f3d7fe3 100644
+index c887f88a2c87..0fc1c3139258 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -2261,8 +2261,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
@@ -1957,17 +1823,6 @@ index c887f88a..3f3d7fe3 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)"
@@ -1980,10 +1835,10 @@ index c887f88a..3f3d7fe3 100644
+msgid "Transparent background"
+msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
diff --git a/po/ko.po b/po/ko.po
-index d1be8c3f..08ca6e8c 100644
+index d1be8c3fdab8..02de5aa11be1 100644
--- a/po/ko.po
+++ b/po/ko.po
-@@ -2292,3 +2292,18 @@ msgstr "창 닫기(_L)"
+@@ -2292,3 +2292,15 @@ msgstr "창 닫기(_L)"
#~ msgid "Verbose output"
#~ msgstr "많이 출력"
@@ -1999,11 +1854,8 @@ index d1be8c3f..08ca6e8c 100644
+
+msgid "Set Title"
+msgstr "제목 설정"
-+
-+msgid "_Set Title…"
-+msgstr "제목 설정(_S)…"
diff --git a/po/ku.po b/po/ku.po
-index bc2bb7f0..d2a83a00 100644
+index bc2bb7f03de4..d2a83a007097 100644
--- a/po/ku.po
+++ b/po/ku.po
@@ -223,8 +223,8 @@ msgid "<b>Background</b>"
@@ -2029,10 +1881,10 @@ index bc2bb7f0..d2a83a00 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 e8b7622e..ddb65088 100644
+index e8b7622e5d46..c6fe38021b6a 100644
--- a/po/lt.po
+++ b/po/lt.po
-@@ -2571,3 +2571,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ą"
@@ -2048,14 +1900,11 @@ index e8b7622e..ddb65088 100644
+
+msgid "Set Title"
+msgstr "Nustatyti pavadinimą"
-+
-+msgid "_Set Title…"
-+msgstr "_Nustatyti pavadinimą…"
diff --git a/po/lv.po b/po/lv.po
-index 47d9e75b..7459401d 100644
+index 47d9e75b1ee8..a8dad3bc0d6b 100644
--- a/po/lv.po
+++ b/po/lv.po
-@@ -2578,3 +2578,22 @@ msgstr "Aizvērt _logu"
+@@ -2578,3 +2578,19 @@ msgstr "Aizvērt _logu"
#~ msgid "_Add or Remove…"
#~ msgstr "_Pievienot vai izņemt…"
@@ -2075,11 +1924,8 @@ index 47d9e75b..7459401d 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 715d0b9e..0f31634e 100644
+index 715d0b9e1c82..0f31634e4f2e 100644
--- a/po/mai.po
+++ b/po/mai.po
@@ -1044,8 +1044,8 @@ msgid "_Base on:"
@@ -2105,7 +1951,7 @@ index 715d0b9e..0f31634e 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 99fa0f5e..2ac0152b 100644
+index 99fa0f5e4059..a216602569af 100644
--- a/po/mg.po
+++ b/po/mg.po
@@ -220,8 +220,8 @@ msgid "<b>Background</b>"
@@ -2130,19 +1976,8 @@ index 99fa0f5e..2ac0152b 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 4fe43192..a5a874b4 100644
+index 4fe43192fe57..a5a874b49c59 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -863,8 +863,8 @@ msgid "_Base on:"
@@ -2168,7 +2003,7 @@ index 4fe43192..a5a874b4 100644
#: ../src/profile-preferences.glade.h:78
#| msgid "_Text color:"
diff --git a/po/ml.po b/po/ml.po
-index a23f4cc4..49caa9ef 100644
+index a23f4cc4f1ae..49caa9efe94f 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -2461,3 +2461,6 @@ msgstr "ജാലകം അടയ്ക്കുക (_l)"
@@ -2179,7 +2014,7 @@ index a23f4cc4..49caa9ef 100644
+msgid "Transparent background"
+msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
diff --git a/po/mn.po b/po/mn.po
-index 2f9d8607..e67c1792 100644
+index 2f9d86072d1c..09c4437d10f9 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -217,8 +217,8 @@ msgid "<b>Background</b>"
@@ -2204,19 +2039,8 @@ index 2f9d8607..e67c1792 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 61997daf..406d26b5 100644
+index 61997dafbd03..9c7dc77abd22 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा (_l)"
@@ -2241,17 +2065,6 @@ index 61997daf..406d26b5 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)"
@@ -2275,7 +2088,7 @@ index 61997daf..406d26b5 100644
#~ msgid "Disabled"
#~ msgstr "अकार्यान्वीतित"
diff --git a/po/ms.po b/po/ms.po
-index f2ebd485..4029548e 100644
+index f2ebd4851d3b..f3d44c9c6294 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -227,8 +227,8 @@ msgstr "<b>LatarBelakang</b>"
@@ -2300,22 +2113,11 @@ index f2ebd485..4029548e 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 53da54ab..ca11abd6 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"
@@ -2331,11 +2133,8 @@ index 53da54ab..ca11abd6 100644
+
+msgid "Set Title"
+msgstr "Sett tittel"
-+
-+msgid "_Set Title…"
-+msgstr "_Sett tittel …"
diff --git a/po/nds.po b/po/nds.po
-index 82f930b1..d52fbd94 100644
+index 82f930b1cc0c..d52fbd94eb58 100644
--- a/po/nds.po
+++ b/po/nds.po
@@ -748,8 +748,8 @@ msgid "_Base on:"
@@ -2361,7 +2160,7 @@ index 82f930b1..d52fbd94 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 4fe16cc8..2a033b8c 100644
+index 4fe16cc88a9a..53fb89134be0 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
@@ -2397,22 +2196,11 @@ index 4fe16cc8..2a033b8c 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 d411dad7..5f1891d0 100644
+index d411dad7fa8d..710211ccb6fd 100644
--- a/po/nl.po
+++ b/po/nl.po
-@@ -2594,3 +2594,18 @@ msgstr "Venster sl_uiten"
+@@ -2594,3 +2594,15 @@ msgstr "Venster sl_uiten"
#~ msgid "_Add or Remove…"
#~ msgstr "_Toevoegen of verwijderen…"
@@ -2426,13 +2214,10 @@ index d411dad7..5f1891d0 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
-index 5aa43b11..f892290c 100644
+index 5aa43b113ed9..f892290c256f 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -1149,8 +1149,8 @@ msgid "_Base on:"
@@ -2458,7 +2243,7 @@ index 5aa43b11..f892290c 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 b1befba5..f51dffb0 100644
+index b1befba5b372..56d697a6828d 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -2549,8 +2549,8 @@ msgstr "Tampar _la fenèstra"
@@ -2472,17 +2257,6 @@ index b1befba5..f51dffb0 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"
@@ -2506,7 +2280,7 @@ index b1befba5..f51dffb0 100644
#~ msgid ""
#~ "A subset of possible encodings are presented in the Encoding submenu. "
diff --git a/po/or.po b/po/or.po
-index ec1e6bfb..218acd71 100644
+index ec1e6bfb9a28..218acd712df6 100644
--- a/po/or.po
+++ b/po/or.po
@@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
@@ -2521,7 +2295,7 @@ index ec1e6bfb..218acd71 100644
#~ msgid "S_hade transparent or image background:"
#~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
diff --git a/po/pa.po b/po/pa.po
-index f1abdb63..b10907dd 100644
+index f1abdb6306f6..3ceb7aa4df44 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -2449,10 +2449,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
@@ -2554,7 +2328,7 @@ index f1abdb63..b10907dd 100644
#~ msgid "Title and Command"
#~ msgstr "ਟਾਈਟਲ ਅਤੇ ਕਮਾਂਡ"
-@@ -2509,14 +2508,14 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
+@@ -2509,8 +2508,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
#~ msgid "_Unlimited"
#~ msgstr "ਬੇਅੰਤ(_U)"
@@ -2565,14 +2339,6 @@ index f1abdb63..b10907dd 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)"
@@ -2585,7 +2351,7 @@ index f1abdb63..b10907dd 100644
#~ msgid "S/Key Challenge Response"
#~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
diff --git a/po/ps.po b/po/ps.po
-index b25a2cb4..3855b2f3 100644
+index b25a2cb41712..3855b2f3423f 100644
--- a/po/ps.po
+++ b/po/ps.po
@@ -810,8 +810,8 @@ msgid "_Base on:"
@@ -2611,7 +2377,7 @@ index b25a2cb4..3855b2f3 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 5181419a..40eb8227 100644
+index 5181419ad973..3df37f6d5bc7 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -2360,11 +2360,11 @@ msgstr "Fechar jane_la"
@@ -2630,7 +2396,7 @@ index 5181419a..40eb8227 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"
@@ -2641,14 +2407,6 @@ index 5181419a..40eb8227 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"
@@ -2661,10 +2419,10 @@ index 5181419a..40eb8227 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 c40dba26..21b6ca5a 100644
+index c40dba26b08a..9be7eec414e9 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
-@@ -2687,17 +2687,20 @@ msgstr "_Fechar janela"
+@@ -2687,17 +2687,17 @@ msgstr "_Fechar janela"
#~ msgid "Default size:"
#~ msgstr "Tamanho padrão:"
@@ -2685,13 +2443,10 @@ index c40dba26..21b6ca5a 100644
-#~ msgstr "Definir título"
+msgid "Set Title"
+msgstr "Definir título"
-+
-+msgid "_Set Title…"
-+msgstr "Definir _título…"
#~ msgid "Current Locale"
#~ msgstr "Codificação atual"
-@@ -3323,3 +3326,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\""
@@ -2699,7 +2454,7 @@ index c40dba26..21b6ca5a 100644
+msgid "Transparent background"
+msgstr "Fundo transparente"
diff --git a/po/ro.po b/po/ro.po
-index acd25ab3..5bd7303e 100644
+index acd25ab33eca..5bd7303eb50c 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3412,8 +3412,8 @@ msgstr "Î_nchide fereastra"
@@ -2714,15 +2469,14 @@ index acd25ab3..5bd7303e 100644
#~ msgid "_Unlimited"
#~ msgstr "_Neliminat"
diff --git a/po/ru.po b/po/ru.po
-index fedc4d3e..7259e1d1 100644
+index fedc4d3ec51c..c08bffcb4d10 100644
--- a/po/ru.po
+++ b/po/ru.po
-@@ -2539,3 +2539,23 @@ msgstr "_Закрыть окно"
+@@ -2539,3 +2539,19 @@ msgstr "_Закрыть окно"
#~ msgid "_Add or Remove…"
#~ msgstr "_Добавить или удалить…"
+
-+
+msgid "Transparent background"
+msgstr "Прозрачный фон"
+
@@ -2738,12 +2492,8 @@ index fedc4d3e..7259e1d1 100644
+
+msgid "Set Title"
+msgstr "Установить заголовок"
-+
-+msgid "_Set Title…"
-+msgstr "_Установить заголовок…"
-\ No newline at end of file
diff --git a/po/rw.po b/po/rw.po
-index 012f64e3..5ff633f8 100644
+index 012f64e325c3..5ff633f8b3c2 100644
--- a/po/rw.po
+++ b/po/rw.po
@@ -749,7 +749,7 @@ msgstr "Ibara ry'Inyandiko..."
@@ -2764,7 +2514,7 @@ index 012f64e3..5ff633f8 100644
msgstr "Umutwe..."
diff --git a/po/si.po b/po/si.po
-index adca7d5a..adeea9e9 100644
+index adca7d5acba9..6379cee7f0a3 100644
--- a/po/si.po
+++ b/po/si.po
@@ -218,8 +218,8 @@ msgid "<b>Background</b>"
@@ -2789,22 +2539,11 @@ index adca7d5a..adeea9e9 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 d0282159..8198c8cb 100644
+index d0282159b459..01dd96a06939 100644
--- a/po/sk.po
+++ b/po/sk.po
-@@ -2916,3 +2916,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"
@@ -2820,14 +2559,11 @@ index d0282159..8198c8cb 100644
+
+msgid "Set Title"
+msgstr "Nastaviť titulok"
-+
-+msgid "_Set Title…"
-+msgstr "_Nastaviť titulok…"
diff --git a/po/sl.po b/po/sl.po
-index 2302966b..7a08ee9c 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:"
@@ -2851,14 +2587,6 @@ index 2302966b..7a08ee9c 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…"
@@ -2867,7 +2595,7 @@ index 2302966b..7a08ee9c 100644
+msgid "Transparent background"
+msgstr "Prosojno ozadje"
diff --git a/po/sq.po b/po/sq.po
-index 158f6cb1..a3494fb7 100644
+index 158f6cb167cc..a3494fb70bd6 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -225,8 +225,8 @@ msgid "<b>Background</b>"
@@ -2893,7 +2621,7 @@ index 158f6cb1..a3494fb7 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 8bf15f32..59283b6a 100644
+index 8bf15f3250a4..81a73722c616 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -2576,10 +2576,9 @@ msgstr "_Затвори прозор"
@@ -2926,7 +2654,7 @@ index 8bf15f32..59283b6a 100644
#~ msgid "Title and Command"
#~ msgstr "Наслов и наредба"
-@@ -2637,8 +2636,14 @@ msgstr "_Затвори прозор"
+@@ -2637,8 +2636,8 @@ msgstr "_Затвори прозор"
#~ msgid "_Unlimited"
#~ msgstr "_Неограничено"
@@ -2934,17 +2662,18 @@ index 8bf15f32..59283b6a 100644
-#~ msgstr "Постави наслов"
+msgid "Set Title"
+msgstr "Постави наслов"
-+
-+msgid "_Set Title…"
-+msgstr "Постави _наслов…"
-+
-+msgid "Transparent background"
-+msgstr "Провидна позадина"
#~ msgid "Current Locale"
#~ msgstr "Текући локалитет"
+@@ -2648,3 +2647,6 @@ msgstr "_Затвори прозор"
+
+ #~ msgid "Hidden"
+ #~ msgstr "Скривен"
++
++msgid "Transparent background"
++msgstr "Провидна позадина"
diff --git a/po/sr@latin.po b/po/sr@latin.po
-index 45dbad07..97f30456 100644
+index 45dbad07fba7..852c47cc6ee5 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -2576,10 +2576,9 @@ msgstr "_Zatvori prozor"
@@ -2977,7 +2706,7 @@ index 45dbad07..97f30456 100644
#~ msgid "Title and Command"
#~ msgstr "Naslov i naredba"
-@@ -2637,8 +2636,11 @@ msgstr "_Zatvori prozor"
+@@ -2637,8 +2636,8 @@ msgstr "_Zatvori prozor"
#~ msgid "_Unlimited"
#~ msgstr "_Neograničeno"
@@ -2985,14 +2714,18 @@ index 45dbad07..97f30456 100644
-#~ msgstr "Postavi naslov"
+msgid "Set Title"
+msgstr "Postavi naslov"
-+
-+msgid "Transparent background"
-+msgstr "Providna pozadina"
#~ msgid "Current Locale"
#~ msgstr "Tekući lokalitet"
+@@ -2648,3 +2647,6 @@ msgstr "_Zatvori prozor"
+
+ #~ msgid "Hidden"
+ #~ msgstr "Skriven"
++
++msgid "Transparent background"
++msgstr "Providna pozadina"
diff --git a/po/sv.po b/po/sv.po
-index 8560fde5..bd1030f5 100644
+index 8560fde55941..bd1030f519ab 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -2572,5 +2572,17 @@ msgstr "Stän_g fönster"
@@ -3014,7 +2747,7 @@ index 8560fde5..bd1030f5 100644
+msgid "_Set Title…"
+msgstr "A_nge titel..."
diff --git a/po/ta.po b/po/ta.po
-index 80aa2f68..afd335b0 100644
+index 80aa2f684eec..afd335b0faf0 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -2171,10 +2171,9 @@ msgstr "_l சாளரத்தை மூடவும்"
@@ -3081,7 +2814,7 @@ index 80aa2f68..afd335b0 100644
#~ msgid "No such profile \"%s\", using default profile\n"
#~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
diff --git a/po/te.po b/po/te.po
-index 82c0e0fc..0dd3d871 100644
+index 82c0e0fc8f54..0dd3d871f639 100644
--- a/po/te.po
+++ b/po/te.po
@@ -2055,10 +2055,9 @@ msgstr "కిటికీని మూసివేయి (_l)"
@@ -3145,7 +2878,7 @@ index 82c0e0fc..0dd3d871 100644
#~ msgid "S_hade transparent or image background:"
#~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
diff --git a/po/tg.po b/po/tg.po
-index e3feef65..6371c036 100644
+index e3feef658e1e..6371c036626f 100644
--- a/po/tg.po
+++ b/po/tg.po
@@ -2158,23 +2158,23 @@ msgstr "П_ӯшонидани равзана"
@@ -3181,7 +2914,7 @@ index e3feef65..6371c036 100644
#~ msgid "_Next Tab"
#~ msgstr "_Варақаи навбатӣ"
diff --git a/po/th.po b/po/th.po
-index 63263749..496da331 100644
+index 63263749655c..496da331bbf9 100644
--- a/po/th.po
+++ b/po/th.po
@@ -2308,23 +2308,23 @@ msgstr "ปิ_ดหน้าต่าง"
@@ -3228,7 +2961,7 @@ index 63263749..496da331 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 fa79334e..5b988d7d 100644
+index fa79334e08dc..5b988d7dbd4a 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -2558,3 +2558,15 @@ msgstr "_Pencereyi Kapat"
@@ -3248,7 +2981,7 @@ index fa79334e..5b988d7d 100644
+msgid "_Set Title…"
+msgstr "_Başlığı Ata..."
diff --git a/po/ug.po b/po/ug.po
-index 313f76b9..be608976 100644
+index 313f76b98eae..be6089762082 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
@@ -3263,7 +2996,7 @@ index 313f76b9..be608976 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 a08f2591..a4fbcbe6 100644
+index a08f25914d12..a4fbcbe6e474 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -2353,11 +2353,11 @@ msgstr "Закр_ити вікно"
@@ -3313,7 +3046,7 @@ index a08f2591..a4fbcbe6 100644
#~ msgid "Switch to Tab 2"
#~ msgstr "До вкладки 2"
diff --git a/po/vi.po b/po/vi.po
-index 67eb9326..b551eb6b 100644
+index 67eb9326545f..5a279ad647b6 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -2673,8 +2673,8 @@ msgstr "Đón_g cửa sổ"
@@ -3349,18 +3082,15 @@ index 67eb9326..b551eb6b 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"
-@@ -3113,3 +3113,9 @@ 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."
+
+msgid "Transparent background"
+msgstr "Nền trong suốt"
-+
-+msgid "_Set Title…"
-+msgstr "Đặt tự_a đề"
diff --git a/po/wa.po b/po/wa.po
-index 0e0a6a75..5ddeb239 100644
+index 0e0a6a752b6d..5ddeb2393654 100644
--- a/po/wa.po
+++ b/po/wa.po
@@ -224,8 +224,8 @@ msgid "<b>Background</b>"
@@ -3397,7 +3127,7 @@ index 0e0a6a75..5ddeb239 100644
#: ../src/terminal-window.c:1020
msgid "Set _Character Encoding"
diff --git a/po/xh.po b/po/xh.po
-index 44a8e21c..12aa6d19 100644
+index 44a8e21c7842..12aa6d190d99 100644
--- a/po/xh.po
+++ b/po/xh.po
@@ -217,8 +217,8 @@ msgid "<b>Background</b>"
@@ -3434,10 +3164,10 @@ index 44a8e21c..12aa6d19 100644
#: ../src/terminal-window.c:986
msgid "Set _Character Encoding"
diff --git a/po/zh_CN.po b/po/zh_CN.po
-index b64071ce..f18872ab 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 "默认大小:"
@@ -3461,14 +3191,6 @@ index b64071ce..f18872ab 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..."
@@ -3477,10 +3199,10 @@ index b64071ce..f18872ab 100644
+msgid "Transparent background"
+msgstr "透明背景"
diff --git a/po/zh_HK.po b/po/zh_HK.po
-index 61153529..3b269ea1 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 "預設大小:"
@@ -3504,14 +3226,6 @@ index 61153529..3b269ea1 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"
@@ -3520,10 +3234,10 @@ index 61153529..3b269ea1 100644
+msgid "Transparent background"
+msgstr "透明背景"
diff --git a/po/zh_TW.po b/po/zh_TW.po
-index 169c0bd0..2f483696 100644
+index 169c0bd009f9..2a3448af26ef 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
-@@ -2570,17 +2570,20 @@ msgstr "關閉視窗(_L)"
+@@ -2570,17 +2570,17 @@ msgstr "關閉視窗(_L)"
#~ msgid "Default size:"
#~ msgstr "預設大小:"
@@ -3544,13 +3258,10 @@ index 169c0bd0..2f483696 100644
-#~ msgstr "設定標題"
+msgid "Set Title"
+msgstr "設定標題"
-+
-+msgid "_Set Title…"
-+msgstr "設定標題(_S)…"
#~ msgid "Current Locale"
#~ msgstr "目前的地區設定"
-@@ -2792,3 +2795,6 @@ msgstr "關閉視窗(_L)"
+@@ -2792,3 +2792,6 @@ msgstr "關閉視窗(_L)"
#~ msgid "Show session management options"
#~ msgstr "顯示作業階段管理選項"
@@ -3558,5 +3269,4 @@ index 169c0bd0..2f483696 100644
+msgid "Transparent background"
+msgstr "透明背景"
--
-2.17.0
-
+2.14.3