Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.

tools/build/v2/example/gettext/main.cpp


#include <locale.h>
#include <libintl.h>
#define i18n(s) gettext(s)

#include <iostream>
using namespace std;

int main()
{    
    // Specify that translations are stored in directory
    // "messages".
    bindtextdomain("main", "messages");
    textdomain("main");

    // Switch to russian locale.
    setlocale(LC_MESSAGES, "ru_RU.KOI8-R");

    // Output localized message.
    std::cout << i18n("hello") << "\n";

    return 0;
}