summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_list.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-08-29 14:53:27 +0000
committerThierry Vignaud <tv@mandriva.org>2007-08-29 14:53:27 +0000
commitca5618f635de75bbd42bc790dcfaa8a4471b6b58 (patch)
tree47c266b8da0c8d4e6467e8c3c55fe8898f8bb32b /perl-install/install/steps_list.pm
parent383a64c4a05fe08d53e156da475d5a8fbd10fea1 (diff)
downloaddrakx-ca5618f635de75bbd42bc790dcfaa8a4471b6b58.tar
drakx-ca5618f635de75bbd42bc790dcfaa8a4471b6b58.tar.gz
drakx-ca5618f635de75bbd42bc790dcfaa8a4471b6b58.tar.bz2
drakx-ca5618f635de75bbd42bc790dcfaa8a4471b6b58.tar.xz
drakx-ca5618f635de75bbd42bc790dcfaa8a4471b6b58.zip
steps list: make all default banner titles homogenous (by making them
translated later (because translate() would be called before locale binding))
Diffstat (limited to 'perl-install/install/steps_list.pm')
-rw-r--r--perl-install/install/steps_list.pm32
1 files changed, 16 insertions, 16 deletions
diff --git a/perl-install/install/steps_list.pm b/perl-install/install/steps_list.pm
index 8569d0bbe..67b544284 100644
--- a/perl-install/install/steps_list.pm
+++ b/perl-install/install/steps_list.pm
@@ -13,39 +13,39 @@ use common;
my @installSteps = (
selectLanguage => [
#-PO: please keep the following messages very short: they must fit in the left list of the installer!!!
- N_("_: Keep these entry short\nLanguage"), 1, 1, '', '', 'banner-languages', N("Localization") ],
- acceptLicense => [ N_("_: Keep these entry short\nLicense"), 1, -1, '', '', 'banner-license', N("License agreement") ],
- selectMouse => [ N_("_: Keep these entry short\nMouse"), 1, 1, '1', '', 'banner-sys', N("Mouse") ],
+ N_("_: Keep these entry short\nLanguage"), 1, 1, '', '', 'banner-languages', N_("Localization") ],
+ acceptLicense => [ N_("_: Keep these entry short\nLicense"), 1, -1, '', '', 'banner-license', N_("License agreement") ],
+ selectMouse => [ N_("_: Keep these entry short\nMouse"), 1, 1, '1', '', 'banner-sys', N_("Mouse") ],
setupSCSI => [ N_("_: Keep these entry short\nHard drive detection"), 1, 0, '1', '',
'banner-sys', N_("_: Keep these entry short\nHard drive detection") ],
selectInstallClass => [ N_("_: Keep these entry short\nInstallation class"), 1, 1, '1', '',
- 'banner-sys', N("_: Keep these entry short\nInstallation class") ],
- selectKeyboard => [ N_("_: Keep these entry short\nKeyboard"), 1, 1, '1', '', 'banner-languages', N("Localization") ],
- miscellaneous => [ N_("_: Keep these entry short\nSecurity"), 1, 1, '1', '', 'banner-security', N("Security") ],
+ 'banner-sys', N_("_: Keep these entry short\nInstallation class") ],
+ selectKeyboard => [ N_("_: Keep these entry short\nKeyboard"), 1, 1, '1', '', 'banner-languages', N_("Localization") ],
+ miscellaneous => [ N_("_: Keep these entry short\nSecurity"), 1, 1, '1', '', 'banner-security', N_("Security") ],
doPartitionDisks => [ N_("_: Keep these entry short\nPartitioning"), 1, 0, '', "selectInstallClass",
- 'banner-part', N("Partitioning") ],
+ 'banner-part', N_("Partitioning") ],
formatPartitions => [ N_("_: Keep these entry short\nFormatting"), 1, -1, '1', "doPartitionDisks",
'banner-part', N_("_: Keep these entry short\nFormatting") ],
choosePackages => [ N_("_: Keep these entry short\nChoosing packages"), 1, -2, '1', "formatPartitions",
- 'banner-sys', N("Package Group Selection") ],
+ 'banner-sys', N_("Package Group Selection") ],
installPackages => [ N_("_: Keep these entry short\nInstalling"), 1, -1, '', ["formatPartitions", "selectInstallClass"],
- 'banner-sys', N("Installing") ],
+ 'banner-sys', N_("Installing") ],
setRootPassword_addUser
=> [ N_("_: Keep these entry short\nUsers"), 1, 1, '', "installPackages",
- 'banner-pw', N("User management") ],
+ 'banner-pw', N_("User management") ],
configureNetwork => [ N_("_: Keep these entry short\nNetworking"), 1, 1, '1', "formatPartitions",
'banner-bootL', N_("_: Keep these entry short\nNetworking") ],
setupBootloader => [ N_("_: Keep these entry short\nBootloader"), 1, 0, '', "installPackages",
- 'banner-bootL', N("_: Keep these entry short\nBootloader") ],
+ 'banner-bootL', N_("_: Keep these entry short\nBootloader") ],
configureX => [ N_("_: Keep these entry short\nConfigure X"), 1, 1, '1', ["formatPartitions", "setupBootloader"],
- 'banner-bootL', N("_: Keep these entry short\nConfigure X") ],
+ 'banner-bootL', N_("_: Keep these entry short\nConfigure X") ],
summary => [ N_("_: Keep these entry short\nSummary"), 1, 0, '', "installPackages",
- 'banner-summary', N("Summary") ],
+ 'banner-summary', N_("Summary") ],
configureServices => [ N_("_: Keep these entry short\nServices"), 1, 1, '1', "installPackages",
- 'banner-summary', N("_: Keep these entry short\nServices") ],
+ 'banner-summary', N_("_: Keep these entry short\nServices") ],
installUpdates => [ N_("_: Keep these entry short\nUpdates"), 1, 1, '',
- ["installPackages", "configureNetwork", "summary"], 'banner-update', N("Updates") ],
- exitInstall => [ N_("_: Keep these entry short\nExit"), 0, 0, '', '', 'banner-exit', N("Exit") ],
+ ["installPackages", "configureNetwork", "summary"], 'banner-update', N_("Updates") ],
+ exitInstall => [ N_("_: Keep these entry short\nExit"), 0, 0, '', '', 'banner-exit', N_("Exit") ],
);
for (my $i = 0; $i < @installSteps; $i += 2) {
my %h; @h{@installStepsFields} = @{ $installSteps[$i + 1] };