Codebase list gnome-terminal / debian/3.16.2-1kali1
Import new version from debian * Import new version from debian * Refresh patches * Update restore-transparency.patch specific to kali for gnome 3.16 Sophie Brun 8 years ago
2 changed file(s) with 1363 addition(s) and 39 deletion(s). Raw diff Collapse all Expand all
0 gnome-terminal (3.16.2-1kali1) kali-dev; urgency=medium
1
2 * Import new version from debian
3 * Refresh patches
4 * Update restore-transparency.patch specific to kali for gnome 3.16
5
6 -- Sophie Brun <[email protected]> Thu, 10 Sep 2015 12:14:33 +0200
7
08 gnome-terminal (3.16.2-1) unstable; urgency=medium
19
210 * New upstream release.
00 Description: Restore transparency
1 Origin: other, http://pkgs.fedoraproject.org/cgit/gnome-terminal.git/plain/0001-Restore-transparency-gnome-3-14.patch?h=f21
1 Origin: other,
2 http://pkgs.fedoraproject.org/cgit/gnome-terminal.git/tree/gnome-terminal-restore-transparency.patch
23 Bug: https://bugzilla.gnome.org/show_bug.cgi?id=695371
34
4 Note for mysel, a patch for 3.16 is here:
5 http://pkgs.fedoraproject.org/cgit/gnome-terminal.git/tree/gnome-terminal-restore-transparency.patch
6
7 From 1cb63cd1c90cb5bfc8ed2e6d161a7b96c51d8a29 Mon Sep 17 00:00:00 2001
5 From 181dca2c0b50af1326a84e1ec0134afab88ff5b2 Mon Sep 17 00:00:00 2001
86 From: Debarshi Ray <[email protected]>
97 Date: Mon, 12 May 2014 14:57:18 +0200
10 Subject: [PATCH 1/2] Restore transparency
8 Subject: [PATCH 1/3] Restore transparency
119
1210 The transparency settings were removed as a side effect of
1311 2bff4b63ed3ceef6055e35563e9b0b33ad57349d
1513 This restores them and you will need a compositing window manager to
1614 use it. The background image setting, also known as faux transparency,
1715 was not restored.
16
17 The transparency checkbox lost its mnemonic accelerator because 't'
18 is already taken and using any other letter would make it hard to
19 restore the translations of the string.
1820 ---
1921 src/org.gnome.Terminal.gschema.xml | 10 +++++
2022 src/profile-editor.c | 11 +++++
2426 src/terminal-window.c | 7 +++
2527 6 files changed, 144 insertions(+), 1 deletion(-)
2628
29 diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
30 index 0f8433f..104e662 100644
2731 --- a/src/org.gnome.Terminal.gschema.xml
2832 +++ b/src/org.gnome.Terminal.gschema.xml
29 @@ -318,6 +318,16 @@
33 @@ -333,6 +333,16 @@
3034 <default>'narrow'</default>
3135 <summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
3236 </key>
4347 </schema>
4448
4549 <!-- Keybinding settings -->
50 diff --git a/src/profile-editor.c b/src/profile-editor.c
51 index 3e8ccaf..f09b6bc 100644
4652 --- a/src/profile-editor.c
4753 +++ b/src/profile-editor.c
48 @@ -1099,7 +1099,18 @@ terminal_profile_edit (GSettings *profi
54 @@ -1106,7 +1106,18 @@ terminal_profile_edit (GSettings *profile,
4955 "active-id",
5056 G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
5157
6470 terminal_util_bind_mnemonic_label_sensitivity (editor);
6571
6672 terminal_util_dialog_focus_widget (editor, widget_name);
73 diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui
74 index eb2fa26..7f8a471 100644
6775 --- a/src/profile-preferences.ui
6876 +++ b/src/profile-preferences.ui
6977 @@ -23,6 +23,11 @@
7886 <object class="GtkListStore" id="model1">
7987 <columns>
8088 <!-- column-name gchararray -->
81 @@ -1073,6 +1078,93 @@
89 @@ -1045,6 +1050,93 @@
8290 <property name="position">1</property>
8391 </packing>
8492 </child>
9098 + <property name="spacing">12</property>
9199 + <child>
92100 + <object class="GtkCheckButton" id="use-transparent-background">
93 + <property name="label" translatable="yes">Use t_ransparent background</property>
101 + <property name="label" translatable="yes">Transparent background</property>
94102 + <property name="visible">True</property>
95103 + <property name="can_focus">True</property>
96104 + <property name="receives_default">False</property>
172180 </object>
173181 </child>
174182 </object>
183 diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
184 index 17ffdb2..0fcbf52 100644
175185 --- a/src/terminal-schemas.h
176186 +++ b/src/terminal-schemas.h
177 @@ -63,6 +63,9 @@ G_BEGIN_DECLS
178 #define TERMINAL_PROFILE_USE_THEME_COLORS_KEY "use-theme-colors"
187 @@ -64,6 +64,9 @@ G_BEGIN_DECLS
179188 #define TERMINAL_PROFILE_VISIBLE_NAME_KEY "visible-name"
189 #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY "word-char-exceptions"
180190
181191 +#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND "use-transparent-background"
182192 +#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent"
183193 +
184194 #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close"
185195 #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar"
186 #define TERMINAL_SETTING_DARK_THEME_KEY "dark-theme"
196 #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY "menu-accelerator-enabled"
197 diff --git a/src/terminal-screen.c b/src/terminal-screen.c
198 index df3fdde..48174c2 100644
187199 --- a/src/terminal-screen.c
188200 +++ b/src/terminal-screen.c
189 @@ -764,7 +764,9 @@ terminal_screen_profile_changed_cb (GSet
201 @@ -750,7 +750,9 @@ terminal_screen_profile_changed_cb (GSettings *profile,
190202 prop_name == I_(TERMINAL_PROFILE_BACKGROUND_COLOR_KEY) ||
191203 prop_name == I_(TERMINAL_PROFILE_BOLD_COLOR_SAME_AS_FG_KEY) ||
192204 prop_name == I_(TERMINAL_PROFILE_BOLD_COLOR_KEY) ||
197209 update_color_scheme (screen);
198210
199211 if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
200 @@ -823,6 +825,8 @@ update_color_scheme (TerminalScreen *scr
212 @@ -816,6 +818,8 @@ update_color_scheme (TerminalScreen *screen)
201213 GdkRGBA fg, bg, bold, theme_fg, theme_bg;
202214 GdkRGBA *boldp;
203215 GtkStyleContext *context;
206218
207219 context = gtk_widget_get_style_context (widget);
208220 gtk_style_context_get_color (context, GTK_STATE_FLAG_NORMAL, &theme_fg);
209 @@ -854,9 +858,25 @@ update_color_scheme (TerminalScreen *scr
221 @@ -836,9 +840,25 @@ update_color_scheme (TerminalScreen *screen)
210222 boldp = NULL;
211223
212224 colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors);
232244 }
233245
234246 static void
247 diff --git a/src/terminal-window.c b/src/terminal-window.c
248 index 12cae4f..366e4f8 100644
235249 --- a/src/terminal-window.c
236250 +++ b/src/terminal-window.c
237 @@ -2189,6 +2189,26 @@ terminal_window_realize (GtkWidget *widg
251 @@ -2549,6 +2549,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 @@ -2564,6 +2566,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.1.0
274
275
276 From de7d64698ac700f63898221a5815af939001ba18 Mon Sep 17 00:00:00 2001
277 From: Lars Uebernickel <[email protected]>
278 Date: Wed, 28 May 2014 14:11:02 +0200
279 Subject: [PATCH 2/3] 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 366e4f8..2458656 100644
297 --- a/src/terminal-window.c
298 +++ b/src/terminal-window.c
299 @@ -2189,6 +2189,26 @@ terminal_window_realize (GtkWidget *widget)
238300 }
239301
240302 static gboolean
261323 terminal_window_state_event (GtkWidget *widget,
262324 GdkEventWindowState *event)
263325 {
264 @@ -2549,6 +2569,8 @@ terminal_window_init (TerminalWindow *wi
265 TerminalWindowPrivate *priv;
266 TerminalApp *app;
267 TerminalSettingsList *profiles_list;
268 + GdkScreen *screen;
269 + GdkVisual *visual;
270 GtkActionGroup *action_group;
271 GtkAction *action;
272 GtkUIManager *manager;
273 @@ -2564,6 +2586,11 @@ terminal_window_init (TerminalWindow *wi
274
275 gtk_widget_init_template (GTK_WIDGET (window));
276
277 + screen = gtk_widget_get_screen (GTK_WIDGET (window));
278 + visual = gdk_screen_get_rgba_visual (screen);
279 + if (visual != NULL)
280 + gtk_widget_set_visual (GTK_WIDGET (window), visual);
281 +
282 uuid_generate (u);
283 uuid_unparse (u, uuidstr);
284 priv->uuid = g_strdup (uuidstr);
285 @@ -2741,6 +2768,7 @@ terminal_window_class_init (TerminalWind
326 @@ -2753,6 +2773,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
286327
287328 widget_class->show = terminal_window_show;
288329 widget_class->realize = terminal_window_realize;
290331 widget_class->window_state_event = terminal_window_state_event;
291332 widget_class->screen_changed = terminal_window_screen_changed;
292333 widget_class->style_updated = terminal_window_style_updated;
334 --
335 2.1.0
336
337
338 From dfc31fb0803d546cc21ef8bcd33e54c30e14dc1c Mon Sep 17 00:00:00 2001
339 From: Debarshi Ray <[email protected]>
340 Date: Tue, 17 Feb 2015 17:06:17 +0100
341 Subject: [PATCH 3/3] Restore translations for transparency
342
343 ---
344 po/am.po | 4 ++--
345 po/ar.po | 4 ++--
346 po/as.po | 4 ++--
347 po/ast.po | 4 ++--
348 po/az.po | 4 ++--
349 po/be.po | 3 +++
350 po/[email protected] | 4 ++--
351 po/bg.po | 3 +++
352 po/bn_IN.po | 3 +++
353 po/bs.po | 4 ++++
354 po/ca.po | 3 +++
355 po/[email protected] | 3 +++
356 po/cs.po | 3 +++
357 po/cy.po | 4 ++--
358 po/da.po | 4 ++--
359 po/de.po | 4 ++--
360 po/dz.po | 4 ++--
361 po/el.po | 3 +++
362 po/[email protected] | 4 ++--
363 po/en_CA.po | 4 ++--
364 po/en_GB.po | 4 ++--
365 po/es.po | 4 ++--
366 po/et.po | 3 +++
367 po/eu.po | 4 ++--
368 po/fa.po | 3 +++
369 po/fi.po | 5 ++++-
370 po/fr.po | 3 +++
371 po/fur.po | 4 ++--
372 po/ga.po | 3 +++
373 po/gl.po | 4 ++--
374 po/gu.po | 4 ++--
375 po/he.po | 4 ++--
376 po/hi.po | 4 ++--
377 po/hr.po | 4 ++--
378 po/hu.po | 3 +++
379 po/hy.po | 4 ++--
380 po/id.po | 3 +++
381 po/it.po | 3 +++
382 po/ja.po | 3 +++
383 po/ka.po | 2 +-
384 po/kk.po | 3 +++
385 po/kn.po | 3 +++
386 po/ko.po | 3 +++
387 po/ku.po | 4 ++--
388 po/lt.po | 3 +++
389 po/lv.po | 4 ++--
390 po/mai.po | 4 ++--
391 po/mg.po | 4 ++--
392 po/mk.po | 4 ++--
393 po/ml.po | 4 ++--
394 po/mn.po | 4 ++--
395 po/mr.po | 4 ++--
396 po/ms.po | 4 ++--
397 po/nb.po | 3 +++
398 po/nds.po | 4 ++--
399 po/ne.po | 4 ++--
400 po/nl.po | 3 +++
401 po/nn.po | 4 ++--
402 po/oc.po | 4 ++--
403 po/or.po | 4 ++--
404 po/pa.po | 4 ++--
405 po/pl.po | 3 +++
406 po/ps.po | 4 ++--
407 po/pt.po | 4 ++--
408 po/pt_BR.po | 3 +++
409 po/ro.po | 4 ++--
410 po/ru.po | 3 +++
411 po/rw.po | 2 +-
412 po/si.po | 4 ++--
413 po/sk.po | 3 +++
414 po/sl.po | 3 +++
415 po/sq.po | 4 ++--
416 po/sr.po | 3 +++
417 po/[email protected] | 3 +++
418 po/sv.po | 3 +++
419 po/ta.po | 4 ++--
420 po/te.po | 4 ++--
421 po/th.po | 4 ++--
422 po/tr.po | 3 +++
423 po/ug.po | 4 ++--
424 po/uk.po | 4 ++--
425 po/vi.po | 3 +++
426 po/wa.po | 4 ++--
427 po/xh.po | 4 ++--
428 po/zh_CN.po | 3 +++
429 po/zh_HK.po | 3 +++
430 po/zh_TW.po | 3 +++
431 87 files changed, 210 insertions(+), 101 deletions(-)
432
433 diff --git a/po/am.po b/po/am.po
434 index 27a7e96..04a8ad9 100644
435 --- a/po/am.po
436 +++ b/po/am.po
437 @@ -613,8 +613,8 @@ msgid "_Text color:"
438 msgstr "የ_ጽሑፍ ቀለም፦"
439
440 #: ../src/gnome-terminal.glade2.h:102
441 -msgid "_Transparent background"
442 -msgstr "_የሚያሳይ መደብ"
443 +msgid "Transparent background"
444 +msgstr "የሚያሳይ መደብ"
445
446 #: ../src/gnome-terminal.glade2.h:103
447 msgid "_Update login records when command is launched"
448 diff --git a/po/ar.po b/po/ar.po
449 index c27cd9c..f541938 100644
450 --- a/po/ar.po
451 +++ b/po/ar.po
452 @@ -2914,8 +2914,8 @@ msgstr "أغ_لق النافذة"
453 #~ msgid "Background image _scrolls"
454 #~ msgstr "صورة الخلفية ت_لتف"
455
456 -#~ msgid "_Transparent background"
457 -#~ msgstr "خلفية _شفافة"
458 +msgid "Transparent background"
459 +msgstr "خلفية شفافة"
460
461 #~ msgid "S_hade transparent or image background:"
462 #~ msgstr "_ظلل شفافية أو صورة الخلفية:"
463 diff --git a/po/as.po b/po/as.po
464 index 0bd699d..63fca01 100644
465 --- a/po/as.po
466 +++ b/po/as.po
467 @@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)"
468 #~ msgid "Background image _scrolls"
469 #~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)"
470
471 -#~ msgid "_Transparent background"
472 -#~ msgstr "স্বচ্চ পটভূমি (_T)"
473 +msgid "Transparent background"
474 +msgstr "স্বচ্চ পটভূমি "
475
476 #~ msgid "S_hade transparent or image background:"
477 #~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):"
478 diff --git a/po/ast.po b/po/ast.po
479 index d1c6e7b..4210820 100644
480 --- a/po/ast.po
481 +++ b/po/ast.po
482 @@ -1598,8 +1598,8 @@ msgid "_Text color:"
483 msgstr "Color del _testu:"
484
485 #: ../src/profile-preferences.glade.h:77
486 -msgid "_Transparent background"
487 -msgstr "Fondu _tresparente"
488 +msgid "Transparent background"
489 +msgstr "Fondu tresparente"
490
491 #: ../src/profile-preferences.glade.h:78
492 msgid "_Underline color:"
493 diff --git a/po/az.po b/po/az.po
494 index b0f2e3e..877f114 100644
495 --- a/po/az.po
496 +++ b/po/az.po
497 @@ -619,8 +619,8 @@ msgid "_Text color:"
498 msgstr "_Mətn rəngi:"
499
500 #: ../src/gnome-terminal.glade2.h:102
501 -msgid "_Transparent background"
502 -msgstr "_Şəffaf arxa plan"
503 +msgid "Transparent background"
504 +msgstr "Şəffaf arxa plan"
505
506 #: ../src/gnome-terminal.glade2.h:103
507 msgid "_Update login records when command is launched"
508 diff --git a/po/be.po b/po/be.po
509 index fca0ae4..74ff329 100644
510 --- a/po/be.po
511 +++ b/po/be.po
512 @@ -2015,3 +2015,6 @@ msgstr ""
513 msgid "C_lose Window"
514 msgstr "_Закрыць акно"
515
516 +msgid "Transparent background"
517 +msgstr "Празрысты фон"
518 +
519 diff --git a/po/[email protected] b/po/[email protected]
520 index 1e057c7..1d22a58 100644
521 --- a/po/[email protected]
522 +++ b/po/[email protected]
523 @@ -1425,8 +1425,8 @@ msgid "_Text color:"
524 msgstr "Koler _tekstu:"
525
526 #: ../src/profile-preferences.glade.h:73
527 -msgid "_Transparent background"
528 -msgstr "_Prazrysty fon"
529 +msgid "Transparent background"
530 +msgstr "Prazrysty fon"
531
532 #: ../src/profile-preferences.glade.h:74
533 msgid "_Update login records when command is launched"
534 diff --git a/po/bg.po b/po/bg.po
535 index 7e9c9be..241ef52 100644
536 --- a/po/bg.po
537 +++ b/po/bg.po
538 @@ -2100,3 +2100,6 @@ msgstr ""
539 #: ../src/terminal-window.c:3652
540 msgid "C_lose Window"
541 msgstr "_Затваряне на този прозорец"
542 +
543 +msgid "Transparent background"
544 +msgstr "Прозрачен фон"
545 diff --git a/po/bn_IN.po b/po/bn_IN.po
546 index c74246a..d65b322 100644
547 --- a/po/bn_IN.po
548 +++ b/po/bn_IN.po
549 @@ -2358,3 +2358,6 @@ msgstr "উইন্ডো বন্ধ করুন (_l)"
550
551 #~ msgid "_Title:"
552 #~ msgstr "শিরোনাম: (_T)"
553 +
554 +msgid "Transparent background"
555 +msgstr "স্বচ্চ পটভূমি "
556 diff --git a/po/bs.po b/po/bs.po
557 index 49e7108..fccfa86 100644
558 --- a/po/bs.po
559 +++ b/po/bs.po
560 @@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta"
561 msgid "Keyboard shortcut to make font smaller"
562 msgstr "Kratica tastature za smanjivanje fonta"
563
564 +#: ../src/gnome-terminal.glade2.h:102
565 +msgid "Transparent background"
566 +msgstr "Providna pozadina"
567 +
568 #: ../src/org.gnome.Terminal.gschema.xml.h:78
569 msgid "Keyboard shortcut to make font normal-size"
570 msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu"
571 diff --git a/po/ca.po b/po/ca.po
572 index 567b344..156eed1 100644
573 --- a/po/ca.po
574 +++ b/po/ca.po
575 @@ -2111,3 +2111,6 @@ msgstr "Tanca la _finestra"
576
577 #~ msgid "Use _dark theme variant"
578 #~ msgstr "Utilitza la variant de tema _fosc"
579 +
580 +msgid "Transparent background"
581 +msgstr "Fons transparent"
582 diff --git a/po/[email protected] b/po/[email protected]
583 index 1c279a0..4073f71 100644
584 --- a/po/[email protected]
585 +++ b/po/[email protected]
586 @@ -2092,3 +2092,6 @@ msgstr ""
587 #: ../src/terminal-window.c:3645
588 msgid "C_lose Window"
589 msgstr "Tanca la _finestra"
590 +
591 +msgid "Transparent background"
592 +msgstr "Fons transparent"
593 diff --git a/po/cs.po b/po/cs.po
594 index f1e8c44..912b4df 100644
595 --- a/po/cs.po
596 +++ b/po/cs.po
597 @@ -2063,3 +2063,6 @@ msgstr ""
598 #: ../src/terminal-window.c:3652
599 msgid "C_lose Window"
600 msgstr "_Zavřít okno"
601 +
602 +msgid "Transparent background"
603 +msgstr "Průsvitné pozadí"
604 diff --git a/po/cy.po b/po/cy.po
605 index 06d0e3c..2491bd1 100644
606 --- a/po/cy.po
607 +++ b/po/cy.po
608 @@ -1447,8 +1447,8 @@ msgid "_Text color:"
609 msgstr "Lliw'r _testun:"
610
611 #: ../src/profile-preferences.glade.h:73
612 -msgid "_Transparent background"
613 -msgstr "Cefndir _tryloyw"
614 +msgid "Transparent background"
615 +msgstr "Cefndir tryloyw"
616
617 #: ../src/profile-preferences.glade.h:74
618 msgid "_Update login records when command is launched"
619 diff --git a/po/da.po b/po/da.po
620 index 74b7d0b..af69a6b 100644
621 --- a/po/da.po
622 +++ b/po/da.po
623 @@ -2987,8 +2987,8 @@ msgstr "_Luk vindue"
624 #~ msgid "_Solid color"
625 #~ msgstr "_Ensfarvet"
626
627 -#~ msgid "_Transparent background"
628 -#~ msgstr "_Gennemsigtig baggrund"
629 +msgid "Transparent background"
630 +msgstr "Gennemsigtig baggrund"
631
632 #~ msgid ""
633 #~ "You already have a profile called “%s”. Do you want to create another "
634 diff --git a/po/de.po b/po/de.po
635 index 6b2bb19..2b814c0 100644
636 --- a/po/de.po
637 +++ b/po/de.po
638 @@ -3060,8 +3060,8 @@ msgstr "Fenster _schließen"
639 #~ msgid "Background image _scrolls"
640 #~ msgstr "Hintergrundbild _folgt Bildlauf"
641
642 -#~ msgid "_Transparent background"
643 -#~ msgstr "_Transparenter Hintergrund"
644 +msgid "Transparent background"
645 +msgstr "Transparenter Hintergrund"
646
647 #~ msgid "S_hade transparent or image background:"
648 #~ msgstr "Transparenz und Bildhintergründe _abdunkeln:"
649 diff --git a/po/dz.po b/po/dz.po
650 index ecb8fd5..290934a 100644
651 --- a/po/dz.po
652 +++ b/po/dz.po
653 @@ -1551,8 +1551,8 @@ msgid "_Text color:"
654 msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)"
655
656 #: ../src/profile-preferences.glade.h:77
657 -msgid "_Transparent background"
658 -msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)"
659 +msgid "Transparent background"
660 +msgstr "དྭངས་གསལ་རྒྱབ་གཞི།"
661
662 #: ../src/profile-preferences.glade.h:78
663 #, fuzzy
664 diff --git a/po/el.po b/po/el.po
665 index b81802c..a32ae26 100644
666 --- a/po/el.po
667 +++ b/po/el.po
668 @@ -2289,3 +2289,6 @@ msgstr "Κ_λείσιμο παραθύρου"
669
670 #~ msgid "_Input Methods"
671 #~ msgstr "_Μέθοδοι εισαγωγής"
672 +
673 +msgid "Transparent background"
674 +msgstr "Διάφανο παρασκήνιο"
675 diff --git a/po/[email protected] b/po/[email protected]
676 index 65f3d41..05dc99d 100644
677 --- a/po/[email protected]
678 +++ b/po/[email protected]
679 @@ -1467,8 +1467,8 @@ msgid "_Text color:"
680 msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:"
681
682 #: ../src/profile-preferences.glade.h:78
683 -msgid "_Transparent background"
684 -msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
685 +msgid "Transparent background"
686 +msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛"
687
688 #: ../src/profile-preferences.glade.h:79
689 msgid "_Underline color:"
690 diff --git a/po/en_CA.po b/po/en_CA.po
691 index c79cbf5..b8b14d2 100644
692 --- a/po/en_CA.po
693 +++ b/po/en_CA.po
694 @@ -556,8 +556,8 @@ msgid "_Text color:"
695 msgstr "_Text colour:"
696
697 #: ../src/gnome-terminal.glade2.h:86
698 -msgid "_Transparent background"
699 -msgstr "_Transparent background"
700 +msgid "Transparent background"
701 +msgstr "Transparent background"
702
703 #: ../src/gnome-terminal.glade2.h:87
704 msgid "_Update login records when command is launched"
705 diff --git a/po/en_GB.po b/po/en_GB.po
706 index 4d38486..69e7113 100644
707 --- a/po/en_GB.po
708 +++ b/po/en_GB.po
709 @@ -2732,8 +2732,8 @@ msgstr "_Title:"
710 #~ msgid "Background image _scrolls"
711 #~ msgstr "Background image _scrolls"
712
713 -#~ msgid "_Transparent background"
714 -#~ msgstr "_Transparent background"
715 +msgid "Transparent background"
716 +msgstr "Transparent background"
717
718 #~ msgid "S_hade transparent or image background:"
719 #~ msgstr "S_hade transparent or image background:"
720 diff --git a/po/es.po b/po/es.po
721 index c8b47fe..4d33066 100644
722 --- a/po/es.po
723 +++ b/po/es.po
724 @@ -3095,8 +3095,8 @@ msgstr "_Cerrar ventana"
725 #~ msgid "_Solid color"
726 #~ msgstr "Color _sólido"
727
728 -#~ msgid "_Transparent background"
729 -#~ msgstr "Fondo _transparente"
730 +msgid "Transparent background"
731 +msgstr "Fondo transparente"
732
733 #~ msgid "No such profile \"%s\", using default profile\n"
734 #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n"
735 diff --git a/po/et.po b/po/et.po
736 index 4b1c2a7..7707611 100644
737 --- a/po/et.po
738 +++ b/po/et.po
739 @@ -1747,3 +1747,6 @@ msgstr "Su_lge aken"
740
741 #~ msgid "Choose base profile"
742 #~ msgstr "Vali põhiprofiil"
743 +
744 +msgid "Transparent background"
745 +msgstr "Läbipaistev taust"
746 diff --git a/po/eu.po b/po/eu.po
747 index 97bb976..b53f33c 100644
748 --- a/po/eu.po
749 +++ b/po/eu.po
750 @@ -2972,8 +2972,8 @@ msgstr "It_xi leihoa"
751 #~ msgid "_Solid color"
752 #~ msgstr "_Kolore solidoa"
753
754 -#~ msgid "_Transparent background"
755 -#~ msgstr "_Atzeko plano gardena"
756 +msgid "Transparent background"
757 +msgstr "Atzeko plano gardena"
758
759 #~ msgid ""
760 #~ "You already have a profile called “%s”. Do you want to create another "
761 diff --git a/po/fa.po b/po/fa.po
762 index 2090863..b9a05af 100644
763 --- a/po/fa.po
764 +++ b/po/fa.po
765 @@ -2027,3 +2027,6 @@ msgstr "ذخیره به نام..."
766 #: ../src/terminal-window.c:3456
767 msgid "_Title:"
768 msgstr "_عنوان:"
769 +
770 +msgid "Transparent background"
771 +msgstr "پس‌زمینه‌ی شفاف"
772 diff --git a/po/fi.po b/po/fi.po
773 index f80a962..dacd609 100644
774 --- a/po/fi.po
775 +++ b/po/fi.po
776 @@ -2069,6 +2069,9 @@ msgstr ""
777 msgid "C_lose Window"
778 msgstr "_Sulje ikkuna"
779
780 +msgid "Transparent background"
781 +msgstr "Läpinäkyvä tausta"
782 +
783 #~ msgid "Set the terminal title"
784 #~ msgstr "Aseta päätteen otsikko"
785
786 @@ -2083,4 +2086,4 @@ msgstr "_Sulje ikkuna"
787 #~ msgstr "Käytetäänkö teeman tummaan muunnelmaa"
788
789 #~ msgid "Use _dark theme variant"
790 -#~ msgstr "Käytä _teeman tummaa muunnelmaa"
791 +#~ msgstr "Käytä _teeman tummaa muunnelmaa"
792 \ No newline at end of file
793 diff --git a/po/fr.po b/po/fr.po
794 index fd28f38..babd28d 100644
795 --- a/po/fr.po
796 +++ b/po/fr.po
797 @@ -2135,3 +2135,6 @@ msgstr "Fermer _la fenêtre"
798
799 #~ msgid "Use _dark theme variant"
800 #~ msgstr "Utiliser une variante de thème _foncée"
801 +
802 +msgid "Transparent background"
803 +msgstr "Arrière-plan transparent"
804 diff --git a/po/fur.po b/po/fur.po
805 index 5a20170..8c3daaf 100644
806 --- a/po/fur.po
807 +++ b/po/fur.po
808 @@ -580,8 +580,8 @@ msgid "_Text color:"
809 msgstr "Colôr dal _test:"
810
811 #: ../src/gnome-terminal.glade2.h:86
812 -msgid "_Transparent background"
813 -msgstr "Fondâl _trasparent"
814 +msgid "Transparent background"
815 +msgstr "Fondâl trasparent"
816
817 #: ../src/gnome-terminal.glade2.h:87
818 msgid "_Update login records when command is launched"
819 diff --git a/po/ga.po b/po/ga.po
820 index 93d5fa9..feb87dc 100644
821 --- a/po/ga.po
822 +++ b/po/ga.po
823 @@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog"
824 #: ../src/terminal-window.c:3582
825 msgid "C_lose Terminal"
826 msgstr "_Dún Teirminéal"
827 +
828 +msgid "Transparent background"
829 +msgstr "Cúlra trédhearcach"
830 diff --git a/po/gl.po b/po/gl.po
831 index 1429c66..6820190 100644
832 --- a/po/gl.po
833 +++ b/po/gl.po
834 @@ -3055,8 +3055,8 @@ msgstr "P_echar a xanela"
835 #~ msgid "Background image _scrolls"
836 #~ msgstr "A imaxe de fondo _desprázase"
837
838 -#~ msgid "_Transparent background"
839 -#~ msgstr "Fondo _transparente"
840 +msgid "Transparent background"
841 +msgstr "Fondo transparente"
842
843 #~ msgid "S_hade transparent or image background:"
844 #~ msgstr "_Sombra transparente ou imaxe de fondo:"
845 diff --git a/po/gu.po b/po/gu.po
846 index 0bcb195..f72a807 100644
847 --- a/po/gu.po
848 +++ b/po/gu.po
849 @@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)"
850 #~ msgid "_Solid color"
851 #~ msgstr "ઘટ્ટ રંગ (_S)"
852
853 -#~ msgid "_Transparent background"
854 -#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)"
855 +msgid "Transparent background"
856 +msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ"
857
858 #~ msgid "No such profile \"%s\", using default profile\n"
859 #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n"
860 diff --git a/po/he.po b/po/he.po
861 index 0d9dfe0..ff4cc33 100644
862 --- a/po/he.po
863 +++ b/po/he.po
864 @@ -3007,8 +3007,8 @@ msgstr "סגירת ה_חלון"
865 #~ msgid "_Solid color"
866 #~ msgstr "צבע _אחיד"
867
868 -#~ msgid "_Transparent background"
869 -#~ msgstr "רקע _שקוף"
870 +msgid "Transparent background"
871 +msgstr "רקע שקוף"
872
873 #~ msgid "No such profile \"%s\", using default profile\n"
874 #~ msgstr "No such profile \"%s\", using default profile\n"
875 diff --git a/po/hi.po b/po/hi.po
876 index 2d7dc5b..adf8d35 100644
877 --- a/po/hi.po
878 +++ b/po/hi.po
879 @@ -2979,8 +2979,8 @@ msgstr "विंडो बंद करें (_l)"
880 #~ msgid "_Background image"
881 #~ msgstr "पृष्ठभूमि छवि (_B)"
882
883 -#~ msgid "_Transparent background"
884 -#~ msgstr "पारदर्शी पृष्ठभूमि (_T)"
885 +msgid "Transparent background"
886 +msgstr "पारदर्शी पृष्ठभूमि"
887
888 #~ msgid "S/Key Challenge Response"
889 #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया"
890 diff --git a/po/hr.po b/po/hr.po
891 index cb48c52..747cf48 100644
892 --- a/po/hr.po
893 +++ b/po/hr.po
894 @@ -1362,8 +1362,8 @@ msgid "_Text color:"
895 msgstr "_Boja teksta:"
896
897 #: ../src/profile-preferences.glade.h:69
898 -msgid "_Transparent background"
899 -msgstr "_Prozirna pozadina"
900 +msgid "Transparent background"
901 +msgstr "Prozirna pozadina"
902
903 #: ../src/profile-preferences.glade.h:70
904 msgid "_Update login records when command is launched"
905 diff --git a/po/hu.po b/po/hu.po
906 index ad585ef..b9a481b 100644
907 --- a/po/hu.po
908 +++ b/po/hu.po
909 @@ -2509,3 +2509,6 @@ msgstr "_Ablak bezárása"
910
911 #~ msgid "Background type"
912 #~ msgstr "Háttér típusa"
913 +
914 +msgid "Transparent background"
915 +msgstr "Áttetsző háttér"
916 diff --git a/po/hy.po b/po/hy.po
917 index 5584901..caadbba 100644
918 --- a/po/hy.po
919 +++ b/po/hy.po
920 @@ -1011,8 +1011,8 @@ msgid "_Text color:"
921 msgstr "_Տեքստի գույնը՝"
922
923 #: ../src/profile-preferences.glade.h:73
924 -msgid "_Transparent background"
925 -msgstr "_Թափանցիկ նախադրյալ"
926 +msgid "Transparent background"
927 +msgstr "Թափանցիկ նախադրյալ"
928
929 #: ../src/profile-preferences.glade.h:74
930 msgid "_Update login records when command is launched"
931 diff --git a/po/id.po b/po/id.po
932 index 346b5d8..2448444 100644
933 --- a/po/id.po
934 +++ b/po/id.po
935 @@ -2068,3 +2068,6 @@ msgstr ""
936 #: ../src/terminal-window.c:3652
937 msgid "C_lose Window"
938 msgstr "Tutup Jende_la"
939 +
940 +msgid "Transparent background"
941 +msgstr "Latar belakang transparan"
942 diff --git a/po/it.po b/po/it.po
943 index 5a1847f..2eb1d62 100644
944 --- a/po/it.po
945 +++ b/po/it.po
946 @@ -2093,3 +2093,6 @@ msgstr ""
947 #: ../src/terminal-window.c:3652
948 msgid "C_lose Window"
949 msgstr "Chiudi _finestra"
950 +
951 +msgid "Transparent background"
952 +msgstr "Sfondo trasparente"
953 diff --git a/po/ja.po b/po/ja.po
954 index 4f8f4de..ce2ec95 100644
955 --- a/po/ja.po
956 +++ b/po/ja.po
957 @@ -1902,3 +1902,6 @@ msgstr "この端末には未だ実行中のプロセスが存在しています
958 #: ../src/terminal-window.c:3652
959 msgid "C_lose Window"
960 msgstr "ウィンドウを閉じる(_L)"
961 +
962 +msgid "Transparent background"
963 +msgstr "透過な画像にする"
964 diff --git a/po/ka.po b/po/ka.po
965 index 8415e88..3717b7e 100644
966 --- a/po/ka.po
967 +++ b/po/ka.po
968 @@ -568,7 +568,7 @@ msgstr "_ტექსტის ფერი:"
969
970 #: ../src/gnome-terminal.glade2.h:86
971 #, fuzzy
972 -msgid "_Transparent background"
973 +msgid "Transparent background"
974 msgstr "გამჭირვალე"
975
976 #: ../src/gnome-terminal.glade2.h:87
977 diff --git a/po/kk.po b/po/kk.po
978 index dba7503..f7ac993 100644
979 --- a/po/kk.po
980 +++ b/po/kk.po
981 @@ -2030,3 +2030,6 @@ msgstr "Терезені жа_бу"
982
983 #~ msgid "Be quiet"
984 #~ msgstr "Тыныш болу"
985 +
986 +msgid "Transparent background"
987 +msgstr "Мөлдір фон"
988 diff --git a/po/kn.po b/po/kn.po
989 index c887f88..e899ef3 100644
990 --- a/po/kn.po
991 +++ b/po/kn.po
992 @@ -2344,3 +2344,6 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)"
993
994 #~ msgid "_Title:"
995 #~ msgstr "ಶೀರ್ಷಿಕೆ(_T):"
996 +
997 +msgid "Transparent background"
998 +msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ"
999 diff --git a/po/ko.po b/po/ko.po
1000 index 0700e25..912e940 100644
1001 --- a/po/ko.po
1002 +++ b/po/ko.po
1003 @@ -2078,3 +2078,6 @@ msgstr "창 닫기(_L)"
1004
1005 #~ msgid "Use _dark theme variant"
1006 #~ msgstr "어두운 테마 사용(_D)"
1007 +
1008 +msgid "Transparent background"
1009 +msgstr "투명한 배경"
1010 diff --git a/po/ku.po b/po/ku.po
1011 index 221825b..96e3581 100644
1012 --- a/po/ku.po
1013 +++ b/po/ku.po
1014 @@ -557,8 +557,8 @@ msgid "_Text color:"
1015 msgstr "Rengê _nivîsê:"
1016
1017 #: ../src/gnome-terminal.glade2.h:86
1018 -msgid "_Transparent background"
1019 -msgstr "Rûerdê _transparan"
1020 +msgid "Transparent background"
1021 +msgstr "Rûerdê transparan"
1022
1023 #: ../src/gnome-terminal.glade2.h:87
1024 msgid "_Update login records when command is launched"
1025 diff --git a/po/lt.po b/po/lt.po
1026 index 294482b..c0ec0cf 100644
1027 --- a/po/lt.po
1028 +++ b/po/lt.po
1029 @@ -2082,3 +2082,6 @@ msgstr "_Užverti langą"
1030
1031 #~ msgid "Use _dark theme variant"
1032 #~ msgstr "Nau_doti tamsų temos variantą"
1033 +
1034 +msgid "Transparent background"
1035 +msgstr "Permatomas fonas"
1036 diff --git a/po/lv.po b/po/lv.po
1037 index a50f529..b29541f 100644
1038 --- a/po/lv.po
1039 +++ b/po/lv.po
1040 @@ -3016,8 +3016,8 @@ msgstr "Aizvērt _logu"
1041 #~ msgid "Background image _scrolls"
1042 #~ msgstr "Fona attēla ritināšanā_s"
1043
1044 -#~ msgid "_Transparent background"
1045 -#~ msgstr "_Caurspīdīgs fons"
1046 +msgid "Transparent background"
1047 +msgstr "Caurspīdīgs fons"
1048
1049 #~ msgid "S_hade transparent or image background:"
1050 #~ msgstr "_Aizēnot caurspīdīgo vai attēla fonu:"
1051 diff --git a/po/mai.po b/po/mai.po
1052 index 9b984a0..a3c0e17 100644
1053 --- a/po/mai.po
1054 +++ b/po/mai.po
1055 @@ -1290,8 +1290,8 @@ msgid "_Text color:"
1056 msgstr "पाठ रँग (_T):"
1057
1058 #: ../src/profile-preferences.glade.h:69
1059 -msgid "_Transparent background"
1060 -msgstr "पारदर्शी पृष्ठभूमि (_T)"
1061 +msgid "Transparent background"
1062 +msgstr "पारदर्शी पृष्ठभूमि"
1063
1064 #: ../src/profile-preferences.glade.h:70
1065 msgid "_Update login records when command is launched"
1066 diff --git a/po/mg.po b/po/mg.po
1067 index 1c1895c..a805417 100644
1068 --- a/po/mg.po
1069 +++ b/po/mg.po
1070 @@ -566,8 +566,8 @@ msgid "_Text color:"
1071 msgstr "Lokon'ny _soratra:"
1072
1073 #: ../src/gnome-terminal.glade2.h:86
1074 -msgid "_Transparent background"
1075 -msgstr "_Afara tatera-pahazavana"
1076 +msgid "Transparent background"
1077 +msgstr "Afara tatera-pahazavana"
1078
1079 #: ../src/gnome-terminal.glade2.h:87
1080 msgid "_Update login records when command is launched"
1081 diff --git a/po/mk.po b/po/mk.po
1082 index e31378a..d2b74d4 100644
1083 --- a/po/mk.po
1084 +++ b/po/mk.po
1085 @@ -1166,8 +1166,8 @@ msgid "_Text color:"
1086 msgstr "_Боја на текстот:"
1087
1088 #: ../src/profile-preferences.glade.h:77
1089 -msgid "_Transparent background"
1090 -msgstr "_Транспарентна позадина"
1091 +msgid "Transparent background"
1092 +msgstr "Транспарентна позадина"
1093
1094 #: ../src/profile-preferences.glade.h:78
1095 #| msgid "_Text color:"
1096 diff --git a/po/ml.po b/po/ml.po
1097 index cc1928d..62abd21 100644
1098 --- a/po/ml.po
1099 +++ b/po/ml.po
1100 @@ -2751,8 +2751,8 @@ msgstr "ടെര്‍മിനല്‍ അ_ടയ്ക്കുക"
1101 #~ msgid "_Solid color"
1102 #~ msgstr "_സോളിഡ് നിറം"
1103
1104 -#~ msgid "_Transparent background"
1105 -#~ msgstr "_പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
1106 +msgid "Transparent background"
1107 +msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം"
1108
1109 #~ msgid "S/Key Challenge Response"
1110 #~ msgstr "S/Key ചാലഞ്ച് മറുപടി"
1111 diff --git a/po/mn.po b/po/mn.po
1112 index 4922041..9696b7f 100644
1113 --- a/po/mn.po
1114 +++ b/po/mn.po
1115 @@ -617,8 +617,8 @@ msgid "_Text color:"
1116 msgstr "_Текстийн өнгө:"
1117
1118 #: ../src/gnome-terminal.glade2.h:102
1119 -msgid "_Transparent background"
1120 -msgstr "_Тунгалаг дэвсгэр"
1121 +msgid "Transparent background"
1122 +msgstr "Тунгалаг дэвсгэр"
1123
1124 #: ../src/gnome-terminal.glade2.h:103
1125 msgid "_Update login records when command is launched"
1126 diff --git a/po/mr.po b/po/mr.po
1127 index 61997da..50451d7 100644
1128 --- a/po/mr.po
1129 +++ b/po/mr.po
1130 @@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)"
1131 #~ msgid "_Solid color"
1132 #~ msgstr "गडद रंग (_S)"
1133
1134 -#~ msgid "_Transparent background"
1135 -#~ msgstr "पारदर्शी पार्श्वभूमी(_T)"
1136 +msgid "Transparent background"
1137 +msgstr "पारदर्शी पार्श्वभूमी"
1138
1139 #~ msgid "Disabled"
1140 #~ msgstr "अकार्यान्वीतित"
1141 diff --git a/po/ms.po b/po/ms.po
1142 index 5b663aa..38a2afe 100644
1143 --- a/po/ms.po
1144 +++ b/po/ms.po
1145 @@ -630,8 +630,8 @@ msgid "_Text color:"
1146 msgstr "Warna _Teks:"
1147
1148 #: ../src/gnome-terminal.glade2.h:102
1149 -msgid "_Transparent background"
1150 -msgstr "LatarBelakang _Telus"
1151 +msgid "Transparent background"
1152 +msgstr "LatarBelakang Telus"
1153
1154 #: ../src/gnome-terminal.glade2.h:103
1155 msgid "_Update login records when command is launched"
1156 diff --git a/po/nb.po b/po/nb.po
1157 index c14ae58..f5a590e 100644
1158 --- a/po/nb.po
1159 +++ b/po/nb.po
1160 @@ -2054,3 +2054,6 @@ msgstr ""
1161 #: ../src/terminal-window.c:3652
1162 msgid "C_lose Window"
1163 msgstr "_Lukk vindu"
1164 +
1165 +msgid "Transparent background"
1166 +msgstr "Gjennomsiktig bakgrunn"
1167 diff --git a/po/nds.po b/po/nds.po
1168 index 98a1287..94fd757 100644
1169 --- a/po/nds.po
1170 +++ b/po/nds.po
1171 @@ -995,8 +995,8 @@ msgid "_Text color:"
1172 msgstr "_Textklöör:"
1173
1174 #: ../src/profile-preferences.glade.h:73
1175 -msgid "_Transparent background"
1176 -msgstr "_Döörschienenachtergrund:"
1177 +msgid "Transparent background"
1178 +msgstr "Döörschienenachtergrund:"
1179
1180 #: ../src/profile-preferences.glade.h:74
1181 msgid "_Update login records when command is launched"
1182 diff --git a/po/ne.po b/po/ne.po
1183 index 4fe16cc..d9a90ad 100644
1184 --- a/po/ne.po
1185 +++ b/po/ne.po
1186 @@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्"
1187 #~ msgid "_None (use solid color)"
1188 #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)"
1189
1190 -#~ msgid "_Transparent background"
1191 -#~ msgstr "पारदर्शी पृष्ठभूमि"
1192 +msgid "Transparent background"
1193 +msgstr "पारदर्शी पृष्ठभूमि"
1194
1195 #~ msgid "_Use the system fixed width font"
1196 #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्"
1197 diff --git a/po/nl.po b/po/nl.po
1198 index a51720b..111b032 100644
1199 --- a/po/nl.po
1200 +++ b/po/nl.po
1201 @@ -2352,3 +2352,6 @@ msgstr "Venster sl_uiten"
1202
1203 #~ msgid "Switch to Tab 12"
1204 #~ msgstr "Ga naar tab 12"
1205 +
1206 +msgid "Transparent background"
1207 +msgstr "Transparante achtergrond"
1208 diff --git a/po/nn.po b/po/nn.po
1209 index 91cd6ab..9284459 100644
1210 --- a/po/nn.po
1211 +++ b/po/nn.po
1212 @@ -1428,8 +1428,8 @@ msgid "_Text color:"
1213 msgstr "_Tekstfarge:"
1214
1215 #: ../src/profile-preferences.glade.h:73
1216 -msgid "_Transparent background"
1217 -msgstr "_Gjennomskinleg bakgrunn"
1218 +msgid "Transparent background"
1219 +msgstr "Gjennomskinleg bakgrunn"
1220
1221 #: ../src/profile-preferences.glade.h:74
1222 msgid "_Update login records when command is launched"
1223 diff --git a/po/oc.po b/po/oc.po
1224 index 5e7ca58..3bd9991 100644
1225 --- a/po/oc.po
1226 +++ b/po/oc.po
1227 @@ -1285,8 +1285,8 @@ msgid "_Text color:"
1228 msgstr "Color del _tèxt :"
1229
1230 #: ../src/profile-preferences.glade.h:78
1231 -msgid "_Transparent background"
1232 -msgstr "Fons _transparent"
1233 +msgid "Transparent background"
1234 +msgstr "Fons transparent"
1235
1236 #: ../src/profile-preferences.glade.h:79
1237 msgid "_Underline color:"
1238 diff --git a/po/or.po b/po/or.po
1239 index ec1e6bf..218acd7 100644
1240 --- a/po/or.po
1241 +++ b/po/or.po
1242 @@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):"
1243 #~ msgid "Background image _scrolls"
1244 #~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)"
1245
1246 -#~ msgid "_Transparent background"
1247 -#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)"
1248 +msgid "Transparent background"
1249 +msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି"
1250
1251 #~ msgid "S_hade transparent or image background:"
1252 #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):"
1253 diff --git a/po/pa.po b/po/pa.po
1254 index 9c95b66..5e5b8ba 100644
1255 --- a/po/pa.po
1256 +++ b/po/pa.po
1257 @@ -3008,8 +3008,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)"
1258 #~ msgid "_Solid color"
1259 #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)"
1260
1261 -#~ msgid "_Transparent background"
1262 -#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)"
1263 +msgid "Transparent background"
1264 +msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ"
1265
1266 #~ msgid "S/Key Challenge Response"
1267 #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ"
1268 diff --git a/po/pl.po b/po/pl.po
1269 index deb91b7..f772171 100644
1270 --- a/po/pl.po
1271 +++ b/po/pl.po
1272 @@ -2116,3 +2116,6 @@ msgid ""
1273 msgstr ""
1274 "Wartość między 0 a 100, gdzie 0 oznacza nieprzezroczystość, a 100 oznacza "
1275 "całkowitą przezroczystość."
1276 +
1277 +msgid "Transparent background"
1278 +msgstr "Przezroczyste tło"
1279 diff --git a/po/ps.po b/po/ps.po
1280 index b1de52c..a16ac49 100644
1281 --- a/po/ps.po
1282 +++ b/po/ps.po
1283 @@ -1052,8 +1052,8 @@ msgid "_Text color:"
1284 msgstr ":د ليکنې رنګ_"
1285
1286 #: ../src/profile-preferences.glade.h:69
1287 -msgid "_Transparent background"
1288 -msgstr "روڼ شاليد_"
1289 +msgid "Transparent background"
1290 +msgstr "روڼ شاليد"
1291
1292 #: ../src/profile-preferences.glade.h:70
1293 msgid "_Update login records when command is launched"
1294 diff --git a/po/pt.po b/po/pt.po
1295 index 68bb2dd..9078dcb 100644
1296 --- a/po/pt.po
1297 +++ b/po/pt.po
1298 @@ -2948,8 +2948,8 @@ msgstr "_Fechar janela"
1299 #~ msgid "Background image _scrolls"
1300 #~ msgstr "Imagem de fundo _rola"
1301
1302 -#~ msgid "_Transparent background"
1303 -#~ msgstr "Fundo _transparente"
1304 +msgid "Transparent background"
1305 +msgstr "Fundo transparente"
1306
1307 #~ msgid "S_hade transparent or image background:"
1308 #~ msgstr "Transparente som_breado ou imagem de fundo:"
1309 diff --git a/po/pt_BR.po b/po/pt_BR.po
1310 index 8fac135..b79275c 100644
1311 --- a/po/pt_BR.po
1312 +++ b/po/pt_BR.po
1313 @@ -2865,3 +2865,6 @@ msgstr "_Fechar janela"
1314 #~ "poderão usar. Essa é a paleta, na forma de uma lista de nomes de cores "
1315 #~ "separada por dois pontos. Os nomes de cores devem estar no formato "
1316 #~ "hexadecimal. Exemplo: \"#FF00FF\""
1317 +
1318 +msgid "Transparent background"
1319 +msgstr "Fundo transparente"
1320 diff --git a/po/ro.po b/po/ro.po
1321 index 179dd77..f7fc7ae 100644
1322 --- a/po/ro.po
1323 +++ b/po/ro.po
1324 @@ -1576,8 +1576,8 @@ msgid "_Text color:"
1325 msgstr "Culoare _text:"
1326
1327 #: ../src/profile-preferences.glade.h:77
1328 -msgid "_Transparent background"
1329 -msgstr "Fundal _transparent"
1330 +msgid "Transparent background"
1331 +msgstr "Fundal transparent"
1332
1333 #: ../src/profile-preferences.glade.h:78
1334 msgid "_Underline color:"
1335 diff --git a/po/ru.po b/po/ru.po
1336 index 01d1683..672ab01 100644
1337 --- a/po/ru.po
1338 +++ b/po/ru.po
1339 @@ -2073,3 +2073,6 @@ msgstr ""
1340 #: ../src/terminal-window.c:3652
1341 msgid "C_lose Window"
1342 msgstr "_Закрыть окно"
1343 +
1344 +msgid "Transparent background"
1345 +msgstr "Прозрачный фон"
1346 diff --git a/po/rw.po b/po/rw.po
1347 index 3f02231..b7fff4c 100644
1348 --- a/po/rw.po
1349 +++ b/po/rw.po
1350 @@ -748,7 +748,7 @@ msgstr "Ibara ry'Inyandiko..."
1351
1352 #: ../src/gnome-terminal.glade2.h:102
1353 #, fuzzy
1354 -msgid "_Transparent background"
1355 +msgid "Transparent background"
1356 msgstr "Mbuganyuma"
1357
1358 #: ../src/gnome-terminal.glade2.h:103
1359 diff --git a/po/si.po b/po/si.po
1360 index 81dbf65..5cb0e5a 100644
1361 --- a/po/si.po
1362 +++ b/po/si.po
1363 @@ -537,8 +537,8 @@ msgid "_Text color:"
1364 msgstr "පෙළ වර්‍ණ: (_T)"
1365
1366 #: ../src/gnome-terminal.glade2.h:86
1367 -msgid "_Transparent background"
1368 -msgstr "විනිවිද පෙනෙන පසුබිම (_T)"
1369 +msgid "Transparent background"
1370 +msgstr "විනිවිද පෙනෙන පසුබිම"
1371
1372 #: ../src/gnome-terminal.glade2.h:87
1373 msgid "_Update login records when command is launched"
1374 diff --git a/po/sk.po b/po/sk.po
1375 index 9bef0bf..52e4af2 100644
1376 --- a/po/sk.po
1377 +++ b/po/sk.po
1378 @@ -2354,3 +2354,6 @@ msgstr "_Zavrieť okno"
1379 #~ "\n"
1380 #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --"
1381 #~ "help“.\n"
1382 +
1383 +msgid "Transparent background"
1384 +msgstr "Priehľadné pozadie"
1385 diff --git a/po/sl.po b/po/sl.po
1386 index 3a7ee4a..4f6ce0d 100644
1387 --- a/po/sl.po
1388 +++ b/po/sl.po
1389 @@ -2316,3 +2316,6 @@ msgstr "_Zapri okno"
1390
1391 #~ msgid "_Profile Preferences…"
1392 #~ msgstr "Možnosti _profila ..."
1393 +
1394 +msgid "Transparent background"
1395 +msgstr "Prosojno ozadje"
1396 diff --git a/po/sq.po b/po/sq.po
1397 index e59c0b6..6fb4090 100644
1398 --- a/po/sq.po
1399 +++ b/po/sq.po
1400 @@ -567,8 +567,8 @@ msgstr "Ngjyra e _tekstit:"
1401
1402 # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
1403 #: ../src/gnome-terminal.glade2.h:85
1404 -msgid "_Transparent background"
1405 -msgstr "Sfond _Trasparent"
1406 +msgid "Transparent background"
1407 +msgstr "Sfond Trasparent"
1408
1409 #: ../src/gnome-terminal.glade2.h:86
1410 msgid "_Update login records when command is launched"
1411 diff --git a/po/sr.po b/po/sr.po
1412 index fce0f63..22f129a 100644
1413 --- a/po/sr.po
1414 +++ b/po/sr.po
1415 @@ -2230,3 +2230,6 @@ msgstr "_Затвори прозор"
1416
1417 #~ msgid "Close Window"
1418 #~ msgstr "Затвори прозор"
1419 +
1420 +msgid "Transparent background"
1421 +msgstr "Провидна позадина"
1422 diff --git a/po/[email protected] b/po/[email protected]
1423 index c82646c..55f6a0e 100644
1424 --- a/po/[email protected]
1425 +++ b/po/[email protected]
1426 @@ -2230,3 +2230,6 @@ msgstr "_Zatvori prozor"
1427
1428 #~ msgid "Close Window"
1429 #~ msgstr "Zatvori prozor"
1430 +
1431 +msgid "Transparent background"
1432 +msgstr "Providna pozadina"
1433 diff --git a/po/sv.po b/po/sv.po
1434 index 8f64ba2..b0d6fcb 100644
1435 --- a/po/sv.po
1436 +++ b/po/sv.po
1437 @@ -2080,5 +2080,8 @@ msgstr "Stän_g fönster"
1438 #~ msgid "Unknown completion request for \"%s\""
1439 #~ msgstr "Okänd kompletteringsbegäran för \"%s\""
1440
1441 +msgid "Transparent background"
1442 +msgstr "Genomskinlig bakgrund"
1443 +
1444 #~ msgid "Missing command"
1445 #~ msgstr "Kommando saknas"
1446 diff --git a/po/ta.po b/po/ta.po
1447 index 80aa2f6..61185b4 100644
1448 --- a/po/ta.po
1449 +++ b/po/ta.po
1450 @@ -3028,8 +3028,8 @@ msgstr "_l சாளரத்தை மூடவும்"
1451 #~ msgid "_Solid color"
1452 #~ msgstr "(_S) ஒரே வண்ணம்"
1453
1454 -#~ msgid "_Transparent background"
1455 -#~ msgstr "_T புலப்பாடு பின்னணி"
1456 +msgid "Transparent background"
1457 +msgstr "புலப்பாடு பின்னணி"
1458
1459 #~ msgid "No such profile \"%s\", using default profile\n"
1460 #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n"
1461 diff --git a/po/te.po b/po/te.po
1462 index 000cda3..6dcf793 100644
1463 --- a/po/te.po
1464 +++ b/po/te.po
1465 @@ -2898,8 +2898,8 @@ msgstr "కిటికీని మూసివేయి (_l)"
1466 #~ msgid "Background image _scrolls"
1467 #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)"
1468
1469 -#~ msgid "_Transparent background"
1470 -#~ msgstr "పారదర్శక నేపథ్యం (_T)"
1471 +msgid "Transparent background"
1472 +msgstr "పారదర్శక నేపథ్యం"
1473
1474 #~ msgid "S_hade transparent or image background:"
1475 #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):"
1476 diff --git a/po/th.po b/po/th.po
1477 index be9b0cb..482907f 100644
1478 --- a/po/th.po
1479 +++ b/po/th.po
1480 @@ -2616,8 +2616,8 @@ msgstr "ปิ_ดหน้าต่าง"
1481 #~ msgid "_Solid color"
1482 #~ msgstr "สี_ทึบ"
1483
1484 -#~ msgid "_Transparent background"
1485 -#~ msgstr "พื้นหลังโปร่งแ_สง"
1486 +msgid "Transparent background"
1487 +msgstr "พื้นหลังโปร่งแสง"
1488
1489 #~ msgid ""
1490 #~ "You already have a profile called “%s”. Do you want to create another "
1491 diff --git a/po/tr.po b/po/tr.po
1492 index 02a704a..78f26ba 100644
1493 --- a/po/tr.po
1494 +++ b/po/tr.po
1495 @@ -1968,3 +1968,6 @@ msgstr "Hala bir süreç bu uçbirimde çalışıyor. Uçbirimi kapatmak onu son
1496 #: ../src/terminal-window.c:3652
1497 msgid "C_lose Window"
1498 msgstr "_Pencereyi Kapat"
1499 +
1500 +msgid "Transparent background"
1501 +msgstr "Şeffaf arkaplan"
1502 diff --git a/po/ug.po b/po/ug.po
1503 index 1673bb3..e21e61e 100644
1504 --- a/po/ug.po
1505 +++ b/po/ug.po
1506 @@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):"
1507 #~ msgid "_Solid color"
1508 #~ msgstr "ساپ رەڭ(_S)"
1509
1510 -#~ msgid "_Transparent background"
1511 -#~ msgstr "سۈزۈك تەگلىك(_T)"
1512 +msgid "Transparent background"
1513 +msgstr "سۈزۈك تەگلىك"
1514
1515 #~ msgid ""
1516 #~ "You already have a profile called “%s”. Do you want to create another "
1517 diff --git a/po/uk.po b/po/uk.po
1518 index a8db018..414c413 100644
1519 --- a/po/uk.po
1520 +++ b/po/uk.po
1521 @@ -2946,8 +2946,8 @@ msgstr "Закр_ити вікно"
1522 #~ msgid "_Solid color"
1523 #~ msgstr "_Суцільний колір"
1524
1525 -#~ msgid "_Transparent background"
1526 -#~ msgstr "П_розоре тло"
1527 +msgid "Transparent background"
1528 +msgstr "Прозоре тло"
1529
1530 #~ msgid "Switch to Tab 2"
1531 #~ msgstr "До вкладки 2"
1532 diff --git a/po/vi.po b/po/vi.po
1533 index e943917..87846ac 100644
1534 --- a/po/vi.po
1535 +++ b/po/vi.po
1536 @@ -2671,3 +2671,6 @@ msgstr "Đón_g cửa sổ"
1537 #~ "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 "
1538 #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị "
1539 #~ "tắt), nghĩa là không có phím tắt cho hành động này."
1540 +
1541 +msgid "Transparent background"
1542 +msgstr "Nền trong suốt"
1543 diff --git a/po/wa.po b/po/wa.po
1544 index 2856571..f068531 100644
1545 --- a/po/wa.po
1546 +++ b/po/wa.po
1547 @@ -563,8 +563,8 @@ msgid "_Text color:"
1548 msgstr "Coleur pol _tecse:"
1549
1550 #: ../src/gnome-terminal.glade2.h:86
1551 -msgid "_Transparent background"
1552 -msgstr "Fond k' on voet _houte"
1553 +msgid "Transparent background"
1554 +msgstr "Fond k' on voet houte"
1555
1556 #: ../src/gnome-terminal.glade2.h:87
1557 msgid "_Update login records when command is launched"
1558 diff --git a/po/xh.po b/po/xh.po
1559 index e5981c6..7f9f804 100644
1560 --- a/po/xh.po
1561 +++ b/po/xh.po
1562 @@ -620,8 +620,8 @@ msgid "_Text color:"
1563 msgstr "_Umbala wombhalo:"
1564
1565 #: ../src/gnome-terminal.glade2.h:102
1566 -msgid "_Transparent background"
1567 -msgstr "_Okungasemva okucace gca"
1568 +msgid "Transparent background"
1569 +msgstr "Okungasemva okucace gca"
1570
1571 #: ../src/gnome-terminal.glade2.h:103
1572 msgid "_Update login records when command is launched"
1573 diff --git a/po/zh_CN.po b/po/zh_CN.po
1574 index b18a9e7..287db04 100644
1575 --- a/po/zh_CN.po
1576 +++ b/po/zh_CN.po
1577 @@ -2280,3 +2280,6 @@ msgstr "关闭窗口(_L)"
1578
1579 #~ msgid "_Find..."
1580 #~ msgstr "查找(_F)..."
1581 +
1582 +msgid "Transparent background"
1583 +msgstr "透明背景"
1584 diff --git a/po/zh_HK.po b/po/zh_HK.po
1585 index eb0ede7..aceb184 100644
1586 --- a/po/zh_HK.po
1587 +++ b/po/zh_HK.po
1588 @@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)"
1589
1590 #~ msgid "Show session management options"
1591 #~ msgstr "顯示作業階段管理選項"
1592 +
1593 +msgid "Transparent background"
1594 +msgstr "透明背景"
1595 diff --git a/po/zh_TW.po b/po/zh_TW.po
1596 index a32a539..f0674dc 100644
1597 --- a/po/zh_TW.po
1598 +++ b/po/zh_TW.po
1599 @@ -2379,3 +2379,6 @@ msgstr "關閉視窗(_L)"
1600
1601 #~ msgid "Show session management options"
1602 #~ msgstr "顯示作業階段管理選項"
1603 +
1604 +msgid "Transparent background"
1605 +msgstr "透明背景"
1606 --
1607 2.1.0
1608