summaryrefslogtreecommitdiffstats
path: root/control-center3
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2001-02-21 16:32:22 +0000
committerPablo Saratxaga <pablo@mandriva.com>2001-02-21 16:32:22 +0000
commit11123010cb05a620b7d7ac721833e21357181eb6 (patch)
treebc3ebb6e96b0d0b86f1f8c9e2a43466895244b06 /control-center3
parent8403125d554c99c7dc65cb7cdb4577542ba3dbbb (diff)
downloadcontrol-center-11123010cb05a620b7d7ac721833e21357181eb6.tar
control-center-11123010cb05a620b7d7ac721833e21357181eb6.tar.gz
control-center-11123010cb05a620b7d7ac721833e21357181eb6.tar.bz2
control-center-11123010cb05a620b7d7ac721833e21357181eb6.tar.xz
control-center-11123010cb05a620b7d7ac721833e21357181eb6.zip
correctected last calls to fontset_load, fixed an English typo and
updated Danish and Serbian files
Diffstat (limited to 'control-center3')
-rwxr-xr-xcontrol-center312
1 files changed, 6 insertions, 6 deletions
diff --git a/control-center3 b/control-center3
index 012428ae..86a0c745 100755
--- a/control-center3
+++ b/control-center3
@@ -80,9 +80,9 @@ my @item_factory_entries = (
[_("/Help/_Report Bug"), undef, 3 ],
[_("/Help/_About..."), undef, 4 ],
[_("/_Extras"), undef, 0, "<Branch>"],
- [_("/_Extras/_Mandrake Security News"), undef, 5],
- [_("/_Extras/_Mandrake Campus"), undef, 6],
- [_("/_Extras/_Mandrake Expert"), undef, 7],
+ [_("/_Extras/Mandrake Security _News"), undef, 5],
+ [_("/_Extras/Mandrake _Campus"), undef, 6],
+ [_("/_Extras/Mandrake _Expert"), undef, 7],
);
my ($accel_group, $item_factory, $box1, $label, $box2);
@@ -186,7 +186,7 @@ sub draw_exposed {
0, 0, 0, 0, 540, 460);
my $style = new Gtk::Style;
my $style_dflt = new Gtk::Style;
- $style->font(Gtk::Gdk::Font->load('-adobe-times-bold-r-normal--25-180-100-100-p-132-iso8859-1'));
+ $style->font(Gtk::Gdk::Font->fontset_load(_("-adobe-times-bold-r-normal--25-*-100-100-p-*-iso8859-*,*-r-*")));
$pix->draw_string($style->font, $darea1->style->black_gc, 50, 130, _("The Mandrake Control Center") );
$pix->draw_string($style_dflt->font, $darea1->style->black_gc, 60, 160, ("The place where you can configure your Mandrake Box") );
@@ -202,13 +202,13 @@ sub draw_exposed {
my $username= POSIX::cuserid();
my $style1 = new Gtk::Style;
- $style1->font(Gtk::Gdk::Font->load('-adobe-times-bold-r-normal--14-100-100-100-p-76-iso8859-1'));
+ $style1->font(Gtk::Gdk::Font->fontset_load(_("-adobe-times-bold-r-normal--14-*-100-100-p-*-iso8859-*,*-r-*")));
my $i=0;
foreach( [_("User:"), $username],
[_("System:"), "$info_tree[0] $info_tree[1] $info_tree[3] $info_tree[4]"],
[_("Hostname:"), $nodename],
- [_("Kernel Version :"), "$release $version"],
+ [_("Kernel Version:"), "$release $version"],
[_("Machine:"), $machine] ) {
$pix->draw_string($style1->font, $darea1->style->black_gc, 50, 190+$i, $_->[0]);
$pix->draw_string($style_dflt->font, $darea1->style->black_gc, 170, 190+$i, $_->[1]);