1 | 1 | simandl | <?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.1 |
8 | | | * Date Started: 2008/05/25 |
9 | | | * |
10 | | | * GNU Gettext .po/.pot language file for GeSHi. |
11 | | | * |
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 |
18 | | | * |
19 | | | ************************************************************************************* |
20 | | | * |
21 | | | * This file is part of GeSHi. |
22 | | | * |
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. |
27 | | | * |
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. |
32 | | | * |
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 |
36 | | | * |
37 | | | ************************************************************************************/ |
38 | | | |
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'), |
49 | | | ), |
50 | | | 'SYMBOLS' => array(), |
51 | | | 'CASE_SENSITIVE' => array( |
52 | | | GESHI_COMMENTS => false, |
53 | | | 1 => true, |
54 | | | ), |
55 | | | 'STYLES' => array( |
56 | | | 'KEYWORDS' => array( |
57 | | | 1 => 'color: #000000; font-weight: bold;' |
58 | | | ), |
59 | | | 'COMMENTS' => array( |
60 | | | |
61 | | | 1 => 'color: #000099;', |
62 | | | 2 => 'color: #000099;', |
63 | | | 3 => 'color: #006666;', |
64 | | | 4 => 'color: #666666; font-style: italic;', |
65 | | | ), |
66 | | | 'ESCAPE_CHAR' => array( |
67 | | | |
68 | | | ), |
69 | | | 'STRINGS' => array( |
70 | | | |
71 | | | ), |
72 | | | 'REGEXPS' => array(), |
73 | | | 'SYMBOLS' => array(), |
74 | | | 'NUMBERS' => array( |
75 | | | |
76 | | | ), |
77 | | | 'METHODS' => array(), |
78 | | | 'SCRIPT' => array(), |
79 | | | 'BRACKETS' => array( |
80 | | | |
81 | | | ), |
82 | | | ), |
83 | | | 'URLS' => array( |
84 | | | 1 => '' |
85 | | | ), |
86 | | | 'OOLANG' => false, |
87 | | | 'OBJECT_SPLITTERS' => array(), |
88 | | | 'REGEXPS' => array(), |
89 | | | 'STRICT_MODE_APPLIES' => GESHI_NEVER, |
90 | | | 'SCRIPT_DELIMITERS' => array( |
91 | | | ), |
92 | | | 'HIGHLIGHT_STRICT_BLOCK' => array( |
93 | | | ), |
94 | | | 'TAB_WIDTH' => 4, |
95 | | | ); |
96 | | | |
97 | | | ?> |