2 international.cc -- implement stuff for internationalisation
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2000 Jan Nieuwenhuizen <janneke@gnu.org>
12 #include "string-convert.hh"
13 #include "international.hh"
17 gettext (char const* s
)
28 return String (gettext (ch
));
32 _f (char const* format
, ...)
35 va_start (args
, format
);
36 String str
= String_convert::vform_str (gettext (format
), args
);
42 _f (char const* format
, String s
, String s2
, String s3
)
44 return String_convert::form_str (gettext (format
), s
.ch_C (), s2
.ch_C (),