blob: 5d563e4f2998b8c6360eda3afbeaf28f3a72d7d9 [file] [log] [blame]
/*
This file is part of libmicrohttpd
Copyright (C) 2017 Christian Grothoff, Silvio Clecio (silvioprog)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file msgs_i18n.c
* @brief example for how to use translate libmicrohttpd messages
* @author Christian Grothoff
* @author Silvio Clecio (silvioprog)
*/
/*
* supposing you are in Brazil:
*
* # generate the PO file
* $ msginit --input=po/libmicrohttpd.pot --locale=pt_BR --output=libmicrohttpd.po
* # open the generated .po in any program like Poedit and translate the MHD messages; once done, let's go to the test:
* mkdir -p src/examples/locale/pt_BR/LC_MESSAGES
* mv libmicrohttpd.mo libmicrohttpd.po src/examples/locale/pt_BR/LC_MESSAGES
* cd src/examples/
* gcc -o msgs_i18n msgs_i18n.c -lmicrohttpd
* export LANGUAGE=pt_BR
* ./msgs_i18n
* # it may print: Opção inválida 4196490! (Você terminou a lista com MHD_OPTION_END?)
*/
#include <stdio.h>
#include <locale.h>
#include <libintl.h>
#include <microhttpd.h>
static int
ahc_echo (void *cls,
struct MHD_Connection *cnc,
const char *url,
const char *mt,
const char *ver,
const char *upd,
size_t *upsz,
void **req_cls)
{
return MHD_NO;
}
static void
error_handler (void *cls,
const char *fm,
va_list ap)
{
/* Here we do the translation using GNU gettext.
As the error message is from libmicrohttpd, we specify
"libmicrohttpd" as the translation domain here. */
vprintf (dgettext ("libmicrohttpd",
fm),
ap);
}
int
main (int argc,
char **argv)
{
setlocale (LC_ALL, "");
/* The example uses PO files in the directory
"libmicrohttpd/src/examples/locale". This
needs to be adapted to match
where the MHD PO files are installed. */
bindtextdomain ("libmicrohttpd",
"locale");
MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_FEATURE_MESSAGES
| MHD_USE_ERROR_LOG,
8080,
NULL, NULL,
&ahc_echo, NULL,
MHD_OPTION_EXTERNAL_LOGGER, &error_handler, NULL,
99999 /* invalid option, to raise the error
"Invalid option ..." which we are going
to translate */);
return 1; /* This program won't "succeed"... */
}