Codebase list gnome-terminal / 13ba72e
Refresh patch to please dpkg Raphaël Hertzog 6 years ago
2 changed file(s) with 2794 addition(s) and 654 deletion(s). Raw diff Collapse all Expand all
0 From f0da9cf1b54795970b1997921157e059be6900ff Mon Sep 17 00:00:00 2001
1 From: Debarshi Ray <[email protected]>
2 Date: Mon, 12 May 2014 14:57:18 +0200
3 Subject: [PATCH 01/14] Restore transparency
4
5 The transparency settings were removed as a side effect of
6 2bff4b63ed3ceef6055e35563e9b0b33ad57349d
7
8 This restores them and you will need a compositing window manager to
9 use it. The background image setting, also known as faux transparency,
10 was not restored.
11
12 The transparency checkbox lost its mnemonic accelerator because 't'
13 is already taken and using any other letter would make it hard to
14 restore the translations of the string.
15
16 [Kali notes: we include the patch from Fedora:
17 https://src.fedoraproject.org/rpms/gnome-terminal/tree/master
18
19 This current patch is for 3.22.2 but there are patches for newer versions
20 too (3.24 currently).]
21
22 Origin: other, https://src.fedoraproject.org/rpms/gnome-terminal/blob/a4d1c5aba6b3384c170387f835f434c96eb4dd7c/f/gnome-terminal-notify-open-title-transparency.patch
23
24 ---
25 src/org.gnome.Terminal.gschema.xml | 10 +++++
26 src/profile-editor.c | 11 +++++
27 src/profile-preferences.ui | 92 ++++++++++++++++++++++++++++++++++++++
28 src/terminal-schemas.h | 3 ++
29 src/terminal-screen.c | 22 ++++++++-
30 src/terminal-window.c | 7 +++
31 6 files changed, 144 insertions(+), 1 deletion(-)
32
33 diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
34 index c031c8ace24a..7bdd156e36aa 100644
35 --- a/src/org.gnome.Terminal.gschema.xml
36 +++ b/src/org.gnome.Terminal.gschema.xml
37 @@ -370,6 +370,16 @@
38 <default>'narrow'</default>
39 <summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
40 </key>
41 + <key name="use-transparent-background" type="b">
42 + <default>false</default>
43 + <summary>Whether to use a transparent background</summary>
44 + </key>
45 + <key name="background-transparency-percent" type="i">
46 + <default>50</default>
47 + <range min="0" max="100"/>
48 + <summary>Adjust the amount of transparency</summary>
49 + <description>A value between 0 and 100, where 0 is opaque and 100 is fully transparent.</description>
50 + </key>
51 </schema>
52
53 <!-- Keybinding settings -->
54 diff --git a/src/profile-editor.c b/src/profile-editor.c
55 index 002561d77dcb..1a758a9243ec 100644
56 --- a/src/profile-editor.c
57 +++ b/src/profile-editor.c
58 @@ -1215,7 +1215,18 @@ terminal_profile_edit (GSettings *profile,
59 "active-id",
60 G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
61
62 + g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
63 + gtk_builder_get_object (builder, "use-transparent-background"),
64 + "active", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
65 + g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
66 + gtk_builder_get_object (builder, "background-transparent-scale-box"),
67 + "sensitive", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY);
68 + g_settings_bind (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT,
69 + gtk_builder_get_object (builder, "background-transparent-adjustment"),
70 + "value", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
71 +
72 /* Finished! */
73 +
74 terminal_util_bind_mnemonic_label_sensitivity (editor);
75
76 terminal_util_dialog_focus_widget (editor, widget_name);
77 diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui
78 index 5adcb5317e01..b7decb284946 100644
79 --- a/src/profile-preferences.ui
80 +++ b/src/profile-preferences.ui
81 @@ -23,6 +23,11 @@
82 <property name="step_increment">1</property>
83 <property name="page_increment">100</property>
84 </object>
85 + <object class="GtkAdjustment" id="background-transparent-adjustment">
86 + <property name="upper">100</property>
87 + <property name="step_increment">1</property>
88 + <property name="page_increment">10</property>
89 + </object>
90 <object class="GtkListStore" id="cjk-ambiguous-width-model">
91 <columns>
92 <!-- column-name gchararray -->
93 @@ -1036,6 +1041,93 @@
94 <property name="position">1</property>
95 </packing>
96 </child>
97 + <child>
98 + <object class="GtkBox" id="use-transparent-background-box">
99 + <property name="visible">True</property>
100 + <property name="can_focus">False</property>
101 + <property name="orientation">horizontal</property>
102 + <property name="spacing">12</property>
103 + <child>
104 + <object class="GtkCheckButton" id="use-transparent-background">
105 + <property name="label" translatable="yes">Transparent background</property>
106 + <property name="visible">True</property>
107 + <property name="can_focus">True</property>
108 + <property name="receives_default">False</property>
109 + <property name="use_underline">True</property>
110 + <property name="xalign">0</property>
111 + <property name="draw_indicator">True</property>
112 + </object>
113 + <packing>
114 + <property name="expand">False</property>
115 + <property name="fill">False</property>
116 + <property name="position">0</property>
117 + </packing>
118 + </child>
119 + <child>
120 + <object class="GtkBox" id="background-transparent-scale-box">
121 + <property name="visible">True</property>
122 + <property name="can_focus">False</property>
123 + <property name="orientation">horizontal</property>
124 + <property name="spacing">6</property>
125 + <child>
126 + <object class="GtkLabel" id="background-transparent-min-label">
127 + <property name="visible">True</property>
128 + <property name="can_focus">False</property>
129 + <property name="xalign">0.5</property>
130 + <property name="label" translatable="yes">none</property>
131 + <style>
132 + <class name="dim-label"/>
133 + </style>
134 + </object>
135 + <packing>
136 + <property name="expand">False</property>
137 + <property name="fill">False</property>
138 + <property name="position">0</property>
139 + </packing>
140 + </child>
141 + <child>
142 + <object class="GtkScale" id="background-transparent-scale">
143 + <property name="visible">True</property>
144 + <property name="can_focus">True</property>
145 + <property name="adjustment">background-transparent-adjustment</property>
146 + <property name="draw_value">False</property>
147 + </object>
148 + <packing>
149 + <property name="expand">True</property>
150 + <property name="fill">True</property>
151 + <property name="position">1</property>
152 + </packing>
153 + </child>
154 + <child>
155 + <object class="GtkLabel" id="background-transparent-max-label">
156 + <property name="visible">True</property>
157 + <property name="can_focus">False</property>
158 + <property name="xalign">0.5</property>
159 + <property name="label" translatable="yes">full</property>
160 + <style>
161 + <class name="dim-label"/>
162 + </style>
163 + </object>
164 + <packing>
165 + <property name="expand">False</property>
166 + <property name="fill">False</property>
167 + <property name="position">2</property>
168 + </packing>
169 + </child>
170 + </object>
171 + <packing>
172 + <property name="expand">True</property>
173 + <property name="fill">True</property>
174 + <property name="position">1</property>
175 + </packing>
176 + </child>
177 + </object>
178 + <packing>
179 + <property name="expand">True</property>
180 + <property name="fill">True</property>
181 + <property name="position">2</property>
182 + </packing>
183 + </child>
184 </object>
185 </child>
186 </object>
187 diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
188 index 4b734a3961d1..e434075d86af 100644
189 --- a/src/terminal-schemas.h
190 +++ b/src/terminal-schemas.h
191 @@ -69,6 +69,9 @@ G_BEGIN_DECLS
192 #define TERMINAL_PROFILE_VISIBLE_NAME_KEY "visible-name"
193 #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY "word-char-exceptions"
194
195 +#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND "use-transparent-background"
196 +#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent"
197 +
198 #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close"
199 #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar"
200 #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY "menu-accelerator-enabled"
201 diff --git a/src/terminal-screen.c b/src/terminal-screen.c
202 index 017a38ba8365..682b73644179 100644
203 --- a/src/terminal-screen.c
204 +++ b/src/terminal-screen.c
205 @@ -827,7 +827,9 @@ terminal_screen_profile_changed_cb (GSettings *profile,
206 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_COLORS_SET_KEY) ||
207 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_BACKGROUND_COLOR_KEY) ||
208 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_FOREGROUND_COLOR_KEY) ||
209 - prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY))
210 + prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY) ||
211 + prop_name == I_(TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND) ||
212 + prop_name == I_(TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT))
213 update_color_scheme (screen);
214
215 if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
216 @@ -897,6 +899,8 @@ update_color_scheme (TerminalScreen *screen)
217 GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
218 GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
219 GtkStyleContext *context;
220 + GtkWidget *toplevel;
221 + gboolean transparent;
222 gboolean use_theme_colors;
223
224 context = gtk_widget_get_style_context (widget);
225 @@ -938,6 +942,18 @@ update_color_scheme (TerminalScreen *screen)
226 }
227
228 colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
229 +
230 + transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
231 + if (transparent)
232 + {
233 + gint transparency_percent;
234 +
235 + transparency_percent = g_settings_get_int (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT);
236 + bg.alpha = (100 - transparency_percent) / 100.0;
237 + }
238 + else
239 + bg.alpha = 1.0;
240 +
241 vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
242 colors, n_colors);
243 vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
244 @@ -945,6 +961,10 @@ update_color_scheme (TerminalScreen *screen)
245 vte_terminal_set_color_cursor_foreground (VTE_TERMINAL (screen), cursor_fgp);
246 vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
247 vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
248 +
249 + toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
250 + if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
251 + gtk_widget_set_app_paintable (toplevel, transparent);
252 }
253
254 static void
255 diff --git a/src/terminal-window.c b/src/terminal-window.c
256 index a290d9fda733..020c6f00787f 100644
257 --- a/src/terminal-window.c
258 +++ b/src/terminal-window.c
259 @@ -2621,6 +2621,8 @@ terminal_window_init (TerminalWindow *window)
260 TerminalWindowPrivate *priv;
261 TerminalApp *app;
262 TerminalSettingsList *profiles_list;
263 + GdkScreen *screen;
264 + GdkVisual *visual;
265 GSettings *gtk_debug_settings;
266 GtkActionGroup *action_group;
267 GtkAction *action;
268 @@ -2637,6 +2639,11 @@ terminal_window_init (TerminalWindow *window)
269
270 gtk_widget_init_template (GTK_WIDGET (window));
271
272 + screen = gtk_widget_get_screen (GTK_WIDGET (window));
273 + visual = gdk_screen_get_rgba_visual (screen);
274 + if (visual != NULL)
275 + gtk_widget_set_visual (GTK_WIDGET (window), visual);
276 +
277 uuid_generate (u);
278 uuid_unparse (u, uuidstr);
279 priv->uuid = g_strdup (uuidstr);
280 --
281 2.9.3
282
283
284 From 2a5f5cac4d06ab927819c79d2255df3252f070b8 Mon Sep 17 00:00:00 2001
285 From: Lars Uebernickel <[email protected]>
286 Date: Wed, 28 May 2014 14:11:02 +0200
287 Subject: [PATCH 02/14] window: Make the drawing robust across all themes
288
289 There are lots of themes out there in the wild that do not specify a
290 background-color for all widgets and the default is transparent. This
291 is usually not a problem because GTK+ sets an opaque region on the
292 whole window and things without a background-color get drawn with the
293 theme's default background colour. However, to achieve transparency
294 we disable the opaque region by making the window app-paintable. This
295 can lead to transparent menubars or notebook tabs in some themes. We
296 can avoid this by ensuring that the window always renders a background.
297
298 https://bugzilla.gnome.org/show_bug.cgi?id=730016
299 ---
300 src/terminal-window.c | 21 +++++++++++++++++++++
301 1 file changed, 21 insertions(+)
302
303 diff --git a/src/terminal-window.c b/src/terminal-window.c
304 index 020c6f00787f..a9f3ff7d67e2 100644
305 --- a/src/terminal-window.c
306 +++ b/src/terminal-window.c
307 @@ -2295,6 +2295,26 @@ terminal_window_realize (GtkWidget *widget)
308 }
309
310 static gboolean
311 +terminal_window_draw (GtkWidget *widget,
312 + cairo_t *cr)
313 +{
314 + if (gtk_widget_get_app_paintable (widget))
315 + {
316 + GtkStyleContext *context;
317 + int width;
318 + int height;
319 +
320 + context = gtk_widget_get_style_context (widget);
321 + width = gtk_widget_get_allocated_width (widget);
322 + height = gtk_widget_get_allocated_height (widget);
323 + gtk_render_background (context, cr, 0, 0, width, height);
324 + gtk_render_frame (context, cr, 0, 0, width, height);
325 + }
326 +
327 + return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
328 +}
329 +
330 +static gboolean
331 terminal_window_state_event (GtkWidget *widget,
332 GdkEventWindowState *event)
333 {
334 @@ -2832,6 +2852,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
335
336 widget_class->show = terminal_window_show;
337 widget_class->realize = terminal_window_realize;
338 + widget_class->draw = terminal_window_draw;
339 widget_class->window_state_event = terminal_window_state_event;
340 widget_class->screen_changed = terminal_window_screen_changed;
341 widget_class->style_updated = terminal_window_style_updated;
342 --
343 2.9.3
344
345
346 From 1547a94fc53d6598dd1885295edf24a44917bc00 Mon Sep 17 00:00:00 2001
347 From: "Owen W. Taylor" <[email protected]>
348 Date: Fri, 13 Nov 2015 15:16:42 +0100
349 Subject: [PATCH 03/14] screen, window: Extra padding around transparent
350 terminals in Wayland
351
352 https://bugzilla.redhat.com/show_bug.cgi?id=1207943
353 ---
354 src/terminal-screen.c | 40 +++++++++++++++++++++++++++++++++++++---
355 src/terminal-window.c | 18 ++++++++++++------
356 2 files changed, 49 insertions(+), 9 deletions(-)
357
358 diff --git a/src/terminal-screen.c b/src/terminal-screen.c
359 index 682b73644179..be0863b78544 100644
360 --- a/src/terminal-screen.c
361 +++ b/src/terminal-screen.c
362 @@ -137,6 +137,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *,
363 static gboolean terminal_screen_popup_menu (GtkWidget *widget);
364 static gboolean terminal_screen_button_press (GtkWidget *widget,
365 GdkEventButton *event);
366 +static void terminal_screen_hierarchy_changed (GtkWidget *widget,
367 + GtkWidget *previous_toplevel);
368 static gboolean terminal_screen_do_exec (TerminalScreen *screen,
369 FDSetupData *data,
370 GError **error);
371 @@ -482,6 +484,7 @@ terminal_screen_class_init (TerminalScreenClass *klass)
372 widget_class->drag_data_received = terminal_screen_drag_data_received;
373 widget_class->button_press_event = terminal_screen_button_press;
374 widget_class->popup_menu = terminal_screen_popup_menu;
375 + widget_class->hierarchy_changed = terminal_screen_hierarchy_changed;
376
377 terminal_class->child_exited = terminal_screen_child_exited;
378
379 @@ -885,6 +888,32 @@ terminal_screen_profile_changed_cb (GSettings *profile,
380 }
381
382 static void
383 +update_toplevel_transparency (TerminalScreen *screen)
384 +{
385 + GtkWidget *widget = GTK_WIDGET (screen);
386 + TerminalScreenPrivate *priv = screen->priv;
387 + GSettings *profile = priv->profile;
388 + GtkWidget *toplevel;
389 +
390 + toplevel = gtk_widget_get_toplevel (widget);
391 + if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
392 + {
393 + gboolean transparent;
394 +
395 + transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
396 + if (gtk_widget_get_app_paintable (toplevel) != transparent)
397 + {
398 + gtk_widget_set_app_paintable (toplevel, transparent);
399 +
400 + /* The opaque region of the toplevel isn't updated until the toplevel is allocated;
401 + * set_app_paintable() doesn't force an allocation, so do that manually.
402 + */
403 + gtk_widget_queue_resize (toplevel);
404 + }
405 + }
406 +}
407 +
408 +static void
409 update_color_scheme (TerminalScreen *screen)
410 {
411 GtkWidget *widget = GTK_WIDGET (screen);
412 @@ -962,9 +991,7 @@ update_color_scheme (TerminalScreen *screen)
413 vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
414 vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
415
416 - toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
417 - if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
418 - gtk_widget_set_app_paintable (toplevel, transparent);
419 + update_toplevel_transparency (screen);
420 }
421
422 static void
423 @@ -1569,6 +1596,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
424 terminal_screen_popup_info_unref (info);
425 }
426
427 +static void
428 +terminal_screen_hierarchy_changed (GtkWidget *widget,
429 + GtkWidget *previous_toplevel)
430 +{
431 + update_toplevel_transparency (TERMINAL_SCREEN (widget));
432 +}
433 +
434 static gboolean
435 terminal_screen_button_press (GtkWidget *widget,
436 GdkEventButton *event)
437 diff --git a/src/terminal-window.c b/src/terminal-window.c
438 index a9f3ff7d67e2..d09484e40e66 100644
439 --- a/src/terminal-window.c
440 +++ b/src/terminal-window.c
441 @@ -2300,15 +2300,21 @@ terminal_window_draw (GtkWidget *widget,
442 {
443 if (gtk_widget_get_app_paintable (widget))
444 {
445 + GtkAllocation child_allocation;
446 GtkStyleContext *context;
447 - int width;
448 - int height;
449 + GtkWidget *child;
450 +
451 + /* Get the *child* allocation, so we don't overwrite window borders */
452 + child = gtk_bin_get_child (GTK_BIN (widget));
453 + gtk_widget_get_allocation (child, &child_allocation);
454
455 context = gtk_widget_get_style_context (widget);
456 - width = gtk_widget_get_allocated_width (widget);
457 - height = gtk_widget_get_allocated_height (widget);
458 - gtk_render_background (context, cr, 0, 0, width, height);
459 - gtk_render_frame (context, cr, 0, 0, width, height);
460 + gtk_render_background (context, cr,
461 + child_allocation.x, child_allocation.y,
462 + child_allocation.width, child_allocation.height);
463 + gtk_render_frame (context, cr,
464 + child_allocation.x, child_allocation.y,
465 + child_allocation.width, child_allocation.height);
466 }
467
468 return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
469 --
470 2.9.3
471
472
473 From fda30e766cd72e1f863b8de207cc48126ac81a47 Mon Sep 17 00:00:00 2001
474 From: Debarshi Ray <[email protected]>
475 Date: Mon, 31 Oct 2016 18:41:25 +0100
476 Subject: [PATCH 06/14] profile: Drop the 'none' & 'full' markings from the
477 transparency scale
478
479 We didn't have translations for those strings and the scale should be
480 obvious in itself.
481 ---
482 src/profile-preferences.ui | 53 ++++------------------------------------------
483 1 file changed, 4 insertions(+), 49 deletions(-)
484
485 diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui
486 index b7decb284946..e1cb3470d0ee 100644
487 --- a/src/profile-preferences.ui
488 +++ b/src/profile-preferences.ui
489 @@ -1064,56 +1064,11 @@
490 </packing>
491 </child>
492 <child>
493 - <object class="GtkBox" id="background-transparent-scale-box">
494 + <object class="GtkScale" id="background-transparent-scale">
495 <property name="visible">True</property>
496 - <property name="can_focus">False</property>
497 - <property name="orientation">horizontal</property>
498 - <property name="spacing">6</property>
499 - <child>
500 - <object class="GtkLabel" id="background-transparent-min-label">
501 - <property name="visible">True</property>
502 - <property name="can_focus">False</property>
503 - <property name="xalign">0.5</property>
504 - <property name="label" translatable="yes">none</property>
505 - <style>
506 - <class name="dim-label"/>
507 - </style>
508 - </object>
509 - <packing>
510 - <property name="expand">False</property>
511 - <property name="fill">False</property>
512 - <property name="position">0</property>
513 - </packing>
514 - </child>
515 - <child>
516 - <object class="GtkScale" id="background-transparent-scale">
517 - <property name="visible">True</property>
518 - <property name="can_focus">True</property>
519 - <property name="adjustment">background-transparent-adjustment</property>
520 - <property name="draw_value">False</property>
521 - </object>
522 - <packing>
523 - <property name="expand">True</property>
524 - <property name="fill">True</property>
525 - <property name="position">1</property>
526 - </packing>
527 - </child>
528 - <child>
529 - <object class="GtkLabel" id="background-transparent-max-label">
530 - <property name="visible">True</property>
531 - <property name="can_focus">False</property>
532 - <property name="xalign">0.5</property>
533 - <property name="label" translatable="yes">full</property>
534 - <style>
535 - <class name="dim-label"/>
536 - </style>
537 - </object>
538 - <packing>
539 - <property name="expand">False</property>
540 - <property name="fill">False</property>
541 - <property name="position">2</property>
542 - </packing>
543 - </child>
544 + <property name="can_focus">True</property>
545 + <property name="adjustment">background-transparent-adjustment</property>
546 + <property name="draw_value">False</property>
547 </object>
548 <packing>
549 <property name="expand">True</property>
550 --
551 2.9.3
552
553
554 From a2acdf6195fb597488ba2ece85fd27ff82b9c14f Mon Sep 17 00:00:00 2001
555 From: Debarshi Ray <[email protected]>
556 Date: Tue, 17 Feb 2015 17:06:17 +0100
557 Subject: [PATCH 11/14] Restore translations for setting a title and
558 transparency
559
560 ---
561 po/am.po | 4 ++--
562 po/an.po | 8 ++++----
563 po/ar.po | 12 ++++++------
564 po/as.po | 12 ++++++------
565 po/ast.po | 4 ++--
566 po/az.po | 4 ++--
567 po/be.po | 3 +++
568 po/[email protected] | 4 ++--
569 po/bg.po | 6 ++++++
570 po/bn_IN.po | 7 +++++--
571 po/bs.po | 7 +++++++
572 po/ca.po | 9 +++++++++
573 po/[email protected] | 9 +++++++++
574 po/cs.po | 9 +++++++++
575 po/cy.po | 4 ++--
576 po/da.po | 12 ++++++------
577 po/de.po | 12 ++++++------
578 po/dz.po | 4 ++--
579 po/el.po | 11 +++++++----
580 po/[email protected] | 4 ++--
581 po/en_CA.po | 4 ++--
582 po/en_GB.po | 12 ++++++------
583 po/eo.po | 4 ++--
584 po/es.po | 12 ++++++------
585 po/et.po | 3 +++
586 po/eu.po | 12 ++++++------
587 po/fa.po | 11 +++++++----
588 po/fi.po | 9 +++++++++
589 po/fr.po | 9 +++++++++
590 po/fur.po | 8 ++++++--
591 po/ga.po | 3 +++
592 po/gl.po | 12 ++++++------
593 po/gu.po | 12 ++++++------
594 po/he.po | 12 ++++++------
595 po/hi.po | 12 ++++++------
596 po/hr.po | 7 +++++++
597 po/hu.po | 11 +++++++----
598 po/hy.po | 4 ++--
599 po/id.po | 9 +++++++++
600 po/it.po | 9 +++++++++
601 po/ja.po | 9 +++++++++
602 po/ka.po | 2 +-
603 po/kk.po | 9 +++++++++
604 po/kn.po | 11 +++++++----
605 po/ko.po | 9 +++++++++
606 po/ku.po | 4 ++--
607 po/lt.po | 9 +++++++++
608 po/lv.po | 12 ++++++++++++
609 po/mai.po | 4 ++--
610 po/mg.po | 4 ++--
611 po/mk.po | 4 ++--
612 po/ml.po | 4 ++--
613 po/mn.po | 4 ++--
614 po/mr.po | 12 ++++++------
615 po/ms.po | 4 ++--
616 po/nb.po | 9 +++++++++
617 po/nds.po | 4 ++--
618 po/ne.po | 8 ++++----
619 po/nl.po | 11 +++++++----
620 po/nn.po | 4 ++--
621 po/oc.po | 8 ++++----
622 po/or.po | 4 ++--
623 po/pa.po | 19 +++++++++----------
624 po/pl.po | 6 ++++++
625 po/ps.po | 4 ++--
626 po/pt.po | 12 ++++++------
627 po/pt_BR.po | 11 +++++++----
628 po/ro.po | 4 ++--
629 po/ru.po | 13 +++++++++++++
630 po/rw.po | 3 +--
631 po/si.po | 4 ++--
632 po/sk.po | 9 +++++++++
633 po/sl.po | 11 +++++++----
634 po/sq.po | 4 ++--
635 po/sr.po | 18 ++++++++++--------
636 po/[email protected] | 18 ++++++++++--------
637 po/sv.po | 6 ++++++
638 po/ta.po | 19 +++++++++----------
639 po/te.po | 19 +++++++++----------
640 po/tg.po | 8 ++++----
641 po/th.po | 12 ++++++------
642 po/tr.po | 6 ++++++
643 po/ug.po | 4 ++--
644 po/uk.po | 12 ++++++------
645 po/vi.po | 11 +++++++----
646 po/wa.po | 4 ++--
647 po/xh.po | 4 ++--
648 po/zh_CN.po | 11 +++++++----
649 po/zh_HK.po | 11 +++++++----
650 po/zh_TW.po | 11 +++++++----
651 90 files changed, 486 insertions(+), 257 deletions(-)
652
653 diff --git a/po/am.po b/po/am.po
654 index 3445d96da657..a5fadb3a8d48 100644
655 --- a/po/am.po
656 +++ b/po/am.po
657 @@ -614,8 +614,8 @@ msgid "_Text color:"
658 msgstr "የ_ጽሑፍ ቀለም፦"
659
660 #: ../src/gnome-terminal.glade2.h:102
661 -msgid "_Transparent background"
662 -msgstr "_የሚያሳይ መደብ"
663 +msgid "Transparent background"
664 +msgstr "የሚያሳይ መደብ"
665
666 #: ../src/gnome-terminal.glade2.h:103
667 msgid "_Update login records when command is launched"
668 diff --git a/po/an.po b/po/an.po
669 index fcec2668aa11..2c6be805b598 100644
670 --- a/po/an.po
671 +++ b/po/an.po
672 @@ -2241,8 +2241,8 @@ msgstr "_Zarrar a finestra"
673 #~ msgid "Use custom default terminal si_ze"
674 #~ msgstr "Emplegar grandaria predeterminada presonali_zada de terminal"
675
676 -#~ msgid "Title"
677 -#~ msgstr "Titol"
678 +msgid "Title"
679 +msgstr "Titol"
680
681 #~ msgid "When terminal commands set their o_wn titles:"
682 #~ msgstr ""
683 @@ -2340,8 +2340,8 @@ msgstr "_Zarrar a finestra"
684 #~ msgid "_Input Methods"
685 #~ msgstr "Me_todos de dentrada"
686
687 -#~ msgid "_Title:"
688 -#~ msgstr "_Titol:"
689 +msgid "_Title:"
690 +msgstr "_Titol:"
691
692 #~ msgid "Keyboard Shortcuts"
693 #~ msgstr "Alcorces de teclau"
694 diff --git a/po/ar.po b/po/ar.po
695 index fa2b4b54ff13..f68b20a5b826 100644
696 --- a/po/ar.po
697 +++ b/po/ar.po
698 @@ -2313,11 +2313,11 @@ msgstr "أغ_لق النافذة"
699 #~ msgid "Default size:"
700 #~ msgstr "الحجم المبدئي:"
701
702 -#~ msgid "Title"
703 -#~ msgstr "العنوان"
704 +msgid "Title"
705 +msgstr "العنوان"
706
707 -#~ msgid "_Title:"
708 -#~ msgstr "ال_عنوان:"
709 +msgid "_Title:"
710 +msgstr "ال_عنوان:"
711
712 #~ msgid "Title and Command"
713 #~ msgstr "العنوان والأمر"
714 @@ -3108,8 +3108,8 @@ msgstr "أغ_لق النافذة"
715 #~ msgid "Background image _scrolls"
716 #~ msgstr "صورة الخلفية ت_لتف"
717
718 -#~ msgid "_Transparent background"
719 -#~ msgstr "خلفية _شفافة"
720 +msgid "Transparent background"
721 +msgstr "خلفية شفافة"
722
723 #~ msgid "S_hade transparent or image background:"
724 #~ msgstr "_ظلل شفافية أو صورة الخلفية:"
725 diff --git a/po/as.po b/po/as.po
726 index 3fade2b8cb12..7efcd44ab4bb 100644
727 --- a/po/as.po
728 +++ b/po/as.po
729 @@ -2163,11 +2163,11 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
730 #~ msgid "Default size:"
731 #~ msgstr "অবিকল্পিত আকাৰ:"
732
733 -#~ msgid "Title"
734 -#~ msgstr "শীৰ্ষক"
735 +msgid "Title"
736 +msgstr "শীৰ্ষক"
737
738 -#~ msgid "_Title:"
739 -#~ msgstr "শীৰ্ষক (_T):"
740 +msgid "_Title:"
741 +msgstr "শীৰ্ষক (_T):"
742
743 #~ msgid "Title and Command"
744 #~ msgstr "শীৰ্ষক আৰু কমান্ড"
745 @@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
746 #~ msgid "Background image _scrolls"
747 #~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
748
749 -#~ msgid "_Transparent background"
750 -#~ msgstr "স্বচ্চ পটভূমি (_T)"
751 +msgid "Transparent background"
752 +msgstr "স্বচ্চ পটভূমি "
753
754 #~ msgid "S_hade transparent or image background:"
755 #~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
756 diff --git a/po/ast.po b/po/ast.po
757 index d1c6e7b8174a..4210820a1429 100644
758 --- a/po/ast.po
759 +++ b/po/ast.po
760 @@ -1598,8 +1598,8 @@ msgid "_Text color:"
761 msgstr "Color del _testu:"
762
763 #: ../src/profile-preferences.glade.h:77
764 -msgid "_Transparent background"
765 -msgstr "Fondu _tresparente"
766 +msgid "Transparent background"
767 +msgstr "Fondu tresparente"
768
769 #: ../src/profile-preferences.glade.h:78
770 msgid "_Underline color:"
771 diff --git a/po/az.po b/po/az.po
772 index 586c1e4d827b..6bed64a15ddc 100644
773 --- a/po/az.po
774 +++ b/po/az.po
775 @@ -620,8 +620,8 @@ msgid "_Text color:"
776 msgstr "_Mətn rəngi:"
777
778 #: ../src/gnome-terminal.glade2.h:102
779 -msgid "_Transparent background"
780 -msgstr "_Şəffaf arxa plan"
781 +msgid "Transparent background"
782 +msgstr "Şəffaf arxa plan"
783
784 #: ../src/gnome-terminal.glade2.h:103
785 msgid "_Update login records when command is launched"
786 diff --git a/po/be.po b/po/be.po
787 index 1e45906547be..cd3fe0b7b6b2 100644
788 --- a/po/be.po
789 +++ b/po/be.po
790 @@ -2015,3 +2015,6 @@ msgstr ""
791 msgid "C_lose Window"
792 msgstr "_Закрыць акно"
793
794 +msgid "Transparent background"
795 +msgstr "Празрысты фон"
796 +
797 diff --git a/po/[email protected] b/po/[email protected]
798 index 82ef0664ae1e..73d74fbeb124 100644
799 --- a/po/[email protected]
800 +++ b/po/[email protected]
801 @@ -1426,8 +1426,8 @@ msgid "_Text color:"
802 msgstr "Koler _tekstu:"
803
804 #: ../src/profile-preferences.glade.h:73
805 -msgid "_Transparent background"
806 -msgstr "_Prazrysty fon"
807 +msgid "Transparent background"
808 +msgstr "Prazrysty fon"
809
810 #: ../src/profile-preferences.glade.h:74
811 msgid "_Update login records when command is launched"
812 diff --git a/po/bg.po b/po/bg.po
813 index f42c22c94678..e224d3800304 100644
814 --- a/po/bg.po
815 +++ b/po/bg.po
816 @@ -2281,3 +2281,9 @@ msgstr ""
817 #: ../src/terminal-window.c:3727
818 msgid "C_lose Window"
819 msgstr "_Затваряне на този прозорец"
820 +
821 +msgid "Transparent background"
822 +msgstr "Прозрачен фон"
823 +
824 +msgid "_Title:"
825 +msgstr "_Заглавие:"
826 \ No newline at end of file
827 diff --git a/po/bn_IN.po b/po/bn_IN.po
828 index f196e5084797..55989e165566 100644
829 --- a/po/bn_IN.po
830 +++ b/po/bn_IN.po
831 @@ -2356,5 +2356,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
832 #~ msgid "_Input Methods"
833 #~ msgstr "ইনপুট পদ্ধতি (_I)"
834
835 -#~ msgid "_Title:"
836 -#~ msgstr "শিরোনাম: (_T)"
837 +msgid "_Title:"
838 +msgstr "শিরোনাম: (_T)"
839 +
840 +msgid "Transparent background"
841 +msgstr "স্বচ্চ পটভূমি "
842 diff --git a/po/bs.po b/po/bs.po
843 index 49e710859ac9..6c06b272eacf 100644
844 --- a/po/bs.po
845 +++ b/po/bs.po
846 @@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
847 msgid "Keyboard shortcut to make font smaller"
848 msgstr "Kratica tastature za smanjivanje fonta"
849
850 +#: ../src/gnome-terminal.glade2.h:102
851 +msgid "Transparent background"
852 +msgstr "Providna pozadina"
853 +
854 #: ../src/org.gnome.Terminal.gschema.xml.h:78
855 msgid "Keyboard shortcut to make font normal-size"
856 msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
857 @@ -2054,3 +2058,6 @@ msgstr ""
858 #: ../src/terminal-window.c:3652
859 msgid "C_lose Window"
860 msgstr "_Zatvori prozor"
861 +
862 +msgid "_Title:"
863 +msgstr "_Naslov:"
864 diff --git a/po/ca.po b/po/ca.po
865 index c80c2572d11e..b39546b26fcf 100644
866 --- a/po/ca.po
867 +++ b/po/ca.po
868 @@ -2304,3 +2304,12 @@ msgstr "Tanca la _finestra"
869
870 #~ msgid "Whether to use a dark theme variant"
871 #~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
872 +
873 +msgid "Transparent background"
874 +msgstr "Fons transparent"
875 +
876 +msgid "Title"
877 +msgstr "Títol"
878 +
879 +msgid "_Title:"
880 +msgstr "Tít_ol:"
881 \ No newline at end of file
882 diff --git a/po/[email protected] b/po/[email protected]
883 index 2dafab8ca90d..e9752ab36882 100644
884 --- a/po/[email protected]
885 +++ b/po/[email protected]
886 @@ -2092,3 +2092,12 @@ msgstr ""
887 #: ../src/terminal-window.c:3645
888 msgid "C_lose Window"
889 msgstr "Tanca la _finestra"
890 +
891 +msgid "Transparent background"
892 +msgstr "Fons transparent"
893 +
894 +msgid "Title"
895 +msgstr "Títol"
896 +
897 +msgid "_Title:"
898 +msgstr "Tít_ol:"
899 diff --git a/po/cs.po b/po/cs.po
900 index f87b88f9bb3a..d2e90ddc7068 100644
901 --- a/po/cs.po
902 +++ b/po/cs.po
903 @@ -2253,3 +2253,12 @@ msgstr ""
904 #: ../src/terminal-window.c:3849
905 msgid "C_lose Window"
906 msgstr "_Zavřít okno"
907 +
908 +msgid "Transparent background"
909 +msgstr "Průsvitné pozadí"
910 +
911 +msgid "Title"
912 +msgstr "Záhlaví"
913 +
914 +msgid "_Title:"
915 +msgstr "Zá_hlaví:"
916 \ No newline at end of file
917 diff --git a/po/cy.po b/po/cy.po
918 index 644df82363f1..f0c96e7aa85b 100644
919 --- a/po/cy.po
920 +++ b/po/cy.po
921 @@ -1448,8 +1448,8 @@ msgid "_Text color:"
922 msgstr "Lliw'r _testun:"
923
924 #: ../src/profile-preferences.glade.h:73
925 -msgid "_Transparent background"
926 -msgstr "Cefndir _tryloyw"
927 +msgid "Transparent background"
928 +msgstr "Cefndir tryloyw"
929
930 #: ../src/profile-preferences.glade.h:74
931 msgid "_Update login records when command is launched"
932 diff --git a/po/da.po b/po/da.po
933 index 193a58c0fd14..f957d0c7cf1f 100644
934 --- a/po/da.po
935 +++ b/po/da.po
936 @@ -2368,11 +2368,11 @@ msgstr "_Luk vindue"
937 #~ msgid "Default size:"
938 #~ msgstr "Standardstørrelse:"
939
940 -#~ msgid "Title"
941 -#~ msgstr "Titel"
942 +msgid "Title"
943 +msgstr "Titel"
944
945 -#~ msgid "_Title:"
946 -#~ msgstr "_Titel:"
947 +msgid "_Title:"
948 +msgstr "_Titel:"
949
950 #~ msgid "Title and Command"
951 #~ msgstr "Titel og kommando"
952 @@ -3183,8 +3183,8 @@ msgstr "_Luk vindue"
953 #~ msgid "_Solid color"
954 #~ msgstr "_Ensfarvet"
955
956 -#~ msgid "_Transparent background"
957 -#~ msgstr "_Gennemsigtig baggrund"
958 +msgid "Transparent background"
959 +msgstr "Gennemsigtig baggrund"
960
961 #~ msgid ""
962 #~ "You already have a profile called “%s”. Do you want to create another "
963 diff --git a/po/de.po b/po/de.po
964 index 7e098bd312ac..c38bc2854549 100644
965 --- a/po/de.po
966 +++ b/po/de.po
967 @@ -2428,11 +2428,11 @@ msgstr "Fenster _schließen"
968 #~ msgid "Default size:"
969 #~ msgstr "Vorgabegröße:"
970
971 -#~ msgid "Title"
972 -#~ msgstr "Titel"
973 +msgid "Title"
974 +msgstr "Titel"
975
976 -#~ msgid "_Title:"
977 -#~ msgstr "_Titel:"
978 +msgid "_Title:"
979 +msgstr "_Titel:"
980
981 #~ msgid "Title and Command"
982 #~ msgstr "Titel und Befehl"
983 @@ -3263,8 +3263,8 @@ msgstr "Fenster _schließen"
984 #~ msgid "Background image _scrolls"
985 #~ msgstr "Hintergrundbild _folgt Bildlauf"
986
987 -#~ msgid "_Transparent background"
988 -#~ msgstr "_Transparenter Hintergrund"
989 +msgid "Transparent background"
990 +msgstr "Transparenter Hintergrund"
991
992 #~ msgid "S_hade transparent or image background:"
993 #~ msgstr "Transparenz und Bildhintergründe _abdunkeln:"
994 diff --git a/po/dz.po b/po/dz.po
995 index d97e6102b850..061a09dc9edb 100644
996 --- a/po/dz.po
997 +++ b/po/dz.po
998 @@ -1551,8 +1551,8 @@ msgid "_Text color:"
999 msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
1000
1001 #: ../src/profile-preferences.glade.h:77
1002 -msgid "_Transparent background"
1003 -msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)"
1004 +msgid "Transparent background"
1005 +msgstr "དྭངས་གསལ་རྒྱབ་གཞི།"
1006
1007 #: ../src/profile-preferences.glade.h:78
1008 #, fuzzy
1009 diff --git a/po/el.po b/po/el.po
1010 index 911f7bd0483b..dc8ebc1e7f45 100644
1011 --- a/po/el.po
1012 +++ b/po/el.po
1013 @@ -2440,11 +2440,11 @@ msgstr "Κ_λείσιμο παραθύρου"
1014 #~ msgid "Default size:"
1015 #~ msgstr "Προεπιλεγμένο μέγεθος:"
1016
1017 -#~ msgid "Title"
1018 -#~ msgstr "Τίτλος"
1019 +msgid "Title"
1020 +msgstr "Τίτλος"
1021
1022 -#~ msgid "_Title:"
1023 -#~ msgstr "_Τίτλος:"
1024 +msgid "_Title:"
1025 +msgstr "_Τίτλος:"
1026
1027 #~ msgid "Title and Command"
1028 #~ msgstr "Τίτλος και εντολή"
1029 @@ -2515,3 +2515,6 @@ msgstr "Κ_λείσιμο παραθύρου"
1030
1031 #~ msgid "_Input Methods"
1032 #~ msgstr "_Μέθοδοι εισαγωγής"
1033 +
1034 +msgid "Transparent background"
1035 +msgstr "Διάφανο παρασκήνιο"
1036 diff --git a/po/[email protected] b/po/[email protected]
1037 index 82b2d53401b2..67b429810d40 100644
1038 --- a/po/[email protected]
1039 +++ b/po/[email protected]
1040 @@ -1468,8 +1468,8 @@ msgid "_Text color:"
1041 msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
1042
1043 #: ../src/profile-preferences.glade.h:78
1044 -msgid "_Transparent background"
1045 -msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1046 +msgid "Transparent background"
1047 +msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
1048
1049 #: ../src/profile-preferences.glade.h:79
1050 msgid "_Underline color:"
1051 diff --git a/po/en_CA.po b/po/en_CA.po
1052 index 6c9e0cd73d63..3ffa89b7cfee 100644
1053 --- a/po/en_CA.po
1054 +++ b/po/en_CA.po
1055 @@ -557,8 +557,8 @@ msgid "_Text color:"
1056 msgstr "_Text colour:"
1057
1058 #: ../src/gnome-terminal.glade2.h:86
1059 -msgid "_Transparent background"
1060 -msgstr "_Transparent background"
1061 +msgid "Transparent background"
1062 +msgstr "Transparent background"
1063
1064 #: ../src/gnome-terminal.glade2.h:87
1065 msgid "_Update login records when command is launched"
1066 diff --git a/po/en_GB.po b/po/en_GB.po
1067 index 2fb1448eccbe..59a617aaa48b 100644
1068 --- a/po/en_GB.po
1069 +++ b/po/en_GB.po
1070 @@ -2386,8 +2386,8 @@ msgstr "C_lose Window"
1071 #~ msgid "Default size:"
1072 #~ msgstr "Default size:"
1073
1074 -#~ msgid "Title"
1075 -#~ msgstr "Title"
1076 +msgid "Title"
1077 +msgstr "Title"
1078
1079 #~ msgid "When terminal commands set their o_wn titles:"
1080 #~ msgstr "When terminal commands set their o_wn titles:"
1081 @@ -2473,8 +2473,8 @@ msgstr "C_lose Window"
1082 #~ msgid "_Input Methods"
1083 #~ msgstr "_Input Methods"
1084
1085 -#~ msgid "_Title:"
1086 -#~ msgstr "_Title:"
1087 +msgid "_Title:"
1088 +msgstr "_Title:"
1089
1090 #~ msgid "Add or Remove Terminal Encodings"
1091 #~ msgstr "Add or Remove Terminal Encodings"
1092 @@ -3176,8 +3176,8 @@ msgstr "C_lose Window"
1093 #~ msgid "Background image _scrolls"
1094 #~ msgstr "Background image _scrolls"
1095
1096 -#~ msgid "_Transparent background"
1097 -#~ msgstr "_Transparent background"
1098 +msgid "Transparent background"
1099 +msgstr "Transparent background"
1100
1101 #~ msgid "S_hade transparent or image background:"
1102 #~ msgstr "S_hade transparent or image background:"
1103 diff --git a/po/eo.po b/po/eo.po
1104 index 567c08dc1da8..d067c0e9a7b9 100644
1105 --- a/po/eo.po
1106 +++ b/po/eo.po
1107 @@ -2299,8 +2299,8 @@ msgstr "_Fermi la fenestron"
1108 #~ msgid "_Input Methods"
1109 #~ msgstr "_Enigmetodoj"
1110
1111 -#~ msgid "_Title:"
1112 -#~ msgstr "_Titolo:"
1113 +msgid "_Title:"
1114 +msgstr "_Titolo:"
1115
1116 #~ msgid "On the left side"
1117 #~ msgstr "Maldekstre"
1118 diff --git a/po/es.po b/po/es.po
1119 index 70fc6fcf9a88..4bd3c0cdbe71 100644
1120 --- a/po/es.po
1121 +++ b/po/es.po
1122 @@ -2410,11 +2410,11 @@ msgstr "_Cerrar ventana"
1123 #~ msgid "Default size:"
1124 #~ msgstr "Tamaño predeterminado:"
1125
1126 -#~ msgid "Title"
1127 -#~ msgstr "Título"
1128 +msgid "Title"
1129 +msgstr "Título"
1130
1131 -#~ msgid "_Title:"
1132 -#~ msgstr "_Título:"
1133 +msgid "_Title:"
1134 +msgstr "_Título:"
1135
1136 #~ msgid "Title and Command"
1137 #~ msgstr "Título y comando"
1138 @@ -3291,8 +3291,8 @@ msgstr "_Cerrar ventana"
1139 #~ msgid "_Solid color"
1140 #~ msgstr "Color _sólido"
1141
1142 -#~ msgid "_Transparent background"
1143 -#~ msgstr "Fondo _transparente"
1144 +msgid "Transparent background"
1145 +msgstr "Fondo transparente"
1146
1147 #~ msgid "No such profile \"%s\", using default profile\n"
1148 #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
1149 diff --git a/po/et.po b/po/et.po
1150 index 4b1c2a7c67e4..770761168806 100644
1151 --- a/po/et.po
1152 +++ b/po/et.po
1153 @@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
1154
1155 #~ msgid "Choose base profile"
1156 #~ msgstr "Vali põhiprofiil"
1157 +
1158 +msgid "Transparent background"
1159 +msgstr "Läbipaistev taust"
1160 diff --git a/po/eu.po b/po/eu.po
1161 index c7b9e2b4529e..b6619c68ddd6 100644
1162 --- a/po/eu.po
1163 +++ b/po/eu.po
1164 @@ -2369,11 +2369,11 @@ msgstr "It_xi leihoa"
1165 #~ msgid "Default size:"
1166 #~ msgstr "Tamaina lehenetsia:"
1167
1168 -#~ msgid "Title"
1169 -#~ msgstr "Titulua"
1170 +msgid "Title"
1171 +msgstr "Titulua"
1172
1173 -#~ msgid "_Title:"
1174 -#~ msgstr "_Titulua:"
1175 +msgid "_Title:"
1176 +msgstr "_Titulua:"
1177
1178 #~ msgid "Title and Command"
1179 #~ msgstr "Titulua eta komandoa"
1180 @@ -3169,8 +3169,8 @@ msgstr "It_xi leihoa"
1181 #~ msgid "_Solid color"
1182 #~ msgstr "_Kolore solidoa"
1183
1184 -#~ msgid "_Transparent background"
1185 -#~ msgstr "_Atzeko plano gardena"
1186 +msgid "Transparent background"
1187 +msgstr "Atzeko plano gardena"
1188
1189 #~ msgid ""
1190 #~ "You already have a profile called “%s”. Do you want to create another "
1191 diff --git a/po/fa.po b/po/fa.po
1192 index cb551a1ecd07..1dbf53896b80 100644
1193 --- a/po/fa.po
1194 +++ b/po/fa.po
1195 @@ -2363,8 +2363,8 @@ msgstr "_بستن پنجره"
1196 #~ msgid "Use custom default terminal si_ze"
1197 #~ msgstr "استفاده از اندازه‌ی _سفارشی پایانه‌ی پیش‌فرض"
1198
1199 -#~ msgid "Title"
1200 -#~ msgstr "عنوان"
1201 +msgid "Title"
1202 +msgstr "عنوان"
1203
1204 #~ msgid "When terminal commands set their o_wn titles:"
1205 #~ msgstr "وقتی که فرمان‌های پایانه عنوان‌های _خودشان را تنظیم می‌کنند:"
1206 @@ -2447,5 +2447,8 @@ msgstr "_بستن پنجره"
1207 #~ msgid "_Input Methods"
1208 #~ msgstr "روش‌های _ورودی"
1209
1210 -#~ msgid "_Title:"
1211 -#~ msgstr "_عنوان:"
1212 +msgid "_Title:"
1213 +msgstr "_عنوان:"
1214 +
1215 +msgid "Transparent background"
1216 +msgstr "پس‌زمینه‌ی شفاف"
1217 diff --git a/po/fi.po b/po/fi.po
1218 index a8cd6e1cb1f1..d6bbef3dbe0b 100644
1219 --- a/po/fi.po
1220 +++ b/po/fi.po
1221 @@ -2294,9 +2294,18 @@ msgstr "_Sulje ikkuna"
1222 #~ msgid "_Update login records when command is launched"
1223 #~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
1224
1225 +msgid "Transparent background"
1226 +msgstr "Läpinäkyvä tausta"
1227 +
1228 #~| msgid "Error parsing command: %s"
1229 #~ msgid "Missing command"
1230 #~ msgstr "Puuttuva komento"
1231
1232 #~ msgid "Whether to use a dark theme variant"
1233 #~ msgstr "Käytetäänkö teeman tummaan muunnelmaa"
1234 +
1235 +msgid "Title"
1236 +msgstr "Otsikko"
1237 +
1238 +msgid "_Title:"
1239 +msgstr "_Otsikko:"
1240 \ No newline at end of file
1241 diff --git a/po/fr.po b/po/fr.po
1242 index 40019d1a82ec..7fc7cebb5281 100644
1243 --- a/po/fr.po
1244 +++ b/po/fr.po
1245 @@ -2309,3 +2309,12 @@ msgstr "Fermer _la fenêtre"
1246
1247 #~ msgid "_Same as text color"
1248 #~ msgstr "_Même couleur que le texte"
1249 +
1250 +msgid "Transparent background"
1251 +msgstr "Arrière-plan transparent"
1252 +
1253 +msgid "Title"
1254 +msgstr "Titre"
1255 +
1256 +msgid "_Title:"
1257 +msgstr "_Titre :"
1258 diff --git a/po/fur.po b/po/fur.po
1259 index 226600854fcd..908d9f6fb127 100644
1260 --- a/po/fur.po
1261 +++ b/po/fur.po
1262 @@ -634,6 +634,10 @@ msgstr ""
1263 msgid "Which encoding to use"
1264 msgstr "Codifiche di doprâ"
1265
1266 +#: ../src/gnome-terminal.glade2.h:86
1267 +msgid "Transparent background"
1268 +msgstr "Fondâl trasparent"
1269 +
1270 #: ../src/org.gnome.Terminal.gschema.xml.h:63
1271 msgid ""
1272 "Whether ambiguous-width characters are narrow or wide when using UTF-8 "
1273 @@ -3145,8 +3149,8 @@ msgstr "_Siere barcon"
1274 #~ msgid "_Input Methods"
1275 #~ msgstr "_Cemût inserî test"
1276
1277 -#~ msgid "_Title:"
1278 -#~ msgstr "_Titul:"
1279 +msgid "_Title:"
1280 +msgstr "_Titul:"
1281
1282 #~ msgid ""
1283 #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
1284 diff --git a/po/ga.po b/po/ga.po
1285 index 93d5fa9d1481..feb87dce3d6b 100644
1286 --- a/po/ga.po
1287 +++ b/po/ga.po
1288 @@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
1289 #: ../src/terminal-window.c:3582
1290 msgid "C_lose Terminal"
1291 msgstr "_Dún Teirminéal"
1292 +
1293 +msgid "Transparent background"
1294 +msgstr "Cúlra trédhearcach"
1295 diff --git a/po/gl.po b/po/gl.po
1296 index 910f98611ab5..4047f7f8f26a 100644
1297 --- a/po/gl.po
1298 +++ b/po/gl.po
1299 @@ -2383,11 +2383,11 @@ msgstr "P_echar a xanela"
1300 #~ msgid "Default size:"
1301 #~ msgstr "Tamaño predeterminado:"
1302
1303 -#~ msgid "Title"
1304 -#~ msgstr "Título"
1305 +msgid "Title"
1306 +msgstr "Título"
1307
1308 -#~ msgid "_Title:"
1309 -#~ msgstr "_Título:"
1310 +msgid "_Title:"
1311 +msgstr "_Título:"
1312
1313 #~ msgid "Title and Command"
1314 #~ msgstr "Título e orde"
1315 @@ -3246,8 +3246,8 @@ msgstr "P_echar a xanela"
1316 #~ msgid "Background image _scrolls"
1317 #~ msgstr "A imaxe de fondo _desprázase"
1318
1319 -#~ msgid "_Transparent background"
1320 -#~ msgstr "Fondo _transparente"
1321 +msgid "Transparent background"
1322 +msgstr "Fondo transparente"
1323
1324 #~ msgid "S_hade transparent or image background:"
1325 #~ msgstr "_Sombra transparente ou imaxe de fondo:"
1326 diff --git a/po/gu.po b/po/gu.po
1327 index 76b459cf8dc5..153ab9177385 100644
1328 --- a/po/gu.po
1329 +++ b/po/gu.po
1330 @@ -2155,8 +2155,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1331 #~ msgid "Default size:"
1332 #~ msgstr "મૂળભૂત માપ:"
1333
1334 -#~ msgid "Title"
1335 -#~ msgstr "શીર્ષક"
1336 +msgid "Title"
1337 +msgstr "શીર્ષક"
1338
1339 #~ msgid "When terminal commands set their o_wn titles:"
1340 #~ msgstr "જ્યારે આદેશો તેમના પોતાના શીર્ષકો સુયોજીત કરે (_w):"
1341 @@ -2203,8 +2203,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1342 #~ msgid "_Input Methods"
1343 #~ msgstr "ઈનપુટ માટેની પધ્ધિતિઓ (_I)"
1344
1345 -#~ msgid "_Title:"
1346 -#~ msgstr "શીર્ષક (_T):"
1347 +msgid "_Title:"
1348 +msgstr "શીર્ષક (_T):"
1349
1350 #~ msgid "Keyboard shortcut to switch to tab 1"
1351 #~ msgstr "ટૅબ ૧ પર જવા માટે કીબોર્ડનું ટુંકાણ"
1352 @@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
1353 #~ msgid "_Solid color"
1354 #~ msgstr "ઘટ્ટ રંગ (_S)"
1355
1356 -#~ msgid "_Transparent background"
1357 -#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)"
1358 +msgid "Transparent background"
1359 +msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ"
1360
1361 #~ msgid "No such profile \"%s\", using default profile\n"
1362 #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
1363 diff --git a/po/he.po b/po/he.po
1364 index 57cb2d0d110f..618cc5a878b3 100644
1365 --- a/po/he.po
1366 +++ b/po/he.po
1367 @@ -2333,11 +2333,11 @@ msgstr "סגירת ה_חלון"
1368 #~ msgid "Default size:"
1369 #~ msgstr "גודל בררת מחדל:"
1370
1371 -#~ msgid "Title"
1372 -#~ msgstr "כותרת"
1373 +msgid "Title"
1374 +msgstr "כותרת"
1375
1376 -#~ msgid "_Title:"
1377 -#~ msgstr "_כותרת:"
1378 +msgid "_Title:"
1379 +msgstr "_כותרת:"
1380
1381 #~ msgid "Title and Command"
1382 #~ msgstr "כותרת ופקודה"
1383 @@ -3194,8 +3194,8 @@ msgstr "סגירת ה_חלון"
1384 #~ msgid "_Solid color"
1385 #~ msgstr "צבע _אחיד"
1386
1387 -#~ msgid "_Transparent background"
1388 -#~ msgstr "רקע _שקוף"
1389 +msgid "Transparent background"
1390 +msgstr "רקע שקוף"
1391
1392 #~ msgid "No such profile \"%s\", using default profile\n"
1393 #~ msgstr "No such profile \"%s\", using default profile\n"
1394 diff --git a/po/hi.po b/po/hi.po
1395 index 2d7dc5b14008..d71a880a4acb 100644
1396 --- a/po/hi.po
1397 +++ b/po/hi.po
1398 @@ -2268,8 +2268,8 @@ msgstr "विंडो बंद करें (_l)"
1399 #~ msgstr "कस्टम डिफ़ॉल्ट टर्मिनल आकार का उपयोग करें (_z)"
1400
1401 #~| msgid "_Title:"
1402 -#~ msgid "Title"
1403 -#~ msgstr "शीर्षक"
1404 +msgid "Title"
1405 +msgstr "शीर्षक"
1406
1407 #~ msgid "When terminal commands set their o_wn titles:"
1408 #~ msgstr "जब टर्मिनल कमांड उनका अपना शीर्षक सेट करता है (_w):"
1409 @@ -2349,8 +2349,8 @@ msgstr "विंडो बंद करें (_l)"
1410 #~ msgid "_Input Methods"
1411 #~ msgstr "इनपुट विधियाँ (_I)"
1412
1413 -#~ msgid "_Title:"
1414 -#~ msgstr "शीर्षक (_T):"
1415 +msgid "_Title:"
1416 +msgstr "शीर्षक (_T):"
1417
1418 #~ msgid "Disable connection to session manager"
1419 #~ msgstr "सत्र प्रबंधक में कनेक्शन निष्क्रिय करें"
1420 @@ -2979,8 +2979,8 @@ msgstr "विंडो बंद करें (_l)"
1421 #~ msgid "_Background image"
1422 #~ msgstr "पृष्ठभूमि छवि (_B)"
1423
1424 -#~ msgid "_Transparent background"
1425 -#~ msgstr "पारदर्शी पृष्ठभूमि (_T)"
1426 +msgid "Transparent background"
1427 +msgstr "पारदर्शी पृष्ठभूमि"
1428
1429 #~ msgid "S/Key Challenge Response"
1430 #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
1431 diff --git a/po/hr.po b/po/hr.po
1432 index 099791b7db35..af9e6ad78c86 100644
1433 --- a/po/hr.po
1434 +++ b/po/hr.po
1435 @@ -2287,3 +2287,10 @@ msgstr ""
1436 #: ../src/terminal-window.c:3864
1437 msgid "C_lose Window"
1438 msgstr "_Zatvori prozor"
1439 +
1440 +#: ../src/profile-preferences.glade.h:69
1441 +msgid "Transparent background"
1442 +msgstr "Prozirna pozadina"
1443 +
1444 +msgid "_Title:"
1445 +msgstr "_Naslov:"
1446 diff --git a/po/hu.po b/po/hu.po
1447 index 8fc02debf569..516bbee9dd89 100644
1448 --- a/po/hu.po
1449 +++ b/po/hu.po
1450 @@ -2375,11 +2375,11 @@ msgstr "_Ablak bezárása"
1451 #~ msgid "Default size:"
1452 #~ msgstr "Alapértelmezett méret:"
1453
1454 -#~ msgid "Title"
1455 -#~ msgstr "Cím"
1456 +msgid "Title"
1457 +msgstr "Cím"
1458
1459 -#~ msgid "_Title:"
1460 -#~ msgstr "_Cím:"
1461 +msgid "_Title:"
1462 +msgstr "_Cím:"
1463
1464 #~ msgid "Title and Command"
1465 #~ msgstr "Cím és parancs"
1466 @@ -2699,3 +2699,6 @@ msgstr "_Ablak bezárása"
1467
1468 #~ msgid "Background image"
1469 #~ msgstr "Háttérkép"
1470 +
1471 +msgid "Transparent background"
1472 +msgstr "Áttetsző háttér"
1473 diff --git a/po/hy.po b/po/hy.po
1474 index aaf2d9b292da..c8f14dfd4280 100644
1475 --- a/po/hy.po
1476 +++ b/po/hy.po
1477 @@ -1012,8 +1012,8 @@ msgid "_Text color:"
1478 msgstr "_Տեքստի գույնը՝"
1479
1480 #: ../src/profile-preferences.glade.h:73
1481 -msgid "_Transparent background"
1482 -msgstr "_Թափանցիկ նախադրյալ"
1483 +msgid "Transparent background"
1484 +msgstr "Թափանցիկ նախադրյալ"
1485
1486 #: ../src/profile-preferences.glade.h:74
1487 msgid "_Update login records when command is launched"
1488 diff --git a/po/id.po b/po/id.po
1489 index b27605c49b9b..c4c4163b2db1 100644
1490 --- a/po/id.po
1491 +++ b/po/id.po
1492 @@ -2252,3 +2252,12 @@ msgstr ""
1493 #: ../src/terminal-window.c:3849
1494 msgid "C_lose Window"
1495 msgstr "Tutup Jende_la"
1496 +
1497 +msgid "Transparent background"
1498 +msgstr "Latar belakang transparan"
1499 +
1500 +msgid "Title"
1501 +msgstr "Judul"
1502 +
1503 +msgid "_Title:"
1504 +msgstr "_Judul:"
1505 \ No newline at end of file
1506 diff --git a/po/it.po b/po/it.po
1507 index b7bdc71451b0..b959dedb654c 100644
1508 --- a/po/it.po
1509 +++ b/po/it.po
1510 @@ -2289,3 +2289,12 @@ msgstr ""
1511 #: ../src/terminal-window.c:3849
1512 msgid "C_lose Window"
1513 msgstr "Chiudi _finestra"
1514 +
1515 +msgid "Transparent background"
1516 +msgstr "Sfondo trasparente"
1517 +
1518 +msgid "Title"
1519 +msgstr "Titolo"
1520 +
1521 +msgid "_Title:"
1522 +msgstr "_Titolo:"
1523 \ No newline at end of file
1524 diff --git a/po/ja.po b/po/ja.po
1525 index f7235d9f4a0b..2d009188a320 100644
1526 --- a/po/ja.po
1527 +++ b/po/ja.po
1528 @@ -1907,3 +1907,12 @@ msgstr "ウィンドウを閉じる(_L)"
1529
1530 #~ msgid "_Update login records when command is launched"
1531 #~ msgstr "コマンドを実行した時にログイン記録を更新する(_U)"
1532 +
1533 +msgid "Transparent background"
1534 +msgstr "透過な画像にする"
1535 +
1536 +msgid "Title"
1537 +msgstr "タイトル"
1538 +
1539 +msgid "_Title:"
1540 +msgstr "タイトル(_T):"
1541 \ No newline at end of file
1542 diff --git a/po/ka.po b/po/ka.po
1543 index 2a0bc91fad40..10a833ad4cad 100644
1544 --- a/po/ka.po
1545 +++ b/po/ka.po
1546 @@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერი:"
1547
1548 #: ../src/gnome-terminal.glade2.h:86
1549 #, fuzzy
1550 -msgid "_Transparent background"
1551 +msgid "Transparent background"
1552 msgstr "გამჭირვალე"
1553
1554 #: ../src/gnome-terminal.glade2.h:87
1555 diff --git a/po/kk.po b/po/kk.po
1556 index 70caf943e846..d41be34c99ae 100644
1557 --- a/po/kk.po
1558 +++ b/po/kk.po
1559 @@ -2213,3 +2213,12 @@ msgstr "Терезені жа_бу"
1560
1561 #~ msgid "Be quiet"
1562 #~ msgstr "Тыныш болу"
1563 +
1564 +msgid "Transparent background"
1565 +msgstr "Мөлдір фон"
1566 +
1567 +msgid "Title"
1568 +msgstr "Атауы"
1569 +
1570 +msgid "_Title:"
1571 +msgstr "А_тауы:"
1572 \ No newline at end of file
1573 diff --git a/po/kn.po b/po/kn.po
1574 index c887f88a2c87..dc14ae31ce76 100644
1575 --- a/po/kn.po
1576 +++ b/po/kn.po
1577 @@ -2261,8 +2261,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1578 #~ msgid "Use custom default terminal si_ze"
1579 #~ msgstr "ಅಗತ್ಯಾನುಗುಣ ಆದೇಶತೆರೆ ಗಾತ್ರವನ್ನು ಬಳಸು (_z)"
1580
1581 -#~ msgid "Title"
1582 -#~ msgstr "ಶೀರ್ಷಿಕೆ"
1583 +msgid "Title"
1584 +msgstr "ಶೀರ್ಷಿಕೆ"
1585
1586 #~ msgid "When terminal commands set their o_wn titles:"
1587 #~ msgstr "ಆದೇಶಗಳು ತಮ್ಮದೆ ಆದ ಹೆಸರಗಳನ್ನು ಇರಿಸಿಕೊಂಡಾಗ (_w):"
1588 @@ -2342,5 +2342,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1589 #~ msgid "_Input Methods"
1590 #~ msgstr "ಇನ್‌ಪುಟ್ ಕ್ರಮಗಳು (_I)"
1591
1592 -#~ msgid "_Title:"
1593 -#~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
1594 +msgid "_Title:"
1595 +msgstr "ಶೀರ್ಷಿಕೆ(_T):"
1596 +
1597 +msgid "Transparent background"
1598 +msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
1599 diff --git a/po/ko.po b/po/ko.po
1600 index 366a5122c251..1369c9dcebe4 100644
1601 --- a/po/ko.po
1602 +++ b/po/ko.po
1603 @@ -2281,3 +2281,12 @@ msgstr "창 닫기(_L)"
1604
1605 #~ msgid "Whether to use a dark theme variant"
1606 #~ msgstr "어두운 테마를 사용할 지 여부"
1607 +
1608 +msgid "Transparent background"
1609 +msgstr "투명한 배경"
1610 +
1611 +msgid "Title"
1612 +msgstr "제목"
1613 +
1614 +msgid "_Title:"
1615 +msgstr "제목(_T):"
1616 \ No newline at end of file
1617 diff --git a/po/ku.po b/po/ku.po
1618 index bc2bb7f03de4..226d9942f23a 100644
1619 --- a/po/ku.po
1620 +++ b/po/ku.po
1621 @@ -558,8 +558,8 @@ msgid "_Text color:"
1622 msgstr "Rengê _nivîsê:"
1623
1624 #: ../src/gnome-terminal.glade2.h:86
1625 -msgid "_Transparent background"
1626 -msgstr "Rûerdê _transparan"
1627 +msgid "Transparent background"
1628 +msgstr "Rûerdê transparan"
1629
1630 #: ../src/gnome-terminal.glade2.h:87
1631 msgid "_Update login records when command is launched"
1632 diff --git a/po/lt.po b/po/lt.po
1633 index c1c3ce0bfbab..c333d1fae7af 100644
1634 --- a/po/lt.po
1635 +++ b/po/lt.po
1636 @@ -2280,3 +2280,12 @@ msgstr "_Užverti langą"
1637
1638 #~ msgid "Whether to use a dark theme variant"
1639 #~ msgstr "Ar naudoti tamsų temos variantą"
1640 +
1641 +msgid "Transparent background"
1642 +msgstr "Permatomas fonas"
1643 +
1644 +msgid "Title"
1645 +msgstr "Pavadinimas"
1646 +
1647 +msgid "_Title:"
1648 +msgstr "_Pavadinimas:"
1649 diff --git a/po/lv.po b/po/lv.po
1650 index 959d1c3531fd..4cb16771d28b 100644
1651 --- a/po/lv.po
1652 +++ b/po/lv.po
1653 @@ -2236,3 +2236,15 @@ msgstr ""
1654 msgid "C_lose Window"
1655 msgstr "Aizvērt _logu"
1656
1657 +msgid "Transparent background"
1658 +msgstr "Caurspīdīgs fons"
1659 +
1660 +msgid "Title"
1661 +msgstr "Nosaukums"
1662 +
1663 +msgid "_Title:"
1664 +msgstr "_Nosaukums:"
1665 +
1666 +msgctxt "title"
1667 +msgid "'Terminal'"
1668 +msgstr "“Terminālis”"
1669 \ No newline at end of file
1670 diff --git a/po/mai.po b/po/mai.po
1671 index 715d0b9e1c82..881fd5a2cce9 100644
1672 --- a/po/mai.po
1673 +++ b/po/mai.po
1674 @@ -1291,8 +1291,8 @@ msgid "_Text color:"
1675 msgstr "पाठ रँग (_T):"
1676
1677 #: ../src/profile-preferences.glade.h:69
1678 -msgid "_Transparent background"
1679 -msgstr "पारदर्शी पृष्ठभूमि (_T)"
1680 +msgid "Transparent background"
1681 +msgstr "पारदर्शी पृष्ठभूमि"
1682
1683 #: ../src/profile-preferences.glade.h:70
1684 msgid "_Update login records when command is launched"
1685 diff --git a/po/mg.po b/po/mg.po
1686 index 99fa0f5e4059..bf4ac34d09c1 100644
1687 --- a/po/mg.po
1688 +++ b/po/mg.po
1689 @@ -567,8 +567,8 @@ msgid "_Text color:"
1690 msgstr "Lokon'ny _soratra:"
1691
1692 #: ../src/gnome-terminal.glade2.h:86
1693 -msgid "_Transparent background"
1694 -msgstr "_Afara tatera-pahazavana"
1695 +msgid "Transparent background"
1696 +msgstr "Afara tatera-pahazavana"
1697
1698 #: ../src/gnome-terminal.glade2.h:87
1699 msgid "_Update login records when command is launched"
1700 diff --git a/po/mk.po b/po/mk.po
1701 index 4fe43192fe57..6160ede0d0d3 100644
1702 --- a/po/mk.po
1703 +++ b/po/mk.po
1704 @@ -1167,8 +1167,8 @@ msgid "_Text color:"
1705 msgstr "_Боја на текстот:"
1706
1707 #: ../src/profile-preferences.glade.h:77
1708 -msgid "_Transparent background"
1709 -msgstr "_Транспарентна позадина"
1710 +msgid "Transparent background"
1711 +msgstr "Транспарентна позадина"
1712
1713 #: ../src/profile-preferences.glade.h:78
1714 #| msgid "_Text color:"
1715 diff --git a/po/ml.po b/po/ml.po
1716 index cc1928dcda63..62abd2131499 100644
1717 --- a/po/ml.po
1718 +++ b/po/ml.po
1719 @@ -2751,8 +2751,8 @@ msgstr "ടെര്‍മിനല്‍ അ_ടയ്ക്കുക"
1720 #~ msgid "_Solid color"
1721 #~ msgstr "_സോളിഡ് നിറം"
1722
1723 -#~ msgid "_Transparent background"
1724 -#~ msgstr "_പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
1725 +msgid "Transparent background"
1726 +msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
1727
1728 #~ msgid "S/Key Challenge Response"
1729 #~ msgstr "S/Key ചാലഞ്ച് മറുപടി"
1730 diff --git a/po/mn.po b/po/mn.po
1731 index 2f9d86072d1c..8f8850b7ec0b 100644
1732 --- a/po/mn.po
1733 +++ b/po/mn.po
1734 @@ -618,8 +618,8 @@ msgid "_Text color:"
1735 msgstr "_Текстийн өнгө:"
1736
1737 #: ../src/gnome-terminal.glade2.h:102
1738 -msgid "_Transparent background"
1739 -msgstr "_Тунгалаг дэвсгэр"
1740 +msgid "Transparent background"
1741 +msgstr "Тунгалаг дэвсгэр"
1742
1743 #: ../src/gnome-terminal.glade2.h:103
1744 msgid "_Update login records when command is launched"
1745 diff --git a/po/mr.po b/po/mr.po
1746 index 61997dafbd03..ea064191be0d 100644
1747 --- a/po/mr.po
1748 +++ b/po/mr.po
1749 @@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा (_l)"
1750 #~ msgid "Default size:"
1751 #~ msgstr "पूर्वनिर्धारीत आकार:"
1752
1753 -#~ msgid "Title"
1754 -#~ msgstr "शीर्षक"
1755 +msgid "Title"
1756 +msgstr "शीर्षक"
1757
1758 #~ msgid "When terminal commands set their o_wn titles:"
1759 #~ msgstr "जेव्हा टर्मिनल आदेश स्वतःचे शिर्षक निश्चित करते (_w):"
1760 @@ -2267,8 +2267,8 @@ msgstr "चौकट बंद करा (_l)"
1761 #~ msgid "_Input Methods"
1762 #~ msgstr "इनपुट पध्दती (_I)"
1763
1764 -#~ msgid "_Title:"
1765 -#~ msgstr "शिर्षक (_T):"
1766 +msgid "_Title:"
1767 +msgstr "शिर्षक (_T):"
1768
1769 #~ msgid "Keyboard shortcut to switch to tab 1"
1770 #~ msgstr "टॅब 1 वापरण्याकरीता कळफलक शॉर्टकट"
1771 @@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
1772 #~ msgid "_Solid color"
1773 #~ msgstr "गडद रंग (_S)"
1774
1775 -#~ msgid "_Transparent background"
1776 -#~ msgstr "पारदर्शी पार्श्वभूमी(_T)"
1777 +msgid "Transparent background"
1778 +msgstr "पारदर्शी पार्श्वभूमी"
1779
1780 #~ msgid "Disabled"
1781 #~ msgstr "अकार्यान्वीतित"
1782 diff --git a/po/ms.po b/po/ms.po
1783 index f2ebd4851d3b..a20bae29a8e8 100644
1784 --- a/po/ms.po
1785 +++ b/po/ms.po
1786 @@ -631,8 +631,8 @@ msgid "_Text color:"
1787 msgstr "Warna _Teks:"
1788
1789 #: ../src/gnome-terminal.glade2.h:102
1790 -msgid "_Transparent background"
1791 -msgstr "LatarBelakang _Telus"
1792 +msgid "Transparent background"
1793 +msgstr "LatarBelakang Telus"
1794
1795 #: ../src/gnome-terminal.glade2.h:103
1796 msgid "_Update login records when command is launched"
1797 diff --git a/po/nb.po b/po/nb.po
1798 index 5be6c5bd71c9..537692980cfd 100644
1799 --- a/po/nb.po
1800 +++ b/po/nb.po
1801 @@ -2238,3 +2238,12 @@ msgstr ""
1802 #: ../src/terminal-window.c:3852
1803 msgid "C_lose Window"
1804 msgstr "_Lukk vindu"
1805 +
1806 +msgid "Transparent background"
1807 +msgstr "Gjennomsiktig bakgrunn"
1808 +
1809 +msgid "Title"
1810 +msgstr "Tittel"
1811 +
1812 +msgid "_Title:"
1813 +msgstr "_Tittel:"
1814 diff --git a/po/nds.po b/po/nds.po
1815 index 82f930b1cc0c..da1d6d0c9342 100644
1816 --- a/po/nds.po
1817 +++ b/po/nds.po
1818 @@ -996,8 +996,8 @@ msgid "_Text color:"
1819 msgstr "_Textklöör:"
1820
1821 #: ../src/profile-preferences.glade.h:73
1822 -msgid "_Transparent background"
1823 -msgstr "_Döörschienenachtergrund:"
1824 +msgid "Transparent background"
1825 +msgstr "Döörschienenachtergrund:"
1826
1827 #: ../src/profile-preferences.glade.h:74
1828 msgid "_Update login records when command is launched"
1829 diff --git a/po/ne.po b/po/ne.po
1830 index 4fe16cc88a9a..e204ec9d646c 100644
1831 --- a/po/ne.po
1832 +++ b/po/ne.po
1833 @@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
1834 #~ msgid "_None (use solid color)"
1835 #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
1836
1837 -#~ msgid "_Transparent background"
1838 -#~ msgstr "पारदर्शी पृष्ठभूमि"
1839 +msgid "Transparent background"
1840 +msgstr "पारदर्शी पृष्ठभूमि"
1841
1842 #~ msgid "_Use the system fixed width font"
1843 #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
1844 @@ -3232,8 +3232,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
1845 #~ msgid "_Input Methods"
1846 #~ msgstr "आगत विधि"
1847
1848 -#~ msgid "_Title:"
1849 -#~ msgstr "शीर्षक:"
1850 +msgid "_Title:"
1851 +msgstr "शीर्षक:"
1852
1853 #~ msgid ""
1854 #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
1855 diff --git a/po/nl.po b/po/nl.po
1856 index a51720be1610..94eae523d2e6 100644
1857 --- a/po/nl.po
1858 +++ b/po/nl.po
1859 @@ -2218,11 +2218,11 @@ msgstr "Venster sl_uiten"
1860 #~ msgid "Default size:"
1861 #~ msgstr "Standaardgrootte:"
1862
1863 -#~ msgid "Title"
1864 -#~ msgstr "Titel"
1865 +msgid "Title"
1866 +msgstr "Titel"
1867
1868 -#~ msgid "_Title:"
1869 -#~ msgstr "_Titel:"
1870 +msgid "_Title:"
1871 +msgstr "_Titel:"
1872
1873 #~ msgid "Title and Command"
1874 #~ msgstr "Titel en opdracht"
1875 @@ -2352,3 +2352,6 @@ msgstr "Venster sl_uiten"
1876
1877 #~ msgid "Switch to Tab 12"
1878 #~ msgstr "Ga naar tab 12"
1879 +
1880 +msgid "Transparent background"
1881 +msgstr "Transparante achtergrond"
1882 diff --git a/po/nn.po b/po/nn.po
1883 index 5aa43b113ed9..33aff8b1d52a 100644
1884 --- a/po/nn.po
1885 +++ b/po/nn.po
1886 @@ -1429,8 +1429,8 @@ msgid "_Text color:"
1887 msgstr "_Tekstfarge:"
1888
1889 #: ../src/profile-preferences.glade.h:73
1890 -msgid "_Transparent background"
1891 -msgstr "_Gjennomskinleg bakgrunn"
1892 +msgid "Transparent background"
1893 +msgstr "Gjennomskinleg bakgrunn"
1894
1895 #: ../src/profile-preferences.glade.h:74
1896 msgid "_Update login records when command is launched"
1897 diff --git a/po/oc.po b/po/oc.po
1898 index b1befba5b372..26d47642925e 100644
1899 --- a/po/oc.po
1900 +++ b/po/oc.po
1901 @@ -2549,8 +2549,8 @@ msgstr "Tampar _la fenèstra"
1902 #~ msgid "Save as..."
1903 #~ msgstr "Enregistrar jos..."
1904
1905 -#~ msgid "_Title:"
1906 -#~ msgstr "_Títol :"
1907 +msgid "_Title:"
1908 +msgstr "_Títol :"
1909
1910 #~ msgid "Move Tab _Right"
1911 #~ msgstr "Desplaçar l'onglet cap a _dreita"
1912 @@ -3352,8 +3352,8 @@ msgstr "Tampar _la fenèstra"
1913 #~ msgid "Run;"
1914 #~ msgstr "Executar;Consòla;Shell;"
1915
1916 -#~ msgid "_Transparent background"
1917 -#~ msgstr "Rèireplan _transparent"
1918 +msgid "Transparent background"
1919 +msgstr "Rèireplan transparent"
1920
1921 #~ msgid ""
1922 #~ "A subset of possible encodings are presented in the Encoding submenu. "
1923 diff --git a/po/or.po b/po/or.po
1924 index ec1e6bfb9a28..218acd712df6 100644
1925 --- a/po/or.po
1926 +++ b/po/or.po
1927 @@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
1928 #~ msgid "Background image _scrolls"
1929 #~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)"
1930
1931 -#~ msgid "_Transparent background"
1932 -#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)"
1933 +msgid "Transparent background"
1934 +msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି"
1935
1936 #~ msgid "S_hade transparent or image background:"
1937 #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
1938 diff --git a/po/pa.po b/po/pa.po
1939 index 9c95b66e7185..ea4c570cf06c 100644
1940 --- a/po/pa.po
1941 +++ b/po/pa.po
1942 @@ -2122,10 +2122,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
1943 #~ msgid "Show server options"
1944 #~ msgstr "ਸਰਵਰ ਚੋਣਾਂ ਵੇਖੋ"
1945
1946 -#~| msgid "Terminal"
1947 -#~ msgctxt "title"
1948 -#~ msgid "'Terminal'"
1949 -#~ msgstr "'ਟਰਮੀਨਲ'"
1950 +msgctxt "title"
1951 +msgid "'Terminal'"
1952 +msgstr "'ਟਰਮੀਨਲ'"
1953
1954 #~ msgid "Title for terminal"
1955 #~ msgstr "ਟਰਮੀਨਲ ਲਈ ਟਾਈਟਲ"
1956 @@ -2176,11 +2175,11 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
1957 #~ msgid "Default size:"
1958 #~ msgstr "ਡਿਫਾਲਟ ਸਾਈਜ਼:"
1959
1960 -#~ msgid "Title"
1961 -#~ msgstr "ਟਾਈਟਲ"
1962 +msgid "Title"
1963 +msgstr "ਟਾਈਟਲ"
1964
1965 -#~ msgid "_Title:"
1966 -#~ msgstr "ਟਾਈਟਲ(_T):"
1967 +msgid "_Title:"
1968 +msgstr "ਟਾਈਟਲ(_T):"
1969
1970 #~ msgid "Title and Command"
1971 #~ msgstr "ਟਾਈਟਲ ਅਤੇ ਕਮਾਂਡ"
1972 @@ -3008,8 +3007,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
1973 #~ msgid "_Solid color"
1974 #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
1975
1976 -#~ msgid "_Transparent background"
1977 -#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)"
1978 +msgid "Transparent background"
1979 +msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ"
1980
1981 #~ msgid "S/Key Challenge Response"
1982 #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
1983 diff --git a/po/pl.po b/po/pl.po
1984 index baa03a7f5f67..c81a3157cd79 100644
1985 --- a/po/pl.po
1986 +++ b/po/pl.po
1987 @@ -2293,3 +2293,9 @@ msgid ""
1988
1989 msgid "full"
1990 msgstr "całkowicie"
1991 +
1992 +msgid "Title"
1993 +msgstr "Tytuł"
1994 +
1995 +msgid "_Title:"
1996 +msgstr "_Tytuł:"
1997 \ No newline at end of file
1998 diff --git a/po/ps.po b/po/ps.po
1999 index b25a2cb41712..dcbaf0bc6c8c 100644
2000 --- a/po/ps.po
2001 +++ b/po/ps.po
2002 @@ -1053,8 +1053,8 @@ msgid "_Text color:"
2003 msgstr ":د ليکنې رنګ_"
2004
2005 #: ../src/profile-preferences.glade.h:69
2006 -msgid "_Transparent background"
2007 -msgstr "روڼ شاليد_"
2008 +msgid "Transparent background"
2009 +msgstr "روڼ شاليد"
2010
2011 #: ../src/profile-preferences.glade.h:70
2012 msgid "_Update login records when command is launched"
2013 diff --git a/po/pt.po b/po/pt.po
2014 index 5181419ad973..82d8f9e56569 100644
2015 --- a/po/pt.po
2016 +++ b/po/pt.po
2017 @@ -2360,11 +2360,11 @@ msgstr "Fechar jane_la"
2018 #~ msgid "Default size:"
2019 #~ msgstr "Tamanho predefinido:"
2020
2021 -#~ msgid "Title"
2022 -#~ msgstr "Título"
2023 +msgid "Title"
2024 +msgstr "Título"
2025
2026 -#~ msgid "_Title:"
2027 -#~ msgstr "_Título:"
2028 +msgid "_Title:"
2029 +msgstr "_Título:"
2030
2031 #~ msgid "Title and Command"
2032 #~ msgstr "Título e comando"
2033 @@ -3160,8 +3160,8 @@ msgstr "Fechar jane_la"
2034 #~ msgid "Background image _scrolls"
2035 #~ msgstr "Imagem de fundo _rola"
2036
2037 -#~ msgid "_Transparent background"
2038 -#~ msgstr "Fundo _transparente"
2039 +msgid "Transparent background"
2040 +msgstr "Fundo transparente"
2041
2042 #~ msgid "S_hade transparent or image background:"
2043 #~ msgstr "Transparente som_breado ou imagem de fundo:"
2044 diff --git a/po/pt_BR.po b/po/pt_BR.po
2045 index d3e6c538a640..3c8320206b20 100644
2046 --- a/po/pt_BR.po
2047 +++ b/po/pt_BR.po
2048 @@ -2389,11 +2389,11 @@ msgstr "_Fechar janela"
2049 #~ msgid "Default size:"
2050 #~ msgstr "Tamanho padrão:"
2051
2052 -#~ msgid "Title"
2053 -#~ msgstr "Título"
2054 +msgid "Title"
2055 +msgstr "Título"
2056
2057 -#~ msgid "_Title:"
2058 -#~ msgstr "_Título:"
2059 +msgid "_Title:"
2060 +msgstr "_Título:"
2061
2062 #~ msgid "Title and Command"
2063 #~ msgstr "Título e comando"
2064 @@ -3057,3 +3057,6 @@ msgstr "_Fechar janela"
2065 #~ "poderão usar. Essa é a paleta, na forma de uma lista de nomes de cores "
2066 #~ "separada por dois pontos. Os nomes de cores devem estar no formato "
2067 #~ "hexadecimal. Exemplo: \"#FF00FF\""
2068 +
2069 +msgid "Transparent background"
2070 +msgstr "Fundo transparente"
2071 diff --git a/po/ro.po b/po/ro.po
2072 index 179dd77fd166..f7fc7ae070cf 100644
2073 --- a/po/ro.po
2074 +++ b/po/ro.po
2075 @@ -1576,8 +1576,8 @@ msgid "_Text color:"
2076 msgstr "Culoare _text:"
2077
2078 #: ../src/profile-preferences.glade.h:77
2079 -msgid "_Transparent background"
2080 -msgstr "Fundal _transparent"
2081 +msgid "Transparent background"
2082 +msgstr "Fundal transparent"
2083
2084 #: ../src/profile-preferences.glade.h:78
2085 msgid "_Underline color:"
2086 diff --git a/po/ru.po b/po/ru.po
2087 index 6cd2cd49fb12..65a78a070a9d 100644
2088 --- a/po/ru.po
2089 +++ b/po/ru.po
2090 @@ -2271,3 +2271,16 @@ msgstr "_Закрыть окно"
2091
2092 #~ msgid "_Same as text color"
2093 #~ msgstr "_Цвет как у обычного текста"
2094 +
2095 +msgid "Transparent background"
2096 +msgstr "Прозрачный фон"
2097 +
2098 +msgid "Title"
2099 +msgstr "Заголовок"
2100 +
2101 +msgid "_Title:"
2102 +msgstr "За_головок:"
2103 +
2104 +msgctxt "title"
2105 +msgid "'Terminal'"
2106 +msgstr "'Терминал'"
2107 \ No newline at end of file
2108 diff --git a/po/rw.po b/po/rw.po
2109 index 012f64e325c3..5ff633f8b3c2 100644
2110 --- a/po/rw.po
2111 +++ b/po/rw.po
2112 @@ -749,7 +749,7 @@ msgstr "Ibara ry'Inyandiko..."
2113
2114 #: ../src/gnome-terminal.glade2.h:102
2115 #, fuzzy
2116 -msgid "_Transparent background"
2117 +msgid "Transparent background"
2118 msgstr "Mbuganyuma"
2119
2120 #: ../src/gnome-terminal.glade2.h:103
2121 @@ -2398,7 +2398,6 @@ msgstr ""
2122
2123 # sch/source\ui\app\menu.src:RID_MENU.WORKAROUND_22.SID_INSERT_TITLE.text
2124 #: ../src/terminal-screen.c:2005
2125 -#, fuzzy
2126 msgid "_Title:"
2127 msgstr "Umutwe..."
2128
2129 diff --git a/po/si.po b/po/si.po
2130 index adca7d5acba9..64c05665429b 100644
2131 --- a/po/si.po
2132 +++ b/po/si.po
2133 @@ -538,8 +538,8 @@ msgid "_Text color:"
2134 msgstr "පෙළ වර්‍ණ: (_T)"
2135
2136 #: ../src/gnome-terminal.glade2.h:86
2137 -msgid "_Transparent background"
2138 -msgstr "විනිවිද පෙනෙන පසුබිම (_T)"
2139 +msgid "Transparent background"
2140 +msgstr "විනිවිද පෙනෙන පසුබිම"
2141
2142 #: ../src/gnome-terminal.glade2.h:87
2143 msgid "_Update login records when command is launched"
2144 diff --git a/po/sk.po b/po/sk.po
2145 index 34ced44920c5..00183da72a54 100644
2146 --- a/po/sk.po
2147 +++ b/po/sk.po
2148 @@ -2590,3 +2590,12 @@ msgstr "_Zavrieť okno"
2149 #~ "\n"
2150 #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
2151 #~ "help“.\n"
2152 +
2153 +msgid "Transparent background"
2154 +msgstr "Priehľadné pozadie"
2155 +
2156 +msgid "Title"
2157 +msgstr "Titulok"
2158 +
2159 +msgid "_Title:"
2160 +msgstr "_Titulok:"
2161 \ No newline at end of file
2162 diff --git a/po/sl.po b/po/sl.po
2163 index 754abb4ba4a2..8f3674ac72c1 100644
2164 --- a/po/sl.po
2165 +++ b/po/sl.po
2166 @@ -2364,11 +2364,11 @@ msgstr "_Zapri okno"
2167 #~ msgid "Default size:"
2168 #~ msgstr "Privzeta velikost:"
2169
2170 -#~ msgid "Title"
2171 -#~ msgstr "Naslov"
2172 +msgid "Title"
2173 +msgstr "Naslov"
2174
2175 -#~ msgid "_Title:"
2176 -#~ msgstr "_Naziv:"
2177 +msgid "_Title:"
2178 +msgstr "_Naziv:"
2179
2180 #~ msgid "Title and Command"
2181 #~ msgstr "Naziv in ukaz"
2182 @@ -2525,3 +2525,6 @@ msgstr "_Zapri okno"
2183
2184 #~ msgid "_Profile Preferences…"
2185 #~ msgstr "Možnosti _profila ..."
2186 +
2187 +msgid "Transparent background"
2188 +msgstr "Prosojno ozadje"
2189 diff --git a/po/sq.po b/po/sq.po
2190 index 158f6cb167cc..96afc9b98fd4 100644
2191 --- a/po/sq.po
2192 +++ b/po/sq.po
2193 @@ -568,8 +568,8 @@ msgstr "Ngjyra e _tekstit:"
2194
2195 # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
2196 #: ../src/gnome-terminal.glade2.h:85
2197 -msgid "_Transparent background"
2198 -msgstr "Sfond _Trasparent"
2199 +msgid "Transparent background"
2200 +msgstr "Sfond Trasparent"
2201
2202 #: ../src/gnome-terminal.glade2.h:86
2203 msgid "_Update login records when command is launched"
2204 diff --git a/po/sr.po b/po/sr.po
2205 index e229e742a550..b34b1723acee 100644
2206 --- a/po/sr.po
2207 +++ b/po/sr.po
2208 @@ -2297,10 +2297,9 @@ msgstr "_Затвори прозор"
2209 #~ msgid "GNOME Terminal Client"
2210 #~ msgstr "Клијент Гномовог терминала"
2211
2212 -#~| msgid "Terminal"
2213 -#~ msgctxt "title"
2214 -#~ msgid "'Terminal'"
2215 -#~ msgstr "„Терминал“"
2216 +msgctxt "title"
2217 +msgid "'Terminal'"
2218 +msgstr "„Терминал“"
2219
2220 #~ msgid "Title for terminal"
2221 #~ msgstr "Наслов за терминал"
2222 @@ -2346,11 +2345,11 @@ msgstr "_Затвори прозор"
2223 #~ msgid "Default size:"
2224 #~ msgstr "Основна величина:"
2225
2226 -#~ msgid "Title"
2227 -#~ msgstr "Наслов"
2228 +msgid "Title"
2229 +msgstr "Наслов"
2230
2231 -#~ msgid "_Title:"
2232 -#~ msgstr "_Наслов:"
2233 +msgid "_Title:"
2234 +msgstr "_Наслов:"
2235
2236 #~ msgid "Title and Command"
2237 #~ msgstr "Наслов и наредба"
2238 @@ -2387,3 +2386,6 @@ msgstr "_Затвори прозор"
2239
2240 #~ msgid "Close Window"
2241 #~ msgstr "Затвори прозор"
2242 +
2243 +msgid "Transparent background"
2244 +msgstr "Провидна позадина"
2245 diff --git a/po/[email protected] b/po/[email protected]
2246 index c1d3f5c94811..f009bcd0c43a 100644
2247 --- a/po/[email protected]
2248 +++ b/po/[email protected]
2249 @@ -2297,10 +2297,9 @@ msgstr "_Zatvori prozor"
2250 #~ msgid "GNOME Terminal Client"
2251 #~ msgstr "Klijent Gnomovog terminala"
2252
2253 -#~| msgid "Terminal"
2254 -#~ msgctxt "title"
2255 -#~ msgid "'Terminal'"
2256 -#~ msgstr "„Terminal“"
2257 +msgctxt "title"
2258 +msgid "'Terminal'"
2259 +msgstr "„Terminal“"
2260
2261 #~ msgid "Title for terminal"
2262 #~ msgstr "Naslov za terminal"
2263 @@ -2346,11 +2345,11 @@ msgstr "_Zatvori prozor"
2264 #~ msgid "Default size:"
2265 #~ msgstr "Osnovna veličina:"
2266
2267 -#~ msgid "Title"
2268 -#~ msgstr "Naslov"
2269 +msgid "Title"
2270 +msgstr "Naslov"
2271
2272 -#~ msgid "_Title:"
2273 -#~ msgstr "_Naslov:"
2274 +msgid "_Title:"
2275 +msgstr "_Naslov:"
2276
2277 #~ msgid "Title and Command"
2278 #~ msgstr "Naslov i naredba"
2279 @@ -2387,3 +2386,6 @@ msgstr "_Zatvori prozor"
2280
2281 #~ msgid "Close Window"
2282 #~ msgstr "Zatvori prozor"
2283 +
2284 +msgid "Transparent background"
2285 +msgstr "Providna pozadina"
2286 diff --git a/po/sv.po b/po/sv.po
2287 index c5da2a0487a8..db177e80f9fd 100644
2288 --- a/po/sv.po
2289 +++ b/po/sv.po
2290 @@ -2288,5 +2288,11 @@ msgstr "Stän_g fönster"
2291 #~ msgid "Unknown completion request for \"%s\""
2292 #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
2293
2294 +msgid "Transparent background"
2295 +msgstr "Genomskinlig bakgrund"
2296 +
2297 #~ msgid "Missing command"
2298 #~ msgstr "Kommando saknas"
2299 +
2300 +msgid "_Title:"
2301 +msgstr "_Titel:"
2302 diff --git a/po/ta.po b/po/ta.po
2303 index 80aa2f684eec..8768cf7fc501 100644
2304 --- a/po/ta.po
2305 +++ b/po/ta.po
2306 @@ -2171,10 +2171,9 @@ msgstr "_l சாளரத்தை மூடவும்"
2307 #~ msgid "Show server options"
2308 #~ msgstr "சேவையக தேர்வுகளை காட்டுக"
2309
2310 -#~| msgid "Terminal"
2311 -#~ msgctxt "title"
2312 -#~ msgid "'Terminal'"
2313 -#~ msgstr "'முனையம்'"
2314 +msgctxt "title"
2315 +msgid "'Terminal'"
2316 +msgstr "'முனையம்'"
2317
2318 #~ msgid "Title for terminal"
2319 #~ msgstr "முனையத்தின் தலைப்பு"
2320 @@ -2221,11 +2220,11 @@ msgstr "_l சாளரத்தை மூடவும்"
2321 #~ msgid "Default size:"
2322 #~ msgstr "முன்னிருப்பு அளவு:"
2323
2324 -#~ msgid "Title"
2325 -#~ msgstr "தலைப்பு"
2326 +msgid "Title"
2327 +msgstr "தலைப்பு"
2328
2329 -#~ msgid "_Title:"
2330 -#~ msgstr "_T தலைப்பு:"
2331 +msgid "_Title:"
2332 +msgstr "_T தலைப்பு:"
2333
2334 #~ msgid "Title and Command"
2335 #~ msgstr "தலைப்பும் கட்டளையும்"
2336 @@ -3028,8 +3027,8 @@ msgstr "_l சாளரத்தை மூடவும்"
2337 #~ msgid "_Solid color"
2338 #~ msgstr "(_S) ஒரே வண்ணம்"
2339
2340 -#~ msgid "_Transparent background"
2341 -#~ msgstr "_T புலப்பாடு பின்னணி"
2342 +msgid "Transparent background"
2343 +msgstr "புலப்பாடு பின்னணி"
2344
2345 #~ msgid "No such profile \"%s\", using default profile\n"
2346 #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
2347 diff --git a/po/te.po b/po/te.po
2348 index 82c0e0fc8f54..74c293d671f1 100644
2349 --- a/po/te.po
2350 +++ b/po/te.po
2351 @@ -2055,10 +2055,9 @@ msgstr "కిటికీని మూసివేయి (_l)"
2352 #~ msgid "Show server options"
2353 #~ msgstr "సేవకము ఐచ్చికాలను చూపించు"
2354
2355 -#, fuzzy
2356 -#~ msgctxt "title"
2357 -#~ msgid "'Terminal'"
2358 -#~ msgstr "టెర్మినల్"
2359 +msgctxt "title"
2360 +msgid "'Terminal'"
2361 +msgstr "టెర్మినల్"
2362
2363 #~ msgid "Title for terminal"
2364 #~ msgstr "టెర్మినల్ కు శీర్షిక"
2365 @@ -2104,11 +2103,11 @@ msgstr "కిటికీని మూసివేయి (_l)"
2366 #~ msgid "Default size:"
2367 #~ msgstr "అప్రమేయ పరిమాణం:"
2368
2369 -#~ msgid "Title"
2370 -#~ msgstr "శీర్షిక:"
2371 +msgid "Title"
2372 +msgstr "శీర్షిక:"
2373
2374 -#~ msgid "_Title:"
2375 -#~ msgstr "శీర్షిక (_T):"
2376 +msgid "_Title:"
2377 +msgstr "శీర్షిక (_T):"
2378
2379 #~ msgid "Title and Command"
2380 #~ msgstr "శీర్షిక మరియు ఆదేశం"
2381 @@ -2898,8 +2897,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
2382 #~ msgid "Background image _scrolls"
2383 #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
2384
2385 -#~ msgid "_Transparent background"
2386 -#~ msgstr "పారదర్శక నేపథ్యం (_T)"
2387 +msgid "Transparent background"
2388 +msgstr "పారదర్శక నేపథ్యం"
2389
2390 #~ msgid "S_hade transparent or image background:"
2391 #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
2392 diff --git a/po/tg.po b/po/tg.po
2393 index e3feef658e1e..782a90e6e40a 100644
2394 --- a/po/tg.po
2395 +++ b/po/tg.po
2396 @@ -2158,11 +2158,11 @@ msgstr "П_ӯшонидани равзана"
2397 #~ msgid "Default size:"
2398 #~ msgstr "Андозаи пешфарз:"
2399
2400 -#~ msgid "Title"
2401 -#~ msgstr "Сарлавҳа"
2402 +msgid "Title"
2403 +msgstr "Сарлавҳа"
2404
2405 -#~ msgid "_Title:"
2406 -#~ msgstr "_Вазифа:"
2407 +msgid "_Title:"
2408 +msgstr "_Вазифа:"
2409
2410 #~ msgid "Title and Command"
2411 #~ msgstr "Унвон ва Фармон"
2412 diff --git a/po/th.po b/po/th.po
2413 index 63263749655c..d8d6be9dd890 100644
2414 --- a/po/th.po
2415 +++ b/po/th.po
2416 @@ -2308,11 +2308,11 @@ msgstr "ปิ_ดหน้าต่าง"
2417 #~ msgid "Default size:"
2418 #~ msgstr "ขนาดปริยาย:"
2419
2420 -#~ msgid "Title"
2421 -#~ msgstr "หัวเรื่อง"
2422 +msgid "Title"
2423 +msgstr "หัวเรื่อง"
2424
2425 -#~ msgid "_Title:"
2426 -#~ msgstr "_หัวเรื่อง:"
2427 +msgid "_Title:"
2428 +msgstr "_หัวเรื่อง:"
2429
2430 #~ msgid "Title and Command"
2431 #~ msgstr "หัวเรื่องและคำสั่ง"
2432 @@ -2803,8 +2803,8 @@ msgstr "ปิ_ดหน้าต่าง"
2433 #~ msgid "_Solid color"
2434 #~ msgstr "สี_ทึบ"
2435
2436 -#~ msgid "_Transparent background"
2437 -#~ msgstr "พื้นหลังโปร่งแ_สง"
2438 +msgid "Transparent background"
2439 +msgstr "พื้นหลังโปร่งแสง"
2440
2441 #~ msgid ""
2442 #~ "You already have a profile called “%s”. Do you want to create another "
2443 diff --git a/po/tr.po b/po/tr.po
2444 index 85a5c59ed059..073fdea561b9 100644
2445 --- a/po/tr.po
2446 +++ b/po/tr.po
2447 @@ -2307,3 +2307,9 @@ msgstr "_Pencereyi Kapat"
2448
2449 #~ msgid "_Same as text color"
2450 #~ msgstr "_Metin rengiyle aynı"
2451 +
2452 +msgid "Transparent background"
2453 +msgstr "Şeffaf arkaplan"
2454 +
2455 +msgid "_Title:"
2456 +msgstr "_Başlık:"
2457 diff --git a/po/ug.po b/po/ug.po
2458 index 313f76b98eae..be6089762082 100644
2459 --- a/po/ug.po
2460 +++ b/po/ug.po
2461 @@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
2462 #~ msgid "_Solid color"
2463 #~ msgstr "ساپ رەڭ(_S)"
2464
2465 -#~ msgid "_Transparent background"
2466 -#~ msgstr "سۈزۈك تەگلىك(_T)"
2467 +msgid "Transparent background"
2468 +msgstr "سۈزۈك تەگلىك"
2469
2470 #~ msgid ""
2471 #~ "You already have a profile called “%s”. Do you want to create another "
2472 diff --git a/po/uk.po b/po/uk.po
2473 index a08f25914d12..306d532caf1a 100644
2474 --- a/po/uk.po
2475 +++ b/po/uk.po
2476 @@ -2353,11 +2353,11 @@ msgstr "Закр_ити вікно"
2477 #~ msgid "Default size:"
2478 #~ msgstr "Типовий розмір:"
2479
2480 -#~ msgid "Title"
2481 -#~ msgstr "Заголовок"
2482 +msgid "Title"
2483 +msgstr "Заголовок"
2484
2485 -#~ msgid "_Title:"
2486 -#~ msgstr "За_головок:"
2487 +msgid "_Title:"
2488 +msgstr "За_головок:"
2489
2490 #~ msgid "Title and Command"
2491 #~ msgstr "Заголовок та команда"
2492 @@ -3134,8 +3134,8 @@ msgstr "Закр_ити вікно"
2493 #~ msgid "_Solid color"
2494 #~ msgstr "_Суцільний колір"
2495
2496 -#~ msgid "_Transparent background"
2497 -#~ msgstr "П_розоре тло"
2498 +msgid "Transparent background"
2499 +msgstr "Прозоре тло"
2500
2501 #~ msgid "Switch to Tab 2"
2502 #~ msgstr "До вкладки 2"
2503 diff --git a/po/vi.po b/po/vi.po
2504 index 01db48d95bf2..64d50a4453dd 100644
2505 --- a/po/vi.po
2506 +++ b/po/vi.po
2507 @@ -2400,8 +2400,8 @@ msgstr "Đón_g cửa sổ"
2508 #~ msgid "Default size:"
2509 #~ msgstr "Cỡ mặc định:"
2510
2511 -#~ msgid "Title"
2512 -#~ msgstr "Tựa đề"
2513 +msgid "Title"
2514 +msgstr "Tựa đề"
2515
2516 #~ msgid "When terminal commands set their o_wn titles:"
2517 #~ msgstr "Khi câu lệnh thiết bị cuối tự đặt tựa đề _mình:"
2518 @@ -2481,8 +2481,8 @@ msgstr "Đón_g cửa sổ"
2519 #~ msgid "_Input Methods"
2520 #~ msgstr "K_iểu gõ"
2521
2522 -#~ msgid "_Title:"
2523 -#~ msgstr "_Tựa đề:"
2524 +msgid "_Title:"
2525 +msgstr "_Tựa đề:"
2526
2527 #~ msgid "Disable connection to session manager"
2528 #~ msgstr "Tắt kết nối đến trình quản lý phiên làm việc"
2529 @@ -2867,3 +2867,6 @@ msgstr "Đón_g cửa sổ"
2530 #~ "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 "
2531 #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị "
2532 #~ "tắt), nghĩa là không có phím tắt cho hành động này."
2533 +
2534 +msgid "Transparent background"
2535 +msgstr "Nền trong suốt"
2536 diff --git a/po/wa.po b/po/wa.po
2537 index 0e0a6a752b6d..7be7bcc04a93 100644
2538 --- a/po/wa.po
2539 +++ b/po/wa.po
2540 @@ -564,8 +564,8 @@ msgid "_Text color:"
2541 msgstr "Coleur pol _tecse:"
2542
2543 #: ../src/gnome-terminal.glade2.h:86
2544 -msgid "_Transparent background"
2545 -msgstr "Fond k' on voet _houte"
2546 +msgid "Transparent background"
2547 +msgstr "Fond k' on voet houte"
2548
2549 #: ../src/gnome-terminal.glade2.h:87
2550 msgid "_Update login records when command is launched"
2551 diff --git a/po/xh.po b/po/xh.po
2552 index 44a8e21c7842..999efa7b4322 100644
2553 --- a/po/xh.po
2554 +++ b/po/xh.po
2555 @@ -621,8 +621,8 @@ msgid "_Text color:"
2556 msgstr "_Umbala wombhalo:"
2557
2558 #: ../src/gnome-terminal.glade2.h:102
2559 -msgid "_Transparent background"
2560 -msgstr "_Okungasemva okucace gca"
2561 +msgid "Transparent background"
2562 +msgstr "Okungasemva okucace gca"
2563
2564 #: ../src/gnome-terminal.glade2.h:103
2565 msgid "_Update login records when command is launched"
2566 diff --git a/po/zh_CN.po b/po/zh_CN.po
2567 index f6ea45e6110a..f0b18eff7e10 100644
2568 --- a/po/zh_CN.po
2569 +++ b/po/zh_CN.po
2570 @@ -2314,11 +2314,11 @@ msgstr "关闭窗口(_L)"
2571 #~ msgid "Default size:"
2572 #~ msgstr "默认大小:"
2573
2574 -#~ msgid "Title"
2575 -#~ msgstr "标题"
2576 +msgid "Title"
2577 +msgstr "标题"
2578
2579 -#~ msgid "_Title:"
2580 -#~ msgstr "标题(_T):"
2581 +msgid "_Title:"
2582 +msgstr "标题(_T):"
2583
2584 #~ msgid "Title and Command"
2585 #~ msgstr "标题和命令"
2586 @@ -2470,3 +2470,6 @@ msgstr "关闭窗口(_L)"
2587
2588 #~ msgid "_Find..."
2589 #~ msgstr "查找(_F)..."
2590 +
2591 +msgid "Transparent background"
2592 +msgstr "透明背景"
2593 diff --git a/po/zh_HK.po b/po/zh_HK.po
2594 index 61153529f0c7..119f7b9d3b84 100644
2595 --- a/po/zh_HK.po
2596 +++ b/po/zh_HK.po
2597 @@ -2114,11 +2114,11 @@ msgstr "關閉視窗(_L)"
2598 #~ msgid "Default size:"
2599 #~ msgstr "預設大小:"
2600
2601 -#~ msgid "Title"
2602 -#~ msgstr "標題"
2603 +msgid "Title"
2604 +msgstr "標題"
2605
2606 -#~ msgid "_Title:"
2607 -#~ msgstr "標題(_T):"
2608 +msgid "_Title:"
2609 +msgstr "標題(_T):"
2610
2611 #~ msgid "Title and Command"
2612 #~ msgstr "標題及指令"
2613 @@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
2614
2615 #~ msgid "Show session management options"
2616 #~ msgstr "顯示作業階段管理選項"
2617 +
2618 +msgid "Transparent background"
2619 +msgstr "透明背景"
2620 diff --git a/po/zh_TW.po b/po/zh_TW.po
2621 index e85dda1047a6..40dda98fa89a 100644
2622 --- a/po/zh_TW.po
2623 +++ b/po/zh_TW.po
2624 @@ -2297,11 +2297,11 @@ msgstr "關閉視窗(_L)"
2625 #~ msgid "Default size:"
2626 #~ msgstr "預設大小:"
2627
2628 -#~ msgid "Title"
2629 -#~ msgstr "標題"
2630 +msgid "Title"
2631 +msgstr "標題"
2632
2633 -#~ msgid "_Title:"
2634 -#~ msgstr "標題(_T):"
2635 +msgid "_Title:"
2636 +msgstr "標題(_T):"
2637
2638 #~ msgid "Title and Command"
2639 #~ msgstr "標題及指令"
2640 @@ -2558,3 +2558,6 @@ msgstr "關閉視窗(_L)"
2641
2642 #~ msgid "Show session management options"
2643 #~ msgstr "顯示作業階段管理選項"
2644 +
2645 +msgid "Transparent background"
2646 +msgstr "透明背景"
2647 --
2648 2.9.3
3030 src/terminal-window.c | 7 +++
3131 6 files changed, 144 insertions(+), 1 deletion(-)
3232
33 diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
34 index c031c8ace24a..7bdd156e36aa 100644
3533 --- a/src/org.gnome.Terminal.gschema.xml
3634 +++ b/src/org.gnome.Terminal.gschema.xml
3735 @@ -370,6 +370,16 @@
5149 </schema>
5250
5351 <!-- Keybinding settings -->
54 diff --git a/src/profile-editor.c b/src/profile-editor.c
55 index 002561d77dcb..1a758a9243ec 100644
5652 --- a/src/profile-editor.c
5753 +++ b/src/profile-editor.c
58 @@ -1215,7 +1215,18 @@ terminal_profile_edit (GSettings *profile,
54 @@ -1215,7 +1215,18 @@ terminal_profile_edit (GSettings *profi
5955 "active-id",
6056 G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
6157
7470 terminal_util_bind_mnemonic_label_sensitivity (editor);
7571
7672 terminal_util_dialog_focus_widget (editor, widget_name);
77 diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui
78 index 5adcb5317e01..b7decb284946 100644
7973 --- a/src/profile-preferences.ui
8074 +++ b/src/profile-preferences.ui
8175 @@ -23,6 +23,11 @@
9084 <object class="GtkListStore" id="cjk-ambiguous-width-model">
9185 <columns>
9286 <!-- column-name gchararray -->
93 @@ -1036,6 +1041,93 @@
87 @@ -1036,6 +1041,48 @@
9488 <property name="position">1</property>
9589 </packing>
9690 </child>
117111 + </packing>
118112 + </child>
119113 + <child>
120 + <object class="GtkBox" id="background-transparent-scale-box">
114 + <object class="GtkScale" id="background-transparent-scale">
121115 + <property name="visible">True</property>
122 + <property name="can_focus">False</property>
123 + <property name="orientation">horizontal</property>
124 + <property name="spacing">6</property>
125 + <child>
126 + <object class="GtkLabel" id="background-transparent-min-label">
127 + <property name="visible">True</property>
128 + <property name="can_focus">False</property>
129 + <property name="xalign">0.5</property>
130 + <property name="label" translatable="yes">none</property>
131 + <style>
132 + <class name="dim-label"/>
133 + </style>
134 + </object>
135 + <packing>
136 + <property name="expand">False</property>
137 + <property name="fill">False</property>
138 + <property name="position">0</property>
139 + </packing>
140 + </child>
141 + <child>
142 + <object class="GtkScale" id="background-transparent-scale">
143 + <property name="visible">True</property>
144 + <property name="can_focus">True</property>
145 + <property name="adjustment">background-transparent-adjustment</property>
146 + <property name="draw_value">False</property>
147 + </object>
148 + <packing>
149 + <property name="expand">True</property>
150 + <property name="fill">True</property>
151 + <property name="position">1</property>
152 + </packing>
153 + </child>
154 + <child>
155 + <object class="GtkLabel" id="background-transparent-max-label">
156 + <property name="visible">True</property>
157 + <property name="can_focus">False</property>
158 + <property name="xalign">0.5</property>
159 + <property name="label" translatable="yes">full</property>
160 + <style>
161 + <class name="dim-label"/>
162 + </style>
163 + </object>
164 + <packing>
165 + <property name="expand">False</property>
166 + <property name="fill">False</property>
167 + <property name="position">2</property>
168 + </packing>
169 + </child>
116 + <property name="can_focus">True</property>
117 + <property name="adjustment">background-transparent-adjustment</property>
118 + <property name="draw_value">False</property>
170119 + </object>
171120 + <packing>
172121 + <property name="expand">True</property>
184133 </object>
185134 </child>
186135 </object>
187 diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
188 index 4b734a3961d1..e434075d86af 100644
189136 --- a/src/terminal-schemas.h
190137 +++ b/src/terminal-schemas.h
191138 @@ -69,6 +69,9 @@ G_BEGIN_DECLS
198145 #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close"
199146 #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar"
200147 #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY "menu-accelerator-enabled"
201 diff --git a/src/terminal-screen.c b/src/terminal-screen.c
202 index 017a38ba8365..682b73644179 100644
203148 --- a/src/terminal-screen.c
204149 +++ b/src/terminal-screen.c
205 @@ -827,7 +827,9 @@ terminal_screen_profile_changed_cb (GSettings *profile,
150 @@ -137,6 +137,8 @@ static void terminal_screen_system_font_
151 static gboolean terminal_screen_popup_menu (GtkWidget *widget);
152 static gboolean terminal_screen_button_press (GtkWidget *widget,
153 GdkEventButton *event);
154 +static void terminal_screen_hierarchy_changed (GtkWidget *widget,
155 + GtkWidget *previous_toplevel);
156 static gboolean terminal_screen_do_exec (TerminalScreen *screen,
157 FDSetupData *data,
158 GError **error);
159 @@ -482,6 +484,7 @@ terminal_screen_class_init (TerminalScre
160 widget_class->drag_data_received = terminal_screen_drag_data_received;
161 widget_class->button_press_event = terminal_screen_button_press;
162 widget_class->popup_menu = terminal_screen_popup_menu;
163 + widget_class->hierarchy_changed = terminal_screen_hierarchy_changed;
164
165 terminal_class->child_exited = terminal_screen_child_exited;
166
167 @@ -827,7 +830,9 @@ terminal_screen_profile_changed_cb (GSet
206168 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_COLORS_SET_KEY) ||
207169 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_BACKGROUND_COLOR_KEY) ||
208170 prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_FOREGROUND_COLOR_KEY) ||
213175 update_color_scheme (screen);
214176
215177 if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
216 @@ -897,6 +899,8 @@ update_color_scheme (TerminalScreen *screen)
178 @@ -883,6 +888,32 @@ terminal_screen_profile_changed_cb (GSet
179 }
180
181 static void
182 +update_toplevel_transparency (TerminalScreen *screen)
183 +{
184 + GtkWidget *widget = GTK_WIDGET (screen);
185 + TerminalScreenPrivate *priv = screen->priv;
186 + GSettings *profile = priv->profile;
187 + GtkWidget *toplevel;
188 +
189 + toplevel = gtk_widget_get_toplevel (widget);
190 + if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
191 + {
192 + gboolean transparent;
193 +
194 + transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
195 + if (gtk_widget_get_app_paintable (toplevel) != transparent)
196 + {
197 + gtk_widget_set_app_paintable (toplevel, transparent);
198 +
199 + /* The opaque region of the toplevel isn't updated until the toplevel is allocated;
200 + * set_app_paintable() doesn't force an allocation, so do that manually.
201 + */
202 + gtk_widget_queue_resize (toplevel);
203 + }
204 + }
205 +}
206 +
207 +static void
208 update_color_scheme (TerminalScreen *screen)
209 {
210 GtkWidget *widget = GTK_WIDGET (screen);
211 @@ -897,6 +928,8 @@ update_color_scheme (TerminalScreen *scr
217212 GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
218213 GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
219214 GtkStyleContext *context;
222217 gboolean use_theme_colors;
223218
224219 context = gtk_widget_get_style_context (widget);
225 @@ -938,6 +942,18 @@ update_color_scheme (TerminalScreen *screen)
220 @@ -938,6 +971,18 @@ update_color_scheme (TerminalScreen *scr
226221 }
227222
228223 colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
241236 vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
242237 colors, n_colors);
243238 vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
244 @@ -945,6 +961,10 @@ update_color_scheme (TerminalScreen *screen)
239 @@ -945,6 +990,8 @@ update_color_scheme (TerminalScreen *scr
245240 vte_terminal_set_color_cursor_foreground (VTE_TERMINAL (screen), cursor_fgp);
246241 vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
247242 vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
248243 +
249 + toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
250 + if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
251 + gtk_widget_set_app_paintable (toplevel, transparent);
244 + update_toplevel_transparency (screen);
252245 }
253246
254247 static void
255 diff --git a/src/terminal-window.c b/src/terminal-window.c
256 index a290d9fda733..020c6f00787f 100644
248 @@ -1549,6 +1596,13 @@ terminal_screen_do_popup (TerminalScreen
249 terminal_screen_popup_info_unref (info);
250 }
251
252 +static void
253 +terminal_screen_hierarchy_changed (GtkWidget *widget,
254 + GtkWidget *previous_toplevel)
255 +{
256 + update_toplevel_transparency (TERMINAL_SCREEN (widget));
257 +}
258 +
259 static gboolean
260 terminal_screen_button_press (GtkWidget *widget,
261 GdkEventButton *event)
257262 --- a/src/terminal-window.c
258263 +++ b/src/terminal-window.c
259 @@ -2621,6 +2621,8 @@ terminal_window_init (TerminalWindow *window)
264 @@ -2295,6 +2295,32 @@ terminal_window_realize (GtkWidget *widg
265 }
266
267 static gboolean
268 +terminal_window_draw (GtkWidget *widget,
269 + cairo_t *cr)
270 +{
271 + if (gtk_widget_get_app_paintable (widget))
272 + {
273 + GtkAllocation child_allocation;
274 + GtkStyleContext *context;
275 + GtkWidget *child;
276 +
277 + /* Get the *child* allocation, so we don't overwrite window borders */
278 + child = gtk_bin_get_child (GTK_BIN (widget));
279 + gtk_widget_get_allocation (child, &child_allocation);
280 +
281 + context = gtk_widget_get_style_context (widget);
282 + gtk_render_background (context, cr,
283 + child_allocation.x, child_allocation.y,
284 + child_allocation.width, child_allocation.height);
285 + gtk_render_frame (context, cr,
286 + child_allocation.x, child_allocation.y,
287 + child_allocation.width, child_allocation.height);
288 + }
289 +
290 + return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
291 +}
292 +
293 +static gboolean
294 terminal_window_state_event (GtkWidget *widget,
295 GdkEventWindowState *event)
296 {
297 @@ -2621,6 +2647,8 @@ terminal_window_init (TerminalWindow *wi
260298 TerminalWindowPrivate *priv;
261299 TerminalApp *app;
262300 TerminalSettingsList *profiles_list;
265303 GSettings *gtk_debug_settings;
266304 GtkActionGroup *action_group;
267305 GtkAction *action;
268 @@ -2637,6 +2639,11 @@ terminal_window_init (TerminalWindow *window)
306 @@ -2637,6 +2665,11 @@ terminal_window_init (TerminalWindow *wi
269307
270308 gtk_widget_init_template (GTK_WIDGET (window));
271309
277315 uuid_generate (u);
278316 uuid_unparse (u, uuidstr);
279317 priv->uuid = g_strdup (uuidstr);
280 --
281 2.9.3
282
283
284 From 2a5f5cac4d06ab927819c79d2255df3252f070b8 Mon Sep 17 00:00:00 2001
285 From: Lars Uebernickel <[email protected]>
286 Date: Wed, 28 May 2014 14:11:02 +0200
287 Subject: [PATCH 02/14] window: Make the drawing robust across all themes
288
289 There are lots of themes out there in the wild that do not specify a
290 background-color for all widgets and the default is transparent. This
291 is usually not a problem because GTK+ sets an opaque region on the
292 whole window and things without a background-color get drawn with the
293 theme's default background colour. However, to achieve transparency
294 we disable the opaque region by making the window app-paintable. This
295 can lead to transparent menubars or notebook tabs in some themes. We
296 can avoid this by ensuring that the window always renders a background.
297
298 https://bugzilla.gnome.org/show_bug.cgi?id=730016
299 ---
300 src/terminal-window.c | 21 +++++++++++++++++++++
301 1 file changed, 21 insertions(+)
302
303 diff --git a/src/terminal-window.c b/src/terminal-window.c
304 index 020c6f00787f..a9f3ff7d67e2 100644
305 --- a/src/terminal-window.c
306 +++ b/src/terminal-window.c
307 @@ -2295,6 +2295,26 @@ terminal_window_realize (GtkWidget *widget)
308 }
309
310 static gboolean
311 +terminal_window_draw (GtkWidget *widget,
312 + cairo_t *cr)
313 +{
314 + if (gtk_widget_get_app_paintable (widget))
315 + {
316 + GtkStyleContext *context;
317 + int width;
318 + int height;
319 +
320 + context = gtk_widget_get_style_context (widget);
321 + width = gtk_widget_get_allocated_width (widget);
322 + height = gtk_widget_get_allocated_height (widget);
323 + gtk_render_background (context, cr, 0, 0, width, height);
324 + gtk_render_frame (context, cr, 0, 0, width, height);
325 + }
326 +
327 + return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
328 +}
329 +
330 +static gboolean
331 terminal_window_state_event (GtkWidget *widget,
332 GdkEventWindowState *event)
333 {
334 @@ -2832,6 +2852,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
318 @@ -2825,6 +2858,7 @@ terminal_window_class_init (TerminalWind
335319
336320 widget_class->show = terminal_window_show;
337321 widget_class->realize = terminal_window_realize;
339323 widget_class->window_state_event = terminal_window_state_event;
340324 widget_class->screen_changed = terminal_window_screen_changed;
341325 widget_class->style_updated = terminal_window_style_updated;
342 --
343 2.9.3
344
345
346 From 1547a94fc53d6598dd1885295edf24a44917bc00 Mon Sep 17 00:00:00 2001
347 From: "Owen W. Taylor" <[email protected]>
348 Date: Fri, 13 Nov 2015 15:16:42 +0100
349 Subject: [PATCH 03/14] screen, window: Extra padding around transparent
350 terminals in Wayland
351
352 https://bugzilla.redhat.com/show_bug.cgi?id=1207943
353 ---
354 src/terminal-screen.c | 40 +++++++++++++++++++++++++++++++++++++---
355 src/terminal-window.c | 18 ++++++++++++------
356 2 files changed, 49 insertions(+), 9 deletions(-)
357
358 diff --git a/src/terminal-screen.c b/src/terminal-screen.c
359 index 682b73644179..be0863b78544 100644
360 --- a/src/terminal-screen.c
361 +++ b/src/terminal-screen.c
362 @@ -137,6 +137,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *,
363 static gboolean terminal_screen_popup_menu (GtkWidget *widget);
364 static gboolean terminal_screen_button_press (GtkWidget *widget,
365 GdkEventButton *event);
366 +static void terminal_screen_hierarchy_changed (GtkWidget *widget,
367 + GtkWidget *previous_toplevel);
368 static gboolean terminal_screen_do_exec (TerminalScreen *screen,
369 FDSetupData *data,
370 GError **error);
371 @@ -482,6 +484,7 @@ terminal_screen_class_init (TerminalScreenClass *klass)
372 widget_class->drag_data_received = terminal_screen_drag_data_received;
373 widget_class->button_press_event = terminal_screen_button_press;
374 widget_class->popup_menu = terminal_screen_popup_menu;
375 + widget_class->hierarchy_changed = terminal_screen_hierarchy_changed;
376
377 terminal_class->child_exited = terminal_screen_child_exited;
378
379 @@ -885,6 +888,32 @@ terminal_screen_profile_changed_cb (GSettings *profile,
380 }
381
382 static void
383 +update_toplevel_transparency (TerminalScreen *screen)
384 +{
385 + GtkWidget *widget = GTK_WIDGET (screen);
386 + TerminalScreenPrivate *priv = screen->priv;
387 + GSettings *profile = priv->profile;
388 + GtkWidget *toplevel;
389 +
390 + toplevel = gtk_widget_get_toplevel (widget);
391 + if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
392 + {
393 + gboolean transparent;
394 +
395 + transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
396 + if (gtk_widget_get_app_paintable (toplevel) != transparent)
397 + {
398 + gtk_widget_set_app_paintable (toplevel, transparent);
399 +
400 + /* The opaque region of the toplevel isn't updated until the toplevel is allocated;
401 + * set_app_paintable() doesn't force an allocation, so do that manually.
402 + */
403 + gtk_widget_queue_resize (toplevel);
404 + }
405 + }
406 +}
407 +
408 +static void
409 update_color_scheme (TerminalScreen *screen)
410 {
411 GtkWidget *widget = GTK_WIDGET (screen);
412 @@ -962,9 +991,7 @@ update_color_scheme (TerminalScreen *screen)
413 vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
414 vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
415
416 - toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
417 - if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
418 - gtk_widget_set_app_paintable (toplevel, transparent);
419 + update_toplevel_transparency (screen);
420 }
421
422 static void
423 @@ -1569,6 +1596,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
424 terminal_screen_popup_info_unref (info);
425 }
426
427 +static void
428 +terminal_screen_hierarchy_changed (GtkWidget *widget,
429 + GtkWidget *previous_toplevel)
430 +{
431 + update_toplevel_transparency (TERMINAL_SCREEN (widget));
432 +}
433 +
434 static gboolean
435 terminal_screen_button_press (GtkWidget *widget,
436 GdkEventButton *event)
437 diff --git a/src/terminal-window.c b/src/terminal-window.c
438 index a9f3ff7d67e2..d09484e40e66 100644
439 --- a/src/terminal-window.c
440 +++ b/src/terminal-window.c
441 @@ -2300,15 +2300,21 @@ terminal_window_draw (GtkWidget *widget,
442 {
443 if (gtk_widget_get_app_paintable (widget))
444 {
445 + GtkAllocation child_allocation;
446 GtkStyleContext *context;
447 - int width;
448 - int height;
449 + GtkWidget *child;
450 +
451 + /* Get the *child* allocation, so we don't overwrite window borders */
452 + child = gtk_bin_get_child (GTK_BIN (widget));
453 + gtk_widget_get_allocation (child, &child_allocation);
454
455 context = gtk_widget_get_style_context (widget);
456 - width = gtk_widget_get_allocated_width (widget);
457 - height = gtk_widget_get_allocated_height (widget);
458 - gtk_render_background (context, cr, 0, 0, width, height);
459 - gtk_render_frame (context, cr, 0, 0, width, height);
460 + gtk_render_background (context, cr,
461 + child_allocation.x, child_allocation.y,
462 + child_allocation.width, child_allocation.height);
463 + gtk_render_frame (context, cr,
464 + child_allocation.x, child_allocation.y,
465 + child_allocation.width, child_allocation.height);
466 }
467
468 return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
469 --
470 2.9.3
471
472
473 From fda30e766cd72e1f863b8de207cc48126ac81a47 Mon Sep 17 00:00:00 2001
474 From: Debarshi Ray <[email protected]>
475 Date: Mon, 31 Oct 2016 18:41:25 +0100
476 Subject: [PATCH 06/14] profile: Drop the 'none' & 'full' markings from the
477 transparency scale
478
479 We didn't have translations for those strings and the scale should be
480 obvious in itself.
481 ---
482 src/profile-preferences.ui | 53 ++++------------------------------------------
483 1 file changed, 4 insertions(+), 49 deletions(-)
484
485 diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui
486 index b7decb284946..e1cb3470d0ee 100644
487 --- a/src/profile-preferences.ui
488 +++ b/src/profile-preferences.ui
489 @@ -1064,56 +1064,11 @@
490 </packing>
491 </child>
492 <child>
493 - <object class="GtkBox" id="background-transparent-scale-box">
494 + <object class="GtkScale" id="background-transparent-scale">
495 <property name="visible">True</property>
496 - <property name="can_focus">False</property>
497 - <property name="orientation">horizontal</property>
498 - <property name="spacing">6</property>
499 - <child>
500 - <object class="GtkLabel" id="background-transparent-min-label">
501 - <property name="visible">True</property>
502 - <property name="can_focus">False</property>
503 - <property name="xalign">0.5</property>
504 - <property name="label" translatable="yes">none</property>
505 - <style>
506 - <class name="dim-label"/>
507 - </style>
508 - </object>
509 - <packing>
510 - <property name="expand">False</property>
511 - <property name="fill">False</property>
512 - <property name="position">0</property>
513 - </packing>
514 - </child>
515 - <child>
516 - <object class="GtkScale" id="background-transparent-scale">
517 - <property name="visible">True</property>
518 - <property name="can_focus">True</property>
519 - <property name="adjustment">background-transparent-adjustment</property>
520 - <property name="draw_value">False</property>
521 - </object>
522 - <packing>
523 - <property name="expand">True</property>
524 - <property name="fill">True</property>
525 - <property name="position">1</property>
526 - </packing>
527 - </child>
528 - <child>
529 - <object class="GtkLabel" id="background-transparent-max-label">
530 - <property name="visible">True</property>
531 - <property name="can_focus">False</property>
532 - <property name="xalign">0.5</property>
533 - <property name="label" translatable="yes">full</property>
534 - <style>
535 - <class name="dim-label"/>
536 - </style>
537 - </object>
538 - <packing>
539 - <property name="expand">False</property>
540 - <property name="fill">False</property>
541 - <property name="position">2</property>
542 - </packing>
543 - </child>
544 + <property name="can_focus">True</property>
545 + <property name="adjustment">background-transparent-adjustment</property>
546 + <property name="draw_value">False</property>
547 </object>
548 <packing>
549 <property name="expand">True</property>
550 --
551 2.9.3
552
553
554 From a2acdf6195fb597488ba2ece85fd27ff82b9c14f Mon Sep 17 00:00:00 2001
555 From: Debarshi Ray <[email protected]>
556 Date: Tue, 17 Feb 2015 17:06:17 +0100
557 Subject: [PATCH 11/14] Restore translations for setting a title and
558 transparency
559
560 ---
561 po/am.po | 4 ++--
562 po/an.po | 8 ++++----
563 po/ar.po | 12 ++++++------
564 po/as.po | 12 ++++++------
565 po/ast.po | 4 ++--
566 po/az.po | 4 ++--
567 po/be.po | 3 +++
568 po/[email protected] | 4 ++--
569 po/bg.po | 6 ++++++
570 po/bn_IN.po | 7 +++++--
571 po/bs.po | 7 +++++++
572 po/ca.po | 9 +++++++++
573 po/[email protected] | 9 +++++++++
574 po/cs.po | 9 +++++++++
575 po/cy.po | 4 ++--
576 po/da.po | 12 ++++++------
577 po/de.po | 12 ++++++------
578 po/dz.po | 4 ++--
579 po/el.po | 11 +++++++----
580 po/[email protected] | 4 ++--
581 po/en_CA.po | 4 ++--
582 po/en_GB.po | 12 ++++++------
583 po/eo.po | 4 ++--
584 po/es.po | 12 ++++++------
585 po/et.po | 3 +++
586 po/eu.po | 12 ++++++------
587 po/fa.po | 11 +++++++----
588 po/fi.po | 9 +++++++++
589 po/fr.po | 9 +++++++++
590 po/fur.po | 8 ++++++--
591 po/ga.po | 3 +++
592 po/gl.po | 12 ++++++------
593 po/gu.po | 12 ++++++------
594 po/he.po | 12 ++++++------
595 po/hi.po | 12 ++++++------
596 po/hr.po | 7 +++++++
597 po/hu.po | 11 +++++++----
598 po/hy.po | 4 ++--
599 po/id.po | 9 +++++++++
600 po/it.po | 9 +++++++++
601 po/ja.po | 9 +++++++++
602 po/ka.po | 2 +-
603 po/kk.po | 9 +++++++++
604 po/kn.po | 11 +++++++----
605 po/ko.po | 9 +++++++++
606 po/ku.po | 4 ++--
607 po/lt.po | 9 +++++++++
608 po/lv.po | 12 ++++++++++++
609 po/mai.po | 4 ++--
610 po/mg.po | 4 ++--
611 po/mk.po | 4 ++--
612 po/ml.po | 4 ++--
613 po/mn.po | 4 ++--
614 po/mr.po | 12 ++++++------
615 po/ms.po | 4 ++--
616 po/nb.po | 9 +++++++++
617 po/nds.po | 4 ++--
618 po/ne.po | 8 ++++----
619 po/nl.po | 11 +++++++----
620 po/nn.po | 4 ++--
621 po/oc.po | 8 ++++----
622 po/or.po | 4 ++--
623 po/pa.po | 19 +++++++++----------
624 po/pl.po | 6 ++++++
625 po/ps.po | 4 ++--
626 po/pt.po | 12 ++++++------
627 po/pt_BR.po | 11 +++++++----
628 po/ro.po | 4 ++--
629 po/ru.po | 13 +++++++++++++
630 po/rw.po | 3 +--
631 po/si.po | 4 ++--
632 po/sk.po | 9 +++++++++
633 po/sl.po | 11 +++++++----
634 po/sq.po | 4 ++--
635 po/sr.po | 18 ++++++++++--------
636 po/[email protected] | 18 ++++++++++--------
637 po/sv.po | 6 ++++++
638 po/ta.po | 19 +++++++++----------
639 po/te.po | 19 +++++++++----------
640 po/tg.po | 8 ++++----
641 po/th.po | 12 ++++++------
642 po/tr.po | 6 ++++++
643 po/ug.po | 4 ++--
644 po/uk.po | 12 ++++++------
645 po/vi.po | 11 +++++++----
646 po/wa.po | 4 ++--
647 po/xh.po | 4 ++--
648 po/zh_CN.po | 11 +++++++----
649 po/zh_HK.po | 11 +++++++----
650 po/zh_TW.po | 11 +++++++----
651 90 files changed, 486 insertions(+), 257 deletions(-)
652
653 diff --git a/po/am.po b/po/am.po
654 index 3445d96da657..a5fadb3a8d48 100644
655326 --- a/po/am.po
656327 +++ b/po/am.po
657328 @@ -614,8 +614,8 @@ msgid "_Text color:"
665336
666337 #: ../src/gnome-terminal.glade2.h:103
667338 msgid "_Update login records when command is launched"
668 diff --git a/po/an.po b/po/an.po
669 index fcec2668aa11..2c6be805b598 100644
670339 --- a/po/an.po
671340 +++ b/po/an.po
672341 @@ -2241,8 +2241,8 @@ msgstr "_Zarrar a finestra"
691360
692361 #~ msgid "Keyboard Shortcuts"
693362 #~ msgstr "Alcorces de teclau"
694 diff --git a/po/ar.po b/po/ar.po
695 index fa2b4b54ff13..f68b20a5b826 100644
696363 --- a/po/ar.po
697364 +++ b/po/ar.po
698365 @@ -2313,11 +2313,11 @@ msgstr "أغ_لق النافذة"
722389
723390 #~ msgid "S_hade transparent or image background:"
724391 #~ msgstr "_ظلل شفافية أو صورة الخلفية:"
725 diff --git a/po/as.po b/po/as.po
726 index 3fade2b8cb12..7efcd44ab4bb 100644
727392 --- a/po/as.po
728393 +++ b/po/as.po
729 @@ -2163,11 +2163,11 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
394 @@ -2163,11 +2163,11 @@ msgstr "উইন্ডো বন্ধ
730395 #~ msgid "Default size:"
731396 #~ msgstr "অবিকল্পিত আকাৰ:"
732397
742407
743408 #~ msgid "Title and Command"
744409 #~ msgstr "শীৰ্ষক আৰু কমান্ড"
745 @@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
410 @@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ
746411 #~ msgid "Background image _scrolls"
747412 #~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
748413
753418
754419 #~ msgid "S_hade transparent or image background:"
755420 #~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
756 diff --git a/po/ast.po b/po/ast.po
757 index d1c6e7b8174a..4210820a1429 100644
758421 --- a/po/ast.po
759422 +++ b/po/ast.po
760423 @@ -1598,8 +1598,8 @@ msgid "_Text color:"
768431
769432 #: ../src/profile-preferences.glade.h:78
770433 msgid "_Underline color:"
771 diff --git a/po/az.po b/po/az.po
772 index 586c1e4d827b..6bed64a15ddc 100644
773434 --- a/po/az.po
774435 +++ b/po/az.po
775436 @@ -620,8 +620,8 @@ msgid "_Text color:"
783444
784445 #: ../src/gnome-terminal.glade2.h:103
785446 msgid "_Update login records when command is launched"
786 diff --git a/po/be.po b/po/be.po
787 index 1e45906547be..cd3fe0b7b6b2 100644
788447 --- a/po/be.po
789448 +++ b/po/be.po
790449 @@ -2015,3 +2015,6 @@ msgstr ""
794453 +msgid "Transparent background"
795454 +msgstr "Празрысты фон"
796455 +
797 diff --git a/po/[email protected] b/po/[email protected]
798 index 82ef0664ae1e..73d74fbeb124 100644
799456 --- a/po/[email protected]
800457 +++ b/po/[email protected]
801458 @@ -1426,8 +1426,8 @@ msgid "_Text color:"
809466
810467 #: ../src/profile-preferences.glade.h:74
811468 msgid "_Update login records when command is launched"
812 diff --git a/po/bg.po b/po/bg.po
813 index f42c22c94678..e224d3800304 100644
814469 --- a/po/bg.po
815470 +++ b/po/bg.po
816471 @@ -2281,3 +2281,9 @@ msgstr ""
824479 +msgid "_Title:"
825480 +msgstr "_Заглавие:"
826481 \ No newline at end of file
827 diff --git a/po/bn_IN.po b/po/bn_IN.po
828 index f196e5084797..55989e165566 100644
829482 --- a/po/bn_IN.po
830483 +++ b/po/bn_IN.po
831 @@ -2356,5 +2356,8 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
484 @@ -2356,5 +2356,8 @@ msgstr "উইন্ডো বন্ধ
832485 #~ msgid "_Input Methods"
833486 #~ msgstr "ইনপুট পদ্ধতি (_I)"
834487
839492 +
840493 +msgid "Transparent background"
841494 +msgstr "স্বচ্চ পটভূমি "
842 diff --git a/po/bs.po b/po/bs.po
843 index 49e710859ac9..6c06b272eacf 100644
844495 --- a/po/bs.po
845496 +++ b/po/bs.po
846 @@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
497 @@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanj
847498 msgid "Keyboard shortcut to make font smaller"
848499 msgstr "Kratica tastature za smanjivanje fonta"
849500
861512 +
862513 +msgid "_Title:"
863514 +msgstr "_Naslov:"
864 diff --git a/po/ca.po b/po/ca.po
865 index c80c2572d11e..b39546b26fcf 100644
866515 --- a/po/ca.po
867516 +++ b/po/ca.po
868517 @@ -2304,3 +2304,12 @@ msgstr "Tanca la _finestra"
879528 +msgid "_Title:"
880529 +msgstr "Tít_ol:"
881530 \ No newline at end of file
882 diff --git a/po/[email protected] b/po/[email protected]
883 index 2dafab8ca90d..e9752ab36882 100644
884531 --- a/po/[email protected]
885532 +++ b/po/[email protected]
886533 @@ -2092,3 +2092,12 @@ msgstr ""
896543 +
897544 +msgid "_Title:"
898545 +msgstr "Tít_ol:"
899 diff --git a/po/cs.po b/po/cs.po
900 index f87b88f9bb3a..d2e90ddc7068 100644
901546 --- a/po/cs.po
902547 +++ b/po/cs.po
903548 @@ -2253,3 +2253,12 @@ msgstr ""
914559 +msgid "_Title:"
915560 +msgstr "Zá_hlaví:"
916561 \ No newline at end of file
917 diff --git a/po/cy.po b/po/cy.po
918 index 644df82363f1..f0c96e7aa85b 100644
919562 --- a/po/cy.po
920563 +++ b/po/cy.po
921564 @@ -1448,8 +1448,8 @@ msgid "_Text color:"
929572
930573 #: ../src/profile-preferences.glade.h:74
931574 msgid "_Update login records when command is launched"
932 diff --git a/po/da.po b/po/da.po
933 index 193a58c0fd14..f957d0c7cf1f 100644
934575 --- a/po/da.po
935576 +++ b/po/da.po
936577 @@ -2368,11 +2368,11 @@ msgstr "_Luk vindue"
960601
961602 #~ msgid ""
962603 #~ "You already have a profile called “%s”. Do you want to create another "
963 diff --git a/po/de.po b/po/de.po
964 index 7e098bd312ac..c38bc2854549 100644
965604 --- a/po/de.po
966605 +++ b/po/de.po
967606 @@ -2428,11 +2428,11 @@ msgstr "Fenster _schließen"
991630
992631 #~ msgid "S_hade transparent or image background:"
993632 #~ msgstr "Transparenz und Bildhintergründe _abdunkeln:"
994 diff --git a/po/dz.po b/po/dz.po
995 index d97e6102b850..061a09dc9edb 100644
996633 --- a/po/dz.po
997634 +++ b/po/dz.po
998635 @@ -1551,8 +1551,8 @@ msgid "_Text color:"
1006643
1007644 #: ../src/profile-preferences.glade.h:78
1008645 #, fuzzy
1009 diff --git a/po/el.po b/po/el.po
1010 index 911f7bd0483b..dc8ebc1e7f45 100644
1011646 --- a/po/el.po
1012647 +++ b/po/el.po
1013 @@ -2440,11 +2440,11 @@ msgstr "Κ_λείσιμο παραθύρου"
648 @@ -2440,11 +2440,11 @@ msgstr "Κ_λείσιμο παραθύρ
1014649 #~ msgid "Default size:"
1015650 #~ msgstr "Προεπιλεγμένο μέγεθος:"
1016651
1026661
1027662 #~ msgid "Title and Command"
1028663 #~ msgstr "Τίτλος και εντολή"
1029 @@ -2515,3 +2515,6 @@ msgstr "Κ_λείσιμο παραθύρου"
664 @@ -2515,3 +2515,6 @@ msgstr "Κ_λείσιμο παραθύρ
1030665
1031666 #~ msgid "_Input Methods"
1032667 #~ msgstr "_Μέθοδοι εισαγωγής"
1033668 +
1034669 +msgid "Transparent background"
1035670 +msgstr "Διάφανο παρασκήνιο"
1036 diff --git a/po/[email protected] b/po/[email protected]
1037 index 82b2d53401b2..67b429810d40 100644
1038671 --- a/po/[email protected]
1039672 +++ b/po/[email protected]
1040673 @@ -1468,8 +1468,8 @@ msgid "_Text color:"
1048681
1049682 #: ../src/profile-preferences.glade.h:79
1050683 msgid "_Underline color:"
1051 diff --git a/po/en_CA.po b/po/en_CA.po
1052 index 6c9e0cd73d63..3ffa89b7cfee 100644
1053684 --- a/po/en_CA.po
1054685 +++ b/po/en_CA.po
1055686 @@ -557,8 +557,8 @@ msgid "_Text color:"
1063694
1064695 #: ../src/gnome-terminal.glade2.h:87
1065696 msgid "_Update login records when command is launched"
1066 diff --git a/po/en_GB.po b/po/en_GB.po
1067 index 2fb1448eccbe..59a617aaa48b 100644
1068697 --- a/po/en_GB.po
1069698 +++ b/po/en_GB.po
1070699 @@ -2386,8 +2386,8 @@ msgstr "C_lose Window"
1100729
1101730 #~ msgid "S_hade transparent or image background:"
1102731 #~ msgstr "S_hade transparent or image background:"
1103 diff --git a/po/eo.po b/po/eo.po
1104 index 567c08dc1da8..d067c0e9a7b9 100644
1105732 --- a/po/eo.po
1106733 +++ b/po/eo.po
1107734 @@ -2299,8 +2299,8 @@ msgstr "_Fermi la fenestron"
1115742
1116743 #~ msgid "On the left side"
1117744 #~ msgstr "Maldekstre"
1118 diff --git a/po/es.po b/po/es.po
1119 index 70fc6fcf9a88..4bd3c0cdbe71 100644
1120745 --- a/po/es.po
1121746 +++ b/po/es.po
1122747 @@ -2410,11 +2410,11 @@ msgstr "_Cerrar ventana"
1146771
1147772 #~ msgid "No such profile \"%s\", using default profile\n"
1148773 #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
1149 diff --git a/po/et.po b/po/et.po
1150 index 4b1c2a7c67e4..770761168806 100644
1151774 --- a/po/et.po
1152775 +++ b/po/et.po
1153776 @@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
1157780 +
1158781 +msgid "Transparent background"
1159782 +msgstr "Läbipaistev taust"
1160 diff --git a/po/eu.po b/po/eu.po
1161 index c7b9e2b4529e..b6619c68ddd6 100644
1162783 --- a/po/eu.po
1163784 +++ b/po/eu.po
1164785 @@ -2369,11 +2369,11 @@ msgstr "It_xi leihoa"
1188809
1189810 #~ msgid ""
1190811 #~ "You already have a profile called “%s”. Do you want to create another "
1191 diff --git a/po/fa.po b/po/fa.po
1192 index cb551a1ecd07..1dbf53896b80 100644
1193812 --- a/po/fa.po
1194813 +++ b/po/fa.po
1195814 @@ -2363,8 +2363,8 @@ msgstr "_بستن پنجره"
1214833 +
1215834 +msgid "Transparent background"
1216835 +msgstr "پس‌زمینه‌ی شفاف"
1217 diff --git a/po/fi.po b/po/fi.po
1218 index a8cd6e1cb1f1..d6bbef3dbe0b 100644
1219836 --- a/po/fi.po
1220837 +++ b/po/fi.po
1221838 @@ -2294,9 +2294,18 @@ msgstr "_Sulje ikkuna"
1238855 +msgid "_Title:"
1239856 +msgstr "_Otsikko:"
1240857 \ No newline at end of file
1241 diff --git a/po/fr.po b/po/fr.po
1242 index 40019d1a82ec..7fc7cebb5281 100644
1243858 --- a/po/fr.po
1244859 +++ b/po/fr.po
1245860 @@ -2309,3 +2309,12 @@ msgstr "Fermer _la fenêtre"
1255870 +
1256871 +msgid "_Title:"
1257872 +msgstr "_Titre :"
1258 diff --git a/po/fur.po b/po/fur.po
1259 index 226600854fcd..908d9f6fb127 100644
1260873 --- a/po/fur.po
1261874 +++ b/po/fur.po
1262875 @@ -634,6 +634,10 @@ msgstr ""
1281894
1282895 #~ msgid ""
1283896 #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
1284 diff --git a/po/ga.po b/po/ga.po
1285 index 93d5fa9d1481..feb87dce3d6b 100644
1286897 --- a/po/ga.po
1287898 +++ b/po/ga.po
1288899 @@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
1292903 +
1293904 +msgid "Transparent background"
1294905 +msgstr "Cúlra trédhearcach"
1295 diff --git a/po/gl.po b/po/gl.po
1296 index 910f98611ab5..4047f7f8f26a 100644
1297906 --- a/po/gl.po
1298907 +++ b/po/gl.po
1299908 @@ -2383,11 +2383,11 @@ msgstr "P_echar a xanela"
1323932
1324933 #~ msgid "S_hade transparent or image background:"
1325934 #~ msgstr "_Sombra transparente ou imaxe de fondo:"
1326 diff --git a/po/gu.po b/po/gu.po
1327 index 76b459cf8dc5..153ab9177385 100644
1328935 --- a/po/gu.po
1329936 +++ b/po/gu.po
1330 @@ -2155,8 +2155,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
937 @@ -2155,8 +2155,8 @@ msgstr "વિન્ડો બંધ ક
1331938 #~ msgid "Default size:"
1332939 #~ msgstr "મૂળભૂત માપ:"
1333940
1338945
1339946 #~ msgid "When terminal commands set their o_wn titles:"
1340947 #~ msgstr "જ્યારે આદેશો તેમના પોતાના શીર્ષકો સુયોજીત કરે (_w):"
1341 @@ -2203,8 +2203,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
948 @@ -2203,8 +2203,8 @@ msgstr "વિન્ડો બંધ ક
1342949 #~ msgid "_Input Methods"
1343950 #~ msgstr "ઈનપુટ માટેની પધ્ધિતિઓ (_I)"
1344951
1349956
1350957 #~ msgid "Keyboard shortcut to switch to tab 1"
1351958 #~ msgstr "ટૅબ ૧ પર જવા માટે કીબોર્ડનું ટુંકાણ"
1352 @@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
959 @@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ ક
1353960 #~ msgid "_Solid color"
1354961 #~ msgstr "ઘટ્ટ રંગ (_S)"
1355962
1360967
1361968 #~ msgid "No such profile \"%s\", using default profile\n"
1362969 #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
1363 diff --git a/po/he.po b/po/he.po
1364 index 57cb2d0d110f..618cc5a878b3 100644
1365970 --- a/po/he.po
1366971 +++ b/po/he.po
1367972 @@ -2333,11 +2333,11 @@ msgstr "סגירת ה_חלון"
1391996
1392997 #~ msgid "No such profile \"%s\", using default profile\n"
1393998 #~ msgstr "No such profile \"%s\", using default profile\n"
1394 diff --git a/po/hi.po b/po/hi.po
1395 index 2d7dc5b14008..d71a880a4acb 100644
1396999 --- a/po/hi.po
13971000 +++ b/po/hi.po
1398 @@ -2268,8 +2268,8 @@ msgstr "विंडो बंद करें (_l)"
1001 @@ -2268,8 +2268,8 @@ msgstr "विंडो बंद कर
13991002 #~ msgstr "कस्टम डिफ़ॉल्ट टर्मिनल आकार का उपयोग करें (_z)"
14001003
14011004 #~| msgid "_Title:"
14061009
14071010 #~ msgid "When terminal commands set their o_wn titles:"
14081011 #~ msgstr "जब टर्मिनल कमांड उनका अपना शीर्षक सेट करता है (_w):"
1409 @@ -2349,8 +2349,8 @@ msgstr "विंडो बंद करें (_l)"
1012 @@ -2349,8 +2349,8 @@ msgstr "विंडो बंद कर
14101013 #~ msgid "_Input Methods"
14111014 #~ msgstr "इनपुट विधियाँ (_I)"
14121015
14171020
14181021 #~ msgid "Disable connection to session manager"
14191022 #~ msgstr "सत्र प्रबंधक में कनेक्शन निष्क्रिय करें"
1420 @@ -2979,8 +2979,8 @@ msgstr "विंडो बंद करें (_l)"
1023 @@ -2979,8 +2979,8 @@ msgstr "विंडो बंद कर
14211024 #~ msgid "_Background image"
14221025 #~ msgstr "पृष्ठभूमि छवि (_B)"
14231026
14281031
14291032 #~ msgid "S/Key Challenge Response"
14301033 #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
1431 diff --git a/po/hr.po b/po/hr.po
1432 index 099791b7db35..af9e6ad78c86 100644
14331034 --- a/po/hr.po
14341035 +++ b/po/hr.po
14351036 @@ -2287,3 +2287,10 @@ msgstr ""
14431044 +
14441045 +msgid "_Title:"
14451046 +msgstr "_Naslov:"
1446 diff --git a/po/hu.po b/po/hu.po
1447 index 8fc02debf569..516bbee9dd89 100644
14481047 --- a/po/hu.po
14491048 +++ b/po/hu.po
14501049 @@ -2375,11 +2375,11 @@ msgstr "_Ablak bezárása"
14701069 +
14711070 +msgid "Transparent background"
14721071 +msgstr "Áttetsző háttér"
1473 diff --git a/po/hy.po b/po/hy.po
1474 index aaf2d9b292da..c8f14dfd4280 100644
14751072 --- a/po/hy.po
14761073 +++ b/po/hy.po
14771074 @@ -1012,8 +1012,8 @@ msgid "_Text color:"
14851082
14861083 #: ../src/profile-preferences.glade.h:74
14871084 msgid "_Update login records when command is launched"
1488 diff --git a/po/id.po b/po/id.po
1489 index b27605c49b9b..c4c4163b2db1 100644
14901085 --- a/po/id.po
14911086 +++ b/po/id.po
14921087 @@ -2252,3 +2252,12 @@ msgstr ""
15031098 +msgid "_Title:"
15041099 +msgstr "_Judul:"
15051100 \ No newline at end of file
1506 diff --git a/po/it.po b/po/it.po
1507 index b7bdc71451b0..b959dedb654c 100644
15081101 --- a/po/it.po
15091102 +++ b/po/it.po
15101103 @@ -2289,3 +2289,12 @@ msgstr ""
15211114 +msgid "_Title:"
15221115 +msgstr "_Titolo:"
15231116 \ No newline at end of file
1524 diff --git a/po/ja.po b/po/ja.po
1525 index f7235d9f4a0b..2d009188a320 100644
15261117 --- a/po/ja.po
15271118 +++ b/po/ja.po
15281119 @@ -1907,3 +1907,12 @@ msgstr "ウィンドウを閉じる(_L)"
15391130 +msgid "_Title:"
15401131 +msgstr "タイトル(_T):"
15411132 \ No newline at end of file
1542 diff --git a/po/ka.po b/po/ka.po
1543 index 2a0bc91fad40..10a833ad4cad 100644
15441133 --- a/po/ka.po
15451134 +++ b/po/ka.po
1546 @@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერი:"
1135 @@ -569,7 +569,7 @@ msgstr "_ტექსტის ფერ
15471136
15481137 #: ../src/gnome-terminal.glade2.h:86
15491138 #, fuzzy
15521141 msgstr "გამჭირვალე"
15531142
15541143 #: ../src/gnome-terminal.glade2.h:87
1555 diff --git a/po/kk.po b/po/kk.po
1556 index 70caf943e846..d41be34c99ae 100644
15571144 --- a/po/kk.po
15581145 +++ b/po/kk.po
15591146 @@ -2213,3 +2213,12 @@ msgstr "Терезені жа_бу"
15701157 +msgid "_Title:"
15711158 +msgstr "А_тауы:"
15721159 \ No newline at end of file
1573 diff --git a/po/kn.po b/po/kn.po
1574 index c887f88a2c87..dc14ae31ce76 100644
15751160 --- a/po/kn.po
15761161 +++ b/po/kn.po
1577 @@ -2261,8 +2261,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1162 @@ -2261,8 +2261,8 @@ msgstr "р▓Хр▓┐р▓Яр▓Хр▓┐р▓пр▓ир│Нр▓ир│Б р
15781163 #~ msgid "Use custom default terminal si_ze"
15791164 #~ msgstr "ಅಗತ್ಯಾನುಗುಣ ಆದೇಶತೆರೆ ಗಾತ್ರವನ್ನು ಬಳಸು (_z)"
15801165
15851170
15861171 #~ msgid "When terminal commands set their o_wn titles:"
15871172 #~ msgstr "ಆದೇಶಗಳು ತಮ್ಮದೆ ಆದ ಹೆಸರಗಳನ್ನು ಇರಿಸಿಕೊಂಡಾಗ (_w):"
1588 @@ -2342,5 +2342,8 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
1173 @@ -2342,5 +2342,8 @@ msgstr "р▓Хр▓┐р▓Яр▓Хр▓┐р▓пр▓ир│Нр▓ир│Б р
15891174 #~ msgid "_Input Methods"
15901175 #~ msgstr "ಇನ್‌ಪುಟ್ ಕ್ರಮಗಳು (_I)"
15911176
15961181 +
15971182 +msgid "Transparent background"
15981183 +msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
1599 diff --git a/po/ko.po b/po/ko.po
1600 index 366a5122c251..1369c9dcebe4 100644
16011184 --- a/po/ko.po
16021185 +++ b/po/ko.po
16031186 @@ -2281,3 +2281,12 @@ msgstr "창 닫기(_L)"
16141197 +msgid "_Title:"
16151198 +msgstr "제목(_T):"
16161199 \ No newline at end of file
1617 diff --git a/po/ku.po b/po/ku.po
1618 index bc2bb7f03de4..226d9942f23a 100644
16191200 --- a/po/ku.po
16201201 +++ b/po/ku.po
16211202 @@ -558,8 +558,8 @@ msgid "_Text color:"
16291210
16301211 #: ../src/gnome-terminal.glade2.h:87
16311212 msgid "_Update login records when command is launched"
1632 diff --git a/po/lt.po b/po/lt.po
1633 index c1c3ce0bfbab..c333d1fae7af 100644
16341213 --- a/po/lt.po
16351214 +++ b/po/lt.po
16361215 @@ -2280,3 +2280,12 @@ msgstr "_Užverti langą"
16461225 +
16471226 +msgid "_Title:"
16481227 +msgstr "_Pavadinimas:"
1649 diff --git a/po/lv.po b/po/lv.po
1650 index 959d1c3531fd..4cb16771d28b 100644
16511228 --- a/po/lv.po
16521229 +++ b/po/lv.po
16531230 @@ -2236,3 +2236,15 @@ msgstr ""
16671244 +msgid "'Terminal'"
16681245 +msgstr "“Terminālis”"
16691246 \ No newline at end of file
1670 diff --git a/po/mai.po b/po/mai.po
1671 index 715d0b9e1c82..881fd5a2cce9 100644
16721247 --- a/po/mai.po
16731248 +++ b/po/mai.po
16741249 @@ -1291,8 +1291,8 @@ msgid "_Text color:"
16821257
16831258 #: ../src/profile-preferences.glade.h:70
16841259 msgid "_Update login records when command is launched"
1685 diff --git a/po/mg.po b/po/mg.po
1686 index 99fa0f5e4059..bf4ac34d09c1 100644
16871260 --- a/po/mg.po
16881261 +++ b/po/mg.po
16891262 @@ -567,8 +567,8 @@ msgid "_Text color:"
16971270
16981271 #: ../src/gnome-terminal.glade2.h:87
16991272 msgid "_Update login records when command is launched"
1700 diff --git a/po/mk.po b/po/mk.po
1701 index 4fe43192fe57..6160ede0d0d3 100644
17021273 --- a/po/mk.po
17031274 +++ b/po/mk.po
17041275 @@ -1167,8 +1167,8 @@ msgid "_Text color:"
17121283
17131284 #: ../src/profile-preferences.glade.h:78
17141285 #| msgid "_Text color:"
1715 diff --git a/po/ml.po b/po/ml.po
1716 index cc1928dcda63..62abd2131499 100644
17171286 --- a/po/ml.po
17181287 +++ b/po/ml.po
1719 @@ -2751,8 +2751,8 @@ msgstr "ടെര്‍മിനല്‍ അ_ടയ്ക്കുക"
1288 @@ -2751,8 +2751,8 @@ msgstr "เดŸเต†เดฐเตโ€เดฎเดฟเดจเดฒเตโ€
17201289 #~ msgid "_Solid color"
17211290 #~ msgstr "_സോളിഡ് നിറം"
17221291
17271296
17281297 #~ msgid "S/Key Challenge Response"
17291298 #~ msgstr "S/Key ചാലഞ്ച് മറുപടി"
1730 diff --git a/po/mn.po b/po/mn.po
1731 index 2f9d86072d1c..8f8850b7ec0b 100644
17321299 --- a/po/mn.po
17331300 +++ b/po/mn.po
17341301 @@ -618,8 +618,8 @@ msgid "_Text color:"
17421309
17431310 #: ../src/gnome-terminal.glade2.h:103
17441311 msgid "_Update login records when command is launched"
1745 diff --git a/po/mr.po b/po/mr.po
1746 index 61997dafbd03..ea064191be0d 100644
17471312 --- a/po/mr.po
17481313 +++ b/po/mr.po
1749 @@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा (_l)"
1314 @@ -2219,8 +2219,8 @@ msgstr "चौकट बंद करा
17501315 #~ msgid "Default size:"
17511316 #~ msgstr "पूर्वनिर्धारीत आकार:"
17521317
17571322
17581323 #~ msgid "When terminal commands set their o_wn titles:"
17591324 #~ msgstr "जेव्हा टर्मिनल आदेश स्वतःचे शिर्षक निश्चित करते (_w):"
1760 @@ -2267,8 +2267,8 @@ msgstr "चौकट बंद करा (_l)"
1325 @@ -2267,8 +2267,8 @@ msgstr "चौकट बंद करा
17611326 #~ msgid "_Input Methods"
17621327 #~ msgstr "इनपुट पध्दती (_I)"
17631328
17681333
17691334 #~ msgid "Keyboard shortcut to switch to tab 1"
17701335 #~ msgstr "टॅब 1 वापरण्याकरीता कळफलक शॉर्टकट"
1771 @@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
1336 @@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा
17721337 #~ msgid "_Solid color"
17731338 #~ msgstr "गडद रंग (_S)"
17741339
17791344
17801345 #~ msgid "Disabled"
17811346 #~ msgstr "अकार्यान्वीतित"
1782 diff --git a/po/ms.po b/po/ms.po
1783 index f2ebd4851d3b..a20bae29a8e8 100644
17841347 --- a/po/ms.po
17851348 +++ b/po/ms.po
17861349 @@ -631,8 +631,8 @@ msgid "_Text color:"
17941357
17951358 #: ../src/gnome-terminal.glade2.h:103
17961359 msgid "_Update login records when command is launched"
1797 diff --git a/po/nb.po b/po/nb.po
1798 index 5be6c5bd71c9..537692980cfd 100644
17991360 --- a/po/nb.po
18001361 +++ b/po/nb.po
18011362 @@ -2238,3 +2238,12 @@ msgstr ""
18111372 +
18121373 +msgid "_Title:"
18131374 +msgstr "_Tittel:"
1814 diff --git a/po/nds.po b/po/nds.po
1815 index 82f930b1cc0c..da1d6d0c9342 100644
18161375 --- a/po/nds.po
18171376 +++ b/po/nds.po
18181377 @@ -996,8 +996,8 @@ msgid "_Text color:"
18261385
18271386 #: ../src/profile-preferences.glade.h:74
18281387 msgid "_Update login records when command is launched"
1829 diff --git a/po/ne.po b/po/ne.po
1830 index 4fe16cc88a9a..e204ec9d646c 100644
18311388 --- a/po/ne.po
18321389 +++ b/po/ne.po
1833 @@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
1390 @@ -2398,8 +2398,8 @@ msgstr "рд╕рдЮреНрдЭреНрдпрд╛рд▓ рдмрдир
18341391 #~ msgid "_None (use solid color)"
18351392 #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
18361393
18411398
18421399 #~ msgid "_Use the system fixed width font"
18431400 #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
1844 @@ -3232,8 +3232,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
1401 @@ -3232,8 +3232,8 @@ msgstr "рд╕рдЮреНрдЭреНрдпрд╛рд▓ рдмрдир
18451402 #~ msgid "_Input Methods"
18461403 #~ msgstr "आगत विधि"
18471404
18521409
18531410 #~ msgid ""
18541411 #~ "text/plain dropped on terminal had wrong format (%d) or length (%d)\n"
1855 diff --git a/po/nl.po b/po/nl.po
1856 index a51720be1610..94eae523d2e6 100644
18571412 --- a/po/nl.po
18581413 +++ b/po/nl.po
18591414 @@ -2218,11 +2218,11 @@ msgstr "Venster sl_uiten"
18791434 +
18801435 +msgid "Transparent background"
18811436 +msgstr "Transparante achtergrond"
1882 diff --git a/po/nn.po b/po/nn.po
1883 index 5aa43b113ed9..33aff8b1d52a 100644
18841437 --- a/po/nn.po
18851438 +++ b/po/nn.po
18861439 @@ -1429,8 +1429,8 @@ msgid "_Text color:"
18941447
18951448 #: ../src/profile-preferences.glade.h:74
18961449 msgid "_Update login records when command is launched"
1897 diff --git a/po/oc.po b/po/oc.po
1898 index b1befba5b372..26d47642925e 100644
18991450 --- a/po/oc.po
19001451 +++ b/po/oc.po
19011452 @@ -2549,8 +2549,8 @@ msgstr "Tampar _la fenèstra"
19201471
19211472 #~ msgid ""
19221473 #~ "A subset of possible encodings are presented in the Encoding submenu. "
1923 diff --git a/po/or.po b/po/or.po
1924 index ec1e6bfb9a28..218acd712df6 100644
19251474 --- a/po/or.po
19261475 +++ b/po/or.po
19271476 @@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
19351484
19361485 #~ msgid "S_hade transparent or image background:"
19371486 #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
1938 diff --git a/po/pa.po b/po/pa.po
1939 index 9c95b66e7185..ea4c570cf06c 100644
19401487 --- a/po/pa.po
19411488 +++ b/po/pa.po
1942 @@ -2122,10 +2122,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
1489 @@ -2122,10 +2122,9 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰ
19431490 #~ msgid "Show server options"
19441491 #~ msgstr "ਸਰਵਰ ਚੋਣਾਂ ਵੇਖੋ"
19451492
19531500
19541501 #~ msgid "Title for terminal"
19551502 #~ msgstr "ਟਰਮੀਨਲ ਲਈ ਟਾਈਟਲ"
1956 @@ -2176,11 +2175,11 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
1503 @@ -2176,11 +2175,11 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰ
19571504 #~ msgid "Default size:"
19581505 #~ msgstr "ਡਿਫਾਲਟ ਸਾਈਜ਼:"
19591506
19691516
19701517 #~ msgid "Title and Command"
19711518 #~ msgstr "ਟਾਈਟਲ ਅਤੇ ਕਮਾਂਡ"
1972 @@ -3008,8 +3007,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
1519 @@ -3008,8 +3007,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰ
19731520 #~ msgid "_Solid color"
19741521 #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
19751522
19801527
19811528 #~ msgid "S/Key Challenge Response"
19821529 #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
1983 diff --git a/po/pl.po b/po/pl.po
1984 index baa03a7f5f67..c81a3157cd79 100644
19851530 --- a/po/pl.po
19861531 +++ b/po/pl.po
1987 @@ -2293,3 +2293,9 @@ msgid ""
1532 @@ -2345,3 +2345,9 @@ msgstr "bez"
19881533
19891534 msgid "full"
19901535 msgstr "całkowicie"
19951540 +msgid "_Title:"
19961541 +msgstr "_Tytuł:"
19971542 \ No newline at end of file
1998 diff --git a/po/ps.po b/po/ps.po
1999 index b25a2cb41712..dcbaf0bc6c8c 100644
20001543 --- a/po/ps.po
20011544 +++ b/po/ps.po
20021545 @@ -1053,8 +1053,8 @@ msgid "_Text color:"
20101553
20111554 #: ../src/profile-preferences.glade.h:70
20121555 msgid "_Update login records when command is launched"
2013 diff --git a/po/pt.po b/po/pt.po
2014 index 5181419ad973..82d8f9e56569 100644
20151556 --- a/po/pt.po
20161557 +++ b/po/pt.po
20171558 @@ -2360,11 +2360,11 @@ msgstr "Fechar jane_la"
20411582
20421583 #~ msgid "S_hade transparent or image background:"
20431584 #~ msgstr "Transparente som_breado ou imagem de fundo:"
2044 diff --git a/po/pt_BR.po b/po/pt_BR.po
2045 index d3e6c538a640..3c8320206b20 100644
20461585 --- a/po/pt_BR.po
20471586 +++ b/po/pt_BR.po
20481587 @@ -2389,11 +2389,11 @@ msgstr "_Fechar janela"
20681607 +
20691608 +msgid "Transparent background"
20701609 +msgstr "Fundo transparente"
2071 diff --git a/po/ro.po b/po/ro.po
2072 index 179dd77fd166..f7fc7ae070cf 100644
20731610 --- a/po/ro.po
20741611 +++ b/po/ro.po
20751612 @@ -1576,8 +1576,8 @@ msgid "_Text color:"
20831620
20841621 #: ../src/profile-preferences.glade.h:78
20851622 msgid "_Underline color:"
2086 diff --git a/po/ru.po b/po/ru.po
2087 index 6cd2cd49fb12..65a78a070a9d 100644
20881623 --- a/po/ru.po
20891624 +++ b/po/ru.po
20901625 @@ -2271,3 +2271,16 @@ msgstr "_Закрыть окно"
21051640 +msgid "'Terminal'"
21061641 +msgstr "'Терминал'"
21071642 \ No newline at end of file
2108 diff --git a/po/rw.po b/po/rw.po
2109 index 012f64e325c3..5ff633f8b3c2 100644
21101643 --- a/po/rw.po
21111644 +++ b/po/rw.po
21121645 @@ -749,7 +749,7 @@ msgstr "Ibara ry'Inyandiko..."
21261659 msgid "_Title:"
21271660 msgstr "Umutwe..."
21281661
2129 diff --git a/po/si.po b/po/si.po
2130 index adca7d5acba9..64c05665429b 100644
21311662 --- a/po/si.po
21321663 +++ b/po/si.po
21331664 @@ -538,8 +538,8 @@ msgid "_Text color:"
21411672
21421673 #: ../src/gnome-terminal.glade2.h:87
21431674 msgid "_Update login records when command is launched"
2144 diff --git a/po/sk.po b/po/sk.po
2145 index 34ced44920c5..00183da72a54 100644
21461675 --- a/po/sk.po
21471676 +++ b/po/sk.po
21481677 @@ -2590,3 +2590,12 @@ msgstr "_Zavrieť okno"
21591688 +msgid "_Title:"
21601689 +msgstr "_Titulok:"
21611690 \ No newline at end of file
2162 diff --git a/po/sl.po b/po/sl.po
2163 index 754abb4ba4a2..8f3674ac72c1 100644
21641691 --- a/po/sl.po
21651692 +++ b/po/sl.po
21661693 @@ -2364,11 +2364,11 @@ msgstr "_Zapri okno"
21861713 +
21871714 +msgid "Transparent background"
21881715 +msgstr "Prosojno ozadje"
2189 diff --git a/po/sq.po b/po/sq.po
2190 index 158f6cb167cc..96afc9b98fd4 100644
21911716 --- a/po/sq.po
21921717 +++ b/po/sq.po
21931718 @@ -568,8 +568,8 @@ msgstr "Ngjyra e _tekstit:"
22011726
22021727 #: ../src/gnome-terminal.glade2.h:86
22031728 msgid "_Update login records when command is launched"
2204 diff --git a/po/sr.po b/po/sr.po
2205 index e229e742a550..b34b1723acee 100644
22061729 --- a/po/sr.po
22071730 +++ b/po/sr.po
22081731 @@ -2297,10 +2297,9 @@ msgstr "_Затвори прозор"
22421765 +
22431766 +msgid "Transparent background"
22441767 +msgstr "Провидна позадина"
2245 diff --git a/po/[email protected] b/po/[email protected]
2246 index c1d3f5c94811..f009bcd0c43a 100644
22471768 --- a/po/[email protected]
22481769 +++ b/po/[email protected]
22491770 @@ -2297,10 +2297,9 @@ msgstr "_Zatvori prozor"
22831804 +
22841805 +msgid "Transparent background"
22851806 +msgstr "Providna pozadina"
2286 diff --git a/po/sv.po b/po/sv.po
2287 index c5da2a0487a8..db177e80f9fd 100644
22881807 --- a/po/sv.po
22891808 +++ b/po/sv.po
22901809 @@ -2288,5 +2288,11 @@ msgstr "Stän_g fönster"
22991818 +
23001819 +msgid "_Title:"
23011820 +msgstr "_Titel:"
2302 diff --git a/po/ta.po b/po/ta.po
2303 index 80aa2f684eec..8768cf7fc501 100644
23041821 --- a/po/ta.po
23051822 +++ b/po/ta.po
2306 @@ -2171,10 +2171,9 @@ msgstr "_l சாளரத்தை மூடவும்"
1823 @@ -2171,10 +2171,9 @@ msgstr "_l роЪро╛ро│ро░родрпНродрпИ роор
23071824 #~ msgid "Show server options"
23081825 #~ msgstr "சேவையக தேர்வுகளை காட்டுக"
23091826
23171834
23181835 #~ msgid "Title for terminal"
23191836 #~ msgstr "முனையத்தின் தலைப்பு"
2320 @@ -2221,11 +2220,11 @@ msgstr "_l சாளரத்தை மூடவும்"
1837 @@ -2221,11 +2220,11 @@ msgstr "_l роЪро╛ро│ро░родрпНродрпИ роор
23211838 #~ msgid "Default size:"
23221839 #~ msgstr "முன்னிருப்பு அளவு:"
23231840
23331850
23341851 #~ msgid "Title and Command"
23351852 #~ msgstr "தலைப்பும் கட்டளையும்"
2336 @@ -3028,8 +3027,8 @@ msgstr "_l சாளரத்தை மூடவும்"
1853 @@ -3028,8 +3027,8 @@ msgstr "_l роЪро╛ро│ро░родрпНродрпИ роор
23371854 #~ msgid "_Solid color"
23381855 #~ msgstr "(_S) ஒரே வண்ணம்"
23391856
23441861
23451862 #~ msgid "No such profile \"%s\", using default profile\n"
23461863 #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
2347 diff --git a/po/te.po b/po/te.po
2348 index 82c0e0fc8f54..74c293d671f1 100644
23491864 --- a/po/te.po
23501865 +++ b/po/te.po
2351 @@ -2055,10 +2055,9 @@ msgstr "కిటికీని మూసివేయి (_l)"
1866 @@ -2055,10 +2055,9 @@ msgstr "కిటికీని మూà
23521867 #~ msgid "Show server options"
23531868 #~ msgstr "సేవకము ఐచ్చికాలను చూపించు"
23541869
23621877
23631878 #~ msgid "Title for terminal"
23641879 #~ msgstr "టెర్మినల్ కు శీర్షిక"
2365 @@ -2104,11 +2103,11 @@ msgstr "కిటికీని మూసివేయి (_l)"
1880 @@ -2104,11 +2103,11 @@ msgstr "కిటికీని మూà
23661881 #~ msgid "Default size:"
23671882 #~ msgstr "అప్రమేయ పరిమాణం:"
23681883
23781893
23791894 #~ msgid "Title and Command"
23801895 #~ msgstr "శీర్షిక మరియు ఆదేశం"
2381 @@ -2898,8 +2897,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
1896 @@ -2898,8 +2897,8 @@ msgstr "కిటికీని మూà
23821897 #~ msgid "Background image _scrolls"
23831898 #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
23841899
23891904
23901905 #~ msgid "S_hade transparent or image background:"
23911906 #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
2392 diff --git a/po/tg.po b/po/tg.po
2393 index e3feef658e1e..782a90e6e40a 100644
23941907 --- a/po/tg.po
23951908 +++ b/po/tg.po
2396 @@ -2158,11 +2158,11 @@ msgstr "П_ӯшонидани равзана"
1909 @@ -2158,11 +2158,11 @@ msgstr "П_ӯшонидани равза
23971910 #~ msgid "Default size:"
23981911 #~ msgstr "Андозаи пешфарз:"
23991912
24091922
24101923 #~ msgid "Title and Command"
24111924 #~ msgstr "Унвон ва Фармон"
2412 diff --git a/po/th.po b/po/th.po
2413 index 63263749655c..d8d6be9dd890 100644
24141925 --- a/po/th.po
24151926 +++ b/po/th.po
2416 @@ -2308,11 +2308,11 @@ msgstr "ปิ_ดหน้าต่าง"
1927 @@ -2308,11 +2308,11 @@ msgstr "ปิ_ดหน้าต่าà
24171928 #~ msgid "Default size:"
24181929 #~ msgstr "ขนาดปริยาย:"
24191930
24291940
24301941 #~ msgid "Title and Command"
24311942 #~ msgstr "หัวเรื่องและคำสั่ง"
2432 @@ -2803,8 +2803,8 @@ msgstr "ปิ_ดหน้าต่าง"
1943 @@ -2803,8 +2803,8 @@ msgstr "ปิ_ดหน้าต่าà
24331944 #~ msgid "_Solid color"
24341945 #~ msgstr "สี_ทึบ"
24351946
24401951
24411952 #~ msgid ""
24421953 #~ "You already have a profile called “%s”. Do you want to create another "
2443 diff --git a/po/tr.po b/po/tr.po
2444 index 85a5c59ed059..073fdea561b9 100644
24451954 --- a/po/tr.po
24461955 +++ b/po/tr.po
24471956 @@ -2307,3 +2307,9 @@ msgstr "_Pencereyi Kapat"
24541963 +
24551964 +msgid "_Title:"
24561965 +msgstr "_Başlık:"
2457 diff --git a/po/ug.po b/po/ug.po
2458 index 313f76b98eae..be6089762082 100644
24591966 --- a/po/ug.po
24601967 +++ b/po/ug.po
24611968 @@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
24691976
24701977 #~ msgid ""
24711978 #~ "You already have a profile called “%s”. Do you want to create another "
2472 diff --git a/po/uk.po b/po/uk.po
2473 index a08f25914d12..306d532caf1a 100644
24741979 --- a/po/uk.po
24751980 +++ b/po/uk.po
24761981 @@ -2353,11 +2353,11 @@ msgstr "Закр_ити вікно"
25002005
25012006 #~ msgid "Switch to Tab 2"
25022007 #~ msgstr "До вкладки 2"
2503 diff --git a/po/vi.po b/po/vi.po
2504 index 01db48d95bf2..64d50a4453dd 100644
25052008 --- a/po/vi.po
25062009 +++ b/po/vi.po
25072010 @@ -2400,8 +2400,8 @@ msgstr "Đón_g cửa sổ"
25332036 +
25342037 +msgid "Transparent background"
25352038 +msgstr "Nền trong suốt"
2536 diff --git a/po/wa.po b/po/wa.po
2537 index 0e0a6a752b6d..7be7bcc04a93 100644
25382039 --- a/po/wa.po
25392040 +++ b/po/wa.po
25402041 @@ -564,8 +564,8 @@ msgid "_Text color:"
25482049
25492050 #: ../src/gnome-terminal.glade2.h:87
25502051 msgid "_Update login records when command is launched"
2551 diff --git a/po/xh.po b/po/xh.po
2552 index 44a8e21c7842..999efa7b4322 100644
25532052 --- a/po/xh.po
25542053 +++ b/po/xh.po
25552054 @@ -621,8 +621,8 @@ msgid "_Text color:"
25632062
25642063 #: ../src/gnome-terminal.glade2.h:103
25652064 msgid "_Update login records when command is launched"
2566 diff --git a/po/zh_CN.po b/po/zh_CN.po
2567 index f6ea45e6110a..f0b18eff7e10 100644
25682065 --- a/po/zh_CN.po
25692066 +++ b/po/zh_CN.po
25702067 @@ -2314,11 +2314,11 @@ msgstr "关闭窗口(_L)"
25902087 +
25912088 +msgid "Transparent background"
25922089 +msgstr "透明背景"
2593 diff --git a/po/zh_HK.po b/po/zh_HK.po
2594 index 61153529f0c7..119f7b9d3b84 100644
25952090 --- a/po/zh_HK.po
25962091 +++ b/po/zh_HK.po
25972092 @@ -2114,11 +2114,11 @@ msgstr "關閉視窗(_L)"
26172112 +
26182113 +msgid "Transparent background"
26192114 +msgstr "透明背景"
2620 diff --git a/po/zh_TW.po b/po/zh_TW.po
2621 index e85dda1047a6..40dda98fa89a 100644
26222115 --- a/po/zh_TW.po
26232116 +++ b/po/zh_TW.po
26242117 @@ -2297,11 +2297,11 @@ msgstr "關閉視窗(_L)"
26442137 +
26452138 +msgid "Transparent background"
26462139 +msgstr "透明背景"
2647 --
2648 2.9.3