summaryrefslogtreecommitdiffstats
path: root/perl-install/share/advertising/01-thanks.pl
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-06-12 20:55:54 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-06-12 20:55:54 +0000
commitadacd16f063aa87662388e6810eed86ff659f4a0 (patch)
tree67a42aa069eed695474ee5e8d75f1e4aa329a280 /perl-install/share/advertising/01-thanks.pl
parent4239b13f2b4f972c37141f90a5495e70d454e4fc (diff)
downloaddrakx-backup-do-not-use-adacd16f063aa87662388e6810eed86ff659f4a0.tar
drakx-backup-do-not-use-adacd16f063aa87662388e6810eed86ff659f4a0.tar.gz
drakx-backup-do-not-use-adacd16f063aa87662388e6810eed86ff659f4a0.tar.bz2
drakx-backup-do-not-use-adacd16f063aa87662388e6810eed86ff659f4a0.tar.xz
drakx-backup-do-not-use-adacd16f063aa87662388e6810eed86ff659f4a0.zip
change a bit how strings are passed to advertising system
so that we don't specify absolute x,y positions for each paragraph, ending with overwritten text in some localizations
Diffstat (limited to 'perl-install/share/advertising/01-thanks.pl')
-rw-r--r--perl-install/share/advertising/01-thanks.pl15
1 files changed, 6 insertions, 9 deletions
diff --git a/perl-install/share/advertising/01-thanks.pl b/perl-install/share/advertising/01-thanks.pl
index 814a7f240..9fec70195 100644
--- a/perl-install/share/advertising/01-thanks.pl
+++ b/perl-install/share/advertising/01-thanks.pl
@@ -2,14 +2,11 @@
$width = 556;
$height = 303;
-$icon = 0;
-$icon_dx = 0;
-$icon_dy = 0;
-@data = (
- [ N("Thank you for choosing Mandrake Linux 9.1"), 0, 80, 400, 0, 1],
- [ N("Welcome to the Open Source world."), 0, 110, 400, 0, 0],
- [ N("The success of MandrakeSoft is based upon the principle of Free Software. Your new operating system is the result of collaborative work of the worldwide Linux Community."), 0, 140, 400, 0, 0],
+$y_start = 80;
-# [ 'text', $x, $y, $area_width, $area_height, $bold ],
- );
+$title = N("Thank you for choosing Mandrake Linux 9.1");
+
+@text = (N("Welcome to the Open Source world."),
+ '',
+ N("The success of MandrakeSoft is based upon the principle of Free Software. Your new operating system is the result of collaborative work of the worldwide Linux Community."));