blob: 89df6f91526324c167cd4bc42f4340eabcc38a96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/perl
$width = 556;
$height = 303;
$y_start = 10;
$border = 10; #- for leftish text
# Use <b>text</b> for bold
# @text = ([ N("text to display"), center => 1 ],
@text = ([ N("<b>The Open Source Model</b>"), center => 1 ],
' ',
N("Like all computer programming, open source software <b>requires time and people</b> for development. In order to respect the open source philosophy, Mandrakesoft sells added value products and services to <b>keep improving Mandrakelinux</b>. If you want to <b>support the open source philosophy</b> and the development of Mandrakelinux, <b>please</b> consider buying one of our products or services!"));
|