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