blob: ca42733010545781f553fe55f96fc6ad144c13a9 (
plain)
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
|
/*
* This file is a placeholder; to define strings to be translated for
* the welcome mail message.
*/
char *placeholder[] = {
/* name appearing in To: */
i18n("Mageia Users"),
/* subject */
i18n("Welcome to Mageia"),
/* */
i18n("Welcome to Mageia!"),
/* mail greeting heading */
i18n("Hello,"),
/* */
i18n("We hope you are totally satisfied with Mageia. Below is a list of useful websites:"),
/* */
"Mageia",
"http://www.mageia.org/",
/* placeholer is mageia.org URL */
i18n("The %s website provides all the details for keeping in touch with the community."),
/* goodbye signature (1st line) */
i18n("Yours Sincerely,"),
/* goodbye signature (2nd line) */
i18n("The Mageia team"),
};
|