blob: a9fa989486175849771494d917b72ca8682e0d84 (
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
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/* Copyright © 2005-2013 Roger Leigh <rleigh@debian.org>
*
* schroot is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* schroot is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*
*********************************************************************/
/**
* @file i18n.h Internationalisation functions. This header
* defines the functions used to mark up and translate strings.
*/
#ifndef SBUILD_I18N_H
#define SBUILD_I18N_H
#include <sbuild/config.h>
#include <string>
#include <libintl.h>
// Undefine macros which would interfere with our functions.
#ifdef gettext
#undef gettext
#endif
#ifdef _
#undef _
#endif
#ifdef gettext_noop
#undef gettext_noop
#endif
#ifdef N_
#undef N_
#endif
namespace sbuild
{
/**
* Get a translated message.
*
* @param message the message to translate.
* @returns the translated message.
*/
inline const char *
gettext (const char *message)
{
return dgettext (SBUILD_MESSAGE_CATALOGUE, message);
}
/**
* Get a translated message.
*
* @param message the message to translate.
* @returns the translated message.
*/
inline const char *
gettext (const std::string& message)
{
return gettext(message.c_str());
}
/**
* Get a translated message. This function is a shorthand for
* gettext, which also marks up the string for translation.
*
* @param message the message to translate.
* @returns the translated message.
*/
inline const char *
_ (const char *message)
{
return gettext (message);
}
/**
* Get a message with no translation.
*
* @param message the message to not translate.
* @returns the message.
*/
inline const char *
gettext_noop (const char *message)
{
return message;
}
/**
* Get a message with no translation. This macro is a shorthand for
* gettext_noop, which also marks up the string for translation.
*
* @param message the message to not translate.
* @returns the message.
*/
inline const char *
N_ (const char *message)
{
return gettext_noop (message);
}
}
#endif /* SBUILD_I18N_H */
/*
* Local Variables:
* mode:C++
* End:
*/
|