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