何时以及如何使用std :: locale :: messages?

时间:2013-09-21 10:43:55

标签: c++ c++11 internationalization locale facet

C ++标准定义了六类方面:collatectypemonetarynumerictimemessages。< / p>

我已经知道前五个的用法,但我不知道何时以及如何使用最后一个:std::locale::messages

任何说明性的例子?

1 个答案:

答案 0 :(得分:8)

std::locale::messages用于打开消息目录(最常见的是GNU gettext),包括翻译的字符串。这是example,用于在德语中使用Linux(用于sed)打开现有消息目录,检索(使用get())并输出英语字符串的翻译:

#include <iostream>
#include <locale>

int main()
{
    std::locale loc("de_DE.utf8");
    std::cout.imbue(loc);
    auto& facet = std::use_facet<std::messages<char>>(loc);
    auto cat = facet.open("sed", loc);
    if(cat < 0 )
        std::cout << "Could not open german \"sed\" message catalog\n";
    else
        std::cout << "\"No match\" in German: "
                  << facet.get(cat, 0, 0, "No match") << '\n'
                  << "\"Memory exhausted\" in German: "
                  << facet.get(cat, 0, 0, "Memory exhausted") << '\n';
    facet.close(cat);
}

输出:

"No match" in German: Keine Übereinstimmung
"Memory exhausted" in German: Speicher erschöpft

修改:根据this comment澄清。