From fc9097fb1f9d4a9705892be382cc18cee62ede93 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 14 Apr 2013 11:26:05 +0100 Subject: provide gettext hooks to use the netsurf localisation system This means the internal message system is used for gettext calls from gtk libraries. --- gtk/gettext.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 gtk/gettext.h (limited to 'gtk/gettext.h') diff --git a/gtk/gettext.h b/gtk/gettext.h new file mode 100644 index 000000000..726ba356e --- /dev/null +++ b/gtk/gettext.h @@ -0,0 +1,32 @@ +/* + * Copyright 2012 Vincent Sanders + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * NetSurf 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** \file + * Localised message support (interface). + * + * Provide gettext interface to the utility localisation routines + */ + +#ifndef _NETSURF_GTK_GETTEXT_MESSAGES_H_ +#define _NETSURF_GTK_GETTEXT_MESSAGES_H_ + +char *gettext(const char *msgid); +char *dgettext(const char *domainname, const char *msgid); +char *dcgettext(const char *domainname, const char *msgid, int category); + +#endif -- cgit v1.2.3