summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-12-17 15:47:31 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-12-17 15:47:31 +0000
commit7efb3d2ad69d1c8e0cd8b778202988d0f210c2b6 (patch)
tree48eaff0c1c6d8a73961c01c9e7ea001940d2a6f8
parent81ed481418975d127b9138b18136d50f0422ffb5 (diff)
downloadcontrol-center-7efb3d2ad69d1c8e0cd8b778202988d0f210c2b6.tar
control-center-7efb3d2ad69d1c8e0cd8b778202988d0f210c2b6.tar.gz
control-center-7efb3d2ad69d1c8e0cd8b778202988d0f210c2b6.tar.bz2
control-center-7efb3d2ad69d1c8e0cd8b778202988d0f210c2b6.tar.xz
control-center-7efb3d2ad69d1c8e0cd8b778202988d0f210c2b6.zip
no stock items
-rwxr-xr-xcontrol-center8
1 files changed, 4 insertions, 4 deletions
diff --git a/control-center b/control-center
index 9b15cdce..0fd4e95a 100755
--- a/control-center
+++ b/control-center
@@ -317,7 +317,7 @@ my $done;
my @menu_items = (
[ N("/_File"), undef, undef, undef, '<Branch>' ],
- [ N("/_File") . N("/_Quit"), N("<control>Q"), \&quit_global, undef, '<StockItem>', 'gtk-quit' ],
+ [ N("/_File") . N("/_Quit"), N("<control>Q"), \&quit_global, undef, '<StockItem>', N("Quit") ],
[ N("/_Options"), undef, undef, undef, '<Branch>' ],
[ join('', @{$options{show_log}}), undef,
sub {
@@ -401,7 +401,7 @@ my @menu_items = (
[ join('/', $shared_translations{profiles}, ""), undef, undef, undef, '<Separator>' ],
[ N("/_Help"), undef, undef, undef, '<Branch>' ],
- [ N("/_Help").N("/_Help"), undef, sub { fork_("drakhelp --id $help_on_context") }, undef, '<StockItem>', 'gtk-help' ],
+ [ N("/_Help").N("/_Help"), undef, sub { fork_("drakhelp --id $help_on_context") }, undef, '<StockItem>', N("Help") ],
[ N("/_Help").N("/_Report Bug"), undef, sub { fork_("drakbug --report drakconf &") }, undef, '<Item>' ],
[ N("/_Help").N("/_About..."), undef, \&about_mdk_cc, undef, '<Item>' ]
);
@@ -490,7 +490,7 @@ gtkadd($window_global,
0, Gtk2::Label->new(N("Please wait...")),
1, Gtk2::HBox->new(0, 0),
0, gtkadd(gtkset_layout(gtkset_border_width(Gtk2::HButtonBox->new, 10), 'end'),
- gtksignal_connect(Gtk2::Button->new_from_stock('gtk-cancel'), clicked => sub { Glib::Source->remove($timeout) if $timeout; &child_just_exited() }),
+ gtksignal_connect(Gtk2::Button->new_from_stock(N("Cancel")), clicked => sub { Glib::Source->remove($timeout) if $timeout; &child_just_exited() }),
),
),
),
@@ -989,7 +989,7 @@ sub new_dialog {
$dialog->set_position('center-on-parent');
$dialog->set_title($title);
$dialog->action_area->pack_start(gtkadd(Gtk2::HButtonBox->new,
- gtksignal_connect(Gtk2::Button->new_from_stock('gtk-close'), clicked => sub { $dialog->destroy })
+ gtksignal_connect(Gtk2::Button->new(N("Close")), clicked => sub { $dialog->destroy })
),
0,0,0) unless $o_no_button;
gtkset_modal($dialog, 1);