]> git.pld-linux.org Git - packages/gnome-terminal.git/blobdiff - gnome-terminal-transparency.patch
- updated to 3.36.2
[packages/gnome-terminal.git] / gnome-terminal-transparency.patch
index 90d6ab367d2fa4d9e34a94505c94aa75caf94ce5..9025b7bb52109296fb1b991fd89ca4c39a0ecdc6 100644 (file)
@@ -1,7 +1,7 @@
-From b87c1302d9335dc867f0382a6463b0026e38f6dc Mon Sep 17 00:00:00 2001
+From c9a5c9630248efe0bc34dfbd4f54c8d4f68d4ee6 Mon Sep 17 00:00:00 2001
 From: Debarshi Ray <debarshir@gnome.org>
 Date: Mon, 12 May 2014 14:57:18 +0200
-Subject: [PATCH 1/6] Restore transparency
+Subject: [PATCH 01/14] Restore transparency
 
 The transparency settings were removed as a side effect of
 2bff4b63ed3ceef6055e35563e9b0b33ad57349d
@@ -13,20 +13,22 @@ 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/profile-editor.c               | 11 +++++
- src/profile-preferences.ui         | 92 ++++++++++++++++++++++++++++++++++++++
+ 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, 144 insertions(+), 1 deletion(-)
+ 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 c031c8a..7bdd156 100644
+index 945b0bd661c5..c581f3cf2553 100644
 --- a/src/org.gnome.Terminal.gschema.xml
 +++ b/src/org.gnome.Terminal.gschema.xml
-@@ -370,6 +370,16 @@
+@@ -400,6 +400,16 @@
        <default>'narrow'</default>
        <summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
      </key>
@@ -43,36 +45,13 @@ index c031c8a..7bdd156 100644
    </schema>
  
    <!-- Keybinding settings -->
-diff --git a/src/profile-editor.c b/src/profile-editor.c
-index ff26df6..b8c1c78 100644
---- a/src/profile-editor.c
-+++ b/src/profile-editor.c
-@@ -1218,7 +1218,18 @@ terminal_profile_edit (GSettings  *profile,
-                    "active-id",
-                    G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
-+  g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
-+                   gtk_builder_get_object (builder, "use-transparent-background"),
-+                   "active", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
-+  g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
-+                   gtk_builder_get_object (builder, "background-transparent-scale-box"),
-+                   "sensitive", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY);
-+  g_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);
-+
-   /* Finished! */
-+
-   terminal_util_bind_mnemonic_label_sensitivity (editor);
-   terminal_util_dialog_focus_widget (editor, widget_name);
-diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui
-index 9c00946..9caf72d 100644
---- a/src/profile-preferences.ui
-+++ b/src/profile-preferences.ui
-@@ -23,6 +23,11 @@
-     <property name="step_increment">1</property>
-     <property name="page_increment">100</property>
+diff --git a/src/preferences.ui b/src/preferences.ui
+index 6259aac0f02f..f5c366f14e10 100644
+--- a/src/preferences.ui
++++ b/src/preferences.ui
+@@ -77,6 +77,11 @@
+     <property name="step_increment">0.05</property>
+     <property name="page_increment">0.25</property>
    </object>
 +  <object class="GtkAdjustment" id="background-transparent-adjustment">
 +    <property name="upper">100</property>
@@ -82,105 +61,87 @@ index 9c00946..9caf72d 100644
    <object class="GtkListStore" id="cjk-ambiguous-width-model">
      <columns>
        <!-- column-name gchararray -->
-@@ -1035,6 +1040,93 @@
-                                 <property name="position">1</property>
-                               </packing>
-                             </child>
-+                            <child>
-+                              <object class="GtkBox" id="use-transparent-background-box">
-+                                <property name="visible">True</property>
-+                                <property name="can_focus">False</property>
-+                                <property name="orientation">horizontal</property>
-+                                <property name="spacing">12</property>
-+                                <child>
-+                                  <object class="GtkCheckButton" id="use-transparent-background">
-+                                    <property name="label" translatable="yes">Transparent background</property>
-+                                    <property name="visible">True</property>
-+                                    <property name="can_focus">True</property>
-+                                    <property name="receives_default">False</property>
-+                                    <property name="use_underline">True</property>
-+                                    <property name="xalign">0</property>
-+                                    <property name="draw_indicator">True</property>
-+                                  </object>
-+                                  <packing>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                    <property name="position">0</property>
-+                                  </packing>
-+                                </child>
-+                                <child>
-+                                  <object class="GtkBox" id="background-transparent-scale-box">
-+                                    <property name="visible">True</property>
-+                                    <property name="can_focus">False</property>
-+                                    <property name="orientation">horizontal</property>
-+                                    <property name="spacing">6</property>
-+                                    <child>
-+                                      <object class="GtkLabel" id="background-transparent-min-label">
-+                                        <property name="visible">True</property>
-+                                        <property name="can_focus">False</property>
-+                                        <property name="xalign">0.5</property>
-+                                        <property name="label" translatable="yes">none</property>
-+                                        <style>
-+                                          <class name="dim-label"/>
-+                                        </style>
-+                                      </object>
-+                                      <packing>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                        <property name="position">0</property>
-+                                      </packing>
-+                                    </child>
-+                                    <child>
-+                                      <object class="GtkScale" id="background-transparent-scale">
-+                                        <property name="visible">True</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="adjustment">background-transparent-adjustment</property>
-+                                        <property name="draw_value">False</property>
-+                                      </object>
-+                                      <packing>
-+                                        <property name="expand">True</property>
-+                                        <property name="fill">True</property>
-+                                        <property name="position">1</property>
-+                                      </packing>
-+                                    </child>
-+                                    <child>
-+                                      <object class="GtkLabel" id="background-transparent-max-label">
-+                                        <property name="visible">True</property>
-+                                        <property name="can_focus">False</property>
-+                                        <property name="xalign">0.5</property>
-+                                        <property name="label" translatable="yes">full</property>
-+                                        <style>
-+                                          <class name="dim-label"/>
-+                                        </style>
-+                                      </object>
-+                                      <packing>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                        <property name="position">2</property>
-+                                      </packing>
-+                                    </child>
-+                                  </object>
-+                                  <packing>
-+                                    <property name="expand">True</property>
-+                                    <property name="fill">True</property>
-+                                    <property name="position">1</property>
-+                                  </packing>
-+                                </child>
-+                              </object>
-+                              <packing>
-+                                <property name="expand">True</property>
-+                                <property name="fill">True</property>
-+                                <property name="position">2</property>
-+                              </packing>
-+                            </child>
-                           </object>
-                         </child>
-                       </object>
+@@ -1317,6 +1322,48 @@
+                                             <property name="position">1</property>
+                                           </packing>
+                                         </child>
++                                        <child>
++                                          <object class="GtkBox" id="use-transparent-background-box">
++                                            <property name="visible">True</property>
++                                            <property name="can_focus">False</property>
++                                            <property name="orientation">horizontal</property>
++                                            <property name="spacing">12</property>
++                                            <child>
++                                              <object class="GtkCheckButton" id="use-transparent-background">
++                                                <property name="label" translatable="yes">Transparent background</property>
++                                                <property name="visible">True</property>
++                                                <property name="can_focus">True</property>
++                                                <property name="receives_default">False</property>
++                                                <property name="use_underline">True</property>
++                                                <property name="xalign">0</property>
++                                                <property name="draw_indicator">True</property>
++                                              </object>
++                                              <packing>
++                                                <property name="expand">False</property>
++                                                <property name="fill">False</property>
++                                                <property name="position">0</property>
++                                              </packing>
++                                            </child>
++                                            <child>
++                                              <object class="GtkScale" id="background-transparent-scale">
++                                                <property name="visible">True</property>
++                                                <property name="can_focus">True</property>
++                                                <property name="adjustment">background-transparent-adjustment</property>
++                                                <property name="draw_value">False</property>
++                                              </object>
++                                              <packing>
++                                                <property name="expand">True</property>
++                                                <property name="fill">True</property>
++                                                <property name="position">1</property>
++                                              </packing>
++                                            </child>
++                                          </object>
++                                          <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 eaad9182fed2..e03e35fc1bea 100644
+--- a/src/profile-editor.c
++++ b/src/profile-editor.c
+@@ -1254,6 +1254,22 @@ profile_prefs_load (const char *uuid, GSettings *profile)
+                                w,
+                                "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"),
++                               "active",
++                               G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
++  profile_prefs_settings_bind (profile,
++                               TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
++                               gtk_builder_get_object (builder, "background-transparent-scale"),
++                               "sensitive",
++                               G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY);
++  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);
+ }
+ /* 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 4b734a3..e434075 100644
+index 5b0d8c3ed416..4da44232e491 100644
 --- a/src/terminal-schemas.h
 +++ b/src/terminal-schemas.h
-@@ -69,6 +69,9 @@ G_BEGIN_DECLS
+@@ -73,6 +73,9 @@ G_BEGIN_DECLS
  #define TERMINAL_PROFILE_VISIBLE_NAME_KEY               "visible-name"
  #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY       "word-char-exceptions"
  
@@ -191,10 +152,10 @@ index 4b734a3..e434075 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 33a34ab..92e8bb3 100644
+index a85fcefd40e1..26202e4555ea 100644
 --- a/src/terminal-screen.c
 +++ b/src/terminal-screen.c
-@@ -855,7 +855,9 @@ terminal_screen_profile_changed_cb (GSettings     *profile,
+@@ -800,7 +800,9 @@ terminal_screen_profile_changed_cb (GSettings     *profile,
        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_COLORS_SET_KEY) ||
        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_BACKGROUND_COLOR_KEY) ||
        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_FOREGROUND_COLOR_KEY) ||
@@ -205,7 +166,7 @@ index 33a34ab..92e8bb3 100644
      update_color_scheme (screen);
  
    if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
-@@ -925,6 +927,8 @@ update_color_scheme (TerminalScreen *screen)
+@@ -877,6 +879,8 @@ update_color_scheme (TerminalScreen *screen)
    GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
    GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
    GtkStyleContext *context;
@@ -214,7 +175,7 @@ index 33a34ab..92e8bb3 100644
    gboolean use_theme_colors;
  
    context = gtk_widget_get_style_context (widget);
-@@ -966,6 +970,18 @@ update_color_scheme (TerminalScreen *screen)
+@@ -918,6 +922,18 @@ update_color_scheme (TerminalScreen *screen)
      }
  
    colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
@@ -233,7 +194,7 @@ index 33a34ab..92e8bb3 100644
    vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
                             colors, n_colors);
    vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
-@@ -973,6 +989,10 @@ update_color_scheme (TerminalScreen *screen)
+@@ -925,6 +941,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);
@@ -245,19 +206,19 @@ index 33a34ab..92e8bb3 100644
  
  static void
 diff --git a/src/terminal-window.c b/src/terminal-window.c
-index 8b78849..eb75b42 100644
+index 4ed3647498b2..8fc70ce74252 100644
 --- a/src/terminal-window.c
 +++ b/src/terminal-window.c
-@@ -2616,6 +2616,8 @@ terminal_window_init (TerminalWindow *window)
+@@ -2088,6 +2088,8 @@ terminal_window_init (TerminalWindow *window)
+   };
    TerminalWindowPrivate *priv;
    TerminalApp *app;
-   TerminalSettingsList *profiles_list;
 +  GdkScreen *screen;
 +  GdkVisual *visual;
-   GtkActionGroup *action_group;
-   GtkAction *action;
-   GtkUIManager *manager;
-@@ -2630,6 +2632,11 @@ terminal_window_init (TerminalWindow *window)
+   GSettings *gtk_debug_settings;
+   GtkWindowGroup *window_group;
+   //  GtkAccelGroup *accel_group;
+@@ -2102,6 +2104,11 @@ terminal_window_init (TerminalWindow *window)
  
    gtk_widget_init_template (GTK_WIDGET (window));
  
@@ -270,13 +231,13 @@ index 8b78849..eb75b42 100644
    uuid_unparse (u, uuidstr);
    priv->uuid = g_strdup (uuidstr);
 -- 
-2.5.0
+2.19.1
 
 
-From a160731760b90fa566017dd0212fa1239eadc72c Mon Sep 17 00:00:00 2001
+From f10a426375c392add4ad9ce28bdfc17c27b2da23 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 2/6] window: Make the drawing robust across all themes
+Subject: [PATCH 02/14] 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
@@ -293,13 +254,14 @@ 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 eb75b42..58ec94a 100644
+index 8fc70ce74252..1707ada83ce8 100644
 --- a/src/terminal-window.c
 +++ b/src/terminal-window.c
-@@ -2288,6 +2288,26 @@ terminal_window_realize (GtkWidget *widget)
+@@ -1944,6 +1944,26 @@ terminal_window_realize (GtkWidget *widget)
+   terminal_window_update_size (window);
  }
  
- static gboolean
++static gboolean
 +terminal_window_draw (GtkWidget *widget,
 +                      cairo_t   *cr)
 +{
@@ -319,11 +281,10 @@ index eb75b42..58ec94a 100644
 +  return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
 +}
 +
-+static gboolean
+ static gboolean
  terminal_window_state_event (GtkWidget            *widget,
                               GdkEventWindowState  *event)
- {
-@@ -2816,6 +2836,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
+@@ -2255,6 +2275,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
  
    widget_class->show = terminal_window_show;
    widget_class->realize = terminal_window_realize;
@@ -332,13 +293,13 @@ index eb75b42..58ec94a 100644
    widget_class->screen_changed = terminal_window_screen_changed;
    widget_class->style_updated = terminal_window_style_updated;
 -- 
-2.5.0
+2.19.1
 
 
-From c2d5533c8973f04f66eafe919d1fc4740d66c106 Mon Sep 17 00:00:00 2001
+From ab579d89948777e2e0267376d64cca79af6684d9 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 3/6] screen, window: Extra padding around transparent
+Subject: [PATCH 03/14] screen, window: Extra padding around transparent
  terminals in Wayland
 
 https://bugzilla.redhat.com/show_bug.cgi?id=1207943
@@ -348,19 +309,19 @@ 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 92e8bb3..1718d42 100644
+index 26202e4555ea..c0ce8a89126c 100644
 --- a/src/terminal-screen.c
 +++ b/src/terminal-screen.c
-@@ -140,6 +140,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *,
+@@ -155,6 +155,8 @@ static void terminal_screen_system_font_
  static gboolean terminal_screen_popup_menu (GtkWidget *widget);
  static gboolean terminal_screen_button_press (GtkWidget *widget,
                                                GdkEventButton *event);
 +static void terminal_screen_hierarchy_changed (GtkWidget *widget,
 +                                               GtkWidget *previous_toplevel);
- static gboolean terminal_screen_do_exec (TerminalScreen *screen,
-                                          FDSetupData    *data,
-                                          GError **error);
-@@ -510,6 +512,7 @@ terminal_screen_class_init (TerminalScreenClass *klass)
+ static void terminal_screen_child_exited  (VteTerminal *terminal,
+                                            int status);
+@@ -624,6 +626,7 @@ terminal_screen_class_init (TerminalScre
    widget_class->drag_data_received = terminal_screen_drag_data_received;
    widget_class->button_press_event = terminal_screen_button_press;
    widget_class->popup_menu = terminal_screen_popup_menu;
@@ -368,10 +329,11 @@ index 92e8bb3..1718d42 100644
  
    terminal_class->child_exited = terminal_screen_child_exited;
  
-@@ -913,6 +916,32 @@ terminal_screen_profile_changed_cb (GSettings     *profile,
+@@ -864,6 +867,32 @@ terminal_screen_profile_changed_cb (GSettings     *profile,
+   g_object_thaw_notify (object);
  }
  
- static void
++static void
 +update_toplevel_transparency (TerminalScreen *screen)
 +{
 +  GtkWidget *widget = GTK_WIDGET (screen);
@@ -397,11 +359,10 @@ index 92e8bb3..1718d42 100644
 +    }
 +}
 +
-+static void
+ static void
  update_color_scheme (TerminalScreen *screen)
  {
-   GtkWidget *widget = GTK_WIDGET (screen);
-@@ -990,9 +1019,7 @@ update_color_scheme (TerminalScreen *screen)
+@@ -942,9 +971,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);
  
@@ -412,7 +373,7 @@ index 92e8bb3..1718d42 100644
  }
  
  static void
-@@ -1595,6 +1622,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
+@@ -1549,6 +1576,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
    terminal_screen_popup_info_unref (info);
  }
  
@@ -427,10 +388,10 @@ index 92e8bb3..1718d42 100644
  terminal_screen_button_press (GtkWidget      *widget,
                                GdkEventButton *event)
 diff --git a/src/terminal-window.c b/src/terminal-window.c
-index 58ec94a..49cb3dc 100644
+index 1707ada83ce8..a3c5a7fc2f46 100644
 --- a/src/terminal-window.c
 +++ b/src/terminal-window.c
-@@ -2293,15 +2293,21 @@ terminal_window_draw (GtkWidget *widget,
+@@ -1950,15 +1950,21 @@ terminal_window_draw (GtkWidget *widget,
  {
    if (gtk_widget_get_app_paintable (widget))
      {
@@ -459,108 +420,152 @@ index 58ec94a..49cb3dc 100644
  
    return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
 -- 
-2.5.0
+2.19.1
 
 
-From 36d6de88a47083e5593c41335af52aca3f3479f1 Mon Sep 17 00:00:00 2001
+From aa31c5189de74fba379426792f5d48c64515ba48 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/14] 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 c0ce8a89126c..1b763a3890dd 100644
+--- a/src/terminal-screen.c
++++ b/src/terminal-screen.c
+@@ -908,7 +908,6 @@ update_color_scheme (TerminalScreen *screen)
+   GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
+   GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
+   GtkStyleContext *context;
+-  GtkWidget *toplevel;
+   gboolean transparent;
+   gboolean use_theme_colors;
+-- 
+2.19.1
+
+
+From b3c8ba6bd276defab38d05406d225f56b170db08 Mon Sep 17 00:00:00 2001
 From: Debarshi Ray <debarshir@gnome.org>
 Date: Tue, 17 Feb 2015 17:06:17 +0100
-Subject: [PATCH 6/6] Restore translations for transparency
+Subject: [PATCH 11/14] Restore translations for setting a title and
+ transparency
 
 ---
- po/am.po          | 4 ++--
- po/ar.po          | 4 ++--
- po/as.po          | 4 ++--
- po/ast.po         | 4 ++--
- po/az.po          | 4 ++--
- po/be.po          | 3 +++
- po/be@latin.po    | 4 ++--
- po/bg.po          | 3 +++
- po/bn_IN.po       | 3 +++
- po/bs.po          | 4 ++++
- po/ca.po          | 3 +++
- po/ca@valencia.po | 3 +++
- po/cs.po          | 3 +++
- po/cy.po          | 4 ++--
- po/da.po          | 4 ++--
- po/de.po          | 4 ++--
- po/dz.po          | 4 ++--
- po/el.po          | 3 +++
- po/en@shaw.po     | 4 ++--
- po/en_CA.po       | 4 ++--
- po/en_GB.po       | 4 ++--
- po/es.po          | 4 ++--
- po/et.po          | 3 +++
- po/eu.po          | 4 ++--
- po/fa.po          | 3 +++
- po/fi.po          | 3 +++
- po/fr.po          | 3 +++
- po/fur.po         | 4 ++++
- po/ga.po          | 3 +++
- po/gl.po          | 4 ++--
- po/gu.po          | 4 ++--
- po/he.po          | 4 ++--
- po/hi.po          | 4 ++--
- po/hr.po          | 4 ++--
- po/hu.po          | 3 +++
- po/hy.po          | 4 ++--
- po/id.po          | 3 +++
- po/it.po          | 3 +++
- po/ja.po          | 3 +++
- po/ka.po          | 2 +-
- po/kk.po          | 3 +++
- po/kn.po          | 3 +++
- po/ko.po          | 3 +++
- po/ku.po          | 4 ++--
- po/lt.po          | 3 +++
- po/lv.po          | 3 +++
- po/mai.po         | 4 ++--
- po/mg.po          | 4 ++--
- po/mk.po          | 4 ++--
- po/ml.po          | 4 ++--
- po/mn.po          | 4 ++--
- po/mr.po          | 4 ++--
- po/ms.po          | 4 ++--
- po/nb.po          | 3 +++
- po/nds.po         | 4 ++--
- po/ne.po          | 4 ++--
- po/nl.po          | 3 +++
- po/nn.po          | 4 ++--
- po/oc.po          | 4 ++--
- po/or.po          | 4 ++--
- po/pa.po          | 4 ++--
- po/ps.po          | 4 ++--
- po/pt.po          | 4 ++--
- po/pt_BR.po       | 3 +++
- po/ro.po          | 4 ++--
- po/ru.po          | 3 +++
- po/rw.po          | 2 +-
- po/si.po          | 4 ++--
- po/sk.po          | 3 +++
- po/sl.po          | 3 +++
- po/sq.po          | 4 ++--
- po/sr.po          | 3 +++
- po/sr@latin.po    | 3 +++
- po/sv.po          | 3 +++
- po/ta.po          | 4 ++--
- po/te.po          | 4 ++--
- po/th.po          | 4 ++--
- po/tr.po          | 3 +++
- po/ug.po          | 4 ++--
- po/uk.po          | 4 ++--
- po/vi.po          | 3 +++
- po/wa.po          | 4 ++--
- po/xh.po          | 4 ++--
- po/zh_CN.po       | 3 +++
- po/zh_HK.po       | 3 +++
- po/zh_TW.po       | 3 +++
- 86 files changed, 209 insertions(+), 96 deletions(-)
+ po/am.po          |  8 ++++----
+ po/an.po          | 12 ++++++------
+ po/ar.po          | 16 ++++++++--------
+ po/as.po          | 16 ++++++++--------
+ po/ast.po         |  8 ++++----
+ po/az.po          |  8 ++++----
+ po/be.po          |  3 +++
+ po/be@latin.po    |  8 ++++----
+ po/bg.po          |  9 +++++++++
+ po/bn.po          |  8 ++++----
+ po/bn_IN.po       | 11 +++++++----
+ po/br.po          |  6 +++---
+ po/bs.po          | 10 ++++++++++
+ po/ca.po          | 12 ++++++++++++
+ po/ca@valencia.po | 12 ++++++++++++
+ po/cs.po          | 12 ++++++++++++
+ po/cy.po          |  8 ++++----
+ po/da.po          | 11 +++++++++++
+ po/de.po          | 12 ++++++++++++
+ po/dz.po          |  8 ++++----
+ po/el.po          | 15 +++++++++------
+ po/en@shaw.po     |  8 ++++----
+ 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          | 16 ++++++++--------
+ po/fa.po          | 15 +++++++++------
+ po/fi.po          | 12 ++++++++++++
+ po/fr.po          | 12 ++++++++++++
+ po/fur.po         | 11 +++++++++--
+ po/ga.po          |  3 +++
+ 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          | 12 ++++++++++++
+ po/it.po          | 12 ++++++++++++
+ po/ja.po          | 12 ++++++++++++
+ po/ka.po          |  6 +++---
+ po/kk.po          | 12 ++++++++++++
+ po/km.po          |  4 ++--
+ po/kn.po          | 15 +++++++++------
+ po/ko.po          | 12 ++++++++++++
+ po/ku.po          |  8 ++++----
+ po/lt.po          | 12 ++++++++++++
+ po/lv.po          | 16 ++++++++++++++++
+ po/mai.po         |  8 ++++----
+ po/mg.po          |  8 ++++----
+ po/mk.po          |  8 ++++----
+ po/ml.po          |  3 +++
+ po/mn.po          |  8 ++++----
+ po/mr.po          | 16 ++++++++--------
+ po/ms.po          |  8 ++++----
+ po/nb.po          | 12 ++++++++++++
+ po/nds.po         |  8 ++++----
+ po/ne.po          | 12 ++++++------
+ po/nl.po          | 12 ++++++++++++
+ po/nn.po          |  8 ++++----
+ po/oc.po          | 12 ++++++------
+ po/or.po          |  4 ++--
+ po/pa.po          | 23 +++++++++++------------
+ po/ps.po          |  8 ++++----
+ po/pt.po          | 16 ++++++++--------
+ po/pt_BR.po       | 15 +++++++++------
+ po/ro.po          |  4 ++--
+ po/ru.po          | 16 ++++++++++++++++
+ po/rw.po          |  3 +--
+ po/si.po          |  8 ++++----
+ po/sk.po          | 12 ++++++++++++
+ po/sl.po          | 15 +++++++++------
+ po/sq.po          |  8 ++++----
+ po/sr.po          | 22 ++++++++++++----------
+ po/sr@latin.po    | 22 ++++++++++++----------
+ po/sv.po          | 12 ++++++++++++
+ po/ta.po          | 27 +++++++++++++--------------
+ po/te.po          | 27 +++++++++++++--------------
+ po/tg.po          | 16 ++++++++--------
+ po/th.po          | 20 ++++++++++----------
+ po/tr.po          | 12 ++++++++++++
+ po/ug.po          |  4 ++--
+ po/uk.po          | 20 ++++++++++----------
+ po/vi.po          | 15 +++++++++------
+ po/wa.po          | 12 ++++++------
+ po/xh.po          | 12 ++++++------
+ po/zh_CN.po       | 15 +++++++++------
+ po/zh_HK.po       | 15 +++++++++------
+ po/zh_TW.po       | 15 +++++++++------
+ 92 files changed, 707 insertions(+), 371 deletions(-)
 
 diff --git a/po/am.po b/po/am.po
-index 27a7e96..04a8ad9 100644
+index 3445d96da657..ee992f0712a5 100644
 --- a/po/am.po
 +++ b/po/am.po
-@@ -613,8 +613,8 @@ msgid "_Text color:"
+@@ -214,8 +214,8 @@ msgid "<b>Background</b>"
+ msgstr "<b>መደብ</b>"
+ #: ../src/gnome-terminal.glade2.h:2
+-msgid "<b>Command</b>"
+-msgstr "<b>ትእዛዝ</b>"
++msgid "Command"
++msgstr "ትእዛዝ"
+ #: ../src/gnome-terminal.glade2.h:3
+ msgid "<b>Compatibility</b>"
+@@ -614,8 +614,8 @@ msgid "_Text color:"
  msgstr "የ_ጽሑፍ ቀለም፦"
  
  #: ../src/gnome-terminal.glade2.h:102
@@ -571,11 +576,75 @@ index 27a7e96..04a8ad9 100644
  
  #: ../src/gnome-terminal.glade2.h:103
  msgid "_Update login records when command is launched"
+diff --git a/po/an.po b/po/an.po
+index fcec2668aa11..9e07cb682c57 100644
+--- a/po/an.po
++++ b/po/an.po
+@@ -2241,8 +2241,8 @@ msgstr "_Zarrar a finestra"
+ #~ msgid "Use custom default terminal si_ze"
+ #~ msgstr "Emplegar grandaria predeterminada presonali_zada de terminal"
+-#~ msgid "Title"
+-#~ msgstr "Titol"
++msgid "Title"
++msgstr "Titol"
+ #~ msgid "When terminal commands set their o_wn titles:"
+ #~ msgstr ""
+@@ -2266,8 +2266,8 @@ msgstr "_Zarrar a finestra"
+ #~ msgid "Close Window"
+ #~ msgstr "Zarrar a finestra"
+-#~ msgid "Set Title"
+-#~ msgstr "Establir titol"
++msgid "Set Title"
++msgstr "Establir titol"
+ #~ msgid "Switch to Tab 2"
+ #~ msgstr "Cambiar a la pestanya 2"
+@@ -2340,8 +2340,8 @@ msgstr "_Zarrar a finestra"
+ #~ msgid "_Input Methods"
+ #~ msgstr "Me_todos de dentrada"
+-#~ msgid "_Title:"
+-#~ msgstr "_Titol:"
++msgid "_Title:"
++msgstr "_Titol:"
+ #~ msgid "Keyboard Shortcuts"
+ #~ msgstr "Alcorces de teclau"
 diff --git a/po/ar.po b/po/ar.po
-index f8582ed..85ff6cc 100644
+index 6f5e80cc2a66..53e15b97f312 100644
 --- a/po/ar.po
 +++ b/po/ar.po
-@@ -3104,8 +3104,8 @@ msgstr "أغ_لق النافذة"
+@@ -2553,11 +2553,11 @@ msgstr "أغ_لق النافذة"
+ #~ msgid "Default size:"
+ #~ msgstr "الحجم المبدئي:"
+-#~ msgid "Title"
+-#~ msgstr "العنوان"
++msgid "Title"
++msgstr "العنوان"
+-#~ msgid "_Title:"
+-#~ msgstr "ال_عنوان:"
++msgid "_Title:"
++msgstr "ال_عنوان:"
+ #~ msgid "Title and Command"
+ #~ msgstr "العنوان والأمر"
+@@ -2565,8 +2565,8 @@ msgstr "أغ_لق النافذة"
+ #~ msgid "_Unlimited"
+ #~ msgstr "_غير محدود"
+-#~ msgid "Set Title"
+-#~ msgstr "حدد العنوان"
++msgid "Set Title"
++msgstr "حدد العنوان"
+ #~ msgid "Current Locale"
+ #~ msgstr "المحليّة الحالية"
+@@ -3309,8 +3309,8 @@ msgstr "أغ_لق النافذة"
  #~ msgid "Background image _scrolls"
  #~ msgstr "صورة الخلفية ت_لتف"
  
@@ -587,9 +656,36 @@ index f8582ed..85ff6cc 100644
  #~ msgid "S_hade transparent or image background:"
  #~ msgstr "_ظلل شفافية أو صورة الخلفية:"
 diff --git a/po/as.po b/po/as.po
-index 0bd699d..63fca01 100644
+index 3fade2b8cb12..5b905340f89f 100644
 --- a/po/as.po
 +++ b/po/as.po
+@@ -2163,11 +2163,11 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
+ #~ msgid "Default size:"
+ #~ msgstr "অবিকল্পিত আকাৰ:"
+-#~ msgid "Title"
+-#~ msgstr "শীৰ্ষক"
++msgid "Title"
++msgstr "শীৰ্ষক"
+-#~ msgid "_Title:"
+-#~ msgstr "শীৰ্ষক (_T):"
++msgid "_Title:"
++msgstr "শীৰ্ষক (_T):"
+ #~ msgid "Title and Command"
+ #~ msgstr "শীৰ্ষক আৰু কমান্ড"
+@@ -2175,8 +2175,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
+ #~ msgid "_Unlimited"
+ #~ msgstr "অসীমিত (_U)"
+-#~ msgid "Set Title"
+-#~ msgstr "শীৰ্ষক নিৰ্ধাৰণ কৰক"
++msgid "Set Title"
++msgstr "শীৰ্ষক নিৰ্ধাৰণ কৰক"
+ #~ msgid "Current Locale"
+ #~ msgstr "বৰ্তমান স্থানীয়"
 @@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
  #~ msgid "Background image _scrolls"
  #~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
@@ -602,9 +698,20 @@ index 0bd699d..63fca01 100644
  #~ msgid "S_hade transparent or image background:"
  #~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
 diff --git a/po/ast.po b/po/ast.po
-index d1c6e7b..4210820 100644
+index d1c6e7b8174a..4dc0892ed9c4 100644
 --- a/po/ast.po
 +++ b/po/ast.po
+@@ -1304,8 +1304,8 @@ msgid "_Base on:"
+ msgstr "_Basáu en:"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>Comandu</b>"
++msgid "Command"
++msgstr "Comandu"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground, Background, Bold and Underline</b>"
 @@ -1598,8 +1598,8 @@ msgid "_Text color:"
  msgstr "Color del _testu:"
  
@@ -617,10 +724,21 @@ index d1c6e7b..4210820 100644
  #: ../src/profile-preferences.glade.h:78
  msgid "_Underline color:"
 diff --git a/po/az.po b/po/az.po
-index b0f2e3e..877f114 100644
+index 586c1e4d827b..4bd846797101 100644
 --- a/po/az.po
 +++ b/po/az.po
-@@ -619,8 +619,8 @@ msgid "_Text color:"
+@@ -218,8 +218,8 @@ msgid "<b>Background</b>"
+ msgstr "<b>Arxa plan</b>"
+ #: ../src/gnome-terminal.glade2.h:2
+-msgid "<b>Command</b>"
+-msgstr "<b>Əmr</b>"
++msgid "Command"
++msgstr "Əmr"
+ #: ../src/gnome-terminal.glade2.h:3
+ msgid "<b>Compatibility</b>"
+@@ -620,8 +620,8 @@ msgid "_Text color:"
  msgstr "_Mətn rəngi:"
  
  #: ../src/gnome-terminal.glade2.h:102
@@ -632,21 +750,35 @@ index b0f2e3e..877f114 100644
  #: ../src/gnome-terminal.glade2.h:103
  msgid "_Update login records when command is launched"
 diff --git a/po/be.po b/po/be.po
-index fca0ae4..74ff329 100644
+index ce07d47995ca..3c65f9090ef4 100644
 --- a/po/be.po
 +++ b/po/be.po
-@@ -2015,3 +2015,6 @@ msgstr ""
+@@ -2279,6 +2279,9 @@
  msgid "C_lose Window"
  msgstr "_Закрыць акно"
  
 +msgid "Transparent background"
 +msgstr "Празрысты фон"
 +
+ #~ msgid "Verbose output"
+ #~ msgstr "Падрабязны вывад"
 diff --git a/po/be@latin.po b/po/be@latin.po
-index 1e057c7..1d22a58 100644
+index 82ef0664ae1e..27e9877f96e8 100644
 --- a/po/be@latin.po
 +++ b/po/be@latin.po
-@@ -1425,8 +1425,8 @@ msgid "_Text color:"
+@@ -1146,8 +1146,8 @@ msgid "_Base on:"
+ msgstr "Na _bazie:"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>Zahad</b>"
++msgid "Command"
++msgstr "Zahad"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground and Background</b>"
+@@ -1426,8 +1426,8 @@ msgid "_Text color:"
  msgstr "Koler _tekstu:"
  
  #: ../src/profile-preferences.glade.h:73
@@ -658,29 +790,94 @@ index 1e057c7..1d22a58 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 0b8dd8e..5d45919 100644
+index 9a4f32e4b135..6ac17c17efb8 100644
 --- a/po/bg.po
 +++ b/po/bg.po
-@@ -2167,3 +2167,6 @@ msgstr ""
- #: ../src/terminal-window.c:3726
+@@ -2305,3 +2305,6 @@ msgstr ""
+ #: ../src/terminal-window.c:3953
  msgid "C_lose Window"
  msgstr "_Затваряне на този прозорец"
 +
 +msgid "Transparent background"
 +msgstr "Прозрачен фон"
+diff --git a/po/bn.po b/po/bn.po
+index 4906009cf46f..f97d43b0e515 100644
+--- a/po/bn.po
++++ b/po/bn.po
+@@ -1217,8 +1217,8 @@ msgid "_Base on:"
+ msgstr "চিহ্নিত বস্তুর উপর ভিত্তি করে: (_B)"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>কমান্ড</b>"
++msgid "Command"
++msgstr "কমান্ড"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground, Background, and Bold</b>"
+@@ -1524,8 +1524,8 @@ msgid "_Text color:"
+ msgstr "পাঠ্যের রং: (_T)"
+ #: ../src/profile-preferences.glade.h:76
+-msgid "_Transparent background"
+-msgstr "স্বচ্ছ পটভূমি (_T)"
++msgid "Transparent background"
++msgstr "স্বচ্ছ পটভূমি "
+ #: ../src/profile-preferences.glade.h:77
+ msgid "_Unlimited"
 diff --git a/po/bn_IN.po b/po/bn_IN.po
-index c74246a..d65b322 100644
+index f196e5084797..0ac3caf77e73 100644
 --- a/po/bn_IN.po
 +++ b/po/bn_IN.po
-@@ -2358,3 +2358,6 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
+@@ -2296,8 +2296,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
+ #~ msgid "Close Window"
+ #~ msgstr "উইন্ডো বন্ধ করুন"
+-#~ msgid "Set Title"
+-#~ msgstr "শিরোনাম নির্ধারণ করুন"
++msgid "Set Title"
++msgstr "শিরোনাম নির্ধারণ করুন"
+ #~ msgid "Switch to Tab 2"
+ #~ msgstr "ট্যাব ২-এ পরিবর্তন করুন"
+@@ -2356,5 +2356,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
+ #~ msgid "_Input Methods"
+ #~ msgstr "ইনপুট পদ্ধতি (_I)"
  
- #~ msgid "_Title:"
- #~ msgstr "শিরোনাম: (_T)"
+-#~ msgid "_Title:"
+-#~ msgstr "শিরোনাম: (_T)"
++msgid "_Title:"
++msgstr "শিরোনাম: (_T)"
 +
 +msgid "Transparent background"
 +msgstr "স্বচ্চ পটভূমি "
+diff --git a/po/br.po b/po/br.po
+index e16ea07dfc21..f4cbe857d5ca 100644
+--- a/po/br.po
++++ b/po/br.po
+@@ -958,8 +958,8 @@ msgid "_Base on:"
+ msgstr ""
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>Arc'had</b>"
++msgid "Command"
++msgstr "Arc'had"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground and Background</b>"
+@@ -1211,7 +1211,7 @@ msgid "_Text color:"
+ msgstr "Liv an destenn :"
+ #: ../src/profile-preferences.glade.h:73
+-msgid "_Transparent background"
++msgid "Transparent background"
+ msgstr ""
+ #: ../src/profile-preferences.glade.h:74
 diff --git a/po/bs.po b/po/bs.po
-index 49e7108..fccfa86 100644
+index 49e710859ac9..8703552984b1 100644
 --- a/po/bs.po
 +++ b/po/bs.po
 @@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
@@ -695,43 +892,57 @@ index 49e7108..fccfa86 100644
  msgid "Keyboard shortcut to make font normal-size"
  msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
 diff --git a/po/ca.po b/po/ca.po
-index 55caef1..d201f40 100644
+index 4a612fcfc0ba..6091324a9547 100644
 --- a/po/ca.po
 +++ b/po/ca.po
-@@ -2304,3 +2304,6 @@ msgstr "Tanca la _finestra"
+@@ -2420,6 +2420,9 @@ msgstr ""
+ msgid "C_lose Window"
+ msgstr "Tanca la _finestra"
  
- #~ msgid "Whether to use a dark theme variant"
- #~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
-+
 +msgid "Transparent background"
 +msgstr "Fons transparent"
++
+ #~ msgid "Whether to allow bold text"
+ #~ msgstr "Si es permet o no text en negreta"
 diff --git a/po/ca@valencia.po b/po/ca@valencia.po
-index 1c279a0..4073f71 100644
+index a6e8fb4250dc..c9ed8508228d 100644
 --- a/po/ca@valencia.po
 +++ b/po/ca@valencia.po
-@@ -2092,3 +2092,6 @@ msgstr ""
- #: ../src/terminal-window.c:3645
msgid "C_lose Window"
msgstr "Tanca la _finestra"
+@@ -2357,3 +2357,6 @@ msgstr "Tanca la _finestra"
#~ msgid "Whether to use a dark theme variant"
#~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
 +
 +msgid "Transparent background"
 +msgstr "Fons transparent"
 diff --git a/po/cs.po b/po/cs.po
-index 784fe2f..ef0d7cc 100644
+index ee33ed2a0103..2acf2aa99656 100644
 --- a/po/cs.po
 +++ b/po/cs.po
-@@ -2245,3 +2245,6 @@ msgstr ""
- #: ../src/terminal-window.c:3727
+@@ -2310,3 +2310,6 @@ msgstr ""
+ #: ../src/terminal-window.c:3353
  msgid "C_lose Window"
  msgstr "_Zavřít okno"
 +
 +msgid "Transparent background"
 +msgstr "Průsvitné pozadí"
 diff --git a/po/cy.po b/po/cy.po
-index 0739e20..8b1ff00 100644
+index 644df82363f1..cd862feb50c0 100644
 --- a/po/cy.po
 +++ b/po/cy.po
-@@ -1447,8 +1447,8 @@ msgid "_Text color:"
+@@ -1167,8 +1167,8 @@ msgid "_Base on:"
+ msgstr "Ei _seilio ar:"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>Gorchymyn</b>"
++msgid "Command"
++msgstr "Gorchymyn"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground and Background</b>"
+@@ -1448,8 +1448,8 @@ msgid "_Text color:"
  msgstr "Lliw'r _testun:"
  
  #: ../src/profile-preferences.glade.h:73
@@ -743,39 +954,48 @@ index 0739e20..8b1ff00 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 68f20ab..1e7acbe 100644
+index 65cfb20d9ad3..8c5c97c7465a 100644
 --- a/po/da.po
 +++ b/po/da.po
-@@ -3195,8 +3195,8 @@ msgstr "_Luk vindue"
- #~ msgid "_Solid color"
- #~ msgstr "_Ensfarvet"
--#~ msgid "_Transparent background"
--#~ msgstr "_Gennemsigtig baggrund"
+@@ -2401,6 +2401,9 @@ msgstr ""
+ #: src/terminal-window.c:3224
+ msgid "C_lose Window"
+ msgstr "_Luk vindue"
++ 
 +msgid "Transparent background"
 +msgstr "Gennemsigtig baggrund"
  
- #~ msgid ""
- #~ "You already have a profile called “%s”. Do you want to create another "
+ #~ msgid "Whether to allow bold text"
+ #~ msgstr "Om fed tekst skal tillades"
 diff --git a/po/de.po b/po/de.po
-index f0f16e0..48efa8f 100644
+index 205f69111437..61b0214daf5b 100644
 --- a/po/de.po
 +++ b/po/de.po
-@@ -3259,8 +3259,8 @@ msgstr "Fenster _schließen"
#~ msgid "Background image _scrolls"
#~ msgstr "Hintergrundbild _folgt Bildlauf"
+@@ -2373,6 +2373,9 @@
msgid "C_lose Window"
msgstr "Fenster _schließen"
  
--#~ msgid "_Transparent background"
--#~ msgstr "_Transparenter Hintergrund"
 +msgid "Transparent background"
 +msgstr "Transparenter Hintergrund"
- #~ msgid "S_hade transparent or image background:"
- #~ msgstr "Transparenz und Bildhintergründe _abdunkeln:"
++
+ #~ msgid "Whether to show menubar in new windows/tabs"
+ #~ msgstr ""
+ #~ "Legt fest, ob in Fenstern/Reitern per Vorgabe die Menüleiste angezeigt "
 diff --git a/po/dz.po b/po/dz.po
-index ecb8fd5..290934a 100644
+index d97e6102b850..a768fe4adc54 100644
 --- a/po/dz.po
 +++ b/po/dz.po
+@@ -1255,8 +1255,8 @@ msgid "_Base on:"
+ msgstr "གཞི་བཞག་སྟེ་:(_B)"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>བརྡ་བཀོད་</b>"
++msgid "Command"
++msgstr "བརྡ་བཀོད་"
+ #: ../src/profile-preferences.glade.h:2
+ #, fuzzy
 @@ -1551,8 +1551,8 @@ msgid "_Text color:"
  msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
  
@@ -788,10 +1008,34 @@ index ecb8fd5..290934a 100644
  #: ../src/profile-preferences.glade.h:78
  #, fuzzy
 diff --git a/po/el.po b/po/el.po
-index 2b0d1de..5bf36a9 100644
+index a32f5b1684f6..7fa98b45e6f5 100644
 --- a/po/el.po
 +++ b/po/el.po
-@@ -2510,3 +2510,6 @@ msgstr "Κ_λείσιμο παραθύρου"
+@@ -2710,17 +2710,17 @@ msgstr "Κ_λείσιμο παραθύρου"
+ #~ msgid "Default size:"
+ #~ msgstr "Προεπιλεγμένο μέγεθος:"
+-#~ msgid "Title"
+-#~ msgstr "Τίτλος"
++msgid "Title"
++msgstr "Τίτλος"
+-#~ msgid "_Title:"
+-#~ msgstr "_Τίτλος:"
++msgid "_Title:"
++msgstr "_Τίτλος:"
+ #~ msgid "Title and Command"
+ #~ msgstr "Τίτλος και εντολή"
+-#~ msgid "Set Title"
+-#~ msgstr "Ορισμός τίτλου"
++msgid "Set Title"
++msgstr "Ορισμός τίτλου"
+ #~ msgid "Current Locale"
+ #~ msgstr "Τρέχουσα τοπική ρύθμιση"
+@@ -2758,3 +2758,6 @@ msgstr "Κ_λείσιμο παραθύρου"
  
  #~ msgid "_Input Methods"
  #~ msgstr "_Μέθοδοι εισαγωγής"
@@ -799,10 +1043,21 @@ index 2b0d1de..5bf36a9 100644
 +msgid "Transparent background"
 +msgstr "Διάφανο παρασκήνιο"
 diff --git a/po/en@shaw.po b/po/en@shaw.po
-index 65f3d41..05dc99d 100644
+index 82b2d53401b2..28f5dc02575b 100644
 --- a/po/en@shaw.po
 +++ b/po/en@shaw.po
-@@ -1467,8 +1467,8 @@ msgid "_Text color:"
+@@ -1212,8 +1212,8 @@ msgid "_Base on:"
+ msgstr "_𐑚𐑱𐑕 𐑪𐑯:"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>𐑒𐑩𐑥𐑭𐑯𐑛</b>"
++msgid "Command"
++msgstr "𐑒𐑩𐑥𐑭𐑯𐑛"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground, Background, Bold and Underline</b>"
+@@ -1468,8 +1468,8 @@ msgid "_Text color:"
  msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
  
  #: ../src/profile-preferences.glade.h:78
@@ -814,10 +1069,21 @@ index 65f3d41..05dc99d 100644
  #: ../src/profile-preferences.glade.h:79
  msgid "_Underline color:"
 diff --git a/po/en_CA.po b/po/en_CA.po
-index c79cbf5..b8b14d2 100644
+index 6c9e0cd73d63..db4aa891dd45 100644
 --- a/po/en_CA.po
 +++ b/po/en_CA.po
-@@ -556,8 +556,8 @@ msgid "_Text color:"
+@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
+ msgstr "<b>Background</b>"
+ #: ../src/gnome-terminal.glade2.h:3
+-msgid "<b>Command</b>"
+-msgstr "<b>Command</b>"
++msgid "Command"
++msgstr "Command"
+ #: ../src/gnome-terminal.glade2.h:4
+ msgid "<b>Compatibility</b>"
+@@ -557,8 +557,8 @@ msgid "_Text color:"
  msgstr "_Text colour:"
  
  #: ../src/gnome-terminal.glade2.h:86
@@ -829,10 +1095,43 @@ index c79cbf5..b8b14d2 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 4d38486..69e7113 100644
+index c9999e204f33..dfbff85bf907 100644
 --- a/po/en_GB.po
 +++ b/po/en_GB.po
-@@ -2732,8 +2732,8 @@ msgstr "_Title:"
+@@ -2796,8 +2796,8 @@ msgstr "C_lose Window"
+ #~ msgid "Default size:"
+ #~ msgstr "Default size:"
+-#~ msgid "Title"
+-#~ msgstr "Title"
++msgid "Title"
++msgstr "Title"
+ #~ msgid "When terminal commands set their o_wn titles:"
+ #~ msgstr "When terminal commands set their o_wn titles:"
+@@ -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 3"
+ #~ msgstr "Switch to Tab 3"
+@@ -2856,8 +2856,8 @@ msgstr "C_lose Window"
+ #~ msgid "_Input Methods"
+ #~ msgstr "_Input Methods"
+-#~ msgid "_Title:"
+-#~ msgstr "_Title:"
++msgid "_Title:"
++msgstr "_Title:"
+ #~ msgid "Add or Remove Terminal Encodings"
+ #~ msgstr "Add or Remove Terminal Encodings"
+@@ -3552,8 +3552,8 @@ msgstr "C_lose Window"
  #~ msgid "Background image _scrolls"
  #~ msgstr "Background image _scrolls"
  
@@ -843,11 +1142,61 @@ index 4d38486..69e7113 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 567c08dc1da8..c59f57c6a8d5 100644
+--- a/po/eo.po
++++ b/po/eo.po
+@@ -2215,8 +2215,8 @@ msgstr "_Fermi la fenestron"
+ #~ msgid "Close Window"
+ #~ msgstr "Fermi la fenestron"
+-#~ msgid "Set Title"
+-#~ msgstr "Agordi titolon"
++msgid "Set Title"
++msgstr "Agordi titolon"
+ #~ msgid "Switch to Tab 2"
+ #~ msgstr "Ŝalti al langeto 2"
+@@ -2299,8 +2299,8 @@ msgstr "_Fermi la fenestron"
+ #~ msgid "_Input Methods"
+ #~ msgstr "_Enigmetodoj"
+-#~ msgid "_Title:"
+-#~ msgstr "_Titolo:"
++msgid "_Title:"
++msgstr "_Titolo:"
+ #~ msgid "On the left side"
+ #~ msgstr "Maldekstre"
 diff --git a/po/es.po b/po/es.po
-index d339099..e8b4159 100644
+index 142347b3720a..9325d95de22f 100644
 --- a/po/es.po
 +++ b/po/es.po
-@@ -3303,8 +3303,8 @@ msgstr "_Cerrar ventana"
+@@ -2741,17 +2741,17 @@ msgstr "_Cerrar ventana"
+ #~ msgid "Default size:"
+ #~ msgstr "Tamaño predeterminado:"
+-#~ msgid "Title"
+-#~ msgstr "Título"
++msgid "Title"
++msgstr "Título"
+-#~ msgid "_Title:"
+-#~ msgstr "_Título:"
++msgid "_Title:"
++msgstr "_Título:"
+ #~ msgid "Title and Command"
+ #~ msgstr "Título y comando"
+-#~ msgid "Set Title"
+-#~ msgstr "Establecer título"
++msgid "Set Title"
++msgstr "Establecer título"
+ #~ msgid "Current Locale"
+ #~ msgstr "Configuración regional actual"
+@@ -3577,8 +3577,8 @@ msgstr "_Cerrar ventana"
  #~ msgid "_Solid color"
  #~ msgstr "Color _sólido"
  
@@ -859,7 +1208,7 @@ index d339099..e8b4159 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 4b1c2a7..7707611 100644
+index 4b1c2a7c67e4..770761168806 100644
 --- a/po/et.po
 +++ b/po/et.po
 @@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
@@ -870,36 +1219,61 @@ index 4b1c2a7..7707611 100644
 +msgid "Transparent background"
 +msgstr "Läbipaistev taust"
 diff --git a/po/eu.po b/po/eu.po
-index 786f9e2..a731d99 100644
+index f3aab7879a6f..543a121f6aac 100644
 --- a/po/eu.po
 +++ b/po/eu.po
-@@ -3011,8 +3011,8 @@ msgstr "It_xi leihoa"
#~ msgid "_Solid color"
#~ msgstr "_Kolore solidoa"
+@@ -2272,6 +2272,9 @@ msgstr "Oraindik prozesu bat exekutatzen
msgid "C_lose Window"
msgstr "It_xi leihoa"
  
--#~ msgid "_Transparent background"
--#~ msgstr "_Atzeko plano gardena"
 +msgid "Transparent background"
 +msgstr "Atzeko plano gardena"
++
+ #~ msgid "Whether to allow bold text"
+ #~ msgstr "Testu-formatu lodia onartzen den"
  
- #~ 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 52856cb..2a89999 100644
+index 8b0ca26eebe5..6079d0c40a1d 100644
 --- a/po/fa.po
 +++ b/po/fa.po
-@@ -2240,3 +2240,6 @@ msgstr "_بستن پنجره"
+@@ -2402,8 +2402,8 @@ msgstr "_بستن پنجره"
+ #~ msgid "Use custom default terminal si_ze"
+ #~ msgstr "استفاده از اندازه‌ی _سفارشی پایانه‌ی پیش‌فرض"
+-#~ msgid "Title"
+-#~ msgstr "عنوان"
++msgid "Title"
++msgstr "عنوان"
+ #~ msgid "When terminal commands set their o_wn titles:"
+ #~ msgstr "وقتی که فرمان‌های پایانه عنوان‌های _خودشان را تنظیم می‌کنند:"
+@@ -2426,8 +2426,8 @@ msgstr "_بستن پنجره"
+ #~ msgid "Close Window"
+ #~ msgstr "بستن پنجره"
  
- #~ msgid "_Title:"
- #~ msgstr "_عنوان:"
+-#~ msgid "Set Title"
+-#~ msgstr "تنظیم عنوان"
++msgid "Set Title"
++msgstr "تنظیم عنوان"
+ #~ msgid "Switch to Tab 2"
+ #~ msgstr "تعویض به زبانه‌ی ۲"
+@@ -2486,5 +2486,8 @@ msgstr "_بستن پنجره"
+ #~ msgid "_Input Methods"
+ #~ msgstr "روش‌های _ورودی"
+-#~ msgid "_Title:"
+-#~ msgstr "_عنوان:"
++msgid "_Title:"
++msgstr "_عنوان:"
 +
 +msgid "Transparent background"
 +msgstr "پس‌زمینه‌ی شفاف"
 diff --git a/po/fi.po b/po/fi.po
-index 02bddc5..cf84950 100644
+index e284b406f040..6e7f402af7bd 100644
 --- a/po/fi.po
 +++ b/po/fi.po
-@@ -2294,6 +2294,9 @@ msgstr "_Sulje ikkuna"
+@@ -2589,6 +2589,9 @@ msgstr "_Sulje ikkuna"
  #~ msgid "_Update login records when command is launched"
  #~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
  
@@ -910,21 +1284,24 @@ index 02bddc5..cf84950 100644
  #~ msgid "Missing command"
  #~ msgstr "Puuttuva komento"
 diff --git a/po/fr.po b/po/fr.po
-index d230aa2..9771335 100644
+index 87a8e0ff46d4..2eacb4584f32 100644
 --- a/po/fr.po
 +++ b/po/fr.po
-@@ -2303,3 +2303,6 @@ msgstr "Fermer _la fenêtre"
+@@ -2452,6 +2452,9 @@ msgstr ""
+ msgid "C_lose Window"
+ msgstr "Fermer _la fenêtre"
  
- #~ msgid "_Same as text color"
- #~ msgstr "_Même couleur que le texte"
-+
 +msgid "Transparent background"
 +msgstr "Arrière-plan transparent"
++
+ #~ msgid "Whether to allow bold text"
+ #~ msgstr "Indique s’il faut autoriser le texte en gras"
 diff --git a/po/fur.po b/po/fur.po
-index 39fe0bb..bc471ab 100644
+index 3f5429cfecd8..e637a6c0dc5f 100644
 --- a/po/fur.po
 +++ b/po/fur.po
-@@ -651,6 +651,10 @@ msgstr ""
+@@ -454,6 +454,10 @@ msgstr ""
  msgid "Which encoding to use"
  msgstr "Codifiche di doprâ"
  
@@ -932,11 +1309,32 @@ index 39fe0bb..bc471ab 100644
 +msgid "Transparent background"
 +msgstr "Fondâl trasparent"
 +
- #: ../src/org.gnome.Terminal.gschema.xml.h:63
+ #: ../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"
++
+ #~ 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"
+-#~ msgid "_Title:"
+-#~ msgstr "_Titul:"
++msgid "_Title:"
++msgstr "_Titul:"
+ #~ msgid ""
+ #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
 diff --git a/po/ga.po b/po/ga.po
-index 93d5fa9..feb87dc 100644
+index 93d5fa9d1481..feb87dce3d6b 100644
 --- a/po/ga.po
 +++ b/po/ga.po
 @@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
@@ -947,24 +1345,53 @@ index 93d5fa9..feb87dc 100644
 +msgid "Transparent background"
 +msgstr "Cúlra trédhearcach"
 diff --git a/po/gl.po b/po/gl.po
-index a858849..7fadccd 100644
+index 4ae0f6a0935c..fa643dc89659 100644
 --- a/po/gl.po
 +++ b/po/gl.po
-@@ -3241,8 +3241,8 @@ msgstr "P_echar a xanela"
- #~ msgid "Background image _scrolls"
- #~ msgstr "A imaxe de fondo _desprázase"
--#~ msgid "_Transparent background"
--#~ msgstr "Fondo _transparente"
+@@ -2418,3 +2418,6 @@ msgstr ""
+ #: src/terminal-window.c:3224
+ msgid "C_lose Window"
+ msgstr "P_echar a xanela"
++
 +msgid "Transparent background"
 +msgstr "Fondo transparente"
- #~ msgid "S_hade transparent or image background:"
- #~ msgstr "_Sombra transparente ou imaxe de fondo:"
 diff --git a/po/gu.po b/po/gu.po
-index 0bcb195..f72a807 100644
+index 76b459cf8dc5..485beeac98b7 100644
 --- a/po/gu.po
 +++ b/po/gu.po
+@@ -2155,8 +2155,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
+ #~ msgid "Default size:"
+ #~ msgstr "મૂળભૂત માપ:"
+-#~ msgid "Title"
+-#~ msgstr "શીર્ષક"
++msgid "Title"
++msgstr "શીર્ષક"
+ #~ msgid "When terminal commands set their o_wn titles:"
+ #~ msgstr "જ્યારે આદેશો તેમના પોતાના શીર્ષકો સુયોજીત કરે (_w):"
+@@ -2176,8 +2176,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
+ #~ msgid "Close Window"
+ #~ msgstr "વિન્ડો બંધ કરો"
+-#~ msgid "Set Title"
+-#~ msgstr "શીર્ષકની ગોઠવણી કરો"
++msgid "Set Title"
++msgstr "શીર્ષકની ગોઠવણી કરો"
+ #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
+ #~ msgstr "ટુંકાણ કી “%s“ એ પહેલાથી ક્રિયા “%s“ સાથે બંધાયેલી છે"
+@@ -2203,8 +2203,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
+ #~ msgid "_Input Methods"
+ #~ msgstr "ઈનપુટ માટેની પધ્ધિતિઓ (_I)"
+-#~ msgid "_Title:"
+-#~ msgstr "શીર્ષક (_T):"
++msgid "_Title:"
++msgstr "શીર્ષક (_T):"
+ #~ msgid "Keyboard shortcut to switch to tab 1"
+ #~ msgstr "ટૅબ ૧ પર જવા માટે કીબોર્ડનું ટુંકાણ"
 @@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
  #~ msgid "_Solid color"
  #~ msgstr "ઘટ્ટ રંગ (_S)"
@@ -977,10 +1404,34 @@ index 0bcb195..f72a807 100644
  #~ msgid "No such profile \"%s\", using default profile\n"
  #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
 diff --git a/po/he.po b/po/he.po
-index 0c2420e..7a25a26 100644
+index 57cb2d0d110f..efe8fa100074 100644
 --- a/po/he.po
 +++ b/po/he.po
-@@ -3189,8 +3189,8 @@ msgstr "סגירת ה_חלון"
+@@ -2333,17 +2333,17 @@ msgstr "סגירת ה_חלון"
+ #~ msgid "Default size:"
+ #~ msgstr "גודל בררת מחדל:"
+-#~ msgid "Title"
+-#~ msgstr "כותרת"
++msgid "Title"
++msgstr "כותרת"
+-#~ msgid "_Title:"
+-#~ msgstr "_כותרת:"
++msgid "_Title:"
++msgstr "_כותרת:"
+ #~ msgid "Title and Command"
+ #~ msgstr "כותרת ופקודה"
+-#~ msgid "Set Title"
+-#~ msgstr "הגדרת כותרת"
++msgid "Set Title"
++msgstr "הגדרת כותרת"
+ #~ msgid "Current Locale"
+ #~ msgstr "השפה הנוכחית"
+@@ -3194,8 +3194,8 @@ msgstr "סגירת ה_חלון"
  #~ msgid "_Solid color"
  #~ msgstr "צבע _אחיד"
  
@@ -992,10 +1443,44 @@ index 0c2420e..7a25a26 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 2d7dc5b..adf8d35 100644
+index 2d7dc5b14008..8d3d0529df61 100644
 --- a/po/hi.po
 +++ b/po/hi.po
-@@ -2979,8 +2979,8 @@ msgstr "विंडो बंद करें (_l)"
+@@ -2267,9 +2267,8 @@ msgstr "विंडो बंद करें (_l)"
+ #~ msgid "Use custom default terminal si_ze"
+ #~ msgstr "कस्टम डिफ़ॉल्ट टर्मिनल आकार का उपयोग करें (_z)"
+-#~| msgid "_Title:"
+-#~ msgid "Title"
+-#~ msgstr "शीर्षक"
++msgid "Title"
++msgstr "शीर्षक"
+ #~ msgid "When terminal commands set their o_wn titles:"
+ #~ msgstr "जब टर्मिनल कमांड उनका अपना शीर्षक सेट करता है (_w):"
+@@ -2289,8 +2288,8 @@ msgstr "विंडो बंद करें (_l)"
+ #~ msgid "Close Window"
+ #~ msgstr "विंडो बंद करें"
+-#~ msgid "Set Title"
+-#~ msgstr "शीर्षक नियत करें"
++msgid "Set Title"
++msgstr "शीर्षक नियत करें"
+ #~ msgid "Switch to Tab 2"
+ #~ msgstr "टैब 2 पर जाएँ"
+@@ -2349,8 +2348,8 @@ msgstr "विंडो बंद करें (_l)"
+ #~ msgid "_Input Methods"
+ #~ msgstr "इनपुट विधियाँ (_I)"
+-#~ msgid "_Title:"
+-#~ msgstr "शीर्षक (_T):"
++msgid "_Title:"
++msgstr "शीर्षक (_T):"
+ #~ msgid "Disable connection to session manager"
+ #~ msgstr "सत्र प्रबंधक में कनेक्शन निष्क्रिय करें"
+@@ -2979,8 +2978,8 @@ msgstr "विंडो बंद करें (_l)"
  #~ msgid "_Background image"
  #~ msgstr "पृष्ठभूमि छवि (_B)"
  
@@ -1007,36 +1492,44 @@ index 2d7dc5b..adf8d35 100644
  #~ msgid "S/Key Challenge Response"
  #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
 diff --git a/po/hr.po b/po/hr.po
-index cb48c52..747cf48 100644
+index aec2eaa8bac1..207b5c774b32 100644
 --- a/po/hr.po
 +++ b/po/hr.po
-@@ -1362,8 +1362,8 @@ msgid "_Text color:"
- msgstr "_Boja teksta:"
+@@ -2565,3 +2565,7 @@ msgstr "_Zatvori prozor"
  
- #: ../src/profile-preferences.glade.h:69
--msgid "_Transparent background"
--msgstr "_Prozirna pozadina"
+ #~ msgid "Use transparency from system theme"
+ #~ msgstr "Koristi prozirnost iz teme sustava"
++
++#: ../src/profile-preferences.glade.h:69
 +msgid "Transparent background"
 +msgstr "Prozirna pozadina"
- #: ../src/profile-preferences.glade.h:70
- msgid "_Update login records when command is launched"
 diff --git a/po/hu.po b/po/hu.po
-index 381dd15..500c08a 100644
+index 401ae619d5d2..b6e96230111b 100644
 --- a/po/hu.po
 +++ b/po/hu.po
-@@ -2713,3 +2713,6 @@ msgstr "_Ablak bezárása"
#~ msgid "Background image"
#~ msgstr "Háttérkép"
+@@ -2318,3 +2318,6 @@
+ #: ../src/terminal-window.c:3256
msgid "C_lose Window"
msgstr "_Ablak bezárása"
 +
 +msgid "Transparent background"
 +msgstr "Áttetsző háttér"
 diff --git a/po/hy.po b/po/hy.po
-index 5584901..caadbba 100644
+index aaf2d9b292da..4d466f164420 100644
 --- a/po/hy.po
 +++ b/po/hy.po
-@@ -1011,8 +1011,8 @@ msgid "_Text color:"
+@@ -757,8 +757,8 @@ msgid "_Base on:"
+ msgstr ""
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>Հրաման</b>"
++msgid "Command"
++msgstr "Հրաման"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground and Background</b>"
+@@ -1012,8 +1012,8 @@ msgid "_Text color:"
  msgstr "_Տեքստի գույնը՝"
  
  #: ../src/profile-preferences.glade.h:73
@@ -1048,44 +1541,60 @@ index 5584901..caadbba 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 595a325..99c29b6 100644
+index 9198218c5aaa..9f2fbd0c9d4c 100644
 --- a/po/id.po
 +++ b/po/id.po
-@@ -2058,3 +2058,6 @@ msgstr ""
- #: ../src/terminal-window.c:3694
+@@ -2392,6 +2392,9 @@ msgstr ""
  msgid "C_lose Window"
  msgstr "Tutup Jende_la"
-+
 +msgid "Transparent background"
 +msgstr "Latar belakang transparan"
++
+ #~ msgid "Hindi"
+ #~ msgstr "Hindi"
 diff --git a/po/it.po b/po/it.po
-index 909a8c9..2c46e9c 100644
+index 632667207c17..2cd93716f4f9 100644
 --- a/po/it.po
 +++ b/po/it.po
-@@ -2284,3 +2284,7 @@ msgstr ""
- #: ../src/terminal-window.c:3727
+@@ -2348,3 +2348,6 @@ msgstr ""
+ #: ../src/terminal-window.c:3354
  msgid "C_lose Window"
  msgstr "Chiudi _finestra"
 +
-+#, fuzzy
 +msgid "Transparent background"
 +msgstr "Sfondo trasparente"
 diff --git a/po/ja.po b/po/ja.po
-index f7235d9..63d7fd7 100644
+index 9a18d3db624f..bbfd18e6ab24 100644
 --- a/po/ja.po
 +++ b/po/ja.po
-@@ -1907,3 +1907,6 @@ msgstr "ウィンドウを閉じる(_L)"
+@@ -2294,6 +2294,9 @@
+ msgid "C_lose Window"
+ msgstr "ウィンドウを閉じる(_L)"
  
- #~ msgid "_Update login records when command is launched"
- #~ msgstr "コマンドを実行した時にログイン記録を更新する(_U)"
-+
 +msgid "Transparent background"
 +msgstr "透過な画像にする"
++
+ #~ msgid "Verbose output"
+ #~ msgstr "詳細な出力"
 diff --git a/po/ka.po b/po/ka.po
-index 8415e88..3717b7e 100644
+index 2a0bc91fad40..c289e30eb4fa 100644
 --- a/po/ka.po
 +++ b/po/ka.po
-@@ -568,7 +568,7 @@ msgstr "_ტექსტის ფერი:"
+@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
+ msgstr "b>ფონი</b>"
+ #: ../src/gnome-terminal.glade2.h:3
+-msgid "<b>Command</b>"
+-msgstr "<b>ბრძანება</b>"
++msgid "Command"
++msgstr "ბრძანება"
+ #: ../src/gnome-terminal.glade2.h:4
+ msgid "<b>Compatibility</b>"
+@@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერი:"
  
  #: ../src/gnome-terminal.glade2.h:86
  #, fuzzy
@@ -1095,43 +1604,95 @@ index 8415e88..3717b7e 100644
  
  #: ../src/gnome-terminal.glade2.h:87
 diff --git a/po/kk.po b/po/kk.po
-index 3573937..862b095 100644
+index 2811b7ec6239..d4239e5d12c5 100644
 --- a/po/kk.po
 +++ b/po/kk.po
-@@ -2208,3 +2208,6 @@ msgstr "Терезені жа_бу"
+@@ -2547,3 +2547,6 @@ msgstr "Терезені жа_бу"
  
  #~ msgid "Be quiet"
  #~ msgstr "Тыныш болу"
 +
 +msgid "Transparent background"
 +msgstr "Мөлдір фон"
+diff --git a/po/km.po b/po/km.po
+index 352897d2963b..b6db9394a307 100644
+--- a/po/km.po
++++ b/po/km.po
+@@ -2909,8 +2909,8 @@ msgstr "បិទ​បង្អួច"
+ #~ msgid "Background image _scrolls"
+ #~ msgstr "រមូរ​រូបភាព​ផ្ទៃខាងក្រោយ"
+-#~ msgid "_Transparent background"
+-#~ msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
++msgid "Transparent background"
++msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
+ #~ msgid "S_hade transparent or image background:"
+ #~ msgstr "ដាក់​ស្រមោល​ផ្ទៃខាងក្រោយ​ថ្លា ឬ​ផ្ទៃខាងក្រោយ​​រូបភាព ៖"
 diff --git a/po/kn.po b/po/kn.po
-index c887f88..e899ef3 100644
+index c887f88a2c87..0fc1c3139258 100644
 --- a/po/kn.po
 +++ b/po/kn.po
-@@ -2344,3 +2344,6 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
+@@ -2261,8 +2261,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
+ #~ msgid "Use custom default terminal si_ze"
+ #~ msgstr "ಅಗತ್ಯಾನುಗುಣ ಆದೇಶತೆರೆ ಗಾತ್ರವನ್ನು ಬಳಸು (_z)"
+-#~ msgid "Title"
+-#~ msgstr "ಶೀರ್ಷಿಕೆ"
++msgid "Title"
++msgstr "ಶೀರ್ಷಿಕೆ"
+ #~ msgid "When terminal commands set their o_wn titles:"
+ #~ msgstr "ಆದೇಶಗಳು ತಮ್ಮದೆ ಆದ ಹೆಸರಗಳನ್ನು ಇರಿಸಿಕೊಂಡಾಗ (_w):"
+@@ -2282,8 +2282,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
+ #~ msgid "Close Window"
+ #~ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು"
+-#~ msgid "Set Title"
+-#~ msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
++msgid "Set Title"
++msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
+ #~ msgid "Switch to Tab 2"
+ #~ msgstr "2 ನೆ ಟ್ಯಾಬ್‌ಗೆ ಬದಲಾಯಿಸಿ"
+@@ -2342,5 +2342,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
+ #~ msgid "_Input Methods"
+ #~ msgstr "ಇನ್‌ಪುಟ್ ಕ್ರಮಗಳು (_I)"
  
- #~ msgid "_Title:"
- #~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
+-#~ msgid "_Title:"
+-#~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
++msgid "_Title:"
++msgstr "ಶೀರ್ಷಿಕೆ(_T):"
 +
 +msgid "Transparent background"
 +msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
 diff --git a/po/ko.po b/po/ko.po
-index eba5008..72ebbe7 100644
+index d1be8c3fdab8..02de5aa11be1 100644
 --- a/po/ko.po
 +++ b/po/ko.po
-@@ -2304,3 +2304,6 @@ msgstr "창 닫기(_L)"
+@@ -2292,3 +2292,6 @@ msgstr "창 닫기(_L)"
  
- #~ msgid "Whether to use a dark theme variant"
- #~ msgstr "어두운 테마를 사용할 지 여부"
+ #~ msgid "Verbose output"
+ #~ msgstr "많이 출력"
 +
 +msgid "Transparent background"
 +msgstr "투명한 배경"
 diff --git a/po/ku.po b/po/ku.po
-index 221825b..96e3581 100644
+index bc2bb7f03de4..d2a83a007097 100644
 --- a/po/ku.po
 +++ b/po/ku.po
-@@ -557,8 +557,8 @@ msgid "_Text color:"
+@@ -223,8 +223,8 @@ msgid "<b>Background</b>"
+ msgstr "<b>Zemîn</b>"
+ #: ../src/gnome-terminal.glade2.h:3
+-msgid "<b>Command</b>"
+-msgstr "<b>Ferman</b>"
++msgid "Command"
++msgstr "Ferman"
+ #: ../src/gnome-terminal.glade2.h:4
+ msgid "<b>Compatibility</b>"
+@@ -558,8 +558,8 @@ msgid "_Text color:"
  msgstr "Rengê _nivîsê:"
  
  #: ../src/gnome-terminal.glade2.h:86
@@ -1143,10 +1704,10 @@ index 221825b..96e3581 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 974c353..6b16746 100644
+index e8b7622e5d46..c6fe38021b6a 100644
 --- a/po/lt.po
 +++ b/po/lt.po
-@@ -2310,3 +2310,6 @@ msgstr "_Užverti langą"
+@@ -2571,3 +2571,6 @@ msgstr "_Užverti langą"
  
  #~ msgid "Whether to use a dark theme variant"
  #~ msgstr "Ar naudoti tamsų temos variantą"
@@ -1154,20 +1715,32 @@ index 974c353..6b16746 100644
 +msgid "Transparent background"
 +msgstr "Permatomas fonas"
 diff --git a/po/lv.po b/po/lv.po
-index 0892f4b..a6aec64 100644
+index 47d9e75b1ee8..a8dad3bc0d6b 100644
 --- a/po/lv.po
 +++ b/po/lv.po
-@@ -2231,3 +2231,5 @@ msgstr ""
- msgid "C_lose Window"
- msgstr "Aizvērt _logu"
-
+@@ -2578,3 +2578,6 @@ msgstr "Aizvērt _logu"
+ #~ msgid "_Add or Remove…"
+ #~ msgstr "_Pievienot vai izņemt…"
++
 +msgid "Transparent background"
 +msgstr "Caurspīdīgs fons"
 diff --git a/po/mai.po b/po/mai.po
-index 9b984a0..a3c0e17 100644
+index 715d0b9e1c82..0f31634e4f2e 100644
 --- a/po/mai.po
 +++ b/po/mai.po
-@@ -1290,8 +1290,8 @@ msgid "_Text color:"
+@@ -1044,8 +1044,8 @@ msgid "_Base on:"
+ msgstr "आधार पर: (_B)"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>कमांड</b>"
++msgid "Command"
++msgstr "कमांड"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground and Background</b>"
+@@ -1291,8 +1291,8 @@ msgid "_Text color:"
  msgstr "पाठ रँग (_T):"
  
  #: ../src/profile-preferences.glade.h:69
@@ -1179,10 +1752,21 @@ index 9b984a0..a3c0e17 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 1c1895c..a805417 100644
+index 99fa0f5e4059..a216602569af 100644
 --- a/po/mg.po
 +++ b/po/mg.po
-@@ -566,8 +566,8 @@ msgid "_Text color:"
+@@ -220,8 +220,8 @@ msgid "<b>Background</b>"
+ msgstr "<b>Afara</b>"
+ #: ../src/gnome-terminal.glade2.h:3
+-msgid "<b>Command</b>"
+-msgstr "<b>Baiko</b>"
++msgid "Command"
++msgstr "Baiko"
+ #: ../src/gnome-terminal.glade2.h:4
+ msgid "<b>Compatibility</b>"
+@@ -567,8 +567,8 @@ msgid "_Text color:"
  msgstr "Lokon'ny _soratra:"
  
  #: ../src/gnome-terminal.glade2.h:86
@@ -1194,10 +1778,21 @@ index 1c1895c..a805417 100644
  #: ../src/gnome-terminal.glade2.h:87
  msgid "_Update login records when command is launched"
 diff --git a/po/mk.po b/po/mk.po
-index e31378a..d2b74d4 100644
+index 4fe43192fe57..a5a874b49c59 100644
 --- a/po/mk.po
 +++ b/po/mk.po
-@@ -1166,8 +1166,8 @@ msgid "_Text color:"
+@@ -863,8 +863,8 @@ msgid "_Base on:"
+ msgstr "_Базирано на:"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>Команда</b>"
++msgid "Command"
++msgstr "Команда"
+ #: ../src/profile-preferences.glade.h:2
+ #| msgid "<b>Foreground and Background</b>"
+@@ -1167,8 +1167,8 @@ msgid "_Text color:"
  msgstr "_Боја на текстот:"
  
  #: ../src/profile-preferences.glade.h:77
@@ -1209,25 +1804,32 @@ index e31378a..d2b74d4 100644
  #: ../src/profile-preferences.glade.h:78
  #| msgid "_Text color:"
 diff --git a/po/ml.po b/po/ml.po
-index cc1928d..62abd21 100644
+index a23f4cc4f1ae..49caa9efe94f 100644
 --- a/po/ml.po
 +++ b/po/ml.po
-@@ -2751,8 +2751,8 @@ msgstr "ടെര്‍മിനല്‍ അ_ടയ്ക്കുക"
- #~ msgid "_Solid color"
- #~ msgstr "_സോളിഡ് നിറം"
+@@ -2461,3 +2461,6 @@ msgstr "ജാലകം അടയ്ക്കുക (_l)"
  
--#~ msgid "_Transparent background"
--#~ msgstr "_പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
+ #~ msgid "_Unlimited"
+ #~ msgstr "പരിധിയില്ല (_U)"
++
 +msgid "Transparent background"
 +msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
- #~ msgid "S/Key Challenge Response"
- #~ msgstr "S/Key ചാലഞ്ച് മറുപടി"
 diff --git a/po/mn.po b/po/mn.po
-index 4922041..9696b7f 100644
+index 2f9d86072d1c..09c4437d10f9 100644
 --- a/po/mn.po
 +++ b/po/mn.po
-@@ -617,8 +617,8 @@ msgid "_Text color:"
+@@ -217,8 +217,8 @@ msgid "<b>Background</b>"
+ msgstr "<b>Дэвсгэр</b>"
+ #: ../src/gnome-terminal.glade2.h:2
+-msgid "<b>Command</b>"
+-msgstr "<b>Тушаал</b>"
++msgid "Command"
++msgstr "Тушаал"
+ #: ../src/gnome-terminal.glade2.h:3
+ msgid "<b>Compatibility</b>"
+@@ -618,8 +618,8 @@ msgid "_Text color:"
  msgstr "_Текстийн өнгө:"
  
  #: ../src/gnome-terminal.glade2.h:102
@@ -1239,9 +1841,42 @@ index 4922041..9696b7f 100644
  #: ../src/gnome-terminal.glade2.h:103
  msgid "_Update login records when command is launched"
 diff --git a/po/mr.po b/po/mr.po
-index 61997da..50451d7 100644
+index 61997dafbd03..9c7dc77abd22 100644
 --- a/po/mr.po
 +++ b/po/mr.po
+@@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा (_l)"
+ #~ msgid "Default size:"
+ #~ msgstr "पूर्वनिर्धारीत आकार:"
+-#~ msgid "Title"
+-#~ msgstr "शीर्षक"
++msgid "Title"
++msgstr "शीर्षक"
+ #~ msgid "When terminal commands set their o_wn titles:"
+ #~ msgstr "जेव्हा टर्मिनल आदेश स्वतःचे शिर्षक निश्चित करते (_w):"
+@@ -2240,8 +2240,8 @@ msgstr "चौकट बंद करा (_l)"
+ #~ msgid "Close Window"
+ #~ msgstr "चौकट बंद करा"
+-#~ msgid "Set Title"
+-#~ msgstr "शिर्षक निश्चित करा"
++msgid "Set Title"
++msgstr "शिर्षक निश्चित करा"
+ #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
+ #~ msgstr "“%s” ही शार्टकट कि “%s” या कृतीशी संलग्न आहे"
+@@ -2267,8 +2267,8 @@ msgstr "चौकट बंद करा (_l)"
+ #~ msgid "_Input Methods"
+ #~ msgstr "इनपुट पध्दती (_I)"
+-#~ msgid "_Title:"
+-#~ msgstr "शिर्षक (_T):"
++msgid "_Title:"
++msgstr "शिर्षक (_T):"
+ #~ msgid "Keyboard shortcut to switch to tab 1"
+ #~ msgstr "टॅब 1 वापरण्याकरीता कळफलक शॉर्टकट"
 @@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
  #~ msgid "_Solid color"
  #~ msgstr "गडद रंग (_S)"
@@ -1254,36 +1889,46 @@ index 61997da..50451d7 100644
  #~ msgid "Disabled"
  #~ msgstr "अकार्यान्वीतित"
 diff --git a/po/ms.po b/po/ms.po
-index 5b663aa..38a2afe 100644
+index f2ebd4851d3b..f3d44c9c6294 100644
 --- a/po/ms.po
 +++ b/po/ms.po
-@@ -630,8 +630,8 @@ msgid "_Text color:"
- msgstr "Warna _Teks:"
+@@ -2502,6 +2502,9 @@ msgstr ""
+ msgid "C_lose Window"
+ msgstr "T_utup Tetingkap"
  
- #: ../src/gnome-terminal.glade2.h:102
--msgid "_Transparent background"
--msgstr "LatarBelakang _Telus"
 +msgid "Transparent background"
 +msgstr "LatarBelakang Telus"
++
+ #~ msgid "Accelerator key"
+ #~ msgstr "Kekunci pemecut"
  
- #: ../src/gnome-terminal.glade2.h:103
- msgid "_Update login records when command is launched"
 diff --git a/po/nb.po b/po/nb.po
-index ff66807..8ea486c 100644
+index 683acfe5221e..3dc97ee17fec 100644
 --- a/po/nb.po
 +++ b/po/nb.po
-@@ -2101,3 +2101,6 @@ msgstr ""
- #: ../src/terminal-window.c:3726
+@@ -2261,3 +2261,6 @@ msgstr ""
+ #: ../src/terminal-window.c:3210
  msgid "C_lose Window"
  msgstr "_Lukk vindu"
 +
 +msgid "Transparent background"
 +msgstr "Gjennomsiktig bakgrunn"
 diff --git a/po/nds.po b/po/nds.po
-index 98a1287..94fd757 100644
+index 82f930b1cc0c..d52fbd94eb58 100644
 --- a/po/nds.po
 +++ b/po/nds.po
-@@ -995,8 +995,8 @@ msgid "_Text color:"
+@@ -748,8 +748,8 @@ msgid "_Base on:"
+ msgstr "_Steiht op:"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>Order</b>"
++msgid "Command"
++msgstr "Order"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground and Background</b>"
+@@ -996,8 +996,8 @@ msgid "_Text color:"
  msgstr "_Textklöör:"
  
  #: ../src/profile-preferences.glade.h:73
@@ -1295,7 +1940,7 @@ index 98a1287..94fd757 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 4fe16cc..d9a90ad 100644
+index 4fe16cc88a9a..53fb89134be0 100644
 --- a/po/ne.po
 +++ b/po/ne.po
 @@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
@@ -1309,22 +1954,55 @@ index 4fe16cc..d9a90ad 100644
  
  #~ msgid "_Use the system fixed width font"
  #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
+@@ -3052,8 +3052,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
+ #~ msgid "Close Tab"
+ #~ msgstr "ट्याब बन्द गर्नुहोस्"
+-#~ msgid "Set Title"
+-#~ msgstr "शीर्षक सेट गर्नुहोस्"
++msgid "Set Title"
++msgstr "शीर्षक सेट गर्नुहोस्"
+ #~ msgid "Switch to Tab 2"
+ #~ msgstr "ट्याब २ मा स्विच गर्नुहोस्"
+@@ -3232,8 +3232,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
+ #~ msgid "_Input Methods"
+ #~ msgstr "आगत विधि"
+-#~ msgid "_Title:"
+-#~ msgstr "शीर्षक:"
++msgid "_Title:"
++msgstr "शीर्षक:"
+ #~ msgid ""
+ #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
 diff --git a/po/nl.po b/po/nl.po
-index a51720b..111b032 100644
+index 5f070152cade..560e472f0917 100644
 --- a/po/nl.po
 +++ b/po/nl.po
-@@ -2352,3 +2352,6 @@ msgstr "Venster sl_uiten"
+@@ -2596,3 +2596,6 @@ msgstr "Venster sl_uiten"
  
- #~ msgid "Switch to Tab 12"
- #~ msgstr "Ga naar tab 12"
+ #~ msgid "_Add or Remove…"
+ #~ msgstr "_Toevoegen of verwijderen…"
 +
-+msgid "Transparent background"
-+msgstr "Transparante achtergrond"
++msgid "Title"
++msgstr "Titel"
 diff --git a/po/nn.po b/po/nn.po
-index 91cd6ab..9284459 100644
+index 5aa43b113ed9..f892290c256f 100644
 --- a/po/nn.po
 +++ b/po/nn.po
-@@ -1428,8 +1428,8 @@ msgid "_Text color:"
+@@ -1149,8 +1149,8 @@ msgid "_Base on:"
+ msgstr "_Tuft på:"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>Kommando</b>"
++msgid "Command"
++msgstr "Kommando"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground and Background</b>"
+@@ -1429,8 +1429,8 @@ msgid "_Text color:"
  msgstr "_Tekstfarge:"
  
  #: ../src/profile-preferences.glade.h:73
@@ -1336,10 +2014,32 @@ index 91cd6ab..9284459 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 29a9030..87f6f9e 100644
+index 9a6f6186019a..6e51ea2f8980 100644
 --- a/po/oc.po
 +++ b/po/oc.po
-@@ -3419,8 +3419,8 @@ msgstr "Tampar _la fenèstra"
+@@ -2944,8 +2944,8 @@ msgstr "Tampar _la fenèstra"
+ #~ msgid "Save as..."
+ #~ msgstr "Enregistrar jos..."
+-#~ msgid "_Title:"
+-#~ msgstr "_Títol :"
++msgid "_Title:"
++msgstr "_Títol :"
+ #~ msgid "_Detach tab"
+ #~ msgstr "Des_tacar l'onglet"
+@@ -3405,8 +3405,8 @@ msgstr "Tampar _la fenèstra"
+ #~ msgid "_Use the system fixed width font"
+ #~ msgstr "_Utilizar la poliça de chassa fixa del sistèma"
+-#~ msgid "Set Title"
+-#~ msgstr "Definir lo títol"
++msgid "Set Title"
++msgstr "Definir lo títol"
+ #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
+ #~ msgstr "L'acorchi de clavièr « %s » es ja atribuit a l'accion « %s »"
+@@ -3723,8 +3723,8 @@ msgstr "Tampar _la fenèstra"
  #~ msgid "Run;"
  #~ msgstr "Executar;Consòla;Shell;"
  
@@ -1351,7 +2051,7 @@ index 29a9030..87f6f9e 100644
  #~ msgid ""
  #~ "A subset of possible encodings are presented in the Encoding submenu. "
 diff --git a/po/or.po b/po/or.po
-index ec1e6bf..218acd7 100644
+index ec1e6bfb9a28..218acd712df6 100644
 --- a/po/or.po
 +++ b/po/or.po
 @@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
@@ -1366,10 +2066,51 @@ index ec1e6bf..218acd7 100644
  #~ msgid "S_hade transparent or image background:"
  #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
 diff --git a/po/pa.po b/po/pa.po
-index 9c95b66..5e5b8ba 100644
+index 1cb4b46dc2aa..2bdd01fecaab 100644
 --- a/po/pa.po
 +++ b/po/pa.po
-@@ -3008,8 +3008,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
+@@ -2718,10 +2718,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
+ #~ msgid "GNOME Terminal Client"
+ #~ msgstr "ਗਨੋਮ ਟਰਮੀਨਲ ਕਲਾਇਟ"
+-#~| msgid "Terminal"
+-#~ msgctxt "title"
+-#~ msgid "'Terminal'"
+-#~ msgstr "'ਟਰਮੀਨਲ'"
++msgctxt "title"
++msgid "'Terminal'"
++msgstr "'ਟਰਮੀਨਲ'"
+ #~ msgid "Title for terminal"
+ #~ msgstr "ਟਰਮੀਨਲ ਲਈ ਟਾਈਟਲ"
+@@ -2766,11 +2765,11 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
+ #~ msgid "Default size:"
+ #~ msgstr "ਡਿਫਾਲਟ ਸਾਈਜ਼:"
+-#~ msgid "Title"
+-#~ msgstr "ਟਾਈਟਲ"
++msgid "Title"
++msgstr "ਟਾਈਟਲ"
+-#~ msgid "_Title:"
+-#~ msgstr "ਟਾਈਟਲ(_T):"
++msgid "_Title:"
++msgstr "ਟਾਈਟਲ(_T):"
+ #~ msgid "Title and Command"
+ #~ msgstr "ਟਾਈਟਲ ਅਤੇ ਕਮਾਂਡ"
+@@ -2778,8 +2777,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
+ #~ msgid "_Unlimited"
+ #~ msgstr "ਬੇਅੰਤ(_U)"
+-#~ msgid "Set Title"
+-#~ msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
++msgid "Set Title"
++msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
+ #~ msgid "Current Locale"
+ #~ msgstr "ਮੌਜੂਦ ਲੋਕੇਲ"
+@@ -3559,8 +3558,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
  #~ msgid "_Solid color"
  #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
  
@@ -1381,10 +2122,21 @@ index 9c95b66..5e5b8ba 100644
  #~ msgid "S/Key Challenge Response"
  #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
 diff --git a/po/ps.po b/po/ps.po
-index b1de52c..a16ac49 100644
+index b25a2cb41712..3855b2f3423f 100644
 --- a/po/ps.po
 +++ b/po/ps.po
-@@ -1052,8 +1052,8 @@ msgid "_Text color:"
+@@ -810,8 +810,8 @@ msgid "_Base on:"
+ msgstr ":پر بنسټ د_"
+ #: ../src/profile-preferences.glade.h:1
+-msgid "<b>Command</b>"
+-msgstr "<b>بولۍ</b>"
++msgid "Command"
++msgstr "بولۍ"
+ #: ../src/profile-preferences.glade.h:2
+ msgid "<b>Foreground and Background</b>"
+@@ -1053,8 +1053,8 @@ msgid "_Text color:"
  msgstr ":د ليکنې رنګ_"
  
  #: ../src/profile-preferences.glade.h:69
@@ -1396,10 +2148,37 @@ index b1de52c..a16ac49 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 a361c66..ac7297e 100644
+index 5181419ad973..3df37f6d5bc7 100644
 --- a/po/pt.po
 +++ b/po/pt.po
-@@ -3033,8 +3033,8 @@ msgstr "Fechar jane_La"
+@@ -2360,11 +2360,11 @@ msgstr "Fechar jane_la"
+ #~ msgid "Default size:"
+ #~ msgstr "Tamanho predefinido:"
+-#~ msgid "Title"
+-#~ msgstr "Título"
++msgid "Title"
++msgstr "Título"
+-#~ msgid "_Title:"
+-#~ msgstr "_Título:"
++msgid "_Title:"
++msgstr "_Título:"
+ #~ msgid "Title and Command"
+ #~ msgstr "Título e comando"
+@@ -2372,8 +2372,8 @@ msgstr "Fechar jane_la"
+ #~ msgid "_Unlimited"
+ #~ msgstr "_Ilimitado"
+-#~ msgid "Set Title"
+-#~ msgstr "Definir o Título"
++msgid "Set Title"
++msgstr "Definir o Título"
+ #~ msgid "Current Locale"
+ #~ msgstr "Configuração Regional Atual"
+@@ -3160,8 +3160,8 @@ msgstr "Fechar jane_la"
  #~ msgid "Background image _scrolls"
  #~ msgstr "Imagem de fundo _rola"
  
@@ -1411,10 +2190,34 @@ index a361c66..ac7297e 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 25cfa6e..94a8df6 100644
+index c40dba26b08a..9be7eec414e9 100644
 --- a/po/pt_BR.po
 +++ b/po/pt_BR.po
-@@ -3056,3 +3056,6 @@ msgstr "_Fechar janela"
+@@ -2687,17 +2687,17 @@ msgstr "_Fechar janela"
+ #~ msgid "Default size:"
+ #~ msgstr "Tamanho padrão:"
+-#~ msgid "Title"
+-#~ msgstr "Título"
++msgid "Title"
++msgstr "Título"
+-#~ msgid "_Title:"
+-#~ msgstr "_Título:"
++msgid "_Title:"
++msgstr "_Título:"
+ #~ msgid "Title and Command"
+ #~ msgstr "Título e comando"
+-#~ msgid "Set Title"
+-#~ msgstr "Definir título"
++msgid "Set Title"
++msgstr "Definir título"
+ #~ msgid "Current Locale"
+ #~ msgstr "Codificação atual"
+@@ -3323,3 +3323,6 @@ msgstr "_Fechar janela"
  #~ "terminal poderão usar. Essa é a paleta, na forma de uma lista de nomes de "
  #~ "cores separada por dois pontos. Os nomes de cores devem estar no formato "
  #~ "hexadecimal. Exemplo: \"#FF00FF\""
@@ -1422,36 +2225,36 @@ index 25cfa6e..94a8df6 100644
 +msgid "Transparent background"
 +msgstr "Fundo transparente"
 diff --git a/po/ro.po b/po/ro.po
-index 179dd77..f7fc7ae 100644
+index 53dd72be9c45..d694adf36934 100644
 --- a/po/ro.po
 +++ b/po/ro.po
-@@ -1576,8 +1576,8 @@ msgid "_Text color:"
- msgstr "Culoare _text:"
+@@ -3412,8 +3412,8 @@ msgstr "Î_nchide fereastra"
+ #~ msgid "_Solid color"
+ #~ msgstr "Culoare _solidă"
  
- #: ../src/profile-preferences.glade.h:77
--msgid "_Transparent background"
--msgstr "Fundal _transparent"
+-#~ msgid "_Transparent background"
+-#~ msgstr "Fundal _transparent"
 +msgid "Transparent background"
 +msgstr "Fundal transparent"
  
- #: ../src/profile-preferences.glade.h:78
msgid "_Underline color:"
+ #~ msgid "_Unlimited"
#~ msgstr "_Neliminat"
 diff --git a/po/ru.po b/po/ru.po
-index 8ff3d59..9b3342d 100644
+index fedc4d3ec51c..c08bffcb4d10 100644
 --- a/po/ru.po
 +++ b/po/ru.po
-@@ -2318,3 +2318,6 @@ msgstr "_Закрыть окно"
+@@ -2539,3 +2539,6 @@ msgstr "_Закрыть окно"
  
- #~ msgid "_Same as text color"
- #~ msgstr "_ЦвеÑ\82 ÐºÐ°Ðº Ñ\83 Ð¾Ð±Ñ\8bÑ\87ного Ñ\82екÑ\81Ñ\82а"
+ #~ msgid "_Add or Remove…"
+ #~ msgstr "_Ð\94обавиÑ\82Ñ\8c Ð¸Ð»Ð¸ Ñ\83далиÑ\82Ñ\8câ\80¦"
 +
 +msgid "Transparent background"
 +msgstr "Прозрачный фон"
 diff --git a/po/rw.po b/po/rw.po
-index 3f02231..b7fff4c 100644
+index 012f64e325c3..5ff633f8b3c2 100644
 --- a/po/rw.po
 +++ b/po/rw.po
-@@ -748,7 +748,7 @@ msgstr "Ibara ry'Inyandiko..."
+@@ -749,7 +749,7 @@ msgstr "Ibara ry'Inyandiko..."
  
  #: ../src/gnome-terminal.glade2.h:102
  #, fuzzy
@@ -1460,11 +2263,30 @@ index 3f02231..b7fff4c 100644
  msgstr "Mbuganyuma"
  
  #: ../src/gnome-terminal.glade2.h:103
+@@ -2398,7 +2398,6 @@ msgstr ""
+ # sch/source\ui\app\menu.src:RID_MENU.WORKAROUND_22.SID_INSERT_TITLE.text
+ #: ../src/terminal-screen.c:2005
+-#, fuzzy
+ msgid "_Title:"
+ msgstr "Umutwe..."
 diff --git a/po/si.po b/po/si.po
-index 81dbf65..5cb0e5a 100644
+index adca7d5acba9..6379cee7f0a3 100644
 --- a/po/si.po
 +++ b/po/si.po
-@@ -537,8 +537,8 @@ msgid "_Text color:"
+@@ -218,8 +218,8 @@ msgid "<b>Background</b>"
+ msgstr "<b>පසුබිම</b>"
+ #: ../src/gnome-terminal.glade2.h:3
+-msgid "<b>Command</b>"
+-msgstr "<b>විධානය</b>"
++msgid "Command"
++msgstr "විධානය"
+ #: ../src/gnome-terminal.glade2.h:4
+ msgid "<b>Compatibility</b>"
+@@ -538,8 +538,8 @@ msgid "_Text color:"
  msgstr "පෙළ වර්‍ණ: (_T)"
  
  #: ../src/gnome-terminal.glade2.h:86
@@ -1476,10 +2298,10 @@ index 81dbf65..5cb0e5a 100644
  #: ../src/gnome-terminal.glade2.h:87
  msgid "_Update login records when command is launched"
 diff --git a/po/sk.po b/po/sk.po
-index 03ac832..e97eb61 100644
+index d0282159b459..01dd96a06939 100644
 --- a/po/sk.po
 +++ b/po/sk.po
-@@ -2585,3 +2585,6 @@ msgstr "_Zavrieť okno"
+@@ -2916,3 +2916,6 @@ msgstr "_Zavrieť okno"
  #~ "\n"
  #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
  #~ "help“.\n"
@@ -1487,10 +2309,34 @@ index 03ac832..e97eb61 100644
 +msgid "Transparent background"
 +msgstr "Priehľadné pozadie"
 diff --git a/po/sl.po b/po/sl.po
-index 72baf7b..83ad04a 100644
+index db9cb98834fe..261abe9c1e64 100644
 --- a/po/sl.po
 +++ b/po/sl.po
-@@ -2322,3 +2322,6 @@ msgstr "_Zapri okno"
+@@ -2663,17 +2663,17 @@ msgstr "_Zapri okno"
+ #~ msgid "Default size:"
+ #~ msgstr "Privzeta velikost:"
+-#~ msgid "Title"
+-#~ msgstr "Naslov"
++msgid "Title"
++msgstr "Naslov"
+-#~ msgid "_Title:"
+-#~ msgstr "_Naziv:"
++msgid "_Title:"
++msgstr "_Naziv:"
+ #~ msgid "Title and Command"
+ #~ msgstr "Naziv in ukaz"
+-#~ msgid "Set Title"
+-#~ msgstr "Določitev naziva okna"
++msgid "Set Title"
++msgstr "Določitev naziva okna"
+ #~ msgid "Current Locale"
+ #~ msgstr "Trenutne jezikovne nastavitve"
+@@ -2788,3 +2788,6 @@ msgstr "_Zapri okno"
  
  #~ msgid "_Profile Preferences…"
  #~ msgstr "Možnosti _profila ..."
@@ -1498,10 +2344,21 @@ index 72baf7b..83ad04a 100644
 +msgid "Transparent background"
 +msgstr "Prosojno ozadje"
 diff --git a/po/sq.po b/po/sq.po
-index e59c0b6..6fb4090 100644
+index 158f6cb167cc..a3494fb70bd6 100644
 --- a/po/sq.po
 +++ b/po/sq.po
-@@ -567,8 +567,8 @@ msgstr "Ngjyra e _tekstit:"
+@@ -225,8 +225,8 @@ msgid "<b>Background</b>"
+ msgstr "<b>Sfondi</b>"
+ #: ../src/gnome-terminal.glade2.h:3
+-msgid "<b>Command</b>"
+-msgstr "<b>Komanda</b>"
++msgid "Command"
++msgstr "Komanda"
+ #: ../src/gnome-terminal.glade2.h:4
+ msgid "<b>Compatibility</b>"
+@@ -568,8 +568,8 @@ msgstr "Ngjyra e _tekstit:"
  
  # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
  #: ../src/gnome-terminal.glade2.h:85
@@ -1513,32 +2370,114 @@ index e59c0b6..6fb4090 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 799352b..bad0c4e 100644
+index 8bf15f3250a4..81a73722c616 100644
 --- a/po/sr.po
 +++ b/po/sr.po
-@@ -2424,3 +2424,6 @@ msgstr "_Затвори прозор"
- #~ msgid "Close Window"
- #~ msgstr "Затвори прозор"
+@@ -2576,10 +2576,9 @@ msgstr "_Затвори прозор"
+ #~ msgid "GNOME Terminal Client"
+ #~ msgstr "Клијент Гномовог терминала"
+-#~| msgid "Terminal"
+-#~ msgctxt "title"
+-#~ msgid "'Terminal'"
+-#~ msgstr "„Терминал“"
++msgctxt "title"
++msgid "'Terminal'"
++msgstr "„Терминал“"
+ #~ msgid "Title for terminal"
+ #~ msgstr "Наслов за терминал"
+@@ -2625,11 +2624,11 @@ msgstr "_Затвори прозор"
+ #~ msgid "Default size:"
+ #~ msgstr "Основна величина:"
+-#~ msgid "Title"
+-#~ msgstr "Наслов"
++msgid "Title"
++msgstr "Наслов"
+-#~ msgid "_Title:"
+-#~ msgstr "_Наслов:"
++msgid "_Title:"
++msgstr "_Наслов:"
+ #~ msgid "Title and Command"
+ #~ msgstr "Наслов и наредба"
+@@ -2637,8 +2636,8 @@ msgstr "_Затвори прозор"
+ #~ msgid "_Unlimited"
+ #~ msgstr "_Неограничено"
+-#~ msgid "Set Title"
+-#~ msgstr "Постави наслов"
++msgid "Set Title"
++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 318a7a1..aa759aa 100644
+index 45dbad07fba7..852c47cc6ee5 100644
 --- a/po/sr@latin.po
 +++ b/po/sr@latin.po
-@@ -2424,3 +2424,6 @@ msgstr "_Zatvori prozor"
- #~ msgid "Close Window"
- #~ msgstr "Zatvori prozor"
+@@ -2576,10 +2576,9 @@ msgstr "_Zatvori prozor"
+ #~ msgid "GNOME Terminal Client"
+ #~ msgstr "Klijent Gnomovog terminala"
+-#~| msgid "Terminal"
+-#~ msgctxt "title"
+-#~ msgid "'Terminal'"
+-#~ msgstr "„Terminal“"
++msgctxt "title"
++msgid "'Terminal'"
++msgstr "„Terminal“"
+ #~ msgid "Title for terminal"
+ #~ msgstr "Naslov za terminal"
+@@ -2625,11 +2624,11 @@ msgstr "_Zatvori prozor"
+ #~ msgid "Default size:"
+ #~ msgstr "Osnovna veličina:"
+-#~ msgid "Title"
+-#~ msgstr "Naslov"
++msgid "Title"
++msgstr "Naslov"
+-#~ msgid "_Title:"
+-#~ msgstr "_Naslov:"
++msgid "_Title:"
++msgstr "_Naslov:"
+ #~ msgid "Title and Command"
+ #~ msgstr "Naslov i naredba"
+@@ -2637,8 +2636,8 @@ msgstr "_Zatvori prozor"
+ #~ msgid "_Unlimited"
+ #~ msgstr "_Neograničeno"
+-#~ msgid "Set Title"
+-#~ msgstr "Postavi naslov"
++msgid "Set Title"
++msgstr "Postavi naslov"
+ #~ 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 38b9426..0ad3def 100644
+index 8560fde55941..bd1030f519ab 100644
 --- a/po/sv.po
 +++ b/po/sv.po
-@@ -2281,5 +2281,8 @@ msgstr "Stän_g fönster"
+@@ -2572,5 +2572,8 @@ msgstr "Stän_g fönster"
  #~ msgid "Unknown completion request for \"%s\""
  #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
  
@@ -1548,10 +2487,62 @@ index 38b9426..0ad3def 100644
  #~ msgid "Missing command"
  #~ msgstr "Kommando saknas"
 diff --git a/po/ta.po b/po/ta.po
-index 80aa2f6..61185b4 100644
+index 80aa2f684eec..afd335b0faf0 100644
 --- a/po/ta.po
 +++ b/po/ta.po
-@@ -3028,8 +3028,8 @@ msgstr "_l சாளரத்தை மூடவும்"
+@@ -2171,10 +2171,9 @@ msgstr "_l சாளரத்தை மூடவும்"
+ #~ msgid "Show server options"
+ #~ msgstr "சேவையக தேர்வுகளை காட்டுக"
+-#~| msgid "Terminal"
+-#~ msgctxt "title"
+-#~ msgid "'Terminal'"
+-#~ msgstr "'முனையம்'"
++msgctxt "title"
++msgid "'Terminal'"
++msgstr "'முனையம்'"
+ #~ msgid "Title for terminal"
+ #~ msgstr "முனையத்தின் தலைப்பு"
+@@ -2221,11 +2220,11 @@ msgstr "_l சாளரத்தை மூடவும்"
+ #~ msgid "Default size:"
+ #~ msgstr "முன்னிருப்பு அளவு:"
+-#~ msgid "Title"
+-#~ msgstr "தலைப்பு"
++msgid "Title"
++msgstr "தலைப்பு"
+-#~ msgid "_Title:"
+-#~ msgstr "_T தலைப்பு:"
++msgid "_Title:"
++msgstr "_T தலைப்பு:"
+ #~ msgid "Title and Command"
+ #~ msgstr "தலைப்பும் கட்டளையும்"
+@@ -2233,8 +2232,8 @@ msgstr "_l சாளரத்தை மூடவும்"
+ #~ msgid "_Unlimited"
+ #~ msgstr "_U வரையரை இல்லாத"
+-#~ msgid "Set Title"
+-#~ msgstr "தலைப்பை அமைக்க"
++msgid "Set Title"
++msgstr "தலைப்பை அமைக்க"
+ #~| msgid "_Terminal"
+ #~ msgid "_About Terminal"
+@@ -2243,8 +2242,8 @@ msgstr "_l சாளரத்தை மூடவும்"
+ #~ msgid "Current Locale"
+ #~ msgstr "தற்போதைய மொழி"
+-#~ msgid "_Set Title…"
+-#~ msgstr "(_S) தலைப்பை அமைக்க..."
++msgid "_Set Title…"
++msgstr "(_S) தலைப்பை அமைக்க..."
+ #~ msgid "_Next Tab"
+ #~ msgstr "அடுத்த கீற்று (_N)"
+@@ -3028,8 +3027,8 @@ msgstr "_l சாளரத்தை மூடவும்"
  #~ msgid "_Solid color"
  #~ msgstr "(_S) ஒரே வண்ணம்"
  
@@ -1563,10 +2554,59 @@ index 80aa2f6..61185b4 100644
  #~ msgid "No such profile \"%s\", using default profile\n"
  #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
 diff --git a/po/te.po b/po/te.po
-index 000cda3..6dcf793 100644
+index 82c0e0fc8f54..0dd3d871f639 100644
 --- a/po/te.po
 +++ b/po/te.po
-@@ -2898,8 +2898,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
+@@ -2055,10 +2055,9 @@ msgstr "కిటికీని మూసివేయి (_l)"
+ #~ msgid "Show server options"
+ #~ msgstr "సేవకము ఐచ్చికాలను చూపించు"
+-#, fuzzy
+-#~ msgctxt "title"
+-#~ msgid "'Terminal'"
+-#~ msgstr "టెర్మినల్"
++msgctxt "title"
++msgid "'Terminal'"
++msgstr "టెర్మినల్"
+ #~ msgid "Title for terminal"
+ #~ msgstr "టెర్మినల్ కు శీర్షిక"
+@@ -2104,11 +2103,11 @@ msgstr "కిటికీని మూసివేయి (_l)"
+ #~ msgid "Default size:"
+ #~ msgstr "అప్రమేయ పరిమాణం:"
+-#~ msgid "Title"
+-#~ msgstr "శీర్షిక:"
++msgid "Title"
++msgstr "శీర్షిక:"
+-#~ msgid "_Title:"
+-#~ msgstr "శీర్షిక (_T):"
++msgid "_Title:"
++msgstr "శీర్షిక (_T):"
+ #~ msgid "Title and Command"
+ #~ msgstr "శీర్షిక మరియు ఆదేశం"
+@@ -2116,14 +2115,14 @@ msgstr "కిటికీని మూసివేయి (_l)"
+ #~ msgid "_Unlimited"
+ #~ msgstr "అపరిమితమైన (_U)"
+-#~ msgid "Set Title"
+-#~ msgstr "శీర్షికను అమర్చు"
++msgid "Set Title"
++msgstr "శీర్షికను అమర్చు"
+ #~ msgid "Current Locale"
+ #~ msgstr "ప్రస్తుత స్థానికం"
+-#~ msgid "_Set Title…"
+-#~ msgstr "శీర్షికను అమర్చు... (_S)"
++msgid "_Set Title…"
++msgstr "శీర్షికను అమర్చు... (_S)"
+ #~ msgid "_Next Tab"
+ #~ msgstr "తరువాతి ట్యాబ్(_N)"
+@@ -2898,8 +2897,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
  #~ msgid "Background image _scrolls"
  #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
  
@@ -1577,11 +2617,79 @@ index 000cda3..6dcf793 100644
  
  #~ msgid "S_hade transparent or image background:"
  #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
+diff --git a/po/tg.po b/po/tg.po
+index e3feef658e1e..6371c036626f 100644
+--- a/po/tg.po
++++ b/po/tg.po
+@@ -2158,23 +2158,23 @@ msgstr "П_ӯшонидани равзана"
+ #~ msgid "Default size:"
+ #~ msgstr "Андозаи пешфарз:"
+-#~ msgid "Title"
+-#~ msgstr "Сарлавҳа"
++msgid "Title"
++msgstr "Сарлавҳа"
+-#~ msgid "_Title:"
+-#~ msgstr "_Вазифа:"
++msgid "_Title:"
++msgstr "_Вазифа:"
+ #~ msgid "Title and Command"
+ #~ msgstr "Унвон ва Фармон"
+-#~ msgid "Set Title"
+-#~ msgstr "Таъин кардани сарлавҳа"
++msgid "Set Title"
++msgstr "Таъин кардани сарлавҳа"
+ #~ msgid "Current Locale"
+ #~ msgstr "Маҳаллигардонии ҷорӣ"
+-#~ msgid "_Set Title…"
+-#~ msgstr "_Танзими сарлавҳа..."
++msgid "_Set Title…"
++msgstr "_Танзими сарлавҳа..."
+ #~ msgid "_Next Tab"
+ #~ msgstr "_Варақаи навбатӣ"
 diff --git a/po/th.po b/po/th.po
-index 91c78cc..1f1fa48 100644
+index 63263749655c..496da331bbf9 100644
 --- a/po/th.po
 +++ b/po/th.po
-@@ -2676,8 +2676,8 @@ msgstr "ปิ_ดหน้าต่าง"
+@@ -2308,23 +2308,23 @@ msgstr "ปิ_ดหน้าต่าง"
+ #~ msgid "Default size:"
+ #~ msgstr "ขนาดปริยาย:"
+-#~ msgid "Title"
+-#~ msgstr "หัวเรื่อง"
++msgid "Title"
++msgstr "หัวเรื่อง"
+-#~ msgid "_Title:"
+-#~ msgstr "_หัวเรื่อง:"
++msgid "_Title:"
++msgstr "_หัวเรื่อง:"
+ #~ msgid "Title and Command"
+ #~ msgstr "หัวเรื่องและคำสั่ง"
+-#~ msgid "Set Title"
+-#~ msgstr "ตั้งหัวเรื่อง"
++msgid "Set Title"
++msgstr "ตั้งหัวเรื่อง"
+ #~ msgid "Current Locale"
+ #~ msgstr "ตามโลแคลปัจจุบัน"
+-#~ msgid "_Set Title…"
+-#~ msgstr "ตั้งป้าย_ชื่อ…"
++msgid "_Set Title…"
++msgstr "ตั้งป้าย_ชื่อ…"
+ #~ msgid "_Next Tab"
+ #~ msgstr "แท็บ_ถัดไป"
+@@ -2803,8 +2803,8 @@ msgstr "ปิ_ดหน้าต่าง"
  #~ msgid "_Solid color"
  #~ msgstr "สี_ทึบ"
  
@@ -1593,18 +2701,18 @@ index 91c78cc..1f1fa48 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 f7c68e6..316587c 100644
+index fa79334e08dc..5b988d7dbd4a 100644
 --- a/po/tr.po
 +++ b/po/tr.po
-@@ -1963,3 +1963,6 @@ msgstr "Hala bir süreç bu uçbirimde çalışıyor. Uçbirimi kapatmak onu son
- #: ../src/terminal-window.c:3694
msgid "C_lose Window"
msgstr "_Pencereyi Kapat"
+@@ -2558,3 +2558,6 @@ msgstr "_Pencereyi Kapat"
#~ msgid "_Same as text color"
#~ msgstr "_Metin rengiyle aynı"
 +
 +msgid "Transparent background"
 +msgstr "Şeffaf arkaplan"
 diff --git a/po/ug.po b/po/ug.po
-index 1673bb3..e21e61e 100644
+index 313f76b98eae..be6089762082 100644
 --- a/po/ug.po
 +++ b/po/ug.po
 @@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
@@ -1619,25 +2727,54 @@ index 1673bb3..e21e61e 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 0a04bc6..c097f0c 100644
+index a08f25914d12..a4fbcbe6e474 100644
 --- a/po/uk.po
 +++ b/po/uk.po
-@@ -3126,8 +3126,8 @@ msgstr "Закр_ити вікно"
- #~ msgid "_Solid color"
- #~ msgstr "_Суцільний колір"
--#~ msgid "_Transparent background"
--#~ msgstr "П_розоре тло"
+@@ -2399,3 +2399,6 @@ msgstr ""
+ #: src/terminal-window.c:3224
+ msgid "C_lose Window"
+ msgstr "Закр_ити вікно"
++
 +msgid "Transparent background"
 +msgstr "Прозоре тло"
- #~ msgid "Switch to Tab 2"
- #~ msgstr "До вкладки 2"
 diff --git a/po/vi.po b/po/vi.po
-index 9036f38..5cbcc8c 100644
+index 67eb9326545f..5a279ad647b6 100644
 --- a/po/vi.po
 +++ b/po/vi.po
-@@ -2690,3 +2690,6 @@ msgstr "Đón_g cửa sổ"
+@@ -2673,8 +2673,8 @@ msgstr "Đón_g cửa sổ"
+ #~ msgid "Default size:"
+ #~ msgstr "Cỡ mặc định:"
+-#~ msgid "Title"
+-#~ msgstr "Tựa đề"
++msgid "Title"
++msgstr "Tựa đề"
+ #~ 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:"
+@@ -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 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õ"
+-#~ msgid "_Title:"
+-#~ msgstr "_Tựa đề:"
++msgid "_Title:"
++msgstr "_Tựa đề:"
+ #~ 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,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."
@@ -1645,10 +2782,21 @@ index 9036f38..5cbcc8c 100644
 +msgid "Transparent background"
 +msgstr "Nền trong suốt"
 diff --git a/po/wa.po b/po/wa.po
-index 2856571..f068531 100644
+index 0e0a6a752b6d..5ddeb2393654 100644
 --- a/po/wa.po
 +++ b/po/wa.po
-@@ -563,8 +563,8 @@ msgid "_Text color:"
+@@ -224,8 +224,8 @@ msgid "<b>Background</b>"
+ msgstr "<b>Fond</b>"
+ #: ../src/gnome-terminal.glade2.h:3
+-msgid "<b>Command</b>"
+-msgstr "<b>Comande</b>"
++msgid "Command"
++msgstr "Comande"
+ #: ../src/gnome-terminal.glade2.h:4
+ msgid "<b>Compatibility</b>"
+@@ -564,8 +564,8 @@ msgid "_Text color:"
  msgstr "Coleur pol _tecse:"
  
  #: ../src/gnome-terminal.glade2.h:86
@@ -1659,11 +2807,33 @@ index 2856571..f068531 100644
  
  #: ../src/gnome-terminal.glade2.h:87
  msgid "_Update login records when command is launched"
+@@ -2227,8 +2227,8 @@ msgid "Change _Profile"
+ msgstr "Candjî _profil"
+ #: ../src/terminal-window.c:1013
+-msgid "_Set Title..."
+-msgstr "_Candjî l' tite..."
++msgid "_Set Title…"
++msgstr "_Candjî l' tite…"
+ #: ../src/terminal-window.c:1020
+ msgid "Set _Character Encoding"
 diff --git a/po/xh.po b/po/xh.po
-index e5981c6..7f9f804 100644
+index 44a8e21c7842..12aa6d190d99 100644
 --- a/po/xh.po
 +++ b/po/xh.po
-@@ -620,8 +620,8 @@ msgid "_Text color:"
+@@ -217,8 +217,8 @@ msgid "<b>Background</b>"
+ msgstr "<b>Okungasemva</b>"
+ #: ../src/gnome-terminal.glade2.h:2
+-msgid "<b>Command</b>"
+-msgstr "<b>Umyalelo</b>"
++msgid "Command"
++msgstr "Umyalelo"
+ #: ../src/gnome-terminal.glade2.h:3
+ msgid "<b>Compatibility</b>"
+@@ -621,8 +621,8 @@ msgid "_Text color:"
  msgstr "_Umbala wombhalo:"
  
  #: ../src/gnome-terminal.glade2.h:102
@@ -1674,11 +2844,46 @@ index e5981c6..7f9f804 100644
  
  #: ../src/gnome-terminal.glade2.h:103
  msgid "_Update login records when command is launched"
+@@ -2265,8 +2265,8 @@ msgid "Change _Profile"
+ msgstr "Tsintsha i_Nkangeleko"
+ #: ../src/terminal-window.c:979
+-msgid "_Set Title..."
+-msgstr "_Misela..."
++msgid "_Set Title…"
++msgstr "_Misela…"
+ #: ../src/terminal-window.c:986
+ msgid "Set _Character Encoding"
 diff --git a/po/zh_CN.po b/po/zh_CN.po
-index e9a540f..8473524 100644
+index 6c80dcd1231a..51e5f9999176 100644
 --- a/po/zh_CN.po
 +++ b/po/zh_CN.po
-@@ -2357,3 +2357,6 @@ msgstr "关闭窗口(_L)"
+@@ -2580,17 +2580,17 @@ msgstr "关闭窗口(_L)"
+ #~ msgid "Default size:"
+ #~ msgstr "默认大小:"
+-#~ msgid "Title"
+-#~ msgstr "标题"
++msgid "Title"
++msgstr "标题"
+-#~ msgid "_Title:"
+-#~ msgstr "标题(_T):"
++msgid "_Title:"
++msgstr "标题(_T):"
+ #~ msgid "Title and Command"
+ #~ msgstr "标题和命令"
+-#~ msgid "Set Title"
+-#~ msgstr "设置标题"
++msgid "Set Title"
++msgstr "设置标题"
+ #~ msgid "Current Locale"
+ #~ msgstr "当前区域"
+@@ -2703,3 +2703,6 @@ msgstr "关闭窗口(_L)"
  
  #~ msgid "_Find..."
  #~ msgstr "查找(_F)..."
@@ -1686,9 +2891,33 @@ index e9a540f..8473524 100644
 +msgid "Transparent background"
 +msgstr "透明背景"
 diff --git a/po/zh_HK.po b/po/zh_HK.po
-index eb0ede7..aceb184 100644
+index 61153529f0c7..c366abddd1af 100644
 --- a/po/zh_HK.po
 +++ b/po/zh_HK.po
+@@ -2114,17 +2114,17 @@ msgstr "關閉視窗(_L)"
+ #~ msgid "Default size:"
+ #~ msgstr "預設大小:"
+-#~ msgid "Title"
+-#~ msgstr "標題"
++msgid "Title"
++msgstr "標題"
+-#~ msgid "_Title:"
+-#~ msgstr "標題(_T):"
++msgid "_Title:"
++msgstr "標題(_T):"
+ #~ msgid "Title and Command"
+ #~ msgstr "標題及指令"
+-#~ msgid "Set Title"
+-#~ msgstr "設定標題"
++msgid "Set Title"
++msgstr "設定標題"
+ #~ msgid "Current Locale"
+ #~ msgstr "目前的地區設定"
 @@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
  
  #~ msgid "Show session management options"
@@ -1697,10 +2926,34 @@ index eb0ede7..aceb184 100644
 +msgid "Transparent background"
 +msgstr "透明背景"
 diff --git a/po/zh_TW.po b/po/zh_TW.po
-index e85dda1..f69fd98 100644
+index b9890ad91bdc..18e55e2e945c 100644
 --- a/po/zh_TW.po
 +++ b/po/zh_TW.po
-@@ -2558,3 +2558,6 @@ msgstr "關閉視窗(_L)"
+@@ -2562,17 +2562,17 @@ msgstr "關閉視窗(_L)"
+ #~ msgid "Default size:"
+ #~ msgstr "預設大小:"
+-#~ msgid "Title"
+-#~ msgstr "標題"
++msgid "Title"
++msgstr "標題"
+-#~ msgid "_Title:"
+-#~ msgstr "標題(_T):"
++msgid "_Title:"
++msgstr "標題(_T):"
+ #~ msgid "Title and Command"
+ #~ msgstr "標題及指令"
+-#~ msgid "Set Title"
+-#~ msgstr "設定標題"
++msgid "Set Title"
++msgstr "設定標題"
+ #~ msgid "Current Locale"
+ #~ msgstr "目前的地區設定"
+@@ -2784,3 +2784,6 @@ msgstr "關閉視窗(_L)"
  
  #~ msgid "Show session management options"
  #~ msgstr "顯示作業階段管理選項"
@@ -1708,5 +2961,4 @@ index e85dda1..f69fd98 100644
 +msgid "Transparent background"
 +msgstr "透明背景"
 -- 
-2.5.0
-
+2.19.1
This page took 0.316474 seconds and 4 git commands to generate.