1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/*
* This file is a placeholder; to define strings to be translated for
* the HTML page.
*/
char *placeholder[] = {
/* used by the desktop icon */
i18n("Welcome"),
/* title (<title>) of the html */
i18n("Congratulations for choosing Mandrakelinux!"),
/* title (<h1>) of the html page */
i18n("Congratulations for choosing Mandrakelinux!"),
/* */
i18n("We take pride in providing the most user-friendly and full-featured Linux distribution available. We hope it gives you complete satisfaction for many years."),
/*
* From here on; the entries are grouped by 4:
* 0: the url title
* 1: the url itself
* 2: the icon to use
* 3: the paragraph text (including a "%s")
*
*/
/* */
"Mandrakesoft.com",
"http://www.mandrakesoft.com/",
"",
/* placeholer is mandrakesoft.com URL */
i18n("The %s website lets you keep in touch with the publisher of your favorite Linux distribution. It's also a great location for discovering new products and services."),
/* */
i18n("Mandrakeclub.com"),
"http://www.mandrakeclub.com/",
"/usr/share/mdk/indexhtml/mdkclub.png",
/* placeholder is mandrakeclub URL */
i18n("We highly recommend that you join %s to take full advantage of special offers, exclusive privileges and access to hundreds of useful applications."),
/* */
i18n("Mandrakestore.com"),
"http://www.mandrakestore.com/",
"/usr/share/mdk/indexhtml/mdkstore.png",
/* placeholder is mandrakestore URL */
i18n("Get all the latest Mandrakesoft products, services and third-party solutions at %s -- our official online store."),
/* */
"Mandrakeexpert.com",
"http://www.mandrakeexpert.com/",
"/usr/share/mdk/indexhtml/mdkexpert.png",
/* placeholder is mandrakeexpert URL */
i18n("Should you require technical assistance, support incidents may be purchased at Mandrakestore.com where you can also register your official Mandrakelinux pack. Then, just log into %s to receive assistance directly from Mandrakesoft's support team and from the community of users."),
/* */
"www.mandrakelinux.com",
"http://www.mandrakelinux.com/",
"/usr/share/mdk/indexhtml/contribute.png",
/* placeholder is www.mandrakelinux.com URL */
i18n("If you are interested in contributing as a volunteer to the worldwide Open Source Linux project, please select the following link for more info: %s."),
};
|