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
@text = ([ N("<b>Find out about our professional services!</b>"), center => 1 ],
' ',
[ N("<b>Professional Support</b>"), center => 1 ],
' ',
N("Includes Server scope and TELNET, NIS, DNS/DDNS, SQUID Server, SYMPA Server, Databases: MySQL and PostgreSQL, LDAP Server, CYRUS-SASL, DHCP, Static Routing, System Initialization Scripts, Network Printers, Basic Security, Basic Backup and <b>Privileged Contact!</b>"),
' ',
N("For more details about support, visit <b>www.mandrakesoft.com/support/scope</b>"));
|