5d2d980621520e6305ed5875ebe3298c9cd2d4f1
[platform/upstream/gettext.git] / gettext-tools / src / x-javascript.h
1 /* xgettext JavaScript backend.
2    Copyright (C) 2002-2003, 2006, 2013, 2015 Free Software Foundation,
3    Inc.
4    This file was written by Andreas Stricker <andy@knitter.ch>, 2010.
5    It's based on x-python from Bruno Haible.
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20
21 #include <stdio.h>
22
23 #include "message.h"
24 #include "xgettext.h"
25
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31
32 #define EXTENSIONS_JAVASCRIPT \
33   { "js",        "JavaScript"   },                                        \
34
35 #define SCANNERS_JAVASCRIPT \
36   { "JavaScript",       extract_javascript,                               \
37                         &flag_table_javascript, &formatstring_javascript, NULL, NULL }, \
38
39 /* Scan a Python file and add its translatable strings to mdlp.  */
40 extern void extract_javascript (FILE *fp, const char *real_filename,
41                             const char *logical_filename,
42                             flag_context_list_table_ty *flag_table,
43                             msgdomain_list_ty *mdlp);
44
45 extern void x_javascript_keyword (const char *keyword);
46 extern void x_javascript_extract_all (void);
47
48 extern void init_flag_table_javascript (void);
49
50
51 #ifdef __cplusplus
52 }
53 #endif