KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
2.9KB

  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.11
  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. $language_data = array (
  39. 'LANG_NAME' => 'GNU Gettext',
  40. 'COMMENT_SINGLE' => array('#:', '#.', '#,', '#|', '#'),
  41. 'COMMENT_MULTI' => array(),
  42. 'COMMENT_REGEXP' => array(),
  43. 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  44. 'QUOTEMARKS' => array("'", '"'),
  45. 'ESCAPE_CHAR' => '\\',
  46. 'KEYWORDS' => array(
  47. 1 => array('msgctxt', 'msgid_plural', 'msgid', 'msgstr'),
  48. ),
  49. 'SYMBOLS' => array(),
  50. 'CASE_SENSITIVE' => array(
  51. GESHI_COMMENTS => false,
  52. 1 => true,
  53. ),
  54. 'STYLES' => array(
  55. 'KEYWORDS' => array(
  56. 1 => 'color: #000000; font-weight: bold;'
  57. ),
  58. 'COMMENTS' => array(
  59. 0 => 'color: #000099;',
  60. 1 => 'color: #000099;',
  61. 2 => 'color: #000099;',
  62. 3 => 'color: #006666;',
  63. 4 => 'color: #666666; font-style: italic;',
  64. ),
  65. 'ESCAPE_CHAR' => array(
  66. 0 => 'color: #000099; font-weight: bold;'
  67. ),
  68. 'STRINGS' => array(
  69. 0 => 'color: #ff0000;'
  70. ),
  71. 'REGEXPS' => array(),
  72. 'SYMBOLS' => array(),
  73. 'NUMBERS' => array(
  74. 0 => 'color: #000099;'
  75. ),
  76. 'METHODS' => array(),
  77. 'SCRIPT' => array(),
  78. 'BRACKETS' => array(
  79. 0 => 'color: #000099;'
  80. ),
  81. ),
  82. 'URLS' => array(
  83. 1 => ''
  84. ),
  85. 'OOLANG' => false,
  86. 'OBJECT_SPLITTERS' => array(),
  87. 'REGEXPS' => array(),
  88. 'STRICT_MODE_APPLIES' => GESHI_NEVER,
  89. 'SCRIPT_DELIMITERS' => array(
  90. ),
  91. 'HIGHLIGHT_STRICT_BLOCK' => array(
  92. ),
  93. 'TAB_WIDTH' => 4,
  94. );
  95. ?>