diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-22 11:53:43 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-22 11:53:43 +0000 |
commit | 536bf0ccbf21682f9941fff38a47b0c4fd0881fa (patch) | |
tree | 9edac377eebae4571051b5ec489bf8b8e60840e8 | |
parent | a2da9d04cdaba378ffb645d00a733ac0b98c2116 (diff) | |
download | control-center-536bf0ccbf21682f9941fff38a47b0c4fd0881fa.tar control-center-536bf0ccbf21682f9941fff38a47b0c4fd0881fa.tar.gz control-center-536bf0ccbf21682f9941fff38a47b0c4fd0881fa.tar.bz2 control-center-536bf0ccbf21682f9941fff38a47b0c4fd0881fa.tar.xz control-center-536bf0ccbf21682f9941fff38a47b0c4fd0881fa.zip |
do not try to translate empty string
-rwxr-xr-x | control-center | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/control-center b/control-center index aaf129b6..96ab3c50 100755 --- a/control-center +++ b/control-center @@ -991,7 +991,7 @@ sub about_mdk_cc() { (0, gtkcreate_img("splash_screen_about")) : (1, gtkmodify_font(Gtk2::Label->new(N("Mandrake Control Center %s\n", $version)), 'Bold 24'),), 0, Gtk2::Label->new(N("Copyright (C) 1999-2004 Mandrakesoft SA") . "\n"), 0, Gtk2::HSeparator->new, - 0, Gtk2::Label->new(N("")), + 0, Gtk2::Label->new(""), 1, my $n = Gtk2::Notebook->new, ); |