first commit. dokuwiki.
[h2N7SspZmY.git] / inc / geshi / gettext.php
bloba1dcd8c8aee36efcc2ed118fb473676447279dba
1 <?php
2 /*************************************************************************************
3 * gettext.php
4 * --------
5 * Author: Milian Wolff (mail@milianw.de)
6 * Copyright: (c) 2008 Milian Wolff
7 * Release Version: 1.0.8.4
8 * Date Started: 2008/05/25
10 * GNU Gettext .po/.pot language file for GeSHi.
12 * CHANGES
13 * -------
14 * 2008/08/02 (1.0.8)
15 * - New comments: flags and previous-fields
16 * - New keywords: msgctxt, msgid_plural
17 * - Msgstr array indices
19 *************************************************************************************
21 * This file is part of GeSHi.
23 * GeSHi is free software; you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation; either version 2 of the License, or
26 * (at your option) any later version.
28 * GeSHi is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
33 * You should have received a copy of the GNU General Public License
34 * along with GeSHi; if not, write to the Free Software
35 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
37 ************************************************************************************/
39 $language_data = array (
40 'LANG_NAME' => 'GNU Gettext',
41 'COMMENT_SINGLE' => array('#:', '#.', '#,', '#|', '#'),
42 'COMMENT_MULTI' => array(),
43 'COMMENT_REGEXP' => array(),
44 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
45 'QUOTEMARKS' => array("'", '"'),
46 'ESCAPE_CHAR' => '\\',
47 'KEYWORDS' => array(
48 1 => array('msgctxt', 'msgid_plural', 'msgid', 'msgstr'),
50 'SYMBOLS' => array(),
51 'CASE_SENSITIVE' => array(
52 GESHI_COMMENTS => false,
53 1 => true,
55 'STYLES' => array(
56 'KEYWORDS' => array(
57 1 => 'color: #000000; font-weight: bold;'
59 'COMMENTS' => array(
60 0 => 'color: #000099;',
61 1 => 'color: #000099;',
62 2 => 'color: #000099;',
63 3 => 'color: #006666;',
64 4 => 'color: #666666; font-style: italic;',
66 'ESCAPE_CHAR' => array(
67 0 => 'color: #000099; font-weight: bold;'
69 'STRINGS' => array(
70 0 => 'color: #ff0000;'
72 'REGEXPS' => array(),
73 'SYMBOLS' => array(),
74 'NUMBERS' => array(
75 0 => 'color: #000099;'
77 'METHODS' => array(),
78 'SCRIPT' => array(),
79 'BRACKETS' => array(
80 0 => 'color: #000099;'
83 'URLS' => array(
84 1 => ''
86 'OOLANG' => false,
87 'OBJECT_SPLITTERS' => array(),
88 'REGEXPS' => array(),
89 'STRICT_MODE_APPLIES' => GESHI_NEVER,
90 'SCRIPT_DELIMITERS' => array(
92 'HIGHLIGHT_STRICT_BLOCK' => array(
94 'TAB_WIDTH' => 4,