]> git.pld-linux.org Git - packages/gnome-terminal.git/blame - gnome-terminal-transparency.patch
Updated to 3.30.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
d4bc1a2d 315@@ -139,6 +139,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *,
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);
321 static gboolean terminal_screen_do_exec (TerminalScreen *screen,
322 FDSetupData *data,
323 GError **error);
bb11d6bf 324@@ -475,6 +477,7 @@ terminal_screen_class_init (TerminalScreenClass *klass)
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
bb11d6bf 756@@ -2392,3 +2392,6 @@ msgstr "_Закрыць акно"
2b7dad92 757
bb11d6bf
JK
758 #~ msgid "_Set Title…"
759 #~ msgstr "Прызначыць _загаловак..."
760+
2b7dad92
JK
761+msgid "Transparent background"
762+msgstr "Празрысты фон"
2b7dad92 763diff --git a/po/be@latin.po b/po/be@latin.po
d4bc1a2d 764index 82ef0664ae1e..27e9877f96e8 100644
2b7dad92
JK
765--- a/po/be@latin.po
766+++ b/po/be@latin.po
d4bc1a2d
MB
767@@ -1146,8 +1146,8 @@ msgid "_Base on:"
768 msgstr "Na _bazie:"
769
770 #: ../src/profile-preferences.glade.h:1
771-msgid "<b>Command</b>"
772-msgstr "<b>Zahad</b>"
773+msgid "Command"
774+msgstr "Zahad"
775
776 #: ../src/profile-preferences.glade.h:2
777 msgid "<b>Foreground and Background</b>"
778@@ -1426,8 +1426,8 @@ msgid "_Text color:"
2b7dad92
JK
779 msgstr "Koler _tekstu:"
780
781 #: ../src/profile-preferences.glade.h:73
782-msgid "_Transparent background"
783-msgstr "_Prazrysty fon"
784+msgid "Transparent background"
785+msgstr "Prazrysty fon"
786
787 #: ../src/profile-preferences.glade.h:74
788 msgid "_Update login records when command is launched"
789diff --git a/po/bg.po b/po/bg.po
bb11d6bf 790index 9a4f32e4b135..6ac17c17efb8 100644
2b7dad92
JK
791--- a/po/bg.po
792+++ b/po/bg.po
bb11d6bf
JK
793@@ -2305,3 +2305,12 @@ msgstr ""
794 #: ../src/terminal-window.c:3953
2b7dad92
JK
795 msgid "C_lose Window"
796 msgstr "_Затваряне на този прозорец"
797+
798+msgid "Transparent background"
799+msgstr "Прозрачен фон"
d4bc1a2d
MB
800+
801+msgid "_Title:"
802+msgstr "_Заглавие:"
803+
804+msgid "Set Title"
805+msgstr "Задаване на заглавие"
d4bc1a2d
MB
806diff --git a/po/bn.po b/po/bn.po
807index 4906009cf46f..f97d43b0e515 100644
808--- a/po/bn.po
809+++ b/po/bn.po
810@@ -1217,8 +1217,8 @@ msgid "_Base on:"
811 msgstr "চিহ্নিত বস্তুর উপর ভিত্তি করে: (_B)"
812
813 #: ../src/profile-preferences.glade.h:1
814-msgid "<b>Command</b>"
815-msgstr "<b>কমান্ড</b>"
816+msgid "Command"
817+msgstr "কমান্ড"
818
819 #: ../src/profile-preferences.glade.h:2
820 msgid "<b>Foreground, Background, and Bold</b>"
821@@ -1524,8 +1524,8 @@ msgid "_Text color:"
822 msgstr "পাঠ্যের রং: (_T)"
823
824 #: ../src/profile-preferences.glade.h:76
825-msgid "_Transparent background"
826-msgstr "স্বচ্ছ পটভূমি (_T)"
827+msgid "Transparent background"
828+msgstr "স্বচ্ছ পটভূমি "
829
830 #: ../src/profile-preferences.glade.h:77
831 msgid "_Unlimited"
2b7dad92 832diff --git a/po/bn_IN.po b/po/bn_IN.po
bb11d6bf 833index f196e5084797..0ac3caf77e73 100644
2b7dad92
JK
834--- a/po/bn_IN.po
835+++ b/po/bn_IN.po
d4bc1a2d
MB
836@@ -2296,8 +2296,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
837 #~ msgid "Close Window"
838 #~ msgstr "উইন্ডো বন্ধ করুন"
839
840-#~ msgid "Set Title"
841-#~ msgstr "শিরোনাম নির্ধারণ করুন"
842+msgid "Set Title"
843+msgstr "শিরোনাম নির্ধারণ করুন"
844
845 #~ msgid "Switch to Tab 2"
846 #~ msgstr "ট্যাব ২-এ পরিবর্তন করুন"
d4bc1a2d
MB
847@@ -2356,5 +2356,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
848 #~ msgid "_Input Methods"
849 #~ msgstr "ইনপুট পদ্ধতি (_I)"
2b7dad92 850
d4bc1a2d
MB
851-#~ msgid "_Title:"
852-#~ msgstr "শিরোনাম: (_T)"
853+msgid "_Title:"
854+msgstr "শিরোনাম: (_T)"
2b7dad92
JK
855+
856+msgid "Transparent background"
857+msgstr "স্বচ্চ পটভূমি "
d4bc1a2d
MB
858diff --git a/po/br.po b/po/br.po
859index e16ea07dfc21..f4cbe857d5ca 100644
860--- a/po/br.po
861+++ b/po/br.po
862@@ -958,8 +958,8 @@ msgid "_Base on:"
863 msgstr ""
864
865 #: ../src/profile-preferences.glade.h:1
866-msgid "<b>Command</b>"
867-msgstr "<b>Arc'had</b>"
868+msgid "Command"
869+msgstr "Arc'had"
870
871 #: ../src/profile-preferences.glade.h:2
872 msgid "<b>Foreground and Background</b>"
873@@ -1211,7 +1211,7 @@ msgid "_Text color:"
874 msgstr "Liv an destenn :"
875
876 #: ../src/profile-preferences.glade.h:73
877-msgid "_Transparent background"
878+msgid "Transparent background"
879 msgstr ""
880
881 #: ../src/profile-preferences.glade.h:74
2b7dad92 882diff --git a/po/bs.po b/po/bs.po
bb11d6bf 883index 49e710859ac9..8703552984b1 100644
2b7dad92
JK
884--- a/po/bs.po
885+++ b/po/bs.po
886@@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
887 msgid "Keyboard shortcut to make font smaller"
888 msgstr "Kratica tastature za smanjivanje fonta"
889
890+#: ../src/gnome-terminal.glade2.h:102
891+msgid "Transparent background"
892+msgstr "Providna pozadina"
893+
894 #: ../src/org.gnome.Terminal.gschema.xml.h:78
895 msgid "Keyboard shortcut to make font normal-size"
896 msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
bb11d6bf 897@@ -2054,3 +2058,9 @@ msgstr ""
d4bc1a2d
MB
898 #: ../src/terminal-window.c:3652
899 msgid "C_lose Window"
900 msgstr "_Zatvori prozor"
901+
902+msgid "_Title:"
903+msgstr "_Naslov:"
904+
905+msgid "Set Title"
906+msgstr "Postavi naslov"
2b7dad92 907diff --git a/po/ca.po b/po/ca.po
bb11d6bf 908index 4a612fcfc0ba..6091324a9547 100644
2b7dad92
JK
909--- a/po/ca.po
910+++ b/po/ca.po
bb11d6bf 911@@ -2333,3 +2333,15 @@ msgstr "Tanca la _finestra"
2b7dad92 912
bb11d6bf
JK
913 #~ msgid "Open the terminal file manager Midnight Commander"
914 #~ msgstr "Obre el gestor de fitxers del terminal Midnight Commander"
2b7dad92
JK
915+
916+msgid "Transparent background"
917+msgstr "Fons transparent"
d4bc1a2d
MB
918+
919+msgid "Title"
920+msgstr "Títol"
921+
922+msgid "_Title:"
923+msgstr "Tít_ol:"
924+
925+msgid "Set Title"
926+msgstr "Estableix el títol"
2b7dad92 927diff --git a/po/ca@valencia.po b/po/ca@valencia.po
bb11d6bf 928index a6e8fb4250dc..c9ed8508228d 100644
2b7dad92
JK
929--- a/po/ca@valencia.po
930+++ b/po/ca@valencia.po
bb11d6bf
JK
931@@ -2357,3 +2357,15 @@ msgstr "Tanca la _finestra"
932
933 #~ msgid "Whether to use a dark theme variant"
934 #~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
2b7dad92
JK
935+
936+msgid "Transparent background"
937+msgstr "Fons transparent"
d4bc1a2d
MB
938+
939+msgid "Title"
940+msgstr "Títol"
941+
942+msgid "_Title:"
943+msgstr "Tít_ol:"
944+
945+msgid "Set Title"
946+msgstr "Estableix el títol"
2b7dad92 947diff --git a/po/cs.po b/po/cs.po
bb11d6bf 948index ee33ed2a0103..2acf2aa99656 100644
2b7dad92
JK
949--- a/po/cs.po
950+++ b/po/cs.po
bb11d6bf
JK
951@@ -2310,3 +2310,15 @@ msgstr ""
952 #: ../src/terminal-window.c:3353
2b7dad92
JK
953 msgid "C_lose Window"
954 msgstr "_Zavřít okno"
955+
956+msgid "Transparent background"
957+msgstr "Průsvitné pozadí"
d4bc1a2d
MB
958+
959+msgid "Title"
960+msgstr "Záhlaví"
961+
962+msgid "_Title:"
963+msgstr "Zá_hlaví:"
964+
965+msgid "Set Title"
966+msgstr "Nastavit záhlaví"
2b7dad92 967diff --git a/po/cy.po b/po/cy.po
d4bc1a2d 968index 644df82363f1..cd862feb50c0 100644
2b7dad92
JK
969--- a/po/cy.po
970+++ b/po/cy.po
d4bc1a2d
MB
971@@ -1167,8 +1167,8 @@ msgid "_Base on:"
972 msgstr "Ei _seilio ar:"
973
974 #: ../src/profile-preferences.glade.h:1
975-msgid "<b>Command</b>"
976-msgstr "<b>Gorchymyn</b>"
977+msgid "Command"
978+msgstr "Gorchymyn"
979
980 #: ../src/profile-preferences.glade.h:2
981 msgid "<b>Foreground and Background</b>"
982@@ -1448,8 +1448,8 @@ msgid "_Text color:"
2b7dad92
JK
983 msgstr "Lliw'r _testun:"
984
985 #: ../src/profile-preferences.glade.h:73
986-msgid "_Transparent background"
987-msgstr "Cefndir _tryloyw"
988+msgid "Transparent background"
989+msgstr "Cefndir tryloyw"
990
991 #: ../src/profile-preferences.glade.h:74
992 msgid "_Update login records when command is launched"
993diff --git a/po/da.po b/po/da.po
bb11d6bf 994index 65cfb20d9ad3..8c5c97c7465a 100644
2b7dad92
JK
995--- a/po/da.po
996+++ b/po/da.po
bb11d6bf
JK
997@@ -2325,3 +2325,14 @@ msgstr ""
998 msgid "C_lose Window"
999 msgstr "_Luk vindue"
d4bc1a2d 1000
d4bc1a2d
MB
1001+msgid "Title"
1002+msgstr "Titel"
bb11d6bf 1003+
d4bc1a2d
MB
1004+msgid "_Title:"
1005+msgstr "_Titel:"
bb11d6bf 1006+
d4bc1a2d
MB
1007+msgid "Set Title"
1008+msgstr "Sæt titel"
bb11d6bf 1009+
2b7dad92
JK
1010+msgid "Transparent background"
1011+msgstr "Gennemsigtig baggrund"
2b7dad92 1012diff --git a/po/de.po b/po/de.po
bb11d6bf 1013index 205f69111437..61b0214daf5b 100644
2b7dad92
JK
1014--- a/po/de.po
1015+++ b/po/de.po
bb11d6bf
JK
1016@@ -2342,3 +2342,15 @@ msgstr ""
1017 #: ../src/terminal-window.c:3210
1018 msgid "C_lose Window"
1019 msgstr "Fenster _schließen"
1020+
d4bc1a2d
MB
1021+msgid "Title"
1022+msgstr "Titel"
bb11d6bf 1023+
d4bc1a2d
MB
1024+msgid "_Title:"
1025+msgstr "_Titel:"
bb11d6bf 1026+
d4bc1a2d
MB
1027+msgid "Set Title"
1028+msgstr "Titel festlegen"
bb11d6bf 1029+
2b7dad92
JK
1030+msgid "Transparent background"
1031+msgstr "Transparenter Hintergrund"
2b7dad92 1032diff --git a/po/dz.po b/po/dz.po
d4bc1a2d 1033index d97e6102b850..a768fe4adc54 100644
2b7dad92
JK
1034--- a/po/dz.po
1035+++ b/po/dz.po
d4bc1a2d
MB
1036@@ -1255,8 +1255,8 @@ msgid "_Base on:"
1037 msgstr "གཞི་བཞག་སྟེ་:(_B)"
1038
1039 #: ../src/profile-preferences.glade.h:1
1040-msgid "<b>Command</b>"
1041-msgstr "<b>བརྡ་བཀོད་</b>"
1042+msgid "Command"
1043+msgstr "བརྡ་བཀོད་"
1044
1045 #: ../src/profile-preferences.glade.h:2
1046 #, fuzzy
2b7dad92
JK
1047@@ -1551,8 +1551,8 @@ msgid "_Text color:"
1048 msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
1049
1050 #: ../src/profile-preferences.glade.h:77
1051-msgid "_Transparent background"
1052-msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)"
1053+msgid "Transparent background"
1054+msgstr "དྭངས་གསལ་རྒྱབ་གཞི།"
1055
1056 #: ../src/profile-preferences.glade.h:78
1057 #, fuzzy
1058diff --git a/po/el.po b/po/el.po
bb11d6bf 1059index a32f5b1684f6..7fa98b45e6f5 100644
2b7dad92
JK
1060--- a/po/el.po
1061+++ b/po/el.po
bb11d6bf 1062@@ -2710,17 +2710,17 @@ msgstr "Κ_λείσιμο παραθύρου"
d4bc1a2d
MB
1063 #~ msgid "Default size:"
1064 #~ msgstr "Προεπιλεγμένο μέγεθος:"
1065
1066-#~ msgid "Title"
1067-#~ msgstr "Τίτλος"
1068+msgid "Title"
1069+msgstr "Τίτλος"
1070
1071-#~ msgid "_Title:"
1072-#~ msgstr "_Τίτλος:"
1073+msgid "_Title:"
1074+msgstr "_Τίτλος:"
1075
1076 #~ msgid "Title and Command"
1077 #~ msgstr "Τίτλος και εντολή"
1078
1079-#~ msgid "Set Title"
1080-#~ msgstr "Ορισμός τίτλου"
1081+msgid "Set Title"
1082+msgstr "Ορισμός τίτλου"
1083
1084 #~ msgid "Current Locale"
1085 #~ msgstr "Τρέχουσα τοπική ρύθμιση"
bb11d6bf 1086@@ -2758,3 +2758,6 @@ msgstr "Κ_λείσιμο παραθύρου"
2b7dad92
JK
1087
1088 #~ msgid "_Input Methods"
1089 #~ msgstr "_Μέθοδοι εισαγωγής"
1090+
1091+msgid "Transparent background"
1092+msgstr "Διάφανο παρασκήνιο"
1093diff --git a/po/en@shaw.po b/po/en@shaw.po
d4bc1a2d 1094index 82b2d53401b2..28f5dc02575b 100644
2b7dad92
JK
1095--- a/po/en@shaw.po
1096+++ b/po/en@shaw.po
d4bc1a2d
MB
1097@@ -1212,8 +1212,8 @@ msgid "_Base on:"
1098 msgstr "_𐑚𐑱𐑕 𐑪𐑯:"
1099
1100 #: ../src/profile-preferences.glade.h:1
1101-msgid "<b>Command</b>"
1102-msgstr "<b>𐑒𐑩𐑥𐑭𐑯𐑛</b>"
1103+msgid "Command"
1104+msgstr "𐑒𐑩𐑥𐑭𐑯𐑛"
1105
1106 #: ../src/profile-preferences.glade.h:2
1107 msgid "<b>Foreground, Background, Bold and Underline</b>"
1108@@ -1468,8 +1468,8 @@ msgid "_Text color:"
2b7dad92
JK
1109 msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
1110
1111 #: ../src/profile-preferences.glade.h:78
1112-msgid "_Transparent background"
1113-msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1114+msgid "Transparent background"
1115+msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1116
1117 #: ../src/profile-preferences.glade.h:79
1118 msgid "_Underline color:"
1119diff --git a/po/en_CA.po b/po/en_CA.po
bb11d6bf 1120index 6c9e0cd73d63..db4aa891dd45 100644
2b7dad92
JK
1121--- a/po/en_CA.po
1122+++ b/po/en_CA.po
d4bc1a2d
MB
1123@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
1124 msgstr "<b>Background</b>"
1125
1126 #: ../src/gnome-terminal.glade2.h:3
1127-msgid "<b>Command</b>"
1128-msgstr "<b>Command</b>"
1129+msgid "Command"
1130+msgstr "Command"
1131
1132 #: ../src/gnome-terminal.glade2.h:4
1133 msgid "<b>Compatibility</b>"
1134@@ -557,8 +557,8 @@ msgid "_Text color:"
2b7dad92
JK
1135 msgstr "_Text colour:"
1136
1137 #: ../src/gnome-terminal.glade2.h:86
1138-msgid "_Transparent background"
1139-msgstr "_Transparent background"
1140+msgid "Transparent background"
1141+msgstr "Transparent background"
1142
1143 #: ../src/gnome-terminal.glade2.h:87
1144 msgid "_Update login records when command is launched"
1145diff --git a/po/en_GB.po b/po/en_GB.po
bb11d6bf 1146index c9999e204f33..dfbff85bf907 100644
2b7dad92
JK
1147--- a/po/en_GB.po
1148+++ b/po/en_GB.po
bb11d6bf 1149@@ -2796,8 +2796,8 @@ msgstr "C_lose Window"
d4bc1a2d
MB
1150 #~ msgid "Default size:"
1151 #~ msgstr "Default size:"
1152
1153-#~ msgid "Title"
1154-#~ msgstr "Title"
1155+msgid "Title"
1156+msgstr "Title"
1157
1158 #~ msgid "When terminal commands set their o_wn titles:"
1159 #~ msgstr "When terminal commands set their o_wn titles:"
bb11d6bf
JK
1160@@ -2814,8 +2814,8 @@ msgstr "C_lose Window"
1161 #~ msgid "_Unlimited"
1162 #~ msgstr "_Unlimited"
d4bc1a2d
MB
1163
1164-#~ msgid "Set Title"
1165-#~ msgstr "Set Title"
1166+msgid "Set Title"
1167+msgstr "Set Title"
1168
bb11d6bf
JK
1169 #~ msgid "Switch to Tab 3"
1170 #~ msgstr "Switch to Tab 3"
1171@@ -2856,8 +2856,8 @@ msgstr "C_lose Window"
d4bc1a2d
MB
1172 #~ msgid "_Input Methods"
1173 #~ msgstr "_Input Methods"
1174
1175-#~ msgid "_Title:"
1176-#~ msgstr "_Title:"
1177+msgid "_Title:"
1178+msgstr "_Title:"
1179
1180 #~ msgid "Add or Remove Terminal Encodings"
1181 #~ msgstr "Add or Remove Terminal Encodings"
bb11d6bf 1182@@ -3552,8 +3552,8 @@ msgstr "C_lose Window"
2b7dad92
JK
1183 #~ msgid "Background image _scrolls"
1184 #~ msgstr "Background image _scrolls"
1185
1186-#~ msgid "_Transparent background"
1187-#~ msgstr "_Transparent background"
1188+msgid "Transparent background"
1189+msgstr "Transparent background"
1190
1191 #~ msgid "S_hade transparent or image background:"
1192 #~ msgstr "S_hade transparent or image background:"
d4bc1a2d 1193diff --git a/po/eo.po b/po/eo.po
bb11d6bf 1194index 567c08dc1da8..c59f57c6a8d5 100644
d4bc1a2d
MB
1195--- a/po/eo.po
1196+++ b/po/eo.po
1197@@ -2215,8 +2215,8 @@ msgstr "_Fermi la fenestron"
1198 #~ msgid "Close Window"
1199 #~ msgstr "Fermi la fenestron"
1200
1201-#~ msgid "Set Title"
1202-#~ msgstr "Agordi titolon"
1203+msgid "Set Title"
1204+msgstr "Agordi titolon"
1205
1206 #~ msgid "Switch to Tab 2"
1207 #~ msgstr "Ŝalti al langeto 2"
d4bc1a2d
MB
1208@@ -2299,8 +2299,8 @@ msgstr "_Fermi la fenestron"
1209 #~ msgid "_Input Methods"
1210 #~ msgstr "_Enigmetodoj"
1211
1212-#~ msgid "_Title:"
1213-#~ msgstr "_Titolo:"
1214+msgid "_Title:"
1215+msgstr "_Titolo:"
1216
1217 #~ msgid "On the left side"
1218 #~ msgstr "Maldekstre"
2b7dad92 1219diff --git a/po/es.po b/po/es.po
bb11d6bf 1220index 142347b3720a..9325d95de22f 100644
2b7dad92
JK
1221--- a/po/es.po
1222+++ b/po/es.po
bb11d6bf 1223@@ -2741,17 +2741,17 @@ msgstr "_Cerrar ventana"
d4bc1a2d
MB
1224 #~ msgid "Default size:"
1225 #~ msgstr "Tamaño predeterminado:"
1226
1227-#~ msgid "Title"
1228-#~ msgstr "Título"
1229+msgid "Title"
1230+msgstr "Título"
1231
1232-#~ msgid "_Title:"
1233-#~ msgstr "_Título:"
1234+msgid "_Title:"
1235+msgstr "_Título:"
1236
1237 #~ msgid "Title and Command"
1238 #~ msgstr "Título y comando"
1239
1240-#~ msgid "Set Title"
1241-#~ msgstr "Establecer título"
1242+msgid "Set Title"
1243+msgstr "Establecer título"
1244
1245 #~ msgid "Current Locale"
1246 #~ msgstr "Configuración regional actual"
bb11d6bf 1247@@ -3577,8 +3577,8 @@ msgstr "_Cerrar ventana"
2b7dad92
JK
1248 #~ msgid "_Solid color"
1249 #~ msgstr "Color _sólido"
1250
1251-#~ msgid "_Transparent background"
1252-#~ msgstr "Fondo _transparente"
1253+msgid "Transparent background"
1254+msgstr "Fondo transparente"
1255
1256 #~ msgid "No such profile \"%s\", using default profile\n"
1257 #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
1258diff --git a/po/et.po b/po/et.po
d4bc1a2d 1259index 4b1c2a7c67e4..770761168806 100644
2b7dad92
JK
1260--- a/po/et.po
1261+++ b/po/et.po
1262@@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
1263
1264 #~ msgid "Choose base profile"
1265 #~ msgstr "Vali põhiprofiil"
1266+
1267+msgid "Transparent background"
1268+msgstr "Läbipaistev taust"
1269diff --git a/po/eu.po b/po/eu.po
bb11d6bf 1270index f3aab7879a6f..543a121f6aac 100644
2b7dad92
JK
1271--- a/po/eu.po
1272+++ b/po/eu.po
bb11d6bf 1273@@ -2411,11 +2411,11 @@ msgstr "It_xi leihoa"
d4bc1a2d
MB
1274 #~ msgid "Default size:"
1275 #~ msgstr "Tamaina lehenetsia:"
1276
1277-#~ msgid "Title"
1278-#~ msgstr "Titulua"
1279+msgid "Title"
1280+msgstr "Titulua"
1281
1282-#~ msgid "_Title:"
1283-#~ msgstr "_Titulua:"
1284+msgid "_Title:"
1285+msgstr "_Titulua:"
1286
1287 #~ msgid "Title and Command"
1288 #~ msgstr "Titulua eta komandoa"
bb11d6bf 1289@@ -2423,8 +2423,8 @@ msgstr "It_xi leihoa"
d4bc1a2d
MB
1290 #~ msgid "_Unlimited"
1291 #~ msgstr "_Mugagabea"
1292
1293-#~ msgid "Set Title"
1294-#~ msgstr "Ezarri titulua"
1295+msgid "Set Title"
1296+msgstr "Ezarri titulua"
1297
1298 #~ msgid "Current Locale"
1299 #~ msgstr "Uneko hizkuntza-ezarpena"
bb11d6bf 1300@@ -3211,8 +3211,8 @@ msgstr "It_xi leihoa"
2b7dad92
JK
1301 #~ msgid "_Solid color"
1302 #~ msgstr "_Kolore solidoa"
1303
1304-#~ msgid "_Transparent background"
1305-#~ msgstr "_Atzeko plano gardena"
1306+msgid "Transparent background"
1307+msgstr "Atzeko plano gardena"
1308
1309 #~ msgid ""
1310 #~ "You already have a profile called “%s”. Do you want to create another "
1311diff --git a/po/fa.po b/po/fa.po
bb11d6bf 1312index 8b0ca26eebe5..6079d0c40a1d 100644
2b7dad92
JK
1313--- a/po/fa.po
1314+++ b/po/fa.po
bb11d6bf 1315@@ -2402,8 +2402,8 @@ msgstr "_بستن پنجره"
d4bc1a2d
MB
1316 #~ msgid "Use custom default terminal si_ze"
1317 #~ msgstr "استفاده از اندازه‌ی _سفارشی پایانه‌ی پیش‌فرض"
1318
1319-#~ msgid "Title"
1320-#~ msgstr "عنوان"
1321+msgid "Title"
1322+msgstr "عنوان"
1323
1324 #~ msgid "When terminal commands set their o_wn titles:"
1325 #~ msgstr "وقتی که فرمان‌های پایانه عنوان‌های _خودشان را تنظیم می‌کنند:"
bb11d6bf 1326@@ -2426,8 +2426,8 @@ msgstr "_بستن پنجره"
d4bc1a2d
MB
1327 #~ msgid "Close Window"
1328 #~ msgstr "بستن پنجره"
1329
1330-#~ msgid "Set Title"
1331-#~ msgstr "تنظیم عنوان"
1332+msgid "Set Title"
1333+msgstr "تنظیم عنوان"
1334
1335 #~ msgid "Switch to Tab 2"
1336 #~ msgstr "تعویض به زبانه‌ی ۲"
bb11d6bf 1337@@ -2486,5 +2486,8 @@ msgstr "_بستن پنجره"
d4bc1a2d
MB
1338 #~ msgid "_Input Methods"
1339 #~ msgstr "روش‌های _ورودی"
2b7dad92 1340
d4bc1a2d
MB
1341-#~ msgid "_Title:"
1342-#~ msgstr "_عنوان:"
1343+msgid "_Title:"
1344+msgstr "_عنوان:"
2b7dad92
JK
1345+
1346+msgid "Transparent background"
1347+msgstr "پس‌زمینه‌ی شفاف"
1348diff --git a/po/fi.po b/po/fi.po
bb11d6bf 1349index e284b406f040..6e7f402af7bd 100644
2b7dad92
JK
1350--- a/po/fi.po
1351+++ b/po/fi.po
bb11d6bf 1352@@ -2589,9 +2589,21 @@ msgstr "_Sulje ikkuna"
2b7dad92
JK
1353 #~ msgid "_Update login records when command is launched"
1354 #~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
1355
1356+msgid "Transparent background"
1357+msgstr "Läpinäkyvä tausta"
1358+
1359 #~| msgid "Error parsing command: %s"
1360 #~ msgid "Missing command"
1361 #~ msgstr "Puuttuva komento"
d4bc1a2d
MB
1362
1363 #~ msgid "Whether to use a dark theme variant"
1364 #~ msgstr "Käytetäänkö teeman tummaan muunnelmaa"
1365+
1366+msgid "Title"
1367+msgstr "Otsikko"
1368+
1369+msgid "_Title:"
1370+msgstr "_Otsikko:"
1371+
1372+msgid "Set Title"
1373+msgstr "Aseta otsikko"
2b7dad92 1374diff --git a/po/fr.po b/po/fr.po
bb11d6bf 1375index 87a8e0ff46d4..2eacb4584f32 100644
2b7dad92
JK
1376--- a/po/fr.po
1377+++ b/po/fr.po
bb11d6bf 1378@@ -2591,3 +2591,15 @@ msgstr "Fermer _la fenêtre"
2b7dad92
JK
1379
1380 #~ msgid "_Same as text color"
1381 #~ msgstr "_Même couleur que le texte"
1382+
1383+msgid "Transparent background"
1384+msgstr "Arrière-plan transparent"
d4bc1a2d
MB
1385+
1386+msgid "Title"
1387+msgstr "Titre"
1388+
1389+msgid "_Title:"
1390+msgstr "_Titre :"
1391+
1392+msgid "Set Title"
1393+msgstr "Définir le titre"
2b7dad92 1394diff --git a/po/fur.po b/po/fur.po
bb11d6bf 1395index 3f5429cfecd8..e637a6c0dc5f 100644
2b7dad92
JK
1396--- a/po/fur.po
1397+++ b/po/fur.po
bb11d6bf 1398@@ -454,6 +454,10 @@ msgstr ""
2b7dad92
JK
1399 msgid "Which encoding to use"
1400 msgstr "Codifiche di doprâ"
1401
1402+#: ../src/gnome-terminal.glade2.h:86
1403+msgid "Transparent background"
1404+msgstr "Fondâl trasparent"
1405+
bb11d6bf 1406 #: ../src/org.gnome.Terminal.gschema.xml.h:68
2b7dad92
JK
1407 msgid ""
1408 "Whether ambiguous-width characters are narrow or wide when using UTF-8 "
bb11d6bf
JK
1409@@ -3371,6 +3375,9 @@ msgstr "_Siere barcon"
1410 #~ msgid "The text you clicked on doesn't seem to be a valid OTP challenge."
1411 #~ msgstr "Il test fracât nol samee jessi un OTP challenge."
d4bc1a2d 1412
d4bc1a2d
MB
1413+msgid "Set Title"
1414+msgstr "Imposte titul"
bb11d6bf
JK
1415+
1416 #~ msgid "Switch to Tab 3"
1417 #~ msgstr "Passe a la schede 3"
d4bc1a2d 1418
bb11d6bf 1419@@ -3426,8 +3433,8 @@ msgstr "_Siere barcon"
d4bc1a2d
MB
1420 #~ msgid "_Input Methods"
1421 #~ msgstr "_Cemût inserî test"
1422
1423-#~ msgid "_Title:"
1424-#~ msgstr "_Titul:"
1425+msgid "_Title:"
1426+msgstr "_Titul:"
1427
1428 #~ msgid ""
1429 #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
2b7dad92 1430diff --git a/po/ga.po b/po/ga.po
d4bc1a2d 1431index 93d5fa9d1481..feb87dce3d6b 100644
2b7dad92
JK
1432--- a/po/ga.po
1433+++ b/po/ga.po
1434@@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
1435 #: ../src/terminal-window.c:3582
1436 msgid "C_lose Terminal"
1437 msgstr "_Dún Teirminéal"
1438+
1439+msgid "Transparent background"
1440+msgstr "Cúlra trédhearcach"
1441diff --git a/po/gl.po b/po/gl.po
bb11d6bf 1442index 4ae0f6a0935c..fa643dc89659 100644
2b7dad92
JK
1443--- a/po/gl.po
1444+++ b/po/gl.po
bb11d6bf 1445@@ -2678,17 +2678,17 @@ msgstr "P_echar a xanela"
d4bc1a2d
MB
1446 #~ msgid "Default size:"
1447 #~ msgstr "Tamaño predeterminado:"
1448
1449-#~ msgid "Title"
1450-#~ msgstr "Título"
1451+msgid "Title"
1452+msgstr "Título"
1453
1454-#~ msgid "_Title:"
1455-#~ msgstr "_Título:"
1456+msgid "_Title:"
1457+msgstr "_Título:"
1458
1459 #~ msgid "Title and Command"
1460 #~ msgstr "Título e orde"
1461
1462-#~ msgid "Set Title"
1463-#~ msgstr "Definir o título"
1464+msgid "Set Title"
1465+msgstr "Definir o título"
1466
1467 #~ msgid "Current Locale"
1468 #~ msgstr "Configuración rexional actual"
bb11d6bf 1469@@ -3502,8 +3502,8 @@ msgstr "P_echar a xanela"
2b7dad92
JK
1470 #~ msgid "Background image _scrolls"
1471 #~ msgstr "A imaxe de fondo _desprázase"
1472
1473-#~ msgid "_Transparent background"
1474-#~ msgstr "Fondo _transparente"
1475+msgid "Transparent background"
1476+msgstr "Fondo transparente"
1477
1478 #~ msgid "S_hade transparent or image background:"
1479 #~ msgstr "_Sombra transparente ou imaxe de fondo:"
1480diff --git a/po/gu.po b/po/gu.po
bb11d6bf 1481index 76b459cf8dc5..485beeac98b7 100644
2b7dad92
JK
1482--- a/po/gu.po
1483+++ b/po/gu.po
d4bc1a2d
MB
1484@@ -2155,8 +2155,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1485 #~ msgid "Default size:"
1486 #~ msgstr "મૂળભૂત માપ:"
1487
1488-#~ msgid "Title"
1489-#~ msgstr "શીર્ષક"
1490+msgid "Title"
1491+msgstr "શીર્ષક"
1492
1493 #~ msgid "When terminal commands set their o_wn titles:"
1494 #~ msgstr "જ્યારે આદેશો તેમના પોતાના શીર્ષકો સુયોજીત કરે (_w):"
1495@@ -2176,8 +2176,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1496 #~ msgid "Close Window"
1497 #~ msgstr "વિન્ડો બંધ કરો"
1498
1499-#~ msgid "Set Title"
1500-#~ msgstr "શીર્ષકની ગોઠવણી કરો"
1501+msgid "Set Title"
1502+msgstr "શીર્ષકની ગોઠવણી કરો"
1503
1504 #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
1505 #~ msgstr "ટુંકાણ કી “%s“ એ પહેલાથી ક્રિયા “%s“ સાથે બંધાયેલી છે"
d4bc1a2d
MB
1506@@ -2203,8 +2203,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1507 #~ msgid "_Input Methods"
1508 #~ msgstr "ઈનપુટ માટેની પધ્ધિતિઓ (_I)"
1509
1510-#~ msgid "_Title:"
1511-#~ msgstr "શીર્ષક (_T):"
1512+msgid "_Title:"
1513+msgstr "શીર્ષક (_T):"
1514
1515 #~ msgid "Keyboard shortcut to switch to tab 1"
1516 #~ msgstr "ટૅબ ૧ પર જવા માટે કીબોર્ડનું ટુંકાણ"
2b7dad92
JK
1517@@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1518 #~ msgid "_Solid color"
1519 #~ msgstr "ઘટ્ટ રંગ (_S)"
1520
1521-#~ msgid "_Transparent background"
1522-#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)"
1523+msgid "Transparent background"
1524+msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ"
1525
1526 #~ msgid "No such profile \"%s\", using default profile\n"
1527 #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
1528diff --git a/po/he.po b/po/he.po
bb11d6bf 1529index 57cb2d0d110f..efe8fa100074 100644
2b7dad92
JK
1530--- a/po/he.po
1531+++ b/po/he.po
bb11d6bf 1532@@ -2333,17 +2333,17 @@ msgstr "סגירת ה_חלון"
d4bc1a2d
MB
1533 #~ msgid "Default size:"
1534 #~ msgstr "גודל בררת מחדל:"
1535
1536-#~ msgid "Title"
1537-#~ msgstr "כותרת"
1538+msgid "Title"
1539+msgstr "כותרת"
1540
1541-#~ msgid "_Title:"
1542-#~ msgstr "_כותרת:"
1543+msgid "_Title:"
1544+msgstr "_כותרת:"
1545
1546 #~ msgid "Title and Command"
1547 #~ msgstr "כותרת ופקודה"
1548
1549-#~ msgid "Set Title"
1550-#~ msgstr "הגדרת כותרת"
1551+msgid "Set Title"
1552+msgstr "הגדרת כותרת"
1553
1554 #~ msgid "Current Locale"
1555 #~ msgstr "השפה הנוכחית"
d4bc1a2d 1556@@ -3194,8 +3194,8 @@ msgstr "סגירת ה_חלון"
2b7dad92
JK
1557 #~ msgid "_Solid color"
1558 #~ msgstr "צבע _אחיד"
1559
1560-#~ msgid "_Transparent background"
1561-#~ msgstr "רקע _שקוף"
1562+msgid "Transparent background"
1563+msgstr "רקע שקוף"
1564
1565 #~ msgid "No such profile \"%s\", using default profile\n"
1566 #~ msgstr "No such profile \"%s\", using default profile\n"
1567diff --git a/po/hi.po b/po/hi.po
bb11d6bf 1568index 2d7dc5b14008..8d3d0529df61 100644
2b7dad92
JK
1569--- a/po/hi.po
1570+++ b/po/hi.po
d4bc1a2d
MB
1571@@ -2267,9 +2267,8 @@ msgstr "विंडो बंद करें (_l)"
1572 #~ msgid "Use custom default terminal si_ze"
1573 #~ msgstr "कस्टम डिफ़ॉल्ट टर्मिनल आकार का उपयोग करें (_z)"
1574
1575-#~| msgid "_Title:"
1576-#~ msgid "Title"
1577-#~ msgstr "शीर्षक"
1578+msgid "Title"
1579+msgstr "शीर्षक"
1580
1581 #~ msgid "When terminal commands set their o_wn titles:"
1582 #~ msgstr "जब टर्मिनल कमांड उनका अपना शीर्षक सेट करता है (_w):"
1583@@ -2289,8 +2288,8 @@ msgstr "विंडो बंद करें (_l)"
1584 #~ msgid "Close Window"
1585 #~ msgstr "विंडो बंद करें"
1586
1587-#~ msgid "Set Title"
1588-#~ msgstr "शीर्षक नियत करें"
1589+msgid "Set Title"
1590+msgstr "शीर्षक नियत करें"
1591
1592 #~ msgid "Switch to Tab 2"
1593 #~ msgstr "टैब 2 पर जाएँ"
d4bc1a2d
MB
1594@@ -2349,8 +2348,8 @@ msgstr "विंडो बंद करें (_l)"
1595 #~ msgid "_Input Methods"
1596 #~ msgstr "इनपुट विधियाँ (_I)"
1597
1598-#~ msgid "_Title:"
1599-#~ msgstr "शीर्षक (_T):"
1600+msgid "_Title:"
1601+msgstr "शीर्षक (_T):"
1602
1603 #~ msgid "Disable connection to session manager"
1604 #~ msgstr "सत्र प्रबंधक में कनेक्शन निष्क्रिय करें"
1605@@ -2979,8 +2978,8 @@ msgstr "विंडो बंद करें (_l)"
2b7dad92
JK
1606 #~ msgid "_Background image"
1607 #~ msgstr "पृष्ठभूमि छवि (_B)"
1608
1609-#~ msgid "_Transparent background"
1610-#~ msgstr "पारदर्शी पृष्ठभूमि (_T)"
1611+msgid "Transparent background"
1612+msgstr "पारदर्शी पृष्ठभूमि"
1613
1614 #~ msgid "S/Key Challenge Response"
1615 #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
1616diff --git a/po/hr.po b/po/hr.po
bb11d6bf 1617index aec2eaa8bac1..207b5c774b32 100644
2b7dad92
JK
1618--- a/po/hr.po
1619+++ b/po/hr.po
bb11d6bf
JK
1620@@ -2565,3 +2565,13 @@ msgstr "_Zatvori prozor"
1621
1622 #~ msgid "Use transparency from system theme"
1623 #~ msgstr "Koristi prozirnost iz teme sustava"
d4bc1a2d
MB
1624+
1625+#: ../src/profile-preferences.glade.h:69
2b7dad92
JK
1626+msgid "Transparent background"
1627+msgstr "Prozirna pozadina"
d4bc1a2d
MB
1628+
1629+msgid "_Title:"
1630+msgstr "_Naslov:"
1631+
1632+msgid "Set Title"
1633+msgstr "Postavi naslov"
2b7dad92 1634diff --git a/po/hu.po b/po/hu.po
bb11d6bf 1635index 401ae619d5d2..b6e96230111b 100644
2b7dad92
JK
1636--- a/po/hu.po
1637+++ b/po/hu.po
bb11d6bf 1638@@ -2370,3 +2370,15 @@ msgstr "_Ablak bezárása"
d4bc1a2d 1639
bb11d6bf
JK
1640 #~ msgid "_Profile Preferences"
1641 #~ msgstr "_Profil beállításai"
1642+
d4bc1a2d
MB
1643+msgid "Title"
1644+msgstr "Cím"
bb11d6bf 1645+
d4bc1a2d
MB
1646+msgid "_Title:"
1647+msgstr "_Cím:"
bb11d6bf 1648+
d4bc1a2d
MB
1649+msgid "Set Title"
1650+msgstr "Cím beállítása"
2b7dad92
JK
1651+
1652+msgid "Transparent background"
1653+msgstr "Áttetsző háttér"
1654diff --git a/po/hy.po b/po/hy.po
d4bc1a2d 1655index aaf2d9b292da..4d466f164420 100644
2b7dad92
JK
1656--- a/po/hy.po
1657+++ b/po/hy.po
d4bc1a2d
MB
1658@@ -757,8 +757,8 @@ msgid "_Base on:"
1659 msgstr ""
1660
1661 #: ../src/profile-preferences.glade.h:1
1662-msgid "<b>Command</b>"
1663-msgstr "<b>Հրաման</b>"
1664+msgid "Command"
1665+msgstr "Հրաման"
1666
1667 #: ../src/profile-preferences.glade.h:2
1668 msgid "<b>Foreground and Background</b>"
1669@@ -1012,8 +1012,8 @@ msgid "_Text color:"
2b7dad92
JK
1670 msgstr "_Տեքստի գույնը՝"
1671
1672 #: ../src/profile-preferences.glade.h:73
1673-msgid "_Transparent background"
1674-msgstr "_Թափանցիկ նախադրյալ"
1675+msgid "Transparent background"
1676+msgstr "Թափանցիկ նախադրյալ"
1677
1678 #: ../src/profile-preferences.glade.h:74
1679 msgid "_Update login records when command is launched"
1680diff --git a/po/id.po b/po/id.po
bb11d6bf 1681index 9198218c5aaa..9f2fbd0c9d4c 100644
2b7dad92
JK
1682--- a/po/id.po
1683+++ b/po/id.po
bb11d6bf
JK
1684@@ -2548,3 +2548,15 @@ msgstr "Tutup Jende_la"
1685
1686 #~ msgid "_Add or Remove…"
1687 #~ msgstr "T_ambah atau Hapus…"
2b7dad92
JK
1688+
1689+msgid "Transparent background"
1690+msgstr "Latar belakang transparan"
d4bc1a2d
MB
1691+
1692+msgid "Title"
1693+msgstr "Judul"
1694+
1695+msgid "_Title:"
1696+msgstr "_Judul:"
1697+
1698+msgid "Set Title"
1699+msgstr "Atur Judul"
2b7dad92 1700diff --git a/po/it.po b/po/it.po
bb11d6bf 1701index 632667207c17..2cd93716f4f9 100644
2b7dad92
JK
1702--- a/po/it.po
1703+++ b/po/it.po
bb11d6bf
JK
1704@@ -2348,3 +2348,15 @@ msgstr ""
1705 #: ../src/terminal-window.c:3354
2b7dad92
JK
1706 msgid "C_lose Window"
1707 msgstr "Chiudi _finestra"
1708+
2b7dad92
JK
1709+msgid "Transparent background"
1710+msgstr "Sfondo trasparente"
d4bc1a2d
MB
1711+
1712+msgid "Title"
1713+msgstr "Titolo"
1714+
1715+msgid "_Title:"
1716+msgstr "_Titolo:"
1717+
1718+msgid "Set Title"
1719+msgstr "Imposta titolo"
2b7dad92 1720diff --git a/po/ja.po b/po/ja.po
bb11d6bf 1721index 9a18d3db624f..bbfd18e6ab24 100644
2b7dad92
JK
1722--- a/po/ja.po
1723+++ b/po/ja.po
bb11d6bf
JK
1724@@ -2096,3 +2096,15 @@ msgstr "この端末には未だ実行中のプロセスが存在しています
1725 #: ../src/terminal-window.c:3953
1726 msgid "C_lose Window"
1727 msgstr "ウィンドウを閉じる(_L)"
2b7dad92
JK
1728+
1729+msgid "Transparent background"
1730+msgstr "透過な画像にする"
d4bc1a2d
MB
1731+
1732+msgid "Title"
1733+msgstr "タイトル"
1734+
1735+msgid "_Title:"
1736+msgstr "タイトル(_T):"
1737+
1738+msgid "Set Title"
1739+msgstr "タイトルを設定する"
2b7dad92 1740diff --git a/po/ka.po b/po/ka.po
bb11d6bf 1741index 2a0bc91fad40..c289e30eb4fa 100644
2b7dad92
JK
1742--- a/po/ka.po
1743+++ b/po/ka.po
d4bc1a2d
MB
1744@@ -219,8 +219,8 @@ msgid "<b>Background</b>"
1745 msgstr "b>ფონი</b>"
1746
1747 #: ../src/gnome-terminal.glade2.h:3
1748-msgid "<b>Command</b>"
1749-msgstr "<b>ბრძანება</b>"
1750+msgid "Command"
1751+msgstr "ბრძანება"
1752
1753 #: ../src/gnome-terminal.glade2.h:4
1754 msgid "<b>Compatibility</b>"
1755@@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერი:"
2b7dad92
JK
1756
1757 #: ../src/gnome-terminal.glade2.h:86
1758 #, fuzzy
1759-msgid "_Transparent background"
1760+msgid "Transparent background"
1761 msgstr "გამჭირვალე"
1762
1763 #: ../src/gnome-terminal.glade2.h:87
1764diff --git a/po/kk.po b/po/kk.po
bb11d6bf 1765index 2811b7ec6239..d4239e5d12c5 100644
2b7dad92
JK
1766--- a/po/kk.po
1767+++ b/po/kk.po
bb11d6bf 1768@@ -2547,3 +2547,15 @@ msgstr "Терезені жа_бу"
2b7dad92
JK
1769
1770 #~ msgid "Be quiet"
1771 #~ msgstr "Тыныш болу"
1772+
1773+msgid "Transparent background"
1774+msgstr "Мөлдір фон"
d4bc1a2d
MB
1775+
1776+msgid "Title"
1777+msgstr "Атауы"
1778+
1779+msgid "_Title:"
1780+msgstr "А_тауы:"
1781+
1782+msgid "Set Title"
1783+msgstr "Атауын орнату"
d4bc1a2d
MB
1784diff --git a/po/km.po b/po/km.po
1785index 352897d2963b..b6db9394a307 100644
1786--- a/po/km.po
1787+++ b/po/km.po
1788@@ -2909,8 +2909,8 @@ msgstr "បិទ​បង្អួច"
1789 #~ msgid "Background image _scrolls"
1790 #~ msgstr "រមូរ​រូបភាព​ផ្ទៃខាងក្រោយ"
1791
1792-#~ msgid "_Transparent background"
1793-#~ msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
1794+msgid "Transparent background"
1795+msgstr "ផ្ទៃខាងក្រោយ​ថ្លា"
1796
1797 #~ msgid "S_hade transparent or image background:"
1798 #~ msgstr "ដាក់​ស្រមោល​ផ្ទៃខាងក្រោយ​ថ្លា ឬ​ផ្ទៃខាងក្រោយ​​រូបភាព ៖"
2b7dad92 1799diff --git a/po/kn.po b/po/kn.po
bb11d6bf 1800index c887f88a2c87..0fc1c3139258 100644
2b7dad92
JK
1801--- a/po/kn.po
1802+++ b/po/kn.po
d4bc1a2d
MB
1803@@ -2261,8 +2261,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1804 #~ msgid "Use custom default terminal si_ze"
1805 #~ msgstr "ಅಗತ್ಯಾನುಗುಣ ಆದೇಶತೆರೆ ಗಾತ್ರವನ್ನು ಬಳಸು (_z)"
1806
1807-#~ msgid "Title"
1808-#~ msgstr "ಶೀರ್ಷಿಕೆ"
1809+msgid "Title"
1810+msgstr "ಶೀರ್ಷಿಕೆ"
1811
1812 #~ msgid "When terminal commands set their o_wn titles:"
1813 #~ msgstr "ಆದೇಶಗಳು ತಮ್ಮದೆ ಆದ ಹೆಸರಗಳನ್ನು ಇರಿಸಿಕೊಂಡಾಗ (_w):"
1814@@ -2282,8 +2282,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1815 #~ msgid "Close Window"
1816 #~ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು"
2b7dad92 1817
d4bc1a2d
MB
1818-#~ msgid "Set Title"
1819-#~ msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
1820+msgid "Set Title"
1821+msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು"
1822
1823 #~ msgid "Switch to Tab 2"
1824 #~ msgstr "2 ನೆ ಟ್ಯಾಬ್‌ಗೆ ಬದಲಾಯಿಸಿ"
d4bc1a2d
MB
1825@@ -2342,5 +2342,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1826 #~ msgid "_Input Methods"
1827 #~ msgstr "ಇನ್‌ಪುಟ್ ಕ್ರಮಗಳು (_I)"
1828
1829-#~ msgid "_Title:"
1830-#~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
1831+msgid "_Title:"
1832+msgstr "ಶೀರ್ಷಿಕೆ(_T):"
2b7dad92
JK
1833+
1834+msgid "Transparent background"
1835+msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
1836diff --git a/po/ko.po b/po/ko.po
bb11d6bf 1837index d1be8c3fdab8..02de5aa11be1 100644
2b7dad92
JK
1838--- a/po/ko.po
1839+++ b/po/ko.po
bb11d6bf 1840@@ -2292,3 +2292,15 @@ msgstr "창 닫기(_L)"
2b7dad92 1841
bb11d6bf
JK
1842 #~ msgid "Verbose output"
1843 #~ msgstr "많이 출력"
2b7dad92
JK
1844+
1845+msgid "Transparent background"
1846+msgstr "투명한 배경"
d4bc1a2d
MB
1847+
1848+msgid "Title"
1849+msgstr "제목"
1850+
1851+msgid "_Title:"
1852+msgstr "제목(_T):"
1853+
1854+msgid "Set Title"
1855+msgstr "제목 설정"
2b7dad92 1856diff --git a/po/ku.po b/po/ku.po
d4bc1a2d 1857index bc2bb7f03de4..d2a83a007097 100644
2b7dad92
JK
1858--- a/po/ku.po
1859+++ b/po/ku.po
d4bc1a2d
MB
1860@@ -223,8 +223,8 @@ msgid "<b>Background</b>"
1861 msgstr "<b>Zemîn</b>"
1862
1863 #: ../src/gnome-terminal.glade2.h:3
1864-msgid "<b>Command</b>"
1865-msgstr "<b>Ferman</b>"
1866+msgid "Command"
1867+msgstr "Ferman"
1868
1869 #: ../src/gnome-terminal.glade2.h:4
1870 msgid "<b>Compatibility</b>"
1871@@ -558,8 +558,8 @@ msgid "_Text color:"
2b7dad92
JK
1872 msgstr "Rengê _nivîsê:"
1873
1874 #: ../src/gnome-terminal.glade2.h:86
1875-msgid "_Transparent background"
1876-msgstr "Rûerdê _transparan"
1877+msgid "Transparent background"
1878+msgstr "Rûerdê transparan"
1879
1880 #: ../src/gnome-terminal.glade2.h:87
1881 msgid "_Update login records when command is launched"
1882diff --git a/po/lt.po b/po/lt.po
bb11d6bf 1883index e8b7622e5d46..c6fe38021b6a 100644
2b7dad92
JK
1884--- a/po/lt.po
1885+++ b/po/lt.po
bb11d6bf 1886@@ -2571,3 +2571,15 @@ msgstr "_Užverti langą"
2b7dad92
JK
1887
1888 #~ msgid "Whether to use a dark theme variant"
1889 #~ msgstr "Ar naudoti tamsų temos variantą"
1890+
1891+msgid "Transparent background"
1892+msgstr "Permatomas fonas"
d4bc1a2d
MB
1893+
1894+msgid "Title"
1895+msgstr "Pavadinimas"
1896+
1897+msgid "_Title:"
1898+msgstr "_Pavadinimas:"
1899+
1900+msgid "Set Title"
1901+msgstr "Nustatyti pavadinimą"
2b7dad92 1902diff --git a/po/lv.po b/po/lv.po
bb11d6bf 1903index 47d9e75b1ee8..a8dad3bc0d6b 100644
2b7dad92
JK
1904--- a/po/lv.po
1905+++ b/po/lv.po
bb11d6bf 1906@@ -2578,3 +2578,19 @@ msgstr "Aizvērt _logu"
d4bc1a2d 1907
bb11d6bf
JK
1908 #~ msgid "_Add or Remove…"
1909 #~ msgstr "_Pievienot vai izņemt…"
1910+
2b7dad92
JK
1911+msgid "Transparent background"
1912+msgstr "Caurspīdīgs fons"
d4bc1a2d
MB
1913+
1914+msgid "Title"
1915+msgstr "Nosaukums"
1916+
1917+msgid "_Title:"
1918+msgstr "_Nosaukums:"
1919+
1920+msgctxt "title"
1921+msgid "'Terminal'"
1922+msgstr "“Terminālis”"
1923+
1924+msgid "Set Title"
1925+msgstr "Iestatīt nosaukumu"
2b7dad92 1926diff --git a/po/mai.po b/po/mai.po
d4bc1a2d 1927index 715d0b9e1c82..0f31634e4f2e 100644
2b7dad92
JK
1928--- a/po/mai.po
1929+++ b/po/mai.po
d4bc1a2d
MB
1930@@ -1044,8 +1044,8 @@ msgid "_Base on:"
1931 msgstr "आधार पर: (_B)"
1932
1933 #: ../src/profile-preferences.glade.h:1
1934-msgid "<b>Command</b>"
1935-msgstr "<b>कमांड</b>"
1936+msgid "Command"
1937+msgstr "कमांड"
1938
1939 #: ../src/profile-preferences.glade.h:2
1940 msgid "<b>Foreground and Background</b>"
1941@@ -1291,8 +1291,8 @@ msgid "_Text color:"
2b7dad92
JK
1942 msgstr "पाठ रँग (_T):"
1943
1944 #: ../src/profile-preferences.glade.h:69
1945-msgid "_Transparent background"
1946-msgstr "पारदर्शी पृष्ठभूमि (_T)"
1947+msgid "Transparent background"
1948+msgstr "पारदर्शी पृष्ठभूमि"
1949
1950 #: ../src/profile-preferences.glade.h:70
1951 msgid "_Update login records when command is launched"
1952diff --git a/po/mg.po b/po/mg.po
bb11d6bf 1953index 99fa0f5e4059..a216602569af 100644
2b7dad92
JK
1954--- a/po/mg.po
1955+++ b/po/mg.po
d4bc1a2d
MB
1956@@ -220,8 +220,8 @@ msgid "<b>Background</b>"
1957 msgstr "<b>Afara</b>"
1958
1959 #: ../src/gnome-terminal.glade2.h:3
1960-msgid "<b>Command</b>"
1961-msgstr "<b>Baiko</b>"
1962+msgid "Command"
1963+msgstr "Baiko"
1964
1965 #: ../src/gnome-terminal.glade2.h:4
1966 msgid "<b>Compatibility</b>"
1967@@ -567,8 +567,8 @@ msgid "_Text color:"
2b7dad92
JK
1968 msgstr "Lokon'ny _soratra:"
1969
1970 #: ../src/gnome-terminal.glade2.h:86
1971-msgid "_Transparent background"
1972-msgstr "_Afara tatera-pahazavana"
1973+msgid "Transparent background"
1974+msgstr "Afara tatera-pahazavana"
1975
1976 #: ../src/gnome-terminal.glade2.h:87
1977 msgid "_Update login records when command is launched"
1978diff --git a/po/mk.po b/po/mk.po
d4bc1a2d 1979index 4fe43192fe57..a5a874b49c59 100644
2b7dad92
JK
1980--- a/po/mk.po
1981+++ b/po/mk.po
d4bc1a2d
MB
1982@@ -863,8 +863,8 @@ msgid "_Base on:"
1983 msgstr "_Базирано на:"
1984
1985 #: ../src/profile-preferences.glade.h:1
1986-msgid "<b>Command</b>"
1987-msgstr "<b>Команда</b>"
1988+msgid "Command"
1989+msgstr "Команда"
1990
1991 #: ../src/profile-preferences.glade.h:2
1992 #| msgid "<b>Foreground and Background</b>"
1993@@ -1167,8 +1167,8 @@ msgid "_Text color:"
2b7dad92
JK
1994 msgstr "_Боја на текстот:"
1995
1996 #: ../src/profile-preferences.glade.h:77
1997-msgid "_Transparent background"
1998-msgstr "_Транспарентна позадина"
1999+msgid "Transparent background"
2000+msgstr "Транспарентна позадина"
2001
2002 #: ../src/profile-preferences.glade.h:78
2003 #| msgid "_Text color:"
2004diff --git a/po/ml.po b/po/ml.po
bb11d6bf 2005index a23f4cc4f1ae..49caa9efe94f 100644
2b7dad92
JK
2006--- a/po/ml.po
2007+++ b/po/ml.po
bb11d6bf 2008@@ -2461,3 +2461,6 @@ msgstr "ജാലകം അടയ്ക്കുക (_l)"
2b7dad92 2009
bb11d6bf
JK
2010 #~ msgid "_Unlimited"
2011 #~ msgstr "പരിധിയില്ല (_U)"
2012+
2b7dad92
JK
2013+msgid "Transparent background"
2014+msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
2b7dad92 2015diff --git a/po/mn.po b/po/mn.po
bb11d6bf 2016index 2f9d86072d1c..09c4437d10f9 100644
2b7dad92
JK
2017--- a/po/mn.po
2018+++ b/po/mn.po
d4bc1a2d
MB
2019@@ -217,8 +217,8 @@ msgid "<b>Background</b>"
2020 msgstr "<b>Дэвсгэр</b>"
2021
2022 #: ../src/gnome-terminal.glade2.h:2
2023-msgid "<b>Command</b>"
2024-msgstr "<b>Тушаал</b>"
2025+msgid "Command"
2026+msgstr "Тушаал"
2027
2028 #: ../src/gnome-terminal.glade2.h:3
2029 msgid "<b>Compatibility</b>"
2030@@ -618,8 +618,8 @@ msgid "_Text color:"
2b7dad92
JK
2031 msgstr "_Текстийн өнгө:"
2032
2033 #: ../src/gnome-terminal.glade2.h:102
2034-msgid "_Transparent background"
2035-msgstr "_Тунгалаг дэвсгэр"
2036+msgid "Transparent background"
2037+msgstr "Тунгалаг дэвсгэр"
2038
2039 #: ../src/gnome-terminal.glade2.h:103
2040 msgid "_Update login records when command is launched"
2041diff --git a/po/mr.po b/po/mr.po
bb11d6bf 2042index 61997dafbd03..9c7dc77abd22 100644
2b7dad92
JK
2043--- a/po/mr.po
2044+++ b/po/mr.po
d4bc1a2d
MB
2045@@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा (_l)"
2046 #~ msgid "Default size:"
2047 #~ msgstr "पूर्वनिर्धारीत आकार:"
2048
2049-#~ msgid "Title"
2050-#~ msgstr "शीर्षक"
2051+msgid "Title"
2052+msgstr "शीर्षक"
2053
2054 #~ msgid "When terminal commands set their o_wn titles:"
2055 #~ msgstr "जेव्हा टर्मिनल आदेश स्वतःचे शिर्षक निश्चित करते (_w):"
2056@@ -2240,8 +2240,8 @@ msgstr "चौकट बंद करा (_l)"
2057 #~ msgid "Close Window"
2058 #~ msgstr "चौकट बंद करा"
2059
2060-#~ msgid "Set Title"
2061-#~ msgstr "शिर्षक निश्चित करा"
2062+msgid "Set Title"
2063+msgstr "शिर्षक निश्चित करा"
2064
2065 #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
2066 #~ msgstr "“%s” ही शार्टकट कि “%s” या कृतीशी संलग्न आहे"
d4bc1a2d
MB
2067@@ -2267,8 +2267,8 @@ msgstr "चौकट बंद करा (_l)"
2068 #~ msgid "_Input Methods"
2069 #~ msgstr "इनपुट पध्दती (_I)"
2070
2071-#~ msgid "_Title:"
2072-#~ msgstr "शिर्षक (_T):"
2073+msgid "_Title:"
2074+msgstr "शिर्षक (_T):"
2075
2076 #~ msgid "Keyboard shortcut to switch to tab 1"
2077 #~ msgstr "टॅब 1 वापरण्याकरीता कळफलक शॉर्टकट"
2b7dad92
JK
2078@@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
2079 #~ msgid "_Solid color"
2080 #~ msgstr "गडद रंग (_S)"
2081
2082-#~ msgid "_Transparent background"
2083-#~ msgstr "पारदर्शी पार्श्वभूमी(_T)"
2084+msgid "Transparent background"
2085+msgstr "पारदर्शी पार्श्वभूमी"
2086
2087 #~ msgid "Disabled"
2088 #~ msgstr "अकार्यान्वीतित"
2089diff --git a/po/ms.po b/po/ms.po
bb11d6bf 2090index f2ebd4851d3b..f3d44c9c6294 100644
2b7dad92
JK
2091--- a/po/ms.po
2092+++ b/po/ms.po
d4bc1a2d
MB
2093@@ -227,8 +227,8 @@ msgstr "<b>LatarBelakang</b>"
2094 # help-browser/toc-man.c:19
2095 # help-browser/toc2-man.c:21
2096 #: ../src/gnome-terminal.glade2.h:2
2097-msgid "<b>Command</b>"
2098-msgstr "<b>Arahan</b>"
2099+msgid "Command"
2100+msgstr "Arahan"
2101
2102 #: ../src/gnome-terminal.glade2.h:3
2103 msgid "<b>Compatibility</b>"
2104@@ -631,8 +631,8 @@ msgid "_Text color:"
2b7dad92
JK
2105 msgstr "Warna _Teks:"
2106
2107 #: ../src/gnome-terminal.glade2.h:102
2108-msgid "_Transparent background"
2109-msgstr "LatarBelakang _Telus"
2110+msgid "Transparent background"
2111+msgstr "LatarBelakang Telus"
2112
2113 #: ../src/gnome-terminal.glade2.h:103
2114 msgid "_Update login records when command is launched"
2115diff --git a/po/nb.po b/po/nb.po
bb11d6bf 2116index 683acfe5221e..3dc97ee17fec 100644
2b7dad92
JK
2117--- a/po/nb.po
2118+++ b/po/nb.po
bb11d6bf
JK
2119@@ -2261,3 +2261,15 @@ msgstr ""
2120 #: ../src/terminal-window.c:3210
2b7dad92
JK
2121 msgid "C_lose Window"
2122 msgstr "_Lukk vindu"
2123+
2124+msgid "Transparent background"
2125+msgstr "Gjennomsiktig bakgrunn"
d4bc1a2d
MB
2126+
2127+msgid "Title"
2128+msgstr "Tittel"
2129+
2130+msgid "_Title:"
2131+msgstr "_Tittel:"
2132+
2133+msgid "Set Title"
2134+msgstr "Sett tittel"
2b7dad92 2135diff --git a/po/nds.po b/po/nds.po
d4bc1a2d 2136index 82f930b1cc0c..d52fbd94eb58 100644
2b7dad92
JK
2137--- a/po/nds.po
2138+++ b/po/nds.po
d4bc1a2d
MB
2139@@ -748,8 +748,8 @@ msgid "_Base on:"
2140 msgstr "_Steiht op:"
2141
2142 #: ../src/profile-preferences.glade.h:1
2143-msgid "<b>Command</b>"
2144-msgstr "<b>Order</b>"
2145+msgid "Command"
2146+msgstr "Order"
2147
2148 #: ../src/profile-preferences.glade.h:2
2149 msgid "<b>Foreground and Background</b>"
2150@@ -996,8 +996,8 @@ msgid "_Text color:"
2b7dad92
JK
2151 msgstr "_Textklöör:"
2152
2153 #: ../src/profile-preferences.glade.h:73
2154-msgid "_Transparent background"
2155-msgstr "_Döörschienenachtergrund:"
2156+msgid "Transparent background"
2157+msgstr "Döörschienenachtergrund:"
2158
2159 #: ../src/profile-preferences.glade.h:74
2160 msgid "_Update login records when command is launched"
2161diff --git a/po/ne.po b/po/ne.po
bb11d6bf 2162index 4fe16cc88a9a..53fb89134be0 100644
2b7dad92
JK
2163--- a/po/ne.po
2164+++ b/po/ne.po
2165@@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
2166 #~ msgid "_None (use solid color)"
2167 #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
2168
2169-#~ msgid "_Transparent background"
2170-#~ msgstr "पारदर्शी पृष्ठभूमि"
2171+msgid "Transparent background"
2172+msgstr "पारदर्शी पृष्ठभूमि"
2173
2174 #~ msgid "_Use the system fixed width font"
2175 #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
d4bc1a2d
MB
2176@@ -3052,8 +3052,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
2177 #~ msgid "Close Tab"
2178 #~ msgstr "ट्याब बन्द गर्नुहोस्"
2179
2180-#~ msgid "Set Title"
2181-#~ msgstr "शीर्षक सेट गर्नुहोस्"
2182+msgid "Set Title"
2183+msgstr "शीर्षक सेट गर्नुहोस्"
2184
2185 #~ msgid "Switch to Tab 2"
2186 #~ msgstr "ट्याब २ मा स्विच गर्नुहोस्"
2187@@ -3232,8 +3232,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
2188 #~ msgid "_Input Methods"
2189 #~ msgstr "आगत विधि"
2190
2191-#~ msgid "_Title:"
2192-#~ msgstr "शीर्षक:"
2193+msgid "_Title:"
2194+msgstr "शीर्षक:"
2195
2196 #~ msgid ""
2197 #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
2b7dad92 2198diff --git a/po/nl.po b/po/nl.po
bb11d6bf 2199index 5f070152cade..560e472f0917 100644
2b7dad92
JK
2200--- a/po/nl.po
2201+++ b/po/nl.po
bb11d6bf 2202@@ -2596,3 +2596,15 @@ msgstr "Venster sl_uiten"
d4bc1a2d 2203
bb11d6bf
JK
2204 #~ msgid "_Add or Remove…"
2205 #~ msgstr "_Toevoegen of verwijderen…"
2206+
d4bc1a2d
MB
2207+msgid "Title"
2208+msgstr "Titel"
bb11d6bf 2209+
d4bc1a2d
MB
2210+msgid "_Title:"
2211+msgstr "_Titel:"
bb11d6bf 2212+
d4bc1a2d
MB
2213+msgid "Set Title"
2214+msgstr "Titel instellen"
2b7dad92
JK
2215+
2216+msgid "Transparent background"
2217+msgstr "Transparante achtergrond"
2218diff --git a/po/nn.po b/po/nn.po
d4bc1a2d 2219index 5aa43b113ed9..f892290c256f 100644
2b7dad92
JK
2220--- a/po/nn.po
2221+++ b/po/nn.po
d4bc1a2d
MB
2222@@ -1149,8 +1149,8 @@ msgid "_Base on:"
2223 msgstr "_Tuft på:"
2224
2225 #: ../src/profile-preferences.glade.h:1
2226-msgid "<b>Command</b>"
2227-msgstr "<b>Kommando</b>"
2228+msgid "Command"
2229+msgstr "Kommando"
2230
2231 #: ../src/profile-preferences.glade.h:2
2232 msgid "<b>Foreground and Background</b>"
2233@@ -1429,8 +1429,8 @@ msgid "_Text color:"
2b7dad92
JK
2234 msgstr "_Tekstfarge:"
2235
2236 #: ../src/profile-preferences.glade.h:73
2237-msgid "_Transparent background"
2238-msgstr "_Gjennomskinleg bakgrunn"
2239+msgid "Transparent background"
2240+msgstr "Gjennomskinleg bakgrunn"
2241
2242 #: ../src/profile-preferences.glade.h:74
2243 msgid "_Update login records when command is launched"
2244diff --git a/po/oc.po b/po/oc.po
bb11d6bf 2245index 9a6f6186019a..6e51ea2f8980 100644
2b7dad92
JK
2246--- a/po/oc.po
2247+++ b/po/oc.po
bb11d6bf 2248@@ -2944,8 +2944,8 @@ msgstr "Tampar _la fenèstra"
d4bc1a2d
MB
2249 #~ msgid "Save as..."
2250 #~ msgstr "Enregistrar jos..."
2251
2252-#~ msgid "_Title:"
2253-#~ msgstr "_Títol :"
2254+msgid "_Title:"
2255+msgstr "_Títol :"
2256
d4bc1a2d
MB
2257 #~ msgid "_Detach tab"
2258 #~ msgstr "Des_tacar l'onglet"
bb11d6bf 2259@@ -3405,8 +3405,8 @@ msgstr "Tampar _la fenèstra"
d4bc1a2d
MB
2260 #~ msgid "_Use the system fixed width font"
2261 #~ msgstr "_Utilizar la poliça de chassa fixa del sistèma"
2262
2263-#~ msgid "Set Title"
2264-#~ msgstr "Definir lo títol"
2265+msgid "Set Title"
2266+msgstr "Definir lo títol"
2267
bb11d6bf
JK
2268 #~ msgid "The shortcut key “%s” is already bound to the “%s” action"
2269 #~ msgstr "L'acorchi de clavièr « %s » es ja atribuit a l'accion « %s »"
2270@@ -3723,8 +3723,8 @@ msgstr "Tampar _la fenèstra"
2b7dad92
JK
2271 #~ msgid "Run;"
2272 #~ msgstr "Executar;Consòla;Shell;"
2273
2274-#~ msgid "_Transparent background"
2275-#~ msgstr "Rèireplan _transparent"
2276+msgid "Transparent background"
2277+msgstr "Rèireplan transparent"
2278
2279 #~ msgid ""
2280 #~ "A subset of possible encodings are presented in the Encoding submenu. "
2281diff --git a/po/or.po b/po/or.po
d4bc1a2d 2282index ec1e6bfb9a28..218acd712df6 100644
2b7dad92
JK
2283--- a/po/or.po
2284+++ b/po/or.po
2285@@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
2286 #~ msgid "Background image _scrolls"
2287 #~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)"
2288
2289-#~ msgid "_Transparent background"
2290-#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)"
2291+msgid "Transparent background"
2292+msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି"
2293
2294 #~ msgid "S_hade transparent or image background:"
2295 #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
2296diff --git a/po/pa.po b/po/pa.po
bb11d6bf 2297index 1cb4b46dc2aa..2bdd01fecaab 100644
2b7dad92
JK
2298--- a/po/pa.po
2299+++ b/po/pa.po
bb11d6bf 2300@@ -2718,10 +2718,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
d4bc1a2d
MB
2301 #~ msgid "GNOME Terminal Client"
2302 #~ msgstr "ਗਨੋਮ ਟਰਮੀਨਲ ਕਲਾਇਟ"
2303
2304-#~| msgid "Terminal"
2305-#~ msgctxt "title"
2306-#~ msgid "'Terminal'"
2307-#~ msgstr "'ਟਰਮੀਨਲ'"
2308+msgctxt "title"
2309+msgid "'Terminal'"
2310+msgstr "'ਟਰਮੀਨਲ'"
2311
2312 #~ msgid "Title for terminal"
2313 #~ msgstr "ਟਰਮੀਨਲ ਲਈ ਟਾਈਟਲ"
bb11d6bf 2314@@ -2766,11 +2765,11 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
d4bc1a2d
MB
2315 #~ msgid "Default size:"
2316 #~ msgstr "ਡਿਫਾਲਟ ਸਾਈਜ਼:"
2317
2318-#~ msgid "Title"
2319-#~ msgstr "ਟਾਈਟਲ"
2320+msgid "Title"
2321+msgstr "ਟਾਈਟਲ"
2322
2323-#~ msgid "_Title:"
2324-#~ msgstr "ਟਾਈਟਲ(_T):"
2325+msgid "_Title:"
2326+msgstr "ਟਾਈਟਲ(_T):"
2327
2328 #~ msgid "Title and Command"
2329 #~ msgstr "ਟਾਈਟਲ ਅਤੇ ਕਮਾਂਡ"
bb11d6bf 2330@@ -2778,8 +2777,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
d4bc1a2d
MB
2331 #~ msgid "_Unlimited"
2332 #~ msgstr "ਬੇਅੰਤ(_U)"
2333
2334-#~ msgid "Set Title"
2335-#~ msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
2336+msgid "Set Title"
2337+msgstr "ਟਾਈਟਲ ਸੈੱਟ ਕਰੋ"
2338
2339 #~ msgid "Current Locale"
2340 #~ msgstr "ਮੌਜੂਦ ਲੋਕੇਲ"
bb11d6bf 2341@@ -3559,8 +3558,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
2b7dad92
JK
2342 #~ msgid "_Solid color"
2343 #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
2344
2345-#~ msgid "_Transparent background"
2346-#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)"
2347+msgid "Transparent background"
2348+msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ"
2349
2350 #~ msgid "S/Key Challenge Response"
2351 #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
2352diff --git a/po/ps.po b/po/ps.po
d4bc1a2d 2353index b25a2cb41712..3855b2f3423f 100644
2b7dad92
JK
2354--- a/po/ps.po
2355+++ b/po/ps.po
d4bc1a2d
MB
2356@@ -810,8 +810,8 @@ msgid "_Base on:"
2357 msgstr ":پر بنسټ د_"
2358
2359 #: ../src/profile-preferences.glade.h:1
2360-msgid "<b>Command</b>"
2361-msgstr "<b>بولۍ</b>"
2362+msgid "Command"
2363+msgstr "بولۍ"
2364
2365 #: ../src/profile-preferences.glade.h:2
2366 msgid "<b>Foreground and Background</b>"
2367@@ -1053,8 +1053,8 @@ msgid "_Text color:"
2b7dad92
JK
2368 msgstr ":د ليکنې رنګ_"
2369
2370 #: ../src/profile-preferences.glade.h:69
2371-msgid "_Transparent background"
2372-msgstr "روڼ شاليد_"
2373+msgid "Transparent background"
2374+msgstr "روڼ شاليد"
2375
2376 #: ../src/profile-preferences.glade.h:70
2377 msgid "_Update login records when command is launched"
2378diff --git a/po/pt.po b/po/pt.po
bb11d6bf 2379index 5181419ad973..3df37f6d5bc7 100644
2b7dad92
JK
2380--- a/po/pt.po
2381+++ b/po/pt.po
d4bc1a2d
MB
2382@@ -2360,11 +2360,11 @@ msgstr "Fechar jane_la"
2383 #~ msgid "Default size:"
2384 #~ msgstr "Tamanho predefinido:"
2385
2386-#~ msgid "Title"
2387-#~ msgstr "Título"
2388+msgid "Title"
2389+msgstr "Título"
2390
2391-#~ msgid "_Title:"
2392-#~ msgstr "_Título:"
2393+msgid "_Title:"
2394+msgstr "_Título:"
2395
2396 #~ msgid "Title and Command"
2397 #~ msgstr "Título e comando"
bb11d6bf 2398@@ -2372,8 +2372,8 @@ msgstr "Fechar jane_la"
d4bc1a2d
MB
2399 #~ msgid "_Unlimited"
2400 #~ msgstr "_Ilimitado"
2401
2402-#~ msgid "Set Title"
2403-#~ msgstr "Definir o Título"
2404+msgid "Set Title"
2405+msgstr "Definir o Título"
2406
2407 #~ msgid "Current Locale"
2408 #~ msgstr "Configuração Regional Atual"
d4bc1a2d 2409@@ -3160,8 +3160,8 @@ msgstr "Fechar jane_la"
2b7dad92
JK
2410 #~ msgid "Background image _scrolls"
2411 #~ msgstr "Imagem de fundo _rola"
2412
2413-#~ msgid "_Transparent background"
2414-#~ msgstr "Fundo _transparente"
2415+msgid "Transparent background"
2416+msgstr "Fundo transparente"
2417
2418 #~ msgid "S_hade transparent or image background:"
2419 #~ msgstr "Transparente som_breado ou imagem de fundo:"
2420diff --git a/po/pt_BR.po b/po/pt_BR.po
bb11d6bf 2421index c40dba26b08a..9be7eec414e9 100644
2b7dad92
JK
2422--- a/po/pt_BR.po
2423+++ b/po/pt_BR.po
bb11d6bf 2424@@ -2687,17 +2687,17 @@ msgstr "_Fechar janela"
d4bc1a2d
MB
2425 #~ msgid "Default size:"
2426 #~ msgstr "Tamanho padrão:"
2427
2428-#~ msgid "Title"
2429-#~ msgstr "Título"
2430+msgid "Title"
2431+msgstr "Título"
2432
2433-#~ msgid "_Title:"
2434-#~ msgstr "_Título:"
2435+msgid "_Title:"
2436+msgstr "_Título:"
2437
2438 #~ msgid "Title and Command"
2439 #~ msgstr "Título e comando"
2440
2441-#~ msgid "Set Title"
2442-#~ msgstr "Definir título"
2443+msgid "Set Title"
2444+msgstr "Definir título"
2445
2446 #~ msgid "Current Locale"
2447 #~ msgstr "Codificação atual"
bb11d6bf 2448@@ -3323,3 +3323,6 @@ msgstr "_Fechar janela"
2b7dad92
JK
2449 #~ "terminal poderão usar. Essa é a paleta, na forma de uma lista de nomes de "
2450 #~ "cores separada por dois pontos. Os nomes de cores devem estar no formato "
2451 #~ "hexadecimal. Exemplo: \"#FF00FF\""
2452+
2453+msgid "Transparent background"
2454+msgstr "Fundo transparente"
2455diff --git a/po/ro.po b/po/ro.po
bb11d6bf 2456index 53dd72be9c45..d694adf36934 100644
2b7dad92
JK
2457--- a/po/ro.po
2458+++ b/po/ro.po
bb11d6bf
JK
2459@@ -3412,8 +3412,8 @@ msgstr "Î_nchide fereastra"
2460 #~ msgid "_Solid color"
2461 #~ msgstr "Culoare _solidă"
2b7dad92 2462
bb11d6bf
JK
2463-#~ msgid "_Transparent background"
2464-#~ msgstr "Fundal _transparent"
2b7dad92
JK
2465+msgid "Transparent background"
2466+msgstr "Fundal transparent"
2467
bb11d6bf
JK
2468 #~ msgid "_Unlimited"
2469 #~ msgstr "_Neliminat"
2b7dad92 2470diff --git a/po/ru.po b/po/ru.po
bb11d6bf 2471index fedc4d3ec51c..c08bffcb4d10 100644
2b7dad92
JK
2472--- a/po/ru.po
2473+++ b/po/ru.po
bb11d6bf
JK
2474@@ -2539,3 +2539,19 @@ msgstr "_Закрыть окно"
2475
2476 #~ msgid "_Add or Remove…"
2477 #~ msgstr "_Добавить или удалить…"
2b7dad92
JK
2478+
2479+msgid "Transparent background"
2480+msgstr "Прозрачный фон"
d4bc1a2d
MB
2481+
2482+msgid "Title"
2483+msgstr "Заголовок"
2484+
2485+msgid "_Title:"
2486+msgstr "За_головок:"
2487+
2488+msgctxt "title"
2489+msgid "'Terminal'"
2490+msgstr "'Терминал'"
2491+
2492+msgid "Set Title"
2493+msgstr "Установить заголовок"
2b7dad92 2494diff --git a/po/rw.po b/po/rw.po
d4bc1a2d 2495index 012f64e325c3..5ff633f8b3c2 100644
2b7dad92
JK
2496--- a/po/rw.po
2497+++ b/po/rw.po
d4bc1a2d 2498@@ -749,7 +749,7 @@ msgstr "Ibara ry'Inyandiko..."
2b7dad92
JK
2499
2500 #: ../src/gnome-terminal.glade2.h:102
2501 #, fuzzy
2502-msgid "_Transparent background"
2503+msgid "Transparent background"
2504 msgstr "Mbuganyuma"
2505
2506 #: ../src/gnome-terminal.glade2.h:103
d4bc1a2d
MB
2507@@ -2398,7 +2398,6 @@ msgstr ""
2508
2509 # sch/source\ui\app\menu.src:RID_MENU.WORKAROUND_22.SID_INSERT_TITLE.text
2510 #: ../src/terminal-screen.c:2005
2511-#, fuzzy
2512 msgid "_Title:"
2513 msgstr "Umutwe..."
2514
2b7dad92 2515diff --git a/po/si.po b/po/si.po
bb11d6bf 2516index adca7d5acba9..6379cee7f0a3 100644
2b7dad92
JK
2517--- a/po/si.po
2518+++ b/po/si.po
d4bc1a2d
MB
2519@@ -218,8 +218,8 @@ msgid "<b>Background</b>"
2520 msgstr "<b>පසුබිම</b>"
2521
2522 #: ../src/gnome-terminal.glade2.h:3
2523-msgid "<b>Command</b>"
2524-msgstr "<b>විධානය</b>"
2525+msgid "Command"
2526+msgstr "විධානය"
2527
2528 #: ../src/gnome-terminal.glade2.h:4
2529 msgid "<b>Compatibility</b>"
2530@@ -538,8 +538,8 @@ msgid "_Text color:"
2b7dad92
JK
2531 msgstr "පෙළ වර්‍ණ: (_T)"
2532
2533 #: ../src/gnome-terminal.glade2.h:86
2534-msgid "_Transparent background"
2535-msgstr "විනිවිද පෙනෙන පසුබිම (_T)"
2536+msgid "Transparent background"
2537+msgstr "විනිවිද පෙනෙන පසුබිම"
2538
2539 #: ../src/gnome-terminal.glade2.h:87
2540 msgid "_Update login records when command is launched"
2541diff --git a/po/sk.po b/po/sk.po
bb11d6bf 2542index d0282159b459..01dd96a06939 100644
2b7dad92
JK
2543--- a/po/sk.po
2544+++ b/po/sk.po
bb11d6bf 2545@@ -2916,3 +2916,15 @@ msgstr "_Zavrieť okno"
2b7dad92
JK
2546 #~ "\n"
2547 #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
2548 #~ "help“.\n"
2549+
2550+msgid "Transparent background"
2551+msgstr "Priehľadné pozadie"
d4bc1a2d
MB
2552+
2553+msgid "Title"
2554+msgstr "Titulok"
2555+
2556+msgid "_Title:"
2557+msgstr "_Titulok:"
2558+
2559+msgid "Set Title"
2560+msgstr "Nastaviť titulok"
2b7dad92 2561diff --git a/po/sl.po b/po/sl.po
bb11d6bf 2562index db9cb98834fe..261abe9c1e64 100644
2b7dad92
JK
2563--- a/po/sl.po
2564+++ b/po/sl.po
bb11d6bf 2565@@ -2663,17 +2663,17 @@ msgstr "_Zapri okno"
d4bc1a2d
MB
2566 #~ msgid "Default size:"
2567 #~ msgstr "Privzeta velikost:"
2568
2569-#~ msgid "Title"
2570-#~ msgstr "Naslov"
2571+msgid "Title"
2572+msgstr "Naslov"
2573
2574-#~ msgid "_Title:"
2575-#~ msgstr "_Naziv:"
2576+msgid "_Title:"
2577+msgstr "_Naziv:"
2578
2579 #~ msgid "Title and Command"
2580 #~ msgstr "Naziv in ukaz"
2581
2582-#~ msgid "Set Title"
2583-#~ msgstr "Določitev naziva okna"
2584+msgid "Set Title"
2585+msgstr "Določitev naziva okna"
2586
2587 #~ msgid "Current Locale"
2588 #~ msgstr "Trenutne jezikovne nastavitve"
bb11d6bf 2589@@ -2788,3 +2788,6 @@ msgstr "_Zapri okno"
2b7dad92
JK
2590
2591 #~ msgid "_Profile Preferences…"
2592 #~ msgstr "Možnosti _profila ..."
2593+
2594+msgid "Transparent background"
2595+msgstr "Prosojno ozadje"
2596diff --git a/po/sq.po b/po/sq.po
d4bc1a2d 2597index 158f6cb167cc..a3494fb70bd6 100644
2b7dad92
JK
2598--- a/po/sq.po
2599+++ b/po/sq.po
d4bc1a2d
MB
2600@@ -225,8 +225,8 @@ msgid "<b>Background</b>"
2601 msgstr "<b>Sfondi</b>"
2602
2603 #: ../src/gnome-terminal.glade2.h:3
2604-msgid "<b>Command</b>"
2605-msgstr "<b>Komanda</b>"
2606+msgid "Command"
2607+msgstr "Komanda"
2608
2609 #: ../src/gnome-terminal.glade2.h:4
2610 msgid "<b>Compatibility</b>"
2611@@ -568,8 +568,8 @@ msgstr "Ngjyra e _tekstit:"
2b7dad92
JK
2612
2613 # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
2614 #: ../src/gnome-terminal.glade2.h:85
2615-msgid "_Transparent background"
2616-msgstr "Sfond _Trasparent"
2617+msgid "Transparent background"
2618+msgstr "Sfond Trasparent"
2619
2620 #: ../src/gnome-terminal.glade2.h:86
2621 msgid "_Update login records when command is launched"
2622diff --git a/po/sr.po b/po/sr.po
bb11d6bf 2623index 8bf15f3250a4..81a73722c616 100644
2b7dad92
JK
2624--- a/po/sr.po
2625+++ b/po/sr.po
bb11d6bf 2626@@ -2576,10 +2576,9 @@ msgstr "_Затвори прозор"
d4bc1a2d
MB
2627 #~ msgid "GNOME Terminal Client"
2628 #~ msgstr "Клијент Гномовог терминала"
2629
2630-#~| msgid "Terminal"
2631-#~ msgctxt "title"
2632-#~ msgid "'Terminal'"
2633-#~ msgstr "„Терминал“"
2634+msgctxt "title"
2635+msgid "'Terminal'"
2636+msgstr "„Терминал“"
2637
2638 #~ msgid "Title for terminal"
2639 #~ msgstr "Наслов за терминал"
bb11d6bf 2640@@ -2625,11 +2624,11 @@ msgstr "_Затвори прозор"
d4bc1a2d
MB
2641 #~ msgid "Default size:"
2642 #~ msgstr "Основна величина:"
2643
2644-#~ msgid "Title"
2645-#~ msgstr "Наслов"
2646+msgid "Title"
2647+msgstr "Наслов"
2648
2649-#~ msgid "_Title:"
2650-#~ msgstr "_Наслов:"
2651+msgid "_Title:"
2652+msgstr "_Наслов:"
2653
2654 #~ msgid "Title and Command"
2655 #~ msgstr "Наслов и наредба"
bb11d6bf 2656@@ -2637,8 +2636,8 @@ msgstr "_Затвори прозор"
d4bc1a2d
MB
2657 #~ msgid "_Unlimited"
2658 #~ msgstr "_Неограничено"
2659
2660-#~ msgid "Set Title"
2661-#~ msgstr "Постави наслов"
2662+msgid "Set Title"
2663+msgstr "Постави наслов"
2664
2665 #~ msgid "Current Locale"
2666 #~ msgstr "Текући локалитет"
bb11d6bf 2667@@ -2648,3 +2647,6 @@ msgstr "_Затвори прозор"
d4bc1a2d 2668
bb11d6bf
JK
2669 #~ msgid "Hidden"
2670 #~ msgstr "Скривен"
2b7dad92
JK
2671+
2672+msgid "Transparent background"
2673+msgstr "Провидна позадина"
2674diff --git a/po/sr@latin.po b/po/sr@latin.po
bb11d6bf 2675index 45dbad07fba7..852c47cc6ee5 100644
2b7dad92
JK
2676--- a/po/sr@latin.po
2677+++ b/po/sr@latin.po
bb11d6bf 2678@@ -2576,10 +2576,9 @@ msgstr "_Zatvori prozor"
d4bc1a2d
MB
2679 #~ msgid "GNOME Terminal Client"
2680 #~ msgstr "Klijent Gnomovog terminala"
2681
2682-#~| msgid "Terminal"
2683-#~ msgctxt "title"
2684-#~ msgid "'Terminal'"
2685-#~ msgstr "„Terminal“"
2686+msgctxt "title"
2687+msgid "'Terminal'"
2688+msgstr "„Terminal“"
2689
2690 #~ msgid "Title for terminal"
2691 #~ msgstr "Naslov za terminal"
bb11d6bf 2692@@ -2625,11 +2624,11 @@ msgstr "_Zatvori prozor"
d4bc1a2d
MB
2693 #~ msgid "Default size:"
2694 #~ msgstr "Osnovna veličina:"
2695
2696-#~ msgid "Title"
2697-#~ msgstr "Naslov"
2698+msgid "Title"
2699+msgstr "Naslov"
2700
2701-#~ msgid "_Title:"
2702-#~ msgstr "_Naslov:"
2703+msgid "_Title:"
2704+msgstr "_Naslov:"
2705
2706 #~ msgid "Title and Command"
2707 #~ msgstr "Naslov i naredba"
bb11d6bf 2708@@ -2637,8 +2636,8 @@ msgstr "_Zatvori prozor"
d4bc1a2d
MB
2709 #~ msgid "_Unlimited"
2710 #~ msgstr "_Neograničeno"
2711
2712-#~ msgid "Set Title"
2713-#~ msgstr "Postavi naslov"
2714+msgid "Set Title"
2715+msgstr "Postavi naslov"
2716
2717 #~ msgid "Current Locale"
2718 #~ msgstr "Tekući lokalitet"
bb11d6bf 2719@@ -2648,3 +2647,6 @@ msgstr "_Zatvori prozor"
d4bc1a2d 2720
bb11d6bf
JK
2721 #~ msgid "Hidden"
2722 #~ msgstr "Skriven"
2b7dad92
JK
2723+
2724+msgid "Transparent background"
2725+msgstr "Providna pozadina"
2726diff --git a/po/sv.po b/po/sv.po
bb11d6bf 2727index 8560fde55941..bd1030f519ab 100644
2b7dad92
JK
2728--- a/po/sv.po
2729+++ b/po/sv.po
bb11d6bf 2730@@ -2572,5 +2572,17 @@ msgstr "Stän_g fönster"
2b7dad92
JK
2731 #~ msgid "Unknown completion request for \"%s\""
2732 #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
2733
2734+msgid "Transparent background"
2735+msgstr "Genomskinlig bakgrund"
2736+
2737 #~ msgid "Missing command"
2738 #~ msgstr "Kommando saknas"
d4bc1a2d
MB
2739+
2740+msgid "_Title:"
2741+msgstr "_Titel:"
2742+
2743+msgid "Set Title"
2744+msgstr "Ställ in titel"
2745+
2746+msgid "_Set Title…"
2747+msgstr "A_nge titel..."
2b7dad92 2748diff --git a/po/ta.po b/po/ta.po
d4bc1a2d 2749index 80aa2f684eec..afd335b0faf0 100644
2b7dad92
JK
2750--- a/po/ta.po
2751+++ b/po/ta.po
d4bc1a2d
MB
2752@@ -2171,10 +2171,9 @@ msgstr "_l சாளரத்தை மூடவும்"
2753 #~ msgid "Show server options"
2754 #~ msgstr "சேவையக தேர்வுகளை காட்டுக"
2755
2756-#~| msgid "Terminal"
2757-#~ msgctxt "title"
2758-#~ msgid "'Terminal'"
2759-#~ msgstr "'முனையம்'"
2760+msgctxt "title"
2761+msgid "'Terminal'"
2762+msgstr "'முனையம்'"
2763
2764 #~ msgid "Title for terminal"
2765 #~ msgstr "முனையத்தின் தலைப்பு"
2766@@ -2221,11 +2220,11 @@ msgstr "_l சாளரத்தை மூடவும்"
2767 #~ msgid "Default size:"
2768 #~ msgstr "முன்னிருப்பு அளவு:"
2769
2770-#~ msgid "Title"
2771-#~ msgstr "தலைப்பு"
2772+msgid "Title"
2773+msgstr "தலைப்பு"
2774
2775-#~ msgid "_Title:"
2776-#~ msgstr "_T தலைப்பு:"
2777+msgid "_Title:"
2778+msgstr "_T தலைப்பு:"
2779
2780 #~ msgid "Title and Command"
2781 #~ msgstr "தலைப்பும் கட்டளையும்"
2782@@ -2233,8 +2232,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2783 #~ msgid "_Unlimited"
2784 #~ msgstr "_U வரையரை இல்லாத"
2785
2786-#~ msgid "Set Title"
2787-#~ msgstr "தலைப்பை அமைக்க"
2788+msgid "Set Title"
2789+msgstr "தலைப்பை அமைக்க"
2790
2791 #~| msgid "_Terminal"
2792 #~ msgid "_About Terminal"
2793@@ -2243,8 +2242,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2794 #~ msgid "Current Locale"
2795 #~ msgstr "தற்போதைய மொழி"
2796
2797-#~ msgid "_Set Title…"
2798-#~ msgstr "(_S) தலைப்பை அமைக்க..."
2799+msgid "_Set Title…"
2800+msgstr "(_S) தலைப்பை அமைக்க..."
2801
2802 #~ msgid "_Next Tab"
2803 #~ msgstr "அடுத்த கீற்று (_N)"
2804@@ -3028,8 +3027,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2b7dad92
JK
2805 #~ msgid "_Solid color"
2806 #~ msgstr "(_S) ஒரே வண்ணம்"
2807
2808-#~ msgid "_Transparent background"
2809-#~ msgstr "_T புலப்பாடு பின்னணி"
2810+msgid "Transparent background"
2811+msgstr "புலப்பாடு பின்னணி"
2812
2813 #~ msgid "No such profile \"%s\", using default profile\n"
2814 #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
2815diff --git a/po/te.po b/po/te.po
d4bc1a2d 2816index 82c0e0fc8f54..0dd3d871f639 100644
2b7dad92
JK
2817--- a/po/te.po
2818+++ b/po/te.po
d4bc1a2d
MB
2819@@ -2055,10 +2055,9 @@ msgstr "కిటికీని మూసివేయి (_l)"
2820 #~ msgid "Show server options"
2821 #~ msgstr "సేవకము ఐచ్చికాలను చూపించు"
2822
2823-#, fuzzy
2824-#~ msgctxt "title"
2825-#~ msgid "'Terminal'"
2826-#~ msgstr "టెర్మినల్"
2827+msgctxt "title"
2828+msgid "'Terminal'"
2829+msgstr "టెర్మినల్"
2830
2831 #~ msgid "Title for terminal"
2832 #~ msgstr "టెర్మినల్ కు శీర్షిక"
2833@@ -2104,11 +2103,11 @@ msgstr "కిటికీని మూసివేయి (_l)"
2834 #~ msgid "Default size:"
2835 #~ msgstr "అప్రమేయ పరిమాణం:"
2836
2837-#~ msgid "Title"
2838-#~ msgstr "శీర్షిక:"
2839+msgid "Title"
2840+msgstr "శీర్షిక:"
2841
2842-#~ msgid "_Title:"
2843-#~ msgstr "శీర్షిక (_T):"
2844+msgid "_Title:"
2845+msgstr "శీర్షిక (_T):"
2846
2847 #~ msgid "Title and Command"
2848 #~ msgstr "శీర్షిక మరియు ఆదేశం"
2849@@ -2116,14 +2115,14 @@ msgstr "కిటికీని మూసివేయి (_l)"
2850 #~ msgid "_Unlimited"
2851 #~ msgstr "అపరిమితమైన (_U)"
2852
2853-#~ msgid "Set Title"
2854-#~ msgstr "శీర్షికను అమర్చు"
2855+msgid "Set Title"
2856+msgstr "శీర్షికను అమర్చు"
2857
2858 #~ msgid "Current Locale"
2859 #~ msgstr "ప్రస్తుత స్థానికం"
2860
2861-#~ msgid "_Set Title…"
2862-#~ msgstr "శీర్షికను అమర్చు... (_S)"
2863+msgid "_Set Title…"
2864+msgstr "శీర్షికను అమర్చు... (_S)"
2865
2866 #~ msgid "_Next Tab"
2867 #~ msgstr "తరువాతి ట్యాబ్(_N)"
2868@@ -2898,8 +2897,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
2b7dad92
JK
2869 #~ msgid "Background image _scrolls"
2870 #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
2871
2872-#~ msgid "_Transparent background"
2873-#~ msgstr "పారదర్శక నేపథ్యం (_T)"
2874+msgid "Transparent background"
2875+msgstr "పారదర్శక నేపథ్యం"
2876
2877 #~ msgid "S_hade transparent or image background:"
2878 #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
d4bc1a2d
MB
2879diff --git a/po/tg.po b/po/tg.po
2880index e3feef658e1e..6371c036626f 100644
2881--- a/po/tg.po
2882+++ b/po/tg.po
2883@@ -2158,23 +2158,23 @@ msgstr "П_ӯшонидани равзана"
2884 #~ msgid "Default size:"
2885 #~ msgstr "Андозаи пешфарз:"
2886
2887-#~ msgid "Title"
2888-#~ msgstr "Сарлавҳа"
2889+msgid "Title"
2890+msgstr "Сарлавҳа"
2891
2892-#~ msgid "_Title:"
2893-#~ msgstr "_Вазифа:"
2894+msgid "_Title:"
2895+msgstr "_Вазифа:"
2896
2897 #~ msgid "Title and Command"
2898 #~ msgstr "Унвон ва Фармон"
2899
2900-#~ msgid "Set Title"
2901-#~ msgstr "Таъин кардани сарлавҳа"
2902+msgid "Set Title"
2903+msgstr "Таъин кардани сарлавҳа"
2904
2905 #~ msgid "Current Locale"
2906 #~ msgstr "Маҳаллигардонии ҷорӣ"
2907
2908-#~ msgid "_Set Title…"
2909-#~ msgstr "_Танзими сарлавҳа..."
2910+msgid "_Set Title…"
2911+msgstr "_Танзими сарлавҳа..."
2912
2913 #~ msgid "_Next Tab"
2914 #~ msgstr "_Варақаи навбатӣ"
2b7dad92 2915diff --git a/po/th.po b/po/th.po
d4bc1a2d 2916index 63263749655c..496da331bbf9 100644
2b7dad92
JK
2917--- a/po/th.po
2918+++ b/po/th.po
d4bc1a2d
MB
2919@@ -2308,23 +2308,23 @@ msgstr "ปิ_ดหน้าต่าง"
2920 #~ msgid "Default size:"
2921 #~ msgstr "ขนาดปริยาย:"
2922
2923-#~ msgid "Title"
2924-#~ msgstr "หัวเรื่อง"
2925+msgid "Title"
2926+msgstr "หัวเรื่อง"
2927
2928-#~ msgid "_Title:"
2929-#~ msgstr "_หัวเรื่อง:"
2930+msgid "_Title:"
2931+msgstr "_หัวเรื่อง:"
2932
2933 #~ msgid "Title and Command"
2934 #~ msgstr "หัวเรื่องและคำสั่ง"
2935
2936-#~ msgid "Set Title"
2937-#~ msgstr "ตั้งหัวเรื่อง"
2938+msgid "Set Title"
2939+msgstr "ตั้งหัวเรื่อง"
2940
2941 #~ msgid "Current Locale"
2942 #~ msgstr "ตามโลแคลปัจจุบัน"
2943
2944-#~ msgid "_Set Title…"
2945-#~ msgstr "ตั้งป้าย_ชื่อ…"
2946+msgid "_Set Title…"
2947+msgstr "ตั้งป้าย_ชื่อ…"
2948
2949 #~ msgid "_Next Tab"
2950 #~ msgstr "แท็บ_ถัดไป"
2951@@ -2803,8 +2803,8 @@ msgstr "ปิ_ดหน้าต่าง"
2b7dad92
JK
2952 #~ msgid "_Solid color"
2953 #~ msgstr "สี_ทึบ"
2954
2955-#~ msgid "_Transparent background"
2956-#~ msgstr "พื้นหลังโปร่งแ_สง"
2957+msgid "Transparent background"
2958+msgstr "พื้นหลังโปร่งแสง"
2959
2960 #~ msgid ""
2961 #~ "You already have a profile called “%s”. Do you want to create another "
2962diff --git a/po/tr.po b/po/tr.po
bb11d6bf 2963index fa79334e08dc..5b988d7dbd4a 100644
2b7dad92
JK
2964--- a/po/tr.po
2965+++ b/po/tr.po
bb11d6bf 2966@@ -2558,3 +2558,15 @@ msgstr "_Pencereyi Kapat"
d4bc1a2d
MB
2967
2968 #~ msgid "_Same as text color"
2969 #~ msgstr "_Metin rengiyle aynı"
2b7dad92
JK
2970+
2971+msgid "Transparent background"
2972+msgstr "Şeffaf arkaplan"
d4bc1a2d
MB
2973+
2974+msgid "_Title:"
2975+msgstr "_Başlık:"
2976+
2977+msgid "Set Title"
2978+msgstr "Başlığı Düzenle"
2979+
2980+msgid "_Set Title…"
2981+msgstr "_Başlığı Ata..."
2b7dad92 2982diff --git a/po/ug.po b/po/ug.po
d4bc1a2d 2983index 313f76b98eae..be6089762082 100644
2b7dad92
JK
2984--- a/po/ug.po
2985+++ b/po/ug.po
2986@@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
2987 #~ msgid "_Solid color"
2988 #~ msgstr "ساپ رەڭ(_S)"
2989
2990-#~ msgid "_Transparent background"
2991-#~ msgstr "سۈزۈك تەگلىك(_T)"
2992+msgid "Transparent background"
2993+msgstr "سۈزۈك تەگلىك"
2994
2995 #~ msgid ""
2996 #~ "You already have a profile called “%s”. Do you want to create another "
2997diff --git a/po/uk.po b/po/uk.po
d4bc1a2d 2998index a08f25914d12..a4fbcbe6e474 100644
2b7dad92
JK
2999--- a/po/uk.po
3000+++ b/po/uk.po
d4bc1a2d
MB
3001@@ -2353,11 +2353,11 @@ msgstr "Закр_ити вікно"
3002 #~ msgid "Default size:"
3003 #~ msgstr "Типовий розмір:"
3004
3005-#~ msgid "Title"
3006-#~ msgstr "Заголовок"
3007+msgid "Title"
3008+msgstr "Заголовок"
3009
3010-#~ msgid "_Title:"
3011-#~ msgstr "За_головок:"
3012+msgid "_Title:"
3013+msgstr "За_головок:"
3014
3015 #~ msgid "Title and Command"
3016 #~ msgstr "Заголовок та команда"
3017@@ -2365,14 +2365,14 @@ msgstr "Закр_ити вікно"
3018 #~ msgid "_Unlimited"
3019 #~ msgstr "_Нескінченно"
3020
3021-#~ msgid "Set Title"
3022-#~ msgstr "Встановлення заголовка"
3023+msgid "Set Title"
3024+msgstr "Встановлення заголовка"
3025
3026 #~ msgid "Current Locale"
3027 #~ msgstr "Теперішня локаль"
3028
3029-#~ msgid "_Set Title…"
3030-#~ msgstr "_Встановити заголовок…"
3031+msgid "_Set Title…"
3032+msgstr "_Встановити заголовок…"
3033
3034 #~ msgid "_Next Tab"
3035 #~ msgstr "_Наступна вкладка"
3036@@ -3134,8 +3134,8 @@ msgstr "Закр_ити вікно"
2b7dad92
JK
3037 #~ msgid "_Solid color"
3038 #~ msgstr "_Суцільний колір"
3039
3040-#~ msgid "_Transparent background"
3041-#~ msgstr "П_розоре тло"
3042+msgid "Transparent background"
3043+msgstr "Прозоре тло"
3044
3045 #~ msgid "Switch to Tab 2"
3046 #~ msgstr "До вкладки 2"
3047diff --git a/po/vi.po b/po/vi.po
bb11d6bf 3048index 67eb9326545f..5a279ad647b6 100644
2b7dad92
JK
3049--- a/po/vi.po
3050+++ b/po/vi.po
bb11d6bf 3051@@ -2673,8 +2673,8 @@ msgstr "Đón_g cửa sổ"
d4bc1a2d
MB
3052 #~ msgid "Default size:"
3053 #~ msgstr "Cỡ mặc định:"
3054
3055-#~ msgid "Title"
3056-#~ msgstr "Tựa đề"
3057+msgid "Title"
3058+msgstr "Tựa đề"
3059
3060 #~ msgid "When terminal commands set their o_wn titles:"
3061 #~ msgstr "Khi câu lệnh thiết bị cuối tự đặt tựa đề _mình:"
bb11d6bf
JK
3062@@ -2685,8 +2685,8 @@ msgstr "Đón_g cửa sổ"
3063 #~ msgid "_Unlimited"
3064 #~ msgstr "_Không hạn chế"
d4bc1a2d
MB
3065
3066-#~ msgid "Set Title"
3067-#~ msgstr "Đặt tựa đề"
3068+msgid "Set Title"
3069+msgstr "Đặt tựa đề"
3070
bb11d6bf
JK
3071 #~ msgid "Switch to Tab 3"
3072 #~ msgstr "Chuyển sang Thanh 3"
3073@@ -2727,8 +2727,8 @@ msgstr "Đón_g cửa sổ"
d4bc1a2d
MB
3074 #~ msgid "_Input Methods"
3075 #~ msgstr "K_iểu gõ"
3076
3077-#~ msgid "_Title:"
3078-#~ msgstr "_Tựa đề:"
3079+msgid "_Title:"
3080+msgstr "_Tựa đề:"
3081
3082 #~ msgid "Disable connection to session manager"
3083 #~ msgstr "Tắt kết nối đến trình quản lý phiên làm việc"
bb11d6bf 3084@@ -3113,3 +3113,6 @@ msgstr "Đón_g cửa sổ"
2b7dad92
JK
3085 #~ "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 "
3086 #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị "
3087 #~ "tắt), nghĩa là không có phím tắt cho hành động này."
3088+
3089+msgid "Transparent background"
3090+msgstr "Nền trong suốt"
3091diff --git a/po/wa.po b/po/wa.po
d4bc1a2d 3092index 0e0a6a752b6d..5ddeb2393654 100644
2b7dad92
JK
3093--- a/po/wa.po
3094+++ b/po/wa.po
d4bc1a2d
MB
3095@@ -224,8 +224,8 @@ msgid "<b>Background</b>"
3096 msgstr "<b>Fond</b>"
3097
3098 #: ../src/gnome-terminal.glade2.h:3
3099-msgid "<b>Command</b>"
3100-msgstr "<b>Comande</b>"
3101+msgid "Command"
3102+msgstr "Comande"
3103
3104 #: ../src/gnome-terminal.glade2.h:4
3105 msgid "<b>Compatibility</b>"
3106@@ -564,8 +564,8 @@ msgid "_Text color:"
2b7dad92
JK
3107 msgstr "Coleur pol _tecse:"
3108
3109 #: ../src/gnome-terminal.glade2.h:86
3110-msgid "_Transparent background"
3111-msgstr "Fond k' on voet _houte"
3112+msgid "Transparent background"
3113+msgstr "Fond k' on voet houte"
3114
3115 #: ../src/gnome-terminal.glade2.h:87
3116 msgid "_Update login records when command is launched"
d4bc1a2d
MB
3117@@ -2227,8 +2227,8 @@ msgid "Change _Profile"
3118 msgstr "Candjî _profil"
3119
3120 #: ../src/terminal-window.c:1013
3121-msgid "_Set Title..."
3122-msgstr "_Candjî l' tite..."
3123+msgid "_Set Title…"
3124+msgstr "_Candjî l' tite…"
3125
3126 #: ../src/terminal-window.c:1020
3127 msgid "Set _Character Encoding"
2b7dad92 3128diff --git a/po/xh.po b/po/xh.po
d4bc1a2d 3129index 44a8e21c7842..12aa6d190d99 100644
2b7dad92
JK
3130--- a/po/xh.po
3131+++ b/po/xh.po
d4bc1a2d
MB
3132@@ -217,8 +217,8 @@ msgid "<b>Background</b>"
3133 msgstr "<b>Okungasemva</b>"
3134
3135 #: ../src/gnome-terminal.glade2.h:2
3136-msgid "<b>Command</b>"
3137-msgstr "<b>Umyalelo</b>"
3138+msgid "Command"
3139+msgstr "Umyalelo"
3140
3141 #: ../src/gnome-terminal.glade2.h:3
3142 msgid "<b>Compatibility</b>"
3143@@ -621,8 +621,8 @@ msgid "_Text color:"
2b7dad92
JK
3144 msgstr "_Umbala wombhalo:"
3145
3146 #: ../src/gnome-terminal.glade2.h:102
3147-msgid "_Transparent background"
3148-msgstr "_Okungasemva okucace gca"
3149+msgid "Transparent background"
3150+msgstr "Okungasemva okucace gca"
3151
3152 #: ../src/gnome-terminal.glade2.h:103
3153 msgid "_Update login records when command is launched"
d4bc1a2d
MB
3154@@ -2265,8 +2265,8 @@ msgid "Change _Profile"
3155 msgstr "Tsintsha i_Nkangeleko"
3156
3157 #: ../src/terminal-window.c:979
3158-msgid "_Set Title..."
3159-msgstr "_Misela..."
3160+msgid "_Set Title…"
3161+msgstr "_Misela…"
3162
3163 #: ../src/terminal-window.c:986
3164 msgid "Set _Character Encoding"
2b7dad92 3165diff --git a/po/zh_CN.po b/po/zh_CN.po
bb11d6bf 3166index 6c80dcd1231a..51e5f9999176 100644
2b7dad92
JK
3167--- a/po/zh_CN.po
3168+++ b/po/zh_CN.po
bb11d6bf 3169@@ -2580,17 +2580,17 @@ msgstr "关闭窗口(_L)"
d4bc1a2d
MB
3170 #~ msgid "Default size:"
3171 #~ msgstr "默认大小:"
3172
3173-#~ msgid "Title"
3174-#~ msgstr "标题"
3175+msgid "Title"
3176+msgstr "标题"
3177
3178-#~ msgid "_Title:"
3179-#~ msgstr "标题(_T):"
3180+msgid "_Title:"
3181+msgstr "标题(_T):"
3182
3183 #~ msgid "Title and Command"
3184 #~ msgstr "标题和命令"
3185
3186-#~ msgid "Set Title"
3187-#~ msgstr "设置标题"
3188+msgid "Set Title"
3189+msgstr "设置标题"
3190
3191 #~ msgid "Current Locale"
3192 #~ msgstr "当前区域"
bb11d6bf 3193@@ -2703,3 +2703,6 @@ msgstr "关闭窗口(_L)"
2b7dad92
JK
3194
3195 #~ msgid "_Find..."
3196 #~ msgstr "查找(_F)..."
3197+
3198+msgid "Transparent background"
3199+msgstr "透明背景"
3200diff --git a/po/zh_HK.po b/po/zh_HK.po
bb11d6bf 3201index 61153529f0c7..c366abddd1af 100644
2b7dad92
JK
3202--- a/po/zh_HK.po
3203+++ b/po/zh_HK.po
bb11d6bf 3204@@ -2114,17 +2114,17 @@ msgstr "關閉視窗(_L)"
d4bc1a2d
MB
3205 #~ msgid "Default size:"
3206 #~ msgstr "預設大小:"
3207
3208-#~ msgid "Title"
3209-#~ msgstr "標題"
3210+msgid "Title"
3211+msgstr "標題"
3212
3213-#~ msgid "_Title:"
3214-#~ msgstr "標題(_T):"
3215+msgid "_Title:"
3216+msgstr "標題(_T):"
3217
3218 #~ msgid "Title and Command"
3219 #~ msgstr "標題及指令"
3220
3221-#~ msgid "Set Title"
3222-#~ msgstr "設定標題"
3223+msgid "Set Title"
3224+msgstr "設定標題"
3225
3226 #~ msgid "Current Locale"
3227 #~ msgstr "目前的地區設定"
2b7dad92
JK
3228@@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
3229
3230 #~ msgid "Show session management options"
3231 #~ msgstr "顯示作業階段管理選項"
3232+
3233+msgid "Transparent background"
3234+msgstr "透明背景"
3235diff --git a/po/zh_TW.po b/po/zh_TW.po
bb11d6bf 3236index b9890ad91bdc..18e55e2e945c 100644
2b7dad92
JK
3237--- a/po/zh_TW.po
3238+++ b/po/zh_TW.po
bb11d6bf 3239@@ -2562,17 +2562,17 @@ msgstr "關閉視窗(_L)"
d4bc1a2d
MB
3240 #~ msgid "Default size:"
3241 #~ msgstr "預設大小:"
3242
3243-#~ msgid "Title"
3244-#~ msgstr "標題"
3245+msgid "Title"
3246+msgstr "標題"
3247
3248-#~ msgid "_Title:"
3249-#~ msgstr "標題(_T):"
3250+msgid "_Title:"
3251+msgstr "標題(_T):"
3252
3253 #~ msgid "Title and Command"
3254 #~ msgstr "標題及指令"
3255
3256-#~ msgid "Set Title"
3257-#~ msgstr "設定標題"
3258+msgid "Set Title"
3259+msgstr "設定標題"
3260
3261 #~ msgid "Current Locale"
3262 #~ msgstr "目前的地區設定"
bb11d6bf 3263@@ -2784,3 +2784,6 @@ msgstr "關閉視窗(_L)"
2b7dad92
JK
3264
3265 #~ msgid "Show session management options"
3266 #~ msgstr "顯示作業階段管理選項"
3267+
3268+msgid "Transparent background"
3269+msgstr "透明背景"
bb11d6bf
JK
3270--
32712.19.1
This page took 0.539389 seconds and 4 git commands to generate.