annotate src/intl.h @ 2916:ae6cdcd69d9f default tip

Merge with upstream/master.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 14 May 2019 11:46:50 +0300
parents 95507e596256
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2350
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
1 /*
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
2 * Copyright (C) 2000 John Ellis
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
3 * Copyright (C) 2008 - 2016 The Geeqie Team
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
4 *
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
5 * Author: John Ellis
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
6 *
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
7 * This program is free software; you can redistribute it and/or modify
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
8 * it under the terms of the GNU General Public License as published by
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
9 * the Free Software Foundation; either version 2 of the License, or
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
10 * (at your option) any later version.
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
11 *
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
12 * This program is distributed in the hope that it will be useful,
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
15 * GNU General Public License for more details.
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
16 *
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
17 * You should have received a copy of the GNU General Public License along
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
18 * with this program; if not, write to the Free Software Foundation, Inc.,
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
20 */
95507e596256 Update copyright in all files
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1685
diff changeset
21
1
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
22 #ifndef __INTL_H__
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
23 #define __INTL_H__
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
24
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
25 #ifdef ENABLE_NLS
1685
041cdca65160 Revert "Add pgettext for some ambiguous strings"
Klaus Ethgen <Klaus@Ethgen.de>
parents: 1532
diff changeset
26 # include <libintl.h>
1
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
27 # define _(String) dgettext(PACKAGE,String)
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
28 # ifdef gettext_noop
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
29 # define N_(String) gettext_noop(String)
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
30 # else
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
31 # define N_(String) (String)
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
32 # endif /* gettext_noop */
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
33 #else
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
34 # define _(String) (String)
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
35 # define N_(String) (String)
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
36 # define textdomain(String) (String)
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
37 # define gettext(String) (String)
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
38 # define dgettext(Domain,String) (String)
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
39 # define dcgettext(Domain,String,Type) (String)
442
f698b737556b Big whitespaces cleanup:
Laurent Monin <geeqie@norz.org>
parents: 9
diff changeset
40 # define bindtextdomain(Domain,Directory) (Domain)
9
8d9e9edd6fdf Sync to GQview 1.5.9 release.
John Ellis <johne@verizon.net>
parents: 1
diff changeset
41 # define bind_textdomain_codeset(Domain,String) (Domain)
1
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
42 #endif /* ENABLE_NLS */
0102f897ed33 Initial revision
John Ellis <johne@verizon.net>
parents:
diff changeset
43
9
8d9e9edd6fdf Sync to GQview 1.5.9 release.
John Ellis <johne@verizon.net>
parents: 1
diff changeset
44 #endif
1055
4bbdfab3c89a Adding a vim modeline to all files - patch by Klaus Ethgen
Vladimir Nadvornik <nadvornik@suse.cz>
parents: 442
diff changeset
45 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */