summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfigurator.pm
diff options
context:
space:
mode:
authorStefan Siegel <siegel@linux-mandrake.com>2001-04-09 18:12:33 +0000
committerStefan Siegel <siegel@linux-mandrake.com>2001-04-09 18:12:33 +0000
commit7b0022134e62d9220095531bd89917c484434273 (patch)
tree54be541619d67dc5ea3781e75211e1170e9a22e4 /perl-install/Xconfigurator.pm
parent6348be7ee41f0179434538ed0e4a2150bdc3a7b4 (diff)
downloaddrakx-backup-do-not-use-7b0022134e62d9220095531bd89917c484434273.tar
drakx-backup-do-not-use-7b0022134e62d9220095531bd89917c484434273.tar.gz
drakx-backup-do-not-use-7b0022134e62d9220095531bd89917c484434273.tar.bz2
drakx-backup-do-not-use-7b0022134e62d9220095531bd89917c484434273.tar.xz
drakx-backup-do-not-use-7b0022134e62d9220095531bd89917c484434273.zip
fixed i18n bug
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r--perl-install/Xconfigurator.pm14
1 files changed, 7 insertions, 7 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm
index cc8e02817..51d43c985 100644
--- a/perl-install/Xconfigurator.pm
+++ b/perl-install/Xconfigurator.pm
@@ -1335,14 +1335,14 @@ sub main {
}, [
{ format => sub { $_[0][0] }, val => \$f,
list => [
- [ __("Change Monitor") => sub { $o->{monitor} = monitorConfiguration() } ],
- [ __("Change Graphic card") => sub { $o->{card} = cardConfiguration('', 'noauto', $allowFB) } ],
+ [ _("Change Monitor") => sub { $o->{monitor} = monitorConfiguration() } ],
+ [ _("Change Graphic card") => sub { $o->{card} = cardConfiguration('', 'noauto', $allowFB) } ],
if_($::expert,
- [ __("Change Server options") => sub { optionsConfiguration($o) } ]),
- [ __("Change Resolution") => sub { resolutionsConfiguration($o) } ],
- [ __("Show information") => sub { show_info($o) } ],
- [ __("Test again") => sub { $ok = testFinalConfig($o, 1) } ],
- [ __("Quit") => sub { $quit = 1 } ],
+ [ _("Change Server options") => sub { optionsConfiguration($o) } ]),
+ [ _("Change Resolution") => sub { resolutionsConfiguration($o) } ],
+ [ _("Show information") => sub { show_info($o) } ],
+ [ _("Test again") => sub { $ok = testFinalConfig($o, 1) } ],
+ [ _("Quit") => sub { $quit = 1 } ],
],
}
]);