diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-09-18 11:50:04 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-09-18 11:50:04 +0000 |
commit | c0d8453e131923726d37d7526aafcff7c068c99a (patch) | |
tree | 4f18156e16d941cc91815a49b4b55c1e20cca01f /perl-install/messages.pm | |
parent | 8ad3f15917d7e0a9350accc43a47dcbaf17d6563 (diff) | |
download | drakx-c0d8453e131923726d37d7526aafcff7c068c99a.tar drakx-c0d8453e131923726d37d7526aafcff7c068c99a.tar.gz drakx-c0d8453e131923726d37d7526aafcff7c068c99a.tar.bz2 drakx-c0d8453e131923726d37d7526aafcff7c068c99a.tar.xz drakx-c0d8453e131923726d37d7526aafcff7c068c99a.zip |
(install_completed) split paragraphs
Diffstat (limited to 'perl-install/messages.pm')
-rw-r--r-- | perl-install/messages.pm | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/perl-install/messages.pm b/perl-install/messages.pm index 86f083cdd..8f482188c 100644 --- a/perl-install/messages.pm +++ b/perl-install/messages.pm @@ -107,21 +107,14 @@ may be applicable to you, check your local laws."); } sub install_completed() { -#-PO: keep the double empty lines between sections, this is formatted a la LaTeX -N("Congratulations, installation is complete. -Remove the boot media and press Enter to reboot. - - -For information on fixes which are available for this release of Mageia, -consult the Errata available from: - - -%s - - -Information on configuring your system is available in the post -install chapter of the Official Mageia User's Guide.", -'http://www.mageia.org/'); + join("\n\n\n", + N("Congratulations, installation is complete. +Remove the boot media and press Enter to reboot."), + N("For information on fixes which are available for this release of Mageia, +consult the Errata available from:\n%s", 'http://www.mageia.org/'), + N("Information on configuring your system is available in the post +install chapter of the Official Mageia User's Guide.") + ); } 1; |