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