Put metadata near the begin of the sol files, therefore loading set is realy faster
[neverball] / share / i18n.c
1 /*
2  * Copyright (C) 2006 Jean Privat
3  * Part of the Neverball Project http://icculus.org/neverball/
4  *
5  * NEVERBALL is  free software; you can redistribute  it and/or modify
6  * it under the  terms of the GNU General  Public License as published
7  * by the Free  Software Foundation; either version 2  of the License,
8  * or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT  ANY  WARRANTY;  without   even  the  implied  warranty  of
12  * MERCHANTABILITY or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU
13  * General Public License for more details.
14  */
15
16 /* The following declaration is needed to have the putenv function
17  * http://www.gnu.org/software/libc/manual/html_node/Environment-Access.html
18  */
19
20 #define _XOPEN_SOURCE 1
21
22 #include <string.h>
23 #include <locale.h>
24 #include <stdlib.h>
25 #include "i18n.h"
26
27 const char *sgettext(const char *msgid)
28 {
29     const char *msgval = gettext(msgid);
30
31     if (msgval == msgid)
32     {
33         if ((msgval = strrchr(msgid, '^')))
34             msgval++;
35         else
36             msgval = msgid;
37     }
38     return msgval;
39 }
40
41 /*---------------------------------------------------------------------------*/
42
43 #define LANG_NUMBER 4
44
45 const char *language_names[] = {
46     N_("English"),
47     N_("French"),
48     N_("German"),
49     N_("Latvian")
50 };
51 const char *language_codes[] = {"en", "fr", "de", "lv"};
52
53 /*---------------------------------------------------------------------------*/
54
55 void language_init(const char *domain, const char *locale_dir)
56 {
57     setlocale(LC_ALL, "");
58     bindtextdomain(domain, locale_dir);
59     textdomain(domain);
60     bind_textdomain_codeset(domain, "UTF-8");
61 }
62
63 void language_set(int l)
64 {
65     if (l == 0)
66     {
67         /* remove the LANGUAGE env variable */
68         putenv("LANGUAGE");
69     }
70     else
71     {
72         static char e[25];
73
74         /* set the LANGUAGE env variable */
75         strcpy(e, "LANGUAGE=");
76         strncat(e, language_codes[l - 1], 25 - 9);
77         putenv(e);
78     }
79     
80     /* Force to update gettext. */
81     setlocale(LC_ALL, "");
82 }
83
84 int language_count(void)
85 {
86     return LANG_NUMBER;
87 }
88
89 int language_from_code(const char *code)
90 {
91     int i;
92
93     for (i = 0; i < LANG_NUMBER; i++)
94         if (strcmp(language_codes[i], code) == 0)
95             return i + 1;
96
97     return 0;
98 }
99
100 const char *language_get_name(int id)
101 {
102     return id == 0 ? _("System Default") : language_names[id - 1];
103 }
104
105
106 const char *language_get_code(int id)
107 {
108     return id > 0 ? language_codes[id - 1] : "";
109 }
110