]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/international.hh
release: 1.1.29
[lilypond.git] / flower / include / international.hh
1 /*   
2   international.hh -- declare stuff for internationalization
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c)  1997--1999 Jan Nieuwenhuizen <janneke@gnu.org>
7   
8  */
9
10 #ifndef INTERNATIONAL_HH
11 #define INTERNATIONAL_HH
12
13 #include "string.hh"
14
15 // don't inline: get warnings only once
16 /**
17  Internationalisation: _ ("to be translated") gets "translated" by GNU gettext
18 */
19 String _ (char const *ch);
20
21 /**
22  Internationalisation: _f ("Usage: %s [FILE]", "lilypond") gets "translated" by 
23  GNU gettext
24 */
25 String _f (char const* format, ...);
26 String _f (char const* format, String s, String s2 = "", String s3 = "");
27
28 #endif // INTERNATIONAL_HH
29