From 1be42c98333cdabe91bf6c142551f0335b7bd911 Mon Sep 17 00:00:00 2001 From: Stefan Siegel Date: Wed, 22 Aug 2001 18:31:40 +0000 Subject: fixed ugly "menus.pm" when lounched as standalone --- menus.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/menus.pm b/menus.pm index fb7ed109..b4482b4a 100755 --- a/menus.pm +++ b/menus.pm @@ -31,8 +31,9 @@ $::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/; my $window = $::isEmbedded ? new Gtk::Plug ($::XID) : new Gtk::Window -toplevel; $window->signal_connect ( delete_event => \&quit_global ); my $vbox = new Gtk::VBox(0,0); +$window->set_title(_("Menu Configuration Center")); $window->add($vbox); -$vbox->pack_start(new Gtk::Label(_("Menu Configuration Center\n\nChoose which menu you want to configure")),0,0,5); +$vbox->pack_start(new Gtk::Label(_("Menu Configuration Center") . _("\n\nChoose which menu you want to configure")),0,0,5); $vbox->pack_start(new Gtk::HSeparator,0,0,5); my $table = new Gtk::Table (3,2, 0); $table->set_border_width(5); -- cgit v1.2.1