2016-08-18 10:08:51 +00:00
|
|
|
|
From 45b796a6e499ece54e2b9bc7e61e008f03826acf Mon Sep 17 00:00:00 2001
|
2015-02-18 15:46:24 +00:00
|
|
|
|
From: Debarshi Ray <debarshir@gnome.org>
|
|
|
|
|
Date: Mon, 12 May 2014 14:57:18 +0200
|
2016-02-18 18:38:04 +00:00
|
|
|
|
Subject: [PATCH 1/6] Restore transparency
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
The transparency settings were removed as a side effect of
|
|
|
|
|
2bff4b63ed3ceef6055e35563e9b0b33ad57349d
|
|
|
|
|
|
|
|
|
|
This restores them and you will need a compositing window manager to
|
|
|
|
|
use it. The background image setting, also known as faux transparency,
|
|
|
|
|
was not restored.
|
|
|
|
|
|
|
|
|
|
The transparency checkbox lost its mnemonic accelerator because 't'
|
|
|
|
|
is already taken and using any other letter would make it hard to
|
|
|
|
|
restore the translations of the string.
|
|
|
|
|
---
|
|
|
|
|
src/org.gnome.Terminal.gschema.xml | 10 +++++
|
|
|
|
|
src/profile-editor.c | 11 +++++
|
|
|
|
|
src/profile-preferences.ui | 92 ++++++++++++++++++++++++++++++++++++++
|
|
|
|
|
src/terminal-schemas.h | 3 ++
|
|
|
|
|
src/terminal-screen.c | 22 ++++++++-
|
|
|
|
|
src/terminal-window.c | 7 +++
|
|
|
|
|
6 files changed, 144 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
|
|
diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index c031c8ace24a..7bdd156e36aa 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/src/org.gnome.Terminal.gschema.xml
|
|
|
|
|
+++ b/src/org.gnome.Terminal.gschema.xml
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -370,6 +370,16 @@
|
2015-02-18 15:46:24 +00:00
|
|
|
|
<default>'narrow'</default>
|
|
|
|
|
<summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
|
|
|
|
|
</key>
|
|
|
|
|
+ <key name="use-transparent-background" type="b">
|
|
|
|
|
+ <default>false</default>
|
|
|
|
|
+ <summary>Whether to use a transparent background</summary>
|
|
|
|
|
+ </key>
|
|
|
|
|
+ <key name="background-transparency-percent" type="i">
|
|
|
|
|
+ <default>50</default>
|
|
|
|
|
+ <range min="0" max="100"/>
|
|
|
|
|
+ <summary>Adjust the amount of transparency</summary>
|
|
|
|
|
+ <description>A value between 0 and 100, where 0 is opaque and 100 is fully transparent.</description>
|
|
|
|
|
+ </key>
|
|
|
|
|
</schema>
|
|
|
|
|
|
|
|
|
|
<!-- Keybinding settings -->
|
|
|
|
|
diff --git a/src/profile-editor.c b/src/profile-editor.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 82cc7a9a36b7..fd5f55c93d0c 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/src/profile-editor.c
|
|
|
|
|
+++ b/src/profile-editor.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1213,7 +1213,18 @@ terminal_profile_edit (GSettings *profile,
|
2015-02-18 15:46:24 +00:00
|
|
|
|
"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
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 9c0094687ffd..9caf72da0f14 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- 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>
|
|
|
|
|
</object>
|
|
|
|
|
+ <object class="GtkAdjustment" id="background-transparent-adjustment">
|
|
|
|
|
+ <property name="upper">100</property>
|
|
|
|
|
+ <property name="step_increment">1</property>
|
|
|
|
|
+ <property name="page_increment">10</property>
|
|
|
|
|
+ </object>
|
2016-03-03 13:40:41 +00:00
|
|
|
|
<object class="GtkListStore" id="cjk-ambiguous-width-model">
|
2015-02-18 15:46:24 +00:00
|
|
|
|
<columns>
|
|
|
|
|
<!-- column-name gchararray -->
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -1035,6 +1040,93 @@
|
2015-02-18 15:46:24 +00:00
|
|
|
|
<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>
|
|
|
|
|
diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 4b734a3961d1..e434075d86af 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/src/terminal-schemas.h
|
|
|
|
|
+++ b/src/terminal-schemas.h
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -69,6 +69,9 @@ G_BEGIN_DECLS
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#define TERMINAL_PROFILE_VISIBLE_NAME_KEY "visible-name"
|
|
|
|
|
#define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY "word-char-exceptions"
|
|
|
|
|
|
|
|
|
|
+#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND "use-transparent-background"
|
|
|
|
|
+#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent"
|
|
|
|
|
+
|
|
|
|
|
#define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close"
|
|
|
|
|
#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
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 9a0b450bd310..eab0cec3fc90 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/src/terminal-screen.c
|
|
|
|
|
+++ b/src/terminal-screen.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -827,7 +827,9 @@ terminal_screen_profile_changed_cb (GSettings *profile,
|
2016-03-03 13:40:41 +00:00
|
|
|
|
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) ||
|
2015-02-18 15:46:24 +00:00
|
|
|
|
- prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY))
|
|
|
|
|
+ prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY) ||
|
|
|
|
|
+ prop_name == I_(TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND) ||
|
|
|
|
|
+ prop_name == I_(TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT))
|
|
|
|
|
update_color_scheme (screen);
|
|
|
|
|
|
|
|
|
|
if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -897,6 +899,8 @@ update_color_scheme (TerminalScreen *screen)
|
2016-03-03 13:40:41 +00:00
|
|
|
|
GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
|
|
|
|
|
GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
|
2015-02-18 15:46:24 +00:00
|
|
|
|
GtkStyleContext *context;
|
|
|
|
|
+ GtkWidget *toplevel;
|
|
|
|
|
+ gboolean transparent;
|
2016-03-03 13:40:41 +00:00
|
|
|
|
gboolean use_theme_colors;
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (widget);
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -938,6 +942,18 @@ update_color_scheme (TerminalScreen *screen)
|
2016-03-03 13:40:41 +00:00
|
|
|
|
}
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
|
|
|
|
|
+
|
|
|
|
|
+ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
|
|
|
|
|
+ if (transparent)
|
|
|
|
|
+ {
|
|
|
|
|
+ gint transparency_percent;
|
|
|
|
|
+
|
|
|
|
|
+ transparency_percent = g_settings_get_int (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT);
|
|
|
|
|
+ bg.alpha = (100 - transparency_percent) / 100.0;
|
|
|
|
|
+ }
|
|
|
|
|
+ else
|
|
|
|
|
+ bg.alpha = 1.0;
|
|
|
|
|
+
|
|
|
|
|
vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
|
|
|
|
|
colors, n_colors);
|
|
|
|
|
vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -945,6 +961,10 @@ update_color_scheme (TerminalScreen *screen)
|
2016-03-03 13:40:41 +00:00
|
|
|
|
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);
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+ toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
|
|
|
|
|
+ if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
|
|
|
|
|
+ gtk_widget_set_app_paintable (toplevel, transparent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
diff --git a/src/terminal-window.c b/src/terminal-window.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index b86e76fe69fc..f10a6e7fdfc5 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/src/terminal-window.c
|
|
|
|
|
+++ b/src/terminal-window.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -2629,6 +2629,8 @@ terminal_window_init (TerminalWindow *window)
|
2015-02-18 15:46:24 +00:00
|
|
|
|
TerminalWindowPrivate *priv;
|
|
|
|
|
TerminalApp *app;
|
|
|
|
|
TerminalSettingsList *profiles_list;
|
|
|
|
|
+ GdkScreen *screen;
|
|
|
|
|
+ GdkVisual *visual;
|
|
|
|
|
GtkActionGroup *action_group;
|
|
|
|
|
GtkAction *action;
|
|
|
|
|
GtkUIManager *manager;
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -2642,6 +2644,11 @@ terminal_window_init (TerminalWindow *window)
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
gtk_widget_init_template (GTK_WIDGET (window));
|
|
|
|
|
|
|
|
|
|
+ screen = gtk_widget_get_screen (GTK_WIDGET (window));
|
|
|
|
|
+ visual = gdk_screen_get_rgba_visual (screen);
|
|
|
|
|
+ if (visual != NULL)
|
|
|
|
|
+ gtk_widget_set_visual (GTK_WIDGET (window), visual);
|
|
|
|
|
+
|
|
|
|
|
uuid_generate (u);
|
|
|
|
|
uuid_unparse (u, uuidstr);
|
|
|
|
|
priv->uuid = g_strdup (uuidstr);
|
|
|
|
|
--
|
2016-08-18 10:08:51 +00:00
|
|
|
|
2.7.4
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
|
2016-08-18 10:08:51 +00:00
|
|
|
|
From a5f8f917db332544efe22ac7619dc7ed3266dce7 Mon Sep 17 00:00:00 2001
|
2015-02-18 15:46:24 +00:00
|
|
|
|
From: Lars Uebernickel <lars.uebernickel@canonical.com>
|
|
|
|
|
Date: Wed, 28 May 2014 14:11:02 +0200
|
2016-02-18 18:38:04 +00:00
|
|
|
|
Subject: [PATCH 2/6] window: Make the drawing robust across all themes
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
There are lots of themes out there in the wild that do not specify a
|
|
|
|
|
background-color for all widgets and the default is transparent. This
|
|
|
|
|
is usually not a problem because GTK+ sets an opaque region on the
|
|
|
|
|
whole window and things without a background-color get drawn with the
|
|
|
|
|
theme's default background colour. However, to achieve transparency
|
|
|
|
|
we disable the opaque region by making the window app-paintable. This
|
|
|
|
|
can lead to transparent menubars or notebook tabs in some themes. We
|
|
|
|
|
can avoid this by ensuring that the window always renders a background.
|
|
|
|
|
|
|
|
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=730016
|
|
|
|
|
---
|
|
|
|
|
src/terminal-window.c | 21 +++++++++++++++++++++
|
|
|
|
|
1 file changed, 21 insertions(+)
|
|
|
|
|
|
|
|
|
|
diff --git a/src/terminal-window.c b/src/terminal-window.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index f10a6e7fdfc5..082a3c45f6c5 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/src/terminal-window.c
|
|
|
|
|
+++ b/src/terminal-window.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -2301,6 +2301,26 @@ terminal_window_realize (GtkWidget *widget)
|
2015-02-18 15:46:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
+terminal_window_draw (GtkWidget *widget,
|
|
|
|
|
+ cairo_t *cr)
|
|
|
|
|
+{
|
|
|
|
|
+ if (gtk_widget_get_app_paintable (widget))
|
|
|
|
|
+ {
|
|
|
|
|
+ GtkStyleContext *context;
|
|
|
|
|
+ int width;
|
|
|
|
|
+ int height;
|
|
|
|
|
+
|
|
|
|
|
+ context = gtk_widget_get_style_context (widget);
|
|
|
|
|
+ width = gtk_widget_get_allocated_width (widget);
|
|
|
|
|
+ height = gtk_widget_get_allocated_height (widget);
|
|
|
|
|
+ gtk_render_background (context, cr, 0, 0, width, height);
|
|
|
|
|
+ gtk_render_frame (context, cr, 0, 0, width, height);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+static gboolean
|
|
|
|
|
terminal_window_state_event (GtkWidget *widget,
|
|
|
|
|
GdkEventWindowState *event)
|
|
|
|
|
{
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -2834,6 +2854,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
widget_class->show = terminal_window_show;
|
|
|
|
|
widget_class->realize = terminal_window_realize;
|
|
|
|
|
+ widget_class->draw = terminal_window_draw;
|
|
|
|
|
widget_class->window_state_event = terminal_window_state_event;
|
|
|
|
|
widget_class->screen_changed = terminal_window_screen_changed;
|
|
|
|
|
widget_class->style_updated = terminal_window_style_updated;
|
|
|
|
|
--
|
2016-08-18 10:08:51 +00:00
|
|
|
|
2.7.4
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
|
2016-08-18 10:08:51 +00:00
|
|
|
|
From 4d6ee5d8c0e06a4878890592f2bfa73513bbf04f Mon Sep 17 00:00:00 2001
|
2015-11-13 14:28:50 +00:00
|
|
|
|
From: "Owen W. Taylor" <otaylor@fishsoup.net>
|
|
|
|
|
Date: Fri, 13 Nov 2015 15:16:42 +0100
|
2016-02-18 18:38:04 +00:00
|
|
|
|
Subject: [PATCH 3/6] screen, window: Extra padding around transparent
|
2015-11-13 14:28:50 +00:00
|
|
|
|
terminals in Wayland
|
|
|
|
|
|
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1207943
|
|
|
|
|
---
|
|
|
|
|
src/terminal-screen.c | 40 +++++++++++++++++++++++++++++++++++++---
|
|
|
|
|
src/terminal-window.c | 18 ++++++++++++------
|
|
|
|
|
2 files changed, 49 insertions(+), 9 deletions(-)
|
|
|
|
|
|
|
|
|
|
diff --git a/src/terminal-screen.c b/src/terminal-screen.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index eab0cec3fc90..5d321a7c238b 100644
|
2015-11-13 14:28:50 +00:00
|
|
|
|
--- a/src/terminal-screen.c
|
|
|
|
|
+++ b/src/terminal-screen.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -137,6 +137,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
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);
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -482,6 +484,7 @@ terminal_screen_class_init (TerminalScreenClass *klass)
|
2015-11-13 14:28:50 +00:00
|
|
|
|
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;
|
|
|
|
|
+ widget_class->hierarchy_changed = terminal_screen_hierarchy_changed;
|
|
|
|
|
|
|
|
|
|
terminal_class->child_exited = terminal_screen_child_exited;
|
|
|
|
|
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -885,6 +888,32 @@ terminal_screen_profile_changed_cb (GSettings *profile,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
+update_toplevel_transparency (TerminalScreen *screen)
|
|
|
|
|
+{
|
|
|
|
|
+ GtkWidget *widget = GTK_WIDGET (screen);
|
|
|
|
|
+ TerminalScreenPrivate *priv = screen->priv;
|
|
|
|
|
+ GSettings *profile = priv->profile;
|
|
|
|
|
+ GtkWidget *toplevel;
|
|
|
|
|
+
|
|
|
|
|
+ toplevel = gtk_widget_get_toplevel (widget);
|
|
|
|
|
+ if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
|
|
|
|
|
+ {
|
|
|
|
|
+ gboolean transparent;
|
|
|
|
|
+
|
|
|
|
|
+ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
|
|
|
|
|
+ if (gtk_widget_get_app_paintable (toplevel) != transparent)
|
|
|
|
|
+ {
|
|
|
|
|
+ gtk_widget_set_app_paintable (toplevel, transparent);
|
|
|
|
|
+
|
|
|
|
|
+ /* The opaque region of the toplevel isn't updated until the toplevel is allocated;
|
|
|
|
|
+ * set_app_paintable() doesn't force an allocation, so do that manually.
|
|
|
|
|
+ */
|
|
|
|
|
+ gtk_widget_queue_resize (toplevel);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+static void
|
|
|
|
|
update_color_scheme (TerminalScreen *screen)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *widget = GTK_WIDGET (screen);
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -962,9 +991,7 @@ update_color_scheme (TerminalScreen *screen)
|
2016-03-03 13:40:41 +00:00
|
|
|
|
vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
|
|
|
|
|
vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
|
2015-11-13 14:28:50 +00:00
|
|
|
|
|
|
|
|
|
- toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
|
|
|
|
|
- if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
|
|
|
|
|
- gtk_widget_set_app_paintable (toplevel, transparent);
|
|
|
|
|
+ update_toplevel_transparency (screen);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1567,6 +1594,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
terminal_screen_popup_info_unref (info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
+static void
|
|
|
|
|
+terminal_screen_hierarchy_changed (GtkWidget *widget,
|
|
|
|
|
+ GtkWidget *previous_toplevel)
|
|
|
|
|
+{
|
|
|
|
|
+ update_toplevel_transparency (TERMINAL_SCREEN (widget));
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
static gboolean
|
|
|
|
|
terminal_screen_button_press (GtkWidget *widget,
|
|
|
|
|
GdkEventButton *event)
|
|
|
|
|
diff --git a/src/terminal-window.c b/src/terminal-window.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 082a3c45f6c5..f3bfbe6505d6 100644
|
2015-11-13 14:28:50 +00:00
|
|
|
|
--- a/src/terminal-window.c
|
|
|
|
|
+++ b/src/terminal-window.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -2306,15 +2306,21 @@ terminal_window_draw (GtkWidget *widget,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
{
|
|
|
|
|
if (gtk_widget_get_app_paintable (widget))
|
|
|
|
|
{
|
|
|
|
|
+ GtkAllocation child_allocation;
|
|
|
|
|
GtkStyleContext *context;
|
|
|
|
|
- int width;
|
|
|
|
|
- int height;
|
|
|
|
|
+ GtkWidget *child;
|
|
|
|
|
+
|
|
|
|
|
+ /* Get the *child* allocation, so we don't overwrite window borders */
|
|
|
|
|
+ child = gtk_bin_get_child (GTK_BIN (widget));
|
|
|
|
|
+ gtk_widget_get_allocation (child, &child_allocation);
|
|
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (widget);
|
|
|
|
|
- width = gtk_widget_get_allocated_width (widget);
|
|
|
|
|
- height = gtk_widget_get_allocated_height (widget);
|
|
|
|
|
- gtk_render_background (context, cr, 0, 0, width, height);
|
|
|
|
|
- gtk_render_frame (context, cr, 0, 0, width, height);
|
|
|
|
|
+ gtk_render_background (context, cr,
|
|
|
|
|
+ child_allocation.x, child_allocation.y,
|
|
|
|
|
+ child_allocation.width, child_allocation.height);
|
|
|
|
|
+ gtk_render_frame (context, cr,
|
|
|
|
|
+ child_allocation.x, child_allocation.y,
|
|
|
|
|
+ child_allocation.width, child_allocation.height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
|
|
|
|
|
--
|
2016-08-18 10:08:51 +00:00
|
|
|
|
2.7.4
|
2015-11-13 14:28:50 +00:00
|
|
|
|
|
|
|
|
|
|
2016-08-18 10:08:51 +00:00
|
|
|
|
From 3a74446fea3b54201676c8aa23458dff7654a341 Mon Sep 17 00:00:00 2001
|
2015-11-13 14:28:50 +00:00
|
|
|
|
From: Debarshi Ray <debarshir@gnome.org>
|
|
|
|
|
Date: Tue, 27 Jan 2015 18:40:13 +0100
|
2016-02-18 18:38:04 +00:00
|
|
|
|
Subject: [PATCH 4/6] Support desktop notifications from OSC 777
|
2015-11-13 14:28:50 +00:00
|
|
|
|
|
|
|
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=711059
|
|
|
|
|
---
|
|
|
|
|
src/terminal-app.c | 32 ++++++++++++++
|
|
|
|
|
src/terminal-screen.c | 108 +++++++++++++++++++++++++++++++++++++++++++++++
|
|
|
|
|
src/terminal-tab-label.c | 28 +++++++++++-
|
|
|
|
|
src/terminal-tab-label.h | 4 ++
|
|
|
|
|
4 files changed, 171 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
|
|
diff --git a/src/terminal-app.c b/src/terminal-app.c
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 2d9129cb3419..4cbe2510e02d 100644
|
2015-11-13 14:28:50 +00:00
|
|
|
|
--- a/src/terminal-app.c
|
|
|
|
|
+++ b/src/terminal-app.c
|
2016-02-11 19:36:36 +00:00
|
|
|
|
@@ -374,6 +374,31 @@ app_menu_quit_cb (GSimpleAction *action,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
gtk_widget_destroy (GTK_WIDGET (window));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
+/* Other action callbacks */
|
|
|
|
|
+
|
|
|
|
|
+static void
|
|
|
|
|
+action_activate_tab_cb (GSimpleAction *action,
|
|
|
|
|
+ GVariant *parameter,
|
|
|
|
|
+ gpointer user_data)
|
|
|
|
|
+{
|
|
|
|
|
+ GtkApplication *application = user_data;
|
|
|
|
|
+ GtkWidget *toplevel;
|
|
|
|
|
+ TerminalScreen *screen;
|
|
|
|
|
+ const char *uuid;
|
|
|
|
|
+
|
|
|
|
|
+ g_variant_get (parameter, "&s", &uuid);
|
|
|
|
|
+ screen = terminal_app_get_screen_by_uuid (TERMINAL_APP (application), uuid);
|
|
|
|
|
+ if (screen == NULL)
|
|
|
|
|
+ return;
|
|
|
|
|
+
|
|
|
|
|
+ toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
|
|
|
|
|
+ if (!gtk_widget_is_toplevel (toplevel))
|
|
|
|
|
+ return;
|
|
|
|
|
+
|
|
|
|
|
+ terminal_window_switch_screen (TERMINAL_WINDOW (toplevel), screen);
|
|
|
|
|
+ gtk_window_present (GTK_WINDOW (toplevel));
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
/* Class implementation */
|
|
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (TerminalApp, terminal_app, GTK_TYPE_APPLICATION)
|
2016-02-11 19:36:36 +00:00
|
|
|
|
@@ -396,6 +421,10 @@ terminal_app_startup (GApplication *application)
|
2015-11-13 14:28:50 +00:00
|
|
|
|
{ "quit", app_menu_quit_cb, NULL, NULL, NULL }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
+ const GActionEntry other_actions[] = {
|
|
|
|
|
+ { "activate-tab", action_activate_tab_cb, "s", NULL, NULL }
|
|
|
|
|
+ };
|
|
|
|
|
+
|
|
|
|
|
g_application_set_resource_base_path (application, TERMINAL_RESOURCES_PATH_PREFIX);
|
|
|
|
|
|
|
|
|
|
G_APPLICATION_CLASS (terminal_app_parent_class)->startup (application);
|
2016-02-11 19:36:36 +00:00
|
|
|
|
@@ -406,6 +435,9 @@ terminal_app_startup (GApplication *application)
|
2015-11-13 14:28:50 +00:00
|
|
|
|
g_action_map_add_action_entries (G_ACTION_MAP (application),
|
|
|
|
|
app_menu_actions, G_N_ELEMENTS (app_menu_actions),
|
|
|
|
|
application);
|
|
|
|
|
+ g_action_map_add_action_entries (G_ACTION_MAP (application),
|
|
|
|
|
+ other_actions, G_N_ELEMENTS (other_actions),
|
|
|
|
|
+ application);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app_load_css (application);
|
|
|
|
|
diff --git a/src/terminal-screen.c b/src/terminal-screen.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 5d321a7c238b..6a4925f6d1b1 100644
|
2015-11-13 14:28:50 +00:00
|
|
|
|
--- a/src/terminal-screen.c
|
|
|
|
|
+++ b/src/terminal-screen.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -54,6 +54,7 @@
|
2015-11-13 14:28:50 +00:00
|
|
|
|
#include "terminal-marshal.h"
|
|
|
|
|
#include "terminal-schemas.h"
|
|
|
|
|
#include "terminal-screen-container.h"
|
|
|
|
|
+#include "terminal-tab-label.h"
|
|
|
|
|
#include "terminal-util.h"
|
|
|
|
|
#include "terminal-window.h"
|
|
|
|
|
#include "terminal-info-bar.h"
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -87,6 +88,7 @@ struct _TerminalScreenPrivate
|
2015-11-13 14:28:50 +00:00
|
|
|
|
char **initial_env;
|
|
|
|
|
char **override_command;
|
|
|
|
|
gboolean shell;
|
|
|
|
|
+ gboolean shell_prompt_shown;
|
|
|
|
|
int child_pid;
|
|
|
|
|
GSList *match_tags;
|
|
|
|
|
guint launch_child_source_id;
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -139,11 +141,16 @@ static gboolean terminal_screen_button_press (GtkWidget *widget,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
GdkEventButton *event);
|
|
|
|
|
static void terminal_screen_hierarchy_changed (GtkWidget *widget,
|
|
|
|
|
GtkWidget *previous_toplevel);
|
|
|
|
|
+static gboolean terminal_screen_focus_in (GtkWidget *widget,
|
|
|
|
|
+ GdkEventFocus *event);
|
|
|
|
|
static gboolean terminal_screen_do_exec (TerminalScreen *screen,
|
|
|
|
|
FDSetupData *data,
|
|
|
|
|
GError **error);
|
|
|
|
|
static void terminal_screen_child_exited (VteTerminal *terminal,
|
|
|
|
|
int status);
|
|
|
|
|
+static void terminal_screen_notification_received (VteTerminal *terminal,
|
|
|
|
|
+ const char *summary,
|
|
|
|
|
+ const char *body);
|
|
|
|
|
|
|
|
|
|
static void terminal_screen_window_title_changed (VteTerminal *vte_terminal,
|
|
|
|
|
TerminalScreen *screen);
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -479,6 +486,7 @@ terminal_screen_class_init (TerminalScreenClass *klass)
|
2015-11-13 14:28:50 +00:00
|
|
|
|
object_class->get_property = terminal_screen_get_property;
|
|
|
|
|
object_class->set_property = terminal_screen_set_property;
|
|
|
|
|
|
|
|
|
|
+ widget_class->focus_in_event = terminal_screen_focus_in;
|
|
|
|
|
widget_class->realize = terminal_screen_realize;
|
|
|
|
|
widget_class->style_updated = terminal_screen_style_updated;
|
|
|
|
|
widget_class->drag_data_received = terminal_screen_drag_data_received;
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -487,6 +495,7 @@ terminal_screen_class_init (TerminalScreenClass *klass)
|
2015-11-13 14:28:50 +00:00
|
|
|
|
widget_class->hierarchy_changed = terminal_screen_hierarchy_changed;
|
|
|
|
|
|
|
|
|
|
terminal_class->child_exited = terminal_screen_child_exited;
|
|
|
|
|
+ terminal_class->notification_received = terminal_screen_notification_received;
|
|
|
|
|
|
|
|
|
|
signals[PROFILE_SET] =
|
|
|
|
|
g_signal_new (I_("profile-set"),
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -596,6 +605,10 @@ terminal_screen_dispose (GObject *object)
|
2015-11-13 14:28:50 +00:00
|
|
|
|
TerminalScreen *screen = TERMINAL_SCREEN (object);
|
|
|
|
|
TerminalScreenPrivate *priv = screen->priv;
|
|
|
|
|
GtkSettings *settings;
|
|
|
|
|
+ TerminalApp *app;
|
|
|
|
|
+
|
|
|
|
|
+ app = terminal_app_get ();
|
|
|
|
|
+ g_application_withdraw_notification (G_APPLICATION (app), priv->uuid);
|
|
|
|
|
|
|
|
|
|
settings = gtk_widget_get_settings (GTK_WIDGET (screen));
|
|
|
|
|
g_signal_handlers_disconnect_matched (settings, G_SIGNAL_MATCH_DATA,
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1664,6 +1677,43 @@ terminal_screen_button_press (GtkWidget *widget,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
+static gboolean
|
|
|
|
|
+terminal_screen_focus_in (GtkWidget *widget,
|
|
|
|
|
+ GdkEventFocus *event)
|
|
|
|
|
+{
|
|
|
|
|
+ TerminalScreen *screen = TERMINAL_SCREEN (widget);
|
|
|
|
|
+ TerminalApp *app;
|
|
|
|
|
+ TerminalWindow *window;
|
|
|
|
|
+
|
|
|
|
|
+ window = terminal_screen_get_window (screen);
|
|
|
|
|
+ if (window != NULL)
|
|
|
|
|
+ {
|
|
|
|
|
+ TerminalScreenContainer *screen_container;
|
|
|
|
|
+
|
|
|
|
|
+ screen_container = terminal_screen_container_get_from_screen (screen);
|
|
|
|
|
+ if (screen_container != NULL)
|
|
|
|
|
+ {
|
|
|
|
|
+ GtkWidget *mdi_container;
|
|
|
|
|
+
|
|
|
|
|
+ mdi_container = terminal_window_get_mdi_container (window);
|
|
|
|
|
+ /* FIXME: add interface method to retrieve tab label */
|
|
|
|
|
+ if (GTK_IS_NOTEBOOK (mdi_container))
|
|
|
|
|
+ {
|
|
|
|
|
+ GtkWidget *tab_label;
|
|
|
|
|
+
|
|
|
|
|
+ tab_label = gtk_notebook_get_tab_label (GTK_NOTEBOOK (mdi_container), GTK_WIDGET (screen_container));
|
|
|
|
|
+ terminal_tab_label_set_bold (TERMINAL_TAB_LABEL (tab_label), FALSE);
|
|
|
|
|
+ terminal_tab_label_set_icon (TERMINAL_TAB_LABEL (tab_label), NULL, NULL);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ app = terminal_app_get ();
|
|
|
|
|
+ g_application_withdraw_notification (G_APPLICATION (app), screen->priv->uuid);
|
|
|
|
|
+
|
|
|
|
|
+ return GTK_WIDGET_CLASS (terminal_screen_parent_class)->focus_in_event (widget, event);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
/**
|
|
|
|
|
* terminal_screen_get_current_dir:
|
|
|
|
|
* @screen:
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1765,6 +1815,64 @@ terminal_screen_child_exited (VteTerminal *terminal,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
+terminal_screen_notification_received (VteTerminal *terminal,
|
|
|
|
|
+ const char *summary,
|
|
|
|
|
+ const char *body)
|
|
|
|
|
+{
|
|
|
|
|
+ TerminalScreen *screen = TERMINAL_SCREEN (terminal);
|
|
|
|
|
+ TerminalScreenPrivate *priv = screen->priv;
|
|
|
|
|
+ TerminalWindow *window;
|
|
|
|
|
+
|
|
|
|
|
+ if (G_UNLIKELY (!priv->shell_prompt_shown))
|
|
|
|
|
+ {
|
|
|
|
|
+ priv->shell_prompt_shown = TRUE;
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ window = terminal_screen_get_window (screen);
|
|
|
|
|
+ if (window == NULL)
|
|
|
|
|
+ return;
|
|
|
|
|
+
|
|
|
|
|
+ if (gtk_window_is_active (GTK_WINDOW (window)))
|
|
|
|
|
+ {
|
|
|
|
|
+ GtkWidget *mdi_container;
|
|
|
|
|
+ TerminalScreenContainer *screen_container;
|
|
|
|
|
+
|
|
|
|
|
+ if (screen == terminal_window_get_active (window))
|
|
|
|
|
+ return;
|
|
|
|
|
+
|
|
|
|
|
+ screen_container = terminal_screen_container_get_from_screen (screen);
|
|
|
|
|
+ if (screen_container == NULL)
|
|
|
|
|
+ return;
|
|
|
|
|
+
|
|
|
|
|
+ mdi_container = terminal_window_get_mdi_container (window);
|
|
|
|
|
+ /* FIXME: add interface method to retrieve tab label */
|
|
|
|
|
+ if (GTK_IS_NOTEBOOK (mdi_container))
|
|
|
|
|
+ {
|
|
|
|
|
+ GtkWidget *tab_label;
|
|
|
|
|
+
|
|
|
|
|
+ tab_label = gtk_notebook_get_tab_label (GTK_NOTEBOOK (mdi_container), GTK_WIDGET (screen_container));
|
|
|
|
|
+ terminal_tab_label_set_bold (TERMINAL_TAB_LABEL (tab_label), TRUE);
|
|
|
|
|
+ terminal_tab_label_set_icon (TERMINAL_TAB_LABEL (tab_label), "dialog-information-symbolic", summary);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ else
|
|
|
|
|
+ {
|
|
|
|
|
+ gs_unref_object GNotification *notification = NULL;
|
|
|
|
|
+ TerminalApp *app;
|
|
|
|
|
+ gs_free char *detailed_action = NULL;
|
|
|
|
|
+
|
|
|
|
|
+ notification = g_notification_new (summary);
|
|
|
|
|
+ g_notification_set_body (notification, body);
|
|
|
|
|
+ detailed_action = g_strdup_printf ("app.activate-tab::%s", priv->uuid);
|
|
|
|
|
+ g_notification_set_default_action (notification, detailed_action);
|
|
|
|
|
+
|
|
|
|
|
+ app = terminal_app_get ();
|
|
|
|
|
+ g_application_send_notification (G_APPLICATION (app), priv->uuid, notification);
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+static void
|
|
|
|
|
terminal_screen_drag_data_received (GtkWidget *widget,
|
|
|
|
|
GdkDragContext *context,
|
|
|
|
|
gint x,
|
|
|
|
|
diff --git a/src/terminal-tab-label.c b/src/terminal-tab-label.c
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index cdd73d0653be..d6909a13ca65 100644
|
2015-11-13 14:28:50 +00:00
|
|
|
|
--- a/src/terminal-tab-label.c
|
|
|
|
|
+++ b/src/terminal-tab-label.c
|
|
|
|
|
@@ -34,6 +34,7 @@
|
|
|
|
|
struct _TerminalTabLabelPrivate
|
|
|
|
|
{
|
|
|
|
|
TerminalScreen *screen;
|
|
|
|
|
+ GtkWidget *icon;
|
|
|
|
|
GtkWidget *label;
|
|
|
|
|
GtkWidget *close_button;
|
|
|
|
|
gboolean bold;
|
|
|
|
|
@@ -179,7 +180,7 @@ terminal_tab_label_constructed (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
TerminalTabLabel *tab_label = TERMINAL_TAB_LABEL (object);
|
|
|
|
|
TerminalTabLabelPrivate *priv = tab_label->priv;
|
|
|
|
|
- GtkWidget *hbox, *label, *close_button;
|
|
|
|
|
+ GtkWidget *hbox, *icon, *label, *close_button;
|
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (terminal_tab_label_parent_class)->constructed (object);
|
|
|
|
|
|
|
|
|
|
@@ -189,6 +190,10 @@ terminal_tab_label_constructed (GObject *object)
|
|
|
|
|
|
|
|
|
|
gtk_box_set_spacing (GTK_BOX (hbox), SPACING);
|
|
|
|
|
|
|
|
|
|
+ priv->icon = icon = gtk_image_new ();
|
|
|
|
|
+ gtk_widget_set_no_show_all (icon, TRUE);
|
|
|
|
|
+ gtk_box_pack_start (GTK_BOX (hbox), icon, FALSE, FALSE, 0);
|
|
|
|
|
+
|
|
|
|
|
priv->label = label = gtk_label_new (NULL);
|
|
|
|
|
gtk_widget_set_halign (label, GTK_ALIGN_CENTER);
|
|
|
|
|
gtk_widget_set_valign (label, GTK_ALIGN_BASELINE);
|
|
|
|
|
@@ -377,6 +382,27 @@ terminal_tab_label_set_bold (TerminalTabLabel *tab_label,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
+ * terminal_tab_label_set_icon:
|
|
|
|
|
+ * @tab_label: a #TerminalTabLabel
|
|
|
|
|
+ * @icon_name: (allow-none): an icon name
|
|
|
|
|
+ * @tooltip: (allow-none): text to be used as tooltip
|
|
|
|
|
+ *
|
|
|
|
|
+ * Shows an icon at the beginning of @tab_label. If @icon_name is
|
|
|
|
|
+ * %NULL, then the icon will be hidden.
|
|
|
|
|
+ */
|
|
|
|
|
+void
|
|
|
|
|
+terminal_tab_label_set_icon (TerminalTabLabel *tab_label,
|
|
|
|
|
+ const char *icon_name,
|
|
|
|
|
+ const char *tooltip)
|
|
|
|
|
+{
|
|
|
|
|
+ TerminalTabLabelPrivate *priv = tab_label->priv;
|
|
|
|
|
+
|
|
|
|
|
+ gtk_widget_set_visible (priv->icon, icon_name != NULL);
|
|
|
|
|
+ gtk_image_set_from_icon_name (GTK_IMAGE (priv->icon), icon_name, GTK_ICON_SIZE_MENU);
|
|
|
|
|
+ gtk_widget_set_tooltip_text (GTK_WIDGET (priv->icon), tooltip);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
* terminal_tab_label_get_screen:
|
|
|
|
|
* @tab_label: a #TerminalTabLabel
|
|
|
|
|
*
|
|
|
|
|
diff --git a/src/terminal-tab-label.h b/src/terminal-tab-label.h
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 20cfbceb36b0..a987025e0524 100644
|
2015-11-13 14:28:50 +00:00
|
|
|
|
--- a/src/terminal-tab-label.h
|
|
|
|
|
+++ b/src/terminal-tab-label.h
|
|
|
|
|
@@ -59,6 +59,10 @@ GtkWidget * terminal_tab_label_new (TerminalScreen *screen);
|
|
|
|
|
void terminal_tab_label_set_bold (TerminalTabLabel *tab_label,
|
|
|
|
|
gboolean bold);
|
|
|
|
|
|
|
|
|
|
+void terminal_tab_label_set_icon (TerminalTabLabel *tab_label,
|
|
|
|
|
+ const char *icon_name,
|
|
|
|
|
+ const char *tooltip);
|
|
|
|
|
+
|
|
|
|
|
TerminalScreen *terminal_tab_label_get_screen (TerminalTabLabel *tab_label);
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
--
|
2016-08-18 10:08:51 +00:00
|
|
|
|
2.7.4
|
2015-11-13 14:28:50 +00:00
|
|
|
|
|
|
|
|
|
|
2016-08-18 10:08:51 +00:00
|
|
|
|
From 2cde3630ae23286c1911bae79684a890e3062496 Mon Sep 17 00:00:00 2001
|
2015-11-13 14:28:50 +00:00
|
|
|
|
From: Debarshi Ray <debarshir@gnome.org>
|
|
|
|
|
Date: Thu, 29 Jan 2015 11:47:21 +0100
|
2016-02-18 18:38:04 +00:00
|
|
|
|
Subject: [PATCH 5/6] Sprinkle debug messages for notifications
|
2015-11-13 14:28:50 +00:00
|
|
|
|
|
|
|
|
|
This can be useful for finding out whether the escape sequence wasn't
|
|
|
|
|
emitted or the filtering was faulty.
|
|
|
|
|
|
|
|
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=711059
|
|
|
|
|
---
|
|
|
|
|
src/terminal-debug.c | 1 +
|
|
|
|
|
src/terminal-debug.h | 3 ++-
|
|
|
|
|
src/terminal-screen.c | 6 ++++++
|
|
|
|
|
3 files changed, 9 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
|
|
diff --git a/src/terminal-debug.c b/src/terminal-debug.c
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 0ff321f1f0e2..dac79c38d82b 100644
|
2015-11-13 14:28:50 +00:00
|
|
|
|
--- a/src/terminal-debug.c
|
|
|
|
|
+++ b/src/terminal-debug.c
|
|
|
|
|
@@ -38,6 +38,7 @@ _terminal_debug_init(void)
|
|
|
|
|
{ "settings-list", TERMINAL_DEBUG_SETTINGS_LIST },
|
|
|
|
|
{ "appmenu", TERMINAL_DEBUG_APPMENU },
|
|
|
|
|
{ "search", TERMINAL_DEBUG_SEARCH },
|
|
|
|
|
+ { "notifications", TERMINAL_DEBUG_NOTIFICATIONS },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
_terminal_debug_flags = g_parse_debug_string (g_getenv ("GNOME_TERMINAL_DEBUG"),
|
|
|
|
|
diff --git a/src/terminal-debug.h b/src/terminal-debug.h
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 5dc3ca4f3df0..7499ebe06c88 100644
|
2015-11-13 14:28:50 +00:00
|
|
|
|
--- a/src/terminal-debug.h
|
|
|
|
|
+++ b/src/terminal-debug.h
|
|
|
|
|
@@ -34,7 +34,8 @@ typedef enum {
|
|
|
|
|
TERMINAL_DEBUG_PROFILE = 1 << 6,
|
|
|
|
|
TERMINAL_DEBUG_SETTINGS_LIST = 1 << 7,
|
|
|
|
|
TERMINAL_DEBUG_APPMENU = 1 << 8,
|
|
|
|
|
- TERMINAL_DEBUG_SEARCH = 1 << 9
|
|
|
|
|
+ TERMINAL_DEBUG_SEARCH = 1 << 9,
|
|
|
|
|
+ TERMINAL_DEBUG_NOTIFICATIONS = 1 << 10
|
|
|
|
|
} TerminalDebugFlags;
|
|
|
|
|
|
|
|
|
|
void _terminal_debug_init(void);
|
|
|
|
|
diff --git a/src/terminal-screen.c b/src/terminal-screen.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 6a4925f6d1b1..7c6fa77bf71a 100644
|
2015-11-13 14:28:50 +00:00
|
|
|
|
--- a/src/terminal-screen.c
|
|
|
|
|
+++ b/src/terminal-screen.c
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1685,6 +1685,8 @@ terminal_screen_focus_in (GtkWidget *widget,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
TerminalApp *app;
|
|
|
|
|
TerminalWindow *window;
|
|
|
|
|
|
|
|
|
|
+ _terminal_debug_print (TERMINAL_DEBUG_NOTIFICATIONS, "Notification withdrawn\n");
|
|
|
|
|
+
|
|
|
|
|
window = terminal_screen_get_window (screen);
|
|
|
|
|
if (window != NULL)
|
|
|
|
|
{
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1823,6 +1825,8 @@ terminal_screen_notification_received (VteTerminal *terminal,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
TerminalScreenPrivate *priv = screen->priv;
|
|
|
|
|
TerminalWindow *window;
|
|
|
|
|
|
|
|
|
|
+ _terminal_debug_print (TERMINAL_DEBUG_NOTIFICATIONS, "Notification received: [%s]: %s\n", summary, body);
|
|
|
|
|
+
|
|
|
|
|
if (G_UNLIKELY (!priv->shell_prompt_shown))
|
|
|
|
|
{
|
|
|
|
|
priv->shell_prompt_shown = TRUE;
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1854,6 +1858,7 @@ terminal_screen_notification_received (VteTerminal *terminal,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
tab_label = gtk_notebook_get_tab_label (GTK_NOTEBOOK (mdi_container), GTK_WIDGET (screen_container));
|
|
|
|
|
terminal_tab_label_set_bold (TERMINAL_TAB_LABEL (tab_label), TRUE);
|
|
|
|
|
terminal_tab_label_set_icon (TERMINAL_TAB_LABEL (tab_label), "dialog-information-symbolic", summary);
|
|
|
|
|
+ _terminal_debug_print (TERMINAL_DEBUG_NOTIFICATIONS, "Notify tab\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1869,6 +1874,7 @@ terminal_screen_notification_received (VteTerminal *terminal,
|
2015-11-13 14:28:50 +00:00
|
|
|
|
|
|
|
|
|
app = terminal_app_get ();
|
|
|
|
|
g_application_send_notification (G_APPLICATION (app), priv->uuid, notification);
|
|
|
|
|
+ _terminal_debug_print (TERMINAL_DEBUG_NOTIFICATIONS, "Notify desktop\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
--
|
2016-08-18 10:08:51 +00:00
|
|
|
|
2.7.4
|
2015-11-13 14:28:50 +00:00
|
|
|
|
|
|
|
|
|
|
2016-08-18 10:08:51 +00:00
|
|
|
|
From 577078a8aa6218edafafeb412d575325a79db3d3 Mon Sep 17 00:00:00 2001
|
2015-02-18 15:46:24 +00:00
|
|
|
|
From: Debarshi Ray <debarshir@gnome.org>
|
|
|
|
|
Date: Tue, 17 Feb 2015 17:06:17 +0100
|
2016-02-18 18:38:04 +00:00
|
|
|
|
Subject: [PATCH 6/6] Restore translations for transparency
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
---
|
2016-02-18 18:38:04 +00:00
|
|
|
|
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 +++
|
2016-08-18 10:08:51 +00:00
|
|
|
|
po/lv.po | 3 +++
|
2016-02-18 18:38:04 +00:00
|
|
|
|
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 +++
|
2016-08-18 10:08:51 +00:00
|
|
|
|
86 files changed, 209 insertions(+), 96 deletions(-)
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
diff --git a/po/am.po b/po/am.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 3445d96da657..a5fadb3a8d48 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/am.po
|
|
|
|
|
+++ b/po/am.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -614,8 +614,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "የ_ጽሑፍ ቀለም፦"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:102
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_የሚያሳይ መደብ"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "የሚያሳይ መደብ"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:103
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/ar.po b/po/ar.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 47a7add14981..6f469994f9ee 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ar.po
|
|
|
|
|
+++ b/po/ar.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
@@ -3105,8 +3105,8 @@ msgstr "أغ_لق النافذة"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ 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/as.po b/po/as.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 3fade2b8cb12..7532b1deec68 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/as.po
|
|
|
|
|
+++ b/po/as.po
|
|
|
|
|
@@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
|
|
|
|
|
#~ msgid "Background image _scrolls"
|
|
|
|
|
#~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "স্বচ্চ পটভূমি (_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "স্বচ্চ পটভূমি "
|
|
|
|
|
|
|
|
|
|
#~ msgid "S_hade transparent or image background:"
|
|
|
|
|
#~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
|
|
|
|
|
diff --git a/po/ast.po b/po/ast.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index d1c6e7b8174a..4210820a1429 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ast.po
|
|
|
|
|
+++ b/po/ast.po
|
|
|
|
|
@@ -1598,8 +1598,8 @@ msgid "_Text color:"
|
|
|
|
|
msgstr "Color del _testu:"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:77
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "Fondu _tresparente"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Fondu tresparente"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:78
|
|
|
|
|
msgid "_Underline color:"
|
|
|
|
|
diff --git a/po/az.po b/po/az.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 586c1e4d827b..6bed64a15ddc 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/az.po
|
|
|
|
|
+++ b/po/az.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -620,8 +620,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "_Mətn rəngi:"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:102
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Şəffaf arxa plan"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Şəffaf arxa plan"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:103
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/be.po b/po/be.po
|
2016-05-11 10:34:55 +00:00
|
|
|
|
index 1e45906547be..cd3fe0b7b6b2 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/be.po
|
|
|
|
|
+++ b/po/be.po
|
|
|
|
|
@@ -2015,3 +2015,6 @@ msgstr ""
|
|
|
|
|
msgid "C_lose Window"
|
|
|
|
|
msgstr "_Закрыць акно"
|
|
|
|
|
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Празрысты фон"
|
|
|
|
|
+
|
|
|
|
|
diff --git a/po/be@latin.po b/po/be@latin.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 82ef0664ae1e..73d74fbeb124 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/be@latin.po
|
|
|
|
|
+++ b/po/be@latin.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1426,8 +1426,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "Koler _tekstu:"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:73
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Prazrysty fon"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Prazrysty fon"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:74
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/bg.po b/po/bg.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index f42c22c94678..e2fc98cadddb 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/bg.po
|
|
|
|
|
+++ b/po/bg.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
@@ -2281,3 +2281,6 @@ msgstr ""
|
|
|
|
|
#: ../src/terminal-window.c:3727
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgid "C_lose Window"
|
|
|
|
|
msgstr "_Затваряне на този прозорец"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Прозрачен фон"
|
|
|
|
|
diff --git a/po/bn_IN.po b/po/bn_IN.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index f196e5084797..ae8e577d23db 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/bn_IN.po
|
|
|
|
|
+++ b/po/bn_IN.po
|
|
|
|
|
@@ -2358,3 +2358,6 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
|
|
|
|
|
|
|
|
|
|
#~ msgid "_Title:"
|
|
|
|
|
#~ msgstr "শিরোনাম: (_T)"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "স্বচ্চ পটভূমি "
|
|
|
|
|
diff --git a/po/bs.po b/po/bs.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 49e710859ac9..fccfa86de311 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/bs.po
|
|
|
|
|
+++ b/po/bs.po
|
2015-03-17 12:13:54 +00:00
|
|
|
|
@@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
|
|
|
|
|
msgid "Keyboard shortcut to make font smaller"
|
|
|
|
|
msgstr "Kratica tastature za smanjivanje fonta"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
2015-03-17 12:13:54 +00:00
|
|
|
|
+#: ../src/gnome-terminal.glade2.h:102
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Providna pozadina"
|
2015-03-17 12:13:54 +00:00
|
|
|
|
+
|
|
|
|
|
#: ../src/org.gnome.Terminal.gschema.xml.h:78
|
|
|
|
|
msgid "Keyboard shortcut to make font normal-size"
|
|
|
|
|
msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
diff --git a/po/ca.po b/po/ca.po
|
2016-05-11 10:34:55 +00:00
|
|
|
|
index c80c2572d11e..abe75f0ba7f1 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ca.po
|
|
|
|
|
+++ b/po/ca.po
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -2304,3 +2304,6 @@ msgstr "Tanca la _finestra"
|
2015-03-17 12:13:54 +00:00
|
|
|
|
|
2016-03-03 13:40:41 +00:00
|
|
|
|
#~ msgid "Whether to use a dark theme variant"
|
|
|
|
|
#~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Fons transparent"
|
|
|
|
|
diff --git a/po/ca@valencia.po b/po/ca@valencia.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 2dafab8ca90d..1c129291a084 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- 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"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Fons transparent"
|
|
|
|
|
diff --git a/po/cs.po b/po/cs.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 4f6f0ea570c9..59d5ad11751a 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/cs.po
|
|
|
|
|
+++ b/po/cs.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
@@ -2249,3 +2249,6 @@ msgstr ""
|
2016-03-03 13:40:41 +00:00
|
|
|
|
#: ../src/terminal-window.c:3727
|
2015-02-18 15:46:24 +00:00
|
|
|
|
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
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 644df82363f1..f0c96e7aa85b 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/cy.po
|
|
|
|
|
+++ b/po/cy.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1448,8 +1448,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "Lliw'r _testun:"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:73
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "Cefndir _tryloyw"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Cefndir tryloyw"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:74
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/da.po b/po/da.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 834c72e16e50..42aa8089fac1 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/da.po
|
|
|
|
|
+++ b/po/da.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -3179,8 +3179,8 @@ msgstr "_Luk vindue"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "_Ensfarvet"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "_Gennemsigtig baggrund"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Gennemsigtig baggrund"
|
|
|
|
|
|
|
|
|
|
#~ msgid ""
|
|
|
|
|
#~ "You already have a profile called “%s”. Do you want to create another "
|
|
|
|
|
diff --git a/po/de.po b/po/de.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index aa3289da6aa6..3c144d4caab3 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/de.po
|
|
|
|
|
+++ b/po/de.po
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -3259,8 +3259,8 @@ msgstr "Fenster _schließen"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ msgid "Background image _scrolls"
|
|
|
|
|
#~ msgstr "Hintergrundbild _folgt Bildlauf"
|
|
|
|
|
|
|
|
|
|
-#~ 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:"
|
|
|
|
|
diff --git a/po/dz.po b/po/dz.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index d97e6102b850..061a09dc9edb 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/dz.po
|
|
|
|
|
+++ b/po/dz.po
|
|
|
|
|
@@ -1551,8 +1551,8 @@ msgid "_Text color:"
|
|
|
|
|
msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:77
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "དྭངས་གསལ་རྒྱབ་གཞི།"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:78
|
|
|
|
|
#, fuzzy
|
|
|
|
|
diff --git a/po/el.po b/po/el.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 2b0d1de8c80f..5bf36a9fdbea 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/el.po
|
|
|
|
|
+++ b/po/el.po
|
2016-03-17 15:50:33 +00:00
|
|
|
|
@@ -2510,3 +2510,6 @@ msgstr "Κ_λείσιμο παραθύρου"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
#~ msgid "_Input Methods"
|
|
|
|
|
#~ msgstr "_Μέθοδοι εισαγωγής"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Διάφανο παρασκήνιο"
|
|
|
|
|
diff --git a/po/en@shaw.po b/po/en@shaw.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 82b2d53401b2..67b429810d40 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/en@shaw.po
|
|
|
|
|
+++ b/po/en@shaw.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1468,8 +1468,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:78
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:79
|
|
|
|
|
msgid "_Underline color:"
|
|
|
|
|
diff --git a/po/en_CA.po b/po/en_CA.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 6c9e0cd73d63..3ffa89b7cfee 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/en_CA.po
|
|
|
|
|
+++ b/po/en_CA.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -557,8 +557,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "_Text colour:"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:86
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Transparent background"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Transparent background"
|
|
|
|
|
|
|
|
|
|
#: ../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
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 4d38486679fe..69e71135d75c 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/en_GB.po
|
|
|
|
|
+++ b/po/en_GB.po
|
|
|
|
|
@@ -2732,8 +2732,8 @@ msgstr "_Title:"
|
|
|
|
|
#~ msgid "Background image _scrolls"
|
|
|
|
|
#~ msgstr "Background image _scrolls"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "_Transparent background"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Transparent background"
|
|
|
|
|
|
|
|
|
|
#~ msgid "S_hade transparent or image background:"
|
|
|
|
|
#~ msgstr "S_hade transparent or image background:"
|
|
|
|
|
diff --git a/po/es.po b/po/es.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index cbb460ccb9b4..09c946bccfbe 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/es.po
|
|
|
|
|
+++ b/po/es.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -3286,8 +3286,8 @@ msgstr "_Cerrar ventana"
|
2016-02-18 18:38:04 +00:00
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "Color _sólido"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "Fondo _transparente"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Fondo transparente"
|
|
|
|
|
|
|
|
|
|
#~ msgid "No such profile \"%s\", using default profile\n"
|
|
|
|
|
#~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
diff --git a/po/et.po b/po/et.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 4b1c2a7c67e4..770761168806 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/et.po
|
|
|
|
|
+++ b/po/et.po
|
|
|
|
|
@@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
|
|
|
|
|
|
|
|
|
|
#~ msgid "Choose base profile"
|
|
|
|
|
#~ msgstr "Vali põhiprofiil"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Läbipaistev taust"
|
|
|
|
|
diff --git a/po/eu.po b/po/eu.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index c7b9e2b4529e..551a9ba789ce 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/eu.po
|
|
|
|
|
+++ b/po/eu.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -3169,8 +3169,8 @@ msgstr "It_xi leihoa"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "_Kolore solidoa"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "_Atzeko plano gardena"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Atzeko plano gardena"
|
|
|
|
|
|
|
|
|
|
#~ msgid ""
|
|
|
|
|
#~ "You already have a profile called “%s”. Do you want to create another "
|
|
|
|
|
diff --git a/po/fa.po b/po/fa.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 52856cbdd6a4..2a89999af2bf 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/fa.po
|
|
|
|
|
+++ b/po/fa.po
|
2015-11-13 14:28:50 +00:00
|
|
|
|
@@ -2240,3 +2240,6 @@ msgstr "_بستن پنجره"
|
2015-10-07 11:10:08 +00:00
|
|
|
|
|
|
|
|
|
#~ msgid "_Title:"
|
|
|
|
|
#~ msgstr "_عنوان:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "پسزمینهی شفاف"
|
|
|
|
|
diff --git a/po/fi.po b/po/fi.po
|
2016-05-11 10:34:55 +00:00
|
|
|
|
index a8cd6e1cb1f1..db7df1010def 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/fi.po
|
|
|
|
|
+++ b/po/fi.po
|
2016-03-22 06:13:58 +00:00
|
|
|
|
@@ -2294,6 +2294,9 @@ msgstr "_Sulje ikkuna"
|
2016-02-11 19:36:36 +00:00
|
|
|
|
#~ msgid "_Update login records when command is launched"
|
|
|
|
|
#~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
|
2015-03-24 12:26:57 +00:00
|
|
|
|
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Läpinäkyvä tausta"
|
2015-03-24 12:26:57 +00:00
|
|
|
|
+
|
2016-03-17 15:50:33 +00:00
|
|
|
|
#~| msgid "Error parsing command: %s"
|
|
|
|
|
#~ msgid "Missing command"
|
|
|
|
|
#~ msgstr "Puuttuva komento"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
diff --git a/po/fr.po b/po/fr.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index d230aa20aaa6..9771335bda19 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/fr.po
|
|
|
|
|
+++ b/po/fr.po
|
2016-03-17 15:50:33 +00:00
|
|
|
|
@@ -2303,3 +2303,6 @@ msgstr "Fermer _la fenêtre"
|
2015-09-14 16:22:36 +00:00
|
|
|
|
|
2016-03-03 13:40:41 +00:00
|
|
|
|
#~ msgid "_Same as text color"
|
|
|
|
|
#~ msgstr "_Même couleur que le texte"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Arrière-plan transparent"
|
|
|
|
|
diff --git a/po/fur.po b/po/fur.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index e6752a4bdb9b..f0c5f8d220dd 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/fur.po
|
|
|
|
|
+++ b/po/fur.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
@@ -652,6 +652,10 @@ msgstr ""
|
2016-03-17 15:50:33 +00:00
|
|
|
|
msgid "Which encoding to use"
|
|
|
|
|
msgstr "Codifiche di doprâ"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
2015-09-14 16:22:36 +00:00
|
|
|
|
+#: ../src/gnome-terminal.glade2.h:86
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Fondâl trasparent"
|
2015-09-14 16:22:36 +00:00
|
|
|
|
+
|
2016-03-17 15:50:33 +00:00
|
|
|
|
#: ../src/org.gnome.Terminal.gschema.xml.h:63
|
|
|
|
|
msgid ""
|
|
|
|
|
"Whether ambiguous-width characters are narrow or wide when using UTF-8 "
|
2015-02-18 15:46:24 +00:00
|
|
|
|
diff --git a/po/ga.po b/po/ga.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 93d5fa9d1481..feb87dce3d6b 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ga.po
|
|
|
|
|
+++ b/po/ga.po
|
|
|
|
|
@@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
|
|
|
|
|
#: ../src/terminal-window.c:3582
|
|
|
|
|
msgid "C_lose Terminal"
|
|
|
|
|
msgstr "_Dún Teirminéal"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Cúlra trédhearcach"
|
|
|
|
|
diff --git a/po/gl.po b/po/gl.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index a858849ef591..7fadccd9e524 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/gl.po
|
|
|
|
|
+++ b/po/gl.po
|
2016-03-17 15:50:33 +00:00
|
|
|
|
@@ -3241,8 +3241,8 @@ msgstr "P_echar a xanela"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ msgid "Background image _scrolls"
|
|
|
|
|
#~ msgstr "A imaxe de fondo _desprázase"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "Fondo _transparente"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Fondo transparente"
|
|
|
|
|
|
|
|
|
|
#~ msgid "S_hade transparent or image background:"
|
|
|
|
|
#~ msgstr "_Sombra transparente ou imaxe de fondo:"
|
|
|
|
|
diff --git a/po/gu.po b/po/gu.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 76b459cf8dc5..5a0efa46233e 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/gu.po
|
|
|
|
|
+++ b/po/gu.po
|
|
|
|
|
@@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
|
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "ઘટ્ટ રંગ (_S)"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ"
|
|
|
|
|
|
|
|
|
|
#~ msgid "No such profile \"%s\", using default profile\n"
|
|
|
|
|
#~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
|
|
|
|
|
diff --git a/po/he.po b/po/he.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 0c2420ebc5f3..7a25a26e6abd 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/he.po
|
|
|
|
|
+++ b/po/he.po
|
2016-03-17 15:50:33 +00:00
|
|
|
|
@@ -3189,8 +3189,8 @@ msgstr "סגירת ה_חלון"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "צבע _אחיד"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "רקע _שקוף"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "רקע שקוף"
|
|
|
|
|
|
|
|
|
|
#~ 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
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 2d7dc5b14008..adf8d35e8d3f 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/hi.po
|
|
|
|
|
+++ b/po/hi.po
|
|
|
|
|
@@ -2979,8 +2979,8 @@ msgstr "विंडो बंद करें (_l)"
|
|
|
|
|
#~ msgid "_Background image"
|
|
|
|
|
#~ msgstr "पृष्ठभूमि छवि (_B)"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "पारदर्शी पृष्ठभूमि (_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "पारदर्शी पृष्ठभूमि"
|
|
|
|
|
|
|
|
|
|
#~ msgid "S/Key Challenge Response"
|
|
|
|
|
#~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
|
|
|
|
|
diff --git a/po/hr.po b/po/hr.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 6090e43c4160..7ceb550dc0ea 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/hr.po
|
|
|
|
|
+++ b/po/hr.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1363,8 +1363,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "_Boja teksta:"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:69
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Prozirna pozadina"
|
|
|
|
|
+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
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 381dd15fd86f..500c08a70bd9 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/hu.po
|
|
|
|
|
+++ b/po/hu.po
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -2713,3 +2713,6 @@ msgstr "_Ablak bezárása"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
2016-03-03 13:40:41 +00:00
|
|
|
|
#~ msgid "Background image"
|
|
|
|
|
#~ msgstr "Háttérkép"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Áttetsző háttér"
|
|
|
|
|
diff --git a/po/hy.po b/po/hy.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index aaf2d9b292da..c8f14dfd4280 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/hy.po
|
|
|
|
|
+++ b/po/hy.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1012,8 +1012,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "_Տեքստի գույնը՝"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:73
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Թափանցիկ նախադրյալ"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Թափանցիկ նախադրյալ"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:74
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/id.po b/po/id.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index d7b1700c3696..0a1be4d025aa 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/id.po
|
|
|
|
|
+++ b/po/id.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
@@ -2248,3 +2248,6 @@ msgstr ""
|
|
|
|
|
#: ../src/terminal-window.c:3727
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgid "C_lose Window"
|
|
|
|
|
msgstr "Tutup Jende_la"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Latar belakang transparan"
|
|
|
|
|
diff --git a/po/it.po b/po/it.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 909a8c9f5062..982d702818d7 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/it.po
|
|
|
|
|
+++ b/po/it.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
@@ -2284,3 +2284,6 @@ msgstr ""
|
|
|
|
|
#: ../src/terminal-window.c:3727
|
|
|
|
|
msgid "C_lose Window"
|
|
|
|
|
msgstr "Chiudi _finestra"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Sfondo trasparente"
|
|
|
|
|
diff --git a/po/ja.po b/po/ja.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index f7235d9f4a0b..63d7fd7bb943 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ja.po
|
|
|
|
|
+++ b/po/ja.po
|
2015-10-07 11:10:08 +00:00
|
|
|
|
@@ -1907,3 +1907,6 @@ msgstr "ウィンドウを閉じる(_L)"
|
|
|
|
|
|
|
|
|
|
#~ msgid "_Update login records when command is launched"
|
|
|
|
|
#~ msgstr "コマンドを実行した時にログイン記録を更新する(_U)"
|
2015-03-24 12:26:57 +00:00
|
|
|
|
+
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "透過な画像にする"
|
|
|
|
|
diff --git a/po/ka.po b/po/ka.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 2a0bc91fad40..10a833ad4cad 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ka.po
|
|
|
|
|
+++ b/po/ka.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერი:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:86
|
|
|
|
|
#, fuzzy
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
msgstr "გამჭირვალე"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:87
|
|
|
|
|
diff --git a/po/kk.po b/po/kk.po
|
2016-05-11 10:34:55 +00:00
|
|
|
|
index 92d0f5cd5d7a..64f742eab956 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/kk.po
|
|
|
|
|
+++ b/po/kk.po
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -2208,3 +2208,6 @@ msgstr "Терезені жа_бу"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
#~ msgid "Be quiet"
|
|
|
|
|
#~ msgstr "Тыныш болу"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Мөлдір фон"
|
|
|
|
|
diff --git a/po/kn.po b/po/kn.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index c887f88a2c87..e899ef3ca8c1 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/kn.po
|
|
|
|
|
+++ b/po/kn.po
|
|
|
|
|
@@ -2344,3 +2344,6 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
|
|
|
|
|
|
|
|
|
|
#~ msgid "_Title:"
|
|
|
|
|
#~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
|
|
|
|
|
diff --git a/po/ko.po b/po/ko.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index af4d98131cd9..0b1a314c398a 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ko.po
|
|
|
|
|
+++ b/po/ko.po
|
2016-03-22 06:13:58 +00:00
|
|
|
|
@@ -2304,3 +2304,6 @@ msgstr "창 닫기(_L)"
|
2015-03-17 12:13:54 +00:00
|
|
|
|
|
2016-03-22 06:13:58 +00:00
|
|
|
|
#~ msgid "Whether to use a dark theme variant"
|
|
|
|
|
#~ msgstr "어두운 테마를 사용할 지 여부"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "투명한 배경"
|
|
|
|
|
diff --git a/po/ku.po b/po/ku.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index bc2bb7f03de4..226d9942f23a 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ku.po
|
|
|
|
|
+++ b/po/ku.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -558,8 +558,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "Rengê _nivîsê:"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:86
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "Rûerdê _transparan"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Rûerdê transparan"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:87
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/lt.po b/po/lt.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 974c35354b07..6b1674621446 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/lt.po
|
|
|
|
|
+++ b/po/lt.po
|
2016-03-17 15:50:33 +00:00
|
|
|
|
@@ -2310,3 +2310,6 @@ msgstr "_Užverti langą"
|
2015-03-17 12:13:54 +00:00
|
|
|
|
|
2016-02-18 18:38:04 +00:00
|
|
|
|
#~ msgid "Whether to use a dark theme variant"
|
|
|
|
|
#~ msgstr "Ar naudoti tamsų temos variantą"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Permatomas fonas"
|
|
|
|
|
diff --git a/po/lv.po b/po/lv.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 3b0f19fa8fd5..faf2fef15cc7 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/lv.po
|
|
|
|
|
+++ b/po/lv.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -2261,3 +2261,6 @@ msgstr ""
|
|
|
|
|
#: ../src/terminal-window.c:3727
|
2015-10-07 11:10:08 +00:00
|
|
|
|
msgid "C_lose Window"
|
|
|
|
|
msgstr "Aizvērt _logu"
|
2016-08-18 10:08:51 +00:00
|
|
|
|
+
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Caurspīdīgs fons"
|
|
|
|
|
diff --git a/po/mai.po b/po/mai.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 715d0b9e1c82..881fd5a2cce9 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/mai.po
|
|
|
|
|
+++ b/po/mai.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1291,8 +1291,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "पाठ रँग (_T):"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:69
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "पारदर्शी पृष्ठभूमि (_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "पारदर्शी पृष्ठभूमि"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:70
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/mg.po b/po/mg.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 99fa0f5e4059..bf4ac34d09c1 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/mg.po
|
|
|
|
|
+++ b/po/mg.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -567,8 +567,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "Lokon'ny _soratra:"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:86
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Afara tatera-pahazavana"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Afara tatera-pahazavana"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:87
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/mk.po b/po/mk.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 4fe43192fe57..6160ede0d0d3 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/mk.po
|
|
|
|
|
+++ b/po/mk.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1167,8 +1167,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "_Боја на текстот:"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:77
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Транспарентна позадина"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Транспарентна позадина"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:78
|
|
|
|
|
#| msgid "_Text color:"
|
|
|
|
|
diff --git a/po/ml.po b/po/ml.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index cc1928dcda63..62abd2131499 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ml.po
|
|
|
|
|
+++ b/po/ml.po
|
|
|
|
|
@@ -2751,8 +2751,8 @@ msgstr "ടെര്മിനല് അ_ടയ്ക്കുക"
|
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "_സോളിഡ് നിറം"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "_പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
|
|
|
|
|
|
|
|
|
|
#~ msgid "S/Key Challenge Response"
|
|
|
|
|
#~ msgstr "S/Key ചാലഞ്ച് മറുപടി"
|
|
|
|
|
diff --git a/po/mn.po b/po/mn.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 2f9d86072d1c..8f8850b7ec0b 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/mn.po
|
|
|
|
|
+++ b/po/mn.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -618,8 +618,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "_Текстийн өнгө:"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:102
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Тунгалаг дэвсгэр"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Тунгалаг дэвсгэр"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:103
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/mr.po b/po/mr.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 61997dafbd03..50451d7b8e60 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/mr.po
|
|
|
|
|
+++ b/po/mr.po
|
|
|
|
|
@@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
|
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "गडद रंग (_S)"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "पारदर्शी पार्श्वभूमी(_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "पारदर्शी पार्श्वभूमी"
|
|
|
|
|
|
|
|
|
|
#~ msgid "Disabled"
|
|
|
|
|
#~ msgstr "अकार्यान्वीतित"
|
|
|
|
|
diff --git a/po/ms.po b/po/ms.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index f2ebd4851d3b..a20bae29a8e8 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ms.po
|
|
|
|
|
+++ b/po/ms.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -631,8 +631,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "Warna _Teks:"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:102
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "LatarBelakang _Telus"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "LatarBelakang Telus"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:103
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/nb.po b/po/nb.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index d2a9a7b099f5..b8d4cc54272b 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/nb.po
|
|
|
|
|
+++ b/po/nb.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -2238,3 +2238,6 @@ msgstr ""
|
|
|
|
|
#: ../src/terminal-window.c:3736
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgid "C_lose Window"
|
|
|
|
|
msgstr "_Lukk vindu"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Gjennomsiktig bakgrunn"
|
|
|
|
|
diff --git a/po/nds.po b/po/nds.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 82f930b1cc0c..da1d6d0c9342 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/nds.po
|
|
|
|
|
+++ b/po/nds.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -996,8 +996,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "_Textklöör:"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:73
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Döörschienenachtergrund:"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Döörschienenachtergrund:"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:74
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/ne.po b/po/ne.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 4fe16cc88a9a..d9a90adbf693 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ne.po
|
|
|
|
|
+++ b/po/ne.po
|
|
|
|
|
@@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
|
|
|
|
|
#~ msgid "_None (use solid color)"
|
|
|
|
|
#~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "पारदर्शी पृष्ठभूमि"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "पारदर्शी पृष्ठभूमि"
|
|
|
|
|
|
|
|
|
|
#~ msgid "_Use the system fixed width font"
|
|
|
|
|
#~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
|
|
|
|
|
diff --git a/po/nl.po b/po/nl.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index a51720be1610..111b032c89fa 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/nl.po
|
|
|
|
|
+++ b/po/nl.po
|
|
|
|
|
@@ -2352,3 +2352,6 @@ msgstr "Venster sl_uiten"
|
|
|
|
|
|
|
|
|
|
#~ msgid "Switch to Tab 12"
|
|
|
|
|
#~ msgstr "Ga naar tab 12"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Transparante achtergrond"
|
|
|
|
|
diff --git a/po/nn.po b/po/nn.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 5aa43b113ed9..33aff8b1d52a 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/nn.po
|
|
|
|
|
+++ b/po/nn.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1429,8 +1429,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "_Tekstfarge:"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:73
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Gjennomskinleg bakgrunn"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Gjennomskinleg bakgrunn"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:74
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/oc.po b/po/oc.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index b1befba5b372..0491601ab3b6 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/oc.po
|
|
|
|
|
+++ b/po/oc.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -3352,8 +3352,8 @@ msgstr "Tampar _la fenèstra"
|
2015-09-14 16:22:36 +00:00
|
|
|
|
#~ msgid "Run;"
|
|
|
|
|
#~ msgstr "Executar;Consòla;Shell;"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
2016-03-17 15:50:33 +00:00
|
|
|
|
-#~ msgstr "Rèireplan _transparent"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+msgid "Transparent background"
|
2016-03-17 15:50:33 +00:00
|
|
|
|
+msgstr "Rèireplan transparent"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
2015-09-14 16:22:36 +00:00
|
|
|
|
#~ msgid ""
|
|
|
|
|
#~ "A subset of possible encodings are presented in the Encoding submenu. "
|
2015-02-18 15:46:24 +00:00
|
|
|
|
diff --git a/po/or.po b/po/or.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index ec1e6bfb9a28..218acd712df6 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/or.po
|
|
|
|
|
+++ b/po/or.po
|
|
|
|
|
@@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
|
|
|
|
|
#~ msgid "Background image _scrolls"
|
|
|
|
|
#~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି"
|
|
|
|
|
|
|
|
|
|
#~ msgid "S_hade transparent or image background:"
|
|
|
|
|
#~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
|
|
|
|
|
diff --git a/po/pa.po b/po/pa.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 9c95b66e7185..5e5b8ba4f104 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/pa.po
|
|
|
|
|
+++ b/po/pa.po
|
|
|
|
|
@@ -3008,8 +3008,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
|
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ"
|
|
|
|
|
|
|
|
|
|
#~ msgid "S/Key Challenge Response"
|
|
|
|
|
#~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
|
|
|
|
|
diff --git a/po/ps.po b/po/ps.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index b25a2cb41712..dcbaf0bc6c8c 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ps.po
|
|
|
|
|
+++ b/po/ps.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -1053,8 +1053,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr ":د ليکنې رنګ_"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:69
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "روڼ شاليد_"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "روڼ شاليد"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:70
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/pt.po b/po/pt.po
|
2016-05-11 10:34:55 +00:00
|
|
|
|
index 0de7ba0d39f9..fce6e92ec874 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/pt.po
|
|
|
|
|
+++ b/po/pt.po
|
2016-05-11 10:34:55 +00:00
|
|
|
|
@@ -3193,8 +3193,8 @@ msgstr "Fechar jane_la"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ msgid "Background image _scrolls"
|
|
|
|
|
#~ msgstr "Imagem de fundo _rola"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "Fundo _transparente"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Fundo transparente"
|
|
|
|
|
|
|
|
|
|
#~ 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
|
2016-05-11 10:34:55 +00:00
|
|
|
|
index ff624815e4a9..d87c3702f3bd 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/pt_BR.po
|
|
|
|
|
+++ b/po/pt_BR.po
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -3056,3 +3056,6 @@ msgstr "_Fechar janela"
|
2015-09-14 16:22:36 +00:00
|
|
|
|
#~ "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 "
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ "hexadecimal. Exemplo: \"#FF00FF\""
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Fundo transparente"
|
|
|
|
|
diff --git a/po/ro.po b/po/ro.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 179dd77fd166..f7fc7ae070cf 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ro.po
|
|
|
|
|
+++ b/po/ro.po
|
|
|
|
|
@@ -1576,8 +1576,8 @@ msgid "_Text color:"
|
|
|
|
|
msgstr "Culoare _text:"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:77
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "Fundal _transparent"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Fundal transparent"
|
|
|
|
|
|
|
|
|
|
#: ../src/profile-preferences.glade.h:78
|
|
|
|
|
msgid "_Underline color:"
|
|
|
|
|
diff --git a/po/ru.po b/po/ru.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 8ff3d59e696e..9b3342d2f0ce 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ru.po
|
|
|
|
|
+++ b/po/ru.po
|
2016-03-22 06:13:58 +00:00
|
|
|
|
@@ -2318,3 +2318,6 @@ msgstr "_Закрыть окно"
|
|
|
|
|
|
|
|
|
|
#~ msgid "_Same as text color"
|
|
|
|
|
#~ msgstr "_Цвет как у обычного текста"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Прозрачный фон"
|
|
|
|
|
diff --git a/po/rw.po b/po/rw.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 012f64e325c3..7072fa97af5d 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/rw.po
|
|
|
|
|
+++ b/po/rw.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -749,7 +749,7 @@ msgstr "Ibara ry'Inyandiko..."
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:102
|
|
|
|
|
#, fuzzy
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
msgstr "Mbuganyuma"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:103
|
|
|
|
|
diff --git a/po/si.po b/po/si.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index adca7d5acba9..64c05665429b 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/si.po
|
|
|
|
|
+++ b/po/si.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -538,8 +538,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "පෙළ වර්ණ: (_T)"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:86
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "විනිවිද පෙනෙන පසුබිම (_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "විනිවිද පෙනෙන පසුබිම"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:87
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/sk.po b/po/sk.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 03ac832c72c9..e97eb6113a87 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/sk.po
|
|
|
|
|
+++ b/po/sk.po
|
2016-03-17 15:50:33 +00:00
|
|
|
|
@@ -2585,3 +2585,6 @@ msgstr "_Zavrieť okno"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ "\n"
|
2016-02-18 18:38:04 +00:00
|
|
|
|
#~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
|
|
|
|
|
#~ "help“.\n"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Priehľadné pozadie"
|
|
|
|
|
diff --git a/po/sl.po b/po/sl.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index d9260d63f4b2..1cffc3d23fe4 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/sl.po
|
|
|
|
|
+++ b/po/sl.po
|
2015-10-07 11:10:08 +00:00
|
|
|
|
@@ -2322,3 +2322,6 @@ msgstr "_Zapri okno"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
#~ msgid "_Profile Preferences…"
|
|
|
|
|
#~ msgstr "Možnosti _profila ..."
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Prosojno ozadje"
|
|
|
|
|
diff --git a/po/sq.po b/po/sq.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 158f6cb167cc..96afc9b98fd4 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/sq.po
|
|
|
|
|
+++ b/po/sq.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -568,8 +568,8 @@ msgstr "Ngjyra e _tekstit:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
# (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:85
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "Sfond _Trasparent"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Sfond Trasparent"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:86
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/sr.po b/po/sr.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 799352b324a1..bad0c4e35343 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/sr.po
|
|
|
|
|
+++ b/po/sr.po
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -2424,3 +2424,6 @@ msgstr "_Затвори прозор"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
#~ msgid "Close Window"
|
|
|
|
|
#~ msgstr "Затвори прозор"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Провидна позадина"
|
|
|
|
|
diff --git a/po/sr@latin.po b/po/sr@latin.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 24fb037723bc..ac66a52cb56d 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/sr@latin.po
|
|
|
|
|
+++ b/po/sr@latin.po
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -2424,3 +2424,6 @@ msgstr "_Zatvori prozor"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
#~ msgid "Close Window"
|
|
|
|
|
#~ msgstr "Zatvori prozor"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Providna pozadina"
|
|
|
|
|
diff --git a/po/sv.po b/po/sv.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 38b942608ca7..0ad3def03714 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/sv.po
|
|
|
|
|
+++ b/po/sv.po
|
2016-03-22 06:13:58 +00:00
|
|
|
|
@@ -2281,5 +2281,8 @@ msgstr "Stän_g fönster"
|
2015-03-17 12:13:54 +00:00
|
|
|
|
#~ msgid "Unknown completion request for \"%s\""
|
|
|
|
|
#~ msgstr "Okänd kompletteringsbegäran för \"%s\""
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Genomskinlig bakgrund"
|
2015-03-17 12:13:54 +00:00
|
|
|
|
+
|
|
|
|
|
#~ msgid "Missing command"
|
|
|
|
|
#~ msgstr "Kommando saknas"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
diff --git a/po/ta.po b/po/ta.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 80aa2f684eec..61185b47f911 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ta.po
|
|
|
|
|
+++ b/po/ta.po
|
|
|
|
|
@@ -3028,8 +3028,8 @@ msgstr "_l சாளரத்தை மூடவும்"
|
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "(_S) ஒரே வண்ணம்"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "_T புலப்பாடு பின்னணி"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "புலப்பாடு பின்னணி"
|
|
|
|
|
|
|
|
|
|
#~ msgid "No such profile \"%s\", using default profile\n"
|
|
|
|
|
#~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
|
|
|
|
|
diff --git a/po/te.po b/po/te.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 82c0e0fc8f54..c60e1bc4a9c3 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/te.po
|
|
|
|
|
+++ b/po/te.po
|
|
|
|
|
@@ -2898,8 +2898,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
|
|
|
|
|
#~ msgid "Background image _scrolls"
|
|
|
|
|
#~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "పారదర్శక నేపథ్యం (_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "పారదర్శక నేపథ్యం"
|
|
|
|
|
|
|
|
|
|
#~ msgid "S_hade transparent or image background:"
|
|
|
|
|
#~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్గ్రౌండ్ కు మారు(_h):"
|
|
|
|
|
diff --git a/po/th.po b/po/th.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 91c78cc07fce..1f1fa486f941 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/th.po
|
|
|
|
|
+++ b/po/th.po
|
2016-02-18 18:38:04 +00:00
|
|
|
|
@@ -2676,8 +2676,8 @@ msgstr "ปิ_ดหน้าต่าง"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "สี_ทึบ"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "พื้นหลังโปร่งแ_สง"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "พื้นหลังโปร่งแสง"
|
|
|
|
|
|
|
|
|
|
#~ msgid ""
|
|
|
|
|
#~ "You already have a profile called “%s”. Do you want to create another "
|
|
|
|
|
diff --git a/po/tr.po b/po/tr.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 85a5c59ed059..e4d3ba4524e7 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/tr.po
|
|
|
|
|
+++ b/po/tr.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -2307,3 +2307,6 @@ msgstr "_Pencereyi Kapat"
|
|
|
|
|
|
|
|
|
|
#~ msgid "_Same as text color"
|
|
|
|
|
#~ msgstr "_Metin rengiyle aynı"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Şeffaf arkaplan"
|
|
|
|
|
diff --git a/po/ug.po b/po/ug.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 313f76b98eae..be6089762082 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/ug.po
|
|
|
|
|
+++ b/po/ug.po
|
|
|
|
|
@@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
|
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "ساپ رەڭ(_S)"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "سۈزۈك تەگلىك(_T)"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "سۈزۈك تەگلىك"
|
|
|
|
|
|
|
|
|
|
#~ msgid ""
|
|
|
|
|
#~ "You already have a profile called “%s”. Do you want to create another "
|
|
|
|
|
diff --git a/po/uk.po b/po/uk.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index 0a04bc62af1b..c097f0c1d328 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/uk.po
|
|
|
|
|
+++ b/po/uk.po
|
2016-03-17 15:50:33 +00:00
|
|
|
|
@@ -3126,8 +3126,8 @@ msgstr "Закр_ити вікно"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ msgid "_Solid color"
|
|
|
|
|
#~ msgstr "_Суцільний колір"
|
|
|
|
|
|
|
|
|
|
-#~ msgid "_Transparent background"
|
|
|
|
|
-#~ msgstr "П_розоре тло"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Прозоре тло"
|
|
|
|
|
|
|
|
|
|
#~ msgid "Switch to Tab 2"
|
|
|
|
|
#~ msgstr "До вкладки 2"
|
|
|
|
|
diff --git a/po/vi.po b/po/vi.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 4cf9a8fe22e2..15fcff29b3da 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/vi.po
|
|
|
|
|
+++ b/po/vi.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
@@ -2863,3 +2863,6 @@ msgstr "Đón_g cửa sổ"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
#~ "Phím tắt để đặt lại thiết bị cuối. Dùng dạng chuỗi có cùng một khuôn dạng "
|
|
|
|
|
#~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị "
|
|
|
|
|
#~ "tắt), nghĩa là không có phím tắt cho hành động này."
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Nền trong suốt"
|
|
|
|
|
diff --git a/po/wa.po b/po/wa.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 0e0a6a752b6d..7be7bcc04a93 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/wa.po
|
|
|
|
|
+++ b/po/wa.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -564,8 +564,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "Coleur pol _tecse:"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:86
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "Fond k' on voet _houte"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Fond k' on voet houte"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:87
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/xh.po b/po/xh.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 44a8e21c7842..999efa7b4322 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/xh.po
|
|
|
|
|
+++ b/po/xh.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
@@ -621,8 +621,8 @@ msgid "_Text color:"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
msgstr "_Umbala wombhalo:"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:102
|
|
|
|
|
-msgid "_Transparent background"
|
|
|
|
|
-msgstr "_Okungasemva okucace gca"
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "Okungasemva okucace gca"
|
|
|
|
|
|
|
|
|
|
#: ../src/gnome-terminal.glade2.h:103
|
|
|
|
|
msgid "_Update login records when command is launched"
|
|
|
|
|
diff --git a/po/zh_CN.po b/po/zh_CN.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index e9a540f2963a..8473524960e6 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/zh_CN.po
|
|
|
|
|
+++ b/po/zh_CN.po
|
2016-02-18 18:38:04 +00:00
|
|
|
|
@@ -2357,3 +2357,6 @@ msgstr "关闭窗口(_L)"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
#~ msgid "_Find..."
|
|
|
|
|
#~ msgstr "查找(_F)..."
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "透明背景"
|
|
|
|
|
diff --git a/po/zh_HK.po b/po/zh_HK.po
|
2016-08-18 10:08:51 +00:00
|
|
|
|
index 61153529f0c7..61d01db9fd0f 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/zh_HK.po
|
|
|
|
|
+++ b/po/zh_HK.po
|
|
|
|
|
@@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
|
|
|
|
|
|
|
|
|
|
#~ msgid "Show session management options"
|
|
|
|
|
#~ msgstr "顯示作業階段管理選項"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "透明背景"
|
|
|
|
|
diff --git a/po/zh_TW.po b/po/zh_TW.po
|
2016-04-11 16:36:36 +00:00
|
|
|
|
index e85dda1047a6..f69fd98ef82c 100644
|
2015-02-18 15:46:24 +00:00
|
|
|
|
--- a/po/zh_TW.po
|
|
|
|
|
+++ b/po/zh_TW.po
|
2016-03-03 13:40:41 +00:00
|
|
|
|
@@ -2558,3 +2558,6 @@ msgstr "關閉視窗(_L)"
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|
|
|
|
|
#~ msgid "Show session management options"
|
|
|
|
|
#~ msgstr "顯示作業階段管理選項"
|
|
|
|
|
+
|
|
|
|
|
+msgid "Transparent background"
|
|
|
|
|
+msgstr "透明背景"
|
|
|
|
|
--
|
2016-08-18 10:08:51 +00:00
|
|
|
|
2.7.4
|
2015-02-18 15:46:24 +00:00
|
|
|
|
|