|
template<typename CharType > |
std::basic_ostream< CharType > & | boost::locale::operator<< (std::basic_ostream< CharType > &out, basic_message< CharType > const &msg) |
| Translate message msg and write it to stream. More...
|
|
details::set_domain | boost::locale::as::domain (std::string const &id) |
| Manipulator for switching message domain in ostream,. More...
|
|
|
|
template<typename CharType > |
basic_message< CharType > | boost::locale::translate (CharType const *msg) |
| Translate a message, msg is not copied. More...
|
|
template<typename CharType > |
basic_message< CharType > | boost::locale::translate (CharType const *context, CharType const *msg) |
| Translate a message in context, msg and context are not copied. More...
|
|
template<typename CharType > |
basic_message< CharType > | boost::locale::translate (CharType const *single, CharType const *plural, int n) |
| Translate a plural message form, single and plural are not copied. More...
|
|
template<typename CharType > |
basic_message< CharType > | boost::locale::translate (CharType const *context, CharType const *single, CharType const *plural, int n) |
| Translate a plural message from in constext, context, single and plural are not copied. More...
|
|
template<typename CharType > |
basic_message< CharType > | boost::locale::translate (std::basic_string< CharType > const &msg) |
| Translate a message, msg is copied. More...
|
|
template<typename CharType > |
basic_message< CharType > | boost::locale::translate (std::basic_string< CharType > const &context, std::basic_string< CharType > const &msg) |
| Translate a message in context,context and msg is copied. More...
|
|
template<typename CharType > |
basic_message< CharType > | boost::locale::translate (std::basic_string< CharType > const &context, std::basic_string< CharType > const &single, std::basic_string< CharType > const &plural, int n) |
| Translate a plural message form in constext, context, single and plural are copied. More...
|
|
template<typename CharType > |
basic_message< CharType > | boost::locale::translate (std::basic_string< CharType > const &single, std::basic_string< CharType > const &plural, int n) |
| Translate a plural message form, single and plural are copied. More...
|
|
|
|
template<typename CharType > |
std::basic_string< CharType > | boost::locale::gettext (CharType const *id, std::locale const &loc=std::locale()) |
| Translate message id according to locale loc. More...
|
|
template<typename CharType > |
std::basic_string< CharType > | boost::locale::ngettext (CharType const *s, CharType const *p, int n, std::locale const &loc=std::locale()) |
| Translate plural form according to locale loc. More...
|
|
template<typename CharType > |
std::basic_string< CharType > | boost::locale::dgettext (char const *domain, CharType const *id, std::locale const &loc=std::locale()) |
| Translate message id according to locale loc in domain domain. More...
|
|
template<typename CharType > |
std::basic_string< CharType > | boost::locale::dngettext (char const *domain, CharType const *s, CharType const *p, int n, std::locale const &loc=std::locale()) |
| Translate plural form according to locale loc in domain domain. More...
|
|
template<typename CharType > |
std::basic_string< CharType > | boost::locale::pgettext (CharType const *context, CharType const *id, std::locale const &loc=std::locale()) |
| Translate message id according to locale loc in context context. More...
|
|
template<typename CharType > |
std::basic_string< CharType > | boost::locale::npgettext (CharType const *context, CharType const *s, CharType const *p, int n, std::locale const &loc=std::locale()) |
| Translate plural form according to locale loc in context context. More...
|
|
template<typename CharType > |
std::basic_string< CharType > | boost::locale::dpgettext (char const *domain, CharType const *context, CharType const *id, std::locale const &loc=std::locale()) |
| Translate message id according to locale loc in domain domain in context context. More...
|
|
template<typename CharType > |
std::basic_string< CharType > | boost::locale::dnpgettext (char const *domain, CharType const *context, CharType const *s, CharType const *p, int n, std::locale const &loc=std::locale()) |
| Translate plural form according to locale loc in domain domain in context context. More...
|
|