Release 1.25.0 -- Buddy Idle Time, RTF
[siplcs.git] / src / api / sipe-nls.h
blobd3d3eea1e74212cbb6a6d5a158f1631c8b98a031
1 /**
2 * @file sipe-nls.h
4 * pidgin-sipe
6 * Copyright (C) 2009-2018 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * config.h must be included for correct definition of ENABLE_NLS.
25 * PACKAGE_NAME is always defined when config.h has been included.
27 #if defined(HAVE_CONFIG_H) && !defined(PACKAGE_NAME)
28 #error you must include "config.h" before "sipe-nls.h"
29 #endif
31 #ifdef ENABLE_NLS
32 #include <glib/gi18n.h>
33 #else
34 #define _(String) ((const char *) (String))
35 #define N_(String) ((const char *) (String))
36 #define gettext(String) ((const char *) (String))
37 #define dngettext(package, StringS, StringP, p) ((const char *) ((p) ? (StringP) : (StringS)))
38 #endif /* ENABLE_NLS */