]> git.pld-linux.org Git - packages/gnome-terminal.git/blame - gnome-terminal-transparency.patch
- updated to 3.36.2
[packages/gnome-terminal.git] / gnome-terminal-transparency.patch
CommitLineData
bb11d6bf 1From c9a5c9630248efe0bc34dfbd4f54c8d4f68d4ee6 Mon Sep 17 00:00:00 2001
2b7dad92
JK
2From: Debarshi Ray <debarshir@gnome.org>
3Date: Mon, 12 May 2014 14:57:18 +0200
d4bc1a2d 4Subject: [PATCH 01/14] Restore transparency
2b7dad92
JK
5
6The transparency settings were removed as a side effect of
72bff4b63ed3ceef6055e35563e9b0b33ad57349d
8
9This restores them and you will need a compositing window manager to
10use it. The background image setting, also known as faux transparency,
11was not restored.
12
13The transparency checkbox lost its mnemonic accelerator because 't'
14is already taken and using any other letter would make it hard to
15restore the translations of the string.
bb11d6bf
JK
16
17Some changes by Peter Weber <peter.weber@mailbox.org>
2b7dad92 18---
bb11d6bf
JK
19 src/org.gnome.Terminal.gschema.xml | 10 +++++++
20 src/preferences.ui | 47 ++++++++++++++++++++++++++++++
21 src/profile-editor.c | 16 ++++++++++
22 src/terminal-schemas.h | 3 ++
23 src/terminal-screen.c | 22 +++++++++++++-
24 src/terminal-window.c | 7 +++++
25 6 files changed, 104 insertions(+), 1 deletion(-)
2b7dad92
JK
26
27diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
bb11d6bf 28index 945b0bd661c5..c581f3cf2553 100644
2b7dad92
JK
29--- a/src/org.gnome.Terminal.gschema.xml
30+++ b/src/org.gnome.Terminal.gschema.xml
bb11d6bf 31@@ -400,6 +400,16 @@
2b7dad92
JK
32 <default>'narrow'</default>
33 <summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
34 </key>
35+ <key name="use-transparent-background" type="b">
36+ <default>false</default>
37+ <summary>Whether to use a transparent background</summary>
38+ </key>
39+ <key name="background-transparency-percent" type="i">
40+ <default>50</default>
41+ <range min="0" max="100"/>
42+ <summary>Adjust the amount of transparency</summary>
43+ <description>A value between 0 and 100, where 0 is opaque and 100 is fully transparent.</description>
44+ </key>
45 </schema>
46
47 <!-- Keybinding settings -->
bb11d6bf
JK
48diff --git a/src/preferences.ui b/src/preferences.ui
49index 6259aac0f02f..f5c366f14e10 100644
50--- a/src/preferences.ui
51+++ b/src/preferences.ui
52@@ -77,6 +77,11 @@
53 <property name="step_increment">0.05</property>
54 <property name="page_increment">0.25</property>
2b7dad92
JK
55 </object>
56+ <object class="GtkAdjustment" id="background-transparent-adjustment">
57+ <property name="upper">100</property>
58+ <property name="step_increment">1</property>
59+ <property name="page_increment">10</property>
60+ </object>
61 <object class="GtkListStore" id="cjk-ambiguous-width-model">
62 <columns>
63 <!-- column-name gchararray -->
bb11d6bf
JK
64@@ -1317,6 +1322,48 @@
65 <property name="position">1</property>
66 </packing>
67 </child>
68+ <child>
69+ <object class="GtkBox" id="use-transparent-background-box">
70+ <property name="visible">True</property>
71+ <property name="can_focus">False</property>
72+ <property name="orientation">horizontal</property>
73+ <property name="spacing">12</property>
74+ <child>
75+ <object class="GtkCheckButton" id="use-transparent-background">
76+ <property name="label" translatable="yes">Transparent background</property>
77+ <property name="visible">True</property>
78+ <property name="can_focus">True</property>
79+ <property name="receives_default">False</property>
80+ <property name="use_underline">True</property>
81+ <property name="xalign">0</property>
82+ <property name="draw_indicator">True</property>
83+ </object>
84+ <packing>
85+ <property name="expand">False</property>
86+ <property name="fill">False</property>
87+ <property name="position">0</property>
88+ </packing>
89+ </child>
90+ <child>
91+ <object class="GtkScale" id="background-transparent-scale">
92+ <property name="visible">True</property>
93+ <property name="can_focus">True</property>
94+ <property name="adjustment">background-transparent-adjustment</property>
95+ <property name="draw_value">False</property>
96+ </object>
97+ <packing>
98+ <property name="expand">True</property>
99+ <property name="fill">True</property>
100+ <property name="position">1</property>
101+ </packing>
102+ </child>
103+ </object>
104+ <packing>
105+ <property name="expand">True</property>
106+ <property name="fill">True</property>
107+ <property name="position">2</property>
108+ </packing>
109+ </child>
110 </object>
111 </child>
112 </object>
113diff --git a/src/profile-editor.c b/src/profile-editor.c
114index eaad9182fed2..e03e35fc1bea 100644
115--- a/src/profile-editor.c
116+++ b/src/profile-editor.c
117@@ -1254,6 +1254,22 @@ profile_prefs_load (const char *uuid, GSettings *profile)
118 w,
119 "active-id",
120 G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
121+
122+ profile_prefs_settings_bind (profile,
123+ TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
124+ gtk_builder_get_object (builder, "use-transparent-background"),
125+ "active",
126+ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
127+ profile_prefs_settings_bind (profile,
128+ TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
129+ gtk_builder_get_object (builder, "background-transparent-scale"),
130+ "sensitive",
131+ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY);
132+ profile_prefs_settings_bind (profile,
133+ TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT,
134+ gtk_builder_get_object (builder, "background-transparent-adjustment"),
135+ "value",
136+ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
137 }
138
139 /* Called once per Preferences window, to destroy stuff that doesn't depend on the profile being edited */
2b7dad92 140diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
bb11d6bf 141index 5b0d8c3ed416..4da44232e491 100644
2b7dad92
JK
142--- a/src/terminal-schemas.h
143+++ b/src/terminal-schemas.h
bb11d6bf 144@@ -73,6 +73,9 @@ G_BEGIN_DECLS
2b7dad92
JK
145 #define TERMINAL_PROFILE_VISIBLE_NAME_KEY "visible-name"
146 #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY "word-char-exceptions"
147
148+#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND "use-transparent-background"
149+#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent"
150+
151 #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close"
152 #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar"
153 #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY "menu-accelerator-enabled"
154diff --git a/src/terminal-screen.c b/src/terminal-screen.c
bb11d6bf 155index a85fcefd40e1..26202e4555ea 100644
2b7dad92
JK
156--- a/src/terminal-screen.c
157+++ b/src/terminal-screen.c
bb11d6bf 158@@ -800,7 +800,9 @@ terminal_screen_profile_changed_cb (GSettings *profile,
2b7dad92
JK
159 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_COLORS_SET_KEY) ||
160 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_BACKGROUND_COLOR_KEY) ||
161 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_FOREGROUND_COLOR_KEY) ||
162- prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY))
163+ prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY) ||
164+ prop_name == I_(TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND) ||
165+ prop_name == I_(TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT))
166 update_color_scheme (screen);
167
168 if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
bb11d6bf 169@@ -877,6 +879,8 @@ update_color_scheme (TerminalScreen *screen)
2b7dad92
JK
170 GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
171 GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
172 GtkStyleContext *context;
173+ GtkWidget *toplevel;
174+ gboolean transparent;
175 gboolean use_theme_colors;
176
177 context = gtk_widget_get_style_context (widget);
bb11d6bf 178@@ -918,6 +922,18 @@ update_color_scheme (TerminalScreen *screen)
2b7dad92
JK
179 }
180
181 colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
182+
183+ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
184+ if (transparent)
185+ {
186+ gint transparency_percent;
187+
188+ transparency_percent = g_settings_get_int (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT);
189+ bg.alpha = (100 - transparency_percent) / 100.0;
190+ }
191+ else
192+ bg.alpha = 1.0;
193+
194 vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
195 colors, n_colors);
196 vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
bb11d6bf 197@@ -925,6 +941,10 @@ update_color_scheme (TerminalScreen *screen)
2b7dad92
JK
198 vte_terminal_set_color_cursor_foreground (VTE_TERMINAL (screen), cursor_fgp);
199 vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
200 vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
201+
202+ toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
203+ if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
204+ gtk_widget_set_app_paintable (toplevel, transparent);
205 }
206
207 static void
208diff --git a/src/terminal-window.c b/src/terminal-window.c
bb11d6bf 209index 4ed3647498b2..8fc70ce74252 100644
2b7dad92
JK
210--- a/src/terminal-window.c
211+++ b/src/terminal-window.c
bb11d6bf
JK
212@@ -2088,6 +2088,8 @@ terminal_window_init (TerminalWindow *window)
213 };
2b7dad92
JK
214 TerminalWindowPrivate *priv;
215 TerminalApp *app;
2b7dad92
JK
216+ GdkScreen *screen;
217+ GdkVisual *visual;
d4bc1a2d 218 GSettings *gtk_debug_settings;
bb11d6bf
JK
219 GtkWindowGroup *window_group;
220 // GtkAccelGroup *accel_group;
221@@ -2102,6 +2104,11 @@ terminal_window_init (TerminalWindow *window)
2b7dad92
JK
222
223 gtk_widget_init_template (GTK_WIDGET (window));
224
225+ screen = gtk_widget_get_screen (GTK_WIDGET (window));
226+ visual = gdk_screen_get_rgba_visual (screen);
227+ if (visual != NULL)
228+ gtk_widget_set_visual (GTK_WIDGET (window), visual);
229+
230 uuid_generate (u);
231 uuid_unparse (u, uuidstr);
232 priv->uuid = g_strdup (uuidstr);
233--
bb11d6bf 2342.19.1
2b7dad92
JK
235
236
bb11d6bf 237From f10a426375c392add4ad9ce28bdfc17c27b2da23 Mon Sep 17 00:00:00 2001
2b7dad92
JK
238From: Lars Uebernickel <lars.uebernickel@canonical.com>
239Date: Wed, 28 May 2014 14:11:02 +0200
d4bc1a2d 240Subject: [PATCH 02/14] window: Make the drawing robust across all themes
2b7dad92
JK
241
242There are lots of themes out there in the wild that do not specify a
243background-color for all widgets and the default is transparent. This
244is usually not a problem because GTK+ sets an opaque region on the
245whole window and things without a background-color get drawn with the
246theme's default background colour. However, to achieve transparency
247we disable the opaque region by making the window app-paintable. This
248can lead to transparent menubars or notebook tabs in some themes. We
249can avoid this by ensuring that the window always renders a background.
250
251https://bugzilla.gnome.org/show_bug.cgi?id=730016
252---
253 src/terminal-window.c | 21 +++++++++++++++++++++
254 1 file changed, 21 insertions(+)
255
256diff --git a/src/terminal-window.c b/src/terminal-window.c
bb11d6bf 257index 8fc70ce74252..1707ada83ce8 100644
2b7dad92
JK
258--- a/src/terminal-window.c
259+++ b/src/terminal-window.c
bb11d6bf
JK
260@@ -1944,6 +1944,26 @@ terminal_window_realize (GtkWidget *widget)
261 terminal_window_update_size (window);
2b7dad92
JK
262 }
263
bb11d6bf 264+static gboolean
2b7dad92
JK
265+terminal_window_draw (GtkWidget *widget,
266+ cairo_t *cr)
267+{
268+ if (gtk_widget_get_app_paintable (widget))
269+ {
270+ GtkStyleContext *context;
271+ int width;
272+ int height;
273+
274+ context = gtk_widget_get_style_context (widget);
275+ width = gtk_widget_get_allocated_width (widget);
276+ height = gtk_widget_get_allocated_height (widget);
277+ gtk_render_background (context, cr, 0, 0, width, height);
278+ gtk_render_frame (context, cr, 0, 0, width, height);
279+ }
280+
281+ return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
282+}
283+
bb11d6bf 284 static gboolean
2b7dad92
JK
285 terminal_window_state_event (GtkWidget *widget,
286 GdkEventWindowState *event)
bb11d6bf 287@@ -2255,6 +2275,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
2b7dad92
JK
288
289 widget_class->show = terminal_window_show;
290 widget_class->realize = terminal_window_realize;
291+ widget_class->draw = terminal_window_draw;
292 widget_class->window_state_event = terminal_window_state_event;
293 widget_class->screen_changed = terminal_window_screen_changed;
294 widget_class->style_updated = terminal_window_style_updated;
295--
bb11d6bf 2962.19.1
2b7dad92
JK
297
298
bb11d6bf 299From ab579d89948777e2e0267376d64cca79af6684d9 Mon Sep 17 00:00:00 2001
2b7dad92
JK
300From: "Owen W. Taylor" <otaylor@fishsoup.net>
301Date: Fri, 13 Nov 2015 15:16:42 +0100
d4bc1a2d 302Subject: [PATCH 03/14] screen, window: Extra padding around transparent
2b7dad92
JK
303 terminals in Wayland
304
305https://bugzilla.redhat.com/show_bug.cgi?id=1207943
306---
307 src/terminal-screen.c | 40 +++++++++++++++++++++++++++++++++++++---
308 src/terminal-window.c | 18 ++++++++++++------
309 2 files changed, 49 insertions(+), 9 deletions(-)
310
311diff --git a/src/terminal-screen.c b/src/terminal-screen.c
bb11d6bf 312index 26202e4555ea..c0ce8a89126c 100644
2b7dad92
JK
313--- a/src/terminal-screen.c
314+++ b/src/terminal-screen.c
4de6f867 315@@ -155,6 +155,8 @@ static void terminal_screen_system_font_
2b7dad92
JK
316 static gboolean terminal_screen_popup_menu (GtkWidget *widget);
317 static gboolean terminal_screen_button_press (GtkWidget *widget,
318 GdkEventButton *event);
319+static void terminal_screen_hierarchy_changed (GtkWidget *widget,
320+ GtkWidget *previous_toplevel);
4de6f867
JB
321 static void terminal_screen_child_exited (VteTerminal *terminal,
322 int status);
323
324@@ -624,6 +626,7 @@ terminal_screen_class_init (TerminalScre
2b7dad92
JK
325 widget_class->drag_data_received = terminal_screen_drag_data_received;
326 widget_class->button_press_event = terminal_screen_button_press;
327 widget_class->popup_menu = terminal_screen_popup_menu;
328+ widget_class->hierarchy_changed = terminal_screen_hierarchy_changed;
329
330 terminal_class->child_exited = terminal_screen_child_exited;
331
bb11d6bf
JK
332@@ -864,6 +867,32 @@ terminal_screen_profile_changed_cb (GSettings *profile,
333 g_object_thaw_notify (object);
2b7dad92
JK
334 }
335
bb11d6bf 336+static void
2b7dad92
JK
337+update_toplevel_transparency (TerminalScreen *screen)
338+{
339+ GtkWidget *widget = GTK_WIDGET (screen);
340+ TerminalScreenPrivate *priv = screen->priv;
341+ GSettings *profile = priv->profile;
342+ GtkWidget *toplevel;
343+
344+ toplevel = gtk_widget_get_toplevel (widget);
345+ if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
346+ {
347+ gboolean transparent;
348+
349+ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
350+ if (gtk_widget_get_app_paintable (toplevel) != transparent)
351+ {
352+ gtk_widget_set_app_paintable (toplevel, transparent);
353+
354+ /* The opaque region of the toplevel isn't updated until the toplevel is allocated;
355+ * set_app_paintable() doesn't force an allocation, so do that manually.
356+ */
357+ gtk_widget_queue_resize (toplevel);
358+ }
359+ }
360+}
361+
bb11d6bf 362 static void
2b7dad92
JK
363 update_color_scheme (TerminalScreen *screen)
364 {
bb11d6bf 365@@ -942,9 +971,7 @@ update_color_scheme (TerminalScreen *screen)
2b7dad92
JK
366 vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
367 vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
368
369- toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
370- if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
371- gtk_widget_set_app_paintable (toplevel, transparent);
372+ update_toplevel_transparency (screen);
373 }
374
375 static void
bb11d6bf 376@@ -1549,6 +1576,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
2b7dad92
JK
377 terminal_screen_popup_info_unref (info);
378 }
379
380+static void
381+terminal_screen_hierarchy_changed (GtkWidget *widget,
382+ GtkWidget *previous_toplevel)
383+{
384+ update_toplevel_transparency (TERMINAL_SCREEN (widget));
385+}
386+
387 static gboolean
388 terminal_screen_button_press (GtkWidget *widget,
389 GdkEventButton *event)
390diff --git a/src/terminal-window.c b/src/terminal-window.c
bb11d6bf 391index 1707ada83ce8..a3c5a7fc2f46 100644
2b7dad92
JK
392--- a/src/terminal-window.c
393+++ b/src/terminal-window.c
bb11d6bf 394@@ -1950,15 +1950,21 @@ terminal_window_draw (GtkWidget *widget,
2b7dad92
JK
395 {
396 if (gtk_widget_get_app_paintable (widget))
397 {
398+ GtkAllocation child_allocation;
399 GtkStyleContext *context;
400- int width;
401- int height;
402+ GtkWidget *child;
403+
404+ /* Get the *child* allocation, so we don't overwrite window borders */
405+ child = gtk_bin_get_child (GTK_BIN (widget));
406+ gtk_widget_get_allocation (child, &child_allocation);
407
408 context = gtk_widget_get_style_context (widget);
409- width = gtk_widget_get_allocated_width (widget);
410- height = gtk_widget_get_allocated_height (widget);
411- gtk_render_background (context, cr, 0, 0, width, height);
412- gtk_render_frame (context, cr, 0, 0, width, height);
413+ gtk_render_background (context, cr,
414+ child_allocation.x, child_allocation.y,
415+ child_allocation.width, child_allocation.height);
416+ gtk_render_frame (context, cr,
417+ child_allocation.x, child_allocation.y,
418+ child_allocation.width, child_allocation.height);
419 }
420
421 return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
422--
bb11d6bf 4232.19.1
2b7dad92
JK
424
425
bb11d6bf
JK
426From aa31c5189de74fba379426792f5d48c64515ba48 Mon Sep 17 00:00:00 2001
427From: Debarshi Ray <debarshir@gnome.org>
428Date: Mon, 27 Feb 2017 16:53:51 +0100
429Subject: [PATCH 04/14] screen: Silence -Wunused variable
430
431https://bugzilla.redhat.com/show_bug.cgi?id=1207943
432---
433 src/terminal-screen.c | 1 -
434 1 file changed, 1 deletion(-)
435
436diff --git a/src/terminal-screen.c b/src/terminal-screen.c
437index c0ce8a89126c..1b763a3890dd 100644
438--- a/src/terminal-screen.c
439+++ b/src/terminal-screen.c
440@@ -908,7 +908,6 @@ update_color_scheme (TerminalScreen *screen)
441 GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
442 GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
443 GtkStyleContext *context;
444- GtkWidget *toplevel;
445 gboolean transparent;
446 gboolean use_theme_colors;
447
448--
4492.19.1
450
451
452From b3c8ba6bd276defab38d05406d225f56b170db08 Mon Sep 17 00:00:00 2001
2b7dad92
JK
453From: Debarshi Ray <debarshir@gnome.org>
454Date: Tue, 17 Feb 2015 17:06:17 +0100
d4bc1a2d
MB
455Subject: [PATCH 11/14] Restore translations for setting a title and
456 transparency
2b7dad92
JK
457
458---
bb11d6bf
JK
459 po/am.po | 8 ++++----
460 po/an.po | 12 ++++++------
461 po/ar.po | 16 ++++++++--------
462 po/as.po | 16 ++++++++--------
d4bc1a2d 463 po/ast.po | 8 ++++----
bb11d6bf 464 po/az.po | 8 ++++----
d4bc1a2d
MB
465 po/be.po | 3 +++
466 po/be@latin.po | 8 ++++----
bb11d6bf 467 po/bg.po | 9 +++++++++
d4bc1a2d 468 po/bn.po | 8 ++++----
bb11d6bf 469 po/bn_IN.po | 11 +++++++----
d4bc1a2d 470 po/br.po | 6 +++---
bb11d6bf
JK
471 po/bs.po | 10 ++++++++++
472 po/ca.po | 12 ++++++++++++
473 po/ca@valencia.po | 12 ++++++++++++
474 po/cs.po | 12 ++++++++++++
d4bc1a2d 475 po/cy.po | 8 ++++----
bb11d6bf
JK
476 po/da.po | 11 +++++++++++
477 po/de.po | 12 ++++++++++++
d4bc1a2d 478 po/dz.po | 8 ++++----
bb11d6bf 479 po/el.po | 15 +++++++++------
d4bc1a2d 480 po/en@shaw.po | 8 ++++----
bb11d6bf
JK
481 po/en_CA.po | 8 ++++----
482 po/en_GB.po | 16 ++++++++--------
483 po/eo.po | 8 ++++----
484 po/es.po | 16 ++++++++--------
d4bc1a2d 485 po/et.po | 3 +++
bb11d6bf
JK
486 po/eu.po | 16 ++++++++--------
487 po/fa.po | 15 +++++++++------
488 po/fi.po | 12 ++++++++++++
489 po/fr.po | 12 ++++++++++++
490 po/fur.po | 11 +++++++++--
d4bc1a2d 491 po/ga.po | 3 +++
bb11d6bf
JK
492 po/gl.po | 16 ++++++++--------
493 po/gu.po | 16 ++++++++--------
494 po/he.po | 16 ++++++++--------
495 po/hi.po | 17 ++++++++---------
496 po/hr.po | 10 ++++++++++
497 po/hu.po | 12 ++++++++++++
d4bc1a2d 498 po/hy.po | 8 ++++----
bb11d6bf
JK
499 po/id.po | 12 ++++++++++++
500 po/it.po | 12 ++++++++++++
501 po/ja.po | 12 ++++++++++++
502 po/ka.po | 6 +++---
503 po/kk.po | 12 ++++++++++++
d4bc1a2d 504 po/km.po | 4 ++--
bb11d6bf
JK
505 po/kn.po | 15 +++++++++------
506 po/ko.po | 12 ++++++++++++
d4bc1a2d 507 po/ku.po | 8 ++++----
bb11d6bf
JK
508 po/lt.po | 12 ++++++++++++
509 po/lv.po | 16 ++++++++++++++++
d4bc1a2d 510 po/mai.po | 8 ++++----
bb11d6bf 511 po/mg.po | 8 ++++----
d4bc1a2d 512 po/mk.po | 8 ++++----
bb11d6bf
JK
513 po/ml.po | 3 +++
514 po/mn.po | 8 ++++----
515 po/mr.po | 16 ++++++++--------
516 po/ms.po | 8 ++++----
517 po/nb.po | 12 ++++++++++++
d4bc1a2d 518 po/nds.po | 8 ++++----
bb11d6bf
JK
519 po/ne.po | 12 ++++++------
520 po/nl.po | 12 ++++++++++++
d4bc1a2d 521 po/nn.po | 8 ++++----
bb11d6bf 522 po/oc.po | 12 ++++++------
d4bc1a2d 523 po/or.po | 4 ++--
bb11d6bf 524 po/pa.po | 23 +++++++++++------------
d4bc1a2d 525 po/ps.po | 8 ++++----
bb11d6bf
JK
526 po/pt.po | 16 ++++++++--------
527 po/pt_BR.po | 15 +++++++++------
528 po/ro.po | 4 ++--
529 po/ru.po | 16 ++++++++++++++++
d4bc1a2d 530 po/rw.po | 3 +--
bb11d6bf
JK
531 po/si.po | 8 ++++----
532 po/sk.po | 12 ++++++++++++
533 po/sl.po | 15 +++++++++------
d4bc1a2d 534 po/sq.po | 8 ++++----
bb11d6bf
JK
535 po/sr.po | 22 ++++++++++++----------
536 po/sr@latin.po | 22 ++++++++++++----------
d4bc1a2d
MB
537 po/sv.po | 12 ++++++++++++
538 po/ta.po | 27 +++++++++++++--------------
539 po/te.po | 27 +++++++++++++--------------
540 po/tg.po | 16 ++++++++--------
541 po/th.po | 20 ++++++++++----------
542 po/tr.po | 12 ++++++++++++
543 po/ug.po | 4 ++--
544 po/uk.po | 20 ++++++++++----------
bb11d6bf 545 po/vi.po | 15 +++++++++------
d4bc1a2d
MB
546 po/wa.po | 12 ++++++------
547 po/xh.po | 12 ++++++------
bb11d6bf
JK
548 po/zh_CN.po | 15 +++++++++------
549 po/zh_HK.po | 15 +++++++++------
550 po/zh_TW.po | 15 +++++++++------
551 92 files changed, 707 insertions(+), 371 deletions(-)
2b7dad92
JK
552
553diff --git a/po/am.po b/po/am.po
bb11d6bf 554index 3445d96da657..ee992f0712a5 100644
2b7dad92
JK
555--- a/po/am.po
556+++ b/po/am.po
d4bc1a2d
MB
557@@ -214,8 +214,8 @@ msgid "<b>Background</b>"
558 msgstr "<b>መደብ</b>"
559
560 #: ../src/gnome-terminal.glade2.h:2
561-msgid "<b>Command</b>"
562-msgstr "<b>ትእዛዝ</b>"
563+msgid "Command"
564+msgstr "ትእዛዝ"
565
566 #: ../src/gnome-terminal.glade2.h:3
567 msgid "<b>Compatibility</b>"
568@@ -614,8 +614,8 @@ msgid "_Text color:"
2b7dad92
JK
569 msgstr "የ_ጽሑፍ ቀለም፦"
570
571 #: ../src/gnome-terminal.glade2.h:102
572-msgid "_Transparent background"
573-msgstr "_የሚያሳይ መደብ"
574+msgid "Transparent background"
575+msgstr "የሚያሳይ መደብ"
576
577 #: ../src/gnome-terminal.glade2.h:103
578 msgid "_Update login records when command is launched"
d4bc1a2d 579diff --git a/po/an.po b/po/an.po
bb11d6bf 580index fcec2668aa11..9e07cb682c57 100644
d4bc1a2d
MB
581--- a/po/an.po
582+++ b/po/an.po
583@@ -2241,8 +2241,8 @@ msgstr "_Zarrar a finestra"
584 #~ msgid "Use custom default terminal si_ze"
585 #~ msgstr "Emplegar grandaria predeterminada presonali_zada de terminal"
586
587-#~ msgid "Title"
588-#~ msgstr "Titol"
589+msgid "Title"
590+msgstr "Titol"
591
592 #~ msgid "When terminal commands set their o_wn titles:"
593 #~ msgstr ""
594@@ -2266,8 +2266,8 @@ msgstr "_Zarrar a finestra"
595 #~ msgid "Close Window"
596 #~ msgstr "Zarrar a finestra"
597
598-#~ msgid "Set Title"
599-#~ msgstr "Establir titol"
600+msgid "Set Title"
601+msgstr "Establir titol"
602
603 #~ msgid "Switch to Tab 2"
604 #~ msgstr "Cambiar a la pestanya 2"
d4bc1a2d
MB
605@@ -2340,8 +2340,8 @@ msgstr "_Zarrar a finestra"
606 #~ msgid "_Input Methods"
607 #~ msgstr "Me_todos de dentrada"
608
609-#~ msgid "_Title:"
610-#~ msgstr "_Titol:"
611+msgid "_Title:"
612+msgstr "_Titol:"
613
614 #~ msgid "Keyboard Shortcuts"
615 #~ msgstr "Alcorces de teclau"
2b7dad92 616diff --git a/po/ar.po b/po/ar.po
bb11d6bf 617index 6f5e80cc2a66..53e15b97f312 100644
2b7dad92
JK
618--- a/po/ar.po
619+++ b/po/ar.po
bb11d6bf 620@@ -2553,11 +2553,11 @@ msgstr "أغ_لق النافذة"
d4bc1a2d
MB
621 #~ msgid "Default size:"
622 #~ msgstr "الحجم المبدئي:"
623
624-#~ msgid "Title"
625-#~ msgstr "العنوان"
626+msgid "Title"
627+msgstr "العنوان"
628
629-#~ msgid "_Title:"
630-#~ msgstr "ال_عنوان:"
631+msgid "_Title:"
632+msgstr "ال_عنوان:"
633
634 #~ msgid "Title and Command"
635 #~ msgstr "العنوان والأمر"
bb11d6bf 636@@ -2565,8 +2565,8 @@ msgstr "أغ_لق النافذة"
d4bc1a2d
MB
637 #~ msgid "_Unlimited"
638 #~ msgstr "_غير محدود"
639
640-#~ msgid "Set Title"
641-#~ msgstr "حدد العنوان"
642+msgid "Set Title"
643+msgstr "حدد العنوان"
644
645 #~ msgid "Current Locale"
646 #~ msgstr "المحليّة الحالية"
bb11d6bf 647@@ -3309,8 +3309,8 @@ msgstr "أغ_لق النافذة"
2b7dad92
JK
648 #~ msgid "Background image _scrolls"
649 #~ msgstr "صورة الخلفية ت_لتف"
650
651-#~ msgid "_Transparent background"
652-#~ msgstr "خلفية _شفافة"
653+msgid "Transparent background"
654+msgstr "خلفية شفافة"
655
656 #~ msgid "S_hade transparent or image background:"
657 #~ msgstr "_ظلل شفافية أو صورة الخلفية:"
658diff --git a/po/as.po b/po/as.po
bb11d6bf 659index 3fade2b8cb12..5b905340f89f 100644
2b7dad92
JK
660--- a/po/as.po
661+++ b/po/as.po
d4bc1a2d
MB
662@@ -2163,11 +2163,11 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
663 #~ msgid "Default size:"
664 #~ msgstr "অবিকল্পিত আকাৰ:"
665
666-#~ msgid "Title"
667-#~ msgstr "শীৰ্ষক"
668+msgid "Title"
669+msgstr "শীৰ্ষক"
670
671-#~ msgid "_Title:"
672-#~ msgstr "শীৰ্ষক (_T):"
673+msgid "_Title:"
674+msgstr "শীৰ্ষক (_T):"
675
676 #~ msgid "Title and Command"
677 #~ msgstr "শীৰ্ষক আৰু কমান্ড"
bb11d6bf 678@@ -2175,8 +2175,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
d4bc1a2d
MB
679 #~ msgid "_Unlimited"
680 #~ msgstr "অসীমিত (_U)"
681
682-#~ msgid "Set Title"
683-#~ msgstr "শীৰ্ষক নিৰ্ধাৰণ কৰক"
684+msgid "Set Title"
685+msgstr "শীৰ্ষক নিৰ্ধাৰণ কৰক"
686
687 #~ msgid "Current Locale"
688 #~ msgstr "বৰ্তমান স্থানীয়"
2b7dad92
JK
689@@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
690 #~ msgid "Background image _scrolls"
691 #~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
692
693-#~ msgid "_Transparent background"
694-#~ msgstr "স্বচ্চ পটভূমি (_T)"
695+msgid "Transparent background"
696+msgstr "স্বচ্চ পটভূমি "
697
698 #~ msgid "S_hade transparent or image background:"
699 #~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
700diff --git a/po/ast.po b/po/ast.po
d4bc1a2d 701index d1c6e7b8174a..4dc0892ed9c4 100644
2b7dad92
JK
702--- a/po/ast.po
703+++ b/po/ast.po
d4bc1a2d
MB
704@@ -1304,8 +1304,8 @@ msgid "_Base on:"
705 msgstr "_Basáu en:"
706
707 #: ../src/profile-preferences.glade.h:1
708-msgid "<b>Command</b>"
709-msgstr "<b>Comandu</b>"
710+msgid "Command"
711+msgstr "Comandu"
712
713 #: ../src/profile-preferences.glade.h:2
714 msgid "<b>Foreground, Background, Bold and Underline</b>"
2b7dad92
JK
715@@ -1598,8 +1598,8 @@ msgid "_Text color:"
716 msgstr "Color del _testu:"
717
718 #: ../src/profile-preferences.glade.h:77
719-msgid "_Transparent background"
720-msgstr "Fondu _tresparente"
721+msgid "Transparent background"
722+msgstr "Fondu tresparente"
723
724 #: ../src/profile-preferences.glade.h:78
725 msgid "_Underline color:"
726diff --git a/po/az.po b/po/az.po
bb11d6bf 727index 586c1e4d827b..4bd846797101 100644
2b7dad92
JK
728--- a/po/az.po
729+++ b/po/az.po
d4bc1a2d
MB
730@@ -218,8 +218,8 @@ msgid "<b>Background</b>"
731 msgstr "<b>Arxa plan</b>"
732
733 #: ../src/gnome-terminal.glade2.h:2
734-msgid "<b>Command</b>"
735-msgstr "<b>Əmr</b>"
736+msgid "Command"
737+msgstr "Əmr"
738
739 #: ../src/gnome-terminal.glade2.h:3
740 msgid "<b>Compatibility</b>"
741@@ -620,8 +620,8 @@ msgid "_Text color:"
2b7dad92
JK
742 msgstr "_Mətn rəngi:"
743
744 #: ../src/gnome-terminal.glade2.h:102
745-msgid "_Transparent background"
746-msgstr "_Şəffaf arxa plan"
747+msgid "Transparent background"
748+msgstr "Şəffaf arxa plan"
749
750 #: ../src/gnome-terminal.glade2.h:103
751 msgid "_Update login records when command is launched"
752diff --git a/po/be.po b/po/be.po
bb11d6bf 753index ce07d47995ca..3c65f9090ef4 100644
2b7dad92
JK
754--- a/po/be.po
755+++ b/po/be.po
385d8513
JB
756@@ -2279,6 +2279,9 @@
757 msgid "C_lose Window"
758 msgstr "_Закрыць акно"
2b7dad92
JK
759
760+msgid "Transparent background"
761+msgstr "Празрысты фон"
385d8513
JB
762+
763 #~ msgid "Verbose output"
764 #~ msgstr "Падрабязны вывад"
765
2b7dad92 766diff --git a/po/be@latin.po b/po/be@latin.po
d4bc1a2d 767index 82ef0664ae1e..27e9877f96e8 100644
2b7dad92
JK
768--- a/po/be@latin.po
769+++ b/po/be@latin.po
d4bc1a2d
MB
770@@ -1146,8 +1146,8 @@ msgid "_Base on:"
771 msgstr "Na _bazie:"
772
773 #: ../src/profile-preferences.glade.h:1
774-msgid "<b>Command</b>"
775-msgstr "<b>Zahad</b>"
776+msgid "Command"
777+msgstr "Zahad"
778
779 #: ../src/profile-preferences.glade.h:2
780 msgid "<b>Foreground and Background</b>"
781@@ -1426,8 +1426,8 @@ msgid "_Text color:"
2b7dad92
JK
782 msgstr "Koler _tekstu:"
783
784 #: ../src/profile-preferences.glade.h:73
785-msgid "_Transparent background"
786-msgstr "_Prazrysty fon"
787+msgid "Transparent background"
788+msgstr "Prazrysty fon"
789
790 #: ../src/profile-preferences.glade.h:74
791 msgid "_Update login records when command is launched"
792diff --git a/po/bg.po b/po/bg.po
bb11d6bf 793index 9a4f32e4b135..6ac17c17efb8 100644
2b7dad92
JK
794--- a/po/bg.po
795+++ b/po/bg.po
4de6f867 796@@ -2305,3 +2305,6 @@ msgstr ""
bb11d6bf 797 #: ../src/terminal-window.c:3953
2b7dad92
JK
798 msgid "C_lose Window"
799 msgstr "_Затваряне на този прозорец"
800+
801+msgid "Transparent background"
802+msgstr "Прозрачен фон"
d4bc1a2d
MB
803diff --git a/po/bn.po b/po/bn.po
804index 4906009cf46f..f97d43b0e515 100644
805--- a/po/bn.po
806+++ b/po/bn.po
807@@ -1217,8 +1217,8 @@ msgid "_Base on:"
808 msgstr "চিহ্নিত বস্তুর উপর ভিত্তি করে: (_B)"
809
810 #: ../src/profile-preferences.glade.h:1
811-msgid "<b>Command</b>"
812-msgstr "<b>কমান্ড</b>"
813+msgid "Command"
814+msgstr "কমান্ড"
815
816 #: ../src/profile-preferences.glade.h:2
817 msgid "<b>Foreground, Background, and Bold</b>"
818@@ -1524,8 +1524,8 @@ msgid "_Text color:"
819 msgstr "পাঠ্যের রং: (_T)"
820
821 #: ../src/profile-preferences.glade.h:76
822-msgid "_Transparent background"
823-msgstr "স্বচ্ছ পটভূমি (_T)"
824+msgid "Transparent background"
825+msgstr "স্বচ্ছ পটভূমি "
826
827 #: ../src/profile-preferences.glade.h:77
828 msgid "_Unlimited"
2b7dad92 829diff --git a/po/bn_IN.po b/po/bn_IN.po
bb11d6bf 830index f196e5084797..0ac3caf77e73 100644
2b7dad92
JK
831--- a/po/bn_IN.po
832+++ b/po/bn_IN.po
d4bc1a2d
MB
833@@ -2296,8 +2296,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
834 #~ msgid "Close Window"
835 #~ msgstr "উইন্ডো বন্ধ করুন"
836
837-#~ msgid "Set Title"
838-#~ msgstr "শিরোনাম নির্ধারণ করুন"
839+msgid "Set Title"
840+msgstr "শিরোনাম নির্ধারণ করুন"
841
842 #~ msgid "Switch to Tab 2"
843 #~ msgstr "ট্যাব ২-এ পরিবর্তন করুন"
d4bc1a2d
MB
844@@ -2356,5 +2356,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
845 #~ msgid "_Input Methods"
846 #~ msgstr "ইনপুট পদ্ধতি (_I)"
2b7dad92 847
d4bc1a2d
MB
848-#~ msgid "_Title:"
849-#~ msgstr "শিরোনাম: (_T)"
850+msgid "_Title:"
851+msgstr "শিরোনাম: (_T)"
2b7dad92
JK
852+
853+msgid "Transparent background"
854+msgstr "স্বচ্চ পটভূমি "
d4bc1a2d
MB
855diff --git a/po/br.po b/po/br.po
856index e16ea07dfc21..f4cbe857d5ca 100644
857--- a/po/br.po
858+++ b/po/br.po
859@@ -958,8 +958,8 @@ msgid "_Base on:"
860 msgstr ""
861
862 #: ../src/profile-preferences.glade.h:1
863-msgid "<b>Command</b>"
864-msgstr "<b>Arc'had</b>"
865+msgid "Command"
866+msgstr "Arc'had"
867
868 #: ../src/profile-preferences.glade.h:2
869 msgid "<b>Foreground and Background</b>"
870@@ -1211,7 +1211,7 @@ msgid "_Text color:"
871 msgstr "Liv an destenn :"
872
873 #: ../src/profile-preferences.glade.h:73
874-msgid "_Transparent background"
875+msgid "Transparent background"
876 msgstr ""
877
878 #: ../src/profile-preferences.glade.h:74
2b7dad92 879diff --git a/po/bs.po b/po/bs.po
bb11d6bf 880index 49e710859ac9..8703552984b1 100644
2b7dad92
JK
881--- a/po/bs.po
882+++ b/po/bs.po
883@@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
884 msgid "Keyboard shortcut to make font smaller"
885 msgstr "Kratica tastature za smanjivanje fonta"
886
887+#: ../src/gnome-terminal.glade2.h:102
888+msgid "Transparent background"
889+msgstr "Providna pozadina"
890+
891 #: ../src/org.gnome.Terminal.gschema.xml.h:78
892 msgid "Keyboard shortcut to make font normal-size"
893 msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
894diff --git a/po/ca.po b/po/ca.po
bb11d6bf 895index 4a612fcfc0ba..6091324a9547 100644
2b7dad92
JK
896--- a/po/ca.po
897+++ b/po/ca.po
4de6f867 898@@ -2420,6 +2420,9 @@ msgstr ""
385d8513
JB
899 msgid "C_lose Window"
900 msgstr "Tanca la _finestra"
4de6f867 901
2b7dad92
JK
902+msgid "Transparent background"
903+msgstr "Fons transparent"
d4bc1a2d 904+
4de6f867
JB
905 #~ msgid "Whether to allow bold text"
906 #~ msgstr "Si es permet o no text en negreta"
907
2b7dad92 908diff --git a/po/ca@valencia.po b/po/ca@valencia.po
bb11d6bf 909index a6e8fb4250dc..c9ed8508228d 100644
2b7dad92
JK
910--- a/po/ca@valencia.po
911+++ b/po/ca@valencia.po
4de6f867 912@@ -2357,3 +2357,6 @@ msgstr "Tanca la _finestra"
bb11d6bf
JK
913
914 #~ msgid "Whether to use a dark theme variant"
915 #~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
2b7dad92
JK
916+
917+msgid "Transparent background"
918+msgstr "Fons transparent"
919diff --git a/po/cs.po b/po/cs.po
bb11d6bf 920index ee33ed2a0103..2acf2aa99656 100644
2b7dad92
JK
921--- a/po/cs.po
922+++ b/po/cs.po
4de6f867 923@@ -2310,3 +2310,6 @@ msgstr ""
bb11d6bf 924 #: ../src/terminal-window.c:3353
2b7dad92
JK
925 msgid "C_lose Window"
926 msgstr "_Zavřít okno"
927+
928+msgid "Transparent background"
929+msgstr "Průsvitné pozadí"
930diff --git a/po/cy.po b/po/cy.po
d4bc1a2d 931index 644df82363f1..cd862feb50c0 100644
2b7dad92
JK
932--- a/po/cy.po
933+++ b/po/cy.po
d4bc1a2d
MB
934@@ -1167,8 +1167,8 @@ msgid "_Base on:"
935 msgstr "Ei _seilio ar:"
936
937 #: ../src/profile-preferences.glade.h:1
938-msgid "<b>Command</b>"
939-msgstr "<b>Gorchymyn</b>"
940+msgid "Command"
941+msgstr "Gorchymyn"
942
943 #: ../src/profile-preferences.glade.h:2
944 msgid "<b>Foreground and Background</b>"
945@@ -1448,8 +1448,8 @@ msgid "_Text color:"
2b7dad92
JK
946 msgstr "Lliw'r _testun:"
947
948 #: ../src/profile-preferences.glade.h:73
949-msgid "_Transparent background"
950-msgstr "Cefndir _tryloyw"
951+msgid "Transparent background"
952+msgstr "Cefndir tryloyw"
953
954 #: ../src/profile-preferences.glade.h:74
955 msgid "_Update login records when command is launched"
956diff --git a/po/da.po b/po/da.po
bb11d6bf 957index 65cfb20d9ad3..8c5c97c7465a 100644
2b7dad92
JK
958--- a/po/da.po
959+++ b/po/da.po
4de6f867
JB
960@@ -2401,6 +2401,9 @@ msgstr ""
961 #: src/terminal-window.c:3224
bb11d6bf
JK
962 msgid "C_lose Window"
963 msgstr "_Luk vindue"
385d8513 964+
2b7dad92
JK
965+msgid "Transparent background"
966+msgstr "Gennemsigtig baggrund"
4de6f867
JB
967
968 #~ msgid "Whether to allow bold text"
969 #~ msgstr "Om fed tekst skal tillades"
2b7dad92 970diff --git a/po/de.po b/po/de.po
bb11d6bf 971index 205f69111437..61b0214daf5b 100644
2b7dad92
JK
972--- a/po/de.po
973+++ b/po/de.po
4de6f867 974@@ -2373,6 +2373,9 @@
bb11d6bf
JK
975 msgid "C_lose Window"
976 msgstr "Fenster _schließen"
385d8513 977
2b7dad92
JK
978+msgid "Transparent background"
979+msgstr "Transparenter Hintergrund"
385d8513
JB
980+
981 #~ msgid "Whether to show menubar in new windows/tabs"
982 #~ msgstr ""
983 #~ "Legt fest, ob in Fenstern/Reitern per Vorgabe die Menüleiste angezeigt "
2b7dad92 984diff --git a/po/dz.po b/po/dz.po
d4bc1a2d 985index d97e6102b850..a768fe4adc54 100644
2b7dad92
JK
986--- a/po/dz.po
987+++ b/po/dz.po
d4bc1a2d
MB
988@@ -1255,8 +1255,8 @@ msgid "_Base on:"
989 msgstr "གཞི་བཞག་སྟེ་:(_B)"
990
991 #: ../src/profile-preferences.glade.h:1
992-msgid "<b>Command</b>"
993-msgstr "<b>བརྡ་བཀོད་</b>"
994+msgid "Command"
995+msgstr "བརྡ་བཀོད་"
996
997 #: ../src/profile-preferences.glade.h:2
998 #, fuzzy
2b7dad92
JK
999@@ -1551,8 +1551,8 @@ msgid "_Text color:"
1000 msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
1001
1002 #: ../src/profile-preferences.glade.h:77
1003-msgid "_Transparent background"
1004-msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)"
1005+msgid "Transparent background"
1006+msgstr "དྭངས་གསལ་རྒྱབ་གཞི།"
1007
1008 #: ../src/profile-preferences.glade.h:78
1009 #, fuzzy
1010diff --git a/po/el.po b/po/el.po
bb11d6bf 1011index a32f5b1684f6..7fa98b45e6f5 100644
2b7dad92
JK
1012--- a/po/el.po
1013+++ b/po/el.po
bb11d6bf 1014@@ -2710,17 +2710,17 @@ msgstr "Κ_λείσιμο παραθύρου"
d4bc1a2d
MB
1015 #~ msgid "Default size:"
1016 #~ msgstr "Προεπιλεγμένο μέγεθος:"
1017
1018-#~ msgid "Title"
1019-#~ msgstr "Τίτλος"
1020+msgid "Title"
1021+msgstr "Τίτλος"
1022
1023-#~ msgid "_Title:"
1024-#~ msgstr "_Τίτλος:"
1025+msgid "_Title:"
1026+msgstr "_Τίτλος:"
1027
1028 #~ msgid "Title and Command"
1029 #~ msgstr "Τίτλος και εντολή"
1030
1031-#~ msgid "Set Title"
1032-#~ msgstr "Ορισμός τίτλου"
1033+msgid "Set Title"
1034+msgstr "Ορισμός τίτλου"
1035
1036 #~ msgid "Current Locale"
1037 #~ msgstr "Τρέχουσα τοπική ρύθμιση"
bb11d6bf 1038@@ -2758,3 +2758,6 @@ msgstr "Κ_λείσιμο παραθύρου"
2b7dad92
JK
1039
1040 #~ msgid "_Input Methods"
1041 #~ msgstr "_Μέθοδοι εισαγωγής"
1042+
1043+msgid "Transparent background"
1044+msgstr "Διάφανο παρασκήνιο"
1045diff --git a/po/en@shaw.po b/po/en@shaw.po
d4bc1a2d 1046index 82b2d53401b2..28f5dc02575b 100644
2b7dad92
JK
1047--- a/po/en@shaw.po
1048+++ b/po/en@shaw.po
d4bc1a2d
MB
1049@@ -1212,8 +1212,8 @@ msgid "_Base on:"
1050 msgstr "_𐑚𐑱𐑕 𐑪𐑯:"
1051
1052 #: ../src/profile-preferences.glade.h:1
1053-msgid "<b>Command</b>"
1054-msgstr "<b>𐑒𐑩𐑥𐑭𐑯𐑛</b>"
1055+msgid "Command"
1056+msgstr "𐑒𐑩𐑥𐑭𐑯𐑛"
1057
1058 #: ../src/profile-preferences.glade.h:2
1059 msgid "<b>Foreground, Background, Bold and Underline</b>"
1060@@ -1468,8 +1468,8 @@ msgid "_Text color:"
2b7dad92
JK
1061 msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
1062
1063 #: ../src/profile-preferences.glade.h:78
1064-msgid "_Transparent background"
1065-msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1066+msgid "Transparent background"
1067+msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1068
1069 #: ../src/profile-preferences.glade.h:79
1070 msgid "_Underline color:"
1071diff --git a/po/en_CA.po b/po/en_CA.po
bb11d6bf 1072index 6c9e0cd73d63..db4aa891dd45 100644
2b7dad92
JK
1073--- a/po/en_CA.po
1074+++ b/po/en_CA.po
d4bc1a2d
MB
1075@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
1076 msgstr "<b>Background</b>"
1077
1078 #: ../src/gnome-terminal.glade2.h:3
1079-msgid "<b>Command</b>"
1080-msgstr "<b>Command</b>"
1081+msgid "Command"
1082+msgstr "Command"
1083
1084 #: ../src/gnome-terminal.glade2.h:4
1085 msgid "<b>Compatibility</b>"
1086@@ -557,8 +557,8 @@ msgid "_Text color:"
2b7dad92
JK
1087 msgstr "_Text colour:"
1088
1089 #: ../src/gnome-terminal.glade2.h:86
1090-msgid "_Transparent background"
1091-msgstr "_Transparent background"
1092+msgid "Transparent background"
1093+msgstr "Transparent background"
1094
1095 #: ../src/gnome-terminal.glade2.h:87
1096 msgid "_Update login records when command is launched"
1097diff --git a/po/en_GB.po b/po/en_GB.po
bb11d6bf 1098index c9999e204f33..dfbff85bf907 100644
2b7dad92
JK
1099--- a/po/en_GB.po
1100+++ b/po/en_GB.po
bb11d6bf 1101@@ -2796,8 +2796,8 @@ msgstr "C_lose Window"
d4bc1a2d
MB
1102 #~ msgid "Default size:"
1103 #~ msgstr "Default size:"
1104
1105-#~ msgid "Title"
1106-#~ msgstr "Title"
1107+msgid "Title"
1108+msgstr "Title"
1109
1110 #~ msgid "When terminal commands set their o_wn titles:"
1111 #~ msgstr "When terminal commands set their o_wn titles:"
bb11d6bf
JK
1112@@ -2814,8 +2814,8 @@ msgstr "C_lose Window"
1113 #~ msgid "_Unlimited"
1114 #~ msgstr "_Unlimited"
d4bc1a2d
MB
1115
1116-#~ msgid "Set Title"
1117-#~ msgstr "Set Title"
1118+msgid "Set Title"
1119+msgstr "Set Title"
1120
bb11d6bf
JK
1121 #~ msgid "Switch to Tab 3"
1122 #~ msgstr "Switch to Tab 3"
1123@@ -2856,8 +2856,8 @@ msgstr "C_lose Window"
d4bc1a2d
MB
1124 #~ msgid "_Input Methods"
1125 #~ msgstr "_Input Methods"
1126
1127-#~ msgid "_Title:"
1128-#~ msgstr "_Title:"
1129+msgid "_Title:"
1130+msgstr "_Title:"
1131
1132 #~ msgid "Add or Remove Terminal Encodings"
1133 #~ msgstr "Add or Remove Terminal Encodings"
bb11d6bf 1134@@ -3552,8 +3552,8 @@ msgstr "C_lose Window"
2b7dad92
JK
1135 #~ msgid "Background image _scrolls"
1136 #~ msgstr "Background image _scrolls"
1137
1138-#~ msgid "_Transparent background"
1139-#~ msgstr "_Transparent background"
1140+msgid "Transparent background"
1141+msgstr "Transparent background"
1142
1143 #~ msgid "S_hade transparent or image background:"
1144 #~ msgstr "S_hade transparent or image background:"
d4bc1a2d 1145diff --git a/po/eo.po b/po/eo.po
bb11d6bf 1146index 567c08dc1da8..c59f57c6a8d5 100644
d4bc1a2d
MB
1147--- a/po/eo.po
1148+++ b/po/eo.po
1149@@ -2215,8 +2215,8 @@ msgstr "_Fermi la fenestron"
1150 #~ msgid "Close Window"
1151 #~ msgstr "Fermi la fenestron"
1152
1153-#~ msgid "Set Title"
1154-#~ msgstr "Agordi titolon"
1155+msgid "Set Title"
1156+msgstr "Agordi titolon"
1157
1158 #~ msgid "Switch to Tab 2"
1159 #~ msgstr "Ŝalti al langeto 2"
d4bc1a2d
MB
1160@@ -2299,8 +2299,8 @@ msgstr "_Fermi la fenestron"
1161 #~ msgid "_Input Methods"
1162 #~ msgstr "_Enigmetodoj"
1163
1164-#~ msgid "_Title:"
1165-#~ msgstr "_Titolo:"
1166+msgid "_Title:"
1167+msgstr "_Titolo:"
1168
1169 #~ msgid "On the left side"
1170 #~ msgstr "Maldekstre"
2b7dad92 1171diff --git a/po/es.po b/po/es.po
bb11d6bf 1172index 142347b3720a..9325d95de22f 100644
2b7dad92
JK
1173--- a/po/es.po
1174+++ b/po/es.po
bb11d6bf 1175@@ -2741,17 +2741,17 @@ msgstr "_Cerrar ventana"
d4bc1a2d
MB
1176 #~ msgid "Default size:"
1177 #~ msgstr "Tamaño predeterminado:"
1178
1179-#~ msgid "Title"
1180-#~ msgstr "Título"
1181+msgid "Title"
1182+msgstr "Título"
1183
1184-#~ msgid "_Title:"
1185-#~ msgstr "_Título:"
1186+msgid "_Title:"
1187+msgstr "_Título:"
1188
1189 #~ msgid "Title and Command"
1190 #~ msgstr "Título y comando"
1191
1192-#~ msgid "Set Title"
1193-#~ msgstr "Establecer título"
1194+msgid "Set Title"
1195+msgstr "Establecer título"
1196
1197 #~ msgid "Current Locale"
1198 #~ msgstr "Configuración regional actual"
bb11d6bf 1199@@ -3577,8 +3577,8 @@ msgstr "_Cerrar ventana"
2b7dad92
JK
1200 #~ msgid "_Solid color"
1201 #~ msgstr "Color _sólido"
1202
1203-#~ msgid "_Transparent background"
1204-#~ msgstr "Fondo _transparente"
1205+msgid "Transparent background"
1206+msgstr "Fondo transparente"
1207
1208 #~ msgid "No such profile \"%s\", using default profile\n"
1209 #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
1210diff --git a/po/et.po b/po/et.po
d4bc1a2d 1211index 4b1c2a7c67e4..770761168806 100644
2b7dad92
JK
1212--- a/po/et.po
1213+++ b/po/et.po
1214@@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
1215
1216 #~ msgid "Choose base profile"
1217 #~ msgstr "Vali põhiprofiil"
1218+
1219+msgid "Transparent background"
1220+msgstr "Läbipaistev taust"
1221diff --git a/po/eu.po b/po/eu.po
bb11d6bf 1222index f3aab7879a6f..543a121f6aac 100644
2b7dad92
JK
1223--- a/po/eu.po
1224+++ b/po/eu.po
4de6f867 1225@@ -2272,6 +2272,9 @@ msgstr "Oraindik prozesu bat exekutatzen
385d8513
JB
1226 msgid "C_lose Window"
1227 msgstr "It_xi leihoa"
4de6f867 1228
2b7dad92
JK
1229+msgid "Transparent background"
1230+msgstr "Atzeko plano gardena"
4de6f867
JB
1231+
1232 #~ msgid "Whether to allow bold text"
1233 #~ msgstr "Testu-formatu lodia onartzen den"
1234
2b7dad92 1235diff --git a/po/fa.po b/po/fa.po
bb11d6bf 1236index 8b0ca26eebe5..6079d0c40a1d 100644
2b7dad92
JK
1237--- a/po/fa.po
1238+++ b/po/fa.po
bb11d6bf 1239@@ -2402,8 +2402,8 @@ msgstr "_بستن پنجره"
d4bc1a2d
MB
1240 #~ msgid "Use custom default terminal si_ze"
1241 #~ msgstr "استفاده از اندازه‌ی _سفارشی پایانه‌ی پیش‌فرض"
1242
1243-#~ msgid "Title"
1244-#~ msgstr "عنوان"
1245+msgid "Title"
1246+msgstr "عنوان"
1247
1248 #~ msgid "When terminal commands set their o_wn titles:"
1249 #~ msgstr "وقتی که فرمان‌های پایانه عنوان‌های _خودشان را تنظیم می‌کنند:"
bb11d6bf 1250@@ -2426,8 +2426,8 @@ msgstr "_بستن پنجره"
d4bc1a2d
MB
1251 #~ msgid "Close Window"
1252 #~ msgstr "بستن پنجره"
1253
1254-#~ msgid "Set Title"
1255-#~ msgstr "تنظیم عنوان"
1256+msgid "Set Title"
1257+msgstr "تنظیم عنوان"
1258
1259 #~ msgid "Switch to Tab 2"
1260 #~ msgstr "تعویض به زبانه‌ی ۲"
bb11d6bf 1261@@ -2486,5 +2486,8 @@ msgstr "_بستن پنجره"
d4bc1a2d
MB
1262 #~ msgid "_Input Methods"
1263 #~ msgstr "روش‌های _ورودی"
2b7dad92 1264
d4bc1a2d
MB
1265-#~ msgid "_Title:"
1266-#~ msgstr "_عنوان:"
1267+msgid "_Title:"
1268+msgstr "_عنوان:"
2b7dad92
JK
1269+
1270+msgid "Transparent background"
1271+msgstr "پس‌زمینه‌ی شفاف"
1272diff --git a/po/fi.po b/po/fi.po
bb11d6bf 1273index e284b406f040..6e7f402af7bd 100644
2b7dad92
JK
1274--- a/po/fi.po
1275+++ b/po/fi.po
4de6f867 1276@@ -2589,6 +2589,9 @@ msgstr "_Sulje ikkuna"
2b7dad92
JK
1277 #~ msgid "_Update login records when command is launched"
1278 #~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
1279
1280+msgid "Transparent background"
1281+msgstr "Läpinäkyvä tausta"
1282+
1283 #~| msgid "Error parsing command: %s"
1284 #~ msgid "Missing command"
1285 #~ msgstr "Puuttuva komento"
1286diff --git a/po/fr.po b/po/fr.po
bb11d6bf 1287index 87a8e0ff46d4..2eacb4584f32 100644
2b7dad92
JK
1288--- a/po/fr.po
1289+++ b/po/fr.po
4de6f867 1290@@ -2452,6 +2452,9 @@ msgstr ""
385d8513
JB
1291 msgid "C_lose Window"
1292 msgstr "Fermer _la fenêtre"
4de6f867 1293
2b7dad92
JK
1294+msgid "Transparent background"
1295+msgstr "Arrière-plan transparent"
d4bc1a2d 1296+
4de6f867
JB
1297 #~ msgid "Whether to allow bold text"
1298 #~ msgstr "Indique s’il faut autoriser le texte en gras"
1299
2b7dad92 1300diff --git a/po/fur.po b/po/fur.po
bb11d6bf 1301index 3f5429cfecd8..e637a6c0dc5f 100644
2b7dad92
JK
1302--- a/po/fur.po
1303+++ b/po/fur.po
bb11d6bf 1304@@ -454,6 +454,10 @@ msgstr ""
2b7dad92
JK
1305 msgid "Which encoding to use"
1306 msgstr "Codifiche di doprâ"
1307
1308+#: ../src/gnome-terminal.glade2.h:86
1309+msgid "Transparent background"
1310+msgstr "Fondâl trasparent"
1311+
bb11d6bf 1312 #: ../src/org.gnome.Terminal.gschema.xml.h:68
2b7dad92
JK
1313 msgid ""
1314 "Whether ambiguous-width characters are narrow or wide when using UTF-8 "
bb11d6bf
JK
1315@@ -3371,6 +3375,9 @@ msgstr "_Siere barcon"
1316 #~ msgid "The text you clicked on doesn't seem to be a valid OTP challenge."
1317 #~ msgstr "Il test fracât nol samee jessi un OTP challenge."
d4bc1a2d 1318
d4bc1a2d
MB
1319+msgid "Set Title"
1320+msgstr "Imposte titul"
bb11d6bf
JK
1321+
1322 #~ msgid "Switch to Tab 3"
1323 #~ msgstr "Passe a la schede 3"
d4bc1a2d 1324
bb11d6bf 1325@@ -3426,8 +3433,8 @@ msgstr "_Siere barcon"
d4bc1a2d
MB
1326 #~ msgid "_Input Methods"
1327 #~ msgstr "_Cemût inserî test"
1328
1329-#~ msgid "_Title:"
1330-#~ msgstr "_Titul:"
1331+msgid "_Title:"
1332+msgstr "_Titul:"
1333
1334 #~ msgid ""
1335 #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
2b7dad92 1336diff --git a/po/ga.po b/po/ga.po
d4bc1a2d 1337index 93d5fa9d1481..feb87dce3d6b 100644
2b7dad92
JK
1338--- a/po/ga.po
1339+++ b/po/ga.po
1340@@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
1341 #: ../src/terminal-window.c:3582
1342 msgid "C_lose Terminal"
1343 msgstr "_Dún Teirminéal"
1344+
1345+msgid "Transparent background"
1346+msgstr "Cúlra trédhearcach"
1347diff --git a/po/gl.po b/po/gl.po
bb11d6bf 1348index 4ae0f6a0935c..fa643dc89659 100644
2b7dad92
JK
1349--- a/po/gl.po
1350+++ b/po/gl.po
4de6f867
JB
1351@@ -2418,3 +2418,6 @@ msgstr ""
1352 #: src/terminal-window.c:3224
1353 msgid "C_lose Window"
1354 msgstr "P_echar a xanela"
1355+
2b7dad92
JK
1356+msgid "Transparent background"
1357+msgstr "Fondo transparente"
2b7dad92 1358diff --git a/po/gu.po b/po/gu.po
bb11d6bf 1359index 76b459cf8dc5..485beeac98b7 100644
2b7dad92
JK
1360--- a/po/gu.po
1361+++ b/po/gu.po
d4bc1a2d
MB
1362@@ -2155,8 +2155,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1363 #~ msgid "Default size:"
1364 #~ msgstr "મૂળભૂત માપ:"
1365
1366-#~ msgid "Title"
1367-#~ msgstr "શીર્ષક"
1368+msgid "Title"
1369+msgstr "શીર્ષક"
1370
1371 #~ msgid "When terminal commands set their o_wn titles:"
1372 #~ msgstr "જ્યારે આદેશો તેમના પોતાના શીર્ષકો સુયોજીત કરે (_w):"
1373@@ -2176,8 +2176,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1374 #~ msgid "Close Window"
1375 #~ msgstr "વિન્ડો બંધ કરો"
1376
1377-#~ msgid "Set Title"
1378-#~ msgstr "શીર્ષકની ગોઠવણી કરો"
1379+msgid "Set Title"
1380+msgstr "શીર્ષકની ગોઠવણી કરો"
1381
1382 #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1383 #~ msgstr "ટુંકાણ કી “%s“ એ પહેલાથી ક્રિયા “%s“ સાથે બંધાયેલી છે"
d4bc1a2d
MB
1384@@ -2203,8 +2203,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1385 #~ msgid "_Input Methods"
1386 #~ msgstr "ઈનપુટ માટેની પધ્ધિતિઓ (_I)"
1387
1388-#~ msgid "_Title:"
1389-#~ msgstr "શીર્ષક (_T):"
1390+msgid "_Title:"
1391+msgstr "શીર્ષક (_T):"
1392
1393 #~ msgid "Keyboard shortcut to switch to tab 1"
1394 #~ msgstr "ટૅબ ૧ પર જવા માટે કીબોર્ડનું ટુંકાણ"
2b7dad92
JK
1395@@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1396 #~ msgid "_Solid color"
1397 #~ msgstr "ઘટ્ટ રંગ (_S)"
1398
1399-#~ msgid "_Transparent background"
1400-#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)"
1401+msgid "Transparent background"
1402+msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ"
1403
1404 #~ msgid "No such profile \"%s\", using default profile\n"
1405 #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
1406diff --git a/po/he.po b/po/he.po
bb11d6bf 1407index 57cb2d0d110f..efe8fa100074 100644
2b7dad92
JK
1408--- a/po/he.po
1409+++ b/po/he.po
bb11d6bf 1410@@ -2333,17 +2333,17 @@ msgstr "סגירת ה_חלון"
d4bc1a2d
MB
1411 #~ msgid "Default size:"
1412 #~ msgstr "גודל בררת מחדל:"
1413
1414-#~ msgid "Title"
1415-#~ msgstr "כותרת"
1416+msgid "Title"
1417+msgstr "כותרת"
1418
1419-#~ msgid "_Title:"
1420-#~ msgstr "_כותרת:"
1421+msgid "_Title:"
1422+msgstr "_כותרת:"
1423
1424 #~ msgid "Title and Command"
1425 #~ msgstr "כותרת ופקודה"
1426
1427-#~ msgid "Set Title"
1428-#~ msgstr "הגדרת כותרת"
1429+msgid "Set Title"
1430+msgstr "הגדרת כותרת"
1431
1432 #~ msgid "Current Locale"
1433 #~ msgstr "השפה הנוכחית"
d4bc1a2d 1434@@ -3194,8 +3194,8 @@ msgstr "סגירת ה_חלון"
2b7dad92
JK
1435 #~ msgid "_Solid color"
1436 #~ msgstr "צבע _אחיד"
1437
1438-#~ msgid "_Transparent background"
1439-#~ msgstr "רקע _שקוף"
1440+msgid "Transparent background"
1441+msgstr "רקע שקוף"
1442
1443 #~ msgid "No such profile \"%s\", using default profile\n"
1444 #~ msgstr "No such profile \"%s\", using default profile\n"
1445diff --git a/po/hi.po b/po/hi.po
bb11d6bf 1446index 2d7dc5b14008..8d3d0529df61 100644
2b7dad92
JK
1447--- a/po/hi.po
1448+++ b/po/hi.po
d4bc1a2d
MB
1449@@ -2267,9 +2267,8 @@ msgstr "विंडो बंद करें (_l)"
1450 #~ msgid "Use custom default terminal si_ze"
1451 #~ msgstr "कस्टम डिफ़ॉल्ट टर्मिनल आकार का उपयोग करें (_z)"
1452
1453-#~| msgid "_Title:"
1454-#~ msgid "Title"
1455-#~ msgstr "शीर्षक"
1456+msgid "Title"
1457+msgstr "शीर्षक"
1458
1459 #~ msgid "When terminal commands set their o_wn titles:"
1460 #~ msgstr "जब टर्मिनल कमांड उनका अपना शीर्षक सेट करता है (_w):"
1461@@ -2289,8 +2288,8 @@ msgstr "विंडो बंद करें (_l)"
1462 #~ msgid "Close Window"
1463 #~ msgstr "विंडो बंद करें"
1464
1465-#~ msgid "Set Title"
1466-#~ msgstr "शीर्षक नियत करें"
1467+msgid "Set Title"
1468+msgstr "शीर्षक नियत करें"
1469
1470 #~ msgid "Switch to Tab 2"
1471 #~ msgstr "टैब 2 पर जाएँ"
d4bc1a2d
MB
1472@@ -2349,8 +2348,8 @@ msgstr "विंडो बंद करें (_l)"
1473 #~ msgid "_Input Methods"
1474 #~ msgstr "इनपुट विधियाँ (_I)"
1475
1476-#~ msgid "_Title:"
1477-#~ msgstr "शीर्षक (_T):"
1478+msgid "_Title:"
1479+msgstr "शीर्षक (_T):"
1480
1481 #~ msgid "Disable connection to session manager"
1482 #~ msgstr "सत्र प्रबंधक में कनेक्शन निष्क्रिय करें"
1483@@ -2979,8 +2978,8 @@ msgstr "विंडो बंद करें (_l)"
2b7dad92
JK
1484 #~ msgid "_Background image"
1485 #~ msgstr "पृष्ठभूमि छवि (_B)"
1486
1487-#~ msgid "_Transparent background"
1488-#~ msgstr "पारदर्शी पृष्ठभूमि (_T)"
1489+msgid "Transparent background"
1490+msgstr "पारदर्शी पृष्ठभूमि"
1491
1492 #~ msgid "S/Key Challenge Response"
1493 #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
1494diff --git a/po/hr.po b/po/hr.po
bb11d6bf 1495index aec2eaa8bac1..207b5c774b32 100644
2b7dad92
JK
1496--- a/po/hr.po
1497+++ b/po/hr.po
4de6f867 1498@@ -2565,3 +2565,7 @@ msgstr "_Zatvori prozor"
bb11d6bf
JK
1499
1500 #~ msgid "Use transparency from system theme"
1501 #~ msgstr "Koristi prozirnost iz teme sustava"
d4bc1a2d
MB
1502+
1503+#: ../src/profile-preferences.glade.h:69
2b7dad92
JK
1504+msgid "Transparent background"
1505+msgstr "Prozirna pozadina"
2b7dad92 1506diff --git a/po/hu.po b/po/hu.po
bb11d6bf 1507index 401ae619d5d2..b6e96230111b 100644
2b7dad92
JK
1508--- a/po/hu.po
1509+++ b/po/hu.po
4de6f867 1510@@ -2318,3 +2318,6 @@
385d8513
JB
1511 #: ../src/terminal-window.c:3256
1512 msgid "C_lose Window"
1513 msgstr "_Ablak bezárása"
bb11d6bf 1514+
2b7dad92
JK
1515+msgid "Transparent background"
1516+msgstr "Áttetsző háttér"
1517diff --git a/po/hy.po b/po/hy.po
d4bc1a2d 1518index aaf2d9b292da..4d466f164420 100644
2b7dad92
JK
1519--- a/po/hy.po
1520+++ b/po/hy.po
d4bc1a2d
MB
1521@@ -757,8 +757,8 @@ msgid "_Base on:"
1522 msgstr ""
1523
1524 #: ../src/profile-preferences.glade.h:1
1525-msgid "<b>Command</b>"
1526-msgstr "<b>Հրաման</b>"
1527+msgid "Command"
1528+msgstr "Հրաման"
1529
1530 #: ../src/profile-preferences.glade.h:2
1531 msgid "<b>Foreground and Background</b>"
1532@@ -1012,8 +1012,8 @@ msgid "_Text color:"
2b7dad92
JK
1533 msgstr "_Տեքստի գույնը՝"
1534
1535 #: ../src/profile-preferences.glade.h:73
1536-msgid "_Transparent background"
1537-msgstr "_Թափանցիկ նախադրյալ"
1538+msgid "Transparent background"
1539+msgstr "Թափանցիկ նախադրյալ"
1540
1541 #: ../src/profile-preferences.glade.h:74
1542 msgid "_Update login records when command is launched"
1543diff --git a/po/id.po b/po/id.po
bb11d6bf 1544index 9198218c5aaa..9f2fbd0c9d4c 100644
2b7dad92
JK
1545--- a/po/id.po
1546+++ b/po/id.po
4de6f867
JB
1547@@ -2392,6 +2392,9 @@ msgstr ""
1548 msgid "C_lose Window"
1549 msgstr "Tutup Jende_la"
bb11d6bf 1550
2b7dad92
JK
1551+msgid "Transparent background"
1552+msgstr "Latar belakang transparan"
d4bc1a2d 1553+
4de6f867
JB
1554 #~ msgid "Hindi"
1555 #~ msgstr "Hindi"
1556
2b7dad92 1557diff --git a/po/it.po b/po/it.po
bb11d6bf 1558index 632667207c17..2cd93716f4f9 100644
2b7dad92
JK
1559--- a/po/it.po
1560+++ b/po/it.po
4de6f867 1561@@ -2348,3 +2348,6 @@ msgstr ""
bb11d6bf 1562 #: ../src/terminal-window.c:3354
2b7dad92
JK
1563 msgid "C_lose Window"
1564 msgstr "Chiudi _finestra"
1565+
2b7dad92
JK
1566+msgid "Transparent background"
1567+msgstr "Sfondo trasparente"
1568diff --git a/po/ja.po b/po/ja.po
bb11d6bf 1569index 9a18d3db624f..bbfd18e6ab24 100644
2b7dad92
JK
1570--- a/po/ja.po
1571+++ b/po/ja.po
4de6f867 1572@@ -2294,6 +2294,9 @@
bb11d6bf
JK
1573 msgid "C_lose Window"
1574 msgstr "ウィンドウを閉じる(_L)"
385d8513 1575
2b7dad92
JK
1576+msgid "Transparent background"
1577+msgstr "透過な画像にする"
385d8513
JB
1578+
1579 #~ msgid "Verbose output"
1580 #~ msgstr "詳細な出力"
1581
2b7dad92 1582diff --git a/po/ka.po b/po/ka.po
bb11d6bf 1583index 2a0bc91fad40..c289e30eb4fa 100644
2b7dad92
JK
1584--- a/po/ka.po
1585+++ b/po/ka.po
d4bc1a2d
MB
1586@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
1587 msgstr "b>ფონი</b>"
1588
1589 #: ../src/gnome-terminal.glade2.h:3
1590-msgid "<b>Command</b>"
1591-msgstr "<b>ბრძანება</b>"
1592+msgid "Command"
1593+msgstr "ბრძანება"
1594
1595 #: ../src/gnome-terminal.glade2.h:4
1596 msgid "<b>Compatibility</b>"
1597@@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერი:"
2b7dad92
JK
1598
1599 #: ../src/gnome-terminal.glade2.h:86
1600 #, fuzzy
1601-msgid "_Transparent background"
1602+msgid "Transparent background"
1603 msgstr "გამჭირვალე"
1604
1605 #: ../src/gnome-terminal.glade2.h:87
1606diff --git a/po/kk.po b/po/kk.po
bb11d6bf 1607index 2811b7ec6239..d4239e5d12c5 100644
2b7dad92
JK
1608--- a/po/kk.po
1609+++ b/po/kk.po
4de6f867 1610@@ -2547,3 +2547,6 @@ msgstr "Терезені жа_бу"
2b7dad92
JK
1611
1612 #~ msgid "Be quiet"
1613 #~ msgstr "Тыныш болу"
1614+
1615+msgid "Transparent background"
1616+msgstr "Мөлдір фон"
d4bc1a2d
MB
1617diff --git a/po/km.po b/po/km.po
1618index 352897d2963b..b6db9394a307 100644
1619--- a/po/km.po
1620+++ b/po/km.po
1621@@ -2909,8 +2909,8 @@ msgstr "បិទ​បង្អួច"
1622 #~ msgid "Background image _scrolls"
1623 #~ msgstr "រមូរ​រូបភាព​ផ្ទៃខាងក្រោយ"
1624
1625-#~ msgid "_Transparent background"
1626-#~ msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
1627+msgid "Transparent background"
1628+msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
1629
1630 #~ msgid "S_hade transparent or image background:"
1631 #~ msgstr "ដាក់​ស្រមោល​ផ្ទៃខាងក្រោយ​ថ្លា ឬ​ផ្ទៃខាងក្រោយ​​រូបភាព ៖"
2b7dad92 1632diff --git a/po/kn.po b/po/kn.po
bb11d6bf 1633index c887f88a2c87..0fc1c3139258 100644
2b7dad92
JK
1634--- a/po/kn.po
1635+++ b/po/kn.po
d4bc1a2d
MB
1636@@ -2261,8 +2261,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1637 #~ msgid "Use custom default terminal si_ze"
1638 #~ msgstr "ಅಗತ್ಯಾನುಗುಣ ಆದೇಶತೆರೆ ಗಾತ್ರವನ್ನು ಬಳಸು (_z)"
1639
1640-#~ msgid "Title"
1641-#~ msgstr "ಶೀರ್ಷಿಕೆ"
1642+msgid "Title"
1643+msgstr "ಶೀರ್ಷಿಕೆ"
1644
1645 #~ msgid "When terminal commands set their o_wn titles:"
1646 #~ msgstr "ಆದೇಶಗಳು ತಮ್ಮದೆ ಆದ ಹೆಸರಗಳನ್ನು ಇರಿಸಿಕೊಂಡಾಗ (_w):"
1647@@ -2282,8 +2282,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1648 #~ msgid "Close Window"
1649 #~ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು"
2b7dad92 1650
d4bc1a2d
MB
1651-#~ msgid "Set Title"
1652-#~ msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
1653+msgid "Set Title"
1654+msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
1655
1656 #~ msgid "Switch to Tab 2"
1657 #~ msgstr "2 ನೆ ಟ್ಯಾಬ್‌ಗೆ ಬದಲಾಯಿಸಿ"
d4bc1a2d
MB
1658@@ -2342,5 +2342,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1659 #~ msgid "_Input Methods"
1660 #~ msgstr "ಇನ್‌ಪುಟ್ ಕ್ರಮಗಳು (_I)"
1661
1662-#~ msgid "_Title:"
1663-#~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
1664+msgid "_Title:"
1665+msgstr "ಶೀರ್ಷಿಕೆ(_T):"
2b7dad92
JK
1666+
1667+msgid "Transparent background"
1668+msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
1669diff --git a/po/ko.po b/po/ko.po
bb11d6bf 1670index d1be8c3fdab8..02de5aa11be1 100644
2b7dad92
JK
1671--- a/po/ko.po
1672+++ b/po/ko.po
4de6f867 1673@@ -2292,3 +2292,6 @@ msgstr "창 닫기(_L)"
2b7dad92 1674
bb11d6bf
JK
1675 #~ msgid "Verbose output"
1676 #~ msgstr "많이 출력"
2b7dad92
JK
1677+
1678+msgid "Transparent background"
1679+msgstr "투명한 배경"
1680diff --git a/po/ku.po b/po/ku.po
d4bc1a2d 1681index bc2bb7f03de4..d2a83a007097 100644
2b7dad92
JK
1682--- a/po/ku.po
1683+++ b/po/ku.po
d4bc1a2d
MB
1684@@ -223,8 +223,8 @@ msgid "<b>Background</b>"
1685 msgstr "<b>Zemîn</b>"
1686
1687 #: ../src/gnome-terminal.glade2.h:3
1688-msgid "<b>Command</b>"
1689-msgstr "<b>Ferman</b>"
1690+msgid "Command"
1691+msgstr "Ferman"
1692
1693 #: ../src/gnome-terminal.glade2.h:4
1694 msgid "<b>Compatibility</b>"
1695@@ -558,8 +558,8 @@ msgid "_Text color:"
2b7dad92
JK
1696 msgstr "Rengê _nivîsê:"
1697
1698 #: ../src/gnome-terminal.glade2.h:86
1699-msgid "_Transparent background"
1700-msgstr "Rûerdê _transparan"
1701+msgid "Transparent background"
1702+msgstr "Rûerdê transparan"
1703
1704 #: ../src/gnome-terminal.glade2.h:87
1705 msgid "_Update login records when command is launched"
1706diff --git a/po/lt.po b/po/lt.po
bb11d6bf 1707index e8b7622e5d46..c6fe38021b6a 100644
2b7dad92
JK
1708--- a/po/lt.po
1709+++ b/po/lt.po
4de6f867 1710@@ -2571,3 +2571,6 @@ msgstr "_Užverti langą"
2b7dad92
JK
1711
1712 #~ msgid "Whether to use a dark theme variant"
1713 #~ msgstr "Ar naudoti tamsų temos variantą"
1714+
1715+msgid "Transparent background"
1716+msgstr "Permatomas fonas"
1717diff --git a/po/lv.po b/po/lv.po
bb11d6bf 1718index 47d9e75b1ee8..a8dad3bc0d6b 100644
2b7dad92
JK
1719--- a/po/lv.po
1720+++ b/po/lv.po
4de6f867 1721@@ -2578,3 +2578,6 @@ msgstr "Aizvērt _logu"
d4bc1a2d 1722
bb11d6bf
JK
1723 #~ msgid "_Add or Remove…"
1724 #~ msgstr "_Pievienot vai izņemt…"
1725+
2b7dad92
JK
1726+msgid "Transparent background"
1727+msgstr "Caurspīdīgs fons"
1728diff --git a/po/mai.po b/po/mai.po
d4bc1a2d 1729index 715d0b9e1c82..0f31634e4f2e 100644
2b7dad92
JK
1730--- a/po/mai.po
1731+++ b/po/mai.po
d4bc1a2d
MB
1732@@ -1044,8 +1044,8 @@ msgid "_Base on:"
1733 msgstr "आधार पर: (_B)"
1734
1735 #: ../src/profile-preferences.glade.h:1
1736-msgid "<b>Command</b>"
1737-msgstr "<b>कमांड</b>"
1738+msgid "Command"
1739+msgstr "कमांड"
1740
1741 #: ../src/profile-preferences.glade.h:2
1742 msgid "<b>Foreground and Background</b>"
1743@@ -1291,8 +1291,8 @@ msgid "_Text color:"
2b7dad92
JK
1744 msgstr "पाठ रँग (_T):"
1745
1746 #: ../src/profile-preferences.glade.h:69
1747-msgid "_Transparent background"
1748-msgstr "पारदर्शी पृष्ठभूमि (_T)"
1749+msgid "Transparent background"
1750+msgstr "पारदर्शी पृष्ठभूमि"
1751
1752 #: ../src/profile-preferences.glade.h:70
1753 msgid "_Update login records when command is launched"
1754diff --git a/po/mg.po b/po/mg.po
bb11d6bf 1755index 99fa0f5e4059..a216602569af 100644
2b7dad92
JK
1756--- a/po/mg.po
1757+++ b/po/mg.po
d4bc1a2d
MB
1758@@ -220,8 +220,8 @@ msgid "<b>Background</b>"
1759 msgstr "<b>Afara</b>"
1760
1761 #: ../src/gnome-terminal.glade2.h:3
1762-msgid "<b>Command</b>"
1763-msgstr "<b>Baiko</b>"
1764+msgid "Command"
1765+msgstr "Baiko"
1766
1767 #: ../src/gnome-terminal.glade2.h:4
1768 msgid "<b>Compatibility</b>"
1769@@ -567,8 +567,8 @@ msgid "_Text color:"
2b7dad92
JK
1770 msgstr "Lokon'ny _soratra:"
1771
1772 #: ../src/gnome-terminal.glade2.h:86
1773-msgid "_Transparent background"
1774-msgstr "_Afara tatera-pahazavana"
1775+msgid "Transparent background"
1776+msgstr "Afara tatera-pahazavana"
1777
1778 #: ../src/gnome-terminal.glade2.h:87
1779 msgid "_Update login records when command is launched"
1780diff --git a/po/mk.po b/po/mk.po
d4bc1a2d 1781index 4fe43192fe57..a5a874b49c59 100644
2b7dad92
JK
1782--- a/po/mk.po
1783+++ b/po/mk.po
d4bc1a2d
MB
1784@@ -863,8 +863,8 @@ msgid "_Base on:"
1785 msgstr "_Базирано на:"
1786
1787 #: ../src/profile-preferences.glade.h:1
1788-msgid "<b>Command</b>"
1789-msgstr "<b>Команда</b>"
1790+msgid "Command"
1791+msgstr "Команда"
1792
1793 #: ../src/profile-preferences.glade.h:2
1794 #| msgid "<b>Foreground and Background</b>"
1795@@ -1167,8 +1167,8 @@ msgid "_Text color:"
2b7dad92
JK
1796 msgstr "_Боја на текстот:"
1797
1798 #: ../src/profile-preferences.glade.h:77
1799-msgid "_Transparent background"
1800-msgstr "_Транспарентна позадина"
1801+msgid "Transparent background"
1802+msgstr "Транспарентна позадина"
1803
1804 #: ../src/profile-preferences.glade.h:78
1805 #| msgid "_Text color:"
1806diff --git a/po/ml.po b/po/ml.po
bb11d6bf 1807index a23f4cc4f1ae..49caa9efe94f 100644
2b7dad92
JK
1808--- a/po/ml.po
1809+++ b/po/ml.po
bb11d6bf 1810@@ -2461,3 +2461,6 @@ msgstr "ജാലകം അടയ്ക്കുക (_l)"
2b7dad92 1811
bb11d6bf
JK
1812 #~ msgid "_Unlimited"
1813 #~ msgstr "പരിധിയില്ല (_U)"
1814+
2b7dad92
JK
1815+msgid "Transparent background"
1816+msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
2b7dad92 1817diff --git a/po/mn.po b/po/mn.po
bb11d6bf 1818index 2f9d86072d1c..09c4437d10f9 100644
2b7dad92
JK
1819--- a/po/mn.po
1820+++ b/po/mn.po
d4bc1a2d
MB
1821@@ -217,8 +217,8 @@ msgid "<b>Background</b>"
1822 msgstr "<b>Дэвсгэр</b>"
1823
1824 #: ../src/gnome-terminal.glade2.h:2
1825-msgid "<b>Command</b>"
1826-msgstr "<b>Тушаал</b>"
1827+msgid "Command"
1828+msgstr "Тушаал"
1829
1830 #: ../src/gnome-terminal.glade2.h:3
1831 msgid "<b>Compatibility</b>"
1832@@ -618,8 +618,8 @@ msgid "_Text color:"
2b7dad92
JK
1833 msgstr "_Текстийн өнгө:"
1834
1835 #: ../src/gnome-terminal.glade2.h:102
1836-msgid "_Transparent background"
1837-msgstr "_Тунгалаг дэвсгэр"
1838+msgid "Transparent background"
1839+msgstr "Тунгалаг дэвсгэр"
1840
1841 #: ../src/gnome-terminal.glade2.h:103
1842 msgid "_Update login records when command is launched"
1843diff --git a/po/mr.po b/po/mr.po
bb11d6bf 1844index 61997dafbd03..9c7dc77abd22 100644
2b7dad92
JK
1845--- a/po/mr.po
1846+++ b/po/mr.po
d4bc1a2d
MB
1847@@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा (_l)"
1848 #~ msgid "Default size:"
1849 #~ msgstr "पूर्वनिर्धारीत आकार:"
1850
1851-#~ msgid "Title"
1852-#~ msgstr "शीर्षक"
1853+msgid "Title"
1854+msgstr "शीर्षक"
1855
1856 #~ msgid "When terminal commands set their o_wn titles:"
1857 #~ msgstr "जेव्हा टर्मिनल आदेश स्वतःचे शिर्षक निश्चित करते (_w):"
1858@@ -2240,8 +2240,8 @@ msgstr "चौकट बंद करा (_l)"
1859 #~ msgid "Close Window"
1860 #~ msgstr "चौकट बंद करा"
1861
1862-#~ msgid "Set Title"
1863-#~ msgstr "शिर्षक निश्चित करा"
1864+msgid "Set Title"
1865+msgstr "शिर्षक निश्चित करा"
1866
1867 #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1868 #~ msgstr "“%s” ही शार्टकट कि “%s” या कृतीशी संलग्न आहे"
d4bc1a2d
MB
1869@@ -2267,8 +2267,8 @@ msgstr "चौकट बंद करा (_l)"
1870 #~ msgid "_Input Methods"
1871 #~ msgstr "इनपुट पध्दती (_I)"
1872
1873-#~ msgid "_Title:"
1874-#~ msgstr "शिर्षक (_T):"
1875+msgid "_Title:"
1876+msgstr "शिर्षक (_T):"
1877
1878 #~ msgid "Keyboard shortcut to switch to tab 1"
1879 #~ msgstr "टॅब 1 वापरण्याकरीता कळफलक शॉर्टकट"
2b7dad92
JK
1880@@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
1881 #~ msgid "_Solid color"
1882 #~ msgstr "गडद रंग (_S)"
1883
1884-#~ msgid "_Transparent background"
1885-#~ msgstr "पारदर्शी पार्श्वभूमी(_T)"
1886+msgid "Transparent background"
1887+msgstr "पारदर्शी पार्श्वभूमी"
1888
1889 #~ msgid "Disabled"
1890 #~ msgstr "अकार्यान्वीतित"
1891diff --git a/po/ms.po b/po/ms.po
bb11d6bf 1892index f2ebd4851d3b..f3d44c9c6294 100644
2b7dad92
JK
1893--- a/po/ms.po
1894+++ b/po/ms.po
4de6f867
JB
1895@@ -2502,6 +2502,9 @@ msgstr ""
1896 msgid "C_lose Window"
1897 msgstr "T_utup Tetingkap"
2b7dad92 1898
2b7dad92
JK
1899+msgid "Transparent background"
1900+msgstr "LatarBelakang Telus"
4de6f867
JB
1901+
1902 #~ msgid "Accelerator key"
1903 #~ msgstr "Kekunci pemecut"
2b7dad92 1904
2b7dad92 1905diff --git a/po/nb.po b/po/nb.po
bb11d6bf 1906index 683acfe5221e..3dc97ee17fec 100644
2b7dad92
JK
1907--- a/po/nb.po
1908+++ b/po/nb.po
4de6f867 1909@@ -2261,3 +2261,6 @@ msgstr ""
bb11d6bf 1910 #: ../src/terminal-window.c:3210
2b7dad92
JK
1911 msgid "C_lose Window"
1912 msgstr "_Lukk vindu"
1913+
1914+msgid "Transparent background"
1915+msgstr "Gjennomsiktig bakgrunn"
1916diff --git a/po/nds.po b/po/nds.po
d4bc1a2d 1917index 82f930b1cc0c..d52fbd94eb58 100644
2b7dad92
JK
1918--- a/po/nds.po
1919+++ b/po/nds.po
d4bc1a2d
MB
1920@@ -748,8 +748,8 @@ msgid "_Base on:"
1921 msgstr "_Steiht op:"
1922
1923 #: ../src/profile-preferences.glade.h:1
1924-msgid "<b>Command</b>"
1925-msgstr "<b>Order</b>"
1926+msgid "Command"
1927+msgstr "Order"
1928
1929 #: ../src/profile-preferences.glade.h:2
1930 msgid "<b>Foreground and Background</b>"
1931@@ -996,8 +996,8 @@ msgid "_Text color:"
2b7dad92
JK
1932 msgstr "_Textklöör:"
1933
1934 #: ../src/profile-preferences.glade.h:73
1935-msgid "_Transparent background"
1936-msgstr "_Döörschienenachtergrund:"
1937+msgid "Transparent background"
1938+msgstr "Döörschienenachtergrund:"
1939
1940 #: ../src/profile-preferences.glade.h:74
1941 msgid "_Update login records when command is launched"
1942diff --git a/po/ne.po b/po/ne.po
bb11d6bf 1943index 4fe16cc88a9a..53fb89134be0 100644
2b7dad92
JK
1944--- a/po/ne.po
1945+++ b/po/ne.po
1946@@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
1947 #~ msgid "_None (use solid color)"
1948 #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
1949
1950-#~ msgid "_Transparent background"
1951-#~ msgstr "पारदर्शी पृष्ठभूमि"
1952+msgid "Transparent background"
1953+msgstr "पारदर्शी पृष्ठभूमि"
1954
1955 #~ msgid "_Use the system fixed width font"
1956 #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
d4bc1a2d
MB
1957@@ -3052,8 +3052,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
1958 #~ msgid "Close Tab"
1959 #~ msgstr "ट्याब बन्द गर्नुहोस्"
1960
1961-#~ msgid "Set Title"
1962-#~ msgstr "शीर्षक सेट गर्नुहोस्"
1963+msgid "Set Title"
1964+msgstr "शीर्षक सेट गर्नुहोस्"
1965
1966 #~ msgid "Switch to Tab 2"
1967 #~ msgstr "ट्याब २ मा स्विच गर्नुहोस्"
1968@@ -3232,8 +3232,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
1969 #~ msgid "_Input Methods"
1970 #~ msgstr "आगत विधि"
1971
1972-#~ msgid "_Title:"
1973-#~ msgstr "शीर्षक:"
1974+msgid "_Title:"
1975+msgstr "शीर्षक:"
1976
1977 #~ msgid ""
1978 #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
2b7dad92 1979diff --git a/po/nl.po b/po/nl.po
bb11d6bf 1980index 5f070152cade..560e472f0917 100644
2b7dad92
JK
1981--- a/po/nl.po
1982+++ b/po/nl.po
4de6f867 1983@@ -2596,3 +2596,6 @@ msgstr "Venster sl_uiten"
d4bc1a2d 1984
bb11d6bf
JK
1985 #~ msgid "_Add or Remove…"
1986 #~ msgstr "_Toevoegen of verwijderen…"
1987+
d4bc1a2d
MB
1988+msgid "Title"
1989+msgstr "Titel"
2b7dad92 1990diff --git a/po/nn.po b/po/nn.po
d4bc1a2d 1991index 5aa43b113ed9..f892290c256f 100644
2b7dad92
JK
1992--- a/po/nn.po
1993+++ b/po/nn.po
d4bc1a2d
MB
1994@@ -1149,8 +1149,8 @@ msgid "_Base on:"
1995 msgstr "_Tuft på:"
1996
1997 #: ../src/profile-preferences.glade.h:1
1998-msgid "<b>Command</b>"
1999-msgstr "<b>Kommando</b>"
2000+msgid "Command"
2001+msgstr "Kommando"
2002
2003 #: ../src/profile-preferences.glade.h:2
2004 msgid "<b>Foreground and Background</b>"
2005@@ -1429,8 +1429,8 @@ msgid "_Text color:"
2b7dad92
JK
2006 msgstr "_Tekstfarge:"
2007
2008 #: ../src/profile-preferences.glade.h:73
2009-msgid "_Transparent background"
2010-msgstr "_Gjennomskinleg bakgrunn"
2011+msgid "Transparent background"
2012+msgstr "Gjennomskinleg bakgrunn"
2013
2014 #: ../src/profile-preferences.glade.h:74
2015 msgid "_Update login records when command is launched"
2016diff --git a/po/oc.po b/po/oc.po
bb11d6bf 2017index 9a6f6186019a..6e51ea2f8980 100644
2b7dad92
JK
2018--- a/po/oc.po
2019+++ b/po/oc.po
bb11d6bf 2020@@ -2944,8 +2944,8 @@ msgstr "Tampar _la fenèstra"
d4bc1a2d
MB
2021 #~ msgid "Save as..."
2022 #~ msgstr "Enregistrar jos..."
2023
2024-#~ msgid "_Title:"
2025-#~ msgstr "_Títol :"
2026+msgid "_Title:"
2027+msgstr "_Títol :"
2028
d4bc1a2d
MB
2029 #~ msgid "_Detach tab"
2030 #~ msgstr "Des_tacar l'onglet"
bb11d6bf 2031@@ -3405,8 +3405,8 @@ msgstr "Tampar _la fenèstra"
d4bc1a2d
MB
2032 #~ msgid "_Use the system fixed width font"
2033 #~ msgstr "_Utilizar la poliça de chassa fixa del sistèma"
2034
2035-#~ msgid "Set Title"
2036-#~ msgstr "Definir lo títol"
2037+msgid "Set Title"
2038+msgstr "Definir lo títol"
2039
bb11d6bf
JK
2040 #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
2041 #~ msgstr "L'acorchi de clavièr « %s » es ja atribuit a l'accion « %s »"
2042@@ -3723,8 +3723,8 @@ msgstr "Tampar _la fenèstra"
2b7dad92
JK
2043 #~ msgid "Run;"
2044 #~ msgstr "Executar;Consòla;Shell;"
2045
2046-#~ msgid "_Transparent background"
2047-#~ msgstr "Rèireplan _transparent"
2048+msgid "Transparent background"
2049+msgstr "Rèireplan transparent"
2050
2051 #~ msgid ""
2052 #~ "A subset of possible encodings are presented in the Encoding submenu. "
2053diff --git a/po/or.po b/po/or.po
d4bc1a2d 2054index ec1e6bfb9a28..218acd712df6 100644
2b7dad92
JK
2055--- a/po/or.po
2056+++ b/po/or.po
2057@@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
2058 #~ msgid "Background image _scrolls"
2059 #~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)"
2060
2061-#~ msgid "_Transparent background"
2062-#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)"
2063+msgid "Transparent background"
2064+msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି"
2065
2066 #~ msgid "S_hade transparent or image background:"
2067 #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
2068diff --git a/po/pa.po b/po/pa.po
bb11d6bf 2069index 1cb4b46dc2aa..2bdd01fecaab 100644
2b7dad92
JK
2070--- a/po/pa.po
2071+++ b/po/pa.po
bb11d6bf 2072@@ -2718,10 +2718,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
d4bc1a2d
MB
2073 #~ msgid "GNOME Terminal Client"
2074 #~ msgstr "ਗਨੋਮ ਟਰਮੀਨਲ ਕਲਾਇਟ"
2075
2076-#~| msgid "Terminal"
2077-#~ msgctxt "title"
2078-#~ msgid "'Terminal'"
2079-#~ msgstr "'ਟਰਮੀਨਲ'"
2080+msgctxt "title"
2081+msgid "'Terminal'"
2082+msgstr "'ਟਰਮੀਨਲ'"
2083
2084 #~ msgid "Title for terminal"
2085 #~ msgstr "ਟਰਮੀਨਲ ਲਈ ਟਾਈਟਲ"
bb11d6bf 2086@@ -2766,11 +2765,11 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
d4bc1a2d
MB
2087 #~ msgid "Default size:"
2088 #~ msgstr "ਡਿਫਾਲਟ ਸਾਈਜ਼:"
2089
2090-#~ msgid "Title"
2091-#~ msgstr "ਟਾਈਟਲ"
2092+msgid "Title"
2093+msgstr "ਟਾਈਟਲ"
2094
2095-#~ msgid "_Title:"
2096-#~ msgstr "ਟਾਈਟਲ(_T):"
2097+msgid "_Title:"
2098+msgstr "ਟਾਈਟਲ(_T):"
2099
2100 #~ msgid "Title and Command"
2101 #~ msgstr "ਟਾਈਟਲ ਅਤੇ ਕਮਾਂਡ"
bb11d6bf 2102@@ -2778,8 +2777,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
d4bc1a2d
MB
2103 #~ msgid "_Unlimited"
2104 #~ msgstr "ਬੇਅੰਤ(_U)"
2105
2106-#~ msgid "Set Title"
2107-#~ msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
2108+msgid "Set Title"
2109+msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
2110
2111 #~ msgid "Current Locale"
2112 #~ msgstr "ਮੌਜੂਦ ਲੋਕੇਲ"
bb11d6bf 2113@@ -3559,8 +3558,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2b7dad92
JK
2114 #~ msgid "_Solid color"
2115 #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
2116
2117-#~ msgid "_Transparent background"
2118-#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)"
2119+msgid "Transparent background"
2120+msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ"
2121
2122 #~ msgid "S/Key Challenge Response"
2123 #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
2124diff --git a/po/ps.po b/po/ps.po
d4bc1a2d 2125index b25a2cb41712..3855b2f3423f 100644
2b7dad92
JK
2126--- a/po/ps.po
2127+++ b/po/ps.po
d4bc1a2d
MB
2128@@ -810,8 +810,8 @@ msgid "_Base on:"
2129 msgstr ":پر بنسټ د_"
2130
2131 #: ../src/profile-preferences.glade.h:1
2132-msgid "<b>Command</b>"
2133-msgstr "<b>بولۍ</b>"
2134+msgid "Command"
2135+msgstr "بولۍ"
2136
2137 #: ../src/profile-preferences.glade.h:2
2138 msgid "<b>Foreground and Background</b>"
2139@@ -1053,8 +1053,8 @@ msgid "_Text color:"
2b7dad92
JK
2140 msgstr ":د ليکنې رنګ_"
2141
2142 #: ../src/profile-preferences.glade.h:69
2143-msgid "_Transparent background"
2144-msgstr "روڼ شاليد_"
2145+msgid "Transparent background"
2146+msgstr "روڼ شاليد"
2147
2148 #: ../src/profile-preferences.glade.h:70
2149 msgid "_Update login records when command is launched"
2150diff --git a/po/pt.po b/po/pt.po
bb11d6bf 2151index 5181419ad973..3df37f6d5bc7 100644
2b7dad92
JK
2152--- a/po/pt.po
2153+++ b/po/pt.po
d4bc1a2d
MB
2154@@ -2360,11 +2360,11 @@ msgstr "Fechar jane_la"
2155 #~ msgid "Default size:"
2156 #~ msgstr "Tamanho predefinido:"
2157
2158-#~ msgid "Title"
2159-#~ msgstr "Título"
2160+msgid "Title"
2161+msgstr "Título"
2162
2163-#~ msgid "_Title:"
2164-#~ msgstr "_Título:"
2165+msgid "_Title:"
2166+msgstr "_Título:"
2167
2168 #~ msgid "Title and Command"
2169 #~ msgstr "Título e comando"
bb11d6bf 2170@@ -2372,8 +2372,8 @@ msgstr "Fechar jane_la"
d4bc1a2d
MB
2171 #~ msgid "_Unlimited"
2172 #~ msgstr "_Ilimitado"
2173
2174-#~ msgid "Set Title"
2175-#~ msgstr "Definir o Título"
2176+msgid "Set Title"
2177+msgstr "Definir o Título"
2178
2179 #~ msgid "Current Locale"
2180 #~ msgstr "Configuração Regional Atual"
d4bc1a2d 2181@@ -3160,8 +3160,8 @@ msgstr "Fechar jane_la"
2b7dad92
JK
2182 #~ msgid "Background image _scrolls"
2183 #~ msgstr "Imagem de fundo _rola"
2184
2185-#~ msgid "_Transparent background"
2186-#~ msgstr "Fundo _transparente"
2187+msgid "Transparent background"
2188+msgstr "Fundo transparente"
2189
2190 #~ msgid "S_hade transparent or image background:"
2191 #~ msgstr "Transparente som_breado ou imagem de fundo:"
2192diff --git a/po/pt_BR.po b/po/pt_BR.po
bb11d6bf 2193index c40dba26b08a..9be7eec414e9 100644
2b7dad92
JK
2194--- a/po/pt_BR.po
2195+++ b/po/pt_BR.po
bb11d6bf 2196@@ -2687,17 +2687,17 @@ msgstr "_Fechar janela"
d4bc1a2d
MB
2197 #~ msgid "Default size:"
2198 #~ msgstr "Tamanho padrão:"
2199
2200-#~ msgid "Title"
2201-#~ msgstr "Título"
2202+msgid "Title"
2203+msgstr "Título"
2204
2205-#~ msgid "_Title:"
2206-#~ msgstr "_Título:"
2207+msgid "_Title:"
2208+msgstr "_Título:"
2209
2210 #~ msgid "Title and Command"
2211 #~ msgstr "Título e comando"
2212
2213-#~ msgid "Set Title"
2214-#~ msgstr "Definir título"
2215+msgid "Set Title"
2216+msgstr "Definir título"
2217
2218 #~ msgid "Current Locale"
2219 #~ msgstr "Codificação atual"
bb11d6bf 2220@@ -3323,3 +3323,6 @@ msgstr "_Fechar janela"
2b7dad92
JK
2221 #~ "terminal poderão usar. Essa é a paleta, na forma de uma lista de nomes de "
2222 #~ "cores separada por dois pontos. Os nomes de cores devem estar no formato "
2223 #~ "hexadecimal. Exemplo: \"#FF00FF\""
2224+
2225+msgid "Transparent background"
2226+msgstr "Fundo transparente"
2227diff --git a/po/ro.po b/po/ro.po
bb11d6bf 2228index 53dd72be9c45..d694adf36934 100644
2b7dad92
JK
2229--- a/po/ro.po
2230+++ b/po/ro.po
bb11d6bf
JK
2231@@ -3412,8 +3412,8 @@ msgstr "Î_nchide fereastra"
2232 #~ msgid "_Solid color"
2233 #~ msgstr "Culoare _solidă"
2b7dad92 2234
bb11d6bf
JK
2235-#~ msgid "_Transparent background"
2236-#~ msgstr "Fundal _transparent"
2b7dad92
JK
2237+msgid "Transparent background"
2238+msgstr "Fundal transparent"
2239
bb11d6bf
JK
2240 #~ msgid "_Unlimited"
2241 #~ msgstr "_Neliminat"
2b7dad92 2242diff --git a/po/ru.po b/po/ru.po
bb11d6bf 2243index fedc4d3ec51c..c08bffcb4d10 100644
2b7dad92
JK
2244--- a/po/ru.po
2245+++ b/po/ru.po
4de6f867 2246@@ -2539,3 +2539,6 @@ msgstr "_Закрыть окно"
bb11d6bf
JK
2247
2248 #~ msgid "_Add or Remove…"
2249 #~ msgstr "_Добавить или удалить…"
2b7dad92
JK
2250+
2251+msgid "Transparent background"
2252+msgstr "Прозрачный фон"
2253diff --git a/po/rw.po b/po/rw.po
d4bc1a2d 2254index 012f64e325c3..5ff633f8b3c2 100644
2b7dad92
JK
2255--- a/po/rw.po
2256+++ b/po/rw.po
d4bc1a2d 2257@@ -749,7 +749,7 @@ msgstr "Ibara ry'Inyandiko..."
2b7dad92
JK
2258
2259 #: ../src/gnome-terminal.glade2.h:102
2260 #, fuzzy
2261-msgid "_Transparent background"
2262+msgid "Transparent background"
2263 msgstr "Mbuganyuma"
2264
2265 #: ../src/gnome-terminal.glade2.h:103
d4bc1a2d
MB
2266@@ -2398,7 +2398,6 @@ msgstr ""
2267
2268 # sch/source\ui\app\menu.src:RID_MENU.WORKAROUND_22.SID_INSERT_TITLE.text
2269 #: ../src/terminal-screen.c:2005
2270-#, fuzzy
2271 msgid "_Title:"
2272 msgstr "Umutwe..."
2273
2b7dad92 2274diff --git a/po/si.po b/po/si.po
bb11d6bf 2275index adca7d5acba9..6379cee7f0a3 100644
2b7dad92
JK
2276--- a/po/si.po
2277+++ b/po/si.po
d4bc1a2d
MB
2278@@ -218,8 +218,8 @@ msgid "<b>Background</b>"
2279 msgstr "<b>පසුබිම</b>"
2280
2281 #: ../src/gnome-terminal.glade2.h:3
2282-msgid "<b>Command</b>"
2283-msgstr "<b>විධානය</b>"
2284+msgid "Command"
2285+msgstr "විධානය"
2286
2287 #: ../src/gnome-terminal.glade2.h:4
2288 msgid "<b>Compatibility</b>"
2289@@ -538,8 +538,8 @@ msgid "_Text color:"
2b7dad92
JK
2290 msgstr "පෙළ වර්‍ණ: (_T)"
2291
2292 #: ../src/gnome-terminal.glade2.h:86
2293-msgid "_Transparent background"
2294-msgstr "විනිවිද පෙනෙන පසුබිම (_T)"
2295+msgid "Transparent background"
2296+msgstr "විනිවිද පෙනෙන පසුබිම"
2297
2298 #: ../src/gnome-terminal.glade2.h:87
2299 msgid "_Update login records when command is launched"
2300diff --git a/po/sk.po b/po/sk.po
bb11d6bf 2301index d0282159b459..01dd96a06939 100644
2b7dad92
JK
2302--- a/po/sk.po
2303+++ b/po/sk.po
4de6f867 2304@@ -2916,3 +2916,6 @@ msgstr "_Zavrieť okno"
2b7dad92
JK
2305 #~ "\n"
2306 #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
2307 #~ "help“.\n"
2308+
2309+msgid "Transparent background"
2310+msgstr "Priehľadné pozadie"
2311diff --git a/po/sl.po b/po/sl.po
bb11d6bf 2312index db9cb98834fe..261abe9c1e64 100644
2b7dad92
JK
2313--- a/po/sl.po
2314+++ b/po/sl.po
bb11d6bf 2315@@ -2663,17 +2663,17 @@ msgstr "_Zapri okno"
d4bc1a2d
MB
2316 #~ msgid "Default size:"
2317 #~ msgstr "Privzeta velikost:"
2318
2319-#~ msgid "Title"
2320-#~ msgstr "Naslov"
2321+msgid "Title"
2322+msgstr "Naslov"
2323
2324-#~ msgid "_Title:"
2325-#~ msgstr "_Naziv:"
2326+msgid "_Title:"
2327+msgstr "_Naziv:"
2328
2329 #~ msgid "Title and Command"
2330 #~ msgstr "Naziv in ukaz"
2331
2332-#~ msgid "Set Title"
2333-#~ msgstr "Določitev naziva okna"
2334+msgid "Set Title"
2335+msgstr "Določitev naziva okna"
2336
2337 #~ msgid "Current Locale"
2338 #~ msgstr "Trenutne jezikovne nastavitve"
bb11d6bf 2339@@ -2788,3 +2788,6 @@ msgstr "_Zapri okno"
2b7dad92
JK
2340
2341 #~ msgid "_Profile Preferences…"
2342 #~ msgstr "Možnosti _profila ..."
2343+
2344+msgid "Transparent background"
2345+msgstr "Prosojno ozadje"
2346diff --git a/po/sq.po b/po/sq.po
d4bc1a2d 2347index 158f6cb167cc..a3494fb70bd6 100644
2b7dad92
JK
2348--- a/po/sq.po
2349+++ b/po/sq.po
d4bc1a2d
MB
2350@@ -225,8 +225,8 @@ msgid "<b>Background</b>"
2351 msgstr "<b>Sfondi</b>"
2352
2353 #: ../src/gnome-terminal.glade2.h:3
2354-msgid "<b>Command</b>"
2355-msgstr "<b>Komanda</b>"
2356+msgid "Command"
2357+msgstr "Komanda"
2358
2359 #: ../src/gnome-terminal.glade2.h:4
2360 msgid "<b>Compatibility</b>"
2361@@ -568,8 +568,8 @@ msgstr "Ngjyra e _tekstit:"
2b7dad92
JK
2362
2363 # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
2364 #: ../src/gnome-terminal.glade2.h:85
2365-msgid "_Transparent background"
2366-msgstr "Sfond _Trasparent"
2367+msgid "Transparent background"
2368+msgstr "Sfond Trasparent"
2369
2370 #: ../src/gnome-terminal.glade2.h:86
2371 msgid "_Update login records when command is launched"
2372diff --git a/po/sr.po b/po/sr.po
bb11d6bf 2373index 8bf15f3250a4..81a73722c616 100644
2b7dad92
JK
2374--- a/po/sr.po
2375+++ b/po/sr.po
bb11d6bf 2376@@ -2576,10 +2576,9 @@ msgstr "_Затвори прозор"
d4bc1a2d
MB
2377 #~ msgid "GNOME Terminal Client"
2378 #~ msgstr "Клијент Гномовог терминала"
2379
2380-#~| msgid "Terminal"
2381-#~ msgctxt "title"
2382-#~ msgid "'Terminal'"
2383-#~ msgstr "„Терминал“"
2384+msgctxt "title"
2385+msgid "'Terminal'"
2386+msgstr "„Терминал“"
2387
2388 #~ msgid "Title for terminal"
2389 #~ msgstr "Наслов за терминал"
bb11d6bf 2390@@ -2625,11 +2624,11 @@ msgstr "_Затвори прозор"
d4bc1a2d
MB
2391 #~ msgid "Default size:"
2392 #~ msgstr "Основна величина:"
2393
2394-#~ msgid "Title"
2395-#~ msgstr "Наслов"
2396+msgid "Title"
2397+msgstr "Наслов"
2398
2399-#~ msgid "_Title:"
2400-#~ msgstr "_Наслов:"
2401+msgid "_Title:"
2402+msgstr "_Наслов:"
2403
2404 #~ msgid "Title and Command"
2405 #~ msgstr "Наслов и наредба"
bb11d6bf 2406@@ -2637,8 +2636,8 @@ msgstr "_Затвори прозор"
d4bc1a2d
MB
2407 #~ msgid "_Unlimited"
2408 #~ msgstr "_Неограничено"
2409
2410-#~ msgid "Set Title"
2411-#~ msgstr "Постави наслов"
2412+msgid "Set Title"
2413+msgstr "Постави наслов"
2414
2415 #~ msgid "Current Locale"
2416 #~ msgstr "Текући локалитет"
bb11d6bf 2417@@ -2648,3 +2647,6 @@ msgstr "_Затвори прозор"
d4bc1a2d 2418
bb11d6bf
JK
2419 #~ msgid "Hidden"
2420 #~ msgstr "Скривен"
2b7dad92
JK
2421+
2422+msgid "Transparent background"
2423+msgstr "Провидна позадина"
2424diff --git a/po/sr@latin.po b/po/sr@latin.po
bb11d6bf 2425index 45dbad07fba7..852c47cc6ee5 100644
2b7dad92
JK
2426--- a/po/sr@latin.po
2427+++ b/po/sr@latin.po
bb11d6bf 2428@@ -2576,10 +2576,9 @@ msgstr "_Zatvori prozor"
d4bc1a2d
MB
2429 #~ msgid "GNOME Terminal Client"
2430 #~ msgstr "Klijent Gnomovog terminala"
2431
2432-#~| msgid "Terminal"
2433-#~ msgctxt "title"
2434-#~ msgid "'Terminal'"
2435-#~ msgstr "„Terminal“"
2436+msgctxt "title"
2437+msgid "'Terminal'"
2438+msgstr "„Terminal“"
2439
2440 #~ msgid "Title for terminal"
2441 #~ msgstr "Naslov za terminal"
bb11d6bf 2442@@ -2625,11 +2624,11 @@ msgstr "_Zatvori prozor"
d4bc1a2d
MB
2443 #~ msgid "Default size:"
2444 #~ msgstr "Osnovna veličina:"
2445
2446-#~ msgid "Title"
2447-#~ msgstr "Naslov"
2448+msgid "Title"
2449+msgstr "Naslov"
2450
2451-#~ msgid "_Title:"
2452-#~ msgstr "_Naslov:"
2453+msgid "_Title:"
2454+msgstr "_Naslov:"
2455
2456 #~ msgid "Title and Command"
2457 #~ msgstr "Naslov i naredba"
bb11d6bf 2458@@ -2637,8 +2636,8 @@ msgstr "_Zatvori prozor"
d4bc1a2d
MB
2459 #~ msgid "_Unlimited"
2460 #~ msgstr "_Neograničeno"
2461
2462-#~ msgid "Set Title"
2463-#~ msgstr "Postavi naslov"
2464+msgid "Set Title"
2465+msgstr "Postavi naslov"
2466
2467 #~ msgid "Current Locale"
2468 #~ msgstr "Tekući lokalitet"
bb11d6bf 2469@@ -2648,3 +2647,6 @@ msgstr "_Zatvori prozor"
d4bc1a2d 2470
bb11d6bf
JK
2471 #~ msgid "Hidden"
2472 #~ msgstr "Skriven"
2b7dad92
JK
2473+
2474+msgid "Transparent background"
2475+msgstr "Providna pozadina"
2476diff --git a/po/sv.po b/po/sv.po
bb11d6bf 2477index 8560fde55941..bd1030f519ab 100644
2b7dad92
JK
2478--- a/po/sv.po
2479+++ b/po/sv.po
4de6f867 2480@@ -2572,5 +2572,8 @@ msgstr "Stän_g fönster"
2b7dad92
JK
2481 #~ msgid "Unknown completion request for \"%s\""
2482 #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
2483
2484+msgid "Transparent background"
2485+msgstr "Genomskinlig bakgrund"
2486+
2487 #~ msgid "Missing command"
2488 #~ msgstr "Kommando saknas"
2489diff --git a/po/ta.po b/po/ta.po
d4bc1a2d 2490index 80aa2f684eec..afd335b0faf0 100644
2b7dad92
JK
2491--- a/po/ta.po
2492+++ b/po/ta.po
d4bc1a2d
MB
2493@@ -2171,10 +2171,9 @@ msgstr "_l சாளரத்தை மூடவும்"
2494 #~ msgid "Show server options"
2495 #~ msgstr "சேவையக தேர்வுகளை காட்டுக"
2496
2497-#~| msgid "Terminal"
2498-#~ msgctxt "title"
2499-#~ msgid "'Terminal'"
2500-#~ msgstr "'முனையம்'"
2501+msgctxt "title"
2502+msgid "'Terminal'"
2503+msgstr "'முனையம்'"
2504
2505 #~ msgid "Title for terminal"
2506 #~ msgstr "முனையத்தின் தலைப்பு"
2507@@ -2221,11 +2220,11 @@ msgstr "_l சாளரத்தை மூடவும்"
2508 #~ msgid "Default size:"
2509 #~ msgstr "முன்னிருப்பு அளவு:"
2510
2511-#~ msgid "Title"
2512-#~ msgstr "தலைப்பு"
2513+msgid "Title"
2514+msgstr "தலைப்பு"
2515
2516-#~ msgid "_Title:"
2517-#~ msgstr "_T தலைப்பு:"
2518+msgid "_Title:"
2519+msgstr "_T தலைப்பு:"
2520
2521 #~ msgid "Title and Command"
2522 #~ msgstr "தலைப்பும் கட்டளையும்"
2523@@ -2233,8 +2232,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2524 #~ msgid "_Unlimited"
2525 #~ msgstr "_U வரையரை இல்லாத"
2526
2527-#~ msgid "Set Title"
2528-#~ msgstr "தலைப்பை அமைக்க"
2529+msgid "Set Title"
2530+msgstr "தலைப்பை அமைக்க"
2531
2532 #~| msgid "_Terminal"
2533 #~ msgid "_About Terminal"
2534@@ -2243,8 +2242,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2535 #~ msgid "Current Locale"
2536 #~ msgstr "தற்போதைய மொழி"
2537
2538-#~ msgid "_Set Title…"
2539-#~ msgstr "(_S) தலைப்பை அமைக்க..."
2540+msgid "_Set Title…"
2541+msgstr "(_S) தலைப்பை அமைக்க..."
2542
2543 #~ msgid "_Next Tab"
2544 #~ msgstr "அடுத்த கீற்று (_N)"
2545@@ -3028,8 +3027,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2b7dad92
JK
2546 #~ msgid "_Solid color"
2547 #~ msgstr "(_S) ஒரே வண்ணம்"
2548
2549-#~ msgid "_Transparent background"
2550-#~ msgstr "_T புலப்பாடு பின்னணி"
2551+msgid "Transparent background"
2552+msgstr "புலப்பாடு பின்னணி"
2553
2554 #~ msgid "No such profile \"%s\", using default profile\n"
2555 #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
2556diff --git a/po/te.po b/po/te.po
d4bc1a2d 2557index 82c0e0fc8f54..0dd3d871f639 100644
2b7dad92
JK
2558--- a/po/te.po
2559+++ b/po/te.po
d4bc1a2d
MB
2560@@ -2055,10 +2055,9 @@ msgstr "కిటికీని మూసివేయి (_l)"
2561 #~ msgid "Show server options"
2562 #~ msgstr "సేవకము ఐచ్చికాలను చూపించు"
2563
2564-#, fuzzy
2565-#~ msgctxt "title"
2566-#~ msgid "'Terminal'"
2567-#~ msgstr "టెర్మినల్"
2568+msgctxt "title"
2569+msgid "'Terminal'"
2570+msgstr "టెర్మినల్"
2571
2572 #~ msgid "Title for terminal"
2573 #~ msgstr "టెర్మినల్ కు శీర్షిక"
2574@@ -2104,11 +2103,11 @@ msgstr "కిటికీని మూసివేయి (_l)"
2575 #~ msgid "Default size:"
2576 #~ msgstr "అప్రమేయ పరిమాణం:"
2577
2578-#~ msgid "Title"
2579-#~ msgstr "శీర్షిక:"
2580+msgid "Title"
2581+msgstr "శీర్షిక:"
2582
2583-#~ msgid "_Title:"
2584-#~ msgstr "శీర్షిక (_T):"
2585+msgid "_Title:"
2586+msgstr "శీర్షిక (_T):"
2587
2588 #~ msgid "Title and Command"
2589 #~ msgstr "శీర్షిక మరియు ఆదేశం"
2590@@ -2116,14 +2115,14 @@ msgstr "కిటికీని మూసివేయి (_l)"
2591 #~ msgid "_Unlimited"
2592 #~ msgstr "అపరిమితమైన (_U)"
2593
2594-#~ msgid "Set Title"
2595-#~ msgstr "శీర్షికను అమర్చు"
2596+msgid "Set Title"
2597+msgstr "శీర్షికను అమర్చు"
2598
2599 #~ msgid "Current Locale"
2600 #~ msgstr "ప్రస్తుత స్థానికం"
2601
2602-#~ msgid "_Set Title…"
2603-#~ msgstr "శీర్షికను అమర్చు... (_S)"
2604+msgid "_Set Title…"
2605+msgstr "శీర్షికను అమర్చు... (_S)"
2606
2607 #~ msgid "_Next Tab"
2608 #~ msgstr "తరువాతి ట్యాబ్(_N)"
2609@@ -2898,8 +2897,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
2b7dad92
JK
2610 #~ msgid "Background image _scrolls"
2611 #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
2612
2613-#~ msgid "_Transparent background"
2614-#~ msgstr "పారదర్శక నేపథ్యం (_T)"
2615+msgid "Transparent background"
2616+msgstr "పారదర్శక నేపథ్యం"
2617
2618 #~ msgid "S_hade transparent or image background:"
2619 #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
d4bc1a2d
MB
2620diff --git a/po/tg.po b/po/tg.po
2621index e3feef658e1e..6371c036626f 100644
2622--- a/po/tg.po
2623+++ b/po/tg.po
2624@@ -2158,23 +2158,23 @@ msgstr "П_ӯшонидани равзана"
2625 #~ msgid "Default size:"
2626 #~ msgstr "Андозаи пешфарз:"
2627
2628-#~ msgid "Title"
2629-#~ msgstr "Сарлавҳа"
2630+msgid "Title"
2631+msgstr "Сарлавҳа"
2632
2633-#~ msgid "_Title:"
2634-#~ msgstr "_Вазифа:"
2635+msgid "_Title:"
2636+msgstr "_Вазифа:"
2637
2638 #~ msgid "Title and Command"
2639 #~ msgstr "Унвон ва Фармон"
2640
2641-#~ msgid "Set Title"
2642-#~ msgstr "Таъин кардани сарлавҳа"
2643+msgid "Set Title"
2644+msgstr "Таъин кардани сарлавҳа"
2645
2646 #~ msgid "Current Locale"
2647 #~ msgstr "Маҳаллигардонии ҷорӣ"
2648
2649-#~ msgid "_Set Title…"
2650-#~ msgstr "_Танзими сарлавҳа..."
2651+msgid "_Set Title…"
2652+msgstr "_Танзими сарлавҳа..."
2653
2654 #~ msgid "_Next Tab"
2655 #~ msgstr "_Варақаи навбатӣ"
2b7dad92 2656diff --git a/po/th.po b/po/th.po
d4bc1a2d 2657index 63263749655c..496da331bbf9 100644
2b7dad92
JK
2658--- a/po/th.po
2659+++ b/po/th.po
d4bc1a2d
MB
2660@@ -2308,23 +2308,23 @@ msgstr "ปิ_ดหน้าต่าง"
2661 #~ msgid "Default size:"
2662 #~ msgstr "ขนาดปริยาย:"
2663
2664-#~ msgid "Title"
2665-#~ msgstr "หัวเรื่อง"
2666+msgid "Title"
2667+msgstr "หัวเรื่อง"
2668
2669-#~ msgid "_Title:"
2670-#~ msgstr "_หัวเรื่อง:"
2671+msgid "_Title:"
2672+msgstr "_หัวเรื่อง:"
2673
2674 #~ msgid "Title and Command"
2675 #~ msgstr "หัวเรื่องและคำสั่ง"
2676
2677-#~ msgid "Set Title"
2678-#~ msgstr "ตั้งหัวเรื่อง"
2679+msgid "Set Title"
2680+msgstr "ตั้งหัวเรื่อง"
2681
2682 #~ msgid "Current Locale"
2683 #~ msgstr "ตามโลแคลปัจจุบัน"
2684
2685-#~ msgid "_Set Title…"
2686-#~ msgstr "ตั้งป้าย_ชื่อ…"
2687+msgid "_Set Title…"
2688+msgstr "ตั้งป้าย_ชื่อ…"
2689
2690 #~ msgid "_Next Tab"
2691 #~ msgstr "แท็บ_ถัดไป"
2692@@ -2803,8 +2803,8 @@ msgstr "ปิ_ดหน้าต่าง"
2b7dad92
JK
2693 #~ msgid "_Solid color"
2694 #~ msgstr "สี_ทึบ"
2695
2696-#~ msgid "_Transparent background"
2697-#~ msgstr "พื้นหลังโปร่งแ_สง"
2698+msgid "Transparent background"
2699+msgstr "พื้นหลังโปร่งแสง"
2700
2701 #~ msgid ""
2702 #~ "You already have a profile called “%s”. Do you want to create another "
2703diff --git a/po/tr.po b/po/tr.po
bb11d6bf 2704index fa79334e08dc..5b988d7dbd4a 100644
2b7dad92
JK
2705--- a/po/tr.po
2706+++ b/po/tr.po
4de6f867 2707@@ -2558,3 +2558,6 @@ msgstr "_Pencereyi Kapat"
d4bc1a2d
MB
2708
2709 #~ msgid "_Same as text color"
2710 #~ msgstr "_Metin rengiyle aynı"
2b7dad92
JK
2711+
2712+msgid "Transparent background"
2713+msgstr "Şeffaf arkaplan"
2714diff --git a/po/ug.po b/po/ug.po
d4bc1a2d 2715index 313f76b98eae..be6089762082 100644
2b7dad92
JK
2716--- a/po/ug.po
2717+++ b/po/ug.po
2718@@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
2719 #~ msgid "_Solid color"
2720 #~ msgstr "ساپ رەڭ(_S)"
2721
2722-#~ msgid "_Transparent background"
2723-#~ msgstr "سۈزۈك تەگلىك(_T)"
2724+msgid "Transparent background"
2725+msgstr "سۈزۈك تەگلىك"
2726
2727 #~ msgid ""
2728 #~ "You already have a profile called “%s”. Do you want to create another "
2729diff --git a/po/uk.po b/po/uk.po
d4bc1a2d 2730index a08f25914d12..a4fbcbe6e474 100644
2b7dad92
JK
2731--- a/po/uk.po
2732+++ b/po/uk.po
4de6f867
JB
2733@@ -2399,3 +2399,6 @@ msgstr ""
2734 #: src/terminal-window.c:3224
2735 msgid "C_lose Window"
2736 msgstr "Закр_ити вікно"
2737+
2b7dad92
JK
2738+msgid "Transparent background"
2739+msgstr "Прозоре тло"
2b7dad92 2740diff --git a/po/vi.po b/po/vi.po
bb11d6bf 2741index 67eb9326545f..5a279ad647b6 100644
2b7dad92
JK
2742--- a/po/vi.po
2743+++ b/po/vi.po
bb11d6bf 2744@@ -2673,8 +2673,8 @@ msgstr "Đón_g cửa sổ"
d4bc1a2d
MB
2745 #~ msgid "Default size:"
2746 #~ msgstr "Cỡ mặc định:"
2747
2748-#~ msgid "Title"
2749-#~ msgstr "Tựa đề"
2750+msgid "Title"
2751+msgstr "Tựa đề"
2752
2753 #~ msgid "When terminal commands set their o_wn titles:"
2754 #~ msgstr "Khi câu lệnh thiết bị cuối tự đặt tựa đề _mình:"
bb11d6bf
JK
2755@@ -2685,8 +2685,8 @@ msgstr "Đón_g cửa sổ"
2756 #~ msgid "_Unlimited"
2757 #~ msgstr "_Không hạn chế"
d4bc1a2d
MB
2758
2759-#~ msgid "Set Title"
2760-#~ msgstr "Đặt tựa đề"
2761+msgid "Set Title"
2762+msgstr "Đặt tựa đề"
2763
bb11d6bf
JK
2764 #~ msgid "Switch to Tab 3"
2765 #~ msgstr "Chuyển sang Thanh 3"
2766@@ -2727,8 +2727,8 @@ msgstr "Đón_g cửa sổ"
d4bc1a2d
MB
2767 #~ msgid "_Input Methods"
2768 #~ msgstr "K_iểu gõ"
2769
2770-#~ msgid "_Title:"
2771-#~ msgstr "_Tựa đề:"
2772+msgid "_Title:"
2773+msgstr "_Tựa đề:"
2774
2775 #~ msgid "Disable connection to session manager"
2776 #~ msgstr "Tắt kết nối đến trình quản lý phiên làm việc"
bb11d6bf 2777@@ -3113,3 +3113,6 @@ msgstr "Đón_g cửa sổ"
2b7dad92
JK
2778 #~ "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 "
2779 #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị "
2780 #~ "tắt), nghĩa là không có phím tắt cho hành động này."
2781+
2782+msgid "Transparent background"
2783+msgstr "Nền trong suốt"
2784diff --git a/po/wa.po b/po/wa.po
d4bc1a2d 2785index 0e0a6a752b6d..5ddeb2393654 100644
2b7dad92
JK
2786--- a/po/wa.po
2787+++ b/po/wa.po
d4bc1a2d
MB
2788@@ -224,8 +224,8 @@ msgid "<b>Background</b>"
2789 msgstr "<b>Fond</b>"
2790
2791 #: ../src/gnome-terminal.glade2.h:3
2792-msgid "<b>Command</b>"
2793-msgstr "<b>Comande</b>"
2794+msgid "Command"
2795+msgstr "Comande"
2796
2797 #: ../src/gnome-terminal.glade2.h:4
2798 msgid "<b>Compatibility</b>"
2799@@ -564,8 +564,8 @@ msgid "_Text color:"
2b7dad92
JK
2800 msgstr "Coleur pol _tecse:"
2801
2802 #: ../src/gnome-terminal.glade2.h:86
2803-msgid "_Transparent background"
2804-msgstr "Fond k' on voet _houte"
2805+msgid "Transparent background"
2806+msgstr "Fond k' on voet houte"
2807
2808 #: ../src/gnome-terminal.glade2.h:87
2809 msgid "_Update login records when command is launched"
d4bc1a2d
MB
2810@@ -2227,8 +2227,8 @@ msgid "Change _Profile"
2811 msgstr "Candjî _profil"
2812
2813 #: ../src/terminal-window.c:1013
2814-msgid "_Set Title..."
2815-msgstr "_Candjî l' tite..."
2816+msgid "_Set Title…"
2817+msgstr "_Candjî l' tite…"
2818
2819 #: ../src/terminal-window.c:1020
2820 msgid "Set _Character Encoding"
2b7dad92 2821diff --git a/po/xh.po b/po/xh.po
d4bc1a2d 2822index 44a8e21c7842..12aa6d190d99 100644
2b7dad92
JK
2823--- a/po/xh.po
2824+++ b/po/xh.po
d4bc1a2d
MB
2825@@ -217,8 +217,8 @@ msgid "<b>Background</b>"
2826 msgstr "<b>Okungasemva</b>"
2827
2828 #: ../src/gnome-terminal.glade2.h:2
2829-msgid "<b>Command</b>"
2830-msgstr "<b>Umyalelo</b>"
2831+msgid "Command"
2832+msgstr "Umyalelo"
2833
2834 #: ../src/gnome-terminal.glade2.h:3
2835 msgid "<b>Compatibility</b>"
2836@@ -621,8 +621,8 @@ msgid "_Text color:"
2b7dad92
JK
2837 msgstr "_Umbala wombhalo:"
2838
2839 #: ../src/gnome-terminal.glade2.h:102
2840-msgid "_Transparent background"
2841-msgstr "_Okungasemva okucace gca"
2842+msgid "Transparent background"
2843+msgstr "Okungasemva okucace gca"
2844
2845 #: ../src/gnome-terminal.glade2.h:103
2846 msgid "_Update login records when command is launched"
d4bc1a2d
MB
2847@@ -2265,8 +2265,8 @@ msgid "Change _Profile"
2848 msgstr "Tsintsha i_Nkangeleko"
2849
2850 #: ../src/terminal-window.c:979
2851-msgid "_Set Title..."
2852-msgstr "_Misela..."
2853+msgid "_Set Title…"
2854+msgstr "_Misela…"
2855
2856 #: ../src/terminal-window.c:986
2857 msgid "Set _Character Encoding"
2b7dad92 2858diff --git a/po/zh_CN.po b/po/zh_CN.po
bb11d6bf 2859index 6c80dcd1231a..51e5f9999176 100644
2b7dad92
JK
2860--- a/po/zh_CN.po
2861+++ b/po/zh_CN.po
bb11d6bf 2862@@ -2580,17 +2580,17 @@ msgstr "关闭窗口(_L)"
d4bc1a2d
MB
2863 #~ msgid "Default size:"
2864 #~ msgstr "默认大小:"
2865
2866-#~ msgid "Title"
2867-#~ msgstr "标题"
2868+msgid "Title"
2869+msgstr "标题"
2870
2871-#~ msgid "_Title:"
2872-#~ msgstr "标题(_T):"
2873+msgid "_Title:"
2874+msgstr "标题(_T):"
2875
2876 #~ msgid "Title and Command"
2877 #~ msgstr "标题和命令"
2878
2879-#~ msgid "Set Title"
2880-#~ msgstr "设置标题"
2881+msgid "Set Title"
2882+msgstr "设置标题"
2883
2884 #~ msgid "Current Locale"
2885 #~ msgstr "当前区域"
bb11d6bf 2886@@ -2703,3 +2703,6 @@ msgstr "关闭窗口(_L)"
2b7dad92
JK
2887
2888 #~ msgid "_Find..."
2889 #~ msgstr "查找(_F)..."
2890+
2891+msgid "Transparent background"
2892+msgstr "透明背景"
2893diff --git a/po/zh_HK.po b/po/zh_HK.po
bb11d6bf 2894index 61153529f0c7..c366abddd1af 100644
2b7dad92
JK
2895--- a/po/zh_HK.po
2896+++ b/po/zh_HK.po
bb11d6bf 2897@@ -2114,17 +2114,17 @@ msgstr "關閉視窗(_L)"
d4bc1a2d
MB
2898 #~ msgid "Default size:"
2899 #~ msgstr "預設大小:"
2900
2901-#~ msgid "Title"
2902-#~ msgstr "標題"
2903+msgid "Title"
2904+msgstr "標題"
2905
2906-#~ msgid "_Title:"
2907-#~ msgstr "標題(_T):"
2908+msgid "_Title:"
2909+msgstr "標題(_T):"
2910
2911 #~ msgid "Title and Command"
2912 #~ msgstr "標題及指令"
2913
2914-#~ msgid "Set Title"
2915-#~ msgstr "設定標題"
2916+msgid "Set Title"
2917+msgstr "設定標題"
2918
2919 #~ msgid "Current Locale"
2920 #~ msgstr "目前的地區設定"
2b7dad92
JK
2921@@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
2922
2923 #~ msgid "Show session management options"
2924 #~ msgstr "顯示作業階段管理選項"
2925+
2926+msgid "Transparent background"
2927+msgstr "透明背景"
2928diff --git a/po/zh_TW.po b/po/zh_TW.po
bb11d6bf 2929index b9890ad91bdc..18e55e2e945c 100644
2b7dad92
JK
2930--- a/po/zh_TW.po
2931+++ b/po/zh_TW.po
bb11d6bf 2932@@ -2562,17 +2562,17 @@ msgstr "關閉視窗(_L)"
d4bc1a2d
MB
2933 #~ msgid "Default size:"
2934 #~ msgstr "預設大小:"
2935
2936-#~ msgid "Title"
2937-#~ msgstr "標題"
2938+msgid "Title"
2939+msgstr "標題"
2940
2941-#~ msgid "_Title:"
2942-#~ msgstr "標題(_T):"
2943+msgid "_Title:"
2944+msgstr "標題(_T):"
2945
2946 #~ msgid "Title and Command"
2947 #~ msgstr "標題及指令"
2948
2949-#~ msgid "Set Title"
2950-#~ msgstr "設定標題"
2951+msgid "Set Title"
2952+msgstr "設定標題"
2953
2954 #~ msgid "Current Locale"
2955 #~ msgstr "目前的地區設定"
bb11d6bf 2956@@ -2784,3 +2784,6 @@ msgstr "關閉視窗(_L)"
2b7dad92
JK
2957
2958 #~ msgid "Show session management options"
2959 #~ msgstr "顯示作業階段管理選項"
2960+
2961+msgid "Transparent background"
2962+msgstr "透明背景"
bb11d6bf
JK
2963--
29642.19.1
This page took 0.729366 seconds and 4 git commands to generate.