]> git.pld-linux.org Git - packages/gnome-terminal.git/blob - gnome-terminal-transparency.patch
- updated to 3.20.2
[packages/gnome-terminal.git] / gnome-terminal-transparency.patch
1 From b87c1302d9335dc867f0382a6463b0026e38f6dc Mon Sep 17 00:00:00 2001
2 From: Debarshi Ray <debarshir@gnome.org>
3 Date: Mon, 12 May 2014 14:57:18 +0200
4 Subject: [PATCH 1/6] Restore transparency
5
6 The transparency settings were removed as a side effect of
7 2bff4b63ed3ceef6055e35563e9b0b33ad57349d
8
9 This restores them and you will need a compositing window manager to
10 use it. The background image setting, also known as faux transparency,
11 was not restored.
12
13 The transparency checkbox lost its mnemonic accelerator because 't'
14 is already taken and using any other letter would make it hard to
15 restore the translations of the string.
16 ---
17  src/org.gnome.Terminal.gschema.xml | 10 +++++
18  src/profile-editor.c               | 11 +++++
19  src/profile-preferences.ui         | 92 ++++++++++++++++++++++++++++++++++++++
20  src/terminal-schemas.h             |  3 ++
21  src/terminal-screen.c              | 22 ++++++++-
22  src/terminal-window.c              |  7 +++
23  6 files changed, 144 insertions(+), 1 deletion(-)
24
25 diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
26 index c031c8a..7bdd156 100644
27 --- a/src/org.gnome.Terminal.gschema.xml
28 +++ b/src/org.gnome.Terminal.gschema.xml
29 @@ -370,6 +370,16 @@
30        <default>'narrow'</default>
31        <summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
32      </key>
33 +    <key name="use-transparent-background" type="b">
34 +      <default>false</default>
35 +      <summary>Whether to use a transparent background</summary>
36 +    </key>
37 +    <key name="background-transparency-percent" type="i">
38 +      <default>50</default>
39 +      <range min="0" max="100"/>
40 +      <summary>Adjust the amount of transparency</summary>
41 +      <description>A value between 0 and 100, where 0 is opaque and 100 is fully transparent.</description>
42 +    </key>
43    </schema>
44  
45    <!-- Keybinding settings -->
46 diff --git a/src/profile-editor.c b/src/profile-editor.c
47 index ff26df6..b8c1c78 100644
48 --- a/src/profile-editor.c
49 +++ b/src/profile-editor.c
50 @@ -1218,7 +1218,18 @@ terminal_profile_edit (GSettings  *profile,
51                     "active-id",
52                     G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
53  
54 +  g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
55 +                   gtk_builder_get_object (builder, "use-transparent-background"),
56 +                   "active", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
57 +  g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
58 +                   gtk_builder_get_object (builder, "background-transparent-scale-box"),
59 +                   "sensitive", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY);
60 +  g_settings_bind (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT,
61 +                   gtk_builder_get_object (builder, "background-transparent-adjustment"),
62 +                   "value", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
63 +
64    /* Finished! */
65 +
66    terminal_util_bind_mnemonic_label_sensitivity (editor);
67  
68    terminal_util_dialog_focus_widget (editor, widget_name);
69 diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui
70 index 9c00946..9caf72d 100644
71 --- a/src/profile-preferences.ui
72 +++ b/src/profile-preferences.ui
73 @@ -23,6 +23,11 @@
74      <property name="step_increment">1</property>
75      <property name="page_increment">100</property>
76    </object>
77 +  <object class="GtkAdjustment" id="background-transparent-adjustment">
78 +    <property name="upper">100</property>
79 +    <property name="step_increment">1</property>
80 +    <property name="page_increment">10</property>
81 +  </object>
82    <object class="GtkListStore" id="cjk-ambiguous-width-model">
83      <columns>
84        <!-- column-name gchararray -->
85 @@ -1035,6 +1040,93 @@
86                                  <property name="position">1</property>
87                                </packing>
88                              </child>
89 +                            <child>
90 +                              <object class="GtkBox" id="use-transparent-background-box">
91 +                                <property name="visible">True</property>
92 +                                <property name="can_focus">False</property>
93 +                                <property name="orientation">horizontal</property>
94 +                                <property name="spacing">12</property>
95 +                                <child>
96 +                                  <object class="GtkCheckButton" id="use-transparent-background">
97 +                                    <property name="label" translatable="yes">Transparent background</property>
98 +                                    <property name="visible">True</property>
99 +                                    <property name="can_focus">True</property>
100 +                                    <property name="receives_default">False</property>
101 +                                    <property name="use_underline">True</property>
102 +                                    <property name="xalign">0</property>
103 +                                    <property name="draw_indicator">True</property>
104 +                                  </object>
105 +                                  <packing>
106 +                                    <property name="expand">False</property>
107 +                                    <property name="fill">False</property>
108 +                                    <property name="position">0</property>
109 +                                  </packing>
110 +                                </child>
111 +                                <child>
112 +                                  <object class="GtkBox" id="background-transparent-scale-box">
113 +                                    <property name="visible">True</property>
114 +                                    <property name="can_focus">False</property>
115 +                                    <property name="orientation">horizontal</property>
116 +                                    <property name="spacing">6</property>
117 +                                    <child>
118 +                                      <object class="GtkLabel" id="background-transparent-min-label">
119 +                                        <property name="visible">True</property>
120 +                                        <property name="can_focus">False</property>
121 +                                        <property name="xalign">0.5</property>
122 +                                        <property name="label" translatable="yes">none</property>
123 +                                        <style>
124 +                                          <class name="dim-label"/>
125 +                                        </style>
126 +                                      </object>
127 +                                      <packing>
128 +                                        <property name="expand">False</property>
129 +                                        <property name="fill">False</property>
130 +                                        <property name="position">0</property>
131 +                                      </packing>
132 +                                    </child>
133 +                                    <child>
134 +                                      <object class="GtkScale" id="background-transparent-scale">
135 +                                        <property name="visible">True</property>
136 +                                        <property name="can_focus">True</property>
137 +                                        <property name="adjustment">background-transparent-adjustment</property>
138 +                                        <property name="draw_value">False</property>
139 +                                      </object>
140 +                                      <packing>
141 +                                        <property name="expand">True</property>
142 +                                        <property name="fill">True</property>
143 +                                        <property name="position">1</property>
144 +                                      </packing>
145 +                                    </child>
146 +                                    <child>
147 +                                      <object class="GtkLabel" id="background-transparent-max-label">
148 +                                        <property name="visible">True</property>
149 +                                        <property name="can_focus">False</property>
150 +                                        <property name="xalign">0.5</property>
151 +                                        <property name="label" translatable="yes">full</property>
152 +                                        <style>
153 +                                          <class name="dim-label"/>
154 +                                        </style>
155 +                                      </object>
156 +                                      <packing>
157 +                                        <property name="expand">False</property>
158 +                                        <property name="fill">False</property>
159 +                                        <property name="position">2</property>
160 +                                      </packing>
161 +                                    </child>
162 +                                  </object>
163 +                                  <packing>
164 +                                    <property name="expand">True</property>
165 +                                    <property name="fill">True</property>
166 +                                    <property name="position">1</property>
167 +                                  </packing>
168 +                                </child>
169 +                              </object>
170 +                              <packing>
171 +                                <property name="expand">True</property>
172 +                                <property name="fill">True</property>
173 +                                <property name="position">2</property>
174 +                              </packing>
175 +                            </child>
176                            </object>
177                          </child>
178                        </object>
179 diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
180 index 4b734a3..e434075 100644
181 --- a/src/terminal-schemas.h
182 +++ b/src/terminal-schemas.h
183 @@ -69,6 +69,9 @@ G_BEGIN_DECLS
184  #define TERMINAL_PROFILE_VISIBLE_NAME_KEY               "visible-name"
185  #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY       "word-char-exceptions"
186  
187 +#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND      "use-transparent-background"
188 +#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent"
189 +
190  #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY              "confirm-close"
191  #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY       "default-show-menubar"
192  #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY      "menu-accelerator-enabled"
193 diff --git a/src/terminal-screen.c b/src/terminal-screen.c
194 index 33a34ab..92e8bb3 100644
195 --- a/src/terminal-screen.c
196 +++ b/src/terminal-screen.c
197 @@ -855,7 +855,9 @@ terminal_screen_profile_changed_cb (GSettings     *profile,
198        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_COLORS_SET_KEY) ||
199        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_BACKGROUND_COLOR_KEY) ||
200        prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_FOREGROUND_COLOR_KEY) ||
201 -      prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY))
202 +      prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY) ||
203 +      prop_name == I_(TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND) ||
204 +      prop_name == I_(TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT))
205      update_color_scheme (screen);
206  
207    if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
208 @@ -925,6 +927,8 @@ update_color_scheme (TerminalScreen *screen)
209    GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL;
210    GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL;
211    GtkStyleContext *context;
212 +  GtkWidget *toplevel;
213 +  gboolean transparent;
214    gboolean use_theme_colors;
215  
216    context = gtk_widget_get_style_context (widget);
217 @@ -966,6 +970,18 @@ update_color_scheme (TerminalScreen *screen)
218      }
219  
220    colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
221 +
222 +  transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
223 +  if (transparent)
224 +    {
225 +      gint transparency_percent;
226 +
227 +      transparency_percent = g_settings_get_int (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT);
228 +      bg.alpha = (100 - transparency_percent) / 100.0;
229 +    }
230 +  else
231 +    bg.alpha = 1.0;
232 +
233    vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg,
234                             colors, n_colors);
235    vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp);
236 @@ -973,6 +989,10 @@ update_color_scheme (TerminalScreen *screen)
237    vte_terminal_set_color_cursor_foreground (VTE_TERMINAL (screen), cursor_fgp);
238    vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
239    vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
240 +
241 +  toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
242 +  if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
243 +    gtk_widget_set_app_paintable (toplevel, transparent);
244  }
245  
246  static void
247 diff --git a/src/terminal-window.c b/src/terminal-window.c
248 index 8b78849..eb75b42 100644
249 --- a/src/terminal-window.c
250 +++ b/src/terminal-window.c
251 @@ -2616,6 +2616,8 @@ terminal_window_init (TerminalWindow *window)
252    TerminalWindowPrivate *priv;
253    TerminalApp *app;
254    TerminalSettingsList *profiles_list;
255 +  GdkScreen *screen;
256 +  GdkVisual *visual;
257    GtkActionGroup *action_group;
258    GtkAction *action;
259    GtkUIManager *manager;
260 @@ -2630,6 +2632,11 @@ terminal_window_init (TerminalWindow *window)
261  
262    gtk_widget_init_template (GTK_WIDGET (window));
263  
264 +  screen = gtk_widget_get_screen (GTK_WIDGET (window));
265 +  visual = gdk_screen_get_rgba_visual (screen);
266 +  if (visual != NULL)
267 +    gtk_widget_set_visual (GTK_WIDGET (window), visual);
268 +
269    uuid_generate (u);
270    uuid_unparse (u, uuidstr);
271    priv->uuid = g_strdup (uuidstr);
272 -- 
273 2.5.0
274
275
276 From a160731760b90fa566017dd0212fa1239eadc72c Mon Sep 17 00:00:00 2001
277 From: Lars Uebernickel <lars.uebernickel@canonical.com>
278 Date: Wed, 28 May 2014 14:11:02 +0200
279 Subject: [PATCH 2/6] window: Make the drawing robust across all themes
280
281 There are lots of themes out there in the wild that do not specify a
282 background-color for all widgets and the default is transparent. This
283 is usually not a problem because GTK+ sets an opaque region on the
284 whole window and things without a background-color get drawn with the
285 theme's default background colour. However, to achieve transparency
286 we disable the opaque region by making the window app-paintable. This
287 can lead to transparent menubars or notebook tabs in some themes. We
288 can avoid this by ensuring that the window always renders a background.
289
290 https://bugzilla.gnome.org/show_bug.cgi?id=730016
291 ---
292  src/terminal-window.c | 21 +++++++++++++++++++++
293  1 file changed, 21 insertions(+)
294
295 diff --git a/src/terminal-window.c b/src/terminal-window.c
296 index eb75b42..58ec94a 100644
297 --- a/src/terminal-window.c
298 +++ b/src/terminal-window.c
299 @@ -2288,6 +2288,26 @@ terminal_window_realize (GtkWidget *widget)
300  }
301  
302  static gboolean
303 +terminal_window_draw (GtkWidget *widget,
304 +                      cairo_t   *cr)
305 +{
306 +  if (gtk_widget_get_app_paintable (widget))
307 +    {
308 +      GtkStyleContext *context;
309 +      int width;
310 +      int height;
311 +
312 +      context = gtk_widget_get_style_context (widget);
313 +      width = gtk_widget_get_allocated_width (widget);
314 +      height = gtk_widget_get_allocated_height (widget);
315 +      gtk_render_background (context, cr, 0, 0, width, height);
316 +      gtk_render_frame (context, cr, 0, 0, width, height);
317 +    }
318 +
319 +  return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
320 +}
321 +
322 +static gboolean
323  terminal_window_state_event (GtkWidget            *widget,
324                               GdkEventWindowState  *event)
325  {
326 @@ -2816,6 +2836,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
327  
328    widget_class->show = terminal_window_show;
329    widget_class->realize = terminal_window_realize;
330 +  widget_class->draw = terminal_window_draw;
331    widget_class->window_state_event = terminal_window_state_event;
332    widget_class->screen_changed = terminal_window_screen_changed;
333    widget_class->style_updated = terminal_window_style_updated;
334 -- 
335 2.5.0
336
337
338 From c2d5533c8973f04f66eafe919d1fc4740d66c106 Mon Sep 17 00:00:00 2001
339 From: "Owen W. Taylor" <otaylor@fishsoup.net>
340 Date: Fri, 13 Nov 2015 15:16:42 +0100
341 Subject: [PATCH 3/6] screen, window: Extra padding around transparent
342  terminals in Wayland
343
344 https://bugzilla.redhat.com/show_bug.cgi?id=1207943
345 ---
346  src/terminal-screen.c | 40 +++++++++++++++++++++++++++++++++++++---
347  src/terminal-window.c | 18 ++++++++++++------
348  2 files changed, 49 insertions(+), 9 deletions(-)
349
350 diff --git a/src/terminal-screen.c b/src/terminal-screen.c
351 index 92e8bb3..1718d42 100644
352 --- a/src/terminal-screen.c
353 +++ b/src/terminal-screen.c
354 @@ -140,6 +140,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *,
355  static gboolean terminal_screen_popup_menu (GtkWidget *widget);
356  static gboolean terminal_screen_button_press (GtkWidget *widget,
357                                                GdkEventButton *event);
358 +static void terminal_screen_hierarchy_changed (GtkWidget *widget,
359 +                                               GtkWidget *previous_toplevel);
360  static gboolean terminal_screen_do_exec (TerminalScreen *screen,
361                                           FDSetupData    *data,
362                                           GError **error);
363 @@ -510,6 +512,7 @@ terminal_screen_class_init (TerminalScreenClass *klass)
364    widget_class->drag_data_received = terminal_screen_drag_data_received;
365    widget_class->button_press_event = terminal_screen_button_press;
366    widget_class->popup_menu = terminal_screen_popup_menu;
367 +  widget_class->hierarchy_changed = terminal_screen_hierarchy_changed;
368  
369    terminal_class->child_exited = terminal_screen_child_exited;
370  
371 @@ -913,6 +916,32 @@ terminal_screen_profile_changed_cb (GSettings     *profile,
372  }
373  
374  static void
375 +update_toplevel_transparency (TerminalScreen *screen)
376 +{
377 +  GtkWidget *widget = GTK_WIDGET (screen);
378 +  TerminalScreenPrivate *priv = screen->priv;
379 +  GSettings *profile = priv->profile;
380 +  GtkWidget *toplevel;
381 +
382 +  toplevel = gtk_widget_get_toplevel (widget);
383 +  if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
384 +    {
385 +      gboolean transparent;
386 +
387 +      transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
388 +      if (gtk_widget_get_app_paintable (toplevel) != transparent)
389 +        {
390 +          gtk_widget_set_app_paintable (toplevel, transparent);
391 +
392 +          /* The opaque region of the toplevel isn't updated until the toplevel is allocated;
393 +           * set_app_paintable() doesn't force an allocation, so do that manually.
394 +           */
395 +          gtk_widget_queue_resize (toplevel);
396 +        }
397 +    }
398 +}
399 +
400 +static void
401  update_color_scheme (TerminalScreen *screen)
402  {
403    GtkWidget *widget = GTK_WIDGET (screen);
404 @@ -990,9 +1019,7 @@ update_color_scheme (TerminalScreen *screen)
405    vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp);
406    vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp);
407  
408 -  toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
409 -  if (toplevel != NULL && gtk_widget_is_toplevel (toplevel))
410 -    gtk_widget_set_app_paintable (toplevel, transparent);
411 +  update_toplevel_transparency (screen);
412  }
413  
414  static void
415 @@ -1595,6 +1622,13 @@ terminal_screen_do_popup (TerminalScreen *screen,
416    terminal_screen_popup_info_unref (info);
417  }
418  
419 +static void
420 +terminal_screen_hierarchy_changed (GtkWidget *widget,
421 +                                   GtkWidget *previous_toplevel)
422 +{
423 +  update_toplevel_transparency (TERMINAL_SCREEN (widget));
424 +}
425 +
426  static gboolean
427  terminal_screen_button_press (GtkWidget      *widget,
428                                GdkEventButton *event)
429 diff --git a/src/terminal-window.c b/src/terminal-window.c
430 index 58ec94a..49cb3dc 100644
431 --- a/src/terminal-window.c
432 +++ b/src/terminal-window.c
433 @@ -2293,15 +2293,21 @@ terminal_window_draw (GtkWidget *widget,
434  {
435    if (gtk_widget_get_app_paintable (widget))
436      {
437 +      GtkAllocation child_allocation;
438        GtkStyleContext *context;
439 -      int width;
440 -      int height;
441 +      GtkWidget *child;
442 +
443 +      /* Get the *child* allocation, so we don't overwrite window borders */
444 +      child = gtk_bin_get_child (GTK_BIN (widget));
445 +      gtk_widget_get_allocation (child, &child_allocation);
446  
447        context = gtk_widget_get_style_context (widget);
448 -      width = gtk_widget_get_allocated_width (widget);
449 -      height = gtk_widget_get_allocated_height (widget);
450 -      gtk_render_background (context, cr, 0, 0, width, height);
451 -      gtk_render_frame (context, cr, 0, 0, width, height);
452 +      gtk_render_background (context, cr,
453 +                             child_allocation.x, child_allocation.y,
454 +                             child_allocation.width, child_allocation.height);
455 +      gtk_render_frame (context, cr,
456 +                        child_allocation.x, child_allocation.y,
457 +                        child_allocation.width, child_allocation.height);
458      }
459  
460    return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
461 -- 
462 2.5.0
463
464
465 From 36d6de88a47083e5593c41335af52aca3f3479f1 Mon Sep 17 00:00:00 2001
466 From: Debarshi Ray <debarshir@gnome.org>
467 Date: Tue, 17 Feb 2015 17:06:17 +0100
468 Subject: [PATCH 6/6] Restore translations for transparency
469
470 ---
471  po/am.po          | 4 ++--
472  po/ar.po          | 4 ++--
473  po/as.po          | 4 ++--
474  po/ast.po         | 4 ++--
475  po/az.po          | 4 ++--
476  po/be.po          | 3 +++
477  po/be@latin.po    | 4 ++--
478  po/bg.po          | 3 +++
479  po/bn_IN.po       | 3 +++
480  po/bs.po          | 4 ++++
481  po/ca.po          | 3 +++
482  po/ca@valencia.po | 3 +++
483  po/cs.po          | 3 +++
484  po/cy.po          | 4 ++--
485  po/da.po          | 4 ++--
486  po/de.po          | 4 ++--
487  po/dz.po          | 4 ++--
488  po/el.po          | 3 +++
489  po/en@shaw.po     | 4 ++--
490  po/en_CA.po       | 4 ++--
491  po/en_GB.po       | 4 ++--
492  po/es.po          | 4 ++--
493  po/et.po          | 3 +++
494  po/eu.po          | 4 ++--
495  po/fa.po          | 3 +++
496  po/fi.po          | 3 +++
497  po/fr.po          | 3 +++
498  po/fur.po         | 4 ++++
499  po/ga.po          | 3 +++
500  po/gl.po          | 4 ++--
501  po/gu.po          | 4 ++--
502  po/he.po          | 4 ++--
503  po/hi.po          | 4 ++--
504  po/hr.po          | 4 ++--
505  po/hu.po          | 3 +++
506  po/hy.po          | 4 ++--
507  po/id.po          | 3 +++
508  po/it.po          | 3 +++
509  po/ja.po          | 3 +++
510  po/ka.po          | 2 +-
511  po/kk.po          | 3 +++
512  po/kn.po          | 3 +++
513  po/ko.po          | 3 +++
514  po/ku.po          | 4 ++--
515  po/lt.po          | 3 +++
516  po/lv.po          | 3 +++
517  po/mai.po         | 4 ++--
518  po/mg.po          | 4 ++--
519  po/mk.po          | 4 ++--
520  po/ml.po          | 4 ++--
521  po/mn.po          | 4 ++--
522  po/mr.po          | 4 ++--
523  po/ms.po          | 4 ++--
524  po/nb.po          | 3 +++
525  po/nds.po         | 4 ++--
526  po/ne.po          | 4 ++--
527  po/nl.po          | 3 +++
528  po/nn.po          | 4 ++--
529  po/oc.po          | 4 ++--
530  po/or.po          | 4 ++--
531  po/pa.po          | 4 ++--
532  po/ps.po          | 4 ++--
533  po/pt.po          | 4 ++--
534  po/pt_BR.po       | 3 +++
535  po/ro.po          | 4 ++--
536  po/ru.po          | 3 +++
537  po/rw.po          | 2 +-
538  po/si.po          | 4 ++--
539  po/sk.po          | 3 +++
540  po/sl.po          | 3 +++
541  po/sq.po          | 4 ++--
542  po/sr.po          | 3 +++
543  po/sr@latin.po    | 3 +++
544  po/sv.po          | 3 +++
545  po/ta.po          | 4 ++--
546  po/te.po          | 4 ++--
547  po/th.po          | 4 ++--
548  po/tr.po          | 3 +++
549  po/ug.po          | 4 ++--
550  po/uk.po          | 4 ++--
551  po/vi.po          | 3 +++
552  po/wa.po          | 4 ++--
553  po/xh.po          | 4 ++--
554  po/zh_CN.po       | 3 +++
555  po/zh_HK.po       | 3 +++
556  po/zh_TW.po       | 3 +++
557  86 files changed, 209 insertions(+), 96 deletions(-)
558
559 diff --git a/po/am.po b/po/am.po
560 index 27a7e96..04a8ad9 100644
561 --- a/po/am.po
562 +++ b/po/am.po
563 @@ -613,8 +613,8 @@ msgid "_Text color:"
564  msgstr "የ_ጽሑፍ ቀለም፦"
565  
566  #: ../src/gnome-terminal.glade2.h:102
567 -msgid "_Transparent background"
568 -msgstr "_የሚያሳይ መደብ"
569 +msgid "Transparent background"
570 +msgstr "የሚያሳይ መደብ"
571  
572  #: ../src/gnome-terminal.glade2.h:103
573  msgid "_Update login records when command is launched"
574 diff --git a/po/ar.po b/po/ar.po
575 index f8582ed..85ff6cc 100644
576 --- a/po/ar.po
577 +++ b/po/ar.po
578 @@ -3104,8 +3104,8 @@ msgstr "أغ_لق النافذة"
579  #~ msgid "Background image _scrolls"
580  #~ msgstr "صورة الخلفية ت_لتف"
581  
582 -#~ msgid "_Transparent background"
583 -#~ msgstr "خلفية _شفافة"
584 +msgid "Transparent background"
585 +msgstr "خلفية شفافة"
586  
587  #~ msgid "S_hade transparent or image background:"
588  #~ msgstr "_ظلل شفافية أو صورة الخلفية:"
589 diff --git a/po/as.po b/po/as.po
590 index 0bd699d..63fca01 100644
591 --- a/po/as.po
592 +++ b/po/as.po
593 @@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
594  #~ msgid "Background image _scrolls"
595  #~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
596  
597 -#~ msgid "_Transparent background"
598 -#~ msgstr "স্বচ্চ পটভূমি (_T)"
599 +msgid "Transparent background"
600 +msgstr "স্বচ্চ পটভূমি "
601  
602  #~ msgid "S_hade transparent or image background:"
603  #~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
604 diff --git a/po/ast.po b/po/ast.po
605 index d1c6e7b..4210820 100644
606 --- a/po/ast.po
607 +++ b/po/ast.po
608 @@ -1598,8 +1598,8 @@ msgid "_Text color:"
609  msgstr "Color del _testu:"
610  
611  #: ../src/profile-preferences.glade.h:77
612 -msgid "_Transparent background"
613 -msgstr "Fondu _tresparente"
614 +msgid "Transparent background"
615 +msgstr "Fondu tresparente"
616  
617  #: ../src/profile-preferences.glade.h:78
618  msgid "_Underline color:"
619 diff --git a/po/az.po b/po/az.po
620 index b0f2e3e..877f114 100644
621 --- a/po/az.po
622 +++ b/po/az.po
623 @@ -619,8 +619,8 @@ msgid "_Text color:"
624  msgstr "_Mətn rəngi:"
625  
626  #: ../src/gnome-terminal.glade2.h:102
627 -msgid "_Transparent background"
628 -msgstr "_Şəffaf arxa plan"
629 +msgid "Transparent background"
630 +msgstr "Şəffaf arxa plan"
631  
632  #: ../src/gnome-terminal.glade2.h:103
633  msgid "_Update login records when command is launched"
634 diff --git a/po/be.po b/po/be.po
635 index fca0ae4..74ff329 100644
636 --- a/po/be.po
637 +++ b/po/be.po
638 @@ -2015,3 +2015,6 @@ msgstr ""
639  msgid "C_lose Window"
640  msgstr "_Закрыць акно"
641  
642 +msgid "Transparent background"
643 +msgstr "Празрысты фон"
644 +
645 diff --git a/po/be@latin.po b/po/be@latin.po
646 index 1e057c7..1d22a58 100644
647 --- a/po/be@latin.po
648 +++ b/po/be@latin.po
649 @@ -1425,8 +1425,8 @@ msgid "_Text color:"
650  msgstr "Koler _tekstu:"
651  
652  #: ../src/profile-preferences.glade.h:73
653 -msgid "_Transparent background"
654 -msgstr "_Prazrysty fon"
655 +msgid "Transparent background"
656 +msgstr "Prazrysty fon"
657  
658  #: ../src/profile-preferences.glade.h:74
659  msgid "_Update login records when command is launched"
660 diff --git a/po/bg.po b/po/bg.po
661 index 0b8dd8e..5d45919 100644
662 --- a/po/bg.po
663 +++ b/po/bg.po
664 @@ -2167,3 +2167,6 @@ msgstr ""
665  #: ../src/terminal-window.c:3726
666  msgid "C_lose Window"
667  msgstr "_Затваряне на този прозорец"
668 +
669 +msgid "Transparent background"
670 +msgstr "Прозрачен фон"
671 diff --git a/po/bn_IN.po b/po/bn_IN.po
672 index c74246a..d65b322 100644
673 --- a/po/bn_IN.po
674 +++ b/po/bn_IN.po
675 @@ -2358,3 +2358,6 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
676  
677  #~ msgid "_Title:"
678  #~ msgstr "শিরোনাম: (_T)"
679 +
680 +msgid "Transparent background"
681 +msgstr "স্বচ্চ পটভূমি "
682 diff --git a/po/bs.po b/po/bs.po
683 index 49e7108..fccfa86 100644
684 --- a/po/bs.po
685 +++ b/po/bs.po
686 @@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
687  msgid "Keyboard shortcut to make font smaller"
688  msgstr "Kratica tastature za smanjivanje fonta"
689  
690 +#: ../src/gnome-terminal.glade2.h:102
691 +msgid "Transparent background"
692 +msgstr "Providna pozadina"
693 +
694  #: ../src/org.gnome.Terminal.gschema.xml.h:78
695  msgid "Keyboard shortcut to make font normal-size"
696  msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
697 diff --git a/po/ca.po b/po/ca.po
698 index 55caef1..d201f40 100644
699 --- a/po/ca.po
700 +++ b/po/ca.po
701 @@ -2304,3 +2304,6 @@ msgstr "Tanca la _finestra"
702  
703  #~ msgid "Whether to use a dark theme variant"
704  #~ msgstr "Si s'ha d'utilitzar la variant de tema fosc"
705 +
706 +msgid "Transparent background"
707 +msgstr "Fons transparent"
708 diff --git a/po/ca@valencia.po b/po/ca@valencia.po
709 index 1c279a0..4073f71 100644
710 --- a/po/ca@valencia.po
711 +++ b/po/ca@valencia.po
712 @@ -2092,3 +2092,6 @@ msgstr ""
713  #: ../src/terminal-window.c:3645
714  msgid "C_lose Window"
715  msgstr "Tanca la _finestra"
716 +
717 +msgid "Transparent background"
718 +msgstr "Fons transparent"
719 diff --git a/po/cs.po b/po/cs.po
720 index 784fe2f..ef0d7cc 100644
721 --- a/po/cs.po
722 +++ b/po/cs.po
723 @@ -2245,3 +2245,6 @@ msgstr ""
724  #: ../src/terminal-window.c:3727
725  msgid "C_lose Window"
726  msgstr "_Zavřít okno"
727 +
728 +msgid "Transparent background"
729 +msgstr "Průsvitné pozadí"
730 diff --git a/po/cy.po b/po/cy.po
731 index 0739e20..8b1ff00 100644
732 --- a/po/cy.po
733 +++ b/po/cy.po
734 @@ -1447,8 +1447,8 @@ msgid "_Text color:"
735  msgstr "Lliw'r _testun:"
736  
737  #: ../src/profile-preferences.glade.h:73
738 -msgid "_Transparent background"
739 -msgstr "Cefndir _tryloyw"
740 +msgid "Transparent background"
741 +msgstr "Cefndir tryloyw"
742  
743  #: ../src/profile-preferences.glade.h:74
744  msgid "_Update login records when command is launched"
745 diff --git a/po/da.po b/po/da.po
746 index 68f20ab..1e7acbe 100644
747 --- a/po/da.po
748 +++ b/po/da.po
749 @@ -3195,8 +3195,8 @@ msgstr "_Luk vindue"
750  #~ msgid "_Solid color"
751  #~ msgstr "_Ensfarvet"
752  
753 -#~ msgid "_Transparent background"
754 -#~ msgstr "_Gennemsigtig baggrund"
755 +msgid "Transparent background"
756 +msgstr "Gennemsigtig baggrund"
757  
758  #~ msgid ""
759  #~ "You already have a profile called “%s”. Do you want to create another "
760 diff --git a/po/de.po b/po/de.po
761 index f0f16e0..48efa8f 100644
762 --- a/po/de.po
763 +++ b/po/de.po
764 @@ -3259,8 +3259,8 @@ msgstr "Fenster _schließen"
765  #~ msgid "Background image _scrolls"
766  #~ msgstr "Hintergrundbild _folgt Bildlauf"
767  
768 -#~ msgid "_Transparent background"
769 -#~ msgstr "_Transparenter Hintergrund"
770 +msgid "Transparent background"
771 +msgstr "Transparenter Hintergrund"
772  
773  #~ msgid "S_hade transparent or image background:"
774  #~ msgstr "Transparenz und Bildhintergründe _abdunkeln:"
775 diff --git a/po/dz.po b/po/dz.po
776 index ecb8fd5..290934a 100644
777 --- a/po/dz.po
778 +++ b/po/dz.po
779 @@ -1551,8 +1551,8 @@ msgid "_Text color:"
780  msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
781  
782  #: ../src/profile-preferences.glade.h:77
783 -msgid "_Transparent background"
784 -msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)"
785 +msgid "Transparent background"
786 +msgstr "དྭངས་གསལ་རྒྱབ་གཞི།"
787  
788  #: ../src/profile-preferences.glade.h:78
789  #, fuzzy
790 diff --git a/po/el.po b/po/el.po
791 index 2b0d1de..5bf36a9 100644
792 --- a/po/el.po
793 +++ b/po/el.po
794 @@ -2510,3 +2510,6 @@ msgstr "Κ_λείσιμο παραθύρου"
795  
796  #~ msgid "_Input Methods"
797  #~ msgstr "_Μέθοδοι εισαγωγής"
798 +
799 +msgid "Transparent background"
800 +msgstr "Διάφανο παρασκήνιο"
801 diff --git a/po/en@shaw.po b/po/en@shaw.po
802 index 65f3d41..05dc99d 100644
803 --- a/po/en@shaw.po
804 +++ b/po/en@shaw.po
805 @@ -1467,8 +1467,8 @@ msgid "_Text color:"
806  msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
807  
808  #: ../src/profile-preferences.glade.h:78
809 -msgid "_Transparent background"
810 -msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
811 +msgid "Transparent background"
812 +msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
813  
814  #: ../src/profile-preferences.glade.h:79
815  msgid "_Underline color:"
816 diff --git a/po/en_CA.po b/po/en_CA.po
817 index c79cbf5..b8b14d2 100644
818 --- a/po/en_CA.po
819 +++ b/po/en_CA.po
820 @@ -556,8 +556,8 @@ msgid "_Text color:"
821  msgstr "_Text colour:"
822  
823  #: ../src/gnome-terminal.glade2.h:86
824 -msgid "_Transparent background"
825 -msgstr "_Transparent background"
826 +msgid "Transparent background"
827 +msgstr "Transparent background"
828  
829  #: ../src/gnome-terminal.glade2.h:87
830  msgid "_Update login records when command is launched"
831 diff --git a/po/en_GB.po b/po/en_GB.po
832 index 4d38486..69e7113 100644
833 --- a/po/en_GB.po
834 +++ b/po/en_GB.po
835 @@ -2732,8 +2732,8 @@ msgstr "_Title:"
836  #~ msgid "Background image _scrolls"
837  #~ msgstr "Background image _scrolls"
838  
839 -#~ msgid "_Transparent background"
840 -#~ msgstr "_Transparent background"
841 +msgid "Transparent background"
842 +msgstr "Transparent background"
843  
844  #~ msgid "S_hade transparent or image background:"
845  #~ msgstr "S_hade transparent or image background:"
846 diff --git a/po/es.po b/po/es.po
847 index d339099..e8b4159 100644
848 --- a/po/es.po
849 +++ b/po/es.po
850 @@ -3303,8 +3303,8 @@ msgstr "_Cerrar ventana"
851  #~ msgid "_Solid color"
852  #~ msgstr "Color _sólido"
853  
854 -#~ msgid "_Transparent background"
855 -#~ msgstr "Fondo _transparente"
856 +msgid "Transparent background"
857 +msgstr "Fondo transparente"
858  
859  #~ msgid "No such profile \"%s\", using default profile\n"
860  #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
861 diff --git a/po/et.po b/po/et.po
862 index 4b1c2a7..7707611 100644
863 --- a/po/et.po
864 +++ b/po/et.po
865 @@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
866  
867  #~ msgid "Choose base profile"
868  #~ msgstr "Vali põhiprofiil"
869 +
870 +msgid "Transparent background"
871 +msgstr "Läbipaistev taust"
872 diff --git a/po/eu.po b/po/eu.po
873 index 786f9e2..a731d99 100644
874 --- a/po/eu.po
875 +++ b/po/eu.po
876 @@ -3011,8 +3011,8 @@ msgstr "It_xi leihoa"
877  #~ msgid "_Solid color"
878  #~ msgstr "_Kolore solidoa"
879  
880 -#~ msgid "_Transparent background"
881 -#~ msgstr "_Atzeko plano gardena"
882 +msgid "Transparent background"
883 +msgstr "Atzeko plano gardena"
884  
885  #~ msgid ""
886  #~ "You already have a profile called “%s”. Do you want to create another "
887 diff --git a/po/fa.po b/po/fa.po
888 index 52856cb..2a89999 100644
889 --- a/po/fa.po
890 +++ b/po/fa.po
891 @@ -2240,3 +2240,6 @@ msgstr "_بستن پنجره"
892  
893  #~ msgid "_Title:"
894  #~ msgstr "_عنوان:"
895 +
896 +msgid "Transparent background"
897 +msgstr "پس‌زمینه‌ی شفاف"
898 diff --git a/po/fi.po b/po/fi.po
899 index 02bddc5..cf84950 100644
900 --- a/po/fi.po
901 +++ b/po/fi.po
902 @@ -2294,6 +2294,9 @@ msgstr "_Sulje ikkuna"
903  #~ msgid "_Update login records when command is launched"
904  #~ msgstr "_Päivitä kirjautumistallenne kun komento käynnistetään"
905  
906 +msgid "Transparent background"
907 +msgstr "Läpinäkyvä tausta"
908 +
909  #~| msgid "Error parsing command: %s"
910  #~ msgid "Missing command"
911  #~ msgstr "Puuttuva komento"
912 diff --git a/po/fr.po b/po/fr.po
913 index d230aa2..9771335 100644
914 --- a/po/fr.po
915 +++ b/po/fr.po
916 @@ -2303,3 +2303,6 @@ msgstr "Fermer _la fenêtre"
917  
918  #~ msgid "_Same as text color"
919  #~ msgstr "_Même couleur que le texte"
920 +
921 +msgid "Transparent background"
922 +msgstr "Arrière-plan transparent"
923 diff --git a/po/fur.po b/po/fur.po
924 index 39fe0bb..bc471ab 100644
925 --- a/po/fur.po
926 +++ b/po/fur.po
927 @@ -651,6 +651,10 @@ msgstr ""
928  msgid "Which encoding to use"
929  msgstr "Codifiche di doprâ"
930  
931 +#: ../src/gnome-terminal.glade2.h:86
932 +msgid "Transparent background"
933 +msgstr "Fondâl trasparent"
934 +
935  #: ../src/org.gnome.Terminal.gschema.xml.h:63
936  msgid ""
937  "Whether ambiguous-width characters are narrow or wide when using UTF-8 "
938 diff --git a/po/ga.po b/po/ga.po
939 index 93d5fa9..feb87dc 100644
940 --- a/po/ga.po
941 +++ b/po/ga.po
942 @@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
943  #: ../src/terminal-window.c:3582
944  msgid "C_lose Terminal"
945  msgstr "_Dún Teirminéal"
946 +
947 +msgid "Transparent background"
948 +msgstr "Cúlra trédhearcach"
949 diff --git a/po/gl.po b/po/gl.po
950 index a858849..7fadccd 100644
951 --- a/po/gl.po
952 +++ b/po/gl.po
953 @@ -3241,8 +3241,8 @@ msgstr "P_echar a xanela"
954  #~ msgid "Background image _scrolls"
955  #~ msgstr "A imaxe de fondo _desprázase"
956  
957 -#~ msgid "_Transparent background"
958 -#~ msgstr "Fondo _transparente"
959 +msgid "Transparent background"
960 +msgstr "Fondo transparente"
961  
962  #~ msgid "S_hade transparent or image background:"
963  #~ msgstr "_Sombra transparente ou imaxe de fondo:"
964 diff --git a/po/gu.po b/po/gu.po
965 index 0bcb195..f72a807 100644
966 --- a/po/gu.po
967 +++ b/po/gu.po
968 @@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
969  #~ msgid "_Solid color"
970  #~ msgstr "ઘટ્ટ રંગ (_S)"
971  
972 -#~ msgid "_Transparent background"
973 -#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)"
974 +msgid "Transparent background"
975 +msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ"
976  
977  #~ msgid "No such profile \"%s\", using default profile\n"
978  #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
979 diff --git a/po/he.po b/po/he.po
980 index 0c2420e..7a25a26 100644
981 --- a/po/he.po
982 +++ b/po/he.po
983 @@ -3189,8 +3189,8 @@ msgstr "סגירת ה_חלון"
984  #~ msgid "_Solid color"
985  #~ msgstr "צבע _אחיד"
986  
987 -#~ msgid "_Transparent background"
988 -#~ msgstr "רקע _שקוף"
989 +msgid "Transparent background"
990 +msgstr "רקע שקוף"
991  
992  #~ msgid "No such profile \"%s\", using default profile\n"
993  #~ msgstr "No such profile \"%s\", using default profile\n"
994 diff --git a/po/hi.po b/po/hi.po
995 index 2d7dc5b..adf8d35 100644
996 --- a/po/hi.po
997 +++ b/po/hi.po
998 @@ -2979,8 +2979,8 @@ msgstr "विंडो बंद करें (_l)"
999  #~ msgid "_Background image"
1000  #~ msgstr "पृष्ठभूमि छवि (_B)"
1001  
1002 -#~ msgid "_Transparent background"
1003 -#~ msgstr "पारदर्शी पृष्ठभूमि (_T)"
1004 +msgid "Transparent background"
1005 +msgstr "पारदर्शी पृष्ठभूमि"
1006  
1007  #~ msgid "S/Key Challenge Response"
1008  #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
1009 diff --git a/po/hr.po b/po/hr.po
1010 index cb48c52..747cf48 100644
1011 --- a/po/hr.po
1012 +++ b/po/hr.po
1013 @@ -1362,8 +1362,8 @@ msgid "_Text color:"
1014  msgstr "_Boja teksta:"
1015  
1016  #: ../src/profile-preferences.glade.h:69
1017 -msgid "_Transparent background"
1018 -msgstr "_Prozirna pozadina"
1019 +msgid "Transparent background"
1020 +msgstr "Prozirna pozadina"
1021  
1022  #: ../src/profile-preferences.glade.h:70
1023  msgid "_Update login records when command is launched"
1024 diff --git a/po/hu.po b/po/hu.po
1025 index 381dd15..500c08a 100644
1026 --- a/po/hu.po
1027 +++ b/po/hu.po
1028 @@ -2713,3 +2713,6 @@ msgstr "_Ablak bezárása"
1029  
1030  #~ msgid "Background image"
1031  #~ msgstr "Háttérkép"
1032 +
1033 +msgid "Transparent background"
1034 +msgstr "Áttetsző háttér"
1035 diff --git a/po/hy.po b/po/hy.po
1036 index 5584901..caadbba 100644
1037 --- a/po/hy.po
1038 +++ b/po/hy.po
1039 @@ -1011,8 +1011,8 @@ msgid "_Text color:"
1040  msgstr "_Տեքստի գույնը՝"
1041  
1042  #: ../src/profile-preferences.glade.h:73
1043 -msgid "_Transparent background"
1044 -msgstr "_Թափանցիկ նախադրյալ"
1045 +msgid "Transparent background"
1046 +msgstr "Թափանցիկ նախադրյալ"
1047  
1048  #: ../src/profile-preferences.glade.h:74
1049  msgid "_Update login records when command is launched"
1050 diff --git a/po/id.po b/po/id.po
1051 index 595a325..99c29b6 100644
1052 --- a/po/id.po
1053 +++ b/po/id.po
1054 @@ -2058,3 +2058,6 @@ msgstr ""
1055  #: ../src/terminal-window.c:3694
1056  msgid "C_lose Window"
1057  msgstr "Tutup Jende_la"
1058 +
1059 +msgid "Transparent background"
1060 +msgstr "Latar belakang transparan"
1061 diff --git a/po/it.po b/po/it.po
1062 index 909a8c9..2c46e9c 100644
1063 --- a/po/it.po
1064 +++ b/po/it.po
1065 @@ -2284,3 +2284,7 @@ msgstr ""
1066  #: ../src/terminal-window.c:3727
1067  msgid "C_lose Window"
1068  msgstr "Chiudi _finestra"
1069 +
1070 +#, fuzzy
1071 +msgid "Transparent background"
1072 +msgstr "Sfondo trasparente"
1073 diff --git a/po/ja.po b/po/ja.po
1074 index f7235d9..63d7fd7 100644
1075 --- a/po/ja.po
1076 +++ b/po/ja.po
1077 @@ -1907,3 +1907,6 @@ msgstr "ウィンドウを閉じる(_L)"
1078  
1079  #~ msgid "_Update login records when command is launched"
1080  #~ msgstr "コマンドを実行した時にログイン記録を更新する(_U)"
1081 +
1082 +msgid "Transparent background"
1083 +msgstr "透過な画像にする"
1084 diff --git a/po/ka.po b/po/ka.po
1085 index 8415e88..3717b7e 100644
1086 --- a/po/ka.po
1087 +++ b/po/ka.po
1088 @@ -568,7 +568,7 @@ msgstr "_ტექსტის ფერი:"
1089  
1090  #: ../src/gnome-terminal.glade2.h:86
1091  #, fuzzy
1092 -msgid "_Transparent background"
1093 +msgid "Transparent background"
1094  msgstr "გამჭირვალე"
1095  
1096  #: ../src/gnome-terminal.glade2.h:87
1097 diff --git a/po/kk.po b/po/kk.po
1098 index 3573937..862b095 100644
1099 --- a/po/kk.po
1100 +++ b/po/kk.po
1101 @@ -2208,3 +2208,6 @@ msgstr "Терезені жа_бу"
1102  
1103  #~ msgid "Be quiet"
1104  #~ msgstr "Тыныш болу"
1105 +
1106 +msgid "Transparent background"
1107 +msgstr "Мөлдір фон"
1108 diff --git a/po/kn.po b/po/kn.po
1109 index c887f88..e899ef3 100644
1110 --- a/po/kn.po
1111 +++ b/po/kn.po
1112 @@ -2344,3 +2344,6 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು  (_l)"
1113  
1114  #~ msgid "_Title:"
1115  #~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
1116 +
1117 +msgid "Transparent background"
1118 +msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
1119 diff --git a/po/ko.po b/po/ko.po
1120 index eba5008..72ebbe7 100644
1121 --- a/po/ko.po
1122 +++ b/po/ko.po
1123 @@ -2304,3 +2304,6 @@ msgstr "창 닫기(_L)"
1124  
1125  #~ msgid "Whether to use a dark theme variant"
1126  #~ msgstr "어두운 테마를 사용할 지 여부"
1127 +
1128 +msgid "Transparent background"
1129 +msgstr "투명한 배경"
1130 diff --git a/po/ku.po b/po/ku.po
1131 index 221825b..96e3581 100644
1132 --- a/po/ku.po
1133 +++ b/po/ku.po
1134 @@ -557,8 +557,8 @@ msgid "_Text color:"
1135  msgstr "Rengê _nivîsê:"
1136  
1137  #: ../src/gnome-terminal.glade2.h:86
1138 -msgid "_Transparent background"
1139 -msgstr "Rûerdê _transparan"
1140 +msgid "Transparent background"
1141 +msgstr "Rûerdê transparan"
1142  
1143  #: ../src/gnome-terminal.glade2.h:87
1144  msgid "_Update login records when command is launched"
1145 diff --git a/po/lt.po b/po/lt.po
1146 index 974c353..6b16746 100644
1147 --- a/po/lt.po
1148 +++ b/po/lt.po
1149 @@ -2310,3 +2310,6 @@ msgstr "_Užverti langą"
1150  
1151  #~ msgid "Whether to use a dark theme variant"
1152  #~ msgstr "Ar naudoti tamsų temos variantą"
1153 +
1154 +msgid "Transparent background"
1155 +msgstr "Permatomas fonas"
1156 diff --git a/po/lv.po b/po/lv.po
1157 index 0892f4b..a6aec64 100644
1158 --- a/po/lv.po
1159 +++ b/po/lv.po
1160 @@ -2231,3 +2231,5 @@ msgstr ""
1161  msgid "C_lose Window"
1162  msgstr "Aizvērt _logu"
1163
1164 +msgid "Transparent background"
1165 +msgstr "Caurspīdīgs fons"
1166 diff --git a/po/mai.po b/po/mai.po
1167 index 9b984a0..a3c0e17 100644
1168 --- a/po/mai.po
1169 +++ b/po/mai.po
1170 @@ -1290,8 +1290,8 @@ msgid "_Text color:"
1171  msgstr "पाठ रँग (_T):"
1172  
1173  #: ../src/profile-preferences.glade.h:69
1174 -msgid "_Transparent background"
1175 -msgstr "पारदर्शी पृष्ठभूमि (_T)"
1176 +msgid "Transparent background"
1177 +msgstr "पारदर्शी पृष्ठभूमि"
1178  
1179  #: ../src/profile-preferences.glade.h:70
1180  msgid "_Update login records when command is launched"
1181 diff --git a/po/mg.po b/po/mg.po
1182 index 1c1895c..a805417 100644
1183 --- a/po/mg.po
1184 +++ b/po/mg.po
1185 @@ -566,8 +566,8 @@ msgid "_Text color:"
1186  msgstr "Lokon'ny _soratra:"
1187  
1188  #: ../src/gnome-terminal.glade2.h:86
1189 -msgid "_Transparent background"
1190 -msgstr "_Afara tatera-pahazavana"
1191 +msgid "Transparent background"
1192 +msgstr "Afara tatera-pahazavana"
1193  
1194  #: ../src/gnome-terminal.glade2.h:87
1195  msgid "_Update login records when command is launched"
1196 diff --git a/po/mk.po b/po/mk.po
1197 index e31378a..d2b74d4 100644
1198 --- a/po/mk.po
1199 +++ b/po/mk.po
1200 @@ -1166,8 +1166,8 @@ msgid "_Text color:"
1201  msgstr "_Боја на текстот:"
1202  
1203  #: ../src/profile-preferences.glade.h:77
1204 -msgid "_Transparent background"
1205 -msgstr "_Транспарентна позадина"
1206 +msgid "Transparent background"
1207 +msgstr "Транспарентна позадина"
1208  
1209  #: ../src/profile-preferences.glade.h:78
1210  #| msgid "_Text color:"
1211 diff --git a/po/ml.po b/po/ml.po
1212 index cc1928d..62abd21 100644
1213 --- a/po/ml.po
1214 +++ b/po/ml.po
1215 @@ -2751,8 +2751,8 @@ msgstr "ടെര്‍മിനല്‍ അ_ടയ്ക്കുക"
1216  #~ msgid "_Solid color"
1217  #~ msgstr "_സോളിഡ് നിറം"
1218  
1219 -#~ msgid "_Transparent background"
1220 -#~ msgstr "_പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
1221 +msgid "Transparent background"
1222 +msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
1223  
1224  #~ msgid "S/Key Challenge Response"
1225  #~ msgstr "S/Key ചാലഞ്ച് മറുപടി"
1226 diff --git a/po/mn.po b/po/mn.po
1227 index 4922041..9696b7f 100644
1228 --- a/po/mn.po
1229 +++ b/po/mn.po
1230 @@ -617,8 +617,8 @@ msgid "_Text color:"
1231  msgstr "_Текстийн өнгө:"
1232  
1233  #: ../src/gnome-terminal.glade2.h:102
1234 -msgid "_Transparent background"
1235 -msgstr "_Тунгалаг дэвсгэр"
1236 +msgid "Transparent background"
1237 +msgstr "Тунгалаг дэвсгэр"
1238  
1239  #: ../src/gnome-terminal.glade2.h:103
1240  msgid "_Update login records when command is launched"
1241 diff --git a/po/mr.po b/po/mr.po
1242 index 61997da..50451d7 100644
1243 --- a/po/mr.po
1244 +++ b/po/mr.po
1245 @@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
1246  #~ msgid "_Solid color"
1247  #~ msgstr "गडद रंग (_S)"
1248  
1249 -#~ msgid "_Transparent background"
1250 -#~ msgstr "पारदर्शी पार्श्वभूमी(_T)"
1251 +msgid "Transparent background"
1252 +msgstr "पारदर्शी पार्श्वभूमी"
1253  
1254  #~ msgid "Disabled"
1255  #~ msgstr "अकार्यान्वीतित"
1256 diff --git a/po/ms.po b/po/ms.po
1257 index 5b663aa..38a2afe 100644
1258 --- a/po/ms.po
1259 +++ b/po/ms.po
1260 @@ -630,8 +630,8 @@ msgid "_Text color:"
1261  msgstr "Warna _Teks:"
1262  
1263  #: ../src/gnome-terminal.glade2.h:102
1264 -msgid "_Transparent background"
1265 -msgstr "LatarBelakang _Telus"
1266 +msgid "Transparent background"
1267 +msgstr "LatarBelakang Telus"
1268  
1269  #: ../src/gnome-terminal.glade2.h:103
1270  msgid "_Update login records when command is launched"
1271 diff --git a/po/nb.po b/po/nb.po
1272 index ff66807..8ea486c 100644
1273 --- a/po/nb.po
1274 +++ b/po/nb.po
1275 @@ -2101,3 +2101,6 @@ msgstr ""
1276  #: ../src/terminal-window.c:3726
1277  msgid "C_lose Window"
1278  msgstr "_Lukk vindu"
1279 +
1280 +msgid "Transparent background"
1281 +msgstr "Gjennomsiktig bakgrunn"
1282 diff --git a/po/nds.po b/po/nds.po
1283 index 98a1287..94fd757 100644
1284 --- a/po/nds.po
1285 +++ b/po/nds.po
1286 @@ -995,8 +995,8 @@ msgid "_Text color:"
1287  msgstr "_Textklöör:"
1288  
1289  #: ../src/profile-preferences.glade.h:73
1290 -msgid "_Transparent background"
1291 -msgstr "_Döörschienenachtergrund:"
1292 +msgid "Transparent background"
1293 +msgstr "Döörschienenachtergrund:"
1294  
1295  #: ../src/profile-preferences.glade.h:74
1296  msgid "_Update login records when command is launched"
1297 diff --git a/po/ne.po b/po/ne.po
1298 index 4fe16cc..d9a90ad 100644
1299 --- a/po/ne.po
1300 +++ b/po/ne.po
1301 @@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
1302  #~ msgid "_None (use solid color)"
1303  #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
1304  
1305 -#~ msgid "_Transparent background"
1306 -#~ msgstr "पारदर्शी पृष्ठभूमि"
1307 +msgid "Transparent background"
1308 +msgstr "पारदर्शी पृष्ठभूमि"
1309  
1310  #~ msgid "_Use the system fixed width font"
1311  #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
1312 diff --git a/po/nl.po b/po/nl.po
1313 index a51720b..111b032 100644
1314 --- a/po/nl.po
1315 +++ b/po/nl.po
1316 @@ -2352,3 +2352,6 @@ msgstr "Venster sl_uiten"
1317  
1318  #~ msgid "Switch to Tab 12"
1319  #~ msgstr "Ga naar tab 12"
1320 +
1321 +msgid "Transparent background"
1322 +msgstr "Transparante achtergrond"
1323 diff --git a/po/nn.po b/po/nn.po
1324 index 91cd6ab..9284459 100644
1325 --- a/po/nn.po
1326 +++ b/po/nn.po
1327 @@ -1428,8 +1428,8 @@ msgid "_Text color:"
1328  msgstr "_Tekstfarge:"
1329  
1330  #: ../src/profile-preferences.glade.h:73
1331 -msgid "_Transparent background"
1332 -msgstr "_Gjennomskinleg bakgrunn"
1333 +msgid "Transparent background"
1334 +msgstr "Gjennomskinleg bakgrunn"
1335  
1336  #: ../src/profile-preferences.glade.h:74
1337  msgid "_Update login records when command is launched"
1338 diff --git a/po/oc.po b/po/oc.po
1339 index 29a9030..87f6f9e 100644
1340 --- a/po/oc.po
1341 +++ b/po/oc.po
1342 @@ -3419,8 +3419,8 @@ msgstr "Tampar _la fenèstra"
1343  #~ msgid "Run;"
1344  #~ msgstr "Executar;Consòla;Shell;"
1345  
1346 -#~ msgid "_Transparent background"
1347 -#~ msgstr "Rèireplan _transparent"
1348 +msgid "Transparent background"
1349 +msgstr "Rèireplan transparent"
1350  
1351  #~ msgid ""
1352  #~ "A subset of possible encodings are presented in the Encoding submenu. "
1353 diff --git a/po/or.po b/po/or.po
1354 index ec1e6bf..218acd7 100644
1355 --- a/po/or.po
1356 +++ b/po/or.po
1357 @@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
1358  #~ msgid "Background image _scrolls"
1359  #~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)"
1360  
1361 -#~ msgid "_Transparent background"
1362 -#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)"
1363 +msgid "Transparent background"
1364 +msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି"
1365  
1366  #~ msgid "S_hade transparent or image background:"
1367  #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
1368 diff --git a/po/pa.po b/po/pa.po
1369 index 9c95b66..5e5b8ba 100644
1370 --- a/po/pa.po
1371 +++ b/po/pa.po
1372 @@ -3008,8 +3008,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
1373  #~ msgid "_Solid color"
1374  #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
1375  
1376 -#~ msgid "_Transparent background"
1377 -#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)"
1378 +msgid "Transparent background"
1379 +msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ"
1380  
1381  #~ msgid "S/Key Challenge Response"
1382  #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
1383 diff --git a/po/ps.po b/po/ps.po
1384 index b1de52c..a16ac49 100644
1385 --- a/po/ps.po
1386 +++ b/po/ps.po
1387 @@ -1052,8 +1052,8 @@ msgid "_Text color:"
1388  msgstr ":د ليکنې رنګ_"
1389  
1390  #: ../src/profile-preferences.glade.h:69
1391 -msgid "_Transparent background"
1392 -msgstr "روڼ شاليد_"
1393 +msgid "Transparent background"
1394 +msgstr "روڼ شاليد"
1395  
1396  #: ../src/profile-preferences.glade.h:70
1397  msgid "_Update login records when command is launched"
1398 diff --git a/po/pt.po b/po/pt.po
1399 index a361c66..ac7297e 100644
1400 --- a/po/pt.po
1401 +++ b/po/pt.po
1402 @@ -3033,8 +3033,8 @@ msgstr "Fechar jane_La"
1403  #~ msgid "Background image _scrolls"
1404  #~ msgstr "Imagem de fundo _rola"
1405  
1406 -#~ msgid "_Transparent background"
1407 -#~ msgstr "Fundo _transparente"
1408 +msgid "Transparent background"
1409 +msgstr "Fundo transparente"
1410  
1411  #~ msgid "S_hade transparent or image background:"
1412  #~ msgstr "Transparente som_breado ou imagem de fundo:"
1413 diff --git a/po/pt_BR.po b/po/pt_BR.po
1414 index 25cfa6e..94a8df6 100644
1415 --- a/po/pt_BR.po
1416 +++ b/po/pt_BR.po
1417 @@ -3056,3 +3056,6 @@ msgstr "_Fechar janela"
1418  #~ "terminal poderão usar. Essa é a paleta, na forma de uma lista de nomes de "
1419  #~ "cores separada por dois pontos. Os nomes de cores devem estar no formato "
1420  #~ "hexadecimal. Exemplo: \"#FF00FF\""
1421 +
1422 +msgid "Transparent background"
1423 +msgstr "Fundo transparente"
1424 diff --git a/po/ro.po b/po/ro.po
1425 index 179dd77..f7fc7ae 100644
1426 --- a/po/ro.po
1427 +++ b/po/ro.po
1428 @@ -1576,8 +1576,8 @@ msgid "_Text color:"
1429  msgstr "Culoare _text:"
1430  
1431  #: ../src/profile-preferences.glade.h:77
1432 -msgid "_Transparent background"
1433 -msgstr "Fundal _transparent"
1434 +msgid "Transparent background"
1435 +msgstr "Fundal transparent"
1436  
1437  #: ../src/profile-preferences.glade.h:78
1438  msgid "_Underline color:"
1439 diff --git a/po/ru.po b/po/ru.po
1440 index 8ff3d59..9b3342d 100644
1441 --- a/po/ru.po
1442 +++ b/po/ru.po
1443 @@ -2318,3 +2318,6 @@ msgstr "_Закрыть окно"
1444  
1445  #~ msgid "_Same as text color"
1446  #~ msgstr "_Цвет как у обычного текста"
1447 +
1448 +msgid "Transparent background"
1449 +msgstr "Прозрачный фон"
1450 diff --git a/po/rw.po b/po/rw.po
1451 index 3f02231..b7fff4c 100644
1452 --- a/po/rw.po
1453 +++ b/po/rw.po
1454 @@ -748,7 +748,7 @@ msgstr "Ibara ry'Inyandiko..."
1455  
1456  #: ../src/gnome-terminal.glade2.h:102
1457  #, fuzzy
1458 -msgid "_Transparent background"
1459 +msgid "Transparent background"
1460  msgstr "Mbuganyuma"
1461  
1462  #: ../src/gnome-terminal.glade2.h:103
1463 diff --git a/po/si.po b/po/si.po
1464 index 81dbf65..5cb0e5a 100644
1465 --- a/po/si.po
1466 +++ b/po/si.po
1467 @@ -537,8 +537,8 @@ msgid "_Text color:"
1468  msgstr "පෙළ වර්‍ණ: (_T)"
1469  
1470  #: ../src/gnome-terminal.glade2.h:86
1471 -msgid "_Transparent background"
1472 -msgstr "විනිවිද පෙනෙන පසුබිම (_T)"
1473 +msgid "Transparent background"
1474 +msgstr "විනිවිද පෙනෙන පසුබිම"
1475  
1476  #: ../src/gnome-terminal.glade2.h:87
1477  msgid "_Update login records when command is launched"
1478 diff --git a/po/sk.po b/po/sk.po
1479 index 03ac832..e97eb61 100644
1480 --- a/po/sk.po
1481 +++ b/po/sk.po
1482 @@ -2585,3 +2585,6 @@ msgstr "_Zavrieť okno"
1483  #~ "\n"
1484  #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
1485  #~ "help“.\n"
1486 +
1487 +msgid "Transparent background"
1488 +msgstr "Priehľadné pozadie"
1489 diff --git a/po/sl.po b/po/sl.po
1490 index 72baf7b..83ad04a 100644
1491 --- a/po/sl.po
1492 +++ b/po/sl.po
1493 @@ -2322,3 +2322,6 @@ msgstr "_Zapri okno"
1494  
1495  #~ msgid "_Profile Preferences…"
1496  #~ msgstr "Možnosti _profila ..."
1497 +
1498 +msgid "Transparent background"
1499 +msgstr "Prosojno ozadje"
1500 diff --git a/po/sq.po b/po/sq.po
1501 index e59c0b6..6fb4090 100644
1502 --- a/po/sq.po
1503 +++ b/po/sq.po
1504 @@ -567,8 +567,8 @@ msgstr "Ngjyra e _tekstit:"
1505  
1506  # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
1507  #: ../src/gnome-terminal.glade2.h:85
1508 -msgid "_Transparent background"
1509 -msgstr "Sfond _Trasparent"
1510 +msgid "Transparent background"
1511 +msgstr "Sfond Trasparent"
1512  
1513  #: ../src/gnome-terminal.glade2.h:86
1514  msgid "_Update login records when command is launched"
1515 diff --git a/po/sr.po b/po/sr.po
1516 index 799352b..bad0c4e 100644
1517 --- a/po/sr.po
1518 +++ b/po/sr.po
1519 @@ -2424,3 +2424,6 @@ msgstr "_Затвори прозор"
1520  
1521  #~ msgid "Close Window"
1522  #~ msgstr "Затвори прозор"
1523 +
1524 +msgid "Transparent background"
1525 +msgstr "Провидна позадина"
1526 diff --git a/po/sr@latin.po b/po/sr@latin.po
1527 index 318a7a1..aa759aa 100644
1528 --- a/po/sr@latin.po
1529 +++ b/po/sr@latin.po
1530 @@ -2424,3 +2424,6 @@ msgstr "_Zatvori prozor"
1531  
1532  #~ msgid "Close Window"
1533  #~ msgstr "Zatvori prozor"
1534 +
1535 +msgid "Transparent background"
1536 +msgstr "Providna pozadina"
1537 diff --git a/po/sv.po b/po/sv.po
1538 index 38b9426..0ad3def 100644
1539 --- a/po/sv.po
1540 +++ b/po/sv.po
1541 @@ -2281,5 +2281,8 @@ msgstr "Stän_g fönster"
1542  #~ msgid "Unknown completion request for \"%s\""
1543  #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
1544  
1545 +msgid "Transparent background"
1546 +msgstr "Genomskinlig bakgrund"
1547 +
1548  #~ msgid "Missing command"
1549  #~ msgstr "Kommando saknas"
1550 diff --git a/po/ta.po b/po/ta.po
1551 index 80aa2f6..61185b4 100644
1552 --- a/po/ta.po
1553 +++ b/po/ta.po
1554 @@ -3028,8 +3028,8 @@ msgstr "_l சாளரத்தை மூடவும்"
1555  #~ msgid "_Solid color"
1556  #~ msgstr "(_S) ஒரே வண்ணம்"
1557  
1558 -#~ msgid "_Transparent background"
1559 -#~ msgstr "_T புலப்பாடு பின்னணி"
1560 +msgid "Transparent background"
1561 +msgstr "புலப்பாடு பின்னணி"
1562  
1563  #~ msgid "No such profile \"%s\", using default profile\n"
1564  #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
1565 diff --git a/po/te.po b/po/te.po
1566 index 000cda3..6dcf793 100644
1567 --- a/po/te.po
1568 +++ b/po/te.po
1569 @@ -2898,8 +2898,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
1570  #~ msgid "Background image _scrolls"
1571  #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
1572  
1573 -#~ msgid "_Transparent background"
1574 -#~ msgstr "పారదర్శక నేపథ్యం (_T)"
1575 +msgid "Transparent background"
1576 +msgstr "పారదర్శక నేపథ్యం"
1577  
1578  #~ msgid "S_hade transparent or image background:"
1579  #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
1580 diff --git a/po/th.po b/po/th.po
1581 index 91c78cc..1f1fa48 100644
1582 --- a/po/th.po
1583 +++ b/po/th.po
1584 @@ -2676,8 +2676,8 @@ msgstr "ปิ_ดหน้าต่าง"
1585  #~ msgid "_Solid color"
1586  #~ msgstr "สี_ทึบ"
1587  
1588 -#~ msgid "_Transparent background"
1589 -#~ msgstr "พื้นหลังโปร่งแ_สง"
1590 +msgid "Transparent background"
1591 +msgstr "พื้นหลังโปร่งแสง"
1592  
1593  #~ msgid ""
1594  #~ "You already have a profile called “%s”. Do you want to create another "
1595 diff --git a/po/tr.po b/po/tr.po
1596 index f7c68e6..316587c 100644
1597 --- a/po/tr.po
1598 +++ b/po/tr.po
1599 @@ -1963,3 +1963,6 @@ msgstr "Hala bir süreç bu uçbirimde çalışıyor. Uçbirimi kapatmak onu son
1600  #: ../src/terminal-window.c:3694
1601  msgid "C_lose Window"
1602  msgstr "_Pencereyi Kapat"
1603 +
1604 +msgid "Transparent background"
1605 +msgstr "Şeffaf arkaplan"
1606 diff --git a/po/ug.po b/po/ug.po
1607 index 1673bb3..e21e61e 100644
1608 --- a/po/ug.po
1609 +++ b/po/ug.po
1610 @@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
1611  #~ msgid "_Solid color"
1612  #~ msgstr "ساپ رەڭ(_S)"
1613  
1614 -#~ msgid "_Transparent background"
1615 -#~ msgstr "سۈزۈك تەگلىك(_T)"
1616 +msgid "Transparent background"
1617 +msgstr "سۈزۈك تەگلىك"
1618  
1619  #~ msgid ""
1620  #~ "You already have a profile called “%s”. Do you want to create another "
1621 diff --git a/po/uk.po b/po/uk.po
1622 index 0a04bc6..c097f0c 100644
1623 --- a/po/uk.po
1624 +++ b/po/uk.po
1625 @@ -3126,8 +3126,8 @@ msgstr "Закр_ити вікно"
1626  #~ msgid "_Solid color"
1627  #~ msgstr "_Суцільний колір"
1628  
1629 -#~ msgid "_Transparent background"
1630 -#~ msgstr "П_розоре тло"
1631 +msgid "Transparent background"
1632 +msgstr "Прозоре тло"
1633  
1634  #~ msgid "Switch to Tab 2"
1635  #~ msgstr "До вкладки 2"
1636 diff --git a/po/vi.po b/po/vi.po
1637 index 9036f38..5cbcc8c 100644
1638 --- a/po/vi.po
1639 +++ b/po/vi.po
1640 @@ -2690,3 +2690,6 @@ msgstr "Đón_g cửa sổ"
1641  #~ "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 "
1642  #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị "
1643  #~ "tắt), nghĩa là không có phím tắt cho hành động này."
1644 +
1645 +msgid "Transparent background"
1646 +msgstr "Nền trong suốt"
1647 diff --git a/po/wa.po b/po/wa.po
1648 index 2856571..f068531 100644
1649 --- a/po/wa.po
1650 +++ b/po/wa.po
1651 @@ -563,8 +563,8 @@ msgid "_Text color:"
1652  msgstr "Coleur pol _tecse:"
1653  
1654  #: ../src/gnome-terminal.glade2.h:86
1655 -msgid "_Transparent background"
1656 -msgstr "Fond k' on voet _houte"
1657 +msgid "Transparent background"
1658 +msgstr "Fond k' on voet houte"
1659  
1660  #: ../src/gnome-terminal.glade2.h:87
1661  msgid "_Update login records when command is launched"
1662 diff --git a/po/xh.po b/po/xh.po
1663 index e5981c6..7f9f804 100644
1664 --- a/po/xh.po
1665 +++ b/po/xh.po
1666 @@ -620,8 +620,8 @@ msgid "_Text color:"
1667  msgstr "_Umbala wombhalo:"
1668  
1669  #: ../src/gnome-terminal.glade2.h:102
1670 -msgid "_Transparent background"
1671 -msgstr "_Okungasemva okucace gca"
1672 +msgid "Transparent background"
1673 +msgstr "Okungasemva okucace gca"
1674  
1675  #: ../src/gnome-terminal.glade2.h:103
1676  msgid "_Update login records when command is launched"
1677 diff --git a/po/zh_CN.po b/po/zh_CN.po
1678 index e9a540f..8473524 100644
1679 --- a/po/zh_CN.po
1680 +++ b/po/zh_CN.po
1681 @@ -2357,3 +2357,6 @@ msgstr "关闭窗口(_L)"
1682  
1683  #~ msgid "_Find..."
1684  #~ msgstr "查找(_F)..."
1685 +
1686 +msgid "Transparent background"
1687 +msgstr "透明背景"
1688 diff --git a/po/zh_HK.po b/po/zh_HK.po
1689 index eb0ede7..aceb184 100644
1690 --- a/po/zh_HK.po
1691 +++ b/po/zh_HK.po
1692 @@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
1693  
1694  #~ msgid "Show session management options"
1695  #~ msgstr "顯示作業階段管理選項"
1696 +
1697 +msgid "Transparent background"
1698 +msgstr "透明背景"
1699 diff --git a/po/zh_TW.po b/po/zh_TW.po
1700 index e85dda1..f69fd98 100644
1701 --- a/po/zh_TW.po
1702 +++ b/po/zh_TW.po
1703 @@ -2558,3 +2558,6 @@ msgstr "關閉視窗(_L)"
1704  
1705  #~ msgid "Show session management options"
1706  #~ msgstr "顯示作業階段管理選項"
1707 +
1708 +msgid "Transparent background"
1709 +msgstr "透明背景"
1710 -- 
1711 2.5.0
1712
This page took 0.381401 seconds and 4 git commands to generate.