Crayon Syntax Highlighter - Version 2.8.1

Version Description

  • ADDED:
    • Coy theme.
  • FIXED:
    • Strip tags in output content for CrayonWP::highlight()
Download this release

Release Info

Developer akarmenia
Plugin Icon wp plugin Crayon Syntax Highlighter
Version 2.8.1
Comparing to
See all releases

Code changes from version 2.7.0 to 2.8.1

Files changed (66) hide show
  1. crayon-syntax-highlighter.sublime-project +2 -1
  2. crayon_resource.class.php +2 -2
  3. crayon_settings_wp.class.php +6 -5
  4. crayon_wp.class.php +10 -7
  5. fonts/sourcecodepro.css +14 -0
  6. fonts/sourcecodepro/sourcecodepro-regular-webfont.eot +0 -0
  7. fonts/sourcecodepro/sourcecodepro-regular-webfont.svg +241 -0
  8. fonts/sourcecodepro/sourcecodepro-regular-webfont.ttf +0 -0
  9. fonts/sourcecodepro/sourcecodepro-regular-webfont.woff +0 -0
  10. fonts/sourcecodepro/sourcecodepro-regular-webfont.woff2 +0 -0
  11. global.php +3 -6
  12. js/min/crayon.min.js +1 -1
  13. js/min/crayon.te.min.js +1 -1
  14. js/src/crayon.js +4 -5
  15. js/src/util.js +4 -4
  16. langs/c#/reserved.txt +1 -0
  17. langs/coffee/coffee.txt +1 -1
  18. langs/css/css.txt +2 -2
  19. langs/extensions.txt +1 -0
  20. langs/go/statement.txt +25 -0
  21. langs/kl/constant.txt +403 -0
  22. langs/kl/kl.txt +25 -0
  23. langs/kl/module.txt +45 -0
  24. langs/kl/reserved.txt +1753 -0
  25. langs/kl/statement.txt +29 -0
  26. langs/kl/type.txt +214 -0
  27. langs/kl/variable.txt +369 -0
  28. langs/mel/constant.txt +2 -0
  29. langs/mel/mel.txt +22 -0
  30. langs/mel/reserved.txt +1403 -0
  31. langs/mel/statement.txt +26 -0
  32. langs/mel/type.txt +6 -0
  33. langs/php/php.txt +1 -1
  34. readme.txt +58 -18
  35. themes/amity/amity.css +188 -0
  36. themes/coy/coy.css +117 -0
  37. themes/flatui-light/flatui-light.css +163 -0
  38. themes/kaderu/kaderu.css +319 -0
  39. themes/kayote/kayote.css +184 -0
  40. themes/mm-dark-blue/mm-dark-blue.css +174 -0
  41. themes/powershell/powershell.css +166 -0
  42. themes/prism-like/prism-like.css +119 -0
  43. themes/qtcreator/qtcreator.css +164 -0
  44. themes/xcode/xcode.css +120 -0
  45. trans/crayon-syntax-highlighter-ar_AR.po +1 -1
  46. trans/crayon-syntax-highlighter-de_DE.po +1 -1
  47. trans/crayon-syntax-highlighter-fa_IR.po +1 -1
  48. trans/crayon-syntax-highlighter-fi.po +1 -1
  49. trans/crayon-syntax-highlighter-ko_KR.po +2 -2
  50. trans/crayon-syntax-highlighter-nb_NO.mo +0 -0
  51. trans/crayon-syntax-highlighter-nb_NO.po +1185 -0
  52. trans/crayon-syntax-highlighter-nl_NL.po +1 -1
  53. trans/crayon-syntax-highlighter-pl_PL.mo +0 -0
  54. trans/crayon-syntax-highlighter-pl_PL.po +675 -503
  55. trans/crayon-syntax-highlighter-sl_SI.po +1 -1
  56. trans/crayon-syntax-highlighter-ta_MY.mo +0 -0
  57. trans/crayon-syntax-highlighter-ta_MY.po +1306 -0
  58. trans/crayon-syntax-highlighter-tr_TR.po +1 -1
  59. trans/crayon-syntax-highlighter-uk_UA.po +1 -1
  60. trans/crayon-syntax-highlighter-zh_CN.po +1 -1
  61. trans/crayon-syntax-highlighter-zh_TW.po +1 -1
  62. util/crayon_util.class.php +2 -2
  63. util/depreciated/exceptions.php +0 -109
  64. util/sample/kl.txt +18 -0
  65. util/sample/mel.txt +24 -0
  66. util/theme-editor/theme_editor.php +1 -1
crayon-syntax-highlighter.sublime-project CHANGED
@@ -5,7 +5,8 @@
5
  "follow_symlinks": true,
6
  "path": ".",
7
  "folder_exclude_patterns": [
8
- "min"
 
9
  ]
10
  }
11
  ]
5
  "follow_symlinks": true,
6
  "path": ".",
7
  "folder_exclude_patterns": [
8
+ "min",
9
+ "trans"
10
  ]
11
  }
12
  ]
crayon_resource.class.php CHANGED
@@ -400,7 +400,7 @@ class CrayonResource {
400
  function __construct($id, $name = NULL) {
401
  $id = $this->clean_id($id);
402
  CrayonUtil::str($this->id, $id);
403
- ( empty($name) ) ? $this->name( $this->clean_name($this->id) ) : $this->name($name);
404
  }
405
 
406
  function __tostring() {
@@ -424,7 +424,7 @@ class CrayonResource {
424
  return preg_replace('#[^\w-]#msi', '', $id);
425
  }
426
 
427
- function clean_name($id) {
428
  $id = CrayonUtil::hyphen_to_space( strtolower(trim($id)) );
429
  return CrayonUtil::ucwords($id);
430
  }
400
  function __construct($id, $name = NULL) {
401
  $id = $this->clean_id($id);
402
  CrayonUtil::str($this->id, $id);
403
+ ( empty($name) ) ? $this->name( self::clean_name($this->id) ) : $this->name($name);
404
  }
405
 
406
  function __tostring() {
424
  return preg_replace('#[^\w-]#msi', '', $id);
425
  }
426
 
427
+ public static function clean_name($id) {
428
  $id = CrayonUtil::hyphen_to_space( strtolower(trim($id)) );
429
  return CrayonUtil::ucwords($id);
430
  }
crayon_settings_wp.class.php CHANGED
@@ -64,7 +64,7 @@ class CrayonSettingsWP {
64
  add_action("admin_print_styles-post-new.php", 'CrayonSettingsWP::admin_styles');
65
  add_action("admin_print_styles-post.php", 'CrayonSettingsWP::admin_styles');
66
 
67
- // TODO depreciated since WP 3.3, remove eventually
68
  global $wp_version;
69
  if ($wp_version >= '3.3') {
70
  add_action("load-$admin_page", 'CrayonSettingsWP::help_screen');
@@ -943,7 +943,7 @@ class CrayonSettingsWP {
943
 
944
  // Load custom code based on language
945
  $lang = $crayon->setting_val(CrayonSettings::FALLBACK_LANG);
946
- $path = crayon_pf(CRAYON_UTIL_PATH . '/sample/' . $lang . '.txt', FALSE);
947
 
948
  if (isset($_POST[self::SAMPLE_CODE])) {
949
  $crayon->code($_POST[self::SAMPLE_CODE]);
@@ -1095,7 +1095,7 @@ class Human {
1095
  self::checkbox(array(CrayonSettings::BACKQUOTE, crayon__('Capture `backquotes` as <code>') . self::help_button('http://aramk.com/blog/2012/03/07/inline-crayons/')));
1096
  self::checkbox(array(CrayonSettings::CAPTURE_PRE, crayon__('Capture <pre> tags as Crayons') . self::help_button('http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/')));
1097
 
1098
- echo '<div class="note" style="width: 350px;">', sprintf(crayon__("Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use the %sTag Editor%s instead and convert legacy tags."), '<a href="http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/" target="_blank">', '</a>', '<a href="http://aramk.com/blog/2012/03/25/crayon-tag-editor/‎" target="_blank">', '</a>'), '</div>';
1099
  self::checkbox(array(CrayonSettings::CAPTURE_MINI_TAG, crayon__('Capture Mini Tags like [php][/php] as Crayons.') . self::help_button('http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/')));
1100
  self::checkbox(array(CrayonSettings::INLINE_TAG_CAPTURE, crayon__('Capture Inline Tags like {php}{/php} inside sentences.') . self::help_button('http://aramk.com/blog/2012/03/07/inline-crayons/')));
1101
  self::checkbox(array(CrayonSettings::PLAIN_TAG, crayon__('Enable [plain][/plain] tag.') . self::help_button('http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/')));
@@ -1200,15 +1200,16 @@ class Human {
1200
  Chinese Simplified (<a href="http://smerpup.com/" target="_blank">Dezhi Liu</a>, <a href="http://neverno.me/" target="_blank">Jash Yin</a>),
1201
  Chinese Traditional (<a href="http://www.arefly.com/" target="_blank">Arefly</a>),
1202
  Dutch (<a href="https://twitter.com/RobinRoelofsen" target="_blank">Robin Roelofsen</a>, <a href="https://twitter.com/#!/chilionsnoek" target="_blank">Chilion Snoek</a>),
1203
- French (<a href="http://tech.dupeu.pl" target="_blank">Victor Felder</a>),
1204
  Finnish (<a href="https://github.com/vahalan" target="_blank">vahalan</a>),
1205
  German (<a href="http://www.technologyblog.de/" target="_blank">Stephan Knau&#223;</a>),
1206
  Italian (<a href="http://www.federicobellucci.net/" target="_blank">Federico Bellucci</a>),
1207
  Japanese (<a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>),
1208
  Korean (<a href="https://github.com/dokenzy" target="_blank">dokenzy</a>),
1209
  Lithuanian (Vincent G),
 
1210
  Persian (MahdiY),
1211
- Polish (<a href="https://github.com/toszcze" target="_blank">Bartosz Romanowski</a>),
1212
  Portuguese (<a href="http://www.adonai.eti.br" target="_blank">Adonai S. Canez</a>),
1213
  Russian (<a href="http://simplelib.com/" target="_blank">Minimus</a>, Di_Skyer),
1214
  Slovak (<a href="https://twitter.com/#!/webhostgeeks" target="_blank">webhostgeeks</a>),
64
  add_action("admin_print_styles-post-new.php", 'CrayonSettingsWP::admin_styles');
65
  add_action("admin_print_styles-post.php", 'CrayonSettingsWP::admin_styles');
66
 
67
+ // TODO deprecated since WP 3.3, remove eventually
68
  global $wp_version;
69
  if ($wp_version >= '3.3') {
70
  add_action("load-$admin_page", 'CrayonSettingsWP::help_screen');
943
 
944
  // Load custom code based on language
945
  $lang = $crayon->setting_val(CrayonSettings::FALLBACK_LANG);
946
+ $path = CrayonGlobalSettings::plugin_path() . CRAYON_UTIL_DIR . '/sample/' . $lang . '.txt';
947
 
948
  if (isset($_POST[self::SAMPLE_CODE])) {
949
  $crayon->code($_POST[self::SAMPLE_CODE]);
1095
  self::checkbox(array(CrayonSettings::BACKQUOTE, crayon__('Capture `backquotes` as &lt;code&gt;') . self::help_button('http://aramk.com/blog/2012/03/07/inline-crayons/')));
1096
  self::checkbox(array(CrayonSettings::CAPTURE_PRE, crayon__('Capture &lt;pre&gt; tags as Crayons') . self::help_button('http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/')));
1097
 
1098
+ echo '<div class="note" style="width: 350px;">', sprintf(crayon__("Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use the %sTag Editor%s instead and convert legacy tags."), '<a href="http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/" target="_blank">', '</a>', '<a href="http://aramk.com/blog/2012/03/25/crayon-tag-editor/" target="_blank">', '</a>'), '</div>';
1099
  self::checkbox(array(CrayonSettings::CAPTURE_MINI_TAG, crayon__('Capture Mini Tags like [php][/php] as Crayons.') . self::help_button('http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/')));
1100
  self::checkbox(array(CrayonSettings::INLINE_TAG_CAPTURE, crayon__('Capture Inline Tags like {php}{/php} inside sentences.') . self::help_button('http://aramk.com/blog/2012/03/07/inline-crayons/')));
1101
  self::checkbox(array(CrayonSettings::PLAIN_TAG, crayon__('Enable [plain][/plain] tag.') . self::help_button('http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/')));
1200
  Chinese Simplified (<a href="http://smerpup.com/" target="_blank">Dezhi Liu</a>, <a href="http://neverno.me/" target="_blank">Jash Yin</a>),
1201
  Chinese Traditional (<a href="http://www.arefly.com/" target="_blank">Arefly</a>),
1202
  Dutch (<a href="https://twitter.com/RobinRoelofsen" target="_blank">Robin Roelofsen</a>, <a href="https://twitter.com/#!/chilionsnoek" target="_blank">Chilion Snoek</a>),
1203
+ French (<a href="https://vhf.github.io" target="_blank">Victor Felder</a>),
1204
  Finnish (<a href="https://github.com/vahalan" target="_blank">vahalan</a>),
1205
  German (<a href="http://www.technologyblog.de/" target="_blank">Stephan Knau&#223;</a>),
1206
  Italian (<a href="http://www.federicobellucci.net/" target="_blank">Federico Bellucci</a>),
1207
  Japanese (<a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>),
1208
  Korean (<a href="https://github.com/dokenzy" target="_blank">dokenzy</a>),
1209
  Lithuanian (Vincent G),
1210
+ Norwegian (<a href="http://www.jackalworks.com/blogg" target="_blank">Jackalworks</a>),
1211
  Persian (MahdiY),
1212
+ Polish (<a href="https://github.com/toszcze" target="_blank">Bartosz Romanowski</a>, <a href="http://rob006.net/" target="_blank">Robert Korulczyk</a>),
1213
  Portuguese (<a href="http://www.adonai.eti.br" target="_blank">Adonai S. Canez</a>),
1214
  Russian (<a href="http://simplelib.com/" target="_blank">Minimus</a>, Di_Skyer),
1215
  Slovak (<a href="https://twitter.com/#!/webhostgeeks" target="_blank">webhostgeeks</a>),
crayon_wp.class.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Crayon Syntax Highlighter
4
  Plugin URI: https://github.com/aramk/crayon-syntax-highlighter
5
  Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
6
- Version: 2.7.0
7
  Author: Aram Kocharyan
8
  Author URI: http://aramk.com/
9
  Text Domain: crayon-syntax-highlighter
@@ -33,11 +33,12 @@ if (CRAYON_THEME_EDITOR) {
33
  }
34
  require_once('crayon_settings_wp.class.php');
35
 
36
- if (defined('ABSPATH')) {
37
- // Used to get plugin version info
38
- require_once(ABSPATH . 'wp-admin/includes/plugin.php');
39
- crayon_set_info(get_plugin_data(__FILE__));
40
- }
 
41
 
42
  /* The plugin class that manages all other classes and integrates Crayon with WP */
43
 
@@ -199,6 +200,7 @@ class CrayonWP {
199
  $the_captures = $captures['capture'];
200
  }
201
  $the_content = $captures['content'];
 
202
  foreach ($the_captures as $id => $capture) {
203
  $atts = $capture['atts'];
204
  $no_enqueue = array(
@@ -211,6 +213,7 @@ class CrayonWP {
211
  $the_content = CrayonUtil::preg_replace_escape_back(self::regex_with_id($id), $crayon_formatted, $the_content, 1, $count);
212
  }
213
 
 
214
  return $the_content;
215
  }
216
 
@@ -834,7 +837,7 @@ class CrayonWP {
834
  * Check if the $ notation has been used to ignore [crayon] tags within posts and remove all matches
835
  * Can also remove if used without $ as a regular crayon
836
  *
837
- * @depreciated
838
  */
839
  public static function crayon_remove_ignore($the_content, $ignore_flag = '$') {
840
  if ($ignore_flag == FALSE) {
3
  Plugin Name: Crayon Syntax Highlighter
4
  Plugin URI: https://github.com/aramk/crayon-syntax-highlighter
5
  Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
6
+ Version: 2.8.1
7
  Author: Aram Kocharyan
8
  Author URI: http://aramk.com/
9
  Text Domain: crayon-syntax-highlighter
33
  }
34
  require_once('crayon_settings_wp.class.php');
35
 
36
+ crayon_set_info(array(
37
+ 'Version' => '_2.7.2_beta',
38
+ 'Date' => '25th April, 2015',
39
+ 'AuthorName' => 'Aram Kocharyan',
40
+ 'PluginURI' => 'https://github.com/aramk/crayon-syntax-highlighter',
41
+ ));
42
 
43
  /* The plugin class that manages all other classes and integrates Crayon with WP */
44
 
200
  $the_captures = $captures['capture'];
201
  }
202
  $the_content = $captures['content'];
203
+ $the_content = strip_tags($the_content);
204
  foreach ($the_captures as $id => $capture) {
205
  $atts = $capture['atts'];
206
  $no_enqueue = array(
213
  $the_content = CrayonUtil::preg_replace_escape_back(self::regex_with_id($id), $crayon_formatted, $the_content, 1, $count);
214
  }
215
 
216
+ header('Content-Type', 'text/html');
217
  return $the_content;
218
  }
219
 
837
  * Check if the $ notation has been used to ignore [crayon] tags within posts and remove all matches
838
  * Can also remove if used without $ as a regular crayon
839
  *
840
+ * @deprecated
841
  */
842
  public static function crayon_remove_ignore($the_content, $ignore_flag = '$') {
843
  if ($ignore_flag == FALSE) {
fonts/sourcecodepro.css ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @font-face {
2
+ font-family: 'source_code_proregular';
3
+ src: url('sourcecodepro/sourcecodepro-regular-webfont.eot');
4
+ src: url('sourcecodepro/sourcecodepro-regular-webfont.eot?#iefix') format('embedded-opentype'),
5
+ url('sourcecodepro/sourcecodepro-regular-webfont.woff') format('woff'),
6
+ url('sourcecodepro/sourcecodepro-regular-webfont.ttf') format('truetype'),
7
+ url('sourcecodepro/sourcecodepro-regular-webfont.svg#MonacoRegular') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+
12
+ .crayon-font-sourcecodepro * {
13
+ font-family: Source Code Pro, 'source_code_proregular', Arial, sans-serif !important;
14
+ }
fonts/sourcecodepro/sourcecodepro-regular-webfont.eot ADDED
Binary file
fonts/sourcecodepro/sourcecodepro-regular-webfont.svg ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata></metadata>
5
+ <defs>
6
+ <font id="source_code_proregular" horiz-adv-x="1228" >
7
+ <font-face units-per-em="2048" ascent="1536" descent="-512" />
8
+ <missing-glyph horiz-adv-x="500" />
9
+ <glyph horiz-adv-x="0" />
10
+ <glyph horiz-adv-x="682" />
11
+ <glyph unicode=" " />
12
+ <glyph unicode="!" d="M465 135q0 70 43 113t106 43t106.5 -43t43.5 -113q0 -72 -43.5 -116t-106.5 -44t-106 44t-43 116zM532 1372h164l-4 -192l-20 -705h-115l-20 705z" />
13
+ <glyph unicode="&#x22;" d="M266 1407h226l-5 -225l-51 -461h-114l-52 461zM737 1407h226l-5 -225l-51 -461h-114l-52 461z" />
14
+ <glyph unicode="#" d="M178 418v117h178l37 303h-174v118h189l47 375h108l-45 -375h270l48 375h108l-45 -375h164v-118h-178l-37 -303h174v-117h-188l-52 -418h-110l51 418h-270l-52 -418h-110l51 418h-164zM467 535h270l37 303h-270z" />
15
+ <glyph unicode="$" d="M174 231l80 117q192 -139 381 -139q118 0 183 49t65 129q0 45 -28 82.5t-73.5 63t-104 51.5t-119.5 47.5t-119.5 52.5t-104 65.5t-73.5 86.5t-28 116q0 128 90.5 211.5t241.5 98.5v270h123v-268q104 -8 180 -48t146 -108l-90 -98q-78 61 -142 88.5t-159 27.5 q-103 0 -164.5 -46t-61.5 -124q0 -45 36 -81.5t93.5 -62.5t127 -51t139 -56.5t127 -70t93.5 -99t36 -136.5q0 -131 -99.5 -219.5t-261.5 -105.5v-299h-123v297q-110 9 -213.5 52.5t-177.5 106.5z" />
16
+ <glyph unicode="%" d="M55 997q0 156 79 245t206 89t206 -89t79 -245q0 -157 -79 -248.5t-206 -91.5t-206 91.5t-79 248.5zM57 158l375 385l68 -62l-342 -415zM180 997q0 -115 45 -176t115 -61t115 61t45 176q0 117 -44.5 175.5t-115.5 58.5t-115.5 -58.5t-44.5 -175.5zM604 315q0 156 79 245 t206 89t206 -89t79 -245q0 -157 -79 -248.5t-206 -91.5t-206 91.5t-79 248.5zM729 315q0 -115 45 -176t115 -61t115 61t45 176q0 117 -44.5 175.5t-115.5 58.5t-115.5 -58.5t-44.5 -175.5zM729 862l342 416l100 -92l-374 -385z" />
17
+ <glyph unicode="&#x26;" d="M86 348q0 63 20 119.5t58 104.5t78 84t96 77q-90 175 -90 318q0 136 82 226.5t213 90.5q122 0 191 -72.5t69 -193.5q0 -36 -9.5 -71t-22 -62.5t-39 -60t-44.5 -52.5t-56 -52t-56.5 -47t-61.5 -48q129 -206 328 -377q111 159 170 393h155q-78 -282 -217 -481 q122 -94 232 -129l-47 -140q-136 42 -281 154q-161 -154 -367 -154q-178 0 -289.5 104.5t-111.5 268.5zM250 358q0 -110 74 -178.5t184 -68.5q123 0 235 106q-202 180 -342 401q-73 -64 -112 -126t-39 -134zM393 1053q0 -106 62 -236q67 48 108 84.5t72 89.5t31 109 q0 64 -30 105.5t-93 41.5q-69 0 -109.5 -54.5t-40.5 -139.5z" />
18
+ <glyph unicode="'" d="M502 1407h225l-4 -225l-51 -461h-115l-51 461z" />
19
+ <glyph unicode="(" d="M426 569q0 289 120.5 524t340.5 406l92 -86q-205 -173 -303 -379.5t-98 -464.5t98 -464t303 -379l-92 -86q-220 171 -340.5 405.5t-120.5 523.5z" />
20
+ <glyph unicode=")" d="M250 -274q205 173 303 379t98 464t-98 464.5t-303 379.5l92 86q220 -171 340.5 -406t120.5 -524t-120.5 -523.5t-340.5 -405.5z" />
21
+ <glyph unicode="*" d="M172 770l33 94l342 -112l18 387h99l18 -387l342 112l33 -94l-332 -143l221 -338l-86 -62l-246 326l-245 -326l-86 62l221 338z" />
22
+ <glyph unicode="+" d="M174 612v127h373v400h135v-400h373v-127h-373v-399h-135v399h-373z" />
23
+ <glyph unicode="," d="M403 -330q128 58 191.5 140t67.5 202q-12 -4 -39 -4q-69 0 -114.5 40t-45.5 114q0 72 47.5 113.5t116.5 41.5q89 0 136.5 -70t47.5 -192q0 -177 -94 -302t-266 -189z" />
24
+ <glyph unicode="-" d="M174 612v127h881v-127h-881z" />
25
+ <glyph unicode="." d="M449 147q0 77 47.5 126t117.5 49t118 -49t48 -126q0 -75 -48 -123.5t-118 -48.5t-117.5 48.5t-47.5 123.5z" />
26
+ <glyph unicode="/" d="M203 -328l671 1782h152l-672 -1782h-151z" />
27
+ <glyph unicode="0" d="M145 657q0 325 124 499.5t345 174.5t345 -174.5t124 -499.5q0 -324 -124.5 -503t-344.5 -179t-344.5 179t-124.5 503zM303 657q0 -271 84 -408.5t227 -137.5t227.5 137.5t84.5 408.5q0 272 -84.5 405.5t-227.5 133.5t-227 -133.5t-84 -405.5zM487 672q0 61 37 98t90 37 t90 -37t37 -98q0 -62 -37 -99.5t-90 -37.5t-90 37.5t-37 99.5z" />
28
+ <glyph unicode="1" d="M203 0v139h368v963h-280v108q190 27 323 97h125v-1168h340v-139h-876z" />
29
+ <glyph unicode="2" d="M141 1133q95 97 197.5 147.5t232.5 50.5q195 0 310.5 -105.5t115.5 -279.5q0 -60 -18.5 -121.5t-59.5 -127.5t-88 -127t-123 -138.5t-143.5 -141.5t-169.5 -157q164 12 244 12h430v-145h-919v100q127 112 206 184t166.5 157t137.5 144.5t94.5 124t63 119.5t18.5 109 q0 117 -72.5 186.5t-212.5 69.5q-162 0 -313 -158z" />
30
+ <glyph unicode="3" d="M117 160l86 110q163 -155 375 -155q136 0 224.5 66t88.5 173q0 260 -475 260v129q220 0 324 67t104 177q0 95 -72.5 151t-193.5 56q-175 0 -322 -133l-90 106q190 164 418 164q190 0 311 -89t121 -243q0 -113 -75 -191t-204 -120v-8q140 -30 232 -117t92 -215 q0 -112 -64.5 -198t-171 -130.5t-237.5 -44.5q-286 0 -471 185z" />
31
+ <glyph unicode="4" d="M80 360v113l653 834h180v-811h203v-136h-203v-360h-159v360h-674zM266 496h488v405q3 104 10 232h-10q-23 -36 -70.5 -102t-62.5 -89z" />
32
+ <glyph unicode="5" d="M115 154l84 110q77 -70 162.5 -109.5t205.5 -39.5q141 0 236.5 82.5t95.5 216.5t-86.5 210t-234.5 76q-76 0 -133.5 -18.5t-133.5 -60.5l-90 57l43 629h740v-146h-590l-35 -387q122 53 242 53q96 0 176 -24.5t141.5 -73.5t96 -128.5t34.5 -182.5q0 -136 -69.5 -239 t-177.5 -153.5t-236 -50.5q-159 0 -270 49t-201 130z" />
33
+ <glyph unicode="6" d="M158 604q0 153 29.5 276.5t80.5 206.5t121.5 138.5t149 80.5t166.5 25q215 0 364 -139l-94 -105q-111 103 -260 103q-65 0 -121.5 -17.5t-107.5 -59t-87.5 -105t-59 -160t-24.5 -219.5q81 80 178 125t193 45q187 0 297.5 -104t110.5 -300q0 -121 -60.5 -218.5 t-160 -149.5t-216.5 -52q-223 0 -361 162.5t-138 466.5zM322 496q19 -188 105.5 -287.5t229.5 -99.5q119 0 198 79.5t79 206.5q0 134 -72 205.5t-207 71.5q-84 0 -171.5 -43.5t-161.5 -132.5z" />
34
+ <glyph unicode="7" d="M143 1161v146h947v-105q-172 -196 -267.5 -377.5t-135 -368.5t-48.5 -456h-176q17 372 113.5 628.5t320.5 532.5h-754z" />
35
+ <glyph unicode="8" d="M139 334q0 215 281 348v8q-199 124 -199 305q0 149 114 242.5t290 93.5q189 0 297 -96.5t108 -251.5q0 -87 -55.5 -168.5t-143.5 -142.5v-8q60 -30 101 -58t79 -68t57 -93.5t19 -120.5q0 -151 -125.5 -250t-343.5 -99t-348.5 100.5t-130.5 258.5zM293 350 q0 -110 90.5 -180t239.5 -70q143 0 223 63t80 167q0 49 -20.5 88.5t-44 64.5t-81.5 53t-92.5 40.5t-118.5 40.5q-35 12 -53 18q-106 -59 -164.5 -126.5t-58.5 -158.5zM375 995q0 -56 25 -100t76.5 -77.5t106.5 -56t138 -48.5q164 121 164 262q0 101 -69.5 166t-194.5 65 q-109 0 -177.5 -58t-68.5 -153z" />
36
+ <glyph unicode="9" d="M137 911q0 121 60.5 218.5t159 149.5t214.5 52q108 0 199 -40t159 -116.5t106 -197.5t38 -275q0 -189 -45 -333t-123 -228t-173.5 -125t-205.5 -41q-212 0 -364 138l94 106q109 -104 260 -104q64 0 120 18t106.5 59.5t87 105t59 160t24.5 218.5q-81 -80 -176.5 -124 t-193.5 -44q-187 0 -296.5 103.5t-109.5 299.5zM297 911q0 -134 71 -205t207 -71q82 0 170 43t164 131q-20 191 -105.5 290t-230.5 99q-119 0 -197.5 -80t-78.5 -207z" />
37
+ <glyph unicode=":" d="M449 147q0 77 47.5 126t117.5 49t118 -49t48 -126q0 -75 -48 -123.5t-118 -48.5t-117.5 48.5t-47.5 123.5zM449 881q0 77 47.5 125.5t117.5 48.5t118 -48.5t48 -125.5q0 -75 -48 -123.5t-118 -48.5t-117.5 48.5t-47.5 123.5z" />
38
+ <glyph unicode=";" d="M403 -330q128 58 191.5 140t67.5 202q-12 -4 -39 -4q-69 0 -114.5 40t-45.5 114q0 72 47.5 113.5t116.5 41.5q89 0 136.5 -70t47.5 -192q0 -177 -94 -302t-266 -189zM449 881q0 77 47.5 125.5t117.5 48.5t118 -48.5t48 -125.5q0 -75 -48 -123.5t-118 -48.5t-117.5 48.5 t-47.5 123.5z" />
39
+ <glyph unicode="&#x3c;" d="M246 616v127l764 519v-162l-617 -416v-8l617 -416v-162z" />
40
+ <glyph unicode="=" d="M174 393v127h881v-127h-881zM174 831v127h881v-127h-881z" />
41
+ <glyph unicode="&#x3e;" d="M219 98v162l617 416v8l-617 416v162l764 -519v-127z" />
42
+ <glyph unicode="?" d="M223 1231q159 166 377 166q171 0 276 -87.5t105 -232.5q0 -56 -20.5 -106.5t-52.5 -88.5t-70.5 -74.5t-75.5 -72t-66.5 -73t-44 -85.5t-6.5 -102h-149q-10 60 2 113.5t39.5 94.5t63 78.5t73.5 72.5t69.5 68.5t51.5 74t20 82.5q0 88 -58 143t-167 55q-148 0 -266 -118z M436 135q0 70 43.5 113t106.5 43t106 -43t43 -113q0 -72 -43 -116t-106 -44t-106.5 44t-43.5 116z" />
43
+ <glyph unicode="@" d="M100 512q0 191 46.5 342.5t128 248t190.5 147t237 50.5q137 0 232.5 -65t139.5 -173t44 -249v-608h-102l-15 119h-8q-47 -61 -120.5 -102.5t-149.5 -41.5q-112 0 -188 74t-76 195q0 152 134.5 234.5t405.5 115.5v28q0 103 -30.5 182t-101 129t-173.5 50q-94 0 -177 -43.5 t-147.5 -126.5t-102.5 -215t-38 -297q0 -161 36.5 -292t100.5 -217t150 -132.5t186 -46.5q164 0 289 92l58 -92q-162 -113 -351 -113q-123 0 -230.5 53t-190 152.5t-130 254.5t-47.5 347zM594 453q0 -72 44.5 -113t119.5 -41q113 0 229 131v258q-210 -29 -301.5 -84.5 t-91.5 -150.5z" />
44
+ <glyph unicode="A" d="M66 0l452 1343h193l452 -1343h-180l-127 410h-487l-129 -410h-174zM412 547h401l-63 205q-94 301 -134 452h-8q-63 -229 -133 -452z" />
45
+ <glyph unicode="B" d="M203 0v1343h381q105 0 187.5 -18t144.5 -56.5t95 -102t33 -150.5q0 -105 -60 -184t-175 -109v-8q150 -24 230.5 -105t80.5 -217q0 -193 -136.5 -293t-369.5 -100h-411zM373 143h217q362 0 362 258q0 122 -90.5 178t-271.5 56h-217v-492zM373 778h182q169 0 245.5 54.5 t76.5 168.5q0 106 -77 152.5t-237 46.5h-190v-422z" />
46
+ <glyph unicode="C" d="M133 672q0 319 167.5 507.5t434.5 188.5q112 0 207 -46.5t160 -117.5l-96 -108q-116 123 -271 123q-194 0 -310 -146.5t-116 -396.5q0 -253 116 -402t310 -149q170 0 303 149l97 -104q-168 -195 -416 -195q-124 0 -231.5 48t-186 136t-123.5 220t-45 293z" />
47
+ <glyph unicode="D" d="M178 0v1343h332q302 0 462.5 -172.5t160.5 -492.5q0 -322 -160 -500t-455 -178h-340zM348 139h150q227 0 342.5 140t115.5 399q0 256 -115 391t-343 135h-150v-1065z" />
48
+ <glyph unicode="E" d="M233 0v1343h832v-143h-659v-422h557v-145h-557v-488h679v-145h-852z" />
49
+ <glyph unicode="F" d="M272 0v1343h826v-143h-654v-455h553v-143h-553v-602h-172z" />
50
+ <glyph unicode="G" d="M109 672q0 321 165.5 508.5t430.5 187.5q214 0 370 -164l-96 -108q-56 59 -120 91t-154 32q-190 0 -304 -147t-114 -396q0 -256 108.5 -403.5t304.5 -147.5q70 0 133 21.5t101 58.5v350h-268v141h426v-565q-67 -69 -172.5 -112.5t-229.5 -43.5q-258 0 -419.5 187 t-161.5 510z" />
51
+ <glyph unicode="H" d="M162 0v1343h172v-563h561v563h172v-1343h-172v633h-561v-633h-172z" />
52
+ <glyph unicode="I" d="M195 0v145h333v1055h-333v143h839v-143h-334v-1055h334v-145h-839z" />
53
+ <glyph unicode="J" d="M166 199l106 104q55 -88 131.5 -133t157.5 -45q145 0 212 76.5t67 242.5v758h-564v144h734v-916q0 -78 -14 -143.5t-47 -124t-83 -99.5t-126.5 -64.5t-174.5 -23.5q-119 0 -226 56.5t-173 167.5z" />
54
+ <glyph unicode="K" d="M201 0v1343h172v-673h6l565 673h195l-426 -509l475 -834h-193l-391 705l-231 -277v-428h-172z" />
55
+ <glyph unicode="L" d="M274 0v1343h168v-1198h666v-145h-834z" />
56
+ <glyph unicode="M" d="M147 0v1343h209l189 -573l65 -217h8l64 217l190 573h209v-1343h-163v672q0 46 3.5 116.5t7.5 124.5t9.5 133t7.5 101h-6l-76 -262l-192 -529h-123l-189 529l-77 262h-4q28 -268 28 -475v-672h-160z" />
57
+ <glyph unicode="N" d="M168 0v1343h188l430 -843l129 -279h5q-1 32 -12 188t-11 238v696h164v-1343h-189l-430 844l-129 278h-4q2 -40 12.5 -190t10.5 -230v-702h-164z" />
58
+ <glyph unicode="O" d="M98 678q0 320 142.5 505t373.5 185t373.5 -185t142.5 -505q0 -325 -142.5 -514t-373.5 -189t-373.5 189t-142.5 514zM274 678q0 -256 92.5 -404.5t247.5 -148.5t247.5 148.5t92.5 404.5q0 251 -92.5 396t-247.5 145t-247.5 -145t-92.5 -396z" />
59
+ <glyph unicode="P" d="M209 0v1343h405q115 0 203.5 -20.5t156 -66t103 -123t35.5 -185.5q0 -206 -134 -311t-364 -105h-235v-532h-170zM379 672h215q177 0 261.5 67t84.5 209t-83.5 200t-262.5 58h-215v-534z" />
60
+ <glyph unicode="Q" d="M102 678q0 322 140 507t372 185t372 -185t140 -507q0 -288 -111.5 -470.5t-301.5 -221.5q35 -86 110 -130t181 -44q50 0 100 20l33 -137q-82 -29 -152 -29q-170 0 -285 86.5t-168 229.5q-198 34 -314 218t-116 478zM276 678q0 -262 91 -411.5t247 -149.5t247 149.5 t91 411.5q0 253 -91 399t-247 146t-247 -146t-91 -399z" />
61
+ <glyph unicode="R" d="M205 0v1343h418q469 0 469 -376q0 -152 -80 -248t-221 -133l342 -586h-195l-324 567h-239v-567h-170zM375 707h223q158 0 241 65.5t83 194.5q0 128 -80.5 183.5t-243.5 55.5h-223v-499z" />
62
+ <glyph unicode="S" d="M137 174l103 119q78 -78 179.5 -123t213.5 -45q136 0 214.5 59t78.5 154q0 23 -4.5 44t-9.5 37t-19 33t-22 27t-30.5 24.5t-32.5 20.5t-39 20t-39.5 18.5l-45.5 19.5l-192 84q-291 114 -291 346q0 154 124 255t316 101q122 0 230 -45t184 -121l-90 -110 q-143 127 -330 127q-118 0 -189 -53.5t-71 -143.5q0 -27 8.5 -51t18 -41t32.5 -35.5t36.5 -28t47 -25.5t46 -21t50.5 -21l189 -82q68 -28 117.5 -57.5t92.5 -72t65 -100t22 -129.5q0 -164 -129.5 -273.5t-345.5 -109.5q-144 0 -269 52.5t-219 146.5z" />
63
+ <glyph unicode="T" d="M86 1200v143h1057v-143h-443v-1200h-172v1200h-442z" />
64
+ <glyph unicode="U" d="M162 508v835h172v-839q0 -199 75.5 -289t206.5 -90t208 90.5t77 288.5v839h166v-835q0 -275 -121 -404t-330 -129q-102 0 -183 29.5t-142.5 92t-95 166.5t-33.5 245z" />
65
+ <glyph unicode="V" d="M88 1343h180l217 -725q14 -46 57.5 -199.5t71.5 -244.5h9q44 143 129 444l215 725h174l-426 -1343h-199z" />
66
+ <glyph unicode="W" d="M20 1346h193l98 -844q22 -212 27 -312h6q32 170 66 310l131 499h164l126 -499q28 -105 66 -310h8q11 178 25 310l94 846h184l-196 -1346h-213l-131 541q-37 151 -50 241h-6q-27 -161 -47 -241l-131 -541h-209z" />
67
+ <glyph unicode="X" d="M111 0l401 694l-375 649h189l188 -344q52 -91 109 -194h8q64 134 96 194l184 344h181l-375 -657l401 -686h-188l-203 362q-22 39 -119 216h-8q-57 -120 -108 -216l-201 -362h-180z" />
68
+ <glyph unicode="Y" d="M78 1343h180l203 -399q23 -47 73.5 -151t79.5 -162h9q28 58 81 163t76 152l195 397h176l-451 -864v-479h-172v479z" />
69
+ <glyph unicode="Z" d="M133 0v102l750 1100h-684v144h895v-103l-752 -1098h762v-145h-971z" />
70
+ <glyph unicode="[" d="M461 -311v1761h567v-96h-432v-1569h432v-96h-567z" />
71
+ <glyph unicode="\" d="M203 1454h151l672 -1782h-152z" />
72
+ <glyph unicode="]" d="M201 -215h432v1569h-432v96h567v-1761h-567v96z" />
73
+ <glyph unicode="^" d="M227 582l314 790h147l313 -790h-147l-135 360l-101 272h-8l-100 -272l-135 -360h-148z" />
74
+ <glyph unicode="_" d="M123 -141h983v-146h-983v146z" />
75
+ <glyph unicode="`" d="M336 1477l119 114l290 -344l-88 -84z" />
76
+ <glyph unicode="a" d="M166 258q0 168 168 255t553 118q-3 112 -66 181t-198 69q-157 0 -349 -119l-65 115q89 59 206 101t236 42q199 0 301.5 -109.5t102.5 -300.5v-610h-137l-15 135h-6q-207 -160 -393 -160q-144 0 -241 76.5t-97 206.5zM330 270q0 -80 62.5 -119.5t156.5 -39.5 q161 0 338 147v262q-208 -17 -333 -52t-174.5 -82.5t-49.5 -115.5z" />
77
+ <glyph unicode="b" d="M190 0v1458h168v-397l-6 -193h6q68 70 157.5 111t176.5 41q198 0 306 -136t108 -370q0 -124 -37 -227t-99.5 -170.5t-143.5 -104.5t-171 -37q-72 0 -155.5 36.5t-153.5 99.5h-6l-14 -111h-136zM358 233q66 -59 138.5 -87.5t132.5 -28.5q133 0 218 107t85 288 q0 172 -68.5 269.5t-212.5 97.5q-143 0 -293 -150v-496z" />
78
+ <glyph unicode="c" d="M164 496q0 122 44.5 222.5t120.5 165.5t176.5 100.5t213.5 35.5q212 0 362 -146l-84 -108q-131 115 -272 115q-172 0 -279.5 -106.5t-107.5 -278.5q0 -170 105.5 -275.5t277.5 -105.5q161 0 307 125l76 -109q-177 -156 -395 -156q-156 0 -279 60.5t-194.5 180 t-71.5 280.5z" />
79
+ <glyph unicode="d" d="M123 496q0 118 37.5 218t100 166t144 103t170.5 37q162 0 297 -129h7l-9 184v383h168v-1458h-139l-14 131h-6q-67 -68 -152 -112t-172 -44q-198 0 -315 137.5t-117 383.5zM297 498q0 -179 77.5 -280t215.5 -101q146 0 280 149v496q-125 117 -262 117q-131 0 -221 -107 t-90 -274z" />
80
+ <glyph unicode="e" d="M139 500q0 118 42 217.5t112.5 164.5t162 101.5t191.5 36.5q213 0 334 -127t121 -340q0 -48 -8 -102h-785q15 -164 120.5 -252t266.5 -88q155 0 303 94l62 -111q-177 -119 -385 -119q-151 0 -271.5 61t-193 182t-72.5 282zM313 582h635q-10 151 -88.5 228t-208.5 77 q-127 0 -221 -81t-117 -224z" />
81
+ <glyph unicode="f" d="M211 858v127l285 10v84q0 189 100.5 296.5t300.5 107.5q147 0 287 -58l-39 -127q-106 48 -232 48q-251 0 -251 -261v-90h417v-137h-417v-858h-166v858h-285z" />
82
+ <glyph unicode="g" d="M147 -182q0 60 42.5 118t121.5 103v8q-102 56 -102 164q0 48 31.5 98t87.5 88v9q-55 41 -89 107t-34 151q0 158 114 257t277 99q80 0 147 -25h412v-137h-258q84 -88 84 -201q0 -156 -109.5 -249t-275.5 -93q-87 0 -168 37q-78 -49 -78 -114q0 -115 207 -115h223 q195 0 287 -55t92 -179q0 -144 -153.5 -246t-399.5 -102q-218 0 -338.5 72.5t-120.5 204.5zM293 -166q0 -79 84 -124.5t241 -45.5q167 0 271 59.5t104 139.5q0 68 -54 94.5t-173 26.5h-195q-94 0 -151 16q-127 -69 -127 -166zM367 664q0 -105 66.5 -170.5t162.5 -65.5 q97 0 163 65.5t66 170.5q0 103 -66 168t-163 65q-96 0 -162.5 -65.5t-66.5 -167.5z" />
83
+ <glyph unicode="h" d="M190 0v1458h168v-397l-10 -236h6q85 93 174.5 144t198.5 51q344 0 344 -402v-618h-168v596q0 143 -54 210.5t-175 67.5q-85 0 -153.5 -41.5t-162.5 -138.5v-694h-168z" />
84
+ <glyph unicode="i" d="M184 858v137h631v-995h-168v858h-463zM578 1335q0 58 38.5 94.5t96.5 36.5t96.5 -36.5t38.5 -94.5q0 -59 -38.5 -95t-96.5 -36t-96.5 36t-38.5 95z" />
85
+ <glyph unicode="j" d="M113 -377l55 125q113 -55 227 -55q142 0 197 67t55 203v895h-463v137h631v-1020q0 -97 -20.5 -170t-67 -131t-129.5 -88t-201 -30q-147 0 -284 67zM578 1335q0 58 38.5 94.5t96.5 36.5t96.5 -36.5t38.5 -94.5q0 -59 -38.5 -95t-96.5 -36t-96.5 36t-38.5 95z" />
86
+ <glyph unicode="k" d="M217 0v1458h168v-987h8l537 524h192l-397 -391l451 -604h-189l-366 502l-236 -232v-270h-168z" />
87
+ <glyph unicode="l" d="M166 1321v137h508v-1136q0 -105 51.5 -156t144.5 -51q88 0 187 45l43 -125q-76 -32 -132.5 -46t-133.5 -14q-159 0 -243.5 91.5t-84.5 267.5v987h-340z" />
88
+ <glyph unicode="m" d="M119 0v995h135l14 -131h4q42 76 94.5 116t133.5 40q145 0 188 -172q47 87 100 129.5t134 42.5q105 0 163 -79.5t58 -227.5v-713h-168v700q0 174 -107 174q-49 0 -82 -34.5t-77 -118.5v-721h-156v700q0 88 -24 131t-78 43q-51 0 -88.5 -36.5t-75.5 -116.5v-721h-168z" />
89
+ <glyph unicode="n" d="M190 0v995h140l14 -170h8q87 93 176.5 144t198.5 51q344 0 344 -402v-618h-168v596q0 143 -54 210.5t-175 67.5q-85 0 -153.5 -41.5t-162.5 -138.5v-694h-168z" />
90
+ <glyph unicode="o" d="M123 496q0 122 40 222.5t107.5 165.5t156 100.5t187.5 35.5t187.5 -35.5t156.5 -100.5t108 -165.5t40 -222.5q0 -120 -40 -220t-108 -165t-156.5 -100.5t-187.5 -35.5t-187.5 35.5t-156 100.5t-107.5 165t-40 220zM297 496q0 -170 87.5 -275.5t229.5 -105.5t230 105.5 t88 275.5q0 172 -88 278.5t-230 106.5t-229.5 -106.5t-87.5 -278.5z" />
91
+ <glyph unicode="p" d="M190 -420v1415h140l14 -127h6q72 68 163.5 110t180.5 42q198 0 305 -136t107 -372q0 -123 -37 -226t-99.5 -170t-144.5 -104t-172 -37q-71 0 -151.5 34.5t-145.5 94.5h-6l8 -188v-336h-168zM358 233q66 -59 138 -87.5t129 -28.5q136 0 221.5 106.5t85.5 288.5 q0 172 -68.5 269.5t-212.5 97.5q-143 0 -293 -150v-496z" />
92
+ <glyph unicode="q" d="M123 496q0 118 37.5 218t100 166t144 103t170.5 37q88 0 161.5 -33.5t146.5 -101.5h6l14 110h135v-1415h-168v363l9 184h-7q-66 -68 -149 -110t-170 -42q-196 0 -313 137.5t-117 383.5zM297 498q0 -179 77.5 -280t215.5 -101q146 0 280 149v496q-125 117 -262 117 q-131 0 -221 -107t-90 -274z" />
93
+ <glyph unicode="r" d="M299 0v995h139l15 -235h6q80 123 194.5 191.5t249.5 68.5q116 0 197 -41l-39 -145q-56 20 -92 27t-92 7q-247 0 -410 -284v-584h-168z" />
94
+ <glyph unicode="s" d="M145 131l78 111q191 -136 432 -136q120 0 186 44.5t66 111.5q0 31 -11 53.5t-43 46t-95 44t-162 40.5q-197 40 -293 110t-96 181q0 125 108.5 204t305.5 79q108 0 215 -36t186 -91l-82 -109q-153 105 -334 105q-119 0 -174 -40.5t-55 -103.5q0 -62 64.5 -96.5 t224.5 -68.5q164 -36 254.5 -79.5t123.5 -96t33 -132.5q0 -127 -118 -212t-324 -85q-137 0 -264 43.5t-226 112.5z" />
95
+ <glyph unicode="t" d="M141 858v127l287 10l23 320h139v-320h489v-137h-489v-473q0 -140 56 -206t196 -66q119 0 239 45l37 -123q-164 -60 -311 -60q-207 0 -296 107t-89 305v471h-281z" />
96
+ <glyph unicode="u" d="M158 377v618h170v-596q0 -144 53.5 -211t175.5 -67q84 0 154 42.5t155 141.5v690h168v-995h-137l-14 174h-9q-170 -199 -370 -199q-346 0 -346 402z" />
97
+ <glyph unicode="v" d="M104 995h170l230 -565q32 -77 112 -293h9q6 15 45 124.5t63 168.5l230 565h161l-411 -995h-189z" />
98
+ <glyph unicode="w" d="M16 995h168l119 -577q30 -155 45 -275h8q11 88 58 275l123 516h168l118 -516q6 -24 17.5 -68t18 -71t14.5 -65t12 -71h8q5 31 20 126t25 149l119 577h155l-213 -995h-217l-114 475q-29 125 -50 295h-8q-23 -180 -49 -295l-110 -475h-218z" />
99
+ <glyph unicode="x" d="M131 0l379 516l-350 479h186l158 -219q64 -97 117 -168h8q47 70 112 172l150 215h178l-354 -493l381 -502h-185l-174 229q-114 158 -131 181h-8q-82 -118 -123 -181l-164 -229h-180z" />
100
+ <glyph unicode="y" d="M100 995h170l244 -551q17 -39 37.5 -87t46 -108.5t39.5 -92.5h8q92 247 107 288l217 551h159l-438 -1077q-130 -346 -422 -346q-73 0 -131 20l35 134q51 -15 90 -15q188 0 273 213l30 74z" />
101
+ <glyph unicode="z" d="M145 0v90l682 768h-606v137h848v-90l-684 -768h702v-137h-942z" />
102
+ <glyph unicode="{" d="M246 516v107q297 2 297 159q0 63 -9.5 193.5t-9.5 202.5q0 153 89 212.5t290 59.5h125v-96h-106q-104 0 -159.5 -20t-75 -58.5t-19.5 -108.5q0 -57 6 -181t6 -189q0 -102 -41 -154t-145 -70v-8q104 -18 145 -69.5t41 -153.5q0 -71 -6 -190.5t-6 -180.5q0 -70 20 -108.5 t75 -58t159 -19.5h106v-96h-125q-201 0 -290 59.5t-89 212.5q0 77 9.5 202.5t9.5 192.5q0 158 -297 160z" />
103
+ <glyph unicode="|" d="M539 -512v2048h151v-2048h-151z" />
104
+ <glyph unicode="}" d="M203 -215h104q152 0 204 41t52 145q0 61 -6 180.5t-6 190.5q0 102 40.5 153.5t143.5 69.5v8q-103 18 -143.5 69.5t-40.5 154.5q0 65 6 189t6 181q0 104 -52 145.5t-204 41.5h-104v96h125q199 0 288 -59.5t89 -212.5q0 -72 -9.5 -202.5t-9.5 -193.5q0 -157 297 -159v-107 q-297 -2 -297 -160q0 -67 9.5 -192.5t9.5 -202.5q0 -153 -89 -212.5t-288 -59.5h-125v96z" />
105
+ <glyph unicode="~" d="M156 569q96 256 278 256q54 0 108.5 -27t91 -59t81.5 -59t84 -27q52 0 92.5 38t73.5 138l108 -49q-96 -254 -278 -254q-54 0 -108.5 27t-91 59t-81.5 59t-84 27q-52 0 -92.5 -38.5t-73.5 -137.5z" />
106
+ <glyph unicode="&#xa0;" />
107
+ <glyph unicode="&#xa1;" d="M465 862q0 70 43 114t106 44t106.5 -44t43.5 -114q0 -71 -43 -114t-107 -43t-106.5 42.5t-42.5 114.5zM532 -377l5 193l20 704h115l20 -704l4 -193h-164z" />
108
+ <glyph unicode="&#xa2;" d="M231 635q0 205 115.5 333t296.5 152v217h105v-211q150 -8 268 -118l-82 -107q-87 81 -186 86v-704q112 8 215 96l73 -107q-134 -117 -288 -129v-211h-105v213q-187 21 -299.5 149.5t-112.5 340.5zM397 635q0 -136 65 -227t181 -117v686q-115 -26 -180.5 -117t-65.5 -225z " />
109
+ <glyph unicode="&#xa3;" d="M158 584v106l202 8q-2 6 -11.5 31.5t-12 33.5t-10 30.5t-10.5 33.5t-8 30.5t-7 33t-4 30.5t-2 33q0 173 117 275t313 102q221 0 360 -153l-98 -97q-109 109 -254 109q-131 0 -203.5 -66t-72.5 -174q0 -40 10.5 -88t19.5 -76t31 -88h387v-114h-354q12 -55 12 -115 q0 -104 -35.5 -177t-111.5 -138v-9h671v-145h-927v102q124 56 189 153t65 216q0 50 -17 113h-239z" />
110
+ <glyph unicode="&#xa4;" d="M119 262l172 174q-74 99 -74 238q0 138 72 239l-170 177l90 92l178 -185q98 76 227 76q126 0 228 -76l178 185l90 -92l-172 -177q74 -99 74 -239q0 -134 -74 -238l172 -174l-90 -92l-180 182q-96 -78 -226 -78q-126 0 -227 78l-178 -182zM373 674q0 -121 69.5 -198 t171.5 -77t172 77t70 198t-70 197.5t-172 76.5t-171.5 -76.5t-69.5 -197.5z" />
111
+ <glyph unicode="&#xa5;" d="M109 1307h174l188 -351q20 -39 66.5 -131.5t74.5 -144.5h9q109 214 143 276l188 351h168l-381 -656h332v-96h-375v-133h375v-98h-375v-324h-168v324h-370v98h370v133h-370v96h329z" />
112
+ <glyph unicode="&#xa6;" d="M539 389h151v-901h-151v901zM539 635v901h151v-901h-151z" />
113
+ <glyph unicode="&#xa7;" d="M186 702q0 169 187 267q-64 71 -64 166q0 112 81 189t228 77q178 0 330 -117l-82 -108q-124 94 -239 94q-82 0 -123 -36.5t-41 -92.5q0 -39 25 -72t65.5 -55.5t92.5 -47t106.5 -46.5t106.5 -54t92.5 -68.5t65.5 -92.5t25 -123q0 -93 -47.5 -156.5t-138.5 -110.5 q62 -68 62 -165q0 -122 -92.5 -201.5t-237.5 -79.5q-111 0 -206.5 38.5t-160.5 106.5l103 92q58 -53 120 -79.5t144 -26.5q81 0 128.5 40.5t47.5 100.5q0 47 -32 84t-83 63.5t-112.5 51.5t-123 56t-112.5 69.5t-83 99t-32 137.5zM332 713q0 -51 26.5 -91.5t75.5 -70.5 t99 -52.5t117 -51.5t110 -54q70 31 103.5 70.5t33.5 105.5q0 52 -26 93.5t-75 72t-98.5 53t-117 52t-109.5 53.5q-139 -71 -139 -180z" />
114
+ <glyph unicode="&#xa8;" d="M303 1319q0 48 32 81.5t81 33.5t80.5 -33.5t31.5 -81.5q0 -50 -31.5 -82.5t-80.5 -32.5t-81 32.5t-32 82.5zM700 1319q0 48 32 81.5t81 33.5t81 -33.5t32 -81.5q0 -50 -32 -82.5t-81 -32.5t-81 32.5t-32 82.5z" />
115
+ <glyph unicode="&#xa9;" d="M61 662q0 154 42.5 281.5t116.5 213.5t175.5 133t218.5 47t218.5 -47t175.5 -133t116.5 -213.5t42.5 -281.5q0 -308 -157 -496.5t-396 -188.5t-396 188.5t-157 496.5zM156 662q0 -269 126.5 -434t331.5 -165q206 0 332.5 165.5t126.5 433.5t-126.5 429.5t-332.5 161.5 t-332 -161.5t-126 -429.5zM299 662q0 173 99.5 280t238.5 107q120 0 213 -97l-70 -80q-71 64 -137 64q-93 0 -151 -76.5t-58 -197.5q0 -134 55 -213.5t146 -79.5q83 0 166 69l61 -86q-106 -96 -231 -96q-142 0 -237 110.5t-95 295.5z" />
116
+ <glyph unicode="&#xaa;" d="M334 981q0 107 108.5 166t339.5 78q-7 153 -153 153q-103 0 -217 -69l-52 88q144 86 291 86q130 0 196 -72t66 -203v-399h-108l-8 78h-4q-121 -94 -242 -94q-94 0 -155.5 51t-61.5 137zM461 993q0 -51 34.5 -75.5t88.5 -24.5q92 0 198 82v170q-171 -17 -246 -54t-75 -98z " />
117
+ <glyph unicode="&#xab;" d="M168 434v164l313 328l80 -72l-260 -338l260 -340l-80 -70zM639 434v164l313 328l80 -72l-260 -338l260 -340l-80 -70z" />
118
+ <glyph unicode="&#xac;" d="M174 612v127h881v-526h-135v399h-746z" />
119
+ <glyph unicode="&#xad;" d="M174 612v127h881v-127h-881z" />
120
+ <glyph unicode="&#xae;" d="M229 1057q0 177 111 290t274 113q162 0 273.5 -113t111.5 -290t-112 -290.5t-273 -113.5q-163 0 -274 113.5t-111 290.5zM309 1057q0 -145 87 -236.5t218 -91.5t217.5 91.5t86.5 236.5q0 144 -87 236.5t-217 92.5t-217.5 -93t-87.5 -236zM465 854v416h156q71 0 116 -32 t45 -101q0 -37 -21.5 -69t-55.5 -44l94 -170h-94l-72 143h-84v-143h-84zM549 1063h53q42 0 66 18.5t24 51.5q0 67 -86 67h-57v-137z" />
121
+ <glyph unicode="&#xaf;" d="M342 1231v117h545v-117h-545z" />
122
+ <glyph unicode="&#xb0;" d="M358 1139q0 118 75 191t181 73q107 0 182.5 -73t75.5 -191q0 -115 -76 -187.5t-182 -72.5t-181 72.5t-75 187.5zM461 1139q0 -72 43 -119t110 -47q69 0 112.5 47t43.5 119q0 75 -43.5 122.5t-112.5 47.5q-68 0 -110.5 -47.5t-42.5 -122.5z" />
123
+ <glyph unicode="&#xb1;" d="M174 0v127h881v-127h-881zM174 623v127h373v389h135v-389h373v-127h-373v-363h-135v363h-373z" />
124
+ <glyph unicode="&#xb2;" d="M299 1477q46 71 124 113t165 42q131 0 208.5 -67.5t77.5 -192.5q0 -25 -4.5 -49t-16.5 -49.5t-22.5 -45.5t-33.5 -48t-38.5 -46t-48.5 -50t-51 -49.5t-59.5 -56t-62.5 -58.5h376v-111h-581l-8 76q17 14 50 42q208 177 270 243q99 105 99 184q0 77 -47.5 122.5 t-126.5 45.5q-55 0 -105 -32t-87 -85z" />
125
+ <glyph unicode="&#xb3;" d="M291 940l86 68q38 -58 96.5 -88.5t126.5 -30.5q77 0 128.5 38t51.5 103q0 144 -268 144v81q117 0 177.5 40.5t60.5 105.5q0 57 -44.5 92t-119.5 35q-50 0 -99.5 -26.5t-85.5 -71.5l-77 69q111 133 280 133q116 0 196.5 -59t80.5 -156q0 -71 -39.5 -118t-122.5 -78 q89 -18 140.5 -69t51.5 -128q0 -108 -87.5 -174t-215.5 -66q-102 0 -186 42.5t-131 113.5z" />
126
+ <glyph unicode="&#xb4;" d="M483 1247l291 344l119 -114l-322 -314z" />
127
+ <glyph unicode="&#xb5;" d="M172 -383v1378h168v-596q0 -139 51 -208.5t160 -69.5q87 0 159 44.5t144 170.5v659h170q-12 -536 -12 -807q0 -73 57 -73q19 0 37 4l22 -127q-39 -17 -96 -17q-80 0 -119 48t-45 165h-4q-121 -208 -315 -208q-75 0 -129.5 23.5t-91.5 84.5q3 -322 14 -471h-170z" />
128
+ <glyph unicode="&#xb6;" d="M147 907q0 117 36 203t102.5 136t151.5 73.5t192 23.5h88v-880h-66q-111 0 -201.5 26.5t-159 79.5t-106 139t-37.5 199zM827 -164v1507h166v-1507h-166z" />
129
+ <glyph unicode="&#xb7;" d="M449 711q0 77 47.5 125.5t117.5 48.5t118 -48.5t48 -125.5q0 -75 -48 -123.5t-118 -48.5t-117.5 48.5t-47.5 123.5z" />
130
+ <glyph unicode="&#xb8;" d="M420 -381q125 9 174 32.5t49 69.5q0 41 -36 64t-122 35l82 196h111l-53 -147q75 -18 112 -51.5t37 -93.5q0 -171 -338 -187z" />
131
+ <glyph unicode="&#xb9;" d="M358 809v111h252v520h-215v84q86 12 139.5 30.5t100.5 53.5h106v-688h234v-111h-617z" />
132
+ <glyph unicode="&#xba;" d="M291 1137q0 159 94 252.5t229 93.5q137 0 230.5 -93t93.5 -253q0 -157 -94 -250.5t-230 -93.5q-135 0 -229 93.5t-94 250.5zM426 1137q0 -107 50.5 -172.5t137.5 -65.5t138 65.5t51 172.5q0 108 -51 173.5t-138 65.5t-137.5 -65.5t-50.5 -173.5z" />
133
+ <glyph unicode="&#xbb;" d="M197 176l260 340l-260 338l79 72l314 -328v-164l-314 -328zM668 176l260 340l-260 338l80 72l313 -328v-164l-313 -328z" />
134
+ <glyph unicode="&#xbc;" d="M57 158l375 385l68 -62l-342 -415zM137 1153v86q106 16 195 68h102v-625h-129v471h-168zM627 152v63l231 434l94 -41l-198 -370h204v198h117v-198h103v-86h-103v-152h-117v152h-331zM729 862l342 416l100 -92l-374 -385z" />
135
+ <glyph unicode="&#xbd;" d="M57 158l375 385l68 -62l-342 -415zM137 1153v86q106 16 195 68h102v-625h-129v471h-168zM643 524q106 125 242 125q111 0 174 -55t63 -156q0 -49 -35 -104.5t-70.5 -91t-117.5 -110.5l-8 -8t-8 -7t-9 -8h279v-109h-489v74q181 137 255 211t74 137q0 56 -32.5 88.5 t-90.5 32.5q-81 0 -147 -86zM729 862l342 416l100 -92l-374 -385z" />
136
+ <glyph unicode="&#xbe;" d="M63 768l66 80q32 -38 82 -63t104 -25q59 0 93 23.5t34 72.5q0 105 -196 105v77q82 0 124 28t42 77q0 41 -28 64.5t-85 23.5q-36 0 -77 -19.5t-72 -50.5l-62 78q39 42 102.5 67t133.5 25q97 0 157 -46t60 -126q0 -58 -27.5 -94.5t-87.5 -58.5q68 -15 106.5 -55.5 t38.5 -102.5q0 -88 -70 -139.5t-177 -51.5q-71 0 -140.5 29.5t-120.5 81.5zM109 158l374 385l68 -62l-342 -415zM627 152v63l231 434l94 -41l-198 -370h204v198h117v-198h103v-86h-103v-152h-117v152h-331zM780 862l342 416l101 -92l-375 -385z" />
137
+ <glyph unicode="&#xbf;" d="M248 -82q0 56 20.5 106.5t52.5 88.5t70.5 74.5t75.5 72t66.5 73t44 85.5t6.5 102h149q10 -60 -2 -113.5t-39.5 -94.5t-63 -78.5t-73.5 -72t-69.5 -68t-51.5 -74t-20 -82.5q0 -88 58 -142.5t167 -54.5q149 0 266 117l101 -93q-158 -165 -377 -165q-171 0 -276 87t-105 232 zM494 862q0 70 43 114t106 44t106.5 -44t43.5 -114q0 -71 -43 -114t-107 -43q-63 0 -106 42.5t-43 114.5z" />
138
+ <glyph unicode="&#xc0;" d="M66 0l452 1343h193l452 -1343h-180l-127 410h-487l-129 -410h-174zM362 1663l97 113l289 -263l-74 -86zM412 547h401l-63 205q-94 301 -134 452h-8q-63 -229 -133 -452z" />
139
+ <glyph unicode="&#xc1;" d="M66 0l452 1343h193l452 -1343h-180l-127 410h-487l-129 -410h-174zM412 547h401l-63 205q-94 301 -134 452h-8q-63 -229 -133 -452zM481 1513l289 263l96 -113l-311 -236z" />
140
+ <glyph unicode="&#xc2;" d="M66 0l452 1343h193l452 -1343h-180l-127 410h-487l-129 -410h-174zM311 1485l215 231h176l216 -231l-74 -53l-226 190h-8l-225 -190zM412 547h401l-63 205q-94 301 -134 452h-8q-63 -229 -133 -452z" />
141
+ <glyph unicode="&#xc3;" d="M66 0l452 1343h193l452 -1343h-180l-127 410h-487l-129 -410h-174zM252 1470q6 117 61.5 184.5t147.5 67.5q52 0 98.5 -22.5t75 -50t63.5 -50t66 -22.5q39 0 65 35t33 100l115 -8q-6 -118 -61.5 -185t-147.5 -67q-52 0 -98.5 22.5t-75 50t-63.5 50t-66 22.5 q-39 0 -65.5 -35t-32.5 -100zM412 547h401l-63 205q-94 301 -134 452h-8q-63 -229 -133 -452z" />
142
+ <glyph unicode="&#xc4;" d="M66 0l452 1343h193l452 -1343h-180l-127 410h-487l-129 -410h-174zM324 1569q0 45 29.5 73.5t74.5 28.5t73.5 -28.5t28.5 -73.5q0 -46 -29 -75.5t-73 -29.5t-74 30t-30 75zM412 547h401l-63 205q-94 301 -134 452h-8q-63 -229 -133 -452zM698 1569q0 45 29 73.5t74 28.5 t74.5 -28.5t29.5 -73.5t-29.5 -75t-74.5 -30q-44 0 -73.5 29.5t-29.5 75.5z" />
143
+ <glyph unicode="&#xc5;" d="M66 0l452 1343h193l452 -1343h-180l-127 410h-487l-129 -410h-174zM412 547h401l-63 205q-94 301 -134 452h-8q-63 -229 -133 -452zM416 1616q0 84 55.5 135t142.5 51q86 0 142.5 -51.5t56.5 -134.5q0 -82 -56.5 -133t-142.5 -51q-87 0 -142.5 50.5t-55.5 133.5z M508 1616q0 -52 30 -81.5t76 -29.5q44 0 74.5 29.5t30.5 81.5q0 50 -31 80t-74 30q-46 0 -76 -29.5t-30 -80.5z" />
144
+ <glyph unicode="&#xc6;" d="M-2 0l541 1343h653v-143h-387v-420h301v-145h-301v-490h405v-145h-561v391h-323l-150 -391h-178zM379 528h270v680h-6q-29 -78 -87 -223.5t-83 -212.5z" />
145
+ <glyph unicode="&#xc7;" d="M133 672q0 319 167.5 507.5t434.5 188.5q112 0 207 -46.5t160 -117.5l-96 -108q-116 123 -271 123q-194 0 -310 -146.5t-116 -396.5q0 -253 116 -402t310 -149q170 0 303 149l97 -104q-149 -176 -369 -193l-39 -108q75 -18 112.5 -51.5t37.5 -93.5q0 -171 -338 -187 l-17 82q125 9 174 32.5t49 69.5q0 41 -35.5 64t-121.5 35l65 160q-231 24 -375.5 208t-144.5 484z" />
146
+ <glyph unicode="&#xc8;" d="M233 0v1343h832v-143h-659v-422h557v-145h-557v-488h679v-145h-852zM426 1663l96 113l289 -263l-74 -86z" />
147
+ <glyph unicode="&#xc9;" d="M233 0v1343h832v-143h-659v-422h557v-145h-557v-488h679v-145h-852zM545 1513l289 263l96 -113l-312 -236z" />
148
+ <glyph unicode="&#xca;" d="M233 0v1343h832v-143h-659v-422h557v-145h-557v-488h679v-145h-852zM375 1485l215 231h176l215 -231l-74 -53l-225 190h-8l-225 -190z" />
149
+ <glyph unicode="&#xcb;" d="M233 0v1343h832v-143h-659v-422h557v-145h-557v-488h679v-145h-852zM387 1569q0 45 30 73.5t75 28.5t73.5 -28.5t28.5 -73.5q0 -46 -29 -75.5t-73 -29.5q-45 0 -75 30t-30 75zM762 1569q0 45 28.5 73.5t73.5 28.5t75 -28.5t30 -73.5t-30 -75t-75 -30q-44 0 -73 29.5 t-29 75.5z" />
150
+ <glyph unicode="&#xcc;" d="M195 0v145h333v1055h-333v143h839v-143h-334v-1055h334v-145h-839zM362 1663l97 113l289 -263l-74 -86z" />
151
+ <glyph unicode="&#xcd;" d="M195 0v145h333v1055h-333v143h839v-143h-334v-1055h334v-145h-839zM481 1513l289 263l96 -113l-311 -236z" />
152
+ <glyph unicode="&#xce;" d="M195 0v145h333v1055h-333v143h839v-143h-334v-1055h334v-145h-839zM311 1485l215 231h176l216 -231l-74 -53l-226 190h-8l-225 -190z" />
153
+ <glyph unicode="&#xcf;" d="M195 0v145h333v1055h-333v143h839v-143h-334v-1055h334v-145h-839zM324 1569q0 45 29.5 73.5t74.5 28.5t73.5 -28.5t28.5 -73.5q0 -46 -29 -75.5t-73 -29.5t-74 30t-30 75zM698 1569q0 45 29 73.5t74 28.5t74.5 -28.5t29.5 -73.5t-29.5 -75t-74.5 -30q-44 0 -73.5 29.5 t-29.5 75.5z" />
154
+ <glyph unicode="&#xd0;" d="M25 643v115l153 12v573h332q302 0 462.5 -172.5t160.5 -492.5q0 -322 -160 -500t-455 -178h-340v643h-153zM348 139h150q226 0 341 140t115 399q0 256 -114.5 391t-341.5 135h-150v-434h295v-127h-295v-504z" />
155
+ <glyph unicode="&#xd1;" d="M168 0v1343h188l430 -843l129 -279h5q-1 32 -12 188t-11 238v696h164v-1343h-189l-430 844l-129 278h-4q2 -40 12.5 -190t10.5 -230v-702h-164zM272 1470q6 117 61.5 184.5t147.5 67.5q52 0 98.5 -22.5t75 -50t63.5 -50t66 -22.5q39 0 65.5 35t33.5 100l114 -8 q-6 -118 -61.5 -185t-147.5 -67q-52 0 -98.5 22.5t-75 50t-63.5 50t-66 22.5q-39 0 -65.5 -35t-32.5 -100z" />
156
+ <glyph unicode="&#xd2;" d="M98 678q0 320 142.5 505t373.5 185t373.5 -185t142.5 -505q0 -325 -142.5 -514t-373.5 -189t-373.5 189t-142.5 514zM274 678q0 -256 92.5 -404.5t247.5 -148.5t247.5 148.5t92.5 404.5q0 251 -92.5 396t-247.5 145t-247.5 -145t-92.5 -396zM362 1663l97 113l289 -263 l-74 -86z" />
157
+ <glyph unicode="&#xd3;" d="M98 678q0 320 142.5 505t373.5 185t373.5 -185t142.5 -505q0 -325 -142.5 -514t-373.5 -189t-373.5 189t-142.5 514zM274 678q0 -256 92.5 -404.5t247.5 -148.5t247.5 148.5t92.5 404.5q0 251 -92.5 396t-247.5 145t-247.5 -145t-92.5 -396zM481 1513l289 263l96 -113 l-311 -236z" />
158
+ <glyph unicode="&#xd4;" d="M98 678q0 320 142.5 505t373.5 185t373.5 -185t142.5 -505q0 -325 -142.5 -514t-373.5 -189t-373.5 189t-142.5 514zM274 678q0 -256 92.5 -404.5t247.5 -148.5t247.5 148.5t92.5 404.5q0 251 -92.5 396t-247.5 145t-247.5 -145t-92.5 -396zM311 1485l215 231h176 l216 -231l-74 -53l-226 190h-8l-225 -190z" />
159
+ <glyph unicode="&#xd5;" d="M98 678q0 320 142.5 505t373.5 185t373.5 -185t142.5 -505q0 -325 -142.5 -514t-373.5 -189t-373.5 189t-142.5 514zM252 1470q6 117 61.5 184.5t147.5 67.5q52 0 98.5 -22.5t75 -50t63.5 -50t66 -22.5q39 0 65 35t33 100l115 -8q-6 -118 -61.5 -185t-147.5 -67 q-52 0 -98.5 22.5t-75 50t-63.5 50t-66 22.5q-39 0 -65.5 -35t-32.5 -100zM274 678q0 -256 92.5 -404.5t247.5 -148.5t247.5 148.5t92.5 404.5q0 251 -92.5 396t-247.5 145t-247.5 -145t-92.5 -396z" />
160
+ <glyph unicode="&#xd6;" d="M98 678q0 320 142.5 505t373.5 185t373.5 -185t142.5 -505q0 -325 -142.5 -514t-373.5 -189t-373.5 189t-142.5 514zM274 678q0 -256 92.5 -404.5t247.5 -148.5t247.5 148.5t92.5 404.5q0 251 -92.5 396t-247.5 145t-247.5 -145t-92.5 -396zM324 1569q0 45 29.5 73.5 t74.5 28.5t73.5 -28.5t28.5 -73.5q0 -46 -29 -75.5t-73 -29.5t-74 30t-30 75zM698 1569q0 45 29 73.5t74 28.5t74.5 -28.5t29.5 -73.5t-29.5 -75t-74.5 -30q-44 0 -73.5 29.5t-29.5 75.5z" />
161
+ <glyph unicode="&#xd7;" d="M209 350l315 326l-315 323l90 93l315 -326l316 326l90 -93l-315 -323l315 -326l-90 -92l-316 328l-315 -328z" />
162
+ <glyph unicode="&#xd8;" d="M74 8l137 201q-113 184 -113 469q0 320 142.5 505t373.5 185q180 0 312 -117l106 158l115 -74l-131 -192q114 -177 114 -465q0 -325 -142.5 -514t-373.5 -189q-183 0 -315 123l-111 -164zM274 678q0 -177 48 -307l509 745q-89 103 -217 103q-155 0 -247.5 -145 t-92.5 -396zM393 236q88 -111 221 -111q155 0 247.5 148.5t92.5 404.5q0 183 -49 305z" />
163
+ <glyph unicode="&#xd9;" d="M162 508v835h172v-839q0 -199 75.5 -289t206.5 -90t208 90.5t77 288.5v839h166v-835q0 -275 -121 -404t-330 -129q-102 0 -183 29.5t-142.5 92t-95 166.5t-33.5 245zM362 1663l97 113l289 -263l-74 -86z" />
164
+ <glyph unicode="&#xda;" d="M162 508v835h172v-839q0 -199 75.5 -289t206.5 -90t208 90.5t77 288.5v839h166v-835q0 -275 -121 -404t-330 -129q-102 0 -183 29.5t-142.5 92t-95 166.5t-33.5 245zM481 1513l289 263l96 -113l-311 -236z" />
165
+ <glyph unicode="&#xdb;" d="M162 508v835h172v-839q0 -199 75.5 -289t206.5 -90t208 90.5t77 288.5v839h166v-835q0 -275 -121 -404t-330 -129q-102 0 -183 29.5t-142.5 92t-95 166.5t-33.5 245zM311 1485l215 231h176l216 -231l-74 -53l-226 190h-8l-225 -190z" />
166
+ <glyph unicode="&#xdc;" d="M162 508v835h172v-839q0 -199 75.5 -289t206.5 -90t208 90.5t77 288.5v839h166v-835q0 -275 -121 -404t-330 -129q-102 0 -183 29.5t-142.5 92t-95 166.5t-33.5 245zM324 1569q0 45 29.5 73.5t74.5 28.5t73.5 -28.5t28.5 -73.5q0 -46 -29 -75.5t-73 -29.5t-74 30t-30 75z M698 1569q0 45 29 73.5t74 28.5t74.5 -28.5t29.5 -73.5t-29.5 -75t-74.5 -30q-44 0 -73.5 29.5t-29.5 75.5z" />
167
+ <glyph unicode="&#xdd;" d="M78 1343h180l203 -399q23 -47 73.5 -151t79.5 -162h9q28 58 81 163t76 152l195 397h176l-451 -864v-479h-172v479zM481 1513l289 263l96 -113l-311 -236z" />
168
+ <glyph unicode="&#xde;" d="M207 0v1343h172v-225h242q115 0 203 -21t155 -66.5t102 -123t35 -184.5q0 -207 -133 -311.5t-362 -104.5h-242v-307h-172zM379 446h219q178 0 263 66.5t85 210.5q0 140 -84 198t-264 58h-219v-533z" />
169
+ <glyph unicode="&#xdf;" d="M180 0v1063q0 191 111 305.5t301 114.5q156 0 246 -87.5t90 -215.5q0 -57 -19 -107.5t-46 -87t-54.5 -70.5t-46.5 -72.5t-19 -76.5q0 -40 22.5 -72t59 -55t80.5 -45t88 -49t80.5 -60.5t59 -85.5t22.5 -118q0 -132 -92 -219t-242 -87q-155 0 -295 93l68 118 q115 -80 223 -80q83 0 130.5 46.5t47.5 113.5q0 48 -23 86t-59 63.5t-80.5 48.5t-88.5 48t-80 54.5t-59 75t-23 103.5q0 62 29 120t63 96.5t63 94t29 113.5q0 78 -47 127.5t-129 49.5q-114 0 -178 -79t-64 -229v-1038h-168z" />
170
+ <glyph unicode="&#xe0;" d="M166 258q0 168 168 255t553 118q-3 112 -66 181t-198 69q-157 0 -349 -119l-65 115q89 59 206 101t236 42q199 0 301.5 -109.5t102.5 -300.5v-610h-137l-15 135h-6q-207 -160 -393 -160q-144 0 -241 76.5t-97 206.5zM330 270q0 -80 62.5 -119.5t156.5 -39.5 q161 0 338 147v262q-208 -17 -333 -52t-174.5 -82.5t-49.5 -115.5zM377 1477l119 114l290 -344l-88 -84z" />
171
+ <glyph unicode="&#xe1;" d="M166 258q0 168 168 255t553 118q-3 112 -66 181t-198 69q-157 0 -349 -119l-65 115q89 59 206 101t236 42q199 0 301.5 -109.5t102.5 -300.5v-610h-137l-15 135h-6q-207 -160 -393 -160q-144 0 -241 76.5t-97 206.5zM330 270q0 -80 62.5 -119.5t156.5 -39.5 q161 0 338 147v262q-208 -17 -333 -52t-174.5 -82.5t-49.5 -115.5zM524 1247l291 344l119 -114l-322 -314z" />
172
+ <glyph unicode="&#xe2;" d="M166 258q0 168 168 255t553 118q-3 112 -66 181t-198 69q-157 0 -349 -119l-65 115q89 59 206 101t236 42q199 0 301.5 -109.5t102.5 -300.5v-610h-137l-15 135h-6q-207 -160 -393 -160q-144 0 -241 76.5t-97 206.5zM330 270q0 -80 62.5 -119.5t156.5 -39.5 q161 0 338 147v262q-208 -17 -333 -52t-174.5 -82.5t-49.5 -115.5zM338 1229l233 287h168l234 -287l-72 -66l-242 232h-8l-241 -232z" />
173
+ <glyph unicode="&#xe3;" d="M166 258q0 168 168 255t553 118q-3 112 -66 181t-198 69q-157 0 -349 -119l-65 115q89 59 206 101t236 42q199 0 301.5 -109.5t102.5 -300.5v-610h-137l-15 135h-6q-207 -160 -393 -160q-144 0 -241 76.5t-97 206.5zM301 1198q5 128 55.5 203.5t151.5 75.5q49 0 93.5 -27 t72.5 -59t63 -59t66 -27q42 0 65.5 43.5t28.5 117.5l113 -8q-5 -126 -55.5 -201t-151.5 -75q-40 0 -76.5 17.5t-63 43t-51 51t-50.5 43t-52 17.5q-86 0 -96 -162zM330 270q0 -80 62.5 -119.5t156.5 -39.5q161 0 338 147v262q-208 -17 -333 -52t-174.5 -82.5t-49.5 -115.5z " />
174
+ <glyph unicode="&#xe4;" d="M166 258q0 168 168 255t553 118q-3 112 -66 181t-198 69q-157 0 -349 -119l-65 115q89 59 206 101t236 42q199 0 301.5 -109.5t102.5 -300.5v-610h-137l-15 135h-6q-207 -160 -393 -160q-144 0 -241 76.5t-97 206.5zM330 270q0 -80 62.5 -119.5t156.5 -39.5 q161 0 338 147v262q-208 -17 -333 -52t-174.5 -82.5t-49.5 -115.5zM344 1319q0 48 32 81.5t81 33.5t80.5 -33.5t31.5 -81.5q0 -50 -31.5 -82.5t-80.5 -32.5t-81 32.5t-32 82.5zM741 1319q0 48 32 81.5t81 33.5t81 -33.5t32 -81.5q0 -50 -32 -82.5t-81 -32.5t-81 32.5 t-32 82.5z" />
175
+ <glyph unicode="&#xe5;" d="M166 258q0 168 168 255t553 118q-3 112 -66 181t-198 69q-157 0 -349 -119l-65 115q89 59 206 101t236 42q199 0 301.5 -109.5t102.5 -300.5v-610h-137l-15 135h-6q-207 -160 -393 -160q-144 0 -241 76.5t-97 206.5zM330 270q0 -80 62.5 -119.5t156.5 -39.5 q161 0 338 147v262q-208 -17 -333 -52t-174.5 -82.5t-49.5 -115.5zM430 1362q0 86 61 141.5t164 55.5t164.5 -56t61.5 -141t-61.5 -141t-164.5 -56t-164 55.5t-61 141.5zM539 1362q0 -51 33.5 -86t82.5 -35t83 35t34 86q0 52 -33.5 86.5t-83.5 34.5t-83 -34.5t-33 -86.5z " />
176
+ <glyph unicode="&#xe6;" d="M35 246q0 155 122 247t388 125q-8 263 -180 263q-114 0 -234 -82l-63 114q166 107 311 107q186 0 252 -205q49 104 124 154.5t163 50.5q100 0 170.5 -64t102.5 -164.5t32 -226.5q0 -35 -9 -114h-534q8 -159 74 -248.5t182 -89.5q101 0 194 65l62 -115q-122 -88 -262 -88 q-202 0 -307 179q-152 -179 -326 -179q-116 0 -189 73.5t-73 197.5zM190 262q0 -71 41.5 -111t110.5 -40q58 0 121.5 36.5t116.5 104.5q-35 110 -35 244v14q-197 -29 -276 -90t-79 -158zM682 582h403q-9 305 -178 305q-85 0 -148 -75t-77 -230z" />
177
+ <glyph unicode="&#xe7;" d="M164 496q0 122 44.5 222.5t120.5 165.5t176.5 100.5t213.5 35.5q212 0 362 -146l-84 -108q-131 115 -272 115q-172 0 -279.5 -106.5t-107.5 -278.5q0 -170 105.5 -275.5t277.5 -105.5q161 0 307 125l76 -109q-151 -136 -346 -154l-39 -108q75 -18 112 -51.5t37 -93.5 q0 -171 -338 -187l-16 82q125 9 174 32.5t49 69.5q0 41 -35.5 64t-121.5 35l65 157q-215 19 -348 156.5t-133 362.5z" />
178
+ <glyph unicode="&#xe8;" d="M139 500q0 118 42 217.5t112.5 164.5t162 101.5t191.5 36.5q213 0 334 -127t121 -340q0 -48 -8 -102h-785q15 -164 120.5 -252t266.5 -88q155 0 303 94l62 -111q-177 -119 -385 -119q-151 0 -271.5 61t-193 182t-72.5 282zM313 582h635q-10 151 -88.5 228t-208.5 77 q-127 0 -221 -81t-117 -224zM369 1477l118 114l291 -344l-88 -84z" />
179
+ <glyph unicode="&#xe9;" d="M139 500q0 118 42 217.5t112.5 164.5t162 101.5t191.5 36.5q213 0 334 -127t121 -340q0 -48 -8 -102h-785q15 -164 120.5 -252t266.5 -88q155 0 303 94l62 -111q-177 -119 -385 -119q-151 0 -271.5 61t-193 182t-72.5 282zM313 582h635q-10 151 -88.5 228t-208.5 77 q-127 0 -221 -81t-117 -224zM516 1247l291 344l119 -114l-322 -314z" />
180
+ <glyph unicode="&#xea;" d="M139 500q0 118 42 217.5t112.5 164.5t162 101.5t191.5 36.5q213 0 334 -127t121 -340q0 -48 -8 -102h-785q15 -164 120.5 -252t266.5 -88q155 0 303 94l62 -111q-177 -119 -385 -119q-151 0 -271.5 61t-193 182t-72.5 282zM313 582h635q-10 151 -88.5 228t-208.5 77 q-127 0 -221 -81t-117 -224zM330 1229l233 287h168l234 -287l-72 -66l-242 232h-8l-242 -232z" />
181
+ <glyph unicode="&#xeb;" d="M139 500q0 118 42 217.5t112.5 164.5t162 101.5t191.5 36.5q213 0 334 -127t121 -340q0 -48 -8 -102h-785q15 -164 120.5 -252t266.5 -88q155 0 303 94l62 -111q-177 -119 -385 -119q-151 0 -271.5 61t-193 182t-72.5 282zM313 582h635q-10 151 -88.5 228t-208.5 77 q-127 0 -221 -81t-117 -224zM336 1319q0 48 32 81.5t81 33.5t80.5 -33.5t31.5 -81.5q0 -50 -31.5 -82.5t-80.5 -32.5t-81 32.5t-32 82.5zM733 1319q0 48 32 81.5t81 33.5t80.5 -33.5t31.5 -81.5q0 -50 -31.5 -82.5t-80.5 -32.5t-81 32.5t-32 82.5z" />
182
+ <glyph unicode="&#xec;" d="M184 858v137h631v-995h-168v858h-463zM434 1477l119 114l291 -344l-88 -84z" />
183
+ <glyph unicode="&#xed;" d="M184 858v137h631v-995h-168v858h-463zM582 1247l290 344l119 -114l-321 -314z" />
184
+ <glyph unicode="&#xee;" d="M184 858v137h631v-995h-168v858h-463zM395 1229l234 287h168l233 -287l-72 -66l-241 232h-8l-242 -232z" />
185
+ <glyph unicode="&#xef;" d="M184 858v137h631v-995h-168v858h-463zM401 1319q0 48 32 81.5t81 33.5t81 -33.5t32 -81.5q0 -50 -32 -82.5t-81 -32.5t-81 32.5t-32 82.5zM799 1319q0 48 31.5 81.5t80.5 33.5t81 -33.5t32 -81.5q0 -50 -32 -82.5t-81 -32.5t-80.5 32.5t-31.5 82.5z" />
186
+ <glyph unicode="&#xf0;" d="M123 455q0 207 131 333.5t336 126.5q95 0 181.5 -43.5t143.5 -119.5q-53 257 -235 419l-311 -159l-62 106l266 135q-93 65 -235 136l78 106q179 -84 295 -172l280 143l62 -102l-242 -125q287 -277 287 -713q0 -248 -132.5 -399.5t-355.5 -151.5q-130 0 -240 57 t-178.5 168t-68.5 255zM281 455q0 -150 96.5 -245t236.5 -95q158 0 240 110t82 295q0 61 -2 90q-132 174 -320 174q-159 0 -246 -91.5t-87 -237.5z" />
187
+ <glyph unicode="&#xf1;" d="M190 0v995h140l14 -170h8q87 93 176.5 144t198.5 51q344 0 344 -402v-618h-168v596q0 143 -54 210.5t-175 67.5q-85 0 -153.5 -41.5t-162.5 -138.5v-694h-168zM297 1198q5 128 55.5 203.5t151.5 75.5q49 0 93.5 -27t72.5 -59t63 -59t66 -27q42 0 65.5 43.5t28.5 117.5 l113 -8q-5 -126 -55.5 -201t-151.5 -75q-40 0 -76.5 17.5t-63 43t-51 51t-50.5 43t-52 17.5q-86 0 -96 -162z" />
188
+ <glyph unicode="&#xf2;" d="M123 496q0 122 40 222.5t107.5 165.5t156 100.5t187.5 35.5t187.5 -35.5t156.5 -100.5t108 -165.5t40 -222.5q0 -120 -40 -220t-108 -165t-156.5 -100.5t-187.5 -35.5t-187.5 35.5t-156 100.5t-107.5 165t-40 220zM297 496q0 -170 87.5 -275.5t229.5 -105.5t230 105.5 t88 275.5q0 172 -88 278.5t-230 106.5t-229.5 -106.5t-87.5 -278.5zM336 1477l119 114l290 -344l-88 -84z" />
189
+ <glyph unicode="&#xf3;" d="M123 496q0 122 40 222.5t107.5 165.5t156 100.5t187.5 35.5t187.5 -35.5t156.5 -100.5t108 -165.5t40 -222.5q0 -120 -40 -220t-108 -165t-156.5 -100.5t-187.5 -35.5t-187.5 35.5t-156 100.5t-107.5 165t-40 220zM297 496q0 -170 87.5 -275.5t229.5 -105.5t230 105.5 t88 275.5q0 172 -88 278.5t-230 106.5t-229.5 -106.5t-87.5 -278.5zM483 1247l291 344l119 -114l-322 -314z" />
190
+ <glyph unicode="&#xf4;" d="M123 496q0 122 40 222.5t107.5 165.5t156 100.5t187.5 35.5t187.5 -35.5t156.5 -100.5t108 -165.5t40 -222.5q0 -120 -40 -220t-108 -165t-156.5 -100.5t-187.5 -35.5t-187.5 35.5t-156 100.5t-107.5 165t-40 220zM297 496q0 -170 87.5 -275.5t229.5 -105.5t230 105.5 t88 275.5q0 172 -88 278.5t-230 106.5t-229.5 -106.5t-87.5 -278.5zM297 1229l233 287h168l234 -287l-72 -66l-242 232h-8l-241 -232z" />
191
+ <glyph unicode="&#xf5;" d="M123 496q0 122 40 222.5t107.5 165.5t156 100.5t187.5 35.5t187.5 -35.5t156.5 -100.5t108 -165.5t40 -222.5q0 -120 -40 -220t-108 -165t-156.5 -100.5t-187.5 -35.5t-187.5 35.5t-156 100.5t-107.5 165t-40 220zM260 1198q5 128 55.5 203.5t151.5 75.5q49 0 93.5 -27 t72.5 -59t63 -59t66 -27q42 0 65.5 43.5t28.5 117.5l113 -8q-5 -126 -55.5 -201t-151.5 -75q-40 0 -76.5 17.5t-63 43t-51 51t-50.5 43t-52 17.5q-86 0 -96 -162zM297 496q0 -170 87.5 -275.5t229.5 -105.5t230 105.5t88 275.5q0 172 -88 278.5t-230 106.5t-229.5 -106.5 t-87.5 -278.5z" />
192
+ <glyph unicode="&#xf6;" d="M123 496q0 122 40 222.5t107.5 165.5t156 100.5t187.5 35.5t187.5 -35.5t156.5 -100.5t108 -165.5t40 -222.5q0 -120 -40 -220t-108 -165t-156.5 -100.5t-187.5 -35.5t-187.5 35.5t-156 100.5t-107.5 165t-40 220zM297 496q0 -170 87.5 -275.5t229.5 -105.5t230 105.5 t88 275.5q0 172 -88 278.5t-230 106.5t-229.5 -106.5t-87.5 -278.5zM303 1319q0 48 32 81.5t81 33.5t80.5 -33.5t31.5 -81.5q0 -50 -31.5 -82.5t-80.5 -32.5t-81 32.5t-32 82.5zM700 1319q0 48 32 81.5t81 33.5t81 -33.5t32 -81.5q0 -50 -32 -82.5t-81 -32.5t-81 32.5 t-32 82.5z" />
193
+ <glyph unicode="&#xf7;" d="M174 612v127h881v-127h-881zM504 307q0 47 31.5 78t78.5 31t79 -31t32 -78q0 -49 -31.5 -79.5t-79.5 -30.5t-79 30.5t-31 79.5zM504 1044q0 47 31.5 78t78.5 31t79 -31t32 -78q0 -49 -31.5 -79.5t-79.5 -30.5t-79 30.5t-31 79.5z" />
194
+ <glyph unicode="&#xf8;" d="M123 496q0 122 40 222.5t107.5 165.5t156 100.5t187.5 35.5q160 0 287 -88l107 125l94 -86l-109 -127q113 -139 113 -348q0 -120 -40 -220t-108 -165t-156.5 -100.5t-187.5 -35.5q-159 0 -286 88l-107 -124l-94 86l109 127q-113 139 -113 344zM297 496q0 -125 47 -217 l459 538q-77 68 -189 68q-142 0 -229.5 -108.5t-87.5 -280.5zM424 176q81 -65 190 -65q142 0 230 107t88 278q0 130 -47 219z" />
195
+ <glyph unicode="&#xf9;" d="M158 377v618h170v-596q0 -144 53.5 -211t175.5 -67q84 0 154 42.5t155 141.5v690h168v-995h-137l-14 174h-9q-170 -199 -370 -199q-346 0 -346 402zM326 1477l118 114l291 -344l-88 -84z" />
196
+ <glyph unicode="&#xfa;" d="M158 377v618h170v-596q0 -144 53.5 -211t175.5 -67q84 0 154 42.5t155 141.5v690h168v-995h-137l-14 174h-9q-170 -199 -370 -199q-346 0 -346 402zM473 1247l291 344l119 -114l-322 -314z" />
197
+ <glyph unicode="&#xfb;" d="M158 377v618h170v-596q0 -144 53.5 -211t175.5 -67q84 0 154 42.5t155 141.5v690h168v-995h-137l-14 174h-9q-170 -199 -370 -199q-346 0 -346 402zM287 1229l233 287h168l234 -287l-72 -66l-242 232h-8l-242 -232z" />
198
+ <glyph unicode="&#xfc;" d="M158 377v618h170v-596q0 -144 53.5 -211t175.5 -67q84 0 154 42.5t155 141.5v690h168v-995h-137l-14 174h-9q-170 -199 -370 -199q-346 0 -346 402zM293 1319q0 48 32 81.5t81 33.5t80.5 -33.5t31.5 -81.5q0 -50 -31.5 -82.5t-80.5 -32.5t-81 32.5t-32 82.5zM690 1319 q0 48 32 81.5t81 33.5t80.5 -33.5t31.5 -81.5q0 -50 -31.5 -82.5t-80.5 -32.5t-81 32.5t-32 82.5z" />
199
+ <glyph unicode="&#xfd;" d="M100 995h170l244 -551q17 -39 37.5 -87t46 -108.5t39.5 -92.5h8q92 247 107 288l217 551h159l-438 -1077q-130 -346 -422 -346q-73 0 -131 20l35 134q51 -15 90 -15q188 0 273 213l30 74zM492 1247l290 344l119 -114l-321 -314z" />
200
+ <glyph unicode="&#xfe;" d="M190 -420v1878h168v-411l-6 -179h6q70 70 158 111t174 41q198 0 307 -136.5t109 -371.5q0 -123 -37.5 -226t-100.5 -170t-144.5 -104t-170.5 -37q-72 0 -151 35t-144 94h-6l6 -188v-336h-168zM358 233q66 -59 137.5 -87.5t129.5 -28.5q134 0 220.5 107t86.5 288 q0 172 -69.5 269.5t-213.5 97.5q-141 0 -291 -150v-496z" />
201
+ <glyph unicode="&#xff;" d="M100 995h170l244 -551q17 -39 37.5 -87t46 -108.5t39.5 -92.5h8q92 247 107 288l217 551h159l-438 -1077q-130 -346 -422 -346q-73 0 -131 20l35 134q51 -15 90 -15q188 0 273 213l30 74zM311 1319q0 48 32 81.5t81 33.5t81 -33.5t32 -81.5q0 -50 -32 -82.5t-81 -32.5 t-81 32.5t-32 82.5zM709 1319q0 48 31.5 81.5t80.5 33.5t81 -33.5t32 -81.5q0 -50 -32 -82.5t-81 -32.5t-80.5 32.5t-31.5 82.5z" />
202
+ <glyph unicode="&#x152;" d="M68 678q0 318 144 493t400 175h578v-144h-397v-424h303v-145h-303v-488h417v-145h-604q-254 0 -396 178.5t-142 499.5zM244 678q0 -260 87.5 -399.5t260.5 -139.5h45v1065h-45q-173 0 -260.5 -134.5t-87.5 -391.5z" />
203
+ <glyph unicode="&#x153;" d="M23 496q0 244 99.5 384t254.5 140q190 0 268 -246q39 123 112 184.5t171 61.5q95 0 163 -63.5t100 -164.5t32 -227q0 -35 -9 -114h-503q9 -165 74.5 -251.5t168.5 -86.5q83 0 176 65l62 -115q-113 -88 -244 -88q-104 0 -182.5 59.5t-118.5 180.5q-82 -240 -272 -240 q-155 0 -253.5 139.5t-98.5 381.5zM180 496q0 -174 53.5 -277.5t151.5 -103.5q89 0 143 106t54 277t-54 277t-143 106q-98 0 -151.5 -104t-53.5 -281zM713 582h372q-9 305 -172 305q-82 0 -136 -78.5t-64 -226.5z" />
204
+ <glyph unicode="&#x178;" d="M78 1343h180l203 -399q23 -47 73.5 -151t79.5 -162h9q28 58 81 163t76 152l195 397h176l-451 -864v-479h-172v479zM324 1569q0 45 29.5 73.5t74.5 28.5t73.5 -28.5t28.5 -73.5q0 -46 -29 -75.5t-73 -29.5t-74 30t-30 75zM698 1569q0 45 29 73.5t74 28.5t74.5 -28.5 t29.5 -73.5t-29.5 -75t-74.5 -30q-44 0 -73.5 29.5t-29.5 75.5z" />
205
+ <glyph unicode="&#x2c6;" d="M297 1229l233 287h168l234 -287l-72 -66l-242 232h-8l-241 -232z" />
206
+ <glyph unicode="&#x2dc;" d="M260 1198q5 128 55.5 203.5t151.5 75.5q49 0 93.5 -27t72.5 -59t63 -59t66 -27q42 0 65.5 43.5t28.5 117.5l113 -8q-5 -126 -55.5 -201t-151.5 -75q-40 0 -76.5 17.5t-63 43t-51 51t-50.5 43t-52 17.5q-86 0 -96 -162z" />
207
+ <glyph unicode="&#x2000;" horiz-adv-x="901" />
208
+ <glyph unicode="&#x2001;" horiz-adv-x="1802" />
209
+ <glyph unicode="&#x2002;" horiz-adv-x="901" />
210
+ <glyph unicode="&#x2003;" horiz-adv-x="1802" />
211
+ <glyph unicode="&#x2004;" horiz-adv-x="600" />
212
+ <glyph unicode="&#x2005;" horiz-adv-x="450" />
213
+ <glyph unicode="&#x2006;" horiz-adv-x="300" />
214
+ <glyph unicode="&#x2007;" horiz-adv-x="300" />
215
+ <glyph unicode="&#x2008;" horiz-adv-x="225" />
216
+ <glyph unicode="&#x2009;" horiz-adv-x="360" />
217
+ <glyph unicode="&#x200a;" horiz-adv-x="100" />
218
+ <glyph unicode="&#x2010;" d="M174 612v127h881v-127h-881z" />
219
+ <glyph unicode="&#x2011;" d="M174 612v127h881v-127h-881z" />
220
+ <glyph unicode="&#x2012;" d="M174 612v127h881v-127h-881z" />
221
+ <glyph unicode="&#x2013;" d="M164 442v148h901v-148h-901z" />
222
+ <glyph unicode="&#x2014;" d="M0 442v148h1229v-148h-1229z" />
223
+ <glyph unicode="&#x2018;" d="M428 963q0 153 78 275.5t217 193.5l55 -99q-199 -118 -211 -323q24 12 54 12q63 0 103 -41.5t40 -106.5q0 -70 -42.5 -113.5t-109.5 -43.5q-81 0 -132.5 66.5t-51.5 179.5z" />
224
+ <glyph unicode="&#x2019;" d="M444 815q201 114 213 324q-26 -13 -53 -13q-64 0 -104.5 40.5t-40.5 105.5q0 70 42.5 115t108.5 45q83 0 134 -66.5t51 -181.5q0 -152 -77.5 -274t-215.5 -193z" />
225
+ <glyph unicode="&#x201a;" d="M444 -365q201 114 213 324q-24 -12 -53 -12q-64 0 -104.5 40.5t-40.5 104.5q0 70 42.5 115t108.5 45q83 0 134 -66.5t51 -181.5q0 -152 -77.5 -274t-215.5 -193z" />
226
+ <glyph unicode="&#x201c;" d="M193 963q0 153 77.5 275.5t216.5 193.5l56 -99q-199 -118 -211 -323q24 12 53 12q63 0 103 -41.5t40 -106.5q0 -70 -42.5 -113.5t-108.5 -43.5q-81 0 -132.5 66.5t-51.5 179.5zM664 963q0 153 77.5 275.5t216.5 193.5l56 -99q-199 -118 -211 -323q24 12 53 12 q63 0 103 -41.5t40 -106.5q0 -70 -42.5 -113.5t-108.5 -43.5q-81 0 -132.5 66.5t-51.5 179.5z" />
227
+ <glyph unicode="&#x201d;" d="M209 815q201 114 213 324q-26 -13 -53 -13q-65 0 -105.5 41t-40.5 105q0 70 43 115t109 45q83 0 133.5 -66.5t50.5 -181.5q0 -152 -77.5 -274t-215.5 -193zM680 815q201 114 213 324q-26 -13 -53 -13q-64 0 -105 41t-41 105q0 70 43 115t109 45q83 0 133.5 -66.5 t50.5 -181.5q0 -152 -77.5 -274t-215.5 -193z" />
228
+ <glyph unicode="&#x201e;" d="M209 -365q201 114 213 324q-24 -12 -53 -12q-65 0 -105.5 40.5t-40.5 104.5q0 70 43 115t109 45q83 0 133.5 -66.5t50.5 -181.5q0 -152 -77.5 -274t-215.5 -193zM680 -365q201 114 213 324q-24 -12 -53 -12q-65 0 -105.5 40.5t-40.5 104.5q0 70 43 115t109 45 q83 0 133.5 -66.5t50.5 -181.5q0 -152 -77.5 -274t-215.5 -193z" />
229
+ <glyph unicode="&#x2022;" d="M309 537q0 132 90 216.5t215 84.5t215.5 -85t90.5 -216t-90.5 -216t-215.5 -85t-215 84.5t-90 216.5z" />
230
+ <glyph unicode="&#x2026;" d="M66 129q0 68 41 111t102 43q60 0 100.5 -43t40.5 -111q0 -67 -41 -110.5t-100 -43.5q-61 0 -102 43.5t-41 110.5zM471 129q0 68 41 111t102 43t102.5 -43t41.5 -111q0 -67 -41.5 -110.5t-102.5 -43.5t-102 43.5t-41 110.5zM879 129q0 68 40.5 111t100.5 43q61 0 102 -43 t41 -111q0 -67 -41 -110.5t-102 -43.5q-59 0 -100 43.5t-41 110.5z" />
231
+ <glyph unicode="&#x202f;" horiz-adv-x="360" />
232
+ <glyph unicode="&#x2039;" d="M403 434v164l314 328l80 -72l-260 -338l260 -340l-80 -70z" />
233
+ <glyph unicode="&#x203a;" d="M432 176l260 340l-260 338l80 72l313 -328v-164l-313 -328z" />
234
+ <glyph unicode="&#x205f;" horiz-adv-x="450" />
235
+ <glyph unicode="&#x20ac;" d="M119 483v90l121 9q-2 23 -2 69q0 45 2 68h-121v90l131 10q38 241 183 376.5t362 135.5q100 0 190.5 -44t155.5 -116l-101 -96q-118 121 -252 121q-147 0 -240.5 -99t-123.5 -278h602v-100h-612q-2 -20 -2 -62q0 -48 2 -73h530v-101h-518q30 -177 120 -274.5t230 -97.5 q85 0 152 36t131 109l100 -90q-164 -191 -393 -191q-202 0 -340 135t-176 373h-131z" />
236
+ <glyph unicode="&#x2122;" d="M-10 1274v110h516v-110h-197v-524h-123v524h-196zM598 750v634h145l93 -233l55 -164h8l53 164l90 233h146v-634h-113v280l15 215h-9l-145 -383h-86l-148 383h-8l15 -215v-280h-111z" />
237
+ <glyph unicode="&#x25fc;" horiz-adv-x="993" d="M0 0v993h993v-993h-993z" />
238
+ <glyph unicode="&#xfb01;" d="M106 858v127l136 10v158q0 157 72 243.5t218 86.5q83 0 166 -33l-34 -129q-61 25 -113 25q-141 0 -141 -193v-158h211v-137h-211v-858h-168v858h-136zM799 1335q0 58 38.5 94.5t96.5 36.5t96.5 -36.5t38.5 -94.5q0 -59 -38.5 -95t-96.5 -36t-96.5 36t-38.5 95zM848 0v995 h168v-995h-168z" />
239
+ <glyph unicode="&#xfb02;" d="M117 858v127l135 10v158q0 157 72.5 243.5t218.5 86.5q83 0 166 -33l-37 -129q-58 25 -113 25q-139 0 -139 -193v-158h211v-137h-211v-858h-168v858h-135zM821 201v1257h168v-1270q0 -37 13 -55t34 -18q19 0 37 4l23 -127q-42 -17 -97 -17q-93 0 -135.5 57t-42.5 169z " />
240
+ </font>
241
+ </defs></svg>
fonts/sourcecodepro/sourcecodepro-regular-webfont.ttf ADDED
Binary file
fonts/sourcecodepro/sourcecodepro-regular-webfont.woff ADDED
Binary file
fonts/sourcecodepro/sourcecodepro-regular-webfont.woff2 ADDED
Binary file
global.php CHANGED
@@ -23,7 +23,7 @@ $CRAYON_WEBSITE = 'https://github.com/aramk/crayon-syntax-highlighter';
23
  $CRAYON_EMAIL = 'crayon.syntax@gmail.com';
24
  $CRAYON_TWITTER = 'http://twitter.com/crayonsyntax';
25
  $CRAYON_GIT = 'http://github.com/aramk/crayon-syntax-highlighter';
26
- $CRAYON_PLUGIN_WP = 'http://wordpress.org/extend/plugins/crayon-syntax-highlighter';
27
 
28
  // XXX Used to name the class
29
 
@@ -111,7 +111,6 @@ define('CRAYON_THEMES_PHP', CRAYON_ROOT_PATH . 'crayon_themes.class.php');
111
  define('CRAYON_FONTS_PHP', CRAYON_ROOT_PATH . 'crayon_fonts.class.php');
112
  define('CRAYON_RESOURCE_PHP', CRAYON_ROOT_PATH . 'crayon_resource.class.php');
113
  define('CRAYON_UTIL_PHP', CRAYON_UTIL_DIR . 'crayon_util.class.php');
114
- define('CRAYON_EXCEPTIONS_PHP', CRAYON_UTIL_DIR . 'exceptions.php');
115
  define('CRAYON_TIMER_PHP', CRAYON_UTIL_DIR . 'crayon_timer.class.php');
116
  define('CRAYON_LOG_PHP', CRAYON_UTIL_DIR . 'crayon_log.class.php');
117
 
@@ -173,10 +172,8 @@ function crayon_set_info($info_array) {
173
  return;
174
  }
175
  crayon_set_info_key('Version', $info_array, $CRAYON_VERSION);
176
- if (($date = @filemtime(CRAYON_README_FILE)) !== FALSE) {
177
- $CRAYON_DATE = date("jS F, Y", $date);
178
- }
179
- crayon_set_info_key('AuthorName', $info_array, $CRAYON_A);
180
  crayon_set_info_key('PluginURI', $info_array, $CRAYON_WEBSITE);
181
  }
182
 
23
  $CRAYON_EMAIL = 'crayon.syntax@gmail.com';
24
  $CRAYON_TWITTER = 'http://twitter.com/crayonsyntax';
25
  $CRAYON_GIT = 'http://github.com/aramk/crayon-syntax-highlighter';
26
+ $CRAYON_PLUGIN_WP = 'https://wordpress.org/plugins/crayon-syntax-highlighter/';
27
 
28
  // XXX Used to name the class
29
 
111
  define('CRAYON_FONTS_PHP', CRAYON_ROOT_PATH . 'crayon_fonts.class.php');
112
  define('CRAYON_RESOURCE_PHP', CRAYON_ROOT_PATH . 'crayon_resource.class.php');
113
  define('CRAYON_UTIL_PHP', CRAYON_UTIL_DIR . 'crayon_util.class.php');
 
114
  define('CRAYON_TIMER_PHP', CRAYON_UTIL_DIR . 'crayon_timer.class.php');
115
  define('CRAYON_LOG_PHP', CRAYON_UTIL_DIR . 'crayon_log.class.php');
116
 
172
  return;
173
  }
174
  crayon_set_info_key('Version', $info_array, $CRAYON_VERSION);
175
+ crayon_set_info_key('Date', $info_array, $CRAYON_DATE);
176
+ crayon_set_info_key('AuthorName', $info_array, $CRAYON_AUTHOR);
 
 
177
  crayon_set_info_key('PluginURI', $info_array, $CRAYON_WEBSITE);
178
  }
179
 
js/min/crayon.min.js CHANGED
@@ -1 +1 @@
1
- var jQueryCrayon=jQuery;(function(a){a(document).ready(function(){CrayonUtil.init()});CrayonUtil=new function(){var c=this;var b=null;c.init=function(){b=CrayonSyntaxSettings;c.initGET()};c.addPrefixToID=function(d){return d.replace(/^([#.])?(.*)$/,"$1"+b.prefix+"$2")};c.removePrefixFromID=function(e){var d=new RegExp("^[#.]?"+b.prefix,"i");return e.replace(d,"")};c.cssElem=function(d){return a(c.addPrefixToID(d))};c.setDefault=function(e,f){return(typeof e=="undefined")?f:e};c.setMax=function(e,d){return e<=d?e:d};c.setMin=function(d,e){return d>=e?d:e};c.setRange=function(e,f,d){return c.setMax(c.setMin(e,f),d)};c.getExt=function(e){if(e.indexOf(".")==-1){return undefined}var d=e.split(".");if(d.length){d=d[d.length-1]}else{d=""}return d};c.initGET=function(){window.currentURL=window.location.protocol+"//"+window.location.host+window.location.pathname;window.currentDir=window.currentURL.substring(0,window.currentURL.lastIndexOf("/"));function d(e){e=e.split("+").join(" ");var h={},g,f=/[?&]?([^=]+)=([^&]*)/g;while(g=f.exec(e)){h[decodeURIComponent(g[1])]=decodeURIComponent(g[2])}return h}window.GET=d(document.location.search)};c.getAJAX=function(d,e){d.version=b.version;a.get(b.ajaxurl,d,e)};c.postAJAX=function(d,e){d.version=b.version;a.post(b.ajaxurl,d,e)};c.reload=function(){var d="?";for(var e in window.GET){d+=e+"="+window.GET[e]+"&"}window.location=window.currentURL+d};c.escape=function(d){if(typeof encodeURIComponent=="function"){return encodeURIComponent(d)}else{if(typeof escape!="function"){return escape(d)}else{return d}}};c.log=function(d){if(typeof console!="undefined"&&b.debug){console.log(d)}};c.decode_html=function(d){return String(d).replace(/&amp;/g,"&").replace(/&lt;/g,"<").replace(/&gt;/g,">")};c.encode_html=function(d){return String(d).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")};c.getReadableColor=function(g,f){f=a.extend({amount:0.5,xMulti:1,yMulti:1.5,normalizeHue:[20,180],normalizeHueXMulti:1/2.5,normalizeHueYMulti:1},f);var d=tinycolor(g);var e=d.toHsv();var i={x:e.s,y:1-e.v};i.x*=f.xMulti;i.y*=f.yMulti;if(f.normalizeHue&&e.h>f.normalizeHue[0]&&e.h<f.normalizeHue[1]){i.x*=f.normalizeHueXMulti;i.y*=f.normalizeHueYMulti}var h=Math.sqrt(Math.pow(i.x,2)+Math.pow(i.y,2));if(h<f.amount){e.v=0}else{e.v=1}e.s=0;return tinycolor(e).toHexString()};c.removeChars=function(e,f){var d=new RegExp("["+e+"]","gmi");return f.replace(d,"")}};a.fn.bindFirst=function(c,e){this.bind(c,e);var b=this.data("events")[c.split(".")[0]];var d=b.pop();b.splice(0,0,d)};a.keys=function(d){var c=[];for(var b in d){c.push(b)}return c};RegExp.prototype.execAll=function(c){var f=[];var b=null;while((b=this.exec(c))!=null){var e=[];for(var d in b){if(parseInt(d)==d){e.push(b[d])}}f.push(e)}return f};RegExp.prototype.escape=function(b){return b.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")};String.prototype.sliceReplace=function(d,b,c){return this.substring(0,d)+c+this.substring(b)};String.prototype.escape=function(){var b={"&":"&amp;","<":"&lt;",">":"&gt;"};return this.replace(/[&<>]/g,function(c){return b[c]||c})};String.prototype.linkify=function(b){b=typeof b!="undefined"?b:"";return this.replace(/(http(s)?:\/\/(\S)+)/gmi,'<a href="$1" target="'+b+'">$1</a>')};String.prototype.toTitleCase=function(){var b=this.split(/\s+/);var c="";a.each(b,function(e,d){if(d!=""){c+=d.slice(0,1).toUpperCase()+d.slice(1,d.length);if(e!=b.length-1&&b[e+1]!=""){c+=" "}}});return c}})(jQueryCrayon);jqueryPopup=Object();jqueryPopup.defaultSettings={centerBrowser:0,centerScreen:0,height:500,left:0,location:0,menubar:0,resizable:0,scrollbars:0,status:0,width:500,windowName:null,windowURL:null,top:0,toolbar:0,data:null,event:"click"};(function(a){popupWindow=function(d,c,f,b){f=typeof f!=="undefined"?f:null;b=typeof b!=="undefined"?b:null;if(typeof d=="string"){d=jQuery(d)}if(!(d instanceof jQuery)){return false}var e=jQuery.extend({},jqueryPopup.defaultSettings,c||{});d.handler=jQuery(d).bind(e.event,function(){if(f){f()}var g="height="+e.height+",width="+e.width+",toolbar="+e.toolbar+",scrollbars="+e.scrollbars+",status="+e.status+",resizable="+e.resizable+",location="+e.location+",menuBar="+e.menubar;e.windowName=e.windowName||jQuery(this).attr("name");var h=jQuery(this).attr("href");if(!e.windowURL&&!(h=="#")&&!(h=="")){e.windowURL=jQuery(this).attr("href")}var i,j;var k=null;if(e.centerBrowser){if(typeof window.screenY=="undefined"){i=(window.screenTop-120)+((((document.documentElement.clientHeight+120)/2)-(e.height/2)));j=window.screenLeft+((((document.body.offsetWidth+20)/2)-(e.width/2)))}else{i=window.screenY+(((window.outerHeight/2)-(e.height/2)));j=window.screenX+(((window.outerWidth/2)-(e.width/2)))}k=window.open(e.windowURL,e.windowName,g+",left="+j+",top="+i)}else{if(e.centerScreen){i=(screen.height-e.height)/2;j=(screen.width-e.width)/2;k=window.open(e.windowURL,e.windowName,g+",left="+j+",top="+i)}else{k=window.open(e.windowURL,e.windowName,g+",left="+e.left+",top="+e.top)}}if(k!=null){k.focus();if(e.data){k.document.write(e.data)}}if(b){b()}});return e};popdownWindow=function(b,c){if(typeof c=="undefined"){c="click"}b=jQuery(b);if(!(b instanceof jQuery)){return false}b.unbind(c,b.handler)}})(jQueryCrayon);(function(f){f.fn.exists=function(){return this.length!==0};f.fn.style=function(B,E,A){var D=this.get(0);if(typeof D=="undefined"){return}var C=D.style;if(typeof B!="undefined"){if(typeof E!="undefined"){A=typeof A!="undefined"?A:"";if(typeof C.setProperty!="undefined"){C.setProperty(B,E,A)}else{C[B]=E}}else{return C[B]}}else{return C}};var d="crayon-pressed";var a="";var n="div.crayon-syntax";var e=".crayon-toolbar";var c=".crayon-info";var w=".crayon-plain";var o=".crayon-main";var m=".crayon-table";var v=".crayon-loading";var h=".crayon-code";var p=".crayon-title";var l=".crayon-tools";var b=".crayon-nums";var j=".crayon-num";var q=".crayon-line";var g="crayon-wrapped";var s=".crayon-nums-content";var u=".crayon-nums-button";var k=".crayon-wrap-button";var i=".crayon-expand-button";var t="crayon-expanded crayon-toolbar-visible";var y="crayon-placeholder";var x=".crayon-popup-button";var r=".crayon-copy-button";var z=".crayon-plain-button";f(document).ready(function(){CrayonSyntax.init()});CrayonSyntax=new function(){var I=this;var N=new Object();var ag;var H;var G=0;var Z;I.init=function(){if(typeof N=="undefined"){N=new Object()}ag=CrayonSyntaxSettings;H=CrayonSyntaxStrings;f(n).each(function(){I.process(this)})};I.process=function(aD,aE){aD=f(aD);var ar=aD.attr("id");if(ar=="crayon-"){ar+=X()}aD.attr("id",ar);CrayonUtil.log(ar);if(typeof aE=="undefined"){aE=false}if(!aE&&!aa(ar)){return}var au=aD.find(e);var aC=aD.find(c);var ap=aD.find(w);var aq=aD.find(o);var aB=aD.find(m);var aj=aD.find(h);var aG=aD.find(p);var aA=aD.find(l);var ay=aD.find(b);var av=aD.find(s);var az=aD.find(u);var am=aD.find(k);var ao=aD.find(i);var aF=aD.find(x);var at=aD.find(r);var al=aD.find(z);N[ar]=aD;N[ar].toolbar=au;N[ar].plain=ap;N[ar].info=aC;N[ar].main=aq;N[ar].table=aB;N[ar].code=aj;N[ar].title=aG;N[ar].tools=aA;N[ar].nums=ay;N[ar].nums_content=av;N[ar].numsButton=az;N[ar].wrapButton=am;N[ar].expandButton=ao;N[ar].popup_button=aF;N[ar].copy_button=at;N[ar].plainButton=al;N[ar].numsVisible=true;N[ar].wrapped=false;N[ar].plainVisible=false;N[ar].toolbar_delay=0;N[ar].time=1;f(w).css("z-index",0);var aw=aq.style();N[ar].mainStyle={height:aw&&aw.height||"","max-height":aw&&aw.maxHeight||"","min-height":aw&&aw.minHeight||"",width:aw&&aw.width||"","max-width":aw&&aw.maxWidth||"","min-width":aw&&aw.minWidth||""};N[ar].mainHeightAuto=N[ar].mainStyle.height==""&&N[ar].mainStyle["max-height"]=="";var ak;var ax=0;N[ar].loading=true;N[ar].scrollBlockFix=false;az.click(function(){CrayonSyntax.toggleNums(ar)});am.click(function(){CrayonSyntax.toggleWrap(ar)});ao.click(function(){CrayonSyntax.toggleExpand(ar)});al.click(function(){CrayonSyntax.togglePlain(ar)});at.click(function(){CrayonSyntax.copyPlain(ar)});B(ar);var an=function(){if(ay.filter('[data-settings~="hide"]').length!=0){av.ready(function(){CrayonUtil.log("function"+ar);CrayonSyntax.toggleNums(ar,true,true)})}else{ac(ar)}if(typeof N[ar].expanded=="undefined"){if(Math.abs(N[ar].main.outerWidth()-N[ar].table.outerWidth())<10){N[ar].expandButton.hide()}else{N[ar].expandButton.show()}}if(ax==5){clearInterval(ak);N[ar].loading=false}ax++};ak=setInterval(an,300);C(ar);f(j,N[ar]).each(function(){var aJ=f(this).attr("data-line");var aI=f("#"+aJ);var aH=aI.style("height");if(aH){aI.attr("data-height",aH)}});aq.css("position","relative");aq.css("z-index",1);Z=(aD.filter('[data-settings~="touchscreen"]').length!=0);if(!Z){aq.click(function(){A(ar,"",false)});ap.click(function(){A(ar,"",false)});aC.click(function(){A(ar,"",false)})}if(aD.filter('[data-settings~="no-popup"]').length==0){N[ar].popup_settings=popupWindow(aF,{height:screen.height-200,width:screen.width-100,top:75,left:50,scrollbars:1,windowURL:"",data:""},function(){F(ar)},function(){})}ap.css("opacity",0);N[ar].toolbarVisible=true;N[ar].hasOneLine=aB.outerHeight()<au.outerHeight()*2;N[ar].toolbarMouseover=false;if(au.filter('[data-settings~="mouseover"]').length!=0&&!Z){N[ar].toolbarMouseover=true;N[ar].toolbarVisible=false;au.css("margin-top","-"+au.outerHeight()+"px");au.hide();if(au.filter('[data-settings~="overlay"]').length!=0&&!N[ar].hasOneLine){au.css("position","absolute");au.css("z-index",2);if(au.filter('[data-settings~="hide"]').length!=0){aq.click(function(){T(ar,undefined,undefined,0)});ap.click(function(){T(ar,false,undefined,0)})}}else{au.css("z-index",4)}if(au.filter('[data-settings~="delay"]').length!=0){N[ar].toolbar_delay=500}aD.mouseenter(function(){T(ar,true)}).mouseleave(function(){T(ar,false)})}else{if(Z){au.show()}}if(aD.filter('[data-settings~="minimize"]').length==0){I.minimize(ar)}if(ap.length!=0&&!Z){if(ap.filter('[data-settings~="dblclick"]').length!=0){aq.dblclick(function(){CrayonSyntax.togglePlain(ar)})}else{if(ap.filter('[data-settings~="click"]').length!=0){aq.click(function(){CrayonSyntax.togglePlain(ar)})}else{if(ap.filter('[data-settings~="mouseover"]').length!=0){aD.mouseenter(function(){CrayonSyntax.togglePlain(ar,true)}).mouseleave(function(){CrayonSyntax.togglePlain(ar,false)});az.hide()}}}if(ap.filter('[data-settings~="show-plain-default"]').length!=0){CrayonSyntax.togglePlain(ar,true)}}var ai=aD.filter('[data-settings~="expand"]').length!=0;if(!Z&&aD.filter('[data-settings~="scroll-mouseover"]').length!=0){aq.css("overflow","hidden");ap.css("overflow","hidden");aD.mouseenter(function(){M(ar,true,ai)}).mouseleave(function(){M(ar,false,ai)})}if(ai){aD.mouseenter(function(){D(ar,true)}).mouseleave(function(){D(ar,false)})}if(aD.filter('[data-settings~="disable-anim"]').length!=0){N[ar].time=0}if(aD.filter('[data-settings~="wrap"]').length!=0){N[ar].wrapped=true}N[ar].mac=aD.hasClass("crayon-os-mac");ac(ar);ab(ar);Y(ar)};var aa=function(ai){CrayonUtil.log(N);if(typeof N[ai]=="undefined"){N[ai]=f("#"+ai);CrayonUtil.log("make "+ai);return true}CrayonUtil.log("no make "+ai);return false};var X=function(){return G++};var F=function(ai){if(typeof N[ai]=="undefined"){return aa(ai)}var aj=N[ai].popup_settings;if(aj.data){return}var al=N[ai].clone(true);al.removeClass("crayon-wrapped");if(N[ai].wrapped){f(j,al).each(function(){var ao=f(this).attr("data-line");var an=f("#"+ao);var am=an.attr("data-height");am=am?am:"";if(typeof am!="undefined"){an.css("height",am);f(this).css("height",am)}})}al.find(o).css("height","");var ak="";if(N[ai].plainVisible){ak=al.find(w)}else{ak=al.find(o)}aj.data=I.getAllCSS()+'<body class="crayon-popup-window" style="padding:0; margin:0;"><div class="'+al.attr("class")+' crayon-popup">'+I.removeCssInline(I.getHtmlString(ak))+"</div></body>"};I.minimize=function(al){var ak=f('<div class="crayon-minimize crayon-button"><div>');N[al].tools.append(ak);N[al].origTitle=N[al].title.html();if(!N[al].origTitle){N[al].title.html(H.minimize)}var aj="crayon-minimized";var ai=function(){N[al].toolbarPreventHide=false;ak.remove();N[al].removeClass(aj);N[al].title.html(N[al].origTitle);var am=N[al].toolbar;if(am.filter('[data-settings~="never-show"]').length!=0){am.remove()}};N[al].toolbar.click(ai);ak.click(ai);N[al].addClass(aj);N[al].toolbarPreventHide=true;T(al,undefined,undefined,0)};I.getHtmlString=function(ai){return f("<div>").append(ai.clone()).remove().html()};I.removeCssInline=function(ak){var aj=/style\s*=\s*"([^"]+)"/gmi;var ai=null;while((ai=aj.exec(ak))!=null){var al=ai[1];al=al.replace(/\b(?:width|height)\s*:[^;]+;/gmi,"");ak=ak.sliceReplace(ai.index,ai.index+ai[0].length,'style="'+al+'"')}return ak};I.getAllCSS=function(){var ak="";var aj=f('link[rel="stylesheet"]');var ai=[];if(aj.length==1){ai=aj}else{ai=aj.filter('[href*="crayon-syntax-highlighter"], [href*="min/"]')}ai.each(function(){var al=I.getHtmlString(f(this));ak+=al});return ak};I.copyPlain=function(ak,al){if(typeof N[ak]=="undefined"){return aa(ak)}var aj=N[ak].plain;I.togglePlain(ak,true,true);T(ak,true);var ai=N[ak].mac?"\u2318":"CTRL";var am=H.copy;am=am.replace(/%s/,ai+"+C");am=am.replace(/%s/,ai+"+V");A(ak,am);return false};var A=function(aj,al,ai){if(typeof N[aj]=="undefined"){return aa(aj)}var ak=N[aj].info;if(typeof al=="undefined"){al=""}if(typeof ai=="undefined"){ai=true}if(L(ak)&&ai){ak.html("<div>"+al+"</div>");ak.css("margin-top",-ak.outerHeight());ak.show();Q(aj,ak,true);setTimeout(function(){Q(aj,ak,false)},5000)}if(!ai){Q(aj,ak,false)}};var B=function(ai){if(window.devicePixelRatio>1){var aj=f(".crayon-button-icon",N[ai].toolbar);aj.each(function(){var al=f(this).css("background-image");var ak=al.replace(/\.(?=[^\.]+$)/g,"@2x.");f(this).css("background-size","48px 128px");f(this).css("background-image",ak)})}};var L=function(ai){var aj="-"+ai.outerHeight()+"px";if(ai.css("margin-top")==aj||ai.css("display")=="none"){return true}else{return false}};var Q=function(al,ak,aj,an,am,ap){var ai=function(){if(ap){ap(al,ak)}};var ao="-"+ak.outerHeight()+"px";if(typeof aj=="undefined"){if(L(ak)){aj=true}else{aj=false}}if(typeof an=="undefined"){an=100}if(an==false){an=false}if(typeof am=="undefined"){am=0}ak.stop(true);if(aj==true){ak.show();ak.animate({marginTop:0},ah(an,al),ai)}else{if(aj==false){if(ak.css("margin-top")=="0px"&&am){ak.delay(am)}ak.animate({marginTop:ao},ah(an,al),function(){ak.hide();ai()})}}};I.togglePlain=function(al,am,aj){if(typeof N[al]=="undefined"){return aa(al)}var ai=N[al].main;var ak=N[al].plain;if((ai.is(":animated")||ak.is(":animated"))&&typeof am=="undefined"){return}ae(al);var ao,an;if(typeof am!="undefined"){if(am){ao=ai;an=ak}else{ao=ak;an=ai}}else{if(ai.css("z-index")==1){ao=ai;an=ak}else{ao=ak;an=ai}}N[al].plainVisible=(an==ak);N[al].top=ao.scrollTop();N[al].left=ao.scrollLeft();N[al].scrollChanged=false;C(al);ao.stop(true);ao.fadeTo(ah(500,al),0,function(){ao.css("z-index",0)});an.stop(true);an.fadeTo(ah(500,al),1,function(){an.css("z-index",1);if(an==ak){if(aj){ak.select()}else{}}an.scrollTop(N[al].top+1);an.scrollTop(N[al].top);an.scrollLeft(N[al].left+1);an.scrollLeft(N[al].left)});an.scrollTop(N[al].top);an.scrollLeft(N[al].left);ab(al);T(al,false);return false};I.toggleNums=function(am,al,ai){if(typeof N[am]=="undefined"){aa(am);return false}if(N[am].table.is(":animated")){return false}var ao=Math.round(N[am].nums_content.outerWidth()+1);var an="-"+ao+"px";var ak;if(typeof al!="undefined"){ak=false}else{ak=(N[am].table.css("margin-left")==an)}var aj;if(ak){aj="0px";N[am].numsVisible=true}else{N[am].table.css("margin-left","0px");N[am].numsVisible=false;aj=an}if(typeof ai!="undefined"){N[am].table.css("margin-left",aj);ac(am);return false}var ap=(N[am].table.outerWidth()+J(N[am].table.css("margin-left"))>N[am].main.outerWidth());var aq=(N[am].table.outerHeight()>N[am].main.outerHeight());if(!ap&&!aq){N[am].main.css("overflow","hidden")}N[am].table.animate({marginLeft:aj},ah(200,am),function(){if(typeof N[am]!="undefined"){ac(am);if(!ap&&!aq){N[am].main.css("overflow","auto")}}});return false};I.toggleWrap=function(ai){N[ai].wrapped=!N[ai].wrapped;Y(ai)};I.toggleExpand=function(ai){var aj=!CrayonUtil.setDefault(N[ai].expanded,false);D(ai,aj)};var Y=function(ai,aj){aj=CrayonUtil.setDefault(aj,true);if(N[ai].wrapped){N[ai].addClass(g)}else{N[ai].removeClass(g)}E(ai);if(!N[ai].expanded&&aj){V(ai)}N[ai].wrapTimes=0;clearInterval(N[ai].wrapTimer);N[ai].wrapTimer=setInterval(function(){if(N[ai].is(":visible")){O(ai);N[ai].wrapTimes++;if(N[ai].wrapTimes==5){clearInterval(N[ai].wrapTimer)}}},200)};var ad=function(ai){if(typeof N[ai]=="undefined"){aa(ai);return false}};var J=function(aj){if(typeof aj!="string"){return 0}var ai=aj.replace(/[^-0-9]/g,"");if(ai.length==0){return 0}else{return parseInt(ai)}};var ac=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].numsVisible=="undefined"){return}if(N[ai].numsVisible){N[ai].numsButton.removeClass(a);N[ai].numsButton.addClass(d)}else{N[ai].numsButton.removeClass(d);N[ai].numsButton.addClass(a)}};var E=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].wrapped=="undefined"){return}if(N[ai].wrapped){N[ai].wrapButton.removeClass(a);N[ai].wrapButton.addClass(d)}else{N[ai].wrapButton.removeClass(d);N[ai].wrapButton.addClass(a)}};var W=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].expanded=="undefined"){return}if(N[ai].expanded){N[ai].expandButton.removeClass(a);N[ai].expandButton.addClass(d)}else{N[ai].expandButton.removeClass(d);N[ai].expandButton.addClass(a)}};var ab=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].plainVisible=="undefined"){return}if(N[ai].plainVisible){N[ai].plainButton.removeClass(a);N[ai].plainButton.addClass(d)}else{N[ai].plainButton.removeClass(d);N[ai].plainButton.addClass(a)}};var T=function(aj,ai,al,ak){if(typeof N[aj]=="undefined"){return aa(aj)}else{if(!N[aj].toolbarMouseover){return}else{if(ai==false&&N[aj].toolbarPreventHide){return}else{if(Z){return}}}}var am=N[aj].toolbar;if(typeof ak=="undefined"){ak=N[aj].toolbar_delay}Q(aj,am,ai,al,ak,function(){N[aj].toolbarVisible=ai})};var R=function(ak,ai){var aj=f.extend({},ak);aj.width+=ai.width;aj.height+=ai.height;return aj};var P=function(ak,ai){var aj=f.extend({},ak);aj.width-=ai.width;aj.height-=ai.height;return aj};var U=function(ai){if(typeof N[ai].initialSize=="undefined"){N[ai].toolbarHeight=N[ai].toolbar.outerHeight();N[ai].innerSize={width:N[ai].width(),height:N[ai].height()};N[ai].outerSize={width:N[ai].outerWidth(),height:N[ai].outerHeight()};N[ai].borderSize=P(N[ai].outerSize,N[ai].innerSize);N[ai].initialSize={width:N[ai].main.outerWidth(),height:N[ai].main.outerHeight()};N[ai].initialSize.height+=N[ai].toolbarHeight;N[ai].initialOuterSize=R(N[ai].initialSize,N[ai].borderSize);N[ai].finalSize={width:N[ai].table.outerWidth(),height:N[ai].table.outerHeight()};N[ai].finalSize.height+=N[ai].toolbarHeight;N[ai].finalSize.width=CrayonUtil.setMin(N[ai].finalSize.width,N[ai].initialSize.width);N[ai].finalSize.height=CrayonUtil.setMin(N[ai].finalSize.height,N[ai].initialSize.height);N[ai].diffSize=P(N[ai].finalSize,N[ai].initialSize);N[ai].finalOuterSize=R(N[ai].finalSize,N[ai].borderSize);N[ai].initialSize.height+=N[ai].toolbar.outerHeight()}};var D=function(al,ao){if(typeof N[al]=="undefined"){return aa(al)}if(typeof ao=="undefined"){return}var aj=N[al].main;var aq=N[al].plain;if(ao){if(typeof N[al].expanded=="undefined"){U(al);N[al].expandTime=CrayonUtil.setRange(N[al].diffSize.width/3,300,800);N[al].expanded=false;var ap=N[al].finalOuterSize;N[al].placeholder=f("<div></div>");N[al].placeholder.addClass(y);N[al].placeholder.css(ap);N[al].before(N[al].placeholder);N[al].placeholder.css("margin",N[al].css("margin"));f(window).bind("resize",K)}var am={height:"auto","min-height":"none","max-height":"none"};var ai={width:"auto","min-width":"none","max-width":"none"};N[al].outerWidth(N[al].outerWidth());N[al].css({"min-width":"none","max-width":"none"});var an={width:N[al].finalOuterSize.width};if(!N[al].mainHeightAuto&&!N[al].hasOneLine){an.height=N[al].finalOuterSize.height;N[al].outerHeight(N[al].outerHeight())}aj.css(am);aj.css(ai);N[al].stop(true);N[al].animate(an,ah(N[al].expandTime,al),function(){N[al].expanded=true;W(al)});N[al].placeholder.show();f("body").prepend(N[al]);N[al].addClass(t);K()}else{var ar=N[al].initialOuterSize;var ak=N[al].toolbar_delay;if(ar){N[al].stop(true);if(!N[al].expanded){N[al].delay(ak)}var an={width:ar.width};if(!N[al].mainHeightAuto&&!N[al].hasOneLine){an.height=ar.height}N[al].animate(an,ah(N[al].expandTime,al),function(){af(al)})}else{setTimeout(function(){af(al)},ak)}N[al].placeholder.hide();N[al].placeholder.before(N[al]);N[al].css({left:"auto",top:"auto"});N[al].removeClass(t)}ae(al);if(ao){Y(al,false)}};var K=function(){for(uid in N){if(N[uid].hasClass(t)){N[uid].css(N[uid].placeholder.offset())}}};var af=function(ai){N[ai].expanded=false;V(ai);W(ai);if(N[ai].wrapped){Y(ai)}};var M=function(al,aj,am){if(typeof N[al]=="undefined"){return aa(al)}if(typeof aj=="undefined"||am||N[al].expanded){return}var ai=N[al].main;var ak=N[al].plain;if(aj){ai.css("overflow","auto");ak.css("overflow","auto");if(typeof N[al].top!="undefined"){visible=(ai.css("z-index")==1?ai:ak);visible.scrollTop(N[al].top-1);visible.scrollTop(N[al].top);visible.scrollLeft(N[al].left-1);visible.scrollLeft(N[al].left)}}else{visible=(ai.css("z-index")==1?ai:ak);N[al].top=visible.scrollTop();N[al].left=visible.scrollLeft();ai.css("overflow","hidden");ak.css("overflow","hidden")}N[al].scrollChanged=true;C(al)};var C=function(ai){N[ai].table.style("width","100%","important");var aj=setTimeout(function(){N[ai].table.style("width","");clearInterval(aj)},10)};var V=function(ak){var aj=N[ak].main;var ai=N[ak].mainStyle;aj.css(ai);N[ak].css("height","auto");N[ak].css("width",ai.width);N[ak].css("max-width",ai["max-width"]);N[ak].css("min-width",ai["min-width"])};var ae=function(ai){N[ai].plain.outerHeight(N[ai].main.outerHeight())};var O=function(ai){f(j,N[ai]).each(function(){var al=f(this).attr("data-line");var ak=f("#"+al);var aj=null;if(N[ai].wrapped){ak.css("height","");aj=ak.outerHeight();aj=aj?aj:""}else{aj=ak.attr("data-height");aj=aj?aj:"";ak.css("height",aj)}f(this).css("height",aj)})};var ah=function(ai,aj){if(ai=="fast"){ai=200}else{if(ai=="slow"){ai=600}else{if(!S(ai)){ai=parseInt(ai);if(isNaN(ai)){return 0}}}}return ai*N[aj].time};var S=function(ai){return typeof ai=="number"}}})(jQueryCrayon);
1
+ var jQueryCrayon=jQuery;(function(a){CrayonUtil=new function(){var c=this;var b=null;c.init=function(){b=CrayonSyntaxSettings;c.initGET()};c.addPrefixToID=function(d){return d.replace(/^([#.])?(.*)$/,"$1"+b.prefix+"$2")};c.removePrefixFromID=function(e){var d=new RegExp("^[#.]?"+b.prefix,"i");return e.replace(d,"")};c.cssElem=function(d){return a(c.addPrefixToID(d))};c.setDefault=function(e,f){return(typeof e=="undefined")?f:e};c.setMax=function(e,d){return e<=d?e:d};c.setMin=function(d,e){return d>=e?d:e};c.setRange=function(e,f,d){return c.setMax(c.setMin(e,f),d)};c.getExt=function(e){if(e.indexOf(".")==-1){return undefined}var d=e.split(".");if(d.length){d=d[d.length-1]}else{d=""}return d};c.initGET=function(){window.currentURL=window.location.protocol+"//"+window.location.host+window.location.pathname;window.currentDir=window.currentURL.substring(0,window.currentURL.lastIndexOf("/"));function d(e){e=e.split("+").join(" ");var h={},g,f=/[?&]?([^=]+)=([^&]*)/g;while(g=f.exec(e)){h[decodeURIComponent(g[1])]=decodeURIComponent(g[2])}return h}window.GET=d(document.location.search)};c.getAJAX=function(d,e){d.version=b.version;a.get(b.ajaxurl,d,e)};c.postAJAX=function(d,e){d.version=b.version;a.post(b.ajaxurl,d,e)};c.reload=function(){var d="?";for(var e in window.GET){d+=e+"="+window.GET[e]+"&"}window.location=window.currentURL+d};c.escape=function(d){if(typeof encodeURIComponent=="function"){return encodeURIComponent(d)}else{if(typeof escape!="function"){return escape(d)}else{return d}}};c.log=function(d){if(typeof console!="undefined"&&b.debug){console.log(d)}};c.decode_html=function(d){return String(d).replace(/&amp;/g,"&").replace(/&lt;/g,"<").replace(/&gt;/g,">")};c.encode_html=function(d){return String(d).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")};c.getReadableColor=function(g,f){f=a.extend({amount:0.5,xMulti:1,yMulti:1.5,normalizeHue:[20,180],normalizeHueXMulti:1/2.5,normalizeHueYMulti:1},f);var d=tinycolor(g);var e=d.toHsv();var i={x:e.s,y:1-e.v};i.x*=f.xMulti;i.y*=f.yMulti;if(f.normalizeHue&&e.h>f.normalizeHue[0]&&e.h<f.normalizeHue[1]){i.x*=f.normalizeHueXMulti;i.y*=f.normalizeHueYMulti}var h=Math.sqrt(Math.pow(i.x,2)+Math.pow(i.y,2));if(h<f.amount){e.v=0}else{e.v=1}e.s=0;return tinycolor(e).toHexString()};c.removeChars=function(e,f){var d=new RegExp("["+e+"]","gmi");return f.replace(d,"")}};a(document).ready(function(){CrayonUtil.init()});a.fn.bindFirst=function(c,e){this.bind(c,e);var b=this.data("events")[c.split(".")[0]];var d=b.pop();b.splice(0,0,d)};a.keys=function(d){var c=[];for(var b in d){c.push(b)}return c};RegExp.prototype.execAll=function(c){var f=[];var b=null;while((b=this.exec(c))!=null){var e=[];for(var d in b){if(parseInt(d)==d){e.push(b[d])}}f.push(e)}return f};RegExp.prototype.escape=function(b){return b.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")};String.prototype.sliceReplace=function(d,b,c){return this.substring(0,d)+c+this.substring(b)};String.prototype.escape=function(){var b={"&":"&amp;","<":"&lt;",">":"&gt;"};return this.replace(/[&<>]/g,function(c){return b[c]||c})};String.prototype.linkify=function(b){b=typeof b!="undefined"?b:"";return this.replace(/(http(s)?:\/\/(\S)+)/gmi,'<a href="$1" target="'+b+'">$1</a>')};String.prototype.toTitleCase=function(){var b=this.split(/\s+/);var c="";a.each(b,function(e,d){if(d!=""){c+=d.slice(0,1).toUpperCase()+d.slice(1,d.length);if(e!=b.length-1&&b[e+1]!=""){c+=" "}}});return c}})(jQueryCrayon);jqueryPopup=Object();jqueryPopup.defaultSettings={centerBrowser:0,centerScreen:0,height:500,left:0,location:0,menubar:0,resizable:0,scrollbars:0,status:0,width:500,windowName:null,windowURL:null,top:0,toolbar:0,data:null,event:"click"};(function(a){popupWindow=function(d,c,f,b){f=typeof f!=="undefined"?f:null;b=typeof b!=="undefined"?b:null;if(typeof d=="string"){d=jQuery(d)}if(!(d instanceof jQuery)){return false}var e=jQuery.extend({},jqueryPopup.defaultSettings,c||{});d.handler=jQuery(d).bind(e.event,function(){if(f){f()}var g="height="+e.height+",width="+e.width+",toolbar="+e.toolbar+",scrollbars="+e.scrollbars+",status="+e.status+",resizable="+e.resizable+",location="+e.location+",menuBar="+e.menubar;e.windowName=e.windowName||jQuery(this).attr("name");var h=jQuery(this).attr("href");if(!e.windowURL&&!(h=="#")&&!(h=="")){e.windowURL=jQuery(this).attr("href")}var i,j;var k=null;if(e.centerBrowser){if(typeof window.screenY=="undefined"){i=(window.screenTop-120)+((((document.documentElement.clientHeight+120)/2)-(e.height/2)));j=window.screenLeft+((((document.body.offsetWidth+20)/2)-(e.width/2)))}else{i=window.screenY+(((window.outerHeight/2)-(e.height/2)));j=window.screenX+(((window.outerWidth/2)-(e.width/2)))}k=window.open(e.windowURL,e.windowName,g+",left="+j+",top="+i)}else{if(e.centerScreen){i=(screen.height-e.height)/2;j=(screen.width-e.width)/2;k=window.open(e.windowURL,e.windowName,g+",left="+j+",top="+i)}else{k=window.open(e.windowURL,e.windowName,g+",left="+e.left+",top="+e.top)}}if(k!=null){k.focus();if(e.data){k.document.write(e.data)}}if(b){b()}});return e};popdownWindow=function(b,c){if(typeof c=="undefined"){c="click"}b=jQuery(b);if(!(b instanceof jQuery)){return false}b.unbind(c,b.handler)}})(jQueryCrayon);(function(f){f.fn.exists=function(){return this.length!==0};f.fn.style=function(B,E,A){var D=this.get(0);if(typeof D=="undefined"){return}var C=D.style;if(typeof B!="undefined"){if(typeof E!="undefined"){A=typeof A!="undefined"?A:"";if(typeof C.setProperty!="undefined"){C.setProperty(B,E,A)}else{C[B]=E}}else{return C[B]}}else{return C}};var d="crayon-pressed";var a="";var n="div.crayon-syntax";var e=".crayon-toolbar";var c=".crayon-info";var w=".crayon-plain";var o=".crayon-main";var m=".crayon-table";var v=".crayon-loading";var h=".crayon-code";var p=".crayon-title";var l=".crayon-tools";var b=".crayon-nums";var j=".crayon-num";var q=".crayon-line";var g="crayon-wrapped";var s=".crayon-nums-content";var u=".crayon-nums-button";var k=".crayon-wrap-button";var i=".crayon-expand-button";var t="crayon-expanded crayon-toolbar-visible";var y="crayon-placeholder";var x=".crayon-popup-button";var r=".crayon-copy-button";var z=".crayon-plain-button";CrayonSyntax=new function(){var I=this;var N=new Object();var ag;var H;var G=0;var Z;I.init=function(){if(typeof N=="undefined"){N=new Object()}ag=CrayonSyntaxSettings;H=CrayonSyntaxStrings;f(n).each(function(){I.process(this)})};I.process=function(aD,aE){aD=f(aD);var ar=aD.attr("id");if(ar=="crayon-"){ar+=X()}aD.attr("id",ar);CrayonUtil.log(ar);if(typeof aE=="undefined"){aE=false}if(!aE&&!aa(ar)){return}var au=aD.find(e);var aC=aD.find(c);var ap=aD.find(w);var aq=aD.find(o);var aB=aD.find(m);var aj=aD.find(h);var aG=aD.find(p);var aA=aD.find(l);var ay=aD.find(b);var av=aD.find(s);var az=aD.find(u);var am=aD.find(k);var ao=aD.find(i);var aF=aD.find(x);var at=aD.find(r);var al=aD.find(z);N[ar]=aD;N[ar].toolbar=au;N[ar].plain=ap;N[ar].info=aC;N[ar].main=aq;N[ar].table=aB;N[ar].code=aj;N[ar].title=aG;N[ar].tools=aA;N[ar].nums=ay;N[ar].nums_content=av;N[ar].numsButton=az;N[ar].wrapButton=am;N[ar].expandButton=ao;N[ar].popup_button=aF;N[ar].copy_button=at;N[ar].plainButton=al;N[ar].numsVisible=true;N[ar].wrapped=false;N[ar].plainVisible=false;N[ar].toolbar_delay=0;N[ar].time=1;f(w).css("z-index",0);var aw=aq.style();N[ar].mainStyle={height:aw&&aw.height||"","max-height":aw&&aw.maxHeight||"","min-height":aw&&aw.minHeight||"",width:aw&&aw.width||"","max-width":aw&&aw.maxWidth||"","min-width":aw&&aw.minWidth||""};N[ar].mainHeightAuto=N[ar].mainStyle.height==""&&N[ar].mainStyle["max-height"]=="";var ak;var ax=0;N[ar].loading=true;N[ar].scrollBlockFix=false;az.click(function(){CrayonSyntax.toggleNums(ar)});am.click(function(){CrayonSyntax.toggleWrap(ar)});ao.click(function(){CrayonSyntax.toggleExpand(ar)});al.click(function(){CrayonSyntax.togglePlain(ar)});at.click(function(){CrayonSyntax.copyPlain(ar)});B(ar);var an=function(){if(ay.filter('[data-settings~="hide"]').length!=0){av.ready(function(){CrayonUtil.log("function"+ar);CrayonSyntax.toggleNums(ar,true,true)})}else{ac(ar)}if(typeof N[ar].expanded=="undefined"){if(Math.abs(N[ar].main.outerWidth()-N[ar].table.outerWidth())<10){N[ar].expandButton.hide()}else{N[ar].expandButton.show()}}if(ax==5){clearInterval(ak);N[ar].loading=false}ax++};ak=setInterval(an,300);C(ar);f(j,N[ar]).each(function(){var aJ=f(this).attr("data-line");var aI=f("#"+aJ);var aH=aI.style("height");if(aH){aI.attr("data-height",aH)}});aq.css("position","relative");aq.css("z-index",1);Z=(aD.filter('[data-settings~="touchscreen"]').length!=0);if(!Z){aq.click(function(){A(ar,"",false)});ap.click(function(){A(ar,"",false)});aC.click(function(){A(ar,"",false)})}if(aD.filter('[data-settings~="no-popup"]').length==0){N[ar].popup_settings=popupWindow(aF,{height:screen.height-200,width:screen.width-100,top:75,left:50,scrollbars:1,windowURL:"",data:""},function(){F(ar)},function(){})}ap.css("opacity",0);N[ar].toolbarVisible=true;N[ar].hasOneLine=aB.outerHeight()<au.outerHeight()*2;N[ar].toolbarMouseover=false;if(au.filter('[data-settings~="mouseover"]').length!=0&&!Z){N[ar].toolbarMouseover=true;N[ar].toolbarVisible=false;au.css("margin-top","-"+au.outerHeight()+"px");au.hide();if(au.filter('[data-settings~="overlay"]').length!=0&&!N[ar].hasOneLine){au.css("position","absolute");au.css("z-index",2);if(au.filter('[data-settings~="hide"]').length!=0){aq.click(function(){T(ar,undefined,undefined,0)});ap.click(function(){T(ar,false,undefined,0)})}}else{au.css("z-index",4)}if(au.filter('[data-settings~="delay"]').length!=0){N[ar].toolbar_delay=500}aD.mouseenter(function(){T(ar,true)}).mouseleave(function(){T(ar,false)})}else{if(Z){au.show()}}if(aD.filter('[data-settings~="minimize"]').length==0){I.minimize(ar)}if(ap.length!=0&&!Z){if(ap.filter('[data-settings~="dblclick"]').length!=0){aq.dblclick(function(){CrayonSyntax.togglePlain(ar)})}else{if(ap.filter('[data-settings~="click"]').length!=0){aq.click(function(){CrayonSyntax.togglePlain(ar)})}else{if(ap.filter('[data-settings~="mouseover"]').length!=0){aD.mouseenter(function(){CrayonSyntax.togglePlain(ar,true)}).mouseleave(function(){CrayonSyntax.togglePlain(ar,false)});az.hide()}}}if(ap.filter('[data-settings~="show-plain-default"]').length!=0){CrayonSyntax.togglePlain(ar,true)}}var ai=aD.filter('[data-settings~="expand"]').length!=0;if(!Z&&aD.filter('[data-settings~="scroll-mouseover"]').length!=0){aq.css("overflow","hidden");ap.css("overflow","hidden");aD.mouseenter(function(){M(ar,true,ai)}).mouseleave(function(){M(ar,false,ai)})}if(ai){aD.mouseenter(function(){D(ar,true)}).mouseleave(function(){D(ar,false)})}if(aD.filter('[data-settings~="disable-anim"]').length!=0){N[ar].time=0}if(aD.filter('[data-settings~="wrap"]').length!=0){N[ar].wrapped=true}N[ar].mac=aD.hasClass("crayon-os-mac");ac(ar);ab(ar);Y(ar)};var aa=function(ai){CrayonUtil.log(N);if(typeof N[ai]=="undefined"){N[ai]=f("#"+ai);CrayonUtil.log("make "+ai);return true}CrayonUtil.log("no make "+ai);return false};var X=function(){return G++};var F=function(ai){if(typeof N[ai]=="undefined"){return aa(ai)}var aj=N[ai].popup_settings;if(aj&&aj.data){return}var al=N[ai].clone(true);al.removeClass("crayon-wrapped");if(N[ai].wrapped){f(j,al).each(function(){var ao=f(this).attr("data-line");var an=f("#"+ao);var am=an.attr("data-height");am=am?am:"";if(typeof am!="undefined"){an.css("height",am);f(this).css("height",am)}})}al.find(o).css("height","");var ak="";if(N[ai].plainVisible){ak=al.find(w)}else{ak=al.find(o)}aj.data=I.getAllCSS()+'<body class="crayon-popup-window" style="padding:0; margin:0;"><div class="'+al.attr("class")+' crayon-popup">'+I.removeCssInline(I.getHtmlString(ak))+"</div></body>"};I.minimize=function(al){var ak=f('<div class="crayon-minimize crayon-button"><div>');N[al].tools.append(ak);N[al].origTitle=N[al].title.html();if(!N[al].origTitle){N[al].title.html(H.minimize)}var aj="crayon-minimized";var ai=function(){N[al].toolbarPreventHide=false;ak.remove();N[al].removeClass(aj);N[al].title.html(N[al].origTitle);var am=N[al].toolbar;if(am.filter('[data-settings~="never-show"]').length!=0){am.remove()}};N[al].toolbar.click(ai);ak.click(ai);N[al].addClass(aj);N[al].toolbarPreventHide=true;T(al,undefined,undefined,0)};I.getHtmlString=function(ai){return f("<div>").append(ai.clone()).remove().html()};I.removeCssInline=function(ak){var aj=/style\s*=\s*"([^"]+)"/gmi;var ai=null;while((ai=aj.exec(ak))!=null){var al=ai[1];al=al.replace(/\b(?:width|height)\s*:[^;]+;/gmi,"");ak=ak.sliceReplace(ai.index,ai.index+ai[0].length,'style="'+al+'"')}return ak};I.getAllCSS=function(){var ak="";var aj=f('link[rel="stylesheet"]');var ai=[];if(aj.length==1){ai=aj}else{ai=aj.filter('[href*="crayon-syntax-highlighter"], [href*="min/"]')}ai.each(function(){var al=I.getHtmlString(f(this));ak+=al});return ak};I.copyPlain=function(ak,al){if(typeof N[ak]=="undefined"){return aa(ak)}var aj=N[ak].plain;I.togglePlain(ak,true,true);T(ak,true);var ai=N[ak].mac?"\u2318":"CTRL";var am=H.copy;am=am.replace(/%s/,ai+"+C");am=am.replace(/%s/,ai+"+V");A(ak,am);return false};var A=function(aj,al,ai){if(typeof N[aj]=="undefined"){return aa(aj)}var ak=N[aj].info;if(typeof al=="undefined"){al=""}if(typeof ai=="undefined"){ai=true}if(L(ak)&&ai){ak.html("<div>"+al+"</div>");ak.css("margin-top",-ak.outerHeight());ak.show();Q(aj,ak,true);setTimeout(function(){Q(aj,ak,false)},5000)}if(!ai){Q(aj,ak,false)}};var B=function(ai){if(window.devicePixelRatio>1){var aj=f(".crayon-button-icon",N[ai].toolbar);aj.each(function(){var al=f(this).css("background-image");var ak=al.replace(/\.(?=[^\.]+$)/g,"@2x.");f(this).css("background-size","48px 128px");f(this).css("background-image",ak)})}};var L=function(ai){var aj="-"+ai.outerHeight()+"px";if(ai.css("margin-top")==aj||ai.css("display")=="none"){return true}else{return false}};var Q=function(al,ak,aj,an,am,ap){var ai=function(){if(ap){ap(al,ak)}};var ao="-"+ak.outerHeight()+"px";if(typeof aj=="undefined"){if(L(ak)){aj=true}else{aj=false}}if(typeof an=="undefined"){an=100}if(an==false){an=false}if(typeof am=="undefined"){am=0}ak.stop(true);if(aj==true){ak.show();ak.animate({marginTop:0},ah(an,al),ai)}else{if(aj==false){if(ak.css("margin-top")=="0px"&&am){ak.delay(am)}ak.animate({marginTop:ao},ah(an,al),function(){ak.hide();ai()})}}};I.togglePlain=function(al,am,aj){if(typeof N[al]=="undefined"){return aa(al)}var ai=N[al].main;var ak=N[al].plain;if((ai.is(":animated")||ak.is(":animated"))&&typeof am=="undefined"){return}ae(al);var ao,an;if(typeof am!="undefined"){if(am){ao=ai;an=ak}else{ao=ak;an=ai}}else{if(ai.css("z-index")==1){ao=ai;an=ak}else{ao=ak;an=ai}}N[al].plainVisible=(an==ak);N[al].top=ao.scrollTop();N[al].left=ao.scrollLeft();N[al].scrollChanged=false;C(al);ao.stop(true);ao.fadeTo(ah(500,al),0,function(){ao.css("z-index",0)});an.stop(true);an.fadeTo(ah(500,al),1,function(){an.css("z-index",1);if(an==ak){if(aj){ak.select()}else{}}an.scrollTop(N[al].top+1);an.scrollTop(N[al].top);an.scrollLeft(N[al].left+1);an.scrollLeft(N[al].left)});an.scrollTop(N[al].top);an.scrollLeft(N[al].left);ab(al);T(al,false);return false};I.toggleNums=function(am,al,ai){if(typeof N[am]=="undefined"){aa(am);return false}if(N[am].table.is(":animated")){return false}var ao=Math.round(N[am].nums_content.outerWidth()+1);var an="-"+ao+"px";var ak;if(typeof al!="undefined"){ak=false}else{ak=(N[am].table.css("margin-left")==an)}var aj;if(ak){aj="0px";N[am].numsVisible=true}else{N[am].table.css("margin-left","0px");N[am].numsVisible=false;aj=an}if(typeof ai!="undefined"){N[am].table.css("margin-left",aj);ac(am);return false}var ap=(N[am].table.outerWidth()+J(N[am].table.css("margin-left"))>N[am].main.outerWidth());var aq=(N[am].table.outerHeight()>N[am].main.outerHeight());if(!ap&&!aq){N[am].main.css("overflow","hidden")}N[am].table.animate({marginLeft:aj},ah(200,am),function(){if(typeof N[am]!="undefined"){ac(am);if(!ap&&!aq){N[am].main.css("overflow","auto")}}});return false};I.toggleWrap=function(ai){N[ai].wrapped=!N[ai].wrapped;Y(ai)};I.toggleExpand=function(ai){var aj=!CrayonUtil.setDefault(N[ai].expanded,false);D(ai,aj)};var Y=function(ai,aj){aj=CrayonUtil.setDefault(aj,true);if(N[ai].wrapped){N[ai].addClass(g)}else{N[ai].removeClass(g)}E(ai);if(!N[ai].expanded&&aj){V(ai)}N[ai].wrapTimes=0;clearInterval(N[ai].wrapTimer);N[ai].wrapTimer=setInterval(function(){if(N[ai].is(":visible")){O(ai);N[ai].wrapTimes++;if(N[ai].wrapTimes==5){clearInterval(N[ai].wrapTimer)}}},200)};var ad=function(ai){if(typeof N[ai]=="undefined"){aa(ai);return false}};var J=function(aj){if(typeof aj!="string"){return 0}var ai=aj.replace(/[^-0-9]/g,"");if(ai.length==0){return 0}else{return parseInt(ai)}};var ac=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].numsVisible=="undefined"){return}if(N[ai].numsVisible){N[ai].numsButton.removeClass(a);N[ai].numsButton.addClass(d)}else{N[ai].numsButton.removeClass(d);N[ai].numsButton.addClass(a)}};var E=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].wrapped=="undefined"){return}if(N[ai].wrapped){N[ai].wrapButton.removeClass(a);N[ai].wrapButton.addClass(d)}else{N[ai].wrapButton.removeClass(d);N[ai].wrapButton.addClass(a)}};var W=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].expanded=="undefined"){return}if(N[ai].expanded){N[ai].expandButton.removeClass(a);N[ai].expandButton.addClass(d)}else{N[ai].expandButton.removeClass(d);N[ai].expandButton.addClass(a)}};var ab=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].plainVisible=="undefined"){return}if(N[ai].plainVisible){N[ai].plainButton.removeClass(a);N[ai].plainButton.addClass(d)}else{N[ai].plainButton.removeClass(d);N[ai].plainButton.addClass(a)}};var T=function(aj,ai,al,ak){if(typeof N[aj]=="undefined"){return aa(aj)}else{if(!N[aj].toolbarMouseover){return}else{if(ai==false&&N[aj].toolbarPreventHide){return}else{if(Z){return}}}}var am=N[aj].toolbar;if(typeof ak=="undefined"){ak=N[aj].toolbar_delay}Q(aj,am,ai,al,ak,function(){N[aj].toolbarVisible=ai})};var R=function(ak,ai){var aj=f.extend({},ak);aj.width+=ai.width;aj.height+=ai.height;return aj};var P=function(ak,ai){var aj=f.extend({},ak);aj.width-=ai.width;aj.height-=ai.height;return aj};var U=function(ai){if(typeof N[ai].initialSize=="undefined"){N[ai].toolbarHeight=N[ai].toolbar.outerHeight();N[ai].innerSize={width:N[ai].width(),height:N[ai].height()};N[ai].outerSize={width:N[ai].outerWidth(),height:N[ai].outerHeight()};N[ai].borderSize=P(N[ai].outerSize,N[ai].innerSize);N[ai].initialSize={width:N[ai].main.outerWidth(),height:N[ai].main.outerHeight()};N[ai].initialSize.height+=N[ai].toolbarHeight;N[ai].initialOuterSize=R(N[ai].initialSize,N[ai].borderSize);N[ai].finalSize={width:N[ai].table.outerWidth(),height:N[ai].table.outerHeight()};N[ai].finalSize.height+=N[ai].toolbarHeight;N[ai].finalSize.width=CrayonUtil.setMin(N[ai].finalSize.width,N[ai].initialSize.width);N[ai].finalSize.height=CrayonUtil.setMin(N[ai].finalSize.height,N[ai].initialSize.height);N[ai].diffSize=P(N[ai].finalSize,N[ai].initialSize);N[ai].finalOuterSize=R(N[ai].finalSize,N[ai].borderSize);N[ai].initialSize.height+=N[ai].toolbar.outerHeight()}};var D=function(al,ao){if(typeof N[al]=="undefined"){return aa(al)}if(typeof ao=="undefined"){return}var aj=N[al].main;var aq=N[al].plain;if(ao){if(typeof N[al].expanded=="undefined"){U(al);N[al].expandTime=CrayonUtil.setRange(N[al].diffSize.width/3,300,800);N[al].expanded=false;var ap=N[al].finalOuterSize;N[al].placeholder=f("<div></div>");N[al].placeholder.addClass(y);N[al].placeholder.css(ap);N[al].before(N[al].placeholder);N[al].placeholder.css("margin",N[al].css("margin"));f(window).bind("resize",K)}var am={height:"auto","min-height":"none","max-height":"none"};var ai={width:"auto","min-width":"none","max-width":"none"};N[al].outerWidth(N[al].outerWidth());N[al].css({"min-width":"none","max-width":"none"});var an={width:N[al].finalOuterSize.width};if(!N[al].mainHeightAuto&&!N[al].hasOneLine){an.height=N[al].finalOuterSize.height;N[al].outerHeight(N[al].outerHeight())}aj.css(am);aj.css(ai);N[al].stop(true);N[al].animate(an,ah(N[al].expandTime,al),function(){N[al].expanded=true;W(al)});N[al].placeholder.show();f("body").prepend(N[al]);N[al].addClass(t);K()}else{var ar=N[al].initialOuterSize;var ak=N[al].toolbar_delay;if(ar){N[al].stop(true);if(!N[al].expanded){N[al].delay(ak)}var an={width:ar.width};if(!N[al].mainHeightAuto&&!N[al].hasOneLine){an.height=ar.height}N[al].animate(an,ah(N[al].expandTime,al),function(){af(al)})}else{setTimeout(function(){af(al)},ak)}N[al].placeholder.hide();N[al].placeholder.before(N[al]);N[al].css({left:"auto",top:"auto"});N[al].removeClass(t)}ae(al);if(ao){Y(al,false)}};var K=function(){for(uid in N){if(N[uid].hasClass(t)){N[uid].css(N[uid].placeholder.offset())}}};var af=function(ai){N[ai].expanded=false;V(ai);W(ai);if(N[ai].wrapped){Y(ai)}};var M=function(al,aj,am){if(typeof N[al]=="undefined"){return aa(al)}if(typeof aj=="undefined"||am||N[al].expanded){return}var ai=N[al].main;var ak=N[al].plain;if(aj){ai.css("overflow","auto");ak.css("overflow","auto");if(typeof N[al].top!="undefined"){visible=(ai.css("z-index")==1?ai:ak);visible.scrollTop(N[al].top-1);visible.scrollTop(N[al].top);visible.scrollLeft(N[al].left-1);visible.scrollLeft(N[al].left)}}else{visible=(ai.css("z-index")==1?ai:ak);N[al].top=visible.scrollTop();N[al].left=visible.scrollLeft();ai.css("overflow","hidden");ak.css("overflow","hidden")}N[al].scrollChanged=true;C(al)};var C=function(ai){N[ai].table.style("width","100%","important");var aj=setTimeout(function(){N[ai].table.style("width","");clearInterval(aj)},10)};var V=function(ak){var aj=N[ak].main;var ai=N[ak].mainStyle;aj.css(ai);N[ak].css("height","auto");N[ak].css("width",ai.width);N[ak].css("max-width",ai["max-width"]);N[ak].css("min-width",ai["min-width"])};var ae=function(ai){N[ai].plain.outerHeight(N[ai].main.outerHeight())};var O=function(ai){f(j,N[ai]).each(function(){var al=f(this).attr("data-line");var ak=f("#"+al);var aj=null;if(N[ai].wrapped){ak.css("height","");aj=ak.outerHeight();aj=aj?aj:""}else{aj=ak.attr("data-height");aj=aj?aj:"";ak.css("height",aj)}f(this).css("height",aj)})};var ah=function(ai,aj){if(ai=="fast"){ai=200}else{if(ai=="slow"){ai=600}else{if(!S(ai)){ai=parseInt(ai);if(isNaN(ai)){return 0}}}}return ai*N[aj].time};var S=function(ai){return typeof ai=="number"}};f(document).ready(function(){CrayonSyntax.init()})})(jQueryCrayon);
js/min/crayon.te.min.js CHANGED
@@ -1,4 +1,4 @@
1
- var jQueryCrayon=jQuery;(function(a){a(document).ready(function(){CrayonUtil.init()});CrayonUtil=new function(){var c=this;var b=null;c.init=function(){b=CrayonSyntaxSettings;c.initGET()};c.addPrefixToID=function(d){return d.replace(/^([#.])?(.*)$/,"$1"+b.prefix+"$2")};c.removePrefixFromID=function(e){var d=new RegExp("^[#.]?"+b.prefix,"i");return e.replace(d,"")};c.cssElem=function(d){return a(c.addPrefixToID(d))};c.setDefault=function(e,f){return(typeof e=="undefined")?f:e};c.setMax=function(e,d){return e<=d?e:d};c.setMin=function(d,e){return d>=e?d:e};c.setRange=function(e,f,d){return c.setMax(c.setMin(e,f),d)};c.getExt=function(e){if(e.indexOf(".")==-1){return undefined}var d=e.split(".");if(d.length){d=d[d.length-1]}else{d=""}return d};c.initGET=function(){window.currentURL=window.location.protocol+"//"+window.location.host+window.location.pathname;window.currentDir=window.currentURL.substring(0,window.currentURL.lastIndexOf("/"));function d(e){e=e.split("+").join(" ");var h={},g,f=/[?&]?([^=]+)=([^&]*)/g;while(g=f.exec(e)){h[decodeURIComponent(g[1])]=decodeURIComponent(g[2])}return h}window.GET=d(document.location.search)};c.getAJAX=function(d,e){d.version=b.version;a.get(b.ajaxurl,d,e)};c.postAJAX=function(d,e){d.version=b.version;a.post(b.ajaxurl,d,e)};c.reload=function(){var d="?";for(var e in window.GET){d+=e+"="+window.GET[e]+"&"}window.location=window.currentURL+d};c.escape=function(d){if(typeof encodeURIComponent=="function"){return encodeURIComponent(d)}else{if(typeof escape!="function"){return escape(d)}else{return d}}};c.log=function(d){if(typeof console!="undefined"&&b.debug){console.log(d)}};c.decode_html=function(d){return String(d).replace(/&amp;/g,"&").replace(/&lt;/g,"<").replace(/&gt;/g,">")};c.encode_html=function(d){return String(d).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")};c.getReadableColor=function(g,f){f=a.extend({amount:0.5,xMulti:1,yMulti:1.5,normalizeHue:[20,180],normalizeHueXMulti:1/2.5,normalizeHueYMulti:1},f);var d=tinycolor(g);var e=d.toHsv();var i={x:e.s,y:1-e.v};i.x*=f.xMulti;i.y*=f.yMulti;if(f.normalizeHue&&e.h>f.normalizeHue[0]&&e.h<f.normalizeHue[1]){i.x*=f.normalizeHueXMulti;i.y*=f.normalizeHueYMulti}var h=Math.sqrt(Math.pow(i.x,2)+Math.pow(i.y,2));if(h<f.amount){e.v=0}else{e.v=1}e.s=0;return tinycolor(e).toHexString()};c.removeChars=function(e,f){var d=new RegExp("["+e+"]","gmi");return f.replace(d,"")}};a.fn.bindFirst=function(c,e){this.bind(c,e);var b=this.data("events")[c.split(".")[0]];var d=b.pop();b.splice(0,0,d)};a.keys=function(d){var c=[];for(var b in d){c.push(b)}return c};RegExp.prototype.execAll=function(c){var f=[];var b=null;while((b=this.exec(c))!=null){var e=[];for(var d in b){if(parseInt(d)==d){e.push(b[d])}}f.push(e)}return f};RegExp.prototype.escape=function(b){return b.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")};String.prototype.sliceReplace=function(d,b,c){return this.substring(0,d)+c+this.substring(b)};String.prototype.escape=function(){var b={"&":"&amp;","<":"&lt;",">":"&gt;"};return this.replace(/[&<>]/g,function(c){return b[c]||c})};String.prototype.linkify=function(b){b=typeof b!="undefined"?b:"";return this.replace(/(http(s)?:\/\/(\S)+)/gmi,'<a href="$1" target="'+b+'">$1</a>')};String.prototype.toTitleCase=function(){var b=this.split(/\s+/);var c="";a.each(b,function(e,d){if(d!=""){c+=d.slice(0,1).toUpperCase()+d.slice(1,d.length);if(e!=b.length-1&&b[e+1]!=""){c+=" "}}});return c}})(jQueryCrayon);jqueryPopup=Object();jqueryPopup.defaultSettings={centerBrowser:0,centerScreen:0,height:500,left:0,location:0,menubar:0,resizable:0,scrollbars:0,status:0,width:500,windowName:null,windowURL:null,top:0,toolbar:0,data:null,event:"click"};(function(a){popupWindow=function(d,c,f,b){f=typeof f!=="undefined"?f:null;b=typeof b!=="undefined"?b:null;if(typeof d=="string"){d=jQuery(d)}if(!(d instanceof jQuery)){return false}var e=jQuery.extend({},jqueryPopup.defaultSettings,c||{});d.handler=jQuery(d).bind(e.event,function(){if(f){f()}var g="height="+e.height+",width="+e.width+",toolbar="+e.toolbar+",scrollbars="+e.scrollbars+",status="+e.status+",resizable="+e.resizable+",location="+e.location+",menuBar="+e.menubar;e.windowName=e.windowName||jQuery(this).attr("name");var h=jQuery(this).attr("href");if(!e.windowURL&&!(h=="#")&&!(h=="")){e.windowURL=jQuery(this).attr("href")}var i,j;var k=null;if(e.centerBrowser){if(typeof window.screenY=="undefined"){i=(window.screenTop-120)+((((document.documentElement.clientHeight+120)/2)-(e.height/2)));j=window.screenLeft+((((document.body.offsetWidth+20)/2)-(e.width/2)))}else{i=window.screenY+(((window.outerHeight/2)-(e.height/2)));j=window.screenX+(((window.outerWidth/2)-(e.width/2)))}k=window.open(e.windowURL,e.windowName,g+",left="+j+",top="+i)}else{if(e.centerScreen){i=(screen.height-e.height)/2;j=(screen.width-e.width)/2;k=window.open(e.windowURL,e.windowName,g+",left="+j+",top="+i)}else{k=window.open(e.windowURL,e.windowName,g+",left="+e.left+",top="+e.top)}}if(k!=null){k.focus();if(e.data){k.document.write(e.data)}}if(b){b()}});return e};popdownWindow=function(b,c){if(typeof c=="undefined"){c="click"}b=jQuery(b);if(!(b instanceof jQuery)){return false}b.unbind(c,b.handler)}})(jQueryCrayon);(function(f){f.fn.exists=function(){return this.length!==0};f.fn.style=function(B,E,A){var D=this.get(0);if(typeof D=="undefined"){return}var C=D.style;if(typeof B!="undefined"){if(typeof E!="undefined"){A=typeof A!="undefined"?A:"";if(typeof C.setProperty!="undefined"){C.setProperty(B,E,A)}else{C[B]=E}}else{return C[B]}}else{return C}};var d="crayon-pressed";var a="";var n="div.crayon-syntax";var e=".crayon-toolbar";var c=".crayon-info";var w=".crayon-plain";var o=".crayon-main";var m=".crayon-table";var v=".crayon-loading";var h=".crayon-code";var p=".crayon-title";var l=".crayon-tools";var b=".crayon-nums";var j=".crayon-num";var q=".crayon-line";var g="crayon-wrapped";var s=".crayon-nums-content";var u=".crayon-nums-button";var k=".crayon-wrap-button";var i=".crayon-expand-button";var t="crayon-expanded crayon-toolbar-visible";var y="crayon-placeholder";var x=".crayon-popup-button";var r=".crayon-copy-button";var z=".crayon-plain-button";f(document).ready(function(){CrayonSyntax.init()});CrayonSyntax=new function(){var I=this;var N=new Object();var ag;var H;var G=0;var Z;I.init=function(){if(typeof N=="undefined"){N=new Object()}ag=CrayonSyntaxSettings;H=CrayonSyntaxStrings;f(n).each(function(){I.process(this)})};I.process=function(aD,aE){aD=f(aD);var ar=aD.attr("id");if(ar=="crayon-"){ar+=X()}aD.attr("id",ar);CrayonUtil.log(ar);if(typeof aE=="undefined"){aE=false}if(!aE&&!aa(ar)){return}var au=aD.find(e);var aC=aD.find(c);var ap=aD.find(w);var aq=aD.find(o);var aB=aD.find(m);var aj=aD.find(h);var aG=aD.find(p);var aA=aD.find(l);var ay=aD.find(b);var av=aD.find(s);var az=aD.find(u);var am=aD.find(k);var ao=aD.find(i);var aF=aD.find(x);var at=aD.find(r);var al=aD.find(z);N[ar]=aD;N[ar].toolbar=au;N[ar].plain=ap;N[ar].info=aC;N[ar].main=aq;N[ar].table=aB;N[ar].code=aj;N[ar].title=aG;N[ar].tools=aA;N[ar].nums=ay;N[ar].nums_content=av;N[ar].numsButton=az;N[ar].wrapButton=am;N[ar].expandButton=ao;N[ar].popup_button=aF;N[ar].copy_button=at;N[ar].plainButton=al;N[ar].numsVisible=true;N[ar].wrapped=false;N[ar].plainVisible=false;N[ar].toolbar_delay=0;N[ar].time=1;f(w).css("z-index",0);var aw=aq.style();N[ar].mainStyle={height:aw&&aw.height||"","max-height":aw&&aw.maxHeight||"","min-height":aw&&aw.minHeight||"",width:aw&&aw.width||"","max-width":aw&&aw.maxWidth||"","min-width":aw&&aw.minWidth||""};N[ar].mainHeightAuto=N[ar].mainStyle.height==""&&N[ar].mainStyle["max-height"]=="";var ak;var ax=0;N[ar].loading=true;N[ar].scrollBlockFix=false;az.click(function(){CrayonSyntax.toggleNums(ar)});am.click(function(){CrayonSyntax.toggleWrap(ar)});ao.click(function(){CrayonSyntax.toggleExpand(ar)});al.click(function(){CrayonSyntax.togglePlain(ar)});at.click(function(){CrayonSyntax.copyPlain(ar)});B(ar);var an=function(){if(ay.filter('[data-settings~="hide"]').length!=0){av.ready(function(){CrayonUtil.log("function"+ar);CrayonSyntax.toggleNums(ar,true,true)})}else{ac(ar)}if(typeof N[ar].expanded=="undefined"){if(Math.abs(N[ar].main.outerWidth()-N[ar].table.outerWidth())<10){N[ar].expandButton.hide()}else{N[ar].expandButton.show()}}if(ax==5){clearInterval(ak);N[ar].loading=false}ax++};ak=setInterval(an,300);C(ar);f(j,N[ar]).each(function(){var aJ=f(this).attr("data-line");var aI=f("#"+aJ);var aH=aI.style("height");if(aH){aI.attr("data-height",aH)}});aq.css("position","relative");aq.css("z-index",1);Z=(aD.filter('[data-settings~="touchscreen"]').length!=0);if(!Z){aq.click(function(){A(ar,"",false)});ap.click(function(){A(ar,"",false)});aC.click(function(){A(ar,"",false)})}if(aD.filter('[data-settings~="no-popup"]').length==0){N[ar].popup_settings=popupWindow(aF,{height:screen.height-200,width:screen.width-100,top:75,left:50,scrollbars:1,windowURL:"",data:""},function(){F(ar)},function(){})}ap.css("opacity",0);N[ar].toolbarVisible=true;N[ar].hasOneLine=aB.outerHeight()<au.outerHeight()*2;N[ar].toolbarMouseover=false;if(au.filter('[data-settings~="mouseover"]').length!=0&&!Z){N[ar].toolbarMouseover=true;N[ar].toolbarVisible=false;au.css("margin-top","-"+au.outerHeight()+"px");au.hide();if(au.filter('[data-settings~="overlay"]').length!=0&&!N[ar].hasOneLine){au.css("position","absolute");au.css("z-index",2);if(au.filter('[data-settings~="hide"]').length!=0){aq.click(function(){T(ar,undefined,undefined,0)});ap.click(function(){T(ar,false,undefined,0)})}}else{au.css("z-index",4)}if(au.filter('[data-settings~="delay"]').length!=0){N[ar].toolbar_delay=500}aD.mouseenter(function(){T(ar,true)}).mouseleave(function(){T(ar,false)})}else{if(Z){au.show()}}if(aD.filter('[data-settings~="minimize"]').length==0){I.minimize(ar)}if(ap.length!=0&&!Z){if(ap.filter('[data-settings~="dblclick"]').length!=0){aq.dblclick(function(){CrayonSyntax.togglePlain(ar)})}else{if(ap.filter('[data-settings~="click"]').length!=0){aq.click(function(){CrayonSyntax.togglePlain(ar)})}else{if(ap.filter('[data-settings~="mouseover"]').length!=0){aD.mouseenter(function(){CrayonSyntax.togglePlain(ar,true)}).mouseleave(function(){CrayonSyntax.togglePlain(ar,false)});az.hide()}}}if(ap.filter('[data-settings~="show-plain-default"]').length!=0){CrayonSyntax.togglePlain(ar,true)}}var ai=aD.filter('[data-settings~="expand"]').length!=0;if(!Z&&aD.filter('[data-settings~="scroll-mouseover"]').length!=0){aq.css("overflow","hidden");ap.css("overflow","hidden");aD.mouseenter(function(){M(ar,true,ai)}).mouseleave(function(){M(ar,false,ai)})}if(ai){aD.mouseenter(function(){D(ar,true)}).mouseleave(function(){D(ar,false)})}if(aD.filter('[data-settings~="disable-anim"]').length!=0){N[ar].time=0}if(aD.filter('[data-settings~="wrap"]').length!=0){N[ar].wrapped=true}N[ar].mac=aD.hasClass("crayon-os-mac");ac(ar);ab(ar);Y(ar)};var aa=function(ai){CrayonUtil.log(N);if(typeof N[ai]=="undefined"){N[ai]=f("#"+ai);CrayonUtil.log("make "+ai);return true}CrayonUtil.log("no make "+ai);return false};var X=function(){return G++};var F=function(ai){if(typeof N[ai]=="undefined"){return aa(ai)}var aj=N[ai].popup_settings;if(aj.data){return}var al=N[ai].clone(true);al.removeClass("crayon-wrapped");if(N[ai].wrapped){f(j,al).each(function(){var ao=f(this).attr("data-line");var an=f("#"+ao);var am=an.attr("data-height");am=am?am:"";if(typeof am!="undefined"){an.css("height",am);f(this).css("height",am)}})}al.find(o).css("height","");var ak="";if(N[ai].plainVisible){ak=al.find(w)}else{ak=al.find(o)}aj.data=I.getAllCSS()+'<body class="crayon-popup-window" style="padding:0; margin:0;"><div class="'+al.attr("class")+' crayon-popup">'+I.removeCssInline(I.getHtmlString(ak))+"</div></body>"};I.minimize=function(al){var ak=f('<div class="crayon-minimize crayon-button"><div>');N[al].tools.append(ak);N[al].origTitle=N[al].title.html();if(!N[al].origTitle){N[al].title.html(H.minimize)}var aj="crayon-minimized";var ai=function(){N[al].toolbarPreventHide=false;ak.remove();N[al].removeClass(aj);N[al].title.html(N[al].origTitle);var am=N[al].toolbar;if(am.filter('[data-settings~="never-show"]').length!=0){am.remove()}};N[al].toolbar.click(ai);ak.click(ai);N[al].addClass(aj);N[al].toolbarPreventHide=true;T(al,undefined,undefined,0)};I.getHtmlString=function(ai){return f("<div>").append(ai.clone()).remove().html()};I.removeCssInline=function(ak){var aj=/style\s*=\s*"([^"]+)"/gmi;var ai=null;while((ai=aj.exec(ak))!=null){var al=ai[1];al=al.replace(/\b(?:width|height)\s*:[^;]+;/gmi,"");ak=ak.sliceReplace(ai.index,ai.index+ai[0].length,'style="'+al+'"')}return ak};I.getAllCSS=function(){var ak="";var aj=f('link[rel="stylesheet"]');var ai=[];if(aj.length==1){ai=aj}else{ai=aj.filter('[href*="crayon-syntax-highlighter"], [href*="min/"]')}ai.each(function(){var al=I.getHtmlString(f(this));ak+=al});return ak};I.copyPlain=function(ak,al){if(typeof N[ak]=="undefined"){return aa(ak)}var aj=N[ak].plain;I.togglePlain(ak,true,true);T(ak,true);var ai=N[ak].mac?"\u2318":"CTRL";var am=H.copy;am=am.replace(/%s/,ai+"+C");am=am.replace(/%s/,ai+"+V");A(ak,am);return false};var A=function(aj,al,ai){if(typeof N[aj]=="undefined"){return aa(aj)}var ak=N[aj].info;if(typeof al=="undefined"){al=""}if(typeof ai=="undefined"){ai=true}if(L(ak)&&ai){ak.html("<div>"+al+"</div>");ak.css("margin-top",-ak.outerHeight());ak.show();Q(aj,ak,true);setTimeout(function(){Q(aj,ak,false)},5000)}if(!ai){Q(aj,ak,false)}};var B=function(ai){if(window.devicePixelRatio>1){var aj=f(".crayon-button-icon",N[ai].toolbar);aj.each(function(){var al=f(this).css("background-image");var ak=al.replace(/\.(?=[^\.]+$)/g,"@2x.");f(this).css("background-size","48px 128px");f(this).css("background-image",ak)})}};var L=function(ai){var aj="-"+ai.outerHeight()+"px";if(ai.css("margin-top")==aj||ai.css("display")=="none"){return true}else{return false}};var Q=function(al,ak,aj,an,am,ap){var ai=function(){if(ap){ap(al,ak)}};var ao="-"+ak.outerHeight()+"px";if(typeof aj=="undefined"){if(L(ak)){aj=true}else{aj=false}}if(typeof an=="undefined"){an=100}if(an==false){an=false}if(typeof am=="undefined"){am=0}ak.stop(true);if(aj==true){ak.show();ak.animate({marginTop:0},ah(an,al),ai)}else{if(aj==false){if(ak.css("margin-top")=="0px"&&am){ak.delay(am)}ak.animate({marginTop:ao},ah(an,al),function(){ak.hide();ai()})}}};I.togglePlain=function(al,am,aj){if(typeof N[al]=="undefined"){return aa(al)}var ai=N[al].main;var ak=N[al].plain;if((ai.is(":animated")||ak.is(":animated"))&&typeof am=="undefined"){return}ae(al);var ao,an;if(typeof am!="undefined"){if(am){ao=ai;an=ak}else{ao=ak;an=ai}}else{if(ai.css("z-index")==1){ao=ai;an=ak}else{ao=ak;an=ai}}N[al].plainVisible=(an==ak);N[al].top=ao.scrollTop();N[al].left=ao.scrollLeft();N[al].scrollChanged=false;C(al);ao.stop(true);ao.fadeTo(ah(500,al),0,function(){ao.css("z-index",0)});an.stop(true);an.fadeTo(ah(500,al),1,function(){an.css("z-index",1);if(an==ak){if(aj){ak.select()}else{}}an.scrollTop(N[al].top+1);an.scrollTop(N[al].top);an.scrollLeft(N[al].left+1);an.scrollLeft(N[al].left)});an.scrollTop(N[al].top);an.scrollLeft(N[al].left);ab(al);T(al,false);return false};I.toggleNums=function(am,al,ai){if(typeof N[am]=="undefined"){aa(am);return false}if(N[am].table.is(":animated")){return false}var ao=Math.round(N[am].nums_content.outerWidth()+1);var an="-"+ao+"px";var ak;if(typeof al!="undefined"){ak=false}else{ak=(N[am].table.css("margin-left")==an)}var aj;if(ak){aj="0px";N[am].numsVisible=true}else{N[am].table.css("margin-left","0px");N[am].numsVisible=false;aj=an}if(typeof ai!="undefined"){N[am].table.css("margin-left",aj);ac(am);return false}var ap=(N[am].table.outerWidth()+J(N[am].table.css("margin-left"))>N[am].main.outerWidth());var aq=(N[am].table.outerHeight()>N[am].main.outerHeight());if(!ap&&!aq){N[am].main.css("overflow","hidden")}N[am].table.animate({marginLeft:aj},ah(200,am),function(){if(typeof N[am]!="undefined"){ac(am);if(!ap&&!aq){N[am].main.css("overflow","auto")}}});return false};I.toggleWrap=function(ai){N[ai].wrapped=!N[ai].wrapped;Y(ai)};I.toggleExpand=function(ai){var aj=!CrayonUtil.setDefault(N[ai].expanded,false);D(ai,aj)};var Y=function(ai,aj){aj=CrayonUtil.setDefault(aj,true);if(N[ai].wrapped){N[ai].addClass(g)}else{N[ai].removeClass(g)}E(ai);if(!N[ai].expanded&&aj){V(ai)}N[ai].wrapTimes=0;clearInterval(N[ai].wrapTimer);N[ai].wrapTimer=setInterval(function(){if(N[ai].is(":visible")){O(ai);N[ai].wrapTimes++;if(N[ai].wrapTimes==5){clearInterval(N[ai].wrapTimer)}}},200)};var ad=function(ai){if(typeof N[ai]=="undefined"){aa(ai);return false}};var J=function(aj){if(typeof aj!="string"){return 0}var ai=aj.replace(/[^-0-9]/g,"");if(ai.length==0){return 0}else{return parseInt(ai)}};var ac=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].numsVisible=="undefined"){return}if(N[ai].numsVisible){N[ai].numsButton.removeClass(a);N[ai].numsButton.addClass(d)}else{N[ai].numsButton.removeClass(d);N[ai].numsButton.addClass(a)}};var E=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].wrapped=="undefined"){return}if(N[ai].wrapped){N[ai].wrapButton.removeClass(a);N[ai].wrapButton.addClass(d)}else{N[ai].wrapButton.removeClass(d);N[ai].wrapButton.addClass(a)}};var W=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].expanded=="undefined"){return}if(N[ai].expanded){N[ai].expandButton.removeClass(a);N[ai].expandButton.addClass(d)}else{N[ai].expandButton.removeClass(d);N[ai].expandButton.addClass(a)}};var ab=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].plainVisible=="undefined"){return}if(N[ai].plainVisible){N[ai].plainButton.removeClass(a);N[ai].plainButton.addClass(d)}else{N[ai].plainButton.removeClass(d);N[ai].plainButton.addClass(a)}};var T=function(aj,ai,al,ak){if(typeof N[aj]=="undefined"){return aa(aj)}else{if(!N[aj].toolbarMouseover){return}else{if(ai==false&&N[aj].toolbarPreventHide){return}else{if(Z){return}}}}var am=N[aj].toolbar;if(typeof ak=="undefined"){ak=N[aj].toolbar_delay}Q(aj,am,ai,al,ak,function(){N[aj].toolbarVisible=ai})};var R=function(ak,ai){var aj=f.extend({},ak);aj.width+=ai.width;aj.height+=ai.height;return aj};var P=function(ak,ai){var aj=f.extend({},ak);aj.width-=ai.width;aj.height-=ai.height;return aj};var U=function(ai){if(typeof N[ai].initialSize=="undefined"){N[ai].toolbarHeight=N[ai].toolbar.outerHeight();N[ai].innerSize={width:N[ai].width(),height:N[ai].height()};N[ai].outerSize={width:N[ai].outerWidth(),height:N[ai].outerHeight()};N[ai].borderSize=P(N[ai].outerSize,N[ai].innerSize);N[ai].initialSize={width:N[ai].main.outerWidth(),height:N[ai].main.outerHeight()};N[ai].initialSize.height+=N[ai].toolbarHeight;N[ai].initialOuterSize=R(N[ai].initialSize,N[ai].borderSize);N[ai].finalSize={width:N[ai].table.outerWidth(),height:N[ai].table.outerHeight()};N[ai].finalSize.height+=N[ai].toolbarHeight;N[ai].finalSize.width=CrayonUtil.setMin(N[ai].finalSize.width,N[ai].initialSize.width);N[ai].finalSize.height=CrayonUtil.setMin(N[ai].finalSize.height,N[ai].initialSize.height);N[ai].diffSize=P(N[ai].finalSize,N[ai].initialSize);N[ai].finalOuterSize=R(N[ai].finalSize,N[ai].borderSize);N[ai].initialSize.height+=N[ai].toolbar.outerHeight()}};var D=function(al,ao){if(typeof N[al]=="undefined"){return aa(al)}if(typeof ao=="undefined"){return}var aj=N[al].main;var aq=N[al].plain;if(ao){if(typeof N[al].expanded=="undefined"){U(al);N[al].expandTime=CrayonUtil.setRange(N[al].diffSize.width/3,300,800);N[al].expanded=false;var ap=N[al].finalOuterSize;N[al].placeholder=f("<div></div>");N[al].placeholder.addClass(y);N[al].placeholder.css(ap);N[al].before(N[al].placeholder);N[al].placeholder.css("margin",N[al].css("margin"));f(window).bind("resize",K)}var am={height:"auto","min-height":"none","max-height":"none"};var ai={width:"auto","min-width":"none","max-width":"none"};N[al].outerWidth(N[al].outerWidth());N[al].css({"min-width":"none","max-width":"none"});var an={width:N[al].finalOuterSize.width};if(!N[al].mainHeightAuto&&!N[al].hasOneLine){an.height=N[al].finalOuterSize.height;N[al].outerHeight(N[al].outerHeight())}aj.css(am);aj.css(ai);N[al].stop(true);N[al].animate(an,ah(N[al].expandTime,al),function(){N[al].expanded=true;W(al)});N[al].placeholder.show();f("body").prepend(N[al]);N[al].addClass(t);K()}else{var ar=N[al].initialOuterSize;var ak=N[al].toolbar_delay;if(ar){N[al].stop(true);if(!N[al].expanded){N[al].delay(ak)}var an={width:ar.width};if(!N[al].mainHeightAuto&&!N[al].hasOneLine){an.height=ar.height}N[al].animate(an,ah(N[al].expandTime,al),function(){af(al)})}else{setTimeout(function(){af(al)},ak)}N[al].placeholder.hide();N[al].placeholder.before(N[al]);N[al].css({left:"auto",top:"auto"});N[al].removeClass(t)}ae(al);if(ao){Y(al,false)}};var K=function(){for(uid in N){if(N[uid].hasClass(t)){N[uid].css(N[uid].placeholder.offset())}}};var af=function(ai){N[ai].expanded=false;V(ai);W(ai);if(N[ai].wrapped){Y(ai)}};var M=function(al,aj,am){if(typeof N[al]=="undefined"){return aa(al)}if(typeof aj=="undefined"||am||N[al].expanded){return}var ai=N[al].main;var ak=N[al].plain;if(aj){ai.css("overflow","auto");ak.css("overflow","auto");if(typeof N[al].top!="undefined"){visible=(ai.css("z-index")==1?ai:ak);visible.scrollTop(N[al].top-1);visible.scrollTop(N[al].top);visible.scrollLeft(N[al].left-1);visible.scrollLeft(N[al].left)}}else{visible=(ai.css("z-index")==1?ai:ak);N[al].top=visible.scrollTop();N[al].left=visible.scrollLeft();ai.css("overflow","hidden");ak.css("overflow","hidden")}N[al].scrollChanged=true;C(al)};var C=function(ai){N[ai].table.style("width","100%","important");var aj=setTimeout(function(){N[ai].table.style("width","");clearInterval(aj)},10)};var V=function(ak){var aj=N[ak].main;var ai=N[ak].mainStyle;aj.css(ai);N[ak].css("height","auto");N[ak].css("width",ai.width);N[ak].css("max-width",ai["max-width"]);N[ak].css("min-width",ai["min-width"])};var ae=function(ai){N[ai].plain.outerHeight(N[ai].main.outerHeight())};var O=function(ai){f(j,N[ai]).each(function(){var al=f(this).attr("data-line");var ak=f("#"+al);var aj=null;if(N[ai].wrapped){ak.css("height","");aj=ak.outerHeight();aj=aj?aj:""}else{aj=ak.attr("data-height");aj=aj?aj:"";ak.css("height",aj)}f(this).css("height",aj)})};var ah=function(ai,aj){if(ai=="fast"){ai=200}else{if(ai=="slow"){ai=600}else{if(!S(ai)){ai=parseInt(ai);if(isNaN(ai)){return 0}}}}return ai*N[aj].time};var S=function(ai){return typeof ai=="number"}}})(jQueryCrayon);(function(b){var a=CrayonTagEditorSettings;window.CrayonQuickTags=new function(){var c=this;c.init=function(){c.sel='*[id*="crayon_quicktag"],*[class*="crayon_quicktag"]';var e=a.quicktag_text;e=e!==undefined?e:"crayon";QTags.addButton("crayon_quicktag",e,function(){CrayonTagEditor.showDialog({insert:function(g){QTags.insertContent(g)},select:c.getSelectedText,editor_str:"html",output:"encode"});b(c.sel).removeClass("qt_crayon_highlight")});var d;var f=setInterval(function(){d=b(c.sel).first();if(typeof d!="undefined"){CrayonTagEditor.bind(c.sel);clearInterval(f)}},100)};c.getSelectedText=function(){if(QTags.instances.length==0){return null}else{var f=QTags.instances[0];var e=f.canvas.selectionStart;var d=f.canvas.selectionEnd;return f.canvas.value.substring(e,d)}}};b(document).ready(function(){CrayonQuickTags.init()})})(jQueryCrayon);
2
  /*!
3
  Colorbox v1.5.9 - 2014-04-25
4
  jQuery lightbox and modal window plugin
1
+ var jQueryCrayon=jQuery;(function(a){CrayonUtil=new function(){var c=this;var b=null;c.init=function(){b=CrayonSyntaxSettings;c.initGET()};c.addPrefixToID=function(d){return d.replace(/^([#.])?(.*)$/,"$1"+b.prefix+"$2")};c.removePrefixFromID=function(e){var d=new RegExp("^[#.]?"+b.prefix,"i");return e.replace(d,"")};c.cssElem=function(d){return a(c.addPrefixToID(d))};c.setDefault=function(e,f){return(typeof e=="undefined")?f:e};c.setMax=function(e,d){return e<=d?e:d};c.setMin=function(d,e){return d>=e?d:e};c.setRange=function(e,f,d){return c.setMax(c.setMin(e,f),d)};c.getExt=function(e){if(e.indexOf(".")==-1){return undefined}var d=e.split(".");if(d.length){d=d[d.length-1]}else{d=""}return d};c.initGET=function(){window.currentURL=window.location.protocol+"//"+window.location.host+window.location.pathname;window.currentDir=window.currentURL.substring(0,window.currentURL.lastIndexOf("/"));function d(e){e=e.split("+").join(" ");var h={},g,f=/[?&]?([^=]+)=([^&]*)/g;while(g=f.exec(e)){h[decodeURIComponent(g[1])]=decodeURIComponent(g[2])}return h}window.GET=d(document.location.search)};c.getAJAX=function(d,e){d.version=b.version;a.get(b.ajaxurl,d,e)};c.postAJAX=function(d,e){d.version=b.version;a.post(b.ajaxurl,d,e)};c.reload=function(){var d="?";for(var e in window.GET){d+=e+"="+window.GET[e]+"&"}window.location=window.currentURL+d};c.escape=function(d){if(typeof encodeURIComponent=="function"){return encodeURIComponent(d)}else{if(typeof escape!="function"){return escape(d)}else{return d}}};c.log=function(d){if(typeof console!="undefined"&&b.debug){console.log(d)}};c.decode_html=function(d){return String(d).replace(/&amp;/g,"&").replace(/&lt;/g,"<").replace(/&gt;/g,">")};c.encode_html=function(d){return String(d).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")};c.getReadableColor=function(g,f){f=a.extend({amount:0.5,xMulti:1,yMulti:1.5,normalizeHue:[20,180],normalizeHueXMulti:1/2.5,normalizeHueYMulti:1},f);var d=tinycolor(g);var e=d.toHsv();var i={x:e.s,y:1-e.v};i.x*=f.xMulti;i.y*=f.yMulti;if(f.normalizeHue&&e.h>f.normalizeHue[0]&&e.h<f.normalizeHue[1]){i.x*=f.normalizeHueXMulti;i.y*=f.normalizeHueYMulti}var h=Math.sqrt(Math.pow(i.x,2)+Math.pow(i.y,2));if(h<f.amount){e.v=0}else{e.v=1}e.s=0;return tinycolor(e).toHexString()};c.removeChars=function(e,f){var d=new RegExp("["+e+"]","gmi");return f.replace(d,"")}};a(document).ready(function(){CrayonUtil.init()});a.fn.bindFirst=function(c,e){this.bind(c,e);var b=this.data("events")[c.split(".")[0]];var d=b.pop();b.splice(0,0,d)};a.keys=function(d){var c=[];for(var b in d){c.push(b)}return c};RegExp.prototype.execAll=function(c){var f=[];var b=null;while((b=this.exec(c))!=null){var e=[];for(var d in b){if(parseInt(d)==d){e.push(b[d])}}f.push(e)}return f};RegExp.prototype.escape=function(b){return b.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")};String.prototype.sliceReplace=function(d,b,c){return this.substring(0,d)+c+this.substring(b)};String.prototype.escape=function(){var b={"&":"&amp;","<":"&lt;",">":"&gt;"};return this.replace(/[&<>]/g,function(c){return b[c]||c})};String.prototype.linkify=function(b){b=typeof b!="undefined"?b:"";return this.replace(/(http(s)?:\/\/(\S)+)/gmi,'<a href="$1" target="'+b+'">$1</a>')};String.prototype.toTitleCase=function(){var b=this.split(/\s+/);var c="";a.each(b,function(e,d){if(d!=""){c+=d.slice(0,1).toUpperCase()+d.slice(1,d.length);if(e!=b.length-1&&b[e+1]!=""){c+=" "}}});return c}})(jQueryCrayon);jqueryPopup=Object();jqueryPopup.defaultSettings={centerBrowser:0,centerScreen:0,height:500,left:0,location:0,menubar:0,resizable:0,scrollbars:0,status:0,width:500,windowName:null,windowURL:null,top:0,toolbar:0,data:null,event:"click"};(function(a){popupWindow=function(d,c,f,b){f=typeof f!=="undefined"?f:null;b=typeof b!=="undefined"?b:null;if(typeof d=="string"){d=jQuery(d)}if(!(d instanceof jQuery)){return false}var e=jQuery.extend({},jqueryPopup.defaultSettings,c||{});d.handler=jQuery(d).bind(e.event,function(){if(f){f()}var g="height="+e.height+",width="+e.width+",toolbar="+e.toolbar+",scrollbars="+e.scrollbars+",status="+e.status+",resizable="+e.resizable+",location="+e.location+",menuBar="+e.menubar;e.windowName=e.windowName||jQuery(this).attr("name");var h=jQuery(this).attr("href");if(!e.windowURL&&!(h=="#")&&!(h=="")){e.windowURL=jQuery(this).attr("href")}var i,j;var k=null;if(e.centerBrowser){if(typeof window.screenY=="undefined"){i=(window.screenTop-120)+((((document.documentElement.clientHeight+120)/2)-(e.height/2)));j=window.screenLeft+((((document.body.offsetWidth+20)/2)-(e.width/2)))}else{i=window.screenY+(((window.outerHeight/2)-(e.height/2)));j=window.screenX+(((window.outerWidth/2)-(e.width/2)))}k=window.open(e.windowURL,e.windowName,g+",left="+j+",top="+i)}else{if(e.centerScreen){i=(screen.height-e.height)/2;j=(screen.width-e.width)/2;k=window.open(e.windowURL,e.windowName,g+",left="+j+",top="+i)}else{k=window.open(e.windowURL,e.windowName,g+",left="+e.left+",top="+e.top)}}if(k!=null){k.focus();if(e.data){k.document.write(e.data)}}if(b){b()}});return e};popdownWindow=function(b,c){if(typeof c=="undefined"){c="click"}b=jQuery(b);if(!(b instanceof jQuery)){return false}b.unbind(c,b.handler)}})(jQueryCrayon);(function(f){f.fn.exists=function(){return this.length!==0};f.fn.style=function(B,E,A){var D=this.get(0);if(typeof D=="undefined"){return}var C=D.style;if(typeof B!="undefined"){if(typeof E!="undefined"){A=typeof A!="undefined"?A:"";if(typeof C.setProperty!="undefined"){C.setProperty(B,E,A)}else{C[B]=E}}else{return C[B]}}else{return C}};var d="crayon-pressed";var a="";var n="div.crayon-syntax";var e=".crayon-toolbar";var c=".crayon-info";var w=".crayon-plain";var o=".crayon-main";var m=".crayon-table";var v=".crayon-loading";var h=".crayon-code";var p=".crayon-title";var l=".crayon-tools";var b=".crayon-nums";var j=".crayon-num";var q=".crayon-line";var g="crayon-wrapped";var s=".crayon-nums-content";var u=".crayon-nums-button";var k=".crayon-wrap-button";var i=".crayon-expand-button";var t="crayon-expanded crayon-toolbar-visible";var y="crayon-placeholder";var x=".crayon-popup-button";var r=".crayon-copy-button";var z=".crayon-plain-button";CrayonSyntax=new function(){var I=this;var N=new Object();var ag;var H;var G=0;var Z;I.init=function(){if(typeof N=="undefined"){N=new Object()}ag=CrayonSyntaxSettings;H=CrayonSyntaxStrings;f(n).each(function(){I.process(this)})};I.process=function(aD,aE){aD=f(aD);var ar=aD.attr("id");if(ar=="crayon-"){ar+=X()}aD.attr("id",ar);CrayonUtil.log(ar);if(typeof aE=="undefined"){aE=false}if(!aE&&!aa(ar)){return}var au=aD.find(e);var aC=aD.find(c);var ap=aD.find(w);var aq=aD.find(o);var aB=aD.find(m);var aj=aD.find(h);var aG=aD.find(p);var aA=aD.find(l);var ay=aD.find(b);var av=aD.find(s);var az=aD.find(u);var am=aD.find(k);var ao=aD.find(i);var aF=aD.find(x);var at=aD.find(r);var al=aD.find(z);N[ar]=aD;N[ar].toolbar=au;N[ar].plain=ap;N[ar].info=aC;N[ar].main=aq;N[ar].table=aB;N[ar].code=aj;N[ar].title=aG;N[ar].tools=aA;N[ar].nums=ay;N[ar].nums_content=av;N[ar].numsButton=az;N[ar].wrapButton=am;N[ar].expandButton=ao;N[ar].popup_button=aF;N[ar].copy_button=at;N[ar].plainButton=al;N[ar].numsVisible=true;N[ar].wrapped=false;N[ar].plainVisible=false;N[ar].toolbar_delay=0;N[ar].time=1;f(w).css("z-index",0);var aw=aq.style();N[ar].mainStyle={height:aw&&aw.height||"","max-height":aw&&aw.maxHeight||"","min-height":aw&&aw.minHeight||"",width:aw&&aw.width||"","max-width":aw&&aw.maxWidth||"","min-width":aw&&aw.minWidth||""};N[ar].mainHeightAuto=N[ar].mainStyle.height==""&&N[ar].mainStyle["max-height"]=="";var ak;var ax=0;N[ar].loading=true;N[ar].scrollBlockFix=false;az.click(function(){CrayonSyntax.toggleNums(ar)});am.click(function(){CrayonSyntax.toggleWrap(ar)});ao.click(function(){CrayonSyntax.toggleExpand(ar)});al.click(function(){CrayonSyntax.togglePlain(ar)});at.click(function(){CrayonSyntax.copyPlain(ar)});B(ar);var an=function(){if(ay.filter('[data-settings~="hide"]').length!=0){av.ready(function(){CrayonUtil.log("function"+ar);CrayonSyntax.toggleNums(ar,true,true)})}else{ac(ar)}if(typeof N[ar].expanded=="undefined"){if(Math.abs(N[ar].main.outerWidth()-N[ar].table.outerWidth())<10){N[ar].expandButton.hide()}else{N[ar].expandButton.show()}}if(ax==5){clearInterval(ak);N[ar].loading=false}ax++};ak=setInterval(an,300);C(ar);f(j,N[ar]).each(function(){var aJ=f(this).attr("data-line");var aI=f("#"+aJ);var aH=aI.style("height");if(aH){aI.attr("data-height",aH)}});aq.css("position","relative");aq.css("z-index",1);Z=(aD.filter('[data-settings~="touchscreen"]').length!=0);if(!Z){aq.click(function(){A(ar,"",false)});ap.click(function(){A(ar,"",false)});aC.click(function(){A(ar,"",false)})}if(aD.filter('[data-settings~="no-popup"]').length==0){N[ar].popup_settings=popupWindow(aF,{height:screen.height-200,width:screen.width-100,top:75,left:50,scrollbars:1,windowURL:"",data:""},function(){F(ar)},function(){})}ap.css("opacity",0);N[ar].toolbarVisible=true;N[ar].hasOneLine=aB.outerHeight()<au.outerHeight()*2;N[ar].toolbarMouseover=false;if(au.filter('[data-settings~="mouseover"]').length!=0&&!Z){N[ar].toolbarMouseover=true;N[ar].toolbarVisible=false;au.css("margin-top","-"+au.outerHeight()+"px");au.hide();if(au.filter('[data-settings~="overlay"]').length!=0&&!N[ar].hasOneLine){au.css("position","absolute");au.css("z-index",2);if(au.filter('[data-settings~="hide"]').length!=0){aq.click(function(){T(ar,undefined,undefined,0)});ap.click(function(){T(ar,false,undefined,0)})}}else{au.css("z-index",4)}if(au.filter('[data-settings~="delay"]').length!=0){N[ar].toolbar_delay=500}aD.mouseenter(function(){T(ar,true)}).mouseleave(function(){T(ar,false)})}else{if(Z){au.show()}}if(aD.filter('[data-settings~="minimize"]').length==0){I.minimize(ar)}if(ap.length!=0&&!Z){if(ap.filter('[data-settings~="dblclick"]').length!=0){aq.dblclick(function(){CrayonSyntax.togglePlain(ar)})}else{if(ap.filter('[data-settings~="click"]').length!=0){aq.click(function(){CrayonSyntax.togglePlain(ar)})}else{if(ap.filter('[data-settings~="mouseover"]').length!=0){aD.mouseenter(function(){CrayonSyntax.togglePlain(ar,true)}).mouseleave(function(){CrayonSyntax.togglePlain(ar,false)});az.hide()}}}if(ap.filter('[data-settings~="show-plain-default"]').length!=0){CrayonSyntax.togglePlain(ar,true)}}var ai=aD.filter('[data-settings~="expand"]').length!=0;if(!Z&&aD.filter('[data-settings~="scroll-mouseover"]').length!=0){aq.css("overflow","hidden");ap.css("overflow","hidden");aD.mouseenter(function(){M(ar,true,ai)}).mouseleave(function(){M(ar,false,ai)})}if(ai){aD.mouseenter(function(){D(ar,true)}).mouseleave(function(){D(ar,false)})}if(aD.filter('[data-settings~="disable-anim"]').length!=0){N[ar].time=0}if(aD.filter('[data-settings~="wrap"]').length!=0){N[ar].wrapped=true}N[ar].mac=aD.hasClass("crayon-os-mac");ac(ar);ab(ar);Y(ar)};var aa=function(ai){CrayonUtil.log(N);if(typeof N[ai]=="undefined"){N[ai]=f("#"+ai);CrayonUtil.log("make "+ai);return true}CrayonUtil.log("no make "+ai);return false};var X=function(){return G++};var F=function(ai){if(typeof N[ai]=="undefined"){return aa(ai)}var aj=N[ai].popup_settings;if(aj&&aj.data){return}var al=N[ai].clone(true);al.removeClass("crayon-wrapped");if(N[ai].wrapped){f(j,al).each(function(){var ao=f(this).attr("data-line");var an=f("#"+ao);var am=an.attr("data-height");am=am?am:"";if(typeof am!="undefined"){an.css("height",am);f(this).css("height",am)}})}al.find(o).css("height","");var ak="";if(N[ai].plainVisible){ak=al.find(w)}else{ak=al.find(o)}aj.data=I.getAllCSS()+'<body class="crayon-popup-window" style="padding:0; margin:0;"><div class="'+al.attr("class")+' crayon-popup">'+I.removeCssInline(I.getHtmlString(ak))+"</div></body>"};I.minimize=function(al){var ak=f('<div class="crayon-minimize crayon-button"><div>');N[al].tools.append(ak);N[al].origTitle=N[al].title.html();if(!N[al].origTitle){N[al].title.html(H.minimize)}var aj="crayon-minimized";var ai=function(){N[al].toolbarPreventHide=false;ak.remove();N[al].removeClass(aj);N[al].title.html(N[al].origTitle);var am=N[al].toolbar;if(am.filter('[data-settings~="never-show"]').length!=0){am.remove()}};N[al].toolbar.click(ai);ak.click(ai);N[al].addClass(aj);N[al].toolbarPreventHide=true;T(al,undefined,undefined,0)};I.getHtmlString=function(ai){return f("<div>").append(ai.clone()).remove().html()};I.removeCssInline=function(ak){var aj=/style\s*=\s*"([^"]+)"/gmi;var ai=null;while((ai=aj.exec(ak))!=null){var al=ai[1];al=al.replace(/\b(?:width|height)\s*:[^;]+;/gmi,"");ak=ak.sliceReplace(ai.index,ai.index+ai[0].length,'style="'+al+'"')}return ak};I.getAllCSS=function(){var ak="";var aj=f('link[rel="stylesheet"]');var ai=[];if(aj.length==1){ai=aj}else{ai=aj.filter('[href*="crayon-syntax-highlighter"], [href*="min/"]')}ai.each(function(){var al=I.getHtmlString(f(this));ak+=al});return ak};I.copyPlain=function(ak,al){if(typeof N[ak]=="undefined"){return aa(ak)}var aj=N[ak].plain;I.togglePlain(ak,true,true);T(ak,true);var ai=N[ak].mac?"\u2318":"CTRL";var am=H.copy;am=am.replace(/%s/,ai+"+C");am=am.replace(/%s/,ai+"+V");A(ak,am);return false};var A=function(aj,al,ai){if(typeof N[aj]=="undefined"){return aa(aj)}var ak=N[aj].info;if(typeof al=="undefined"){al=""}if(typeof ai=="undefined"){ai=true}if(L(ak)&&ai){ak.html("<div>"+al+"</div>");ak.css("margin-top",-ak.outerHeight());ak.show();Q(aj,ak,true);setTimeout(function(){Q(aj,ak,false)},5000)}if(!ai){Q(aj,ak,false)}};var B=function(ai){if(window.devicePixelRatio>1){var aj=f(".crayon-button-icon",N[ai].toolbar);aj.each(function(){var al=f(this).css("background-image");var ak=al.replace(/\.(?=[^\.]+$)/g,"@2x.");f(this).css("background-size","48px 128px");f(this).css("background-image",ak)})}};var L=function(ai){var aj="-"+ai.outerHeight()+"px";if(ai.css("margin-top")==aj||ai.css("display")=="none"){return true}else{return false}};var Q=function(al,ak,aj,an,am,ap){var ai=function(){if(ap){ap(al,ak)}};var ao="-"+ak.outerHeight()+"px";if(typeof aj=="undefined"){if(L(ak)){aj=true}else{aj=false}}if(typeof an=="undefined"){an=100}if(an==false){an=false}if(typeof am=="undefined"){am=0}ak.stop(true);if(aj==true){ak.show();ak.animate({marginTop:0},ah(an,al),ai)}else{if(aj==false){if(ak.css("margin-top")=="0px"&&am){ak.delay(am)}ak.animate({marginTop:ao},ah(an,al),function(){ak.hide();ai()})}}};I.togglePlain=function(al,am,aj){if(typeof N[al]=="undefined"){return aa(al)}var ai=N[al].main;var ak=N[al].plain;if((ai.is(":animated")||ak.is(":animated"))&&typeof am=="undefined"){return}ae(al);var ao,an;if(typeof am!="undefined"){if(am){ao=ai;an=ak}else{ao=ak;an=ai}}else{if(ai.css("z-index")==1){ao=ai;an=ak}else{ao=ak;an=ai}}N[al].plainVisible=(an==ak);N[al].top=ao.scrollTop();N[al].left=ao.scrollLeft();N[al].scrollChanged=false;C(al);ao.stop(true);ao.fadeTo(ah(500,al),0,function(){ao.css("z-index",0)});an.stop(true);an.fadeTo(ah(500,al),1,function(){an.css("z-index",1);if(an==ak){if(aj){ak.select()}else{}}an.scrollTop(N[al].top+1);an.scrollTop(N[al].top);an.scrollLeft(N[al].left+1);an.scrollLeft(N[al].left)});an.scrollTop(N[al].top);an.scrollLeft(N[al].left);ab(al);T(al,false);return false};I.toggleNums=function(am,al,ai){if(typeof N[am]=="undefined"){aa(am);return false}if(N[am].table.is(":animated")){return false}var ao=Math.round(N[am].nums_content.outerWidth()+1);var an="-"+ao+"px";var ak;if(typeof al!="undefined"){ak=false}else{ak=(N[am].table.css("margin-left")==an)}var aj;if(ak){aj="0px";N[am].numsVisible=true}else{N[am].table.css("margin-left","0px");N[am].numsVisible=false;aj=an}if(typeof ai!="undefined"){N[am].table.css("margin-left",aj);ac(am);return false}var ap=(N[am].table.outerWidth()+J(N[am].table.css("margin-left"))>N[am].main.outerWidth());var aq=(N[am].table.outerHeight()>N[am].main.outerHeight());if(!ap&&!aq){N[am].main.css("overflow","hidden")}N[am].table.animate({marginLeft:aj},ah(200,am),function(){if(typeof N[am]!="undefined"){ac(am);if(!ap&&!aq){N[am].main.css("overflow","auto")}}});return false};I.toggleWrap=function(ai){N[ai].wrapped=!N[ai].wrapped;Y(ai)};I.toggleExpand=function(ai){var aj=!CrayonUtil.setDefault(N[ai].expanded,false);D(ai,aj)};var Y=function(ai,aj){aj=CrayonUtil.setDefault(aj,true);if(N[ai].wrapped){N[ai].addClass(g)}else{N[ai].removeClass(g)}E(ai);if(!N[ai].expanded&&aj){V(ai)}N[ai].wrapTimes=0;clearInterval(N[ai].wrapTimer);N[ai].wrapTimer=setInterval(function(){if(N[ai].is(":visible")){O(ai);N[ai].wrapTimes++;if(N[ai].wrapTimes==5){clearInterval(N[ai].wrapTimer)}}},200)};var ad=function(ai){if(typeof N[ai]=="undefined"){aa(ai);return false}};var J=function(aj){if(typeof aj!="string"){return 0}var ai=aj.replace(/[^-0-9]/g,"");if(ai.length==0){return 0}else{return parseInt(ai)}};var ac=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].numsVisible=="undefined"){return}if(N[ai].numsVisible){N[ai].numsButton.removeClass(a);N[ai].numsButton.addClass(d)}else{N[ai].numsButton.removeClass(d);N[ai].numsButton.addClass(a)}};var E=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].wrapped=="undefined"){return}if(N[ai].wrapped){N[ai].wrapButton.removeClass(a);N[ai].wrapButton.addClass(d)}else{N[ai].wrapButton.removeClass(d);N[ai].wrapButton.addClass(a)}};var W=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].expanded=="undefined"){return}if(N[ai].expanded){N[ai].expandButton.removeClass(a);N[ai].expandButton.addClass(d)}else{N[ai].expandButton.removeClass(d);N[ai].expandButton.addClass(a)}};var ab=function(ai){if(typeof N[ai]=="undefined"||typeof N[ai].plainVisible=="undefined"){return}if(N[ai].plainVisible){N[ai].plainButton.removeClass(a);N[ai].plainButton.addClass(d)}else{N[ai].plainButton.removeClass(d);N[ai].plainButton.addClass(a)}};var T=function(aj,ai,al,ak){if(typeof N[aj]=="undefined"){return aa(aj)}else{if(!N[aj].toolbarMouseover){return}else{if(ai==false&&N[aj].toolbarPreventHide){return}else{if(Z){return}}}}var am=N[aj].toolbar;if(typeof ak=="undefined"){ak=N[aj].toolbar_delay}Q(aj,am,ai,al,ak,function(){N[aj].toolbarVisible=ai})};var R=function(ak,ai){var aj=f.extend({},ak);aj.width+=ai.width;aj.height+=ai.height;return aj};var P=function(ak,ai){var aj=f.extend({},ak);aj.width-=ai.width;aj.height-=ai.height;return aj};var U=function(ai){if(typeof N[ai].initialSize=="undefined"){N[ai].toolbarHeight=N[ai].toolbar.outerHeight();N[ai].innerSize={width:N[ai].width(),height:N[ai].height()};N[ai].outerSize={width:N[ai].outerWidth(),height:N[ai].outerHeight()};N[ai].borderSize=P(N[ai].outerSize,N[ai].innerSize);N[ai].initialSize={width:N[ai].main.outerWidth(),height:N[ai].main.outerHeight()};N[ai].initialSize.height+=N[ai].toolbarHeight;N[ai].initialOuterSize=R(N[ai].initialSize,N[ai].borderSize);N[ai].finalSize={width:N[ai].table.outerWidth(),height:N[ai].table.outerHeight()};N[ai].finalSize.height+=N[ai].toolbarHeight;N[ai].finalSize.width=CrayonUtil.setMin(N[ai].finalSize.width,N[ai].initialSize.width);N[ai].finalSize.height=CrayonUtil.setMin(N[ai].finalSize.height,N[ai].initialSize.height);N[ai].diffSize=P(N[ai].finalSize,N[ai].initialSize);N[ai].finalOuterSize=R(N[ai].finalSize,N[ai].borderSize);N[ai].initialSize.height+=N[ai].toolbar.outerHeight()}};var D=function(al,ao){if(typeof N[al]=="undefined"){return aa(al)}if(typeof ao=="undefined"){return}var aj=N[al].main;var aq=N[al].plain;if(ao){if(typeof N[al].expanded=="undefined"){U(al);N[al].expandTime=CrayonUtil.setRange(N[al].diffSize.width/3,300,800);N[al].expanded=false;var ap=N[al].finalOuterSize;N[al].placeholder=f("<div></div>");N[al].placeholder.addClass(y);N[al].placeholder.css(ap);N[al].before(N[al].placeholder);N[al].placeholder.css("margin",N[al].css("margin"));f(window).bind("resize",K)}var am={height:"auto","min-height":"none","max-height":"none"};var ai={width:"auto","min-width":"none","max-width":"none"};N[al].outerWidth(N[al].outerWidth());N[al].css({"min-width":"none","max-width":"none"});var an={width:N[al].finalOuterSize.width};if(!N[al].mainHeightAuto&&!N[al].hasOneLine){an.height=N[al].finalOuterSize.height;N[al].outerHeight(N[al].outerHeight())}aj.css(am);aj.css(ai);N[al].stop(true);N[al].animate(an,ah(N[al].expandTime,al),function(){N[al].expanded=true;W(al)});N[al].placeholder.show();f("body").prepend(N[al]);N[al].addClass(t);K()}else{var ar=N[al].initialOuterSize;var ak=N[al].toolbar_delay;if(ar){N[al].stop(true);if(!N[al].expanded){N[al].delay(ak)}var an={width:ar.width};if(!N[al].mainHeightAuto&&!N[al].hasOneLine){an.height=ar.height}N[al].animate(an,ah(N[al].expandTime,al),function(){af(al)})}else{setTimeout(function(){af(al)},ak)}N[al].placeholder.hide();N[al].placeholder.before(N[al]);N[al].css({left:"auto",top:"auto"});N[al].removeClass(t)}ae(al);if(ao){Y(al,false)}};var K=function(){for(uid in N){if(N[uid].hasClass(t)){N[uid].css(N[uid].placeholder.offset())}}};var af=function(ai){N[ai].expanded=false;V(ai);W(ai);if(N[ai].wrapped){Y(ai)}};var M=function(al,aj,am){if(typeof N[al]=="undefined"){return aa(al)}if(typeof aj=="undefined"||am||N[al].expanded){return}var ai=N[al].main;var ak=N[al].plain;if(aj){ai.css("overflow","auto");ak.css("overflow","auto");if(typeof N[al].top!="undefined"){visible=(ai.css("z-index")==1?ai:ak);visible.scrollTop(N[al].top-1);visible.scrollTop(N[al].top);visible.scrollLeft(N[al].left-1);visible.scrollLeft(N[al].left)}}else{visible=(ai.css("z-index")==1?ai:ak);N[al].top=visible.scrollTop();N[al].left=visible.scrollLeft();ai.css("overflow","hidden");ak.css("overflow","hidden")}N[al].scrollChanged=true;C(al)};var C=function(ai){N[ai].table.style("width","100%","important");var aj=setTimeout(function(){N[ai].table.style("width","");clearInterval(aj)},10)};var V=function(ak){var aj=N[ak].main;var ai=N[ak].mainStyle;aj.css(ai);N[ak].css("height","auto");N[ak].css("width",ai.width);N[ak].css("max-width",ai["max-width"]);N[ak].css("min-width",ai["min-width"])};var ae=function(ai){N[ai].plain.outerHeight(N[ai].main.outerHeight())};var O=function(ai){f(j,N[ai]).each(function(){var al=f(this).attr("data-line");var ak=f("#"+al);var aj=null;if(N[ai].wrapped){ak.css("height","");aj=ak.outerHeight();aj=aj?aj:""}else{aj=ak.attr("data-height");aj=aj?aj:"";ak.css("height",aj)}f(this).css("height",aj)})};var ah=function(ai,aj){if(ai=="fast"){ai=200}else{if(ai=="slow"){ai=600}else{if(!S(ai)){ai=parseInt(ai);if(isNaN(ai)){return 0}}}}return ai*N[aj].time};var S=function(ai){return typeof ai=="number"}};f(document).ready(function(){CrayonSyntax.init()})})(jQueryCrayon);(function(b){var a=CrayonTagEditorSettings;window.CrayonQuickTags=new function(){var c=this;c.init=function(){c.sel='*[id*="crayon_quicktag"],*[class*="crayon_quicktag"]';var e=a.quicktag_text;e=e!==undefined?e:"crayon";QTags.addButton("crayon_quicktag",e,function(){CrayonTagEditor.showDialog({insert:function(g){QTags.insertContent(g)},select:c.getSelectedText,editor_str:"html",output:"encode"});b(c.sel).removeClass("qt_crayon_highlight")});var d;var f=setInterval(function(){d=b(c.sel).first();if(typeof d!="undefined"){CrayonTagEditor.bind(c.sel);clearInterval(f)}},100)};c.getSelectedText=function(){if(QTags.instances.length==0){return null}else{var f=QTags.instances[0];var e=f.canvas.selectionStart;var d=f.canvas.selectionEnd;return f.canvas.value.substring(e,d)}}};b(document).ready(function(){CrayonQuickTags.init()})})(jQueryCrayon);
2
  /*!
3
  Colorbox v1.5.9 - 2014-04-25
4
  jQuery lightbox and modal window plugin
js/src/crayon.js CHANGED
@@ -70,10 +70,6 @@
70
  var CRAYON_COPY_BUTTON = '.crayon-copy-button';
71
  var CRAYON_PLAIN_BUTTON = '.crayon-plain-button';
72
 
73
- $(document).ready(function () {
74
- CrayonSyntax.init();
75
- });
76
-
77
  CrayonSyntax = new function () {
78
  var base = this;
79
  var crayons = new Object();
@@ -410,7 +406,7 @@
410
  return makeUID(uid);
411
  }
412
  var settings = crayons[uid].popup_settings;
413
- if (settings.data) {
414
  // Already done
415
  return;
416
  }
@@ -1150,4 +1146,7 @@
1150
 
1151
  };
1152
 
 
 
 
1153
  })(jQueryCrayon);
70
  var CRAYON_COPY_BUTTON = '.crayon-copy-button';
71
  var CRAYON_PLAIN_BUTTON = '.crayon-plain-button';
72
 
 
 
 
 
73
  CrayonSyntax = new function () {
74
  var base = this;
75
  var crayons = new Object();
406
  return makeUID(uid);
407
  }
408
  var settings = crayons[uid].popup_settings;
409
+ if (settings && settings.data) {
410
  // Already done
411
  return;
412
  }
1146
 
1147
  };
1148
 
1149
+ $(document).ready(function () {
1150
+ CrayonSyntax.init();
1151
+ });
1152
  })(jQueryCrayon);
js/src/util.js CHANGED
@@ -3,10 +3,6 @@ var jQueryCrayon = jQuery;
3
 
4
  (function ($) {
5
 
6
- $(document).ready(function () {
7
- CrayonUtil.init();
8
- });
9
-
10
  CrayonUtil = new function () {
11
 
12
  var base = this;
@@ -179,6 +175,10 @@ var jQueryCrayon = jQuery;
179
 
180
  };
181
 
 
 
 
 
182
  // http://stackoverflow.com/questions/2360655/jquery-event-handlers-always-execute-in-order-they-were-bound-any-way-around-t
183
 
184
  // [name] is the name of the event "click", "mouseover", ..
3
 
4
  (function ($) {
5
 
 
 
 
 
6
  CrayonUtil = new function () {
7
 
8
  var base = this;
175
 
176
  };
177
 
178
+ $(document).ready(function () {
179
+ CrayonUtil.init();
180
+ });
181
+
182
  // http://stackoverflow.com/questions/2360655/jquery-event-handlers-always-execute-in-order-they-were-bound-any-way-around-t
183
 
184
  // [name] is the name of the event "click", "mouseover", ..
langs/c#/reserved.txt CHANGED
@@ -3,6 +3,7 @@ unchecked
3
  delegate
4
  explicit
5
  checked
 
6
  params
7
  typeof
8
  sizeof
3
  delegate
4
  explicit
5
  checked
6
+ nameof
7
  params
8
  typeof
9
  sizeof
langs/coffee/coffee.txt CHANGED
@@ -5,7 +5,7 @@
5
  NAME CoffeeScript
6
  VERSION 1.0
7
 
8
- COMMENT (#.*?$)
9
  STRING (?default)|(%\w?\([^\)]*\))|(\`[^\`]*`)|(\<\<["'-]?\w+["']?)
10
 
11
  FUNCTION:KEYWORD \b(?alt:function.txt)\b
5
  NAME CoffeeScript
6
  VERSION 1.0
7
 
8
+ COMMENT (###[\s\S]*?###|#.*?$)
9
  STRING (?default)|(%\w?\([^\)]*\))|(\`[^\`]*`)|(\<\<["'-]?\w+["']?)
10
 
11
  FUNCTION:KEYWORD \b(?alt:function.txt)\b
langs/css/css.txt CHANGED
@@ -3,11 +3,11 @@
3
  # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
 
5
  NAME CSS
6
- VERSION 1.9.0
7
 
8
  COMMENT (/\*.*?\*/)
9
  STRING (?default)
10
- NOTATION \@[\w-]+[^;]*;?
11
 
12
  # For the <style> tag
13
  ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
3
  # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
 
5
  NAME CSS
6
+ VERSION 1.9.1
7
 
8
  COMMENT (/\*.*?\*/)
9
  STRING (?default)
10
+ NOTATION \@[\w-]+[^;\{]*;?
11
 
12
  # For the <style> tag
13
  ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
langs/extensions.txt CHANGED
@@ -8,6 +8,7 @@ c# cs
8
  c++ h hh hpp hxx h++ cc cpp cxx c++
9
  html html htm xhtml xhtm xml xsd
10
  java java class jar
 
11
  objc m mm
12
  papyrus psc
13
  python py pyw pyc pyo pyd
8
  c++ h hh hpp hxx h++ cc cpp cxx c++
9
  html html htm xhtml xhtm xml xsd
10
  java java class jar
11
+ mel mel ma
12
  objc m mm
13
  papyrus psc
14
  python py pyw pyc pyo pyd
langs/go/statement.txt ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fallthrough
2
+ interface
3
+ continue
4
+ default
5
+ package
6
+ import
7
+ return
8
+ select
9
+ struct
10
+ switch
11
+ break
12
+ const
13
+ defer
14
+ range
15
+ case
16
+ chan
17
+ else
18
+ func
19
+ goto
20
+ type
21
+ for
22
+ map
23
+ var
24
+ go
25
+ if
langs/kl/constant.txt ADDED
@@ -0,0 +1,403 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ true
2
+ false
3
+ null
4
+ on
5
+ off
6
+ AttachmentType_colorRenderBuffer
7
+ AttachmentType_colorTexture
8
+ AttachmentType_depth3DTexture
9
+ AttachmentType_depthCubeTexture
10
+ AttachmentType_depthRenderBuffer
11
+ AttachmentType_depthStencilRenderBuffer
12
+ AttachmentType_depthTexture
13
+ AttachmentType_depthTextureArray
14
+ AttributePatch_NewAttribute
15
+ BONEFLAG_NONSKINNINGBONE
16
+ BULLET_BOX_SHAPE
17
+ BULLET_CAPSULE_SHAPE
18
+ BULLET_COMPOUND_SHAPE
19
+ BULLET_CONE_SHAPE
20
+ BULLET_CONVEX_HULL_SHAPE
21
+ BULLET_CYLINDER_SHAPE
22
+ BULLET_GIMPACT_SHAPE
23
+ BULLET_PLANE_SHAPE
24
+ BULLET_SOFTBODY_SHAPE
25
+ BULLET_SPHERE_SHAPE
26
+ BULLET_TRIANGLEMESH_SHAPE
27
+ BindingRenderParam_globalScope
28
+ BindingRenderParam_initializing
29
+ BindingRenderParam_memberScope
30
+ BindingRenderParam_noScope
31
+ BindingRenderParam_parentScope
32
+ CV_CAP_ANDROID
33
+ CV_CAP_ANY
34
+ CV_CAP_CMU1394
35
+ CV_CAP_DC1394
36
+ CV_CAP_DSHOW
37
+ CV_CAP_FIREWARE
38
+ CV_CAP_FIREWIRE
39
+ CV_CAP_IEEE1394
40
+ CV_CAP_MIL
41
+ CV_CAP_OPENNI
42
+ CV_CAP_PVAPI
43
+ CV_CAP_QT
44
+ CV_CAP_STEREO
45
+ CV_CAP_TYZX
46
+ CV_CAP_UNICAP
47
+ CV_CAP_V4L
48
+ CV_CAP_V4L2
49
+ CV_CAP_VFW
50
+ CV_CAP_XIAPI
51
+ CV_TYZX_COLOR
52
+ CV_TYZX_LEFT
53
+ CV_TYZX_RIGHT
54
+ CV_TYZX_Z
55
+ ContiguousUInt32Allocator_enableChecks
56
+ DEG_TO_RAD
57
+ DIVIDEDOUBLEPRECISION
58
+ DIVIDEPRECISION
59
+ DOUBLEPRECISION
60
+ DefineBinding
61
+ FeedbackBinding
62
+ FlagOpsBits_and
63
+ FlagOpsBits_not
64
+ FlagOpsBits_or
65
+ GL_ACTIVE_ATTRIBUTES
66
+ GL_ACTIVE_UNIFORMS
67
+ GL_ALL_ATTRIB_BITS
68
+ GL_ARRAY_BUFFER
69
+ GL_ARRAY_BUFFER_BINDING
70
+ GL_BACK
71
+ GL_BLEND
72
+ GL_BOOL
73
+ GL_BYTE
74
+ GL_CLAMP_TO_BORDER
75
+ GL_CLAMP_TO_EDGE
76
+ GL_CLIENT_ALL_ATTRIB_BITS
77
+ GL_COLOR_ATTACHMENT0
78
+ GL_COLOR_BUFFER_BIT
79
+ GL_COMPARE_R_TO_TEXTURE
80
+ GL_COMPILE_STATUS
81
+ GL_CULL_FACE
82
+ GL_CURRENT_PROGRAM
83
+ GL_DEPTH_ATTACHMENT
84
+ GL_DEPTH_BUFFER_BIT
85
+ GL_DEPTH_COMPONENT
86
+ GL_DEPTH_COMPONENT16
87
+ GL_DEPTH_COMPONENT24
88
+ GL_DEPTH_COMPONENT32
89
+ GL_DEPTH_COMPONENT32F
90
+ GL_DEPTH_STENCIL
91
+ GL_DEPTH_STENCIL_ATTACHMENT
92
+ GL_DEPTH_TEST
93
+ GL_DEPTH_WRITEMASK
94
+ GL_DRAW_BUFFER
95
+ GL_DRAW_FRAMEBUFFER
96
+ GL_DYNAMIC_DRAW
97
+ GL_ELEMENT_ARRAY_BUFFER
98
+ GL_ELEMENT_ARRAY_BUFFER_BINDING
99
+ GL_FALSE
100
+ GL_FILL
101
+ GL_FLOAT
102
+ GL_FLOAT_MAT3
103
+ GL_FLOAT_MAT4
104
+ GL_FLOAT_VEC2
105
+ GL_FLOAT_VEC3
106
+ GL_FLOAT_VEC4
107
+ GL_FRAMEBUFFER
108
+ GL_FRAMEBUFFER_BINDING
109
+ GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT
110
+ GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER
111
+ GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS
112
+ GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
113
+ GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE
114
+ GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER
115
+ GL_FRAMEBUFFER_UNDEFINED
116
+ GL_FRAMEBUFFER_UNSUPPORTED
117
+ GL_FRONT
118
+ GL_FRONT_AND_BACK
119
+ GL_INFO_LOG_LENGTH
120
+ GL_INT
121
+ GL_INTENSITY
122
+ GL_INTENSITY16
123
+ GL_INTENSITY8
124
+ GL_LEQUAL
125
+ GL_LESS
126
+ GL_LINE
127
+ GL_LINEAR
128
+ GL_LINEAR_MIPMAP_LINEAR
129
+ GL_LINES
130
+ GL_LINK_STATUS
131
+ GL_LUMINANCE
132
+ GL_LUMINANCE16
133
+ GL_LUMINANCE8
134
+ GL_NEAREST
135
+ GL_NONE
136
+ GL_POINTS
137
+ GL_POLYGON_OFFSET_FILL
138
+ GL_QUADS
139
+ GL_R32F
140
+ GL_READ_FRAMEBUFFER
141
+ GL_RED
142
+ GL_RED_INTEGER
143
+ GL_RENDERBUFFER
144
+ GL_RENDER_MODE
145
+ GL_REPEAT
146
+ GL_RG
147
+ GL_RG32F
148
+ GL_RGB
149
+ GL_RGB16
150
+ GL_RGB16F
151
+ GL_RGB32F
152
+ GL_RGB8
153
+ GL_RGBA
154
+ GL_RGBA16
155
+ GL_RGBA16F
156
+ GL_RGBA32F
157
+ GL_RGBA8
158
+ GL_SAMPLER_1D
159
+ GL_SAMPLER_1D_SHADOW
160
+ GL_SAMPLER_2D
161
+ GL_SAMPLER_2D_ARRAY
162
+ GL_SAMPLER_2D_ARRAY_SHADOW
163
+ GL_SAMPLER_2D_SHADOW
164
+ GL_SAMPLER_3D
165
+ GL_SAMPLER_CUBE
166
+ GL_SAMPLER_CUBE_SHADOW
167
+ GL_SCISSOR_TEST
168
+ GL_SELECT
169
+ GL_STATIC_DRAW
170
+ GL_STENCIL_TEST
171
+ GL_TEXTURE0
172
+ GL_TEXTURE_2D
173
+ GL_TEXTURE_2D_ARRAY
174
+ GL_TEXTURE_3D
175
+ GL_TEXTURE_BINDING_2D
176
+ GL_TEXTURE_BORDER_COLOR
177
+ GL_TEXTURE_COMPARE_FUNC
178
+ GL_TEXTURE_COMPARE_MODE
179
+ GL_TEXTURE_CUBE_MAP
180
+ GL_TEXTURE_CUBE_MAP_NEGATIVE_X
181
+ GL_TEXTURE_CUBE_MAP_NEGATIVE_Y
182
+ GL_TEXTURE_CUBE_MAP_NEGATIVE_Z
183
+ GL_TEXTURE_CUBE_MAP_POSITIVE_X
184
+ GL_TEXTURE_CUBE_MAP_POSITIVE_Y
185
+ GL_TEXTURE_CUBE_MAP_POSITIVE_Z
186
+ GL_TEXTURE_CUBE_MAP_SEAMLESS
187
+ GL_TEXTURE_MAG_FILTER
188
+ GL_TEXTURE_MIN_FILTER
189
+ GL_TEXTURE_WRAP_S
190
+ GL_TEXTURE_WRAP_T
191
+ GL_TRIANGLES
192
+ GL_TRUE
193
+ GL_UNPACK_ALIGNMENT
194
+ GL_UNSIGNED_BYTE
195
+ GL_UNSIGNED_INT
196
+ GL_UNSIGNED_SHORT
197
+ GL_VERTEX_ARRAY_BINDING
198
+ HALF_PI
199
+ HG_CELL_DEPTH0_MASK
200
+ HG_CELL_LEVEL_BITSHIFT
201
+ HG_CELL_MEMBERSHIPOWNER_CELL
202
+ HG_CELL_MEMBERSHIPOWNER_SUBCELL
203
+ HG_CELL_MEMBERSHIPOWNER_TOCLASSIFY
204
+ HG_CELL_SUBDIV
205
+ HG_MAX_DEPTH
206
+ HG_MAX_OBJECT_MEMBER_CUMUL_COUNT
207
+ HG_MIN_NUMOBJECTS_TO_SPLIT
208
+ Image2DFlag_depth
209
+ Image2DFlag_mipmap
210
+ Image2DFlag_repeat
211
+ ImplicitGeomType_boundingVolume
212
+ ImplicitGeomType_none
213
+ ImplicitGeomType_viewportPlane
214
+ ImplicitGeometryPrimitive_negZAxisUnitCone
215
+ ImplicitGeometryPrimitive_screenPlane
216
+ ImplicitGeometryPrimitive_unitSphere
217
+ IntersectionIncludesOther
218
+ IntersectionNone
219
+ IntersectionOverlap
220
+ InvalidIndex
221
+ LocalBoundingVolume_bBox
222
+ LocalBoundingVolume_bCone
223
+ LocalBoundingVolume_bPyramid
224
+ LocalBoundingVolume_bSphere
225
+ LocalBoundingVolume_infinite
226
+ Member_needPrimTransfoFlag
227
+ Member_needProjFlag
228
+ Member_needViewFlag
229
+ NoOGLFunction
230
+ OGLShaderProgramUsageHint_none
231
+ OGLShaderProgramUsageHint_normalTransform
232
+ OGLShaderProgramUsageHint_normalizedVector
233
+ OGLShaderProgramUsageHint_vector
234
+ OGLShaderProgram_glType_flag
235
+ OGLShaderProgram_uniformSource_attribute
236
+ OGLShaderProgram_uniformSource_genericFragment
237
+ OGLShaderProgram_uniformSource_genericVertex
238
+ OGLShaderProgram_uniformSource_instancesAttribute
239
+ OGLShaderProgram_uniformSource_instancesTexture
240
+ OGLShaderProgram_uniformSource_texture
241
+ OGLShaderProgram_uniformSource_uniform
242
+ OwnerType_camera
243
+ OwnerType_geometry
244
+ OwnerType_geometryInstance
245
+ OwnerType_implicitGeometry
246
+ OwnerType_light
247
+ OwnerType_material
248
+ OwnerType_none
249
+ OwnerType_pass
250
+ OwnerType_texture
251
+ OwnerType_viewport
252
+ PI
253
+ PRECISION
254
+ PolygonMesh_ExecuteParallel_Count
255
+ PolygonMesh_atClosedWingStart
256
+ PolygonMesh_enableChecks
257
+ PolygonMesh_precededByBorder
258
+ RAD_TO_DEG
259
+ RenderParamCategory_attribute
260
+ RenderParamCategory_baseType
261
+ RenderParamCategory_flag
262
+ RenderParamCategory_geometry
263
+ RenderParamCategory_image
264
+ RenderParamCategory_material
265
+ RenderParamCategory_math
266
+ RenderParamCategory_other
267
+ RenderParamCategory_unknown
268
+ RenderParamFlag_OGLPackedInstances
269
+ RenderParamFlag_OGLShaderCompatible
270
+ RenderParamFlag_array
271
+ RenderParamFlag_none
272
+ RenderParamFlag_perElement
273
+ RenderParamSet_enableChecks
274
+ RenderTarget_none
275
+ RenderTarget_viewport
276
+ RequestBinding
277
+ StoredBinding
278
+ TWO_PI
279
+ TransformSpace_model
280
+ TransformSpace_none
281
+ TransformSpace_view
282
+ TransformSpace_viewProjection
283
+ TransformSpace_world
284
+ UInt32HighBit
285
+ UInt32NoHighBitMask
286
+ _AttributeInitializedBits
287
+ _AttributesData
288
+ _ParallelOrderMeshPoints
289
+ _PolygonMesh_borderDataBit
290
+ _PolygonMesh_extendedBitsMask
291
+ _PolygonMesh_minUnorderedPointCountPerThreadBatch
292
+ _PolygonMesh_numExtendedBits
293
+ _PolygonMesh_unsharedAttributesBit
294
+ _SetUnsharedAttributeIndex
295
+ _StringToAttributeType
296
+ _getNumBorderDataUInt32
297
+ _insideBBox
298
+ hashTableEpsilon
299
+ mathRandomBase
300
+ mathRandomOffsetsPerID
301
+ numImplicitGeometryPrimitives
302
+ numOwnerTypes
303
+ _addFreeNode
304
+ _allocatePerThreadTempData
305
+ _assertPointPolygonsAreOrdered
306
+ _attachAttributes
307
+ _cleanup
308
+ _closestTestObject
309
+ _copyBorderBits
310
+ _copyStructure
311
+ _createCell
312
+ _createNewListElement
313
+ _createUnsharedAttributeIndexForPoint
314
+ _deleteEmptyPoint
315
+ _freeCell
316
+ _freeNoMark
317
+ _freePerThreadTempData
318
+ _freeUnsharedAttributeIndexAndRecompact
319
+ _generatePointNormal
320
+ _getBorderDataIter
321
+ _getBorderInfo
322
+ _getClosest
323
+ _getClosestNoAcceleration
324
+ _getClosestNoCleanup
325
+ _getClosestPolygonLocation
326
+ _getFreeNodeInfo
327
+ _getLocationIndicesAndWeights
328
+ _getNumExtraUInt32
329
+ _getPointIter
330
+ _getPointIterAttributeIndex
331
+ _getPointIterBorderInfo
332
+ _getPointIterIndex
333
+ _getPointIterNextPolyIterOffInWing
334
+ _getPointIterPolygon
335
+ _getPointIterPolygonCount
336
+ _getPointIterPolygonFullBorderInfo
337
+ _getPointIterPolygonsBorderInfo
338
+ _getPointIterPolyIter
339
+ _getPointIterPolyIterOff
340
+ _getPointIterPrevPolyIterOffInWing
341
+ _getPointIterSurroundingPointIters
342
+ _getPointIterUnsharedAttributeIndexIter
343
+ _getPolygonIter
344
+ _getPolyIterAdjacentPolyIter
345
+ _getPolyIterAdjacentPolyIterOff
346
+ _getPolyIterAttributeIndex
347
+ _getPolyIterIndex
348
+ _getPolyIterNextPointIter
349
+ _getPolyIterPoint
350
+ _getPolyIterPointIndex
351
+ _getPolyIterPointIter
352
+ _getPolyIterPointIterOff
353
+ _getPolyIterPrevPointIter
354
+ _getPolyIterSize
355
+ _getPrecededByBorder
356
+ _getUnsharedAttributeDataIter
357
+ _GetUnsharedAttributeIndex
358
+ _incrementStructureVersion
359
+ _init
360
+ _initCell
361
+ _insertPointAttributes
362
+ _isPointIterAttributeUniform
363
+ _isPointIterPolygonAfterBorder
364
+ _markUnorderedPoint
365
+ _moveAttributeAndIndex
366
+ _pointIterInsertPolyIter
367
+ _pointRemovePoly
368
+ _prepareBorderDataRemoval
369
+ _QueryHeapGetMin
370
+ _QueryHeapInsert
371
+ _QueryHeapPopMin
372
+ _raycast
373
+ _raycastLineSegment
374
+ _raycastNoAcceleration
375
+ _raycastNoCleanup
376
+ _raycastPoint
377
+ _raycastPolygon
378
+ _raycastTestObject
379
+ _raycastTestObjectFromOutside
380
+ _recompactDataIfRequired
381
+ _recompactItemIndices
382
+ _recompactSlidingArrayIfRequired
383
+ _remapAppendedIterData
384
+ _removeFreeNode
385
+ _removeUnsharedAttributeDataIfApplicable
386
+ _reorderPoint
387
+ _ResetHeap
388
+ _resizeAttributes
389
+ _resizePointArrayAndRemapPolygons
390
+ _setPointIterAttribute
391
+ _setPointIterAttributeFromPushed
392
+ _setPolyIterAttribute
393
+ _synchronizeGeometryAttributes
394
+ _testCellObjectsForClosest
395
+ _unsharedAttributeIndexIterGetNext
396
+ _unusedMemUsage
397
+ _updateOtherItemIdxOff
398
+ _updateOtherItemIndex
399
+ _updatePointBorderData
400
+ _updatePointOrdering
401
+ _validate
402
+ _validatePointOffset
403
+ _validatePolygonOffset
langs/kl/kl.txt ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Fabric Engine KL LANGUAGE ###
2
+
3
+ # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
+ # CREATED BY Andrew Hazelden (http://www.andrewhazelden.com)
5
+
6
+ NAME Fabric Engine KL
7
+ VERSION 2.0
8
+
9
+ COMMENT (?default)
10
+ PREPROCESSOR (?default)
11
+ STRING (?default)
12
+
13
+ CONSTANT \b(?alt:constant.txt)\b
14
+ MODULE:KEYWORD \b(?alt:module.txt)\b
15
+ STATEMENT \b(?alt:statement.txt)\b
16
+ TYPE \b(?alt:type.txt)\b
17
+ VARIABLE \b(?alt:variable.txt)\b
18
+
19
+ # Reserved commented out due to Crayon having a file size limit for loading the document
20
+ # RESERVED \b(?alt:reserved.txt)\b
21
+
22
+ ENTITY (?default)
23
+ IDENTIFIER (?default)
24
+ OPERATOR (?default)
25
+ SYMBOL (?default)
langs/kl/module.txt ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ AddPolygonsPatch
2
+ BezierKeyframeTrack
3
+ FabricALEMBIC
4
+ FabricBULLET
5
+ FabricCIMG
6
+ FabricEXR
7
+ FabricFBX
8
+ FabricFILESTREAM
9
+ FabricHDR
10
+ FabricLIDAR
11
+ FabricOBJ
12
+ FabricOGL
13
+ FabricOPENCV
14
+ FabricPNG
15
+ FabricStringTools
16
+ FabricTEEM
17
+ FabricTGA
18
+ FabricVIDEO
19
+ FileLocation
20
+ Geometry
21
+ HashTable
22
+ Image2DColor
23
+ Image2DRGB
24
+ Image2DRGBA
25
+ Image2DScalar
26
+ ImageRTRAdaptor
27
+ Images
28
+ ImporterIdentifier
29
+ ImporterOptions
30
+ InlineGeometryType
31
+ KEYFRAMEDATATYPE
32
+ KEYFRAMETRACKSETTYPE
33
+ KEYFRAMETRACKSETTYPEBindings
34
+ KEYFRAMETRACKTYPE
35
+ KEYFRAMETYPE
36
+ KEYFRAMETYPETrack
37
+ Math
38
+ OGLRenderPassFunctions
39
+ RTR
40
+ RTRAdaptors
41
+ RTRAttributeWrapper
42
+ def
43
+ getTimeRangeKEYFRAMETRACKTYPE
44
+ plotKEYFRAMETRACKSETTYPECurve
45
+ resizeKEYFRAMETRACKSETTYPEPlotter
langs/kl/reserved.txt ADDED
@@ -0,0 +1,1753 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ AdjustBVolToWorldIfInfinite
2
+ AdjustCameraBVol
3
+ AdjustCameraBVolToWorldBBox
4
+ AdjustCameraBVolToWorldBBoxAndPrevTransform
5
+ BuildCameraBVolProjection
6
+ BuildCameraBVolProjectionWithWorldBBox
7
+ BuildCameraBVolProjectionWithWorldBBoxAndPrevTransform
8
+ BuildCylinderBVolShadowMapProjection
9
+ BuildCylinderBVolShadowMapTransform
10
+ BuildDirectionalBVolProjection
11
+ BuildDirectionalBVolShadowMapTransform
12
+ BuildDirectionalLightLocalBVol
13
+ BuildDirectionalLightTransform
14
+ BuildInstanceOGLGenerator
15
+ BuildSubViewportTransform
16
+ CallOGLRenderPassUserBooleanFunction
17
+ CallOGLRenderPassUserColorFunction
18
+ CallOGLRenderPassUserFunction
19
+ CallOGLRenderPassUserIntegerFunction
20
+ CallOGLRenderPassUserLocalBoundingVolumeFunction
21
+ CallOGLRenderPassUserMat33Function
22
+ CallOGLRenderPassUserMat44Function
23
+ CallOGLRenderPassUserScalarFunction
24
+ CallOGLRenderPassUserStringFunction
25
+ CallOGLRenderPassUserVec2Function
26
+ CallOGLRenderPassUserVec3Function
27
+ CallOGLRenderPassUserVec4Function
28
+ CallOGLRenderPassUservoidFunction
29
+ CleanupLocalBVolOverride
30
+ ComputeBBox
31
+ ComputeCellsCount
32
+ ComputeNormalTransform
33
+ ComputePerInstanceTextureSize
34
+ ComputeSubCellBBox
35
+ ComputeTrajectorySegmentPosAndOri
36
+ ConstructColor
37
+ CopyMat44
38
+ CopyScalar
39
+ CreateGeneratorAttributeWrapper
40
+ CreatePoints
41
+ CullFrontFaces
42
+ DebugPrint
43
+ DebugPrintBooleanCallback
44
+ DebugPrintCallStack
45
+ DebugPrintCallStackAndParamValuesCallback
46
+ DebugPrintCallStackAndParamsCallback
47
+ DebugPrintCallback
48
+ DebugPrintContextCallback
49
+ DebugPrintInteger
50
+ DebugPrintMat44
51
+ DebugPrintParamsCallback
52
+ DebugPrintParamsValuesCallback
53
+ DebugPrintTextureCallback
54
+ DecOff
55
+ DivideInteger
56
+ DivideIntegerMin
57
+ FabricCIMGCreateFromText
58
+ FabricCIMGCreateJPEGDiffFromPixels
59
+ FabricCIMGCreateJPEGFromPixels
60
+ FabricCIMGDecode
61
+ FabricCIMGOpenFileHandle
62
+ FabricCIMGSaveToFileHandle
63
+ FabricCIMGSaveToFileHandleRGB
64
+ FabricEXRDecode
65
+ FabricEXROpenFileHandle
66
+ FabricHDRDecode
67
+ FabricHDROpenFileHandle
68
+ FabricPNGDecode
69
+ FabricPNGEncode
70
+ FabricPNGOpenFileHandle
71
+ FabricTGADecode
72
+ FabricTGAOpenFileHandle
73
+ FabricTeemNRRDLoadUShort
74
+ FabricTeemNRRDLoadUShortFromFileHandle
75
+ FlagToBoolean
76
+ GetBatchSizeAndCountForParallel
77
+ GetCameraFar
78
+ GetCubeMapFaceMatrix
79
+ GetCubeMapFaceTransform
80
+ GetCubeMapLocalBVol
81
+ GetCubeMapNegXMatrix
82
+ GetCubeMapNegYMatrix
83
+ GetCubeMapNegZMatrix
84
+ GetCubeMapPosXMatrix
85
+ GetCubeMapPosYMatrix
86
+ GetCubeMapPosZMatrix
87
+ GetCubeMapProjection
88
+ GetCubeMapSimpleLocalBVol
89
+ GetCubeMapSimpleProjection
90
+ GetDirectionalLightFalloffEnd
91
+ GetDirectionalLightFalloffStart
92
+ GetOGLGeometryAttributeWrapper
93
+ GetPlaneReflectedTransform
94
+ GetPrevMotionBlurTransform
95
+ GetShaderByID
96
+ GetShaderByName
97
+ GetShaderFromMaterialCategory
98
+ GetWorldBBox
99
+ IdxOff_ExtractIndex
100
+ IdxOff_ExtractOffset
101
+ IdxOff_GetBit
102
+ IdxOff_GetIndex
103
+ IdxOff_GetIndexAndBit
104
+ IdxOff_GetIndexFromIdxOffBit
105
+ IdxOff_GetOffset
106
+ ImplicitBVolMeshIntersectsNearPlane
107
+ IncOff
108
+ InitParamDataGenerator
109
+ InitPerInstanceOGLTexture
110
+ InverseTransform
111
+ IsMotionBlurActive
112
+ IsStringEqual
113
+ KEYFRAMETYPETrackSet
114
+ KEYFRAMETYPETrackSetBindings
115
+ LineListIndicesOGLBufferGenerator
116
+ LocalL64UInt32Array
117
+ Log2RoundUp
118
+ MBPositionsChanged
119
+ Mat44_RTRAttributeWrapper
120
+ Math_aspectFromFov
121
+ Math_badDivisor
122
+ Math_clamp
123
+ Math_degToRad
124
+ Math_fovXtoY
125
+ Math_fovYtoX
126
+ Math_lawOfCosine
127
+ Math_linearInterpolate
128
+ Math_max
129
+ Math_min
130
+ Math_radToDeg
131
+ Math_reportBadDivisor
132
+ Math_reportWarning
133
+ MultiplyInteger
134
+ MultiplyScalar
135
+ NextOff
136
+ OverrideLocalBVolForPreviousFrame
137
+ PopulateHashTable
138
+ PrevOff
139
+ RandomizeColor
140
+ ReportMat44
141
+ SPH
142
+ SavePrevFrameDataIfRequired
143
+ ScalarLessThan
144
+ SelectCubeMapFaceVolume
145
+ SetHashTableSize
146
+ ShadowsInRange
147
+ SimpleRenderParam_equals
148
+ SimpleRenderParam_getDesc
149
+ SubBitVectorArray_clearBit
150
+ SubBitVectorArray_getBit
151
+ SubBitVectorArray_getNbRequiredUInt32
152
+ SubBitVectorArray_getThenClearBit
153
+ SubBitVectorArray_getThenSetBit
154
+ SubBitVectorArray_setBit
155
+ TimeModifier
156
+ TransformSpaceToString
157
+ UpdateOGLGeometryAttribute
158
+ WasConstructed
159
+ abs
160
+ absInvUnitDir3
161
+ acos
162
+ actualMaxDepth
163
+ add
164
+ addAlias
165
+ addAlternateName
166
+ addApply
167
+ addAttribute
168
+ addBinding
169
+ addCellParticlesToNeighborsArray
170
+ addClosedLine
171
+ addConstraint
172
+ addDefine
173
+ addDisableOption
174
+ addDrawCallback
175
+ addEnableOption
176
+ addExposedCategory
177
+ addExtrusion
178
+ addFlag
179
+ addGroup
180
+ addLine
181
+ addMemberToSubCells
182
+ addObjectToCell
183
+ addOutputFragment
184
+ addPass
185
+ addPolygon
186
+ addPolygons
187
+ addProgramOption
188
+ addQuatBinding
189
+ addRefineRenderTarget
190
+ addRenderTarget
191
+ addRevolution
192
+ addRigidBody
193
+ addScalarBinding
194
+ addShaderSource
195
+ addShell
196
+ addSoftBody
197
+ addTexture
198
+ addType
199
+ addUniform
200
+ addVariant
201
+ addVec3Binding
202
+ addWeighted
203
+ addXfoBinding
204
+ additionalBufferIDs
205
+ adjoint
206
+ adjustedImplicitGeometryString
207
+ alignWith
208
+ allTexturedMaterials
209
+ allocate
210
+ allocateArray
211
+ allocateTexture
212
+ almostEqual
213
+ alternateNames
214
+ angleTo
215
+ animationLayerNames
216
+ append
217
+ applyForce
218
+ applyKeys
219
+ applyOps
220
+ approxMemoryUsage
221
+ arePointAttributesUniform
222
+ argIsRenderFlag
223
+ arrayDataIterSize
224
+ arrayDataIterSizeAndBit
225
+ arraySize
226
+ arrayValues
227
+ asTexture
228
+ asin
229
+ asymmetricOrthographicFrustum
230
+ asymmetricPerspectiveFrustum
231
+ atan
232
+ atan2
233
+ atomicDec
234
+ atomicInc
235
+ attachNewAttribute
236
+ attr
237
+ attrInitializedBits
238
+ attrRefKey
239
+ attribute
240
+ attributeParamKeys
241
+ attributeSharingVersion
242
+ attributeType
243
+ attributes
244
+ attributesData
245
+ attributesIndexPool
246
+ attributesKeyVersion
247
+ bBox2DAddPt
248
+ bBoxAdd
249
+ bBoxAddTransformedBBox
250
+ bBoxContains
251
+ bBoxGetBSphereIntersection
252
+ bBoxGetMax
253
+ bBoxGetMaxDistToPlane
254
+ bBoxGetMin
255
+ bBoxGetOrthographicMat44
256
+ bBoxInit
257
+ bBoxIntersectsBSphere
258
+ bBoxIntersectsBSphere_noQuickTest
259
+ bBoxQuery
260
+ bBoxSetMax
261
+ bBoxSetMin
262
+ bConeGetBSphereIntersection
263
+ bConeGetCosHalfAngle
264
+ bConeGetCutoff
265
+ bConeGetLocalDistanceVector
266
+ bConeGetRadAngle
267
+ bConeGetTanHalfAngle
268
+ bConeInit
269
+ bConeIntersectsBSphere
270
+ bConeQuery
271
+ bConeSetCutoff
272
+ bConeSetRadAngle
273
+ bLocalBoxQuery
274
+ bPyramidComputePlanes
275
+ bPyramidGetBSphere
276
+ bPyramidGetBSphereIntersection
277
+ bPyramidGetFar
278
+ bPyramidGetNear
279
+ bPyramidGetNearHeight
280
+ bPyramidGetNearWidth
281
+ bPyramidGetPerspectiveMat44
282
+ bPyramidInit
283
+ bPyramidIntersectsBSphere
284
+ bPyramidQuery
285
+ bPyramidSetFar
286
+ bPyramidSetNear
287
+ bPyramidSetNearHeight
288
+ bPyramidSetNearWidth
289
+ bSphereGetCenter
290
+ bSphereGetLocalDistanceVector
291
+ bSphereGetRadius
292
+ bSphereGetSquaredRadius
293
+ bSphereInit
294
+ bSphereQuery
295
+ bSphereSetRadius
296
+ barycentric
297
+ begin
298
+ beginStructureChanges
299
+ biCubicInterpolate
300
+ bind
301
+ bindShapeTransform
302
+ bindingBits
303
+ bindingId
304
+ bindingIds
305
+ bindingKeys
306
+ bindingSources
307
+ bindingSpaces
308
+ bindingStore
309
+ bindingTargets
310
+ bit
311
+ blendModeDfactor
312
+ blendModeSfactor
313
+ blitDepthFromViewport
314
+ blitDepthToViewport
315
+ boneBindings
316
+ boneId
317
+ boneIdentifiers
318
+ boneIds
319
+ boneName
320
+ boneWeights
321
+ bones
322
+ boolKey
323
+ boolValue
324
+ bound
325
+ brushPos
326
+ brushSize
327
+ brushStrength
328
+ buffer
329
+ bufferElementComponentType
330
+ bufferID
331
+ bufferType
332
+ bufferUsage
333
+ buildConeImplicitGeom
334
+ buildDefaultTexture
335
+ buildMipmaps
336
+ buildRandomTexture
337
+ buildScreenPlaneImplicitGeom
338
+ buildSpatialQueryAcceleration
339
+ buildSphereImplicitGeom
340
+ cacheEntries
341
+ calcCellIndex
342
+ calcFocalDist
343
+ calcTimeRange
344
+ callOGLRenderPassUserBooleanFunction
345
+ callOGLRenderPassUserColorFunction
346
+ callOGLRenderPassUserFunction
347
+ callOGLRenderPassUserIntegerFunction
348
+ callOGLRenderPassUserLocalBoundingVolumeFunction
349
+ callOGLRenderPassUserMat33Function
350
+ callOGLRenderPassUserMat44Function
351
+ callOGLRenderPassUserScalarFunction
352
+ callOGLRenderPassUserStringFunction
353
+ callOGLRenderPassUserVec2Function
354
+ callOGLRenderPassUserVec3Function
355
+ callOGLRenderPassUserVec4Function
356
+ callOGLRenderPassUservoidFunction
357
+ callStack
358
+ canInterpolate
359
+ category
360
+ ceil
361
+ cellBBoxGetIntersectingObjectSubcellBits
362
+ cellIndex
363
+ cellObjectListElementKey
364
+ cellObjectsMembershipList
365
+ cellOwnership
366
+ cellSize
367
+ cells
368
+ center
369
+ changeMembershipOwnerType
370
+ clamp
371
+ clampAndRescale
372
+ clampPosition
373
+ clear
374
+ clearAll
375
+ clearBit
376
+ clearColor
377
+ clearDepth
378
+ clearError
379
+ clearList
380
+ clearTracks
381
+ clipBBoxWithBVol
382
+ clipSegmentWithPlane
383
+ clipSegmentsWithPlane
384
+ clone
385
+ close
386
+ closeOnFullyRead
387
+ closestData
388
+ closestSegmentPoint
389
+ code
390
+ col0
391
+ col1
392
+ col2
393
+ col3
394
+ col4
395
+ collectParentHierarchyChain
396
+ collected
397
+ color
398
+ commonConstants
399
+ compiled
400
+ complementGroup
401
+ component
402
+ compressed
403
+ computeNormals
404
+ condition
405
+ conditionKeys
406
+ coneGetBBox
407
+ coneGetBSphere
408
+ configure
409
+ configureImageMatrixArray
410
+ confirmAsRequired
411
+ conjugate
412
+ containerIndex
413
+ copy
414
+ copyFrom
415
+ copyValue
416
+ cos
417
+ count
418
+ cpglHaveContext
419
+ create
420
+ createAndCompileShader
421
+ createConstValue
422
+ createFileHandle
423
+ createFromFileHandle
424
+ createItem
425
+ createItems
426
+ createKeyFromName_allowDuplicate
427
+ createList
428
+ createPoints
429
+ createProgramFromShaders
430
+ createReduce
431
+ createTimeSampling
432
+ cross
433
+ cullBack
434
+ cullBoundingVolume
435
+ cullBoundingVolumeKeys
436
+ cullFace
437
+ cullFaceKeys
438
+ cullFront
439
+ currentCacheMemory
440
+ cvCaptureFromCAM
441
+ cvQueryFrame
442
+ data
443
+ dataLayoutGenerationCount
444
+ dataSize
445
+ debug
446
+ debugName
447
+ decompose
448
+ defaultExposedParamValues
449
+ defaultParamString
450
+ defaultTexture
451
+ defaultValue
452
+ defineStrings
453
+ defines
454
+ definition
455
+ delete
456
+ deleteBuffer
457
+ deleteItem
458
+ deleteList
459
+ deletePolygon
460
+ depth
461
+ depthFunc
462
+ depthFunction
463
+ depthMask
464
+ depthParamString
465
+ depthSize
466
+ determinant
467
+ dirSign3
468
+ direction
469
+ dirty
470
+ dirtyCells
471
+ dirtyObjects
472
+ disableOptions
473
+ displacement
474
+ dist
475
+ distFactor
476
+ distance
477
+ distanceFromLineToLine
478
+ distanceTo
479
+ distanceToLine
480
+ distanceToPoint
481
+ distanceToSegment
482
+ distanceToTransformedBVol
483
+ distances
484
+ divide
485
+ divideScalar
486
+ dot
487
+ doubleSided
488
+ downPlaneNormal
489
+ draw
490
+ drawArc
491
+ drawAxis
492
+ drawBBox
493
+ drawBone
494
+ drawCallbackKeys
495
+ drawCallbacks
496
+ drawCircle
497
+ drawLine
498
+ drawLineStrip
499
+ drawManipulatableCuboidGizmosSingleSlice
500
+ drawMode
501
+ drawPoint
502
+ drawSegmentedLine
503
+ drawSphereLines
504
+ drawSquare
505
+ drawTriangle
506
+ drawTrianglesCone
507
+ drawTrianglesCube
508
+ drawTrianglesPlane
509
+ drawTrianglesSphere
510
+ duration
511
+ elementCount
512
+ elementId
513
+ elementIds
514
+ elementIndex
515
+ elementid
516
+ embossMesh
517
+ enableDeformation
518
+ enableOptions
519
+ enabled
520
+ endGizmo
521
+ endPt
522
+ endStructureChanges
523
+ ensureLayerExists
524
+ equal
525
+ equalValues
526
+ equals
527
+ evaluate
528
+ evaluateTracks
529
+ exists
530
+ exp
531
+ expandIdxOffData
532
+ expandWorldBBox
533
+ exportHandle
534
+ expose
535
+ exposeCategories
536
+ exposedGenericParamKeys
537
+ exposedParamValues
538
+ exposedSimpleParamKeys
539
+ exposedTextureKeys
540
+ extractIdxOff
541
+ extractIndex
542
+ extractOffset
543
+ far
544
+ fileIndex
545
+ filePath
546
+ filename
547
+ fillSubCellDeltaCenters
548
+ filtered
549
+ find
550
+ findCubicRoots
551
+ findFCurve
552
+ findMaterialPreset
553
+ findQuadraticRoots
554
+ findTrack
555
+ first16
556
+ first4
557
+ first64
558
+ first8
559
+ firstInstanceIndex
560
+ firstPoint
561
+ firstPrimIndex
562
+ flagKeys
563
+ flagOpsBits
564
+ flags
565
+ floor
566
+ fps
567
+ free
568
+ freeArray
569
+ freeBlocsListUpperPow2
570
+ freeData
571
+ freeDataCount
572
+ freeIndices
573
+ freeItemCount
574
+ freeIters
575
+ freeItersCount
576
+ functionID
577
+ functionName
578
+ functionNeedsDebugContext
579
+ genBuffer
580
+ generate
581
+ generateAttributesTriangleList
582
+ generateAxesOriGizmo
583
+ generateBindings
584
+ generateLinearScGizmo
585
+ generateLinearTrGizmo
586
+ generateOriGizmo
587
+ generatePlanarTrGizmo
588
+ generatePlaneScalars
589
+ generatePolygonMeshTeapotBase
590
+ generatePolygonNormal
591
+ generateScGizmo
592
+ generateScreenOriGizmo
593
+ generateScreenScGizmo
594
+ generateScreenTrGizmo
595
+ generateTrGizmo
596
+ generateTriangleList
597
+ generationCount
598
+ generator
599
+ genericParam
600
+ genericTextureUVsAttributeIndex
601
+ geometry
602
+ geometryContainer
603
+ geometryElementTypeString
604
+ geometryId
605
+ geometryIndex
606
+ geometryLocalBVolKey
607
+ geometryParamsRef
608
+ geometryPrevLocalBVolKey
609
+ get
610
+ getAbsolutePath
611
+ getActualDepth_slow
612
+ getAllPixels
613
+ getAngle
614
+ getAngles
615
+ getAngularVelocity
616
+ getAnimationLayerNames
617
+ getApproximateMemoryUsage
618
+ getArgCount
619
+ getArrayExtraUInt32
620
+ getArrayExtraUInt32Iter
621
+ getArrayItemIdxOff
622
+ getArrayItemIndex
623
+ getArrayItemIter
624
+ getAttribute
625
+ getAttributeAtLocation
626
+ getAttributeListDesc
627
+ getAttributes
628
+ getBBox
629
+ getBBoxIntersection
630
+ getBBoxPoints
631
+ getBinding
632
+ getBit
633
+ getBoolData
634
+ getBoolOption
635
+ getBoolean
636
+ getBoxSegments
637
+ getByID
638
+ getByName
639
+ getCallStackDesc
640
+ getCameraBVolForDirectionalLight
641
+ getCategory
642
+ getCenter
643
+ getClosest
644
+ getContainerIndex
645
+ getCount
646
+ getCurrentTicks
647
+ getDataIter
648
+ getDepthSize
649
+ getDesc
650
+ getDesc_
651
+ getDirectionalBBoxFromBVol
652
+ getEdgeFirstPoint
653
+ getEdgeFromPoints
654
+ getEdgeLeftPolygon
655
+ getEdgeRightPolygon
656
+ getEdgeSecondPoint
657
+ getElementCount
658
+ getEntityFaceIndices
659
+ getEntityFaceMaterialIndices
660
+ getEntityFaceSizes
661
+ getEntityFaceTopologyIndices
662
+ getEntityNormals
663
+ getEntityNormalsSliced
664
+ getEntityPoints
665
+ getEntityPointsSliced
666
+ getEntityTextureCoords
667
+ getEntityTextureCoordsSliced
668
+ getError
669
+ getEulerFromIdentifier
670
+ getExpandedIdxOffDataIndex_nocheck
671
+ getExpandedIdxOffDataIter
672
+ getExpandedIdxOffDataIter_nocheck
673
+ getExpandedIdxOffDataOffset_nocheck
674
+ getExpandedIdxOffDataUserBit1_nocheck
675
+ getExpandedIdxOffDataUserBit2_nocheck
676
+ getExposedGenericParamNames
677
+ getExposedTextureParamNames
678
+ getExtension
679
+ getFlags
680
+ getFreeIndex
681
+ getGeneratedParamType
682
+ getGlType
683
+ getHGBBox
684
+ getHGBBoxAndMaxSearchDepth
685
+ getHGCoord
686
+ getHeight
687
+ getHeightWidthDepthTypeKey
688
+ getIdentifiers
689
+ getIdxOff
690
+ getIdxOffArrayItem
691
+ getIdxOffArrayItemIndex
692
+ getIdxOffArrayItemOffset
693
+ getIdxOffArrayString
694
+ getIdxOffBit
695
+ getImageRef
696
+ getIndex
697
+ getIndexEnd
698
+ getIndexFromDataIter
699
+ getIndexFromIdxOffBit
700
+ getInfiniteListKey
701
+ getInstancesDesc
702
+ getIntData
703
+ getIntOption
704
+ getInternalFormatKey
705
+ getIntersectionType
706
+ getItemIndexFromArrayDataIter
707
+ getItemIter
708
+ getIterArrayIndexString
709
+ getKLTypeString
710
+ getKey
711
+ getKeyFromName
712
+ getLayer
713
+ getLayersDesc
714
+ getLinearCombination
715
+ getLinearVelocity
716
+ getListDesc
717
+ getListSize_slow
718
+ getMaterialNames
719
+ getMemUsage
720
+ getMinComponent
721
+ getName
722
+ getNbChannels
723
+ getNbEntityFaces
724
+ getNbEntityPoints
725
+ getNearPlaneFromBVol
726
+ getNeighboringIndices
727
+ getNext
728
+ getNextIndexAndIncrement
729
+ getNormals
730
+ getNormalsAsExternalArray
731
+ getNormalsAsExternalArray_d
732
+ getNumLayers
733
+ getNumObjects
734
+ getNumOwnerCellsAtDepth
735
+ getNumUsed
736
+ getOGLBuffer
737
+ getOGLMaterial
738
+ getOGLShaderRenderParam
739
+ getOGLTexture2D
740
+ getObjectBBox
741
+ getObjectDesc
742
+ getOffset
743
+ getOffsetAndBit
744
+ getOpenedFilePath
745
+ getOrCreateAttribute
746
+ getOrCreateColorAttribute
747
+ getOrCreateIntegerAttribute
748
+ getOrCreateKeyFromName
749
+ getOrCreateMat33Attribute
750
+ getOrCreateMat44Attribute
751
+ getOrCreateNormals
752
+ getOrCreatePositions
753
+ getOrCreatePositions_d
754
+ getOrCreateQuatAttribute
755
+ getOrCreateRGBAAttribute
756
+ getOrCreateRGBAttribute
757
+ getOrCreateScalarAttribute
758
+ getOrCreateScalarConstantArrayAttribute
759
+ getOrCreateUInt16ConstantArrayAttribute
760
+ getOrCreateUInt32Attribute
761
+ getOrCreateVec2Attribute
762
+ getOrCreateVec3Attribute
763
+ getOrCreateVec3_dAttribute
764
+ getOrCreateVec4Attribute
765
+ getParamGenerator
766
+ getParamsDesc
767
+ getPixelIndex
768
+ getPixelIntensityColor
769
+ getPixelIntensityRGB
770
+ getPixelIntensityRGBA
771
+ getPointAttributeIndex
772
+ getPointBorderInfo
773
+ getPointEdge
774
+ getPointEdgeCount
775
+ getPointNormal
776
+ getPointPolygonAndIndex
777
+ getPointPolygonCount
778
+ getPointPolygonFullBorderInfo
779
+ getPointPolygons
780
+ getPointPolygonsAndOffsets
781
+ getPointPolygonsBorderInfo
782
+ getPointPosition
783
+ getPointPosition_d
784
+ getPointSurroundingPoints
785
+ getPoints
786
+ getPointsAsExternalArray
787
+ getPointsAsExternalArray_d
788
+ getPolygonAdjacentPolygon
789
+ getPolygonAdjacentPolygonAndIndex
790
+ getPolygonAttributeIndex
791
+ getPolygonEdge
792
+ getPolygonPoint
793
+ getPolygonPointAndNeighborIndex
794
+ getPolygonPointIndex
795
+ getPolygonPointNormal
796
+ getPolygonPoints
797
+ getPolygonPointsAndNeighborIndices
798
+ getPolygonSize
799
+ getPosition
800
+ getPositionAtLocation
801
+ getPositionAtLocation_d
802
+ getPosition_d
803
+ getPositions
804
+ getPositions_d
805
+ getRGBPixels
806
+ getReadOnlyAttributes
807
+ getSampleTimes
808
+ getScalar
809
+ getScalarData
810
+ getScalarOption
811
+ getScalarValueSize
812
+ getSecondsBetweenTicks
813
+ getSeek
814
+ getSetBitsString
815
+ getShaderByFilename
816
+ getShadowFactor
817
+ getShadowResolution
818
+ getSharedConstantIfPossible
819
+ getSimpleBinding
820
+ getSize
821
+ getSizeRead
822
+ getSpace
823
+ getSquaredDistanceToTransformedBVol
824
+ getString
825
+ getStringData
826
+ getStringOption
827
+ getTeapotHull
828
+ getThenClear
829
+ getThenClearBit
830
+ getThenSet
831
+ getThenSetBit
832
+ getTimeRange
833
+ getTopologyAsCombinedExternalArray
834
+ getTopologyAsCountsIndicesExternalArrays
835
+ getTransform
836
+ getType
837
+ getUVsAsExternalArray
838
+ getUniqueIDForFilename
839
+ getUserData
840
+ getVec3Value
841
+ getVec4
842
+ getVersion
843
+ getVersions
844
+ getVertexColorsAsExternalArray
845
+ getVolume
846
+ getWidth
847
+ getWorldGeometryBBox
848
+ getXaxis
849
+ getYaxis
850
+ getZaxis
851
+ gizmoHandler
852
+ gizmoHandlers
853
+ gizmoId
854
+ gizmoIds
855
+ gizmoScalarMetaData
856
+ gizmoStringMetaData
857
+ gizmoVec3MetaData
858
+ gizmoXfoMetaData
859
+ gizmoXfos
860
+ glActiveTexture
861
+ glAttachShader
862
+ glBindBuffer
863
+ glBindFramebuffer
864
+ glBindRenderbuffer
865
+ glBindTexture
866
+ glBindVertexArray
867
+ glBufferData
868
+ glClear
869
+ glClearColor
870
+ glClearDepth
871
+ glColorMask
872
+ glCompileShader
873
+ glCreateProgram
874
+ glCreateShader
875
+ glDeleteBuffers
876
+ glDeleteFramebuffers
877
+ glDeleteProgram
878
+ glDeleteRenderbuffers
879
+ glDeleteShader
880
+ glDeleteTextures
881
+ glDepthMask
882
+ glDrawBuffer
883
+ glFormat
884
+ glGenRenderbuffers
885
+ glGenTextures
886
+ glGenerateMipmap
887
+ glGetActiveAttrib
888
+ glGetActiveUniform
889
+ glGetAttribLocation
890
+ glGetFragDataLocation
891
+ glGetIntegerv
892
+ glGetProgramInfoLog
893
+ glGetProgramiv
894
+ glGetShaderInfoLog
895
+ glGetShaderiv
896
+ glGetUniformLocation
897
+ glGetVersion
898
+ glInternalFormat
899
+ glLinkProgram
900
+ glPixelStorei
901
+ glPolygonMode
902
+ glPopAttrib
903
+ glPopClientAttrib
904
+ glProgramParameteriEXT
905
+ glPushAttrib
906
+ glPushClientAttrib
907
+ glRenderbufferStorage
908
+ glShaderSource
909
+ glSize
910
+ glTexImage2D
911
+ glTexImage3D
912
+ glTexParameterfv
913
+ glTexParameteri
914
+ glTextureType
915
+ glType
916
+ glUniform1i
917
+ glUseProgram
918
+ globalBindingBits
919
+ globalTransformAndLocalBVolVersionPerType
920
+ gridActive
921
+ gridCurrentFrameCellUpdateBudgetBeforeDraw
922
+ gridMax
923
+ gridMin
924
+ gridNumCellUpdatesPerFrameBeforeDraw
925
+ gridNumCellUpdatesPerFrameDuringDraw
926
+ gridPerType
927
+ gridToWorldScale
928
+ gridTypesToUpdateBits
929
+ group
930
+ groupAliasSources
931
+ groupAliasTargets
932
+ groupKeys
933
+ groups
934
+ handle
935
+ has
936
+ hasBoolData
937
+ hasBoolOption
938
+ hasCullFrontFace
939
+ hasDataGenerator
940
+ hasFloat64Positions
941
+ hasGenericParameters
942
+ hasIntData
943
+ hasIntOption
944
+ hasMemberScopes
945
+ hasPrevPositions
946
+ hasSameType
947
+ hasScalarData
948
+ hasScalarOption
949
+ hasScaling
950
+ hasShaderFilename
951
+ hasStringData
952
+ hasStringOption
953
+ hasTextureCoords
954
+ hasUVs
955
+ hasVertexColors
956
+ heapItems
957
+ heapItemsEnd
958
+ height
959
+ heightFunction
960
+ heightParamString
961
+ hgBBox
962
+ hit
963
+ id
964
+ identifier
965
+ identifiers
966
+ im
967
+ imagesPerImageNode
968
+ implicitGeometry
969
+ inUse
970
+ incTopo
971
+ incValue
972
+ incrementLayoutOrderVersion
973
+ incrementPointPositionsVersion
974
+ incrementTopoVersion
975
+ incrementValueVersion
976
+ incrementValueVersion_preGenerateIfWasRequired
977
+ incrementVersion
978
+ index
979
+ indexArrayPop
980
+ indexByFilename
981
+ indexByName
982
+ indexEnd
983
+ indices
984
+ indicesBuffer
985
+ indicesKey
986
+ indicesString
987
+ infiniteBVolObjects
988
+ infiniteBoundingVolume
989
+ init
990
+ initDataGenerator
991
+ initDefaults
992
+ initIdxOff
993
+ initPrimTypeAndNameMap
994
+ initPrimitive
995
+ initialized
996
+ initializingBindingBits
997
+ instanceCountString
998
+ instanceIndicesPerType
999
+ instanceName
1000
+ instancePerTypeIndex
1001
+ instanced
1002
+ instances
1003
+ instancesIndexPool
1004
+ intKey
1005
+ intValue
1006
+ intangent
1007
+ internalCompute
1008
+ interpolate
1009
+ intersectBBoxEdge
1010
+ intersectBoundingBox
1011
+ intersectLine
1012
+ intersectLineSegment
1013
+ intersectPlane
1014
+ intersectPlaneVec3
1015
+ intersectPolygonMesh
1016
+ intersectSkinMesh
1017
+ intersectTriangle
1018
+ invCosHalfAngle
1019
+ invProjectionParamString
1020
+ invViewTransformParamString
1021
+ inverse
1022
+ inverseCullIfNegativeScaling
1023
+ inverse_safe
1024
+ invertFKHierarchy
1025
+ isArray
1026
+ isBinding
1027
+ isBoolean
1028
+ isElse
1029
+ isEmpty
1030
+ isExplicitFlag
1031
+ isFlagBits
1032
+ isFunction
1033
+ isInfiniteObject
1034
+ isItemValid
1035
+ isLocalBoundingVolume
1036
+ isMat33
1037
+ isMat44
1038
+ isOGLBuffer
1039
+ isOGLMaterial
1040
+ isOGLTexture2D
1041
+ isPerElement
1042
+ isPointAttributeUniform
1043
+ isPointDeleted
1044
+ isPolygonBorder
1045
+ isPolygonDeleted
1046
+ isPreDrawCallback
1047
+ isRenderBuffer
1048
+ isReversed
1049
+ isScalar
1050
+ isSimpleBinding
1051
+ isString
1052
+ isSynchronized
1053
+ isUsed
1054
+ isValid
1055
+ isVec3
1056
+ isWritable
1057
+ isXYZ
1058
+ isXZY
1059
+ isYXZ
1060
+ isYZX
1061
+ isZXY
1062
+ isZYX
1063
+ isZero
1064
+ itemCount
1065
+ key
1066
+ keys
1067
+ keysInsert
1068
+ keysVersion
1069
+ klType
1070
+ lastImageVersion
1071
+ lastKeysVersion
1072
+ lastLayerVersion
1073
+ lastMaterialDataVersion
1074
+ lastParamsTopoVersion
1075
+ lastParamsVersion
1076
+ lastShaderLibraryVersion
1077
+ lastShaderVersion
1078
+ lastVersion
1079
+ layerIndex
1080
+ layers
1081
+ layoutOrderVersion
1082
+ leftPlaneNormal
1083
+ length
1084
+ lengthSquared
1085
+ lineList
1086
+ linearCombine
1087
+ linearInterpolate
1088
+ linearSubdividePolygons
1089
+ lines
1090
+ linesIndices
1091
+ listAddIndex
1092
+ listIsEmpty
1093
+ loadColorImageData
1094
+ loadFocalDist
1095
+ loadFromImage
1096
+ loadImagePIXELFORMAT
1097
+ loadObj
1098
+ loadPIXELFORMATImageData
1099
+ loadRGBAImageData
1100
+ loadRGBImageData
1101
+ loadRenderParamValues
1102
+ loadScalarImageData
1103
+ loadToOGLBuffer
1104
+ loadToOGLTexture2D
1105
+ loadToTexture
1106
+ localBVolGetBSphere
1107
+ localBVolOverrideTransformsKey
1108
+ localBVolParamString
1109
+ localBVolQuery
1110
+ localBVolVersionKey
1111
+ localBoundingVolumeBindingBits
1112
+ localData
1113
+ location
1114
+ log
1115
+ log10
1116
+ logShaderParameters
1117
+ logger
1118
+ lookupQuatValueIndex
1119
+ lookupScalarValueIndex
1120
+ lookupVec3ValueIndex
1121
+ lookupXfoValueIndex
1122
+ maintainOrderedPointPolygons
1123
+ makeHomogeneousVec3
1124
+ matchesFilter
1125
+ matchesWildCard
1126
+ materialData
1127
+ materialExposedParamsKey
1128
+ materialId
1129
+ materialIndex
1130
+ materialNames
1131
+ materialParamString
1132
+ materialParamValues
1133
+ materialParamsRefs
1134
+ materialPresetId
1135
+ materialPresetIndex
1136
+ materialPresetName
1137
+ materialVersion
1138
+ mathRandomFloat32
1139
+ mathRandomFloat64
1140
+ mathRandomInteger
1141
+ mathRandomPower
1142
+ mathRandomScalar
1143
+ max
1144
+ maxCacheMemory
1145
+ maxDepth
1146
+ memUsage
1147
+ memberBindingBits
1148
+ memberBits
1149
+ mergeIn
1150
+ mergeMesh
1151
+ mergeMeshClones
1152
+ mergeMeshes
1153
+ mesh
1154
+ meshVersion
1155
+ metaData
1156
+ min
1157
+ minFreeDataPortionDiviserToRecompact
1158
+ minFreeDataSizeToRecompact
1159
+ minVec
1160
+ mirror
1161
+ mirrorBoneID
1162
+ moveElementToList
1163
+ multiply
1164
+ multiplyScalar
1165
+ multiplyVector
1166
+ multiplyVector3
1167
+ multiplyVector4
1168
+ name
1169
+ nameToAttr
1170
+ nameToKey
1171
+ nbComp
1172
+ nbItems
1173
+ near
1174
+ needsDebugContext
1175
+ negate
1176
+ newItemIndex
1177
+ newValues
1178
+ next
1179
+ noBuffer
1180
+ noMotionBlur
1181
+ noScalingInvTransform
1182
+ noScalingLocalBVol
1183
+ noTexture
1184
+ normAttr
1185
+ normData
1186
+ normSq
1187
+ normal
1188
+ normalize
1189
+ normalizeNormal
1190
+ normals
1191
+ normalsAttribute
1192
+ numAdditionalRenderParamLayers
1193
+ numAttributes
1194
+ numBufferElementComponents
1195
+ numCellObjects
1196
+ numInstances
1197
+ numSourceSlices
1198
+ numSubCellObjects
1199
+ numToClassifyObjects
1200
+ objIndex
1201
+ objParseHandle
1202
+ objectCellListElementKey
1203
+ objectData
1204
+ objectIndex
1205
+ offset
1206
+ oglTextureCache
1207
+ oldValues
1208
+ opNextPrimitiveDataIndex
1209
+ open
1210
+ openFileHandle
1211
+ optional
1212
+ options
1213
+ order
1214
+ ori
1215
+ origin
1216
+ originalLocalBVol
1217
+ others
1218
+ output
1219
+ outputFragments
1220
+ outtangent
1221
+ ownerCellCumulativeCountAtDepth
1222
+ ownerCellMembershipListPerDepth
1223
+ ownerName
1224
+ ownerRef
1225
+ ownerType
1226
+ ownerTypeToString
1227
+ packedCellData
1228
+ packedCellDataIndexPool
1229
+ packedLists
1230
+ packedListsIndexPool
1231
+ packedMemberLists
1232
+ packedObjectCellMembership
1233
+ packedObjectCellMembershipIndexPool
1234
+ param
1235
+ paramCreator
1236
+ paramInfos
1237
+ paramName
1238
+ paramNames
1239
+ paramPass
1240
+ paramToShader
1241
+ paramVersions
1242
+ params
1243
+ paramsData
1244
+ paramsDataIndexPool
1245
+ paramsTopoPlusLayoutOrderVersion
1246
+ parent
1247
+ parentBindingBits
1248
+ parentCell
1249
+ parentSubCellIndex
1250
+ parseBbox
1251
+ parseCamera
1252
+ parseCurvesAttributes
1253
+ parseCurvesCount
1254
+ parseCurvesUniforms
1255
+ parseFCurve
1256
+ parseLocalXfo
1257
+ parsePointsAttributes
1258
+ parsePointsCount
1259
+ parsePolyMeshNormalPolyPointIndices
1260
+ parsePolyMeshNormals
1261
+ parsePolyMeshPositions
1262
+ parsePolyMeshTopology
1263
+ parsePolyMeshUVPolyPointIndices
1264
+ parsePolyMeshUVs
1265
+ parsePolygonMeshAndAttributes
1266
+ parsePolygonMeshBbox
1267
+ parseSkeleton
1268
+ parseSkinWeights
1269
+ parseTransform
1270
+ passDebugName
1271
+ passFunctionKeys
1272
+ passName
1273
+ passOrder
1274
+ passes
1275
+ patchVertices
1276
+ path
1277
+ perElementVersions
1278
+ perInstance
1279
+ perInstanceParameters
1280
+ perInstanceValues
1281
+ perThreadTempData
1282
+ pixelIds
1283
+ pixels
1284
+ point
1285
+ pointCount
1286
+ pointData
1287
+ pointFromFactor
1288
+ pointGetIter
1289
+ pointId
1290
+ pointIndex
1291
+ pointer
1292
+ pointsIndices
1293
+ polyData
1294
+ polygon
1295
+ polygonCount
1296
+ polygonCounts
1297
+ polygonIndices
1298
+ polygonOffsetFactor
1299
+ polygonOffsetUnits
1300
+ polygonPointsCount
1301
+ posAttr
1302
+ posAttribute
1303
+ posData
1304
+ pos_dAttr
1305
+ position
1306
+ positions
1307
+ positionsAttribute
1308
+ positionsAttributeKey
1309
+ positionsAttributeType
1310
+ positionsAttribute_d
1311
+ positionsVersion
1312
+ potentialIndexRange
1313
+ pow
1314
+ prefix
1315
+ presetNames
1316
+ prev
1317
+ prevFrameDataObj
1318
+ prevFrameTransformsKey
1319
+ prevGeometryParams
1320
+ prevGlvalues
1321
+ prevItemIndex
1322
+ prevOriginalLocalBVol
1323
+ prevPositionsAttributeKey
1324
+ prevTransformIndex
1325
+ primIndex
1326
+ primInstanceIndex
1327
+ primNextInstanceDataIndex
1328
+ primPerTypeIndex
1329
+ primitiveFlagsPerType
1330
+ primitiveIndicesPerType
1331
+ primitiveIndicesPerTypeIndexPool
1332
+ primitiveNameToIndex
1333
+ primitives
1334
+ primitivesIndexPool
1335
+ primitivesListVersionPerType
1336
+ printLocalBoundingVolume
1337
+ printMat44
1338
+ processQueriedIntersectedCell
1339
+ produce
1340
+ programId
1341
+ programLocation
1342
+ programOptions
1343
+ projectionParamString
1344
+ pt1
1345
+ pt2
1346
+ pureGL32
1347
+ push
1348
+ pushArg
1349
+ pushArray
1350
+ pyramidGetBBox
1351
+ pyramidNearPlaneIntersectsBVol
1352
+ quatBindings
1353
+ quatValues
1354
+ queryPolygonMeshSchema
1355
+ queueStatusMessage
1356
+ radius
1357
+ randomTexture
1358
+ ray
1359
+ rayData
1360
+ rayIntersect
1361
+ rayParam
1362
+ raycast
1363
+ re
1364
+ readData
1365
+ readDataCompressed
1366
+ readSize
1367
+ readString
1368
+ readStringArray
1369
+ reallocate
1370
+ recompact
1371
+ recompactData
1372
+ recompactItemIndices
1373
+ recomputePointNormals
1374
+ recycleInPool
1375
+ referenceLocalPose
1376
+ referencePose
1377
+ refineRenderTargetClearColorKeys
1378
+ refineRenderTargetClearDepthKeys
1379
+ refineRenderTargets
1380
+ releaseObjectCellMembersUpToDepth
1381
+ releaseTexture
1382
+ reload
1383
+ remapIdxOff
1384
+ removeAttribute
1385
+ removeBSphereObject
1386
+ removeConstraint
1387
+ removeKey
1388
+ removeKeyIfExists
1389
+ removeListElement
1390
+ removeObjectCellMembership
1391
+ removeRigidBody
1392
+ removeSoftBody
1393
+ removeSpatialQueryAcceleration
1394
+ renderDataGenerationCount
1395
+ renderOwnerCookie
1396
+ renderRequests
1397
+ renderTargetClearColorKeys
1398
+ renderTargetClearDepthKeys
1399
+ renderTargetDepthKeys
1400
+ renderTargetHeightKeys
1401
+ renderTargetSourceKeys
1402
+ renderTargetWidthKeys
1403
+ renderTargets
1404
+ report
1405
+ reportObjects
1406
+ reset
1407
+ resetLayer_noVersionChange
1408
+ resize
1409
+ resizeArray
1410
+ resizeNoClear
1411
+ rigSkinningMatricies
1412
+ rightPlaneNormal
1413
+ ro
1414
+ rootCellIndex
1415
+ rootHierarchy
1416
+ rotateVector
1417
+ round
1418
+ row0
1419
+ row1
1420
+ row2
1421
+ row3
1422
+ row4
1423
+ safeInverse
1424
+ sample
1425
+ sc
1426
+ sc1
1427
+ sc4
1428
+ scalarAttributes
1429
+ scalarBindings
1430
+ scalarKey
1431
+ scalarValue
1432
+ scalarValues
1433
+ scaling
1434
+ scope
1435
+ seekTime
1436
+ segmentId
1437
+ segmentParam
1438
+ segmentPlaneIntersect
1439
+ selected
1440
+ self
1441
+ set
1442
+ setAll
1443
+ setAllAsUnused
1444
+ setAngles
1445
+ setAngularVelocity
1446
+ setArraySize
1447
+ setAsArray
1448
+ setAsBoolean
1449
+ setAsColor
1450
+ setAsIdxOff
1451
+ setAsInteger
1452
+ setAsLocalBoundingVolume
1453
+ setAsMat33
1454
+ setAsMat44
1455
+ setAsOGLBuffer
1456
+ setAsOGLTexture2D
1457
+ setAsOGLTexture2DFromImageWrapper
1458
+ setAsScalar
1459
+ setAsString
1460
+ setAsVec2
1461
+ setAsVec3
1462
+ setAsVec4
1463
+ setAttributeFromPolygonPackedData
1464
+ setBit
1465
+ setBoolData
1466
+ setBoolOption
1467
+ setCellDirty
1468
+ setColorMask
1469
+ setColumns
1470
+ setComponent
1471
+ setContainerIndex
1472
+ setDiagonal
1473
+ setElementCount
1474
+ setError
1475
+ setExpandedIdxOffDataUserBit1_nocheck
1476
+ setExpandedIdxOffDataUserBit2_nocheck
1477
+ setExtension
1478
+ setFlag
1479
+ setFrom
1480
+ setFrom2Vectors
1481
+ setFromAxisAndAngle
1482
+ setFromDirectionAndUpvector
1483
+ setFromEuler
1484
+ setFromEulerAngles
1485
+ setFromMat33
1486
+ setFromMat44
1487
+ setFromScalar
1488
+ setFromSimpleRenderParam
1489
+ setGravity
1490
+ setIdentity
1491
+ setInfiniteListKey
1492
+ setInstanceCount
1493
+ setIntData
1494
+ setIntOption
1495
+ setLayer
1496
+ setLayer_noVersionChange
1497
+ setLinearVelocity
1498
+ setLinesRenderParams
1499
+ setMass
1500
+ setNbItems
1501
+ setNormalsFromExternalArray
1502
+ setNormalsFromExternalArray_d
1503
+ setNull
1504
+ setOGLMaterial
1505
+ setOGLShaderRenderParam
1506
+ setPath
1507
+ setPixel
1508
+ setPointAttribute
1509
+ setPointNormal
1510
+ setPointPosition
1511
+ setPointsFromExternalArray
1512
+ setPointsFromExternalArray_d
1513
+ setPolygonAttribute
1514
+ setPoseValues
1515
+ setRows
1516
+ setScalarData
1517
+ setScalarMetaData
1518
+ setScalarOption
1519
+ setSeek
1520
+ setSeekEnd
1521
+ setSeekStart
1522
+ setShader
1523
+ setShaderReferences
1524
+ setSpace
1525
+ setStringData
1526
+ setStringMetaData
1527
+ setStringOption
1528
+ setTopologyFromCombinedExternalArray
1529
+ setTopologyFromCountsIndicesExternalArrays
1530
+ setTrackValues
1531
+ setTransform
1532
+ setTranslation
1533
+ setType
1534
+ setTypeFromImage
1535
+ setUVsFromExternalArray
1536
+ setUnit
1537
+ setUserData
1538
+ setValue
1539
+ setVec3MetaData
1540
+ setVertexColorsFromExternalArray
1541
+ setWireframe
1542
+ setXYZ
1543
+ setXZY
1544
+ setXfoMetaData
1545
+ setYXZ
1546
+ setYZX
1547
+ setZXY
1548
+ setZYX
1549
+ shader
1550
+ shaderDefaults
1551
+ shaderDraw
1552
+ shaderFilename
1553
+ shaderLibrary
1554
+ shaderLibraryIndex
1555
+ shaderParamString
1556
+ shaderPreprocessorVariants
1557
+ shaderRenderParamLibrary
1558
+ shaderSources
1559
+ shaders
1560
+ shadowTexture
1561
+ sharedTempSkinningMatricies
1562
+ sin
1563
+ size
1564
+ skinPosArray
1565
+ skinnedPolygonMeshRayIntersect
1566
+ skinningMatrices
1567
+ skinningPosAndNormMatrices
1568
+ sliceId
1569
+ smallestWorldCellSize
1570
+ source
1571
+ sourceAttributeWrapper
1572
+ sourceGroup
1573
+ sourceImageWrapper
1574
+ sourceOpInfos
1575
+ sourceType
1576
+ space
1577
+ spatialPartition
1578
+ specializedLocalBVol
1579
+ sphericalLinearInterpolate
1580
+ splitByChar
1581
+ splitEdge
1582
+ splitPoint
1583
+ splitPolygon
1584
+ sqrt
1585
+ srcNormAttr
1586
+ srcPos
1587
+ srcPosAttr
1588
+ srcPos_dAttr
1589
+ start
1590
+ start3
1591
+ startIters
1592
+ startPt
1593
+ startsWith
1594
+ staticFalseKey
1595
+ staticParams
1596
+ staticTrueKey
1597
+ step
1598
+ store
1599
+ storeAsPerInstanceOGLParam
1600
+ storeCommonConstant
1601
+ stringKey
1602
+ stringToOwnerType
1603
+ stringValue
1604
+ stripChar
1605
+ strokePath
1606
+ subCellIndices
1607
+ subCellObjectsMembershipList
1608
+ subGroup
1609
+ subIndex
1610
+ subStr
1611
+ subdivideAndEmboss
1612
+ subdivided
1613
+ subtract
1614
+ swap
1615
+ symmetricOrthographicFrustum
1616
+ symmetricPerspectiveFrustum
1617
+ synchronize
1618
+ synchronizeValueVersion
1619
+ synchronizeVersion
1620
+ synchronizeVersions
1621
+ synchronize_explicitElementIndex
1622
+ tan
1623
+ tanHalfAngle
1624
+ tempParams
1625
+ texture
1626
+ textureHeightPostfixString
1627
+ textureMagFilter
1628
+ textureMinFilter
1629
+ textureNodeIndex
1630
+ textureNodeSlice
1631
+ textureValues_paramName
1632
+ textureWidthPostfixString
1633
+ textures
1634
+ this
1635
+ threshold
1636
+ time
1637
+ timeLapse
1638
+ timeRange
1639
+ toClassifyObjectsMembershipList
1640
+ toEuler
1641
+ toEulerAngles
1642
+ toInteger
1643
+ toMat33
1644
+ toMat44
1645
+ toRGB
1646
+ toRGBA
1647
+ toScalar
1648
+ toString
1649
+ toUpperPowerOfTwo
1650
+ toVec3
1651
+ topo
1652
+ topoChangesBracket
1653
+ totalPolygonPoints
1654
+ tr
1655
+ trackIds
1656
+ tracks
1657
+ transform
1658
+ transformBindingBits
1659
+ transformId
1660
+ transformIndex
1661
+ transformParamString
1662
+ transformSpace
1663
+ transformVector
1664
+ transformVersionKey
1665
+ transformedBBoxComputeUnscaled
1666
+ transformedBBoxGetBBox
1667
+ transformedBBoxGetBSphere
1668
+ transformedBBoxGetVectors
1669
+ transformedBConeComputeVectors
1670
+ transformedBPyramidComputeVectors
1671
+ transformedBSphereGetBBox
1672
+ transformedBSphereGetBSphere
1673
+ transforms
1674
+ translation
1675
+ transpose
1676
+ triangleIndex
1677
+ trianglesIndices
1678
+ twistPosNormExecute
1679
+ type
1680
+ types
1681
+ uniforms
1682
+ uniqueId
1683
+ unit
1684
+ unitDir
1685
+ unitDir3
1686
+ unit_safe
1687
+ unitsAngleTo
1688
+ unorderedPoints
1689
+ unorderedPointsCount
1690
+ unsharedAttrToPointSlidingArray
1691
+ unsharedAttrToPointSlidingArrayBegin
1692
+ unusedIndex
1693
+ unusedSize
1694
+ upPlaneNormal
1695
+ update
1696
+ updateBSphereObject
1697
+ updateBboxObject
1698
+ updateBit
1699
+ updateFPS
1700
+ updateGeometryAttributesRenderParams
1701
+ updateHeaderBit
1702
+ updateIdxOff
1703
+ updateIndexOfIdxOff
1704
+ updateIndexOfIdxOffBit
1705
+ updateIndicesBuffer
1706
+ updateInterval
1707
+ updateIntervalKeys
1708
+ updateLocalBVolObject
1709
+ updateMaterialDefinition
1710
+ updateOGLGeometryAttribute
1711
+ updateObjectPath
1712
+ updateOpPrimCountAndType
1713
+ updatePointsPolygonOrder
1714
+ updatePrimInstanceIndices
1715
+ updatePrimitive
1716
+ updateRenderParams
1717
+ updateTypeFromImageFlags
1718
+ updateValues
1719
+ upperLeft
1720
+ url
1721
+ usageHint
1722
+ useOriginalReferencePose
1723
+ used
1724
+ userData
1725
+ uvsAttr
1726
+ validateCumulativeCounts
1727
+ validate_slow
1728
+ value
1729
+ valueDesc
1730
+ valueKey
1731
+ valueOrFunctionArgs
1732
+ values
1733
+ varId
1734
+ varName
1735
+ variantIndex
1736
+ variantIndicesByCat
1737
+ variantShaderParams
1738
+ variants
1739
+ vec3Values
1740
+ vecDiv
1741
+ vecMul
1742
+ vecSub
1743
+ version
1744
+ versionedKey
1745
+ versions
1746
+ vertexAttrInitialized
1747
+ vertexColors
1748
+ vertexIds
1749
+ viewTransformParamString
1750
+ visible
1751
+ visitedItemBits
1752
+ visitedItems
1753
+ visitedItemsCount
langs/kl/statement.txt ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FILE
2
+ LINE
3
+ alias
4
+ break
5
+ case
6
+ const
7
+ continue
8
+ default
9
+ do
10
+ else
11
+ for
12
+ function
13
+ if
14
+ in
15
+ inline
16
+ interface
17
+ io
18
+ object
19
+ operator
20
+ require
21
+ return
22
+ struct
23
+ switch
24
+ throw
25
+ use
26
+ var
27
+ while
28
+ Ref
29
+ ValueProducer
langs/kl/type.txt ADDED
@@ -0,0 +1,214 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ARGB
2
+ AlembicHandle
3
+ ApplyData
4
+ ApplyFunctionKeys
5
+ ApplyGLStates
6
+ ApplyMemberData
7
+ ApplyOpSequenceElement
8
+ ArrayOffsetAllocator
9
+ AttributePatch
10
+ BadVersion
11
+ BezierKeyframe
12
+ BindingRenderParam
13
+ BitVector
14
+ Bone
15
+ BoneBinding
16
+ Boolean
17
+ Byte
18
+ CachedFlags
19
+ ClearTextureFunctions
20
+ Color
21
+ ColorAttribute
22
+ CompactDataSets
23
+ Complex64
24
+ Container
25
+ ContiguousAllocator
26
+ ContiguousUInt32Allocator
27
+ Data
28
+ DataIter
29
+ DebugContext
30
+ DynamicTextureFunctions
31
+ Euler
32
+ FKHierarchyBinding
33
+ FbxHandle
34
+ Float32
35
+ Float64
36
+ GeometryAttribute
37
+ GeometryAttributeRTRAdaptor
38
+ GeometryAttributes
39
+ GeometryAttributesHelpers
40
+ GizmoIntersection
41
+ GizmoType
42
+ GroupData
43
+ GroupFunctionKeys
44
+ GroupUpdateCachedMemberData
45
+ HGCellBBox
46
+ HGCellData
47
+ HGCellPath
48
+ HGObjectCellMembership
49
+ HGObjectData
50
+ HierarchicalGrid
51
+ Image2DFORMAT
52
+ Image2DPIXELFORMAT
53
+ ImageRTRGeneratorWrapper
54
+ Index
55
+ IndexPool
56
+ InstanceData
57
+ InstanceLayersCache
58
+ InstanceStoredData
59
+ InstanceStoredDatas
60
+ InstanceStoredTextureData
61
+ Integer
62
+ IntegerAttribute
63
+ KeyframeTrack
64
+ KeyframeTrackBinding
65
+ KeyframeTrackBindings
66
+ KeyframeTrackSet
67
+ LidarReader
68
+ LineList
69
+ LinearKeyframe
70
+ LocalBoundingVolume
71
+ LocalBoundingVolumeRenderParam
72
+ LocalIndexArray
73
+ LocalL16RenderParamVersionedKeyArray
74
+ LocalL16ScalarArray
75
+ LocalL16UInt32Array
76
+ LocalL16UInt8Array
77
+ LocalL4UInt32Array
78
+ LocalL8UInt32Array
79
+ Mat22
80
+ Mat33
81
+ Mat33Attribute
82
+ Mat44
83
+ Mat44Attribute
84
+ MeshSpatialQueryCache
85
+ Misc
86
+ OBJDataHandle
87
+ OGLBuffer
88
+ OGLDrawLogger
89
+ OGLMaterial
90
+ OGLMaterialData
91
+ OGLMaterialVariant
92
+ OGLParamValueOrFunction
93
+ OGLRefineRenderTarget
94
+ OGLRenderDraw
95
+ OGLRenderParams
96
+ OGLRenderPass
97
+ OGLRenderPassApply
98
+ OGLRenderPassGroup
99
+ OGLRenderSequencer
100
+ OGLRenderTarget
101
+ OGLRenderValueOrFunction
102
+ OGLShader
103
+ OGLShaderLibrary
104
+ OGLShaderProgram
105
+ OGLShaderProgramAttribute
106
+ OGLShaderProgramOption
107
+ OGLShaderProgramTexture
108
+ OGLShaderProgramUniform
109
+ OGLShaderRenderParam
110
+ OGLShaderSource
111
+ OGLTexture2D
112
+ OGLTextureCache
113
+ Object
114
+ PackedIndexListElement
115
+ PackedIndexListElementKey
116
+ PackedIndexListKey
117
+ PackedIndexLists
118
+ PackedMemberValueOrFunctionVersionedKeys
119
+ ParamCache
120
+ ParamCacheEntry
121
+ ParamDataGenerator
122
+ ParamLayer
123
+ PassFunctionKeys
124
+ PerInstanceMaterialParameterInfo
125
+ PerInstanceOGLMaterialParameters
126
+ PerInstanceParameters
127
+ PixelPatch
128
+ PolygonMesh
129
+ PolygonMeshBaseModeling
130
+ PolygonMeshDCCConversion
131
+ PolygonMeshLocation
132
+ PolygonMeshModeling
133
+ PolygonMeshSpatialQueries
134
+ PoseVariables
135
+ PrimitiveData
136
+ Quat
137
+ QuatAttribute
138
+ RGB
139
+ RGBA
140
+ RGBAAttribute
141
+ RGBAttribute
142
+ RTRFunctionCaller
143
+ RTRParamGenerator
144
+ Ray
145
+ RayIntersection
146
+ RefApplyData
147
+ RefGeometryAttribute
148
+ RefInstanceStoredData
149
+ RefOGLMaterial
150
+ RefOGLShaderProgram
151
+ RefOGLShaderRenderParam
152
+ RefOGLTexture2D
153
+ RefObject
154
+ RefPolygonMesh
155
+ RefRenderParamValues
156
+ RefVec3Attribute
157
+ RefVec3_dAttribute
158
+ Ref_RTRUserCallbackFunctions
159
+ RefineTextureTargetInfo
160
+ RenderCaches
161
+ RenderData
162
+ RenderDrawData
163
+ RenderParam
164
+ RenderParamData
165
+ RenderParamKey
166
+ RenderParamSet
167
+ RenderParamValues
168
+ RenderParamVersionedKey
169
+ RenderParams
170
+ RenderRequest
171
+ RenderSequenceData
172
+ RenderValueKey
173
+ RotationOrder
174
+ SInt16
175
+ SInt32
176
+ SInt64
177
+ SInt8
178
+ Scalar
179
+ ScalarAttribute
180
+ ScalarConstantArrayAttribute
181
+ SequencePassData
182
+ ShaderUniformValueData
183
+ ShaderVariantAndParamIndex
184
+ SimpleRenderParams
185
+ Size
186
+ SourceOpInfo
187
+ SpecializedArrays
188
+ String
189
+ TargetKeys
190
+ TextureCacheEntry
191
+ TextureClearValues
192
+ Type
193
+ TypeCommonConstants
194
+ UInt16
195
+ UInt16ConstantArrayAttribute
196
+ UInt32
197
+ UInt32Attribute
198
+ UInt64
199
+ UInt8
200
+ UnitTest
201
+ UnitTest-Extra
202
+ VALUETYPE
203
+ ValueOrFunctionKeyDefinition
204
+ Vec2
205
+ Vec2Attribute
206
+ Vec3
207
+ Vec3Attribute
208
+ Vec3_d
209
+ Vec3_dAttribute
210
+ Vec4
211
+ Vec4Attribute
212
+ Versions
213
+ VideoHandle
214
+ Xfo
langs/kl/variable.txt ADDED
@@ -0,0 +1,369 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Adjacency
2
+ AnimateCamera
3
+ AnimateCars
4
+ ArrayOffsetAllocatorRecompactData
5
+ BitVectorIterator
6
+ BooleanRenderParam
7
+ BoxIntersectData
8
+ BuildPressureNeighborArraysApplyDensityRelaxation_perPoint
9
+ BuildPressureNeighborArrays_perPoints
10
+ BulgePlane
11
+ BulletAnchor
12
+ BulletConstraint
13
+ BulletContact
14
+ BulletForce
15
+ BulletRigidBody
16
+ BulletShape
17
+ BulletSoftBody
18
+ BulletWorld
19
+ CollectPointsMapOutput
20
+ CollectPointsReduceOutput
21
+ CollectPointsSharedData
22
+ CollectedPoints
23
+ ColorOBJMesh
24
+ ColorRenderParam
25
+ Color_RTRAttributeWrapper
26
+ ComputeDoubleDensity_perPoint
27
+ ComputePolyTanBinormTask
28
+ ComputeVertexTangentTask
29
+ ConeIntersectData
30
+ ConvertMat33Space
31
+ CvCapture
32
+ FabricFileStream
33
+ GeometryAttributeOGLUpdateData
34
+ GeometryInstancePrevFrameData
35
+ GetHashTableNeighorsIndices_perPoint
36
+ IdxOff
37
+ IdxOffBit
38
+ Image2DColor_RTRGeneratorWrapper
39
+ Image2DRGBA_RTRGeneratorWrapper
40
+ Image2DRGB_RTRGeneratorWrapper
41
+ Image2DScalar_RTRGeneratorWrapper
42
+ IndexSet
43
+ InstanceStoredDataInfo
44
+ IntegerRenderParam
45
+ Integer_RTRAttributeWrapper
46
+ IplImage
47
+ IterOff
48
+ LinesAxesGenerate
49
+ LinesBoundingBoxGenerate
50
+ LinesCameraDisplayGenerate
51
+ LinesCircleGenerate
52
+ LinesCrossGenerate
53
+ LinesGridGenerate
54
+ LinesRectangleGenerate
55
+ LocalL64ScalarArray
56
+ Mat33RenderParam
57
+ Mat33_RTRAttributeWrapper
58
+ Mat44RenderParam
59
+ MeshIndicesOGLBufferGenerator
60
+ OGLBufferFromAttributeGenerator
61
+ OGLRenderPasses
62
+ OGLTexture2DFromAttributeGenerator
63
+ ParallelApplyMemberDataUpdate
64
+ ParallelComputeBBoxSphereIntersection
65
+ ParallelEvaluateGroupMemberConditionAndFlag
66
+ Patch
67
+ PerInstanceMaterialParameters
68
+ PlaceTrees
69
+ PointsPlaneGenerate
70
+ PolygonMeshConeGenerate
71
+ PolygonMeshCuboidGenerate
72
+ PolygonMeshCylinderGenerate
73
+ PolygonMeshEdge
74
+ PolygonMeshPlaneGenerate
75
+ PolygonMeshSphereGenerate
76
+ PolygonMeshSubdividePatch
77
+ PolygonMeshTeapotGenerate
78
+ PolygonMeshTetrahedronGenerate
79
+ PolygonMeshTorusGenerate
80
+ PolygonMesh_getPointsAsExternalArrayTask
81
+ PolygonMesh_getPointsAsExternalArrayTask_d
82
+ PolygonMesh_setPointsFromExternalArrayTask
83
+ PolygonMesh_setPointsFromExternalArrayTask_d
84
+ PyramidIntersectData
85
+ Quat_RTRAttributeWrapper
86
+ RGBA_RTRAttributeWrapper
87
+ RGB_RTRAttributeWrapper
88
+ RaycastLineListMRInput
89
+ RaycastLineListMRResult
90
+ RaycastPointsMRInput
91
+ RaycastPointsMRResult
92
+ RenderParamFlag
93
+ RenderParamVersionedNamedKey
94
+ SPHSolver
95
+ ScalarConstantArray_RTRAttributeWrapper
96
+ ScalarRenderParam
97
+ Scalar_RTRAttributeWrapper
98
+ SetCellIndexCellCoord_perPoint
99
+ SetGeometryHardwareInstanceRandomColor
100
+ SetGeometryInstanceRandomColor
101
+ SetGroundPositionsAndColors
102
+ SetInstanceTransforms
103
+ SetParticleColor
104
+ SetParticleGrid_perPoint
105
+ SetVertexColorsFromRaycast
106
+ SimpleRenderParam_createDefaultFromKLTypeString
107
+ SkinPositions
108
+ SkinPositionsAndNormals
109
+ SkinningMatricesRenderParamGenerator
110
+ SmoothPosMRInput
111
+ SmoothPosNormMRInput
112
+ SmoothPosNormProduce
113
+ SmoothPosProduce
114
+ StringRenderParam
115
+ TextureFromImageGenerator
116
+ TrackingCamera
117
+ UInt16ConstantArray_RTRAttributeWrapper
118
+ UInt32_RTRAttributeWrapper
119
+ UpdateFromParentTransfoLib
120
+ UpdatePointAttributes_perPoint
121
+ Vec2RenderParam
122
+ Vec2_RTRAttributeWrapper
123
+ Vec3RenderParam
124
+ Vec3_RTRAttributeWrapper
125
+ Vec4RenderParam
126
+ Vec4_RTRAttributeWrapper
127
+ _AttributeRef
128
+ _BestQueryResult
129
+ _ClosestQueryData
130
+ _ContiguousUInt32Allocator_FreeNodeInfo
131
+ _GetClosestMeshMRInput
132
+ _MeshStatialQueryPerThreadTempData
133
+ _QueryHeapItem
134
+ _RTRUserCallbackFunctions
135
+ _RayQueryData
136
+ _RaycastMeshMRInput
137
+ _UnsharedAttributeIndexIter
138
+ _closestPolygonMesh_produce
139
+ _computePolygonBBox
140
+ _generateMeshPointNormalOrSplits
141
+ _generatePointNormals
142
+ _generatePolygonNormals
143
+ _getBBoxClosestPoint
144
+ _getBBoxSquaredDistance
145
+ _intersectBBoxFromOutside
146
+ _raycastLineList_produce
147
+ _raycastLineList_reduce
148
+ _raycastPoints_produce
149
+ _raycastPoints_reduce
150
+ _raycastPolygonMesh_produce
151
+ accumulateInterpolatedPointScalars
152
+ addAttributes
153
+ addMeshSkinningAttributes
154
+ addSkinningAttributes
155
+ aimTransform
156
+ alembicCacheTransforms
157
+ alembicComputeTransforms
158
+ alembicGetSampleTimes
159
+ alembicLoad
160
+ alembicMergeBbox
161
+ alembicParseBbox
162
+ alembicParseCamera
163
+ alembicParseCameras
164
+ alembicParseGeometryInstances
165
+ alembicParseGeometryInstancesWithMaterial
166
+ alembicParseLines
167
+ alembicParseMaterialPresetNames
168
+ alembicParsePoints
169
+ alembicParsePolygonMesh
170
+ alembicParseTransforms
171
+ applyAddPolygonsPatches
172
+ applyAttributePatches
173
+ applyPixelPatch
174
+ applyPolygonMeshAttributePatches
175
+ bindSourceXfo
176
+ calcGlobalXfoOnLibrary
177
+ calcGlobalXfoOnLibraryWithoutParent
178
+ calcRigSkinningMatrices
179
+ collectMaterialParams
180
+ collectPointsProduce
181
+ collectPointsReduce
182
+ computeCurrentBBox
183
+ computeInitialBBox
184
+ computeLocalBBox
185
+ computeSkinnedBBox
186
+ computeTangents
187
+ copyGeometryDefinitionsAndData
188
+ copyPolygonMeshData
189
+ copyShapeIndices
190
+ copyShapeVertices
191
+ createBulletAnchors
192
+ createBulletConstraints
193
+ createBulletRigidBodies
194
+ createBulletShapes
195
+ createBulletSoftBody
196
+ createBulletWorld
197
+ deformManipulatableCuboid
198
+ displaceMeshFORMAT
199
+ displaceVertex
200
+ drawManipulatableCuboidGizmos
201
+ drawParticlesAsSpheres
202
+ drawRig
203
+ evaluateKEYFRAMETRACKTYPEScalar
204
+ evaluateKEYFRAMETRACKTYPEXfo
205
+ extractTriangleDataOp
206
+ fbxBindFCurvesToCamera
207
+ fbxBindFCurvesToLight
208
+ fbxBindFCurvesToSpotLight
209
+ fbxBindFCurvesToTransform
210
+ fbxComputeTransforms
211
+ fbxGetAnimationLayerNames
212
+ fbxGetIdentifiers
213
+ fbxLoad
214
+ fbxMergeBbox
215
+ fbxParseBbox
216
+ fbxParseCameras
217
+ fbxParseCharacterInstances
218
+ fbxParseCharacterRigPoses
219
+ fbxParseCharacterSkeletons
220
+ fbxParseFCurves
221
+ fbxParseFlatTexturedMaterials
222
+ fbxParseGeometryInstances
223
+ fbxParsePhongMaterials
224
+ fbxParsePhongTexturedMaterials
225
+ fbxParsePhongTexturedNormalMappedMaterial
226
+ fbxParsePhongTexturedTransparentMaterials
227
+ fbxParsePointLights
228
+ fbxParsePolygonMesh
229
+ fbxParsePolygonMeshSkinWeights
230
+ fbxParseSpotLights
231
+ fbxParseTextures
232
+ fbxParseTransforms
233
+ fbxResizeFlatTexturedMaterials
234
+ fbxResizePhongMaterials
235
+ fbxResizePhongTexturedMaterials
236
+ fbxResizePhongTexturedNormalMappedMaterials
237
+ fbxResizePhongTexturedTransparentMaterials
238
+ fbxResizeTransoforms
239
+ generateGizmos
240
+ getBulletRigidBodyTransforms
241
+ getBulletSoftBodyPositions
242
+ getBulletSoftBodyPositionsTask
243
+ initCanvas
244
+ initImagesPIXELFORMAT
245
+ initRenderData
246
+ initRig
247
+ initSkeleton
248
+ initializeAgent
249
+ integratedViewportPushPopAttribOp
250
+ intersectLineList
251
+ lidarGetPoints
252
+ lidarLoad
253
+ linesRayIntersect
254
+ loadImageRenderParamsPIXELFORMAT
255
+ loadSkinningTextureMatrix
256
+ matchGeometryCount
257
+ mergeBboxes
258
+ paintPixels
259
+ paintVertexColors
260
+ parseObj
261
+ polygonMeshRayIntersect
262
+ polygonMeshToArrays
263
+ rayIntersectGizmo
264
+ raycastBulletWorld
265
+ resetDebugDraw
266
+ resetMaterialParams
267
+ resizeNodeForImport
268
+ setBulletRigidBodyTransform
269
+ setCameraRenderParams
270
+ setCharacterInstanceData
271
+ setColorFromRaycast
272
+ setDirectionalAreaLightParams
273
+ setDirectionalLightParams
274
+ setGizmoRenderParamValues
275
+ setHardwareInstanceData
276
+ setID_perPoint
277
+ setInlineGeometryInstanceData
278
+ setInlineGeometryRenderParamValues
279
+ setInstanceData
280
+ setLightRenderParams
281
+ setLinesRenderParamsAllSlices
282
+ setObjGeometryInstance
283
+ setObjPolygonMesh
284
+ setParticleColor_perPoint
285
+ setPerInstanceColor
286
+ setPerInstanceInteger
287
+ setPerInstanceMat33
288
+ setPerInstanceMat44
289
+ setPerInstanceScalar
290
+ setPerInstanceValuesParameters
291
+ setPerInstanceVec2
292
+ setPerInstanceVec3
293
+ setPerInstanceVec4
294
+ setPointLightParams
295
+ setPointOrSpotAreaLightParams
296
+ setPolygonMeshRenderParams
297
+ setSpotLightParams
298
+ setTextureData
299
+ setupBuffer
300
+ skinPos
301
+ skinPosNorm
302
+ smoothColor
303
+ smoothPos
304
+ smoothPosNorm
305
+ solveFKHierarchy
306
+ stepBulletWorld
307
+ swapBuffers
308
+ swirleyMovementOp
309
+ synchronizeRenderParams
310
+ updateInstanceValues
311
+ updateInstances
312
+ updateLocalBBox
313
+ updateMaterialTextures
314
+ updateMaterials
315
+ updatePasses
316
+ updateShaderLibrary
317
+ CopyToGLStates
318
+ GetHelloWorldString
319
+ GroupMemberData
320
+ SameApplyGLStates
321
+ absolute
322
+ allParams
323
+ allocateTextures
324
+ alternateNameIndex
325
+ applyData
326
+ applyDatas
327
+ applyMembersData
328
+ applyOpsData
329
+ applyOpsDataIndexPool
330
+ applyOpsSequence
331
+ applySourcePassIndex
332
+ applySubPassIndex
333
+ attributeParamsShaderCache
334
+ bVolCull
335
+ bVolCullFunctionKeys
336
+ bVolCullFunctionResult
337
+ bVolCullWithLocalBVol
338
+ bindingTargetKeys
339
+ bindingTargetNames
340
+ bindingTargetSpaces
341
+ bindingValues
342
+ buildDebugContext
343
+ buildDrawSequence
344
+ cachedConditionValue
345
+ cachedFlagBits
346
+ cachedFlagsResultValue
347
+ callBooleanFunction
348
+ callColorFunction
349
+ callDrawFunction
350
+ callFunction
351
+ callIntegerFunction
352
+ callLocalBoundingVolumeFunction
353
+ callScalarFunction
354
+ callVoidFunction
355
+ cleanup
356
+ clearColorFunctionBindings
357
+ clearDepthFunctionBindings
358
+ clearFunctions
359
+ clearLastError
360
+ colorAttachIndex
361
+ complementGroupDataIndex
362
+ conditionFunctionKeys
363
+ conditionInitialized
364
+ conditionResult
365
+ currentDefaultColorBufferID
366
+ currentDrawBuffers
367
+ currentFBOHeight
368
+ currentFBOWidth
369
+ currentFramebufferColorAttachmentTypes
langs/mel/constant.txt ADDED
@@ -0,0 +1,2 @@
 
 
1
+ false
2
+ true
langs/mel/mel.txt ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Maya MEL LANGUAGE ###
2
+
3
+ # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
+ # CREATED BY Andrew Hazelden (http://www.andrewhazelden.com) based upon the BBEdit Codeless Language module by M. Chris Kerstan (http://www.chriskerstan.de)
5
+
6
+
7
+ NAME MEL
8
+ VERSION 2016
9
+
10
+ COMMENT (?default)|(\#.*?$)
11
+ STRING (?default)|(<<<EOT.*?^EOT)
12
+ REGEX:PREPROCESSOR \b\w*/([^\r\n]|(?<=\\)/)+/\w*\b
13
+
14
+ STATEMENT \b(?alt:statement.txt)\b
15
+ RESERVED \b(?alt:reserved.txt)\b
16
+ TYPE (?default)|\b(?alt:type.txt)\b
17
+ ENTITY (?default)|\b[a-z_]\w*(::|->)
18
+ VARIABLE (\$|%)[a-z_]\w*\b
19
+ IDENTIFIER \b[a-z_]\w*\b\s*(?=\([^\)]*\))
20
+ CONSTANT \b[a-z_]\w*\b|\b(?alt:constant.txt)\b
21
+ OPERATOR (?default)
22
+ SYMBOL (?default)
langs/mel/reserved.txt ADDED
@@ -0,0 +1,1403 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ aaf2fcp
2
+ about
3
+ abs
4
+ addAttr
5
+ addAttributeEditorNodeHelp
6
+ addCustomPrefsTab
7
+ addDynamic
8
+ addExtension
9
+ addMetadata
10
+ addNewShelfTab
11
+ addPanelCategory
12
+ addPP
13
+ addPrefixToName
14
+ advanceToNextDrivenKey
15
+ affectedNet
16
+ affects
17
+ aimConstraint
18
+ air
19
+ aliasAttr
20
+ align
21
+ alignCtx
22
+ alignCurve
23
+ alignSurface
24
+ allNodeTypes
25
+ allViewFit
26
+ ambientLight
27
+ angle
28
+ angleBetween
29
+ animCurveEditor
30
+ animDisplay
31
+ animLayer
32
+ animView
33
+ annotate
34
+ appendStringArray
35
+ applicationName
36
+ applyAttrPattern
37
+ applyAttrPreset
38
+ applyMetadata
39
+ applyTake
40
+ arclen
41
+ arcLenDimContext
42
+ arcLengthDimension
43
+ arrayMapper
44
+ art3dPaintCtx
45
+ artAttrCtx
46
+ artAttrPaintVertexCtx
47
+ artAttrSkinPaintCtx
48
+ artAttrTool
49
+ artBuildPaintMenu
50
+ artFluidAttrCtx
51
+ artPuttyCtx
52
+ artSelectCtx
53
+ artSetPaintCtx
54
+ artUserPaintCtx
55
+ assembly
56
+ assignCommand
57
+ assignInputDevice
58
+ assignNSolver
59
+ assignViewportFactories
60
+ attachCurve
61
+ attachDeviceAttr
62
+ attachSurface
63
+ attrColorSliderGrp
64
+ attrCompatibility
65
+ attrControlGrp
66
+ attrEnumOptionMenu
67
+ attrEnumOptionMenuGrp
68
+ attrFieldGrp
69
+ attrFieldSliderGrp
70
+ attributeExists
71
+ attributeInfo
72
+ attributeMenu
73
+ attributeName
74
+ attributeQuery
75
+ attrNavigationControlGrp
76
+ attrPresetEditWin
77
+ audioTrack
78
+ autoKeyframe
79
+ autoPlace
80
+ autoSave
81
+ bakeClip
82
+ bakeFluidShading
83
+ bakePartialHistory
84
+ bakeResults
85
+ bakeSimulation
86
+ basename
87
+ basenameEx
88
+ baseTemplate
89
+ baseView
90
+ batchRender
91
+ bessel
92
+ bevel
93
+ bevelPlus
94
+ bezierAnchorPreset
95
+ bezierAnchorState
96
+ bezierCurveToNurbs
97
+ bezierInfo
98
+ bindSkin
99
+ binMembership
100
+ blend2
101
+ blendShape
102
+ blendShapeEditor
103
+ blendShapePanel
104
+ blendTwoAttr
105
+ blindDataType
106
+ boneLattice
107
+ boundary
108
+ boxDollyCtx
109
+ boxZoomCtx
110
+ bufferCurve
111
+ buildBookmarkMenu
112
+ buildKeyframeMenu
113
+ button
114
+ buttonManip
115
+ cacheFile
116
+ cacheFileCombine
117
+ cacheFileMerge
118
+ cacheFileTrack
119
+ callbacks
120
+ callPython
121
+ camera
122
+ cameraSet
123
+ cameraView
124
+ canCreateManip
125
+ canvas
126
+ capitalizeString
127
+ CBG
128
+ ceil
129
+ changeSubdivComponentDisplayLevel
130
+ changeSubdivRegion
131
+ channelBox
132
+ character
133
+ characterize
134
+ characterMap
135
+ chdir
136
+ checkBox
137
+ checkBoxGrp
138
+ checkDefaultRenderGlobals
139
+ choice
140
+ circle
141
+ circularFillet
142
+ clamp
143
+ clear
144
+ clearCache
145
+ clearParticleStartState
146
+ clip
147
+ clipEditor
148
+ clipEditorCurrentTimeCtx
149
+ clipMatching
150
+ clipSchedule
151
+ clipSchedulerOutliner
152
+ clipTrimBefore
153
+ closeCurve
154
+ closeSurface
155
+ cluster
156
+ cmdFileOutput
157
+ cmdScrollFieldExecuter
158
+ cmdScrollFieldReporter
159
+ cmdShell
160
+ coarsenSubdivSelectionList
161
+ collision
162
+ color
163
+ colorAtPoint
164
+ colorEditor
165
+ colorIndex
166
+ colorIndexSliderGrp
167
+ colorManagementCatalog
168
+ colorManagementPrefs
169
+ colorSliderButtonGrp
170
+ colorSliderGrp
171
+ columnLayout
172
+ commandEcho
173
+ commandLine
174
+ commandLogging
175
+ commandPort
176
+ compactHairSystem
177
+ componentBox
178
+ componentEditor
179
+ computePolysetVolume
180
+ condition
181
+ cone
182
+ confirmDialog
183
+ connectAttr
184
+ connectControl
185
+ connectDynamic
186
+ connectionInfo
187
+ connectJoint
188
+ constrain
189
+ constrainValue
190
+ constructionHistory
191
+ container
192
+ containerAssignMaterial
193
+ containerAssignTemplate
194
+ containerAutobind
195
+ containerAutopublishRoot
196
+ containerBind
197
+ containerCreateBindingSet
198
+ containerDefaultBindingSet
199
+ containerProxy
200
+ containerPublish
201
+ containerRemoveBindingSet
202
+ containerRmbMenu
203
+ containerTemplate
204
+ containerView
205
+ containsMultibyte
206
+ contextInfo
207
+ control
208
+ convertIffToPsd
209
+ convertLightmap
210
+ convertSolidTx
211
+ convertTessellation
212
+ convertUnit
213
+ copyArray
214
+ copyAttr
215
+ copyDeformerWeights
216
+ copyFlexor
217
+ copyKey
218
+ copySkinWeights
219
+ cos
220
+ createAttrPatterns
221
+ createCurveField
222
+ createDisplayLayer
223
+ createEditor
224
+ createHairCurveNode
225
+ createLayeredPsdFile
226
+ createMotionField
227
+ createNConstraint
228
+ createNewShelf
229
+ createNode
230
+ createRenderLayer
231
+ createSubdivRegion
232
+ cross
233
+ crossProduct
234
+ ctxAbort
235
+ ctxCompletion
236
+ ctxEditMode
237
+ ctxTraverse
238
+ currentCtx
239
+ currentTime
240
+ currentTimeCtx
241
+ currentUnit
242
+ curve
243
+ curveAddPtCtx
244
+ curveCVCtx
245
+ curveEditorCtx
246
+ curveEPCtx
247
+ curveIntersect
248
+ curveMoveEPCtx
249
+ curveOnSurface
250
+ curveRGBColor
251
+ curveSketchCtx
252
+ cutKey
253
+ cycleCheck
254
+ cylinder
255
+ dagObjectCompare
256
+ dagPose
257
+ dataStructure
258
+ date
259
+ dbcount
260
+ dbmessage
261
+ dbpeek
262
+ defaultLightListCheckBox
263
+ defaultNavigation
264
+ defineDataServer
265
+ defineVirtualDevice
266
+ deformer
267
+ deformerWeights
268
+ deg_to_rad
269
+ delete
270
+ deleteAllContainers
271
+ deleteAttr
272
+ deleteAttrPattern
273
+ deleteExtension
274
+ deleteShadingGroupsAndMaterials
275
+ deleteShelfTab
276
+ deleteUI
277
+ deleteUnusedBrushes
278
+ delrandstr
279
+ destroyLayout
280
+ detachCurve
281
+ detachDeviceAttr
282
+ detachSurface
283
+ deviceEditor
284
+ deviceManager
285
+ devicePanel
286
+ dgdirty
287
+ dgeval
288
+ dgInfo
289
+ dgmodified
290
+ dgtimer
291
+ dimWhen
292
+ directionalLight
293
+ directKeyCtx
294
+ dirmap
295
+ dirname
296
+ disable
297
+ disableIncorrectNameWarning
298
+ disconnectAttr
299
+ disconnectJoint
300
+ diskCache
301
+ displacementToPoly
302
+ displayAffected
303
+ displayColor
304
+ displayCull
305
+ displayLevelOfDetail
306
+ displayNClothMesh
307
+ displayPref
308
+ displayRGBColor
309
+ displaySmoothness
310
+ displayStats
311
+ displayString
312
+ displayStyle
313
+ displaySurface
314
+ distanceDimContext
315
+ distanceDimension
316
+ doBlur
317
+ dockControl
318
+ dolly
319
+ dollyCtx
320
+ dopeSheetEditor
321
+ doPublishNode
322
+ dot
323
+ dotProduct
324
+ doubleProfileBirailSurface
325
+ drag
326
+ dragAttrContext
327
+ draggerContext
328
+ dropoffLocator
329
+ duplicate
330
+ duplicateCurve
331
+ duplicateSurface
332
+ dynamicConstraintMembership
333
+ dynamicLoad
334
+ dynCache
335
+ dynConnectToTime
336
+ dynControl
337
+ dynExport
338
+ dynExpression
339
+ dynGlobals
340
+ dynPaintEditor
341
+ dynParticleCtx
342
+ dynPref
343
+ editAttrLimits
344
+ editDisplayLayerGlobals
345
+ editDisplayLayerMembers
346
+ editMetadata
347
+ editor
348
+ editorTemplate
349
+ editRenderLayerAdjustment
350
+ editRenderLayerGlobals
351
+ editRenderLayerMembers
352
+ effector
353
+ emit
354
+ emitter
355
+ enableDevice
356
+ encodeString
357
+ endString
358
+ endsWith
359
+ env
360
+ equivalent
361
+ equivalentTol
362
+ erf
363
+ error
364
+ eval
365
+ evalDeferred
366
+ evalEcho
367
+ evalNoSelectNotify
368
+ event
369
+ exactWorldBoundingBox
370
+ exclusiveLightCheckBox
371
+ exec
372
+ executeForEachObject
373
+ exists
374
+ exp
375
+ exportEdits
376
+ expression
377
+ expressionEditorListen
378
+ extendCurve
379
+ extendSurface
380
+ extrude
381
+ fcheck
382
+ fclose
383
+ feof
384
+ fflush
385
+ fgetline
386
+ fgetword
387
+ file
388
+ fileBrowserDialog
389
+ fileDialog
390
+ fileDialog2
391
+ fileExtension
392
+ fileInfo
393
+ filePathEditor
394
+ filetest
395
+ filletCurve
396
+ filter
397
+ filterCurve
398
+ filterExpand
399
+ filterStudioImport
400
+ findAllIntersections
401
+ findAnimCurves
402
+ findKeyframe
403
+ findMenuItem
404
+ findRelatedDeformer
405
+ findRelatedSkinCluster
406
+ findType
407
+ firstParentOf
408
+ fitBspline
409
+ flexor
410
+ floatArrayContains
411
+ floatArrayCount
412
+ floatArrayFind
413
+ floatArrayInsertAtIndex
414
+ floatArrayRemove
415
+ floatArrayRemoveAtIndex
416
+ floatArrayToString
417
+ floatEq
418
+ floatField
419
+ floatFieldGrp
420
+ floatScrollBar
421
+ floatSlider
422
+ floatSlider2
423
+ floatSliderButtonGrp
424
+ floatSliderGrp
425
+ floor
426
+ flow
427
+ flowLayout
428
+ fluidCacheInfo
429
+ fluidEmitter
430
+ fluidVoxelInfo
431
+ flushUndo
432
+ fmod
433
+ fontDialog
434
+ fopen
435
+ format
436
+ formLayout
437
+ formValidObjectName
438
+ fprint
439
+ frameBufferName
440
+ frameLayout
441
+ fread
442
+ freadAllLines
443
+ freadAllText
444
+ freeFormFillet
445
+ frewind
446
+ fromNativePath
447
+ fwrite
448
+ fwriteAllLines
449
+ fwriteAllText
450
+ gamma
451
+ gauss
452
+ geomBind
453
+ geometryConstraint
454
+ geomToBBox
455
+ getAllChains
456
+ getApplicationVersionAsFloat
457
+ getAttr
458
+ getChain
459
+ getClassification
460
+ getCollisionActiveObjects
461
+ getCollisionObjects
462
+ getCurrentContainer
463
+ getDefaultBrush
464
+ getenv
465
+ getFileList
466
+ getFluidAttr
467
+ getInputDeviceRange
468
+ getLastError
469
+ getMayaPanelTypes
470
+ getMetadata
471
+ getModifiers
472
+ getModulePath
473
+ getNextFreeMultiIndex
474
+ getNextFreeMultiIndexForSource
475
+ getPanel
476
+ getParticleAttr
477
+ getpid
478
+ getPluginResource
479
+ getProcArguments
480
+ getRenderDependencies
481
+ getRenderTasks
482
+ getSelectedNObjs
483
+ globalStitch
484
+ glRender
485
+ glRenderEditor
486
+ gmatch
487
+ goal
488
+ gotoBindPose
489
+ grabColor
490
+ gradientControl
491
+ gradientControlNoAttr
492
+ graphDollyCtx
493
+ graphSelectContext
494
+ graphTrackCtx
495
+ gravity
496
+ greasePencilCtx
497
+ grid
498
+ gridLayout
499
+ group
500
+ groupObjectsByName
501
+ hardenPointCurve
502
+ hardware
503
+ hardwareRenderPanel
504
+ hasMetadata
505
+ headsUpDisplay
506
+ headsUpMessage
507
+ help
508
+ helpLine
509
+ hermite
510
+ HfAddAttractorToAS
511
+ HfAssignAS
512
+ HfBuildEqualMap
513
+ HfBuildFurFiles
514
+ HfBuildFurImages
515
+ HfCancelAFR
516
+ HfConnectASToHF
517
+ HfCreateAttractor
518
+ HfDeleteAS
519
+ HfEditAS
520
+ HfPerformCreateAS
521
+ HfRemoveAttractorFromAS
522
+ HfSelectAttached
523
+ HfSelectAttractors
524
+ HfUnassignAS
525
+ hide
526
+ hikGlobals
527
+ hilite
528
+ hitTest
529
+ hotBox
530
+ hotkey
531
+ hotkeyCheck
532
+ hsv_to_rgb
533
+ hudButton
534
+ hudSlider
535
+ hudSliderButton
536
+ hwReflectionMap
537
+ hwRender
538
+ hwRenderLoad
539
+ hyperGraph
540
+ hyperPanel
541
+ hyperShade
542
+ hypot
543
+ iconTextButton
544
+ iconTextCheckBox
545
+ iconTextRadioButton
546
+ iconTextRadioCollection
547
+ iconTextScrollList
548
+ iconTextStaticLabel
549
+ ikfkDisplayMethod
550
+ ikHandle
551
+ ikHandleCtx
552
+ ikHandleDisplayScale
553
+ ikSolver
554
+ ikSplineHandleCtx
555
+ ikSystem
556
+ ikSystemInfo
557
+ illustratorCurves
558
+ image
559
+ imagePlane
560
+ imfPlugins
561
+ incrementAndSaveScene
562
+ inheritTransform
563
+ insertJoint
564
+ insertJointCtx
565
+ insertKeyCtx
566
+ insertKnotCurve
567
+ insertKnotSurface
568
+ instance
569
+ instanceable
570
+ instancer
571
+ intArrayContains
572
+ intArrayCount
573
+ intArrayFind
574
+ intArrayInsertAtIndex
575
+ intArrayRemove
576
+ intArrayRemoveAtIndex
577
+ intArrayToString
578
+ internalVar
579
+ intersect
580
+ interToUI
581
+ intField
582
+ intFieldGrp
583
+ intScrollBar
584
+ intSlider
585
+ intSliderGrp
586
+ inViewMessage
587
+ iprEngine
588
+ isAnimCurve
589
+ isConnected
590
+ isDirty
591
+ isolateSelect
592
+ isParentOf
593
+ isSameObject
594
+ isTrue
595
+ isValidObjectName
596
+ isValidString
597
+ isValidUiName
598
+ itemFilter
599
+ itemFilterAttr
600
+ itemFilterType
601
+ joint
602
+ jointCluster
603
+ jointCtx
604
+ jointDisplayScale
605
+ jointLattice
606
+ keyframe
607
+ keyframeOutliner
608
+ keyframeRegionCurrentTimeCtx
609
+ keyframeRegionDirectKeyCtx
610
+ keyframeRegionDollyCtx
611
+ keyframeRegionInsertKeyCtx
612
+ keyframeRegionMoveKeyCtx
613
+ keyframeRegionScaleKeyCtx
614
+ keyframeRegionSelectKeyCtx
615
+ keyframeRegionSetKeyCtx
616
+ keyframeRegionTrackCtx
617
+ keyframeStats
618
+ keyingGroup
619
+ keyTangent
620
+ lassoContext
621
+ lattice
622
+ latticeDeformKeyCtx
623
+ launch
624
+ launchImageEditor
625
+ layerButton
626
+ layeredShaderPort
627
+ layeredTexturePort
628
+ layout
629
+ layoutDialog
630
+ license
631
+ lightlink
632
+ lightList
633
+ linearPrecision
634
+ lineIntersection
635
+ linstep
636
+ listAnimatable
637
+ listAttr
638
+ listAttrPatterns
639
+ listCameras
640
+ listConnections
641
+ listDeviceAttachments
642
+ listHistory
643
+ listInputDeviceAxes
644
+ listInputDeviceButtons
645
+ listInputDevices
646
+ listMenuAnnotation
647
+ listNodesWithIncorrectNames
648
+ listNodeTypes
649
+ listPanelCategories
650
+ listRelatives
651
+ listSets
652
+ listTransforms
653
+ listUnselected
654
+ loadFluid
655
+ loadModule
656
+ loadNewShelf
657
+ loadPlugin
658
+ loadPluginLanguageResources
659
+ loadPrefObjects
660
+ loadUI
661
+ localizedPanelLabel
662
+ localizedUIComponentLabel
663
+ lockContainer
664
+ lockNode
665
+ loft
666
+ log
667
+ longNameOf
668
+ lookThru
669
+ ls
670
+ lsThroughFilter
671
+ lsType
672
+ lsUI
673
+ mag
674
+ makebot
675
+ makeCurvesDynamic
676
+ makeCurvesDynamicHairs
677
+ makeIdentity
678
+ makeLive
679
+ makePaintable
680
+ makePassiveCollider
681
+ makeRoll
682
+ makeSingleSurface
683
+ makeTubeOn
684
+ manipMoveContext
685
+ manipMoveLimitsCtx
686
+ manipOptions
687
+ manipPivot
688
+ manipRotateContext
689
+ manipRotateLimitsCtx
690
+ manipScaleContext
691
+ manipScaleLimitsCtx
692
+ marker
693
+ match
694
+ max
695
+ maxfloat
696
+ maxint
697
+ Mayatomr
698
+ melInfo
699
+ memory
700
+ menu
701
+ menuBarLayout
702
+ menuEditor
703
+ menuItem
704
+ menuItemToShelf
705
+ menuSet
706
+ menuSetPref
707
+ messageLine
708
+ min
709
+ minfloat
710
+ minimizeApp
711
+ minint
712
+ mirrorJoint
713
+ modelCurrentTimeCtx
714
+ modelEditor
715
+ modelPanel
716
+ moduleInfo
717
+ mouse
718
+ move
719
+ moveCacheToInput
720
+ moveIKtoFK
721
+ moveKeyCtx
722
+ moveVertexAlongDirection
723
+ movieInfo
724
+ movIn
725
+ movOut
726
+ multiProfileBirailSurface
727
+ multiTouch
728
+ mute
729
+ nameCommand
730
+ nameField
731
+ namespace
732
+ namespaceInfo
733
+ nBase
734
+ nClothConvertOutput
735
+ nClothVertexEditor
736
+ newton
737
+ nextOrPreviousFrame
738
+ nodeCast
739
+ nodeEditor
740
+ nodeIconButton
741
+ nodeOutliner
742
+ nodePreset
743
+ nodeTreeLister
744
+ nodeType
745
+ noise
746
+ nonLinear
747
+ normalConstraint
748
+ normalize
749
+ nParticle
750
+ nurbsBoolean
751
+ nurbsCopyUVSet
752
+ nurbsCube
753
+ nurbsCurveToBezier
754
+ nurbsEditUV
755
+ nurbsPlane
756
+ nurbsSelect
757
+ nurbsSquare
758
+ nurbsToPoly
759
+ nurbsToPolygonsPref
760
+ nurbsToSubdiv
761
+ nurbsToSubdivPref
762
+ nurbsUVSet
763
+ nurbsViewDirectionVector
764
+ objectCenter
765
+ objectLayer
766
+ objectType
767
+ objectTypeUI
768
+ objExists
769
+ obsoleteProc
770
+ oceanNurbsPreviewPlane
771
+ offsetCurve
772
+ offsetCurveOnSurface
773
+ offsetSurface
774
+ ogs
775
+ ogsRender
776
+ openGLExtension
777
+ openMayaPref
778
+ optionMenu
779
+ optionMenuGrp
780
+ optionVar
781
+ orbit
782
+ orbitCtx
783
+ orientConstraint
784
+ outlinerEditor
785
+ outlinerPanel
786
+ overrideModifier
787
+ paintEffectsDisplay
788
+ pairBlend
789
+ palettePort
790
+ panel
791
+ paneLayout
792
+ panelConfiguration
793
+ panelHistory
794
+ panZoom
795
+ panZoomCtx
796
+ paramDimContext
797
+ paramDimension
798
+ paramLocator
799
+ parent
800
+ parentConstraint
801
+ particle
802
+ particleExists
803
+ particleFill
804
+ particleInstancer
805
+ particleRenderInfo
806
+ partition
807
+ pasteKey
808
+ pathAnimation
809
+ pause
810
+ pclose
811
+ perCameraVisibility
812
+ percent
813
+ performanceOptions
814
+ pfxstrokes
815
+ pickWalk
816
+ picture
817
+ pixelMove
818
+ planarSrf
819
+ plane
820
+ play
821
+ playbackOptions
822
+ playblast
823
+ plugAttr
824
+ pluginDisplayFilter
825
+ pluginInfo
826
+ pluginResourceUtil
827
+ plugMultiAttrs
828
+ plugNode
829
+ plugNodeStripped
830
+ pointConstraint
831
+ pointCurveConstraint
832
+ pointLight
833
+ pointMatrixMult
834
+ pointOnCurve
835
+ pointOnPolyConstraint
836
+ pointOnSurface
837
+ pointPosition
838
+ poleVectorConstraint
839
+ polyAppend
840
+ polyAppendFacetCtx
841
+ polyAppendVertex
842
+ polyAutoProjection
843
+ polyAverageNormal
844
+ polyAverageVertex
845
+ polyBevel
846
+ polyBlendColor
847
+ polyBlindData
848
+ polyBoolOp
849
+ polyBridgeEdge
850
+ polyCacheMonitor
851
+ polyCBoolOp
852
+ polyCheck
853
+ polyChipOff
854
+ polyClipboard
855
+ polyCloseBorder
856
+ polyCollapseEdge
857
+ polyCollapseFacet
858
+ polyColorBlindData
859
+ polyColorDel
860
+ polyColorMod
861
+ polyColorPerVertex
862
+ polyColorSet
863
+ polyCompare
864
+ polyCone
865
+ polyConnectComponents
866
+ polyCopyUV
867
+ polyCrease
868
+ polyCreaseCtx
869
+ polyCreateFacet
870
+ polyCreateFacetCtx
871
+ polyCube
872
+ polyCut
873
+ polyCutCtx
874
+ polyCylinder
875
+ polyCylindricalProjection
876
+ polyDelEdge
877
+ polyDelFacet
878
+ polyDelVertex
879
+ polyDuplicateAndConnect
880
+ polyDuplicateEdge
881
+ polyEditEdgeFlow
882
+ polyEditUV
883
+ polyEditUVShell
884
+ polyEvaluate
885
+ polyExtrudeEdge
886
+ polyExtrudeFacet
887
+ polyExtrudeVertex
888
+ polyFlipEdge
889
+ polyFlipUV
890
+ polyForceUV
891
+ polyGeoSampler
892
+ polyHelix
893
+ polyHole
894
+ polyInfo
895
+ polyInstallAction
896
+ polyLayoutUV
897
+ polyListComponentConversion
898
+ polyMapCut
899
+ polyMapDel
900
+ polyMapSew
901
+ polyMapSewMove
902
+ polyMergeEdge
903
+ polyMergeEdgeCtx
904
+ polyMergeFacet
905
+ polyMergeFacetCtx
906
+ polyMergeUV
907
+ polyMergeVertex
908
+ polyMirrorFace
909
+ polyMoveEdge
910
+ polyMoveFacet
911
+ polyMoveFacetUV
912
+ polyMoveUV
913
+ polyMoveVertex
914
+ polyMultiLayoutUV
915
+ polyNormal
916
+ polyNormalizeUV
917
+ polyNormalPerVertex
918
+ polyOptions
919
+ polyOptUvs
920
+ polyOutput
921
+ polyPipe
922
+ polyPlanarProjection
923
+ polyPlane
924
+ polyPlatonicSolid
925
+ polyPoke
926
+ polyPrimitive
927
+ polyPrism
928
+ polyProjectCurve
929
+ polyProjection
930
+ polyPyramid
931
+ polyQuad
932
+ polyQueryBlindData
933
+ polyReduce
934
+ polySelect
935
+ polySelectConstraint
936
+ polySelectConstraintMonitor
937
+ polySelectCtx
938
+ polySelectEditCtx
939
+ polySeparate
940
+ polySetToFaceNormal
941
+ polySewEdge
942
+ polyShortestPathCtx
943
+ polySlideEdge
944
+ polySmooth
945
+ polySoftEdge
946
+ polySphere
947
+ polySphericalProjection
948
+ polySplit
949
+ polySplitCtx
950
+ polySplitCtx2
951
+ polySplitEdge
952
+ polySplitRing
953
+ polySplitVertex
954
+ polyStraightenUVBorder
955
+ polySubdivideEdge
956
+ polySubdivideFacet
957
+ polyTorus
958
+ polyToSubdiv
959
+ polyTransfer
960
+ polyTriangulate
961
+ polyUnite
962
+ polyUniteSkinned
963
+ polyUVRectangle
964
+ polyUVSet
965
+ polyWedgeFace
966
+ popen
967
+ popupMenu
968
+ pose
969
+ pow
970
+ preloadRefEd
971
+ prepareRender
972
+ print
973
+ profiler
974
+ profilerTool
975
+ progressBar
976
+ progressWindow
977
+ projectCurve
978
+ projectionContext
979
+ projectionManip
980
+ projectTangent
981
+ promptDialog
982
+ propModCtx
983
+ propMove
984
+ psdChannelOutliner
985
+ psdEditTextureFile
986
+ psdExport
987
+ psdTextureFile
988
+ publishAnchorNodes
989
+ publishContainerConnections
990
+ putenv
991
+ pwd
992
+ python
993
+ querySubdiv
994
+ quit
995
+ rad_to_deg
996
+ radial
997
+ radioButton
998
+ radioButtonGrp
999
+ radioCollection
1000
+ radioMenuItemCollection
1001
+ rampColorPort
1002
+ rand
1003
+ randomizeFollicles
1004
+ randstate
1005
+ rangeControl
1006
+ readTake
1007
+ rebuildCurve
1008
+ rebuildSurface
1009
+ recordAttr
1010
+ recordDevice
1011
+ redo
1012
+ reference
1013
+ referenceEdit
1014
+ referenceQuery
1015
+ refineSubdivSelectionList
1016
+ refresh
1017
+ refreshAE
1018
+ refreshEditorTemplates
1019
+ regionSelectKeyCtx
1020
+ registerPluginResource
1021
+ rehash
1022
+ relationship
1023
+ reloadImage
1024
+ removeJoint
1025
+ removeMultiInstance
1026
+ removePanelCategory
1027
+ rename
1028
+ renameAttr
1029
+ renameSelectionList
1030
+ renameUI
1031
+ render
1032
+ renderer
1033
+ renderGlobalsNode
1034
+ renderInfo
1035
+ renderLayerParent
1036
+ renderLayerPostProcess
1037
+ renderLayerUnparent
1038
+ renderManip
1039
+ renderPartition
1040
+ renderPassRegistry
1041
+ renderQualityNode
1042
+ renderSettings
1043
+ renderThumbnailUpdate
1044
+ renderWindowEditor
1045
+ renderWindowSelectContext
1046
+ reorder
1047
+ reorderContainer
1048
+ reorderDeformers
1049
+ reparentStrokes
1050
+ requires
1051
+ reroot
1052
+ resampleFluid
1053
+ resetAE
1054
+ resetPfxToPolyCamera
1055
+ resetTool
1056
+ resolutionNode
1057
+ resourceManager
1058
+ retarget
1059
+ retimeKeyCtx
1060
+ reverseCurve
1061
+ reverseSurface
1062
+ revolve
1063
+ rgb_to_hsv
1064
+ rigidBody
1065
+ rigidSolver
1066
+ roll
1067
+ rollCtx
1068
+ rootOf
1069
+ rot
1070
+ rotate
1071
+ rotationInterpolation
1072
+ roundConstantRadius
1073
+ rowColumnLayout
1074
+ rowLayout
1075
+ runTimeCommand
1076
+ runup
1077
+ sampleImage
1078
+ saveAllShelves
1079
+ saveAttrPreset
1080
+ saveFluid
1081
+ saveImage
1082
+ saveInitialState
1083
+ saveMenu
1084
+ savePrefObjects
1085
+ savePrefs
1086
+ saveShelf
1087
+ saveToolSettings
1088
+ saveViewportSettings
1089
+ scale
1090
+ scaleBrushBrightness
1091
+ scaleComponents
1092
+ scaleConstraint
1093
+ scaleKey
1094
+ scaleKeyCtx
1095
+ sceneEditor
1096
+ sceneTimeWarp
1097
+ sceneUIReplacement
1098
+ scmh
1099
+ scriptCtx
1100
+ scriptEditorInfo
1101
+ scriptedPanel
1102
+ scriptedPanelType
1103
+ scriptJob
1104
+ scriptNode
1105
+ scriptTable
1106
+ scriptToShelf
1107
+ scrollField
1108
+ scrollLayout
1109
+ sculpt
1110
+ searchPathArray
1111
+ seed
1112
+ select
1113
+ selectContext
1114
+ selectCurveCV
1115
+ selectedNodes
1116
+ selectionConnection
1117
+ selectKey
1118
+ selectKeyCtx
1119
+ selectKeyframeRegionCtx
1120
+ selectMode
1121
+ selectPref
1122
+ selectPriority
1123
+ selectType
1124
+ selLoadSettings
1125
+ separator
1126
+ sequenceManager
1127
+ setAttr
1128
+ setAttrEnumResource
1129
+ setAttrMapping
1130
+ setAttrNiceNameResource
1131
+ setConstraintRestPosition
1132
+ setCustomAttrEnumResource
1133
+ setCustomAttrNiceNameResource
1134
+ setDefaultShadingGroup
1135
+ setDrivenKeyframe
1136
+ setDynamic
1137
+ setEditCtx
1138
+ setFluidAttr
1139
+ setFocus
1140
+ setInfinity
1141
+ setInputDeviceMapping
1142
+ setKeyCtx
1143
+ setKeyframe
1144
+ setKeyframeBlendshapeTargetWts
1145
+ setKeyPath
1146
+ setMenuMode
1147
+ setNClothRestShape
1148
+ setNClothStartFromMesh
1149
+ setNodeNiceNameResource
1150
+ setNodeTypeFlag
1151
+ setParent
1152
+ setParticleAttr
1153
+ setPfxToPolyCamera
1154
+ setPluginResource
1155
+ setProject
1156
+ setRenderPassType
1157
+ sets
1158
+ setStampDensity
1159
+ setStartupMessage
1160
+ setState
1161
+ setToolTo
1162
+ setUITemplate
1163
+ setXformManip
1164
+ shadingConnection
1165
+ shadingGeometryRelCtx
1166
+ shadingLightRelCtx
1167
+ shadingNetworkCompare
1168
+ shadingNode
1169
+ shapeCompare
1170
+ shelfButton
1171
+ shelfLayout
1172
+ shelfTabLayout
1173
+ shortNameOf
1174
+ shot
1175
+ shotRipple
1176
+ shotTrack
1177
+ showHelp
1178
+ showHidden
1179
+ showManipCtx
1180
+ showSelectionInTitle
1181
+ showShadingGroupAttrEditor
1182
+ showWindow
1183
+ sign
1184
+ simplify
1185
+ sin
1186
+ singleProfileBirailSurface
1187
+ size
1188
+ sizeBytes
1189
+ skinBindCtx
1190
+ skinCluster
1191
+ skinPercent
1192
+ smoothCurve
1193
+ smoothstep
1194
+ smoothTangentSurface
1195
+ snap2to2
1196
+ snapKey
1197
+ snapMode
1198
+ snapshot
1199
+ snapshotBeadCtx
1200
+ snapshotModifyKeyCtx
1201
+ snapTogetherCtx
1202
+ soft
1203
+ softMod
1204
+ softModCtx
1205
+ softSelect
1206
+ sort
1207
+ sound
1208
+ soundControl
1209
+ spaceLocator
1210
+ sphere
1211
+ sphrand
1212
+ spotLight
1213
+ spotLightPreviewPort
1214
+ spreadSheetEditor
1215
+ spring
1216
+ sqrt
1217
+ squareSurface
1218
+ srtContext
1219
+ stackTrace
1220
+ startString
1221
+ startsWith
1222
+ stereoCameraView
1223
+ stereoRigManager
1224
+ stitchAndExplodeShell
1225
+ stitchSurface
1226
+ stitchSurfacePoints
1227
+ strcmp
1228
+ stringAddPrefix
1229
+ stringArrayAddPrefix
1230
+ stringArrayCatenate
1231
+ stringArrayContains
1232
+ stringArrayCount
1233
+ stringArrayFind
1234
+ stringArrayInsertAtIndex
1235
+ stringArrayIntersector
1236
+ stringArrayRemove
1237
+ stringArrayRemoveAtIndex
1238
+ stringArrayRemoveDuplicates
1239
+ stringArrayRemoveExact
1240
+ stringArrayRemovePrefix
1241
+ stringArrayToString
1242
+ stringRemovePrefix
1243
+ stringToStringArray
1244
+ strip
1245
+ stripPrefixFromName
1246
+ stroke
1247
+ subdAutoProjection
1248
+ subdCleanTopology
1249
+ subdCollapse
1250
+ subdDuplicateAndConnect
1251
+ subdEditUV
1252
+ subdiv
1253
+ subdivCrease
1254
+ subdivDisplaySmoothness
1255
+ subdLayoutUV
1256
+ subdListComponentConversion
1257
+ subdMapCut
1258
+ subdMapSewMove
1259
+ subdMatchTopology
1260
+ subdMirror
1261
+ subdPlanarProjection
1262
+ subdToBlind
1263
+ subdToPoly
1264
+ subdTransferUVsToCache
1265
+ substitute
1266
+ substituteAllString
1267
+ substituteGeometry
1268
+ substring
1269
+ suitePrefs
1270
+ surface
1271
+ surfaceSampler
1272
+ surfaceShaderList
1273
+ swatchDisplayPort
1274
+ swatchRefresh
1275
+ switchTable
1276
+ symbolButton
1277
+ symbolCheckBox
1278
+ symmetricModelling
1279
+ sysFile
1280
+ system
1281
+ tabLayout
1282
+ tan
1283
+ tangentConstraint
1284
+ targetWeldCtx
1285
+ texLatticeDeformContext
1286
+ texManipContext
1287
+ texMoveContext
1288
+ texMoveUVShellContext
1289
+ texRotateContext
1290
+ texScaleContext
1291
+ texSelectContext
1292
+ texSelectShortestPathCtx
1293
+ texSmudgeUVContext
1294
+ text
1295
+ textCurves
1296
+ textField
1297
+ textFieldButtonGrp
1298
+ textFieldGrp
1299
+ textManip
1300
+ textScrollList
1301
+ textToShelf
1302
+ textureDeformer
1303
+ textureDisplacePlane
1304
+ textureHairColor
1305
+ texturePlacementContext
1306
+ textureWindow
1307
+ texTweakUVContext
1308
+ texWinToolCtx
1309
+ threadCount
1310
+ threePointArcCtx
1311
+ timeCode
1312
+ timeControl
1313
+ timePort
1314
+ timer
1315
+ timerX
1316
+ timeWarp
1317
+ toggle
1318
+ toggleAxis
1319
+ toggleWindowVisibility
1320
+ tokenize
1321
+ tokenizeList
1322
+ tolerance
1323
+ tolower
1324
+ toNativePath
1325
+ toolBar
1326
+ toolButton
1327
+ toolCollection
1328
+ toolDropped
1329
+ toolHasOptions
1330
+ toolPropertyWindow
1331
+ torus
1332
+ toupper
1333
+ trace
1334
+ track
1335
+ trackCtx
1336
+ transferAttributes
1337
+ transferShadingSets
1338
+ transformCompare
1339
+ transformLimits
1340
+ translator
1341
+ treeLister
1342
+ treeView
1343
+ trim
1344
+ trunc
1345
+ truncateFluidCache
1346
+ truncateHairCache
1347
+ tumble
1348
+ tumbleCtx
1349
+ turbulence
1350
+ twoPointArcCtx
1351
+ ubercam
1352
+ uiRes
1353
+ uiTemplate
1354
+ unassignInputDevice
1355
+ undo
1356
+ undoInfo
1357
+ unfold
1358
+ ungroup
1359
+ uniform
1360
+ unit
1361
+ unloadPlugin
1362
+ untangleUV
1363
+ untitledFileName
1364
+ untrim
1365
+ upAxis
1366
+ updateAE
1367
+ userCtx
1368
+ uvLink
1369
+ uvSnapshot
1370
+ validateShelfName
1371
+ vectorize
1372
+ view2dToolCtx
1373
+ viewCamera
1374
+ viewClipPlane
1375
+ viewFit
1376
+ viewHeadOn
1377
+ viewLookAt
1378
+ viewManip
1379
+ viewPlace
1380
+ viewSet
1381
+ visor
1382
+ volumeAxis
1383
+ volumeBind
1384
+ vortex
1385
+ waitCursor
1386
+ walkCtx
1387
+ warning
1388
+ webBrowser
1389
+ webBrowserPrefs
1390
+ webView
1391
+ whatIs
1392
+ whatsNewHighlight
1393
+ window
1394
+ windowPref
1395
+ wire
1396
+ wireContext
1397
+ workspace
1398
+ wrinkle
1399
+ wrinkleContext
1400
+ writeTake
1401
+ xbmLangPathList
1402
+ xform
1403
+ xpmPicker
langs/mel/statement.txt ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ alias
2
+ break
3
+ case
4
+ catch
5
+ catchQuiet
6
+ continue
7
+ default
8
+ do
9
+ else
10
+ float
11
+ for
12
+ frame
13
+ global
14
+ if
15
+ in
16
+ int
17
+ matrix
18
+ on
19
+ proc
20
+ return
21
+ source
22
+ string
23
+ switch
24
+ time
25
+ vector
26
+ while
langs/mel/type.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ int
2
+ float
3
+ string
4
+ vector
5
+ array
6
+ matrix
langs/php/php.txt CHANGED
@@ -8,7 +8,7 @@
8
  COMMENT (?default)|(\#.*?$)
9
  STRING (?default)|(<<<EOT.*?^EOT)
10
 
11
- TAG <\?php\b|<\?|\?>
12
  CONSTRUCT:KEYWORD \b(?alt:construct.txt)\b
13
  STATEMENT (?default)
14
  RESERVED (?default)
8
  COMMENT (?default)|(\#.*?$)
9
  STRING (?default)|(<<<EOT.*?^EOT)
10
 
11
+ TAG <\?php\b|<\?=|<\?|\?>
12
  CONSTRUCT:KEYWORD \b(?alt:construct.txt)\b
13
  STATEMENT (?default)
14
  RESERVED (?default)
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=AW99E
4
  License: GPLv2 or later
5
  Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter, bbpress
6
  Requires at least: 3.0
7
- Tested up to: 4.1.0
8
  Stable tag: trunk
9
 
10
  Syntax Highlighter supporting multiple languages, themes, fonts, highlighting from a URL, or post text.
@@ -16,8 +16,8 @@ It can highlight from a URL, or Wordpress post text. Crayon makes it easy to man
16
  custom language elements with regular expressions.
17
  It also supports some neat features like:
18
 
19
- * Integrated <a href="http://aramk.com/blog/2012/12/27/crayon-theme-editor/‎" target="_blank">Theme Editor!</a>
20
- * <a href="http://aramk.com/blog/2012/03/25/crayon-tag-editor/‎" target="_blank">Tag Editor</a> in both Visual & HTML editors
21
  * Toggled plain code
22
  * Toggled line numbers
23
  * Copy/paste code
@@ -28,14 +28,14 @@ It also supports some neat features like:
28
  * bbPress 2 support
29
  * <a href="http://aramk.com/blog/2012/09/26/converting-legacy-tags-to-pre/" target="_blank">Converting legacy code in blog posts/comments to &lt;pre&gt;</a>
30
  * Remote request caching
31
- * <a href="http://aramk.com/blog/2011/12/25/mixed-language-highlighting-in-crayon" target="_blank">Mixed Language Highlighting</a> in a single Crayon
32
  * <a href="http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/" target="_blank">Mini Tags</a> like [php][/php]
33
- * <a href="http://aramk.com/blog/2012/03/07/inline-crayons" target="_blank">Inline Tags</a> floating in sentences
34
  * Crayons in comments
35
  * &#96;Backquotes&#96; become &lt;code&gt;
36
  * &lt;pre&gt; tag support, option to use <code>setting-value</code> in the class attribute
37
  * Valid HTML 5 markup
38
- * <a href="http://aramk.com/blog/2012/03/25/crayon-tag-editor/‎" target="_blank">Visual & HTML editor compatible</a>
39
  * Mobile/touchscreen device detection
40
  * Mouse event interaction (showing plain code on double click, toolbar on mouseover)
41
  * Tab sizes
@@ -44,7 +44,7 @@ It also supports some neat features like:
44
  * Retina buttons
45
  * Striped lines
46
  * Line marking (for important lines)
47
- * <a href="http://aramk.com/blog/2012/09/02/line-ranges-in-crayon" target="_blank">Line ranges (showing only parts of the code)</a>
48
  * Starting line number (default is 1)
49
  * File extension detection
50
  * Live Preview in settings
@@ -91,12 +91,14 @@ See the <a href="http://aramk.com/blog/2011/09/23/crayon-language-file-specifica
91
  * Delphi Web Script (thanks to <a href="http://www.smartmobilestudio.com" target="_blank">smartmobilestudio</a>)
92
  * Diff (thanks to <a href="http://omniavin.co/post/262" target="_blank">omniavin</a>)
93
  * Erlang (thanks to <a href="http://netroid.de/" target="_blank">Daniel</a>)
 
94
  * Go
95
  * Haskell
96
  * HTML (XML/XHTML)
97
  * INI
98
  * Lisp
99
  * Lua
 
100
  * Microsoft Registry (thanks to <a href="http://techexplored.com/2012/03/21/crayon-syntax-highlighter-reg-support/" target="_blank">techexplored.com</a>)
101
  * MIVA Script
102
  * Monkey (thanks to <a href="https://github.com/devolonter" target="_blank">Devolonter</a>)
@@ -134,14 +136,15 @@ See the <a href="http://aramk.com/blog/2011/09/23/crayon-language-file-specifica
134
  * Chinese Traditional (thanks to <a href="http://www.arefly.com/" target="_blank">Arefly</a>)
135
  * Dutch (thanks to <a href="https://twitter.com/RobinRoelofsen" target="_blank">Robin Roelofsen</a> & <a href="https://twitter.com/#!/chilionsnoek" target="_blank">Chilion Snoek</a>)
136
  * Finnish (thanks to <a href="https://github.com/vahalan" target="_blank">vahalan</a>)
137
- * French (thanks to <a href="http://tech.dupeu.pl" target="_blank">Victor Felder</a>)
138
  * German (thanks to <a href="http://www.technologyblog.de/" target="_blank">Stephan Knau&szlig;</a>)
139
  * Italian (thanks to <a href="http://www.federicobellucci.net/" target="_blank">Federico Bellucci</a>)
140
  * Japanese (thanks to <a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>)
141
  * Korean (thanks to <a href="https://github.com/dokenzy" target="_blank">dokenzy</a>)
142
  * Lithuanian (thanks to Vincent G)
 
143
  * Persian (thanks to MahdiY)
144
- * Polish (thanks to <a href="https://github.com/toszcze" target="_blank">Bartosz Romanowski</a>)
145
  * Portuguese (thanks to <a href="http://www.adonai.eti.br" target="_blank">Adonai S. Canez</a>)
146
  * Russian (thanks to <a href="http://simplelib.com" target="_blank">Minimus</a> & <a href="http://atlocal.net/" target="_blank">Di_Skyer</a>)
147
  * Slovak (thanks to Branco, <a href="https://twitter.com/#!/webhostgeeks" target="_blank">webhostgeeks/</a>)
@@ -156,15 +159,15 @@ See the <a href="http://aramk.com/blog/2011/09/23/crayon-language-file-specifica
156
 
157
  These are helpful for discovering new features.
158
 
159
- * <a href="http://aramk.com/blog/2012/09/26/internal-post-management-crayon/‎" target="_blank">Internal Post Management in Crayon</a>
160
  * <a href="http://aramk.com/blog/2012/09/26/converting-legacy-tags-to-pre/" target="_blank">Converting Legacy Tags to &lt;pre&gt;</a>
161
  * <a href="http://aramk.com/blog/2012/09/08/crayon-with-bbpress/" target="_blank">Crayon with bbPress</a>
162
- * <a href="http://aramk.com/blog/2012/09/02/line-ranges-in-crayon" target="_blank">Line Ranges in Crayon</a>
163
- * <a href="http://aramk.com/blog/2012/03/25/crayon-tag-editor/‎" target="_blank">Crayon Tag Editor</a>
164
- * <a href="http://aramk.com/blog/2011/12/25/mixed-language-highlighting-in-crayon" target="_blank">Mixed Language Highlighting in Crayon</a>
165
  * <a href="http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/" target="_blank">Mini Tags And Plain Tags In Crayon</a>
166
- * <a href="http://aramk.com/blog/2012/03/07/inline-crayons" target="_blank">Inline Tags</a>
167
- * <a href="http://aramk.com/blog/2012/01/07/enqueuing-themes-and-fonts-in-crayon" target="_blank">Enqueuing Themes and Fonts in Crayon</a>
168
 
169
  **The Press**
170
 
@@ -198,9 +201,20 @@ A handful of articles from others written about Crayon, thanks guys!
198
 
199
  Thanks to all those who donate to the project:
200
 
 
 
 
 
 
 
 
 
 
 
 
201
  * Nilesh Govindrajan, (http://nileshgr.com/), India
202
  * ZengChun Yang, China
203
- * Alan Kaplan, (http://www.akaplan.com/blog), US
204
  * Christopher Yarbrough, (http://chrisyarbrough.com/), Germany
205
  * Johann Weiher, (http://codequartett.de/), Germany
206
  * Samuel Deering, Australia
@@ -298,6 +312,32 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
298
 
299
  == Changelog ==
300
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  = 2.7.0 =
302
  * ADDED:
303
  * Onderka15 theme.
@@ -726,7 +766,7 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
726
  * Integrated Tag Editor with Fancybox, switched from the discontinued ThickBox, a fair amount of changes took place.
727
  * Crayon should now appear pretty much anywhere TinyMCE does, and this can be tweaked to add more options later.
728
  * Added setting to disable Tag Editor on front end, and/or disable its settings.
729
- * Added the ability to specify <a href="http://aramk.com/blog/2012/09/02/line-ranges-in-crayon" target="_blank">line ranges</a>
730
  * Added Microsoft Registry language thanks to <a href="http://techexplored.com/2012/03/21/crayon-syntax-highlighter-reg-support/" target="_blank">techexplored.com</a>
731
  * Added MIVA Script language
732
  * Added Transact-SQL language
@@ -1018,7 +1058,7 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
1018
  * Renamed Japanese GNU language code from ja_JP to ja.
1019
 
1020
  = 1.7.0 =
1021
- * Added the ability to highlight multiple languages in a single Crayon! http://aramk.com/blog/2011/12/25/mixed-language-highlighting-in-crayon
1022
  * A bunch of language improvements, a few CSS improvements, etc.
1023
 
1024
  = 1.6.6 =
4
  License: GPLv2 or later
5
  Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter, bbpress
6
  Requires at least: 3.0
7
+ Tested up to: 4.2.0
8
  Stable tag: trunk
9
 
10
  Syntax Highlighter supporting multiple languages, themes, fonts, highlighting from a URL, or post text.
16
  custom language elements with regular expressions.
17
  It also supports some neat features like:
18
 
19
+ * Integrated <a href="http://aramk.com/blog/2012/12/27/crayon-theme-editor/" target="_blank">Theme Editor!</a>
20
+ * <a href="http://aramk.com/blog/2012/03/25/crayon-tag-editor/" target="_blank">Tag Editor</a> in both Visual & HTML editors
21
  * Toggled plain code
22
  * Toggled line numbers
23
  * Copy/paste code
28
  * bbPress 2 support
29
  * <a href="http://aramk.com/blog/2012/09/26/converting-legacy-tags-to-pre/" target="_blank">Converting legacy code in blog posts/comments to &lt;pre&gt;</a>
30
  * Remote request caching
31
+ * <a href="http://aramk.com/blog/2011/12/25/mixed-language-highlighting-in-crayon" target="_blank">Mixed Language Highlighting</a> in a single Crayon
32
  * <a href="http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/" target="_blank">Mini Tags</a> like [php][/php]
33
+ * <a href="http://aramk.com/blog/2012/03/07/inline-crayons/" target="_blank">Inline Tags</a> floating in sentences
34
  * Crayons in comments
35
  * &#96;Backquotes&#96; become &lt;code&gt;
36
  * &lt;pre&gt; tag support, option to use <code>setting-value</code> in the class attribute
37
  * Valid HTML 5 markup
38
+ * <a href="http://aramk.com/blog/2012/03/25/crayon-tag-editor/" target="_blank">Visual & HTML editor compatible</a>
39
  * Mobile/touchscreen device detection
40
  * Mouse event interaction (showing plain code on double click, toolbar on mouseover)
41
  * Tab sizes
44
  * Retina buttons
45
  * Striped lines
46
  * Line marking (for important lines)
47
+ * <a href="http://aramk.com/blog/2012/09/02/line-ranges-in-crayon/" target="_blank">Line ranges (showing only parts of the code)</a>
48
  * Starting line number (default is 1)
49
  * File extension detection
50
  * Live Preview in settings
91
  * Delphi Web Script (thanks to <a href="http://www.smartmobilestudio.com" target="_blank">smartmobilestudio</a>)
92
  * Diff (thanks to <a href="http://omniavin.co/post/262" target="_blank">omniavin</a>)
93
  * Erlang (thanks to <a href="http://netroid.de/" target="_blank">Daniel</a>)
94
+ * Fabric Engine KL (thanks to <a href="https://github.com/AndrewHazelden" target="_blank">Andrew Hazelden</a>)
95
  * Go
96
  * Haskell
97
  * HTML (XML/XHTML)
98
  * INI
99
  * Lisp
100
  * Lua
101
+ * Maya MEL (thanks to <a href="https://github.com/AndrewHazelden" target="_blank">Andrew Hazelden</a>)
102
  * Microsoft Registry (thanks to <a href="http://techexplored.com/2012/03/21/crayon-syntax-highlighter-reg-support/" target="_blank">techexplored.com</a>)
103
  * MIVA Script
104
  * Monkey (thanks to <a href="https://github.com/devolonter" target="_blank">Devolonter</a>)
136
  * Chinese Traditional (thanks to <a href="http://www.arefly.com/" target="_blank">Arefly</a>)
137
  * Dutch (thanks to <a href="https://twitter.com/RobinRoelofsen" target="_blank">Robin Roelofsen</a> & <a href="https://twitter.com/#!/chilionsnoek" target="_blank">Chilion Snoek</a>)
138
  * Finnish (thanks to <a href="https://github.com/vahalan" target="_blank">vahalan</a>)
139
+ * French (thanks to <a href="https://vhf.github.io" target="_blank">Victor Felder</a>)
140
  * German (thanks to <a href="http://www.technologyblog.de/" target="_blank">Stephan Knau&szlig;</a>)
141
  * Italian (thanks to <a href="http://www.federicobellucci.net/" target="_blank">Federico Bellucci</a>)
142
  * Japanese (thanks to <a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>)
143
  * Korean (thanks to <a href="https://github.com/dokenzy" target="_blank">dokenzy</a>)
144
  * Lithuanian (thanks to Vincent G)
145
+ * Norwegian (thanks to <a href="http://www.jackalworks.com/blogg" target="_blank">Jackalworks</a>)
146
  * Persian (thanks to MahdiY)
147
+ * Polish (thanks to <a href="https://github.com/toszcze" target="_blank">Bartosz Romanowski</a>, <a href="http://rob006.net/" target="_blank">Robert Korulczyk</a>)
148
  * Portuguese (thanks to <a href="http://www.adonai.eti.br" target="_blank">Adonai S. Canez</a>)
149
  * Russian (thanks to <a href="http://simplelib.com" target="_blank">Minimus</a> & <a href="http://atlocal.net/" target="_blank">Di_Skyer</a>)
150
  * Slovak (thanks to Branco, <a href="https://twitter.com/#!/webhostgeeks" target="_blank">webhostgeeks/</a>)
159
 
160
  These are helpful for discovering new features.
161
 
162
+ * <a href="http://aramk.com/blog/2012/09/26/internal-post-management-crayon/" target="_blank">Internal Post Management in Crayon</a>
163
  * <a href="http://aramk.com/blog/2012/09/26/converting-legacy-tags-to-pre/" target="_blank">Converting Legacy Tags to &lt;pre&gt;</a>
164
  * <a href="http://aramk.com/blog/2012/09/08/crayon-with-bbpress/" target="_blank">Crayon with bbPress</a>
165
+ * <a href="http://aramk.com/blog/2012/09/02/line-ranges-in-crayon/" target="_blank">Line Ranges in Crayon</a>
166
+ * <a href="http://aramk.com/blog/2012/03/25/crayon-tag-editor/" target="_blank">Crayon Tag Editor</a>
167
+ * <a href="http://aramk.com/blog/2011/12/25/mixed-language-highlighting-in-crayon/" target="_blank">Mixed Language Highlighting in Crayon</a>
168
  * <a href="http://aramk.com/blog/2011/12/27/mini-tags-in-crayon/" target="_blank">Mini Tags And Plain Tags In Crayon</a>
169
+ * <a href="http://aramk.com/blog/2012/03/07/inline-crayons/" target="_blank">Inline Tags</a>
170
+ * <a href="http://aramk.com/blog/2012/01/07/enqueuing-themes-and-fonts-in-crayon/" target="_blank">Enqueuing Themes and Fonts in Crayon</a>
171
 
172
  **The Press**
173
 
201
 
202
  Thanks to all those who donate to the project:
203
 
204
+ * Kai Chen, Canada
205
+ * Chen Kaiyuan, China
206
+ * Kamarul Musa, Malaysia
207
+ * WallyWare, Inc., (https://pi-plates.com), USA
208
+ * Stéphane Rochat, (http://stephanerochat.ch), Switzerland
209
+ * Brennan Hale-Matthews, Canada
210
+ * Robert Giczewski, (http://www.lazydaemon.de/), Germany
211
+ * Hoke Media, (http://hoke.media/), USA
212
+ * Matthew Hood, Australia
213
+ * Brian Williams, USA
214
+ * Christian Martens, (http://insgesamt.net/), Germany
215
  * Nilesh Govindrajan, (http://nileshgr.com/), India
216
  * ZengChun Yang, China
217
+ * Alan Kaplan, (http://www.akaplan.com/blog), USA
218
  * Christopher Yarbrough, (http://chrisyarbrough.com/), Germany
219
  * Johann Weiher, (http://codequartett.de/), Germany
220
  * Samuel Deering, Australia
312
 
313
  == Changelog ==
314
 
315
+ = 2.8.1 =
316
+ * ADDED:
317
+ * Coy theme.
318
+ * FIXED:
319
+ * Strip tags in output content for CrayonWP::highlight()
320
+
321
+ = 2.8.0 =
322
+ * ADDED:
323
+ * Qtcreator theme.
324
+ * Norwegian translation.
325
+ * Amity theme.
326
+ * Flat-UI theme.
327
+ * Powershell theme.
328
+ * Mm Dark Blue theme.
329
+ * Prism Like theme.
330
+ * Kaderu theme.
331
+ * Kayote theme.
332
+ * Xcode theme.
333
+ * Source Code Pro font.
334
+ * FIXED:
335
+ * Polish translation and other fixes (thanks to https://github.com/rob006).
336
+
337
+ = 2.7.1 =
338
+ * FIXED:
339
+ * Bug causing sample code to give an error due to new restriction on loading local files.
340
+
341
  = 2.7.0 =
342
  * ADDED:
343
  * Onderka15 theme.
766
  * Integrated Tag Editor with Fancybox, switched from the discontinued ThickBox, a fair amount of changes took place.
767
  * Crayon should now appear pretty much anywhere TinyMCE does, and this can be tweaked to add more options later.
768
  * Added setting to disable Tag Editor on front end, and/or disable its settings.
769
+ * Added the ability to specify <a href="http://aramk.com/blog/2012/09/02/line-ranges-in-crayon/" target="_blank">line ranges</a>
770
  * Added Microsoft Registry language thanks to <a href="http://techexplored.com/2012/03/21/crayon-syntax-highlighter-reg-support/" target="_blank">techexplored.com</a>
771
  * Added MIVA Script language
772
  * Added Transact-SQL language
1058
  * Renamed Japanese GNU language code from ja_JP to ja.
1059
 
1060
  = 1.7.0 =
1061
+ * Added the ability to highlight multiple languages in a single Crayon! http://aramk.com/blog/2011/12/25/mixed-language-highlighting-in-crayon/
1062
  * A bunch of language improvements, a few CSS improvements, etc.
1063
 
1064
  = 1.6.6 =
themes/amity/amity.css ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Amity
3
+ Description: Classic extended.
4
+ Version: 1.1
5
+ Author: Amit Mevada
6
+ URL: http://amitmevada.developerearth.com/
7
+ */
8
+ .crayon-theme-amity {
9
+ border-width: 1px !important;
10
+ border-color: #999 !important;
11
+ border-style: solid !important;
12
+ text-shadow: none !important;
13
+ background: #fdfdfd !important;
14
+ -moz-border-radius: 5px;
15
+ -webkit-border-radius: 5px;
16
+ border-radius: 5px;
17
+ }
18
+ .crayon-theme-amity-inline {
19
+ border-width: 1px !important;
20
+ border-color: #ddd !important;
21
+ border-style: solid !important;
22
+ background: #fafafa !important;
23
+ }
24
+ .crayon-theme-amity .crayon-table .crayon-nums {
25
+ background: #c0c0c0 !important;
26
+ color: #696969 !important;
27
+ border-right-width: 2px !important;
28
+ border-right-style: solid !important;
29
+ border-right-color: #008080 !important;
30
+ }
31
+ .crayon-theme-amity .crayon-code *::selection {
32
+ background: #BBEEDA !important;
33
+ color: #269B6C !important;
34
+ }
35
+ .crayon-theme-amity .crayon-plain::selection {
36
+ background: #BBEEDA !important;
37
+ color: #269B6C !important;
38
+ }
39
+ .crayon-theme-amity *::selection {
40
+ background: transparent !important;
41
+ }
42
+ .crayon-theme-amity .crayon-striped-line {
43
+ background: #f7f7f7 !important;
44
+ }
45
+ .crayon-theme-amity .crayon-striped-num {
46
+ background: #c0c0c0 !important;
47
+ color: #696969 !important;
48
+ }
49
+ .crayon-theme-amity .crayon-marked-line {
50
+ background: #C7F1ED !important;
51
+ border-width: 1px !important;
52
+ border-color: #9AE7DF !important;
53
+ }
54
+ .crayon-theme-amity .crayon-marked-num {
55
+ color: #090909 !important;
56
+ background: #C7F1ED !important;
57
+ border-width: 1px !important;
58
+ border-color: #202020 !important;
59
+ }
60
+ .crayon-theme-amity .crayon-marked-line.crayon-striped-line {
61
+ background: #B7EEE9 !important;
62
+ }
63
+ .crayon-theme-amity .crayon-marked-num.crayon-striped-num {
64
+ background: #9AE7DF !important;
65
+ color: #090909 !important;
66
+ }
67
+ .crayon-theme-amity .crayon-marked-line.crayon-top {
68
+ border-top-style: solid !important;
69
+ }
70
+ .crayon-theme-amity .crayon-marked-num.crayon-top {
71
+ }
72
+ .crayon-theme-amity .crayon-marked-line.crayon-bottom {
73
+ border-bottom-style: solid !important;
74
+ }
75
+ .crayon-theme-amity .crayon-marked-num.crayon-bottom {
76
+ }
77
+ .crayon-theme-amity .crayon-info {
78
+ background: #E8E8E8 !important;
79
+ border-bottom-width: 1px !important;
80
+ border-bottom-style: solid !important;
81
+ border-bottom-color: #888888 !important;
82
+ color: #595959 !important;
83
+ }
84
+ .crayon-theme-amity .crayon-toolbar {
85
+ background: #DDD !important;
86
+ border-bottom-width: 1px !important;
87
+ border-bottom-style: solid !important;
88
+ border-bottom-color: #BBB !important;
89
+ }
90
+ .crayon-theme-amity .crayon-toolbar > div {
91
+ float: left !important;
92
+ }
93
+ .crayon-theme-amity .crayon-toolbar .crayon-tools {
94
+ float: right !important;
95
+ }
96
+ .crayon-theme-amity .crayon-title {
97
+ color: #333 !important;
98
+ }
99
+ .crayon-theme-amity .crayon-language {
100
+ color: #999 !important;
101
+ }
102
+ .crayon-theme-amity .crayon-button {
103
+ background-color: transparent !important;
104
+ }
105
+ .crayon-theme-amity .crayon-button:hover {
106
+ background-color: #F2F2F2 !important;
107
+ color: #666;
108
+ }
109
+ .crayon-theme-amity .crayon-button.crayon-pressed:hover {
110
+ background-color: #F2F2F2 !important;
111
+ color: #666;
112
+ }
113
+ .crayon-theme-amity .crayon-button.crayon-pressed {
114
+ background-color: #BBB !important;
115
+ color: #FFF;
116
+ }
117
+ .crayon-theme-amity .crayon-button.crayon-pressed:active {
118
+ background-color: #BBB !important;
119
+ color: #FFF;
120
+ }
121
+ .crayon-theme-amity .crayon-button:active {
122
+ background-color: #BBB !important;
123
+ color: #FFF;
124
+ }
125
+ .crayon-theme-amity .crayon-pre .crayon-p {
126
+ color: #b85c00 !important;
127
+ }
128
+ .crayon-theme-amity .crayon-pre .crayon-s {
129
+ color: #008000 !important;
130
+ }
131
+ .crayon-theme-amity .crayon-pre .crayon-k {
132
+ color: #800080 !important;
133
+ }
134
+ .crayon-theme-amity .crayon-pre .crayon-st {
135
+ color: #800080 !important;
136
+ }
137
+ .crayon-theme-amity .crayon-pre .crayon-r {
138
+ color: #800080 !important;
139
+ }
140
+ .crayon-theme-amity .crayon-pre .crayon-t {
141
+ color: #800080 !important;
142
+ }
143
+ .crayon-theme-amity .crayon-pre .crayon-m {
144
+ color: #800080 !important;
145
+ }
146
+ .crayon-theme-amity .crayon-pre .crayon-ta {
147
+ color: #FF0000 !important;
148
+ }
149
+ .crayon-theme-amity .crayon-pre .crayon-i {
150
+ color: #000 !important;
151
+ }
152
+ .crayon-theme-amity .crayon-pre .crayon-v {
153
+ color: #002D7A !important;
154
+ }
155
+ .crayon-theme-amity .crayon-pre .crayon-e {
156
+ color: #004ed0 !important;
157
+ }
158
+ .crayon-theme-amity .crayon-pre .crayon-cn {
159
+ color: #ce0000 !important;
160
+ }
161
+ .crayon-theme-amity .crayon-pre .crayon-o {
162
+ color: #006fe0 !important;
163
+ }
164
+ .crayon-theme-amity .crayon-pre .crayon-h {
165
+ color: #006fe0 !important;
166
+ }
167
+ .crayon-theme-amity .crayon-pre .crayon-sy {
168
+ color: #333 !important;
169
+ }
170
+ .crayon-theme-amity .crayon-pre .crayon-n {
171
+ color: #666 !important;
172
+ font-style: italic !important;
173
+ }
174
+ .crayon-theme-amity .crayon-pre .crayon-f {
175
+ color: #999 !important;
176
+ }
177
+ .crayon-theme-amity .crayon-table {
178
+ -moz-border-radius: 5px;
179
+ -webkit-border-radius: 5px;
180
+ border-radius: 5px;
181
+ overflow: hidden!important;
182
+ }
183
+ .crayon-theme-amity .crayon-pre .crayon-c {
184
+ color: #000000 !important;
185
+ }
186
+ .crayon-theme-amity .crayon-pre {
187
+ color: #000000 !important;
188
+ }
themes/coy/coy.css ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Coy
3
+ Description: via Prism.js (Coy theme)
4
+ Version: 1.0
5
+ Author: Harrix
6
+ URL: http://harrix.org
7
+ */
8
+ .crayon-theme-coy {
9
+ margin-bottom: 25px !important;
10
+ background-color: #f8f8ff !important;
11
+ font-size: 100% !important;
12
+ line-height: 130% !important;
13
+ border-width: 1px !important;
14
+ border-color: #e9e9ea !important;
15
+ }
16
+ .crayon-theme-coy .crayon-toolbar {
17
+ background-color: #eee !important;
18
+ border-bottom-style: solid !important;
19
+ border-bottom-width: 1px !important;
20
+ border-bottom-color: #dedede !important;
21
+ }
22
+ .crayon-theme-coy .crayon-toolbar .crayon-language {
23
+ font-size: 80% !important;
24
+ color: #666 !important;
25
+ }
26
+ .crayon-theme-coy .crayon-toolbar .crayon-title {
27
+ font-size: 80% !important;
28
+ color: #666 !important;
29
+ }
30
+ .crayon-theme-coy .crayon-table .crayon-nums {
31
+ background-color: #eee !important;
32
+ }
33
+ .crayon-theme-coy .crayon-table .crayon-nums-content {
34
+ padding-top: 5px !important;
35
+ padding-bottom: 3px !important;
36
+ }
37
+ .crayon-theme-coy .crayon-table .crayon-num {
38
+ min-width: 1.2em !important;
39
+ text-align: right !important;
40
+ color: #aaa !important;
41
+ border-right-style: solid !important;
42
+ border-right-width: 1px !important;
43
+ border-right-color: #dedede !important;
44
+ }
45
+ .crayon-theme-coy .crayon-pre {
46
+ padding-top: 5px !important;
47
+ padding-bottom: 3px !important;
48
+ color: #445870 !important;
49
+ }
50
+ .crayon-theme-coy .crayon-marked-line {
51
+ background: #e1e5ed !important;
52
+ }
53
+ .crayon-theme-coy .crayon-marked-num {
54
+ color: #1561ac !important;
55
+ background: #b3d3f4 !important;
56
+ border-width: 1px !important;
57
+ border-color: #5999d9 !important;
58
+ }
59
+ .crayon-theme-coy .crayon-pre .crayon-c {
60
+ color: #90a1b5 !important;
61
+ font-style: italic !important;
62
+ }
63
+ .crayon-theme-coy .crayon-pre .crayon-s {
64
+ color: #55A1FB !important;
65
+ }
66
+ .crayon-theme-coy .crayon-pre .crayon-p {
67
+ color: #1990b8 !important;
68
+ }
69
+ .crayon-theme-coy .crayon-pre .crayon-ta {
70
+ color: #FF0000 !important;
71
+ }
72
+ .crayon-theme-coy .crayon-pre .crayon-k {
73
+ color: #ec4444 !important;
74
+ }
75
+ .crayon-theme-coy .crayon-pre .crayon-st {
76
+ color: #3c9cc9 !important;
77
+ }
78
+ .crayon-theme-coy .crayon-pre .crayon-r {
79
+ color: #ec4444 !important;
80
+ }
81
+ .crayon-theme-coy .crayon-pre .crayon-t {
82
+ color: #ec4444 !important;
83
+ }
84
+ .crayon-theme-coy .crayon-pre .crayon-m {
85
+ color: #800080 !important;
86
+ }
87
+ .crayon-theme-coy .crayon-pre .crayon-i {
88
+ color: #445870 !important;
89
+ }
90
+ .crayon-theme-coy .crayon-pre .crayon-e {
91
+ color: #4ABF60 !important;
92
+ }
93
+ .crayon-theme-coy .crayon-pre .crayon-v {
94
+ color: #002D7A !important;
95
+ }
96
+ .crayon-theme-coy .crayon-pre .crayon-cn {
97
+ color: #ec4444 !important;
98
+ }
99
+ .crayon-theme-coy .crayon-pre .crayon-o {
100
+ color: #006fe0 !important;
101
+ }
102
+ .crayon-theme-coy .crayon-pre .crayon-sy {
103
+ color: #333 !important;
104
+ }
105
+ .crayon-theme-coy .crayon-pre .crayon-n {
106
+ color: #666 !important;
107
+ font-style: italic !important;
108
+ }
109
+ .crayon-theme-coy .crayon-pre .crayon-f {
110
+ color: #90a1b5 !important;
111
+ }
112
+ .crayon-theme-coy .crayon-pre .crayon-h {
113
+ color: #006fe0 !important;
114
+ }
115
+ .crayon-theme-coy-inline {
116
+ background: #f6f7f9 !important;
117
+ }
themes/flatui-light/flatui-light.css ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Flatui Light
3
+ Description: Based on light flat UI colors
4
+ Version: 1.0
5
+ Author: Kaunteya Suryawanshi
6
+ URL: http://www.greenmercury.com
7
+ */
8
+ .crayon-theme-flatui-light {
9
+ border-width: 1px !important;
10
+ border-color: #999 !important;
11
+ border-style: solid !important;
12
+ text-shadow: none !important;
13
+ background: #ffffff !important;
14
+ }
15
+ .crayon-theme-flatui-light-inline {
16
+ border-width: 1px !important;
17
+ border-color: #ddd !important;
18
+ border-style: solid !important;
19
+ background: #fafafa !important;
20
+ }
21
+ .crayon-theme-flatui-light .crayon-table .crayon-nums {
22
+ background: #dfefff !important;
23
+ color: #5499de !important;
24
+ }
25
+ .crayon-theme-flatui-light .crayon-striped-line {
26
+ background: #f7f7f7 !important;
27
+ }
28
+ .crayon-theme-flatui-light .crayon-striped-num {
29
+ background: #c8e1fa !important;
30
+ color: #317cc5 !important;
31
+ }
32
+ .crayon-theme-flatui-light .crayon-marked-line {
33
+ background: #f5f0f8 !important;
34
+ border-width: 1px !important;
35
+ border-color: #e9e579 !important;
36
+ }
37
+ .crayon-theme-flatui-light .crayon-marked-num {
38
+ color: #1561ac !important;
39
+ background: #b3d3f4 !important;
40
+ border-width: 1px !important;
41
+ border-color: #5999d9 !important;
42
+ }
43
+ .crayon-theme-flatui-light .crayon-marked-line.crayon-striped-line {
44
+ background: #faf8d1 !important;
45
+ }
46
+ .crayon-theme-flatui-light .crayon-marked-num.crayon-striped-num {
47
+ background: #9ec5ec !important;
48
+ color: #105395 !important;
49
+ }
50
+ .crayon-theme-flatui-light .crayon-marked-line.crayon-top {
51
+ }
52
+ .crayon-theme-flatui-light .crayon-marked-num.crayon-top {
53
+ border-top-style: solid !important;
54
+ }
55
+ .crayon-theme-flatui-light .crayon-marked-line.crayon-bottom {
56
+ }
57
+ .crayon-theme-flatui-light .crayon-marked-num.crayon-bottom {
58
+ border-bottom-style: solid !important;
59
+ }
60
+ .crayon-theme-flatui-light .crayon-info {
61
+ background: #faf9d7 !important;
62
+ border-bottom-width: 1px !important;
63
+ border-bottom-color: #b1af5e !important;
64
+ border-bottom-style: solid !important;
65
+ color: #7e7d34 !important;
66
+ }
67
+ .crayon-theme-flatui-light .crayon-toolbar {
68
+ background: #DDD !important;
69
+ border-bottom-width: 1px !important;
70
+ border-bottom-color: #BBB !important;
71
+ border-bottom-style: solid !important;
72
+ }
73
+ .crayon-theme-flatui-light .crayon-toolbar > div {
74
+ float: left !important;
75
+ }
76
+ .crayon-theme-flatui-light .crayon-toolbar .crayon-tools {
77
+ float: right !important;
78
+ }
79
+ .crayon-theme-flatui-light .crayon-title {
80
+ color: #333 !important;
81
+ }
82
+ .crayon-theme-flatui-light .crayon-language {
83
+ color: #999 !important;
84
+ }
85
+ .crayon-theme-flatui-light .crayon-button {
86
+ background-color: #DDD !important;
87
+ }
88
+ .crayon-theme-flatui-light .crayon-button:hover {
89
+ background-color: #EEE !important;
90
+ color: #666;
91
+ }
92
+ .crayon-theme-flatui-light .crayon-button.crayon-pressed:hover {
93
+ background-color: #EEE !important;
94
+ color: #666;
95
+ }
96
+ .crayon-theme-flatui-light .crayon-button.crayon-pressed {
97
+ background-color: #BCBCBC !important;
98
+ color: #FFF;
99
+ }
100
+ .crayon-theme-flatui-light .crayon-button.crayon-pressed:active {
101
+ background-color: #BCBCBC !important;
102
+ color: #FFF;
103
+ }
104
+ .crayon-theme-flatui-light .crayon-button:active {
105
+ background-color: #BCBCBC !important;
106
+ color: #FFF;
107
+ }
108
+ .crayon-theme-flatui-light .crayon-pre .crayon-c {
109
+ color: #e08283 !important;
110
+ font-style: italic !important;
111
+ }
112
+ .crayon-theme-flatui-light .crayon-pre .crayon-s {
113
+ color: #3FC380 !important;
114
+ }
115
+ .crayon-theme-flatui-light .crayon-pre .crayon-p {
116
+ color: #F5AB35 !important;
117
+ }
118
+ .crayon-theme-flatui-light .crayon-pre .crayon-ta {
119
+ color: #3498db !important;
120
+ }
121
+ .crayon-theme-flatui-light .crayon-pre .crayon-k {
122
+ color: #9b59b6 !important;
123
+ }
124
+ .crayon-theme-flatui-light .crayon-pre .crayon-st {
125
+ color: #9b59b6 !important;
126
+ }
127
+ .crayon-theme-flatui-light .crayon-pre .crayon-r {
128
+ color: #9b59b6 !important;
129
+ }
130
+ .crayon-theme-flatui-light .crayon-pre .crayon-t {
131
+ color: #9b59b6 !important;
132
+ }
133
+ .crayon-theme-flatui-light .crayon-pre .crayon-m {
134
+ color: #9b59b6 !important;
135
+ }
136
+ .crayon-theme-flatui-light .crayon-pre .crayon-i {
137
+ color: #4d3a3a !important;
138
+ }
139
+ .crayon-theme-flatui-light .crayon-pre .crayon-e {
140
+ color: #59abe3 !important;
141
+ }
142
+ .crayon-theme-flatui-light .crayon-pre .crayon-v {
143
+ color: #59abe3 !important;
144
+ }
145
+ .crayon-theme-flatui-light .crayon-pre .crayon-cn {
146
+ color: #d24d57 !important;
147
+ }
148
+ .crayon-theme-flatui-light .crayon-pre .crayon-o {
149
+ color: #5c97bf !important;
150
+ }
151
+ .crayon-theme-flatui-light .crayon-pre .crayon-sy {
152
+ color: #333 !important;
153
+ }
154
+ .crayon-theme-flatui-light .crayon-pre .crayon-n {
155
+ color: #666 !important;
156
+ font-style: italic !important;
157
+ }
158
+ .crayon-theme-flatui-light .crayon-pre .crayon-f {
159
+ color: #999 !important;
160
+ }
161
+ .crayon-theme-flatui-light .crayon-pre .crayon-h {
162
+ color: #006fe0 !important;
163
+ }
themes/kaderu/kaderu.css ADDED
@@ -0,0 +1,319 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Kaderu
3
+ Description: Specially for kaderu.ru
4
+ Version: 1.0
5
+ Author: Denis Kasatkin
6
+ URL: http://kaderu.ru/
7
+ */
8
+ .crayon-theme-kaderu {
9
+ border-width: 1px !important;
10
+ border-color: #c6c5c5 !important;
11
+ border-style: solid !important;
12
+ text-shadow: none !important;
13
+ background: #fdfdfd !important;
14
+ }
15
+ .crayon-theme-kaderu-inline {
16
+ border-width: 1px !important;
17
+ border-color: #ddd !important;
18
+ border-style: solid !important;
19
+ background: #fafafa !important;
20
+ }
21
+ .crayon-theme-kaderu .crayon-table .crayon-nums {
22
+ background: #ffffff !important;
23
+ color: #00008b !important;
24
+ }
25
+ .crayon-theme-kaderu .crayon-striped-line {
26
+ background: #f8f8f8 !important;
27
+ }
28
+ .crayon-theme-kaderu .crayon-striped-num {
29
+ background: #f8f8f8 !important;
30
+ color: #00008b !important;
31
+ }
32
+ .crayon-theme-kaderu .crayon-marked-line {
33
+ background: #fffee2 !important;
34
+ border-width: 0px !important;
35
+ border-color: #e9e579 !important;
36
+ }
37
+ .crayon-theme-kaderu .crayon-marked-num {
38
+ color: #00008b !important;
39
+ background: #fffee2 !important;
40
+ border-width: 1px !important;
41
+ border-color: #eaf4ff !important;
42
+ }
43
+ .crayon-theme-kaderu .crayon-marked-line.crayon-striped-line {
44
+ background: #faf8d1 !important;
45
+ }
46
+ .crayon-theme-kaderu .crayon-marked-num.crayon-striped-num {
47
+ background: #faf9d7 !important;
48
+ color: #00008b !important;
49
+ }
50
+ .crayon-theme-kaderu .crayon-marked-line.crayon-top {
51
+ border-top-style: solid !important;
52
+ }
53
+ .crayon-theme-kaderu .crayon-marked-num.crayon-top {
54
+ border-top-style: solid !important;
55
+ }
56
+ .crayon-theme-kaderu .crayon-marked-line.crayon-bottom {
57
+ border-bottom-style: solid !important;
58
+ }
59
+ .crayon-theme-kaderu .crayon-marked-num.crayon-bottom {
60
+ border-bottom-style: solid !important;
61
+ }
62
+ .crayon-theme-kaderu .crayon-info {
63
+ background: #faf9d7 !important;
64
+ border-bottom-width: 1px !important;
65
+ border-bottom-color: #b1af5e !important;
66
+ border-bottom-style: solid !important;
67
+ color: #7e7d34 !important;
68
+ }
69
+ .crayon-theme-kaderu .crayon-toolbar {
70
+ background: #ffffff !important;
71
+ border-bottom-width: 1px !important;
72
+ border-bottom-color: #c6c5c5 !important;
73
+ border-bottom-style: solid !important;
74
+ }
75
+ .crayon-theme-kaderu .crayon-toolbar > div {
76
+ float: left !important;
77
+ }
78
+ .crayon-theme-kaderu .crayon-toolbar .crayon-tools {
79
+ float: right !important;
80
+ }
81
+ .crayon-theme-kaderu .crayon-title {
82
+ color: #333 !important;
83
+ }
84
+ .crayon-theme-kaderu .crayon-language {
85
+ color: #999 !important;
86
+ }
87
+ .crayon-theme-kaderu .crayon-button {
88
+ background-color: #ffffff !important;
89
+ }
90
+ .crayon-theme-kaderu .crayon-button:hover {
91
+ background-color: #EEE !important;
92
+ color: #666;
93
+ }
94
+ .crayon-theme-kaderu .crayon-button.crayon-pressed:hover {
95
+ background-color: #EEE !important;
96
+ color: #666;
97
+ }
98
+ .crayon-theme-kaderu .crayon-button.crayon-pressed {
99
+ background-color: #d3d3d3 !important;
100
+ color: #FFF;
101
+ }
102
+ .crayon-theme-kaderu .crayon-button.crayon-pressed:active {
103
+ background-color: #ffffff !important;
104
+ color: #FFF;
105
+ }
106
+ .crayon-theme-kaderu .crayon-button:active {
107
+ background-color: #2574a9 !important;
108
+ color: #FFF;
109
+ }
110
+ .crayon-theme-kaderu .crayon-pre .crayon-c {
111
+ color: #696969 !important;
112
+ font-style: italic !important;
113
+ }
114
+ .crayon-theme-kaderu .crayon-pre .crayon-s {
115
+ color: #008000 !important;
116
+ }
117
+ .crayon-theme-kaderu .crayon-pre .crayon-p {
118
+ color: #b8860b !important;
119
+ }
120
+ .crayon-theme-kaderu .crayon-pre .crayon-ta {
121
+ color: #FF0000 !important;
122
+ }
123
+ .crayon-theme-kaderu .crayon-pre .crayon-k {
124
+ color: #800080 !important;
125
+ font-weight: bold !important;
126
+ }
127
+ .crayon-theme-kaderu .crayon-pre .crayon-st {
128
+ color: #800080 !important;
129
+ font-weight: bold !important;
130
+ }
131
+ .crayon-theme-kaderu .crayon-pre .crayon-r {
132
+ color: #800080 !important;
133
+ }
134
+ .crayon-theme-kaderu .crayon-pre .crayon-t {
135
+ color: #800080 !important;
136
+ font-weight: bold !important;
137
+ }
138
+ .crayon-theme-kaderu .crayon-pre .crayon-m {
139
+ color: #800080 !important;
140
+ }
141
+ .crayon-theme-kaderu .crayon-pre .crayon-i {
142
+ color: #000 !important;
143
+ }
144
+ .crayon-theme-kaderu .crayon-pre .crayon-e {
145
+ color: #00008b !important;
146
+ font-weight: bold !important;
147
+ }
148
+ .crayon-theme-kaderu .crayon-pre .crayon-v {
149
+ color: #002D7A !important;
150
+ }
151
+ .crayon-theme-kaderu .crayon-pre .crayon-cn {
152
+ color: #b8860b !important;
153
+ }
154
+ .crayon-theme-kaderu .crayon-pre .crayon-o {
155
+ color: #800080 !important;
156
+ }
157
+ .crayon-theme-kaderu .crayon-pre .crayon-sy {
158
+ color: #333 !important;
159
+ }
160
+ .crayon-theme-kaderu .crayon-pre .crayon-n {
161
+ color: #666 !important;
162
+ font-style: italic !important;
163
+ }
164
+ .crayon-theme-kaderu .crayon-pre .crayon-f {
165
+ color: #999 !important;
166
+ }
167
+ .crayon-theme-kaderu .crayon-pre .crayon-h {
168
+ color: #006fe0 !important;
169
+ }
170
+ .crayon-theme-kaderu .crayon-pre .crayon-c {
171
+ color: #696969 !important;
172
+ font-style: italic !important;
173
+ }
174
+ .crayon-theme-kaderu .crayon-pre .crayon-s {
175
+ color: #008000 !important;
176
+ }
177
+ .crayon-theme-kaderu .crayon-pre .crayon-p {
178
+ color: #b8860b !important;
179
+ }
180
+ .crayon-theme-kaderu .crayon-pre .crayon-ta {
181
+ color: #FF0000 !important;
182
+ }
183
+ .crayon-theme-kaderu .crayon-pre .crayon-k {
184
+ color: #800080 !important;
185
+ font-weight: bold !important;
186
+ }
187
+ .crayon-theme-kaderu .crayon-pre .crayon-st {
188
+ color: #800080 !important;
189
+ font-weight: bold !important;
190
+ }
191
+ .crayon-theme-kaderu .crayon-pre .crayon-r {
192
+ color: #800080 !important;
193
+ }
194
+ .crayon-theme-kaderu .crayon-pre .crayon-t {
195
+ color: #800080 !important;
196
+ font-weight: bold !important;
197
+ }
198
+ .crayon-theme-kaderu .crayon-pre .crayon-m {
199
+ color: #800080 !important;
200
+ }
201
+ .crayon-theme-kaderu .crayon-pre .crayon-i {
202
+ color: #000 !important;
203
+ }
204
+ .crayon-theme-kaderu .crayon-pre .crayon-e {
205
+ color: #00008b !important;
206
+ font-weight: bold !important;
207
+ }
208
+ .crayon-theme-kaderu .crayon-pre .crayon-v {
209
+ color: #002D7A !important;
210
+ }
211
+ .crayon-theme-kaderu .crayon-pre .crayon-cn {
212
+ color: #b8860b !important;
213
+ }
214
+ .crayon-theme-kaderu .crayon-pre .crayon-o {
215
+ color: #800080 !important;
216
+ }
217
+ .crayon-theme-kaderu .crayon-pre .crayon-sy {
218
+ color: #333 !important;
219
+ }
220
+ .crayon-theme-kaderu .crayon-pre .crayon-n {
221
+ color: #666 !important;
222
+ font-style: italic !important;
223
+ }
224
+ .crayon-theme-kaderu .crayon-pre .crayon-f {
225
+ color: #999 !important;
226
+ }
227
+ .crayon-theme-kaderu .crayon-pre .crayon-h {
228
+ color: #006fe0 !important;
229
+ }
230
+ .crayon-theme-kaderu {
231
+ border-width: 1px !important;
232
+ border-color: #c6c5c5 !important;
233
+ border-style: solid !important;
234
+ background: #fdfdfd !important;
235
+ }
236
+ .crayon-theme-kaderu-inline {
237
+ background: #fafafa !important;
238
+ border-width: 1px !important;
239
+ border-color: #ddd !important;
240
+ border-style: solid !important;
241
+ }
242
+ .crayon-theme-kaderu .crayon-striped-line {
243
+ background: #f8f8f8 !important;
244
+ }
245
+ .crayon-theme-kaderu .crayon-marked-line {
246
+ background: #fffee2 !important;
247
+ border-width: 0px !important;
248
+ border-color: #e9e579 !important;
249
+ }
250
+ .crayon-theme-kaderu .crayon-marked-line.crayon-top {
251
+ border-top-style: solid !important;
252
+ }
253
+ .crayon-theme-kaderu .crayon-marked-line.crayon-bottom {
254
+ border-bottom-style: solid !important;
255
+ }
256
+ .crayon-theme-kaderu .crayon-marked-line.crayon-striped-line {
257
+ background: #faf8d1 !important;
258
+ }
259
+ .crayon-theme-kaderu .crayon-table .crayon-nums {
260
+ background: #ffffff !important;
261
+ color: #00008b !important;
262
+ }
263
+ .crayon-theme-kaderu .crayon-striped-num {
264
+ background: #f8f8f8 !important;
265
+ color: #00008b !important;
266
+ }
267
+ .crayon-theme-kaderu .crayon-marked-num {
268
+ background: #fffee2 !important;
269
+ color: #00008b !important;
270
+ border-width: 1px !important;
271
+ border-color: #eaf4ff !important;
272
+ }
273
+ .crayon-theme-kaderu .crayon-marked-num.crayon-top {
274
+ border-top-style: solid !important;
275
+ }
276
+ .crayon-theme-kaderu .crayon-marked-num.crayon-bottom {
277
+ border-bottom-style: solid !important;
278
+ }
279
+ .crayon-theme-kaderu .crayon-marked-num.crayon-striped-num {
280
+ background: #faf9d7 !important;
281
+ color: #00008b !important;
282
+ }
283
+ .crayon-theme-kaderu .crayon-toolbar {
284
+ background: #ffffff !important;
285
+ border-bottom-width: 1px !important;
286
+ border-bottom-color: #c6c5c5 !important;
287
+ border-bottom-style: solid !important;
288
+ }
289
+ .crayon-theme-kaderu .crayon-title {
290
+ color: #333 !important;
291
+ }
292
+ .crayon-theme-kaderu .crayon-button {
293
+ background-color: #ffffff !important;
294
+ }
295
+ .crayon-theme-kaderu .crayon-button:hover {
296
+ background-color: #EEE !important;
297
+ }
298
+ .crayon-theme-kaderu .crayon-button:active {
299
+ background-color: #2574a9 !important;
300
+ }
301
+ .crayon-theme-kaderu .crayon-button.crayon-pressed {
302
+ background-color: #d3d3d3 !important;
303
+ }
304
+ .crayon-theme-kaderu .crayon-button.crayon-pressed:hover {
305
+ background-color: #EEE !important;
306
+ }
307
+ .crayon-theme-kaderu .crayon-button.crayon-pressed:active {
308
+ background-color: #ffffff !important;
309
+ }
310
+ .crayon-theme-kaderu .crayon-info {
311
+ background: #faf9d7 !important;
312
+ color: #7e7d34 !important;
313
+ border-bottom-width: 1px !important;
314
+ border-bottom-color: #b1af5e !important;
315
+ border-bottom-style: solid !important;
316
+ }
317
+ .crayon-theme-kaderu .crayon-language {
318
+ color: #999 !important;
319
+ }
themes/kayote/kayote.css ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Kayote
3
+ Description: Dark background. Classy text.
4
+ Version: 1.0
5
+ Author: Nicholas Coughlin
6
+ URL: http://www.ncoughlin.com
7
+ */
8
+ .crayon-theme-kayote {
9
+ text-shadow: none !important;
10
+ color: #fff;
11
+ background: #2d2d2d !important;
12
+ border-style: solid !important;
13
+ border-width: 4px !important;
14
+ border-color: #333 !important;
15
+ }
16
+ .crayon-theme-kayote .crayon-code {
17
+ background: #2d2d2d !important;
18
+ }
19
+ .crayon-theme-kayote-inline {
20
+ background: #333 !important;
21
+ border-style: solid !important;
22
+ border-width: 1px !important;
23
+ border-color: #333 !important;
24
+ }
25
+ .crayon-theme-kayote span {
26
+ color: #999 !important;
27
+ }
28
+ .crayon-theme-kayote .crayon-table .crayon-nums {
29
+ color: #8d8d8d !important;
30
+ background: #424242 !important;
31
+ border-right-style: solid !important;
32
+ border-right-width: 1px !important;
33
+ border-right-color: #333 !important;
34
+ }
35
+ .crayon-theme-kayote .crayon-striped-line {
36
+ background: #343434 !important;
37
+ border-width: 1px !important;
38
+ border-color: #171717 !important;
39
+ }
40
+ .crayon-theme-kayote .crayon-striped-num {
41
+ background: #303030 !important;
42
+ color: #7f7f7f !important;
43
+ border-width: 1px !important;
44
+ border-color: #CCC !important;
45
+ }
46
+ .crayon-theme-kayote .crayon-marked-line {
47
+ background: #516051 !important;
48
+ border-width: 1px !important;
49
+ border-color: #abffaa !important;
50
+ }
51
+ .crayon-theme-kayote .crayon-marked-num {
52
+ color: #6c6c6c !important;
53
+ background: #a3f5a5 !important;
54
+ border-width: 1px !important;
55
+ border-color: #777 !important;
56
+ }
57
+ .crayon-theme-kayote .crayon-marked-line.crayon-striped-line {
58
+ background: #637564 !important;
59
+ }
60
+ .crayon-theme-kayote .crayon-marked-num.crayon-striped-num {
61
+ background: #83da82 !important;
62
+ color: #595959 !important;
63
+ }
64
+ .crayon-theme-kayote .crayon-marked-line.crayon-top {
65
+ border-top-style: solid !important;
66
+ }
67
+ .crayon-theme-kayote .crayon-marked-num.crayon-top {
68
+ border-top-style: solid !important;
69
+ }
70
+ .crayon-theme-kayote .crayon-marked-line.crayon-bottom {
71
+ border-bottom-style: solid !important;
72
+ }
73
+ .crayon-theme-kayote .crayon-marked-num.crayon-bottom {
74
+ border-bottom-style: solid !important;
75
+ }
76
+ .crayon-theme-kayote .crayon-info {
77
+ background: #faf9d7 !important;
78
+ color: #7e7d34 !important;
79
+ border-bottom-style: solid !important;
80
+ border-bottom-width: 1px !important;
81
+ border-bottom-color: #b1af5e !important;
82
+ }
83
+ .crayon-theme-kayote .crayon-toolbar {
84
+ background: #b2b2b2 !important;
85
+ border-bottom-style: solid !important;
86
+ border-bottom-width: 1px !important;
87
+ border-bottom-color: #666 !important;
88
+ }
89
+ .crayon-theme-kayote .crayon-toolbar > div {
90
+ float: left !important;
91
+ }
92
+ .crayon-theme-kayote .crayon-toolbar .crayon-tools {
93
+ float: right !important;
94
+ }
95
+ .crayon-theme-kayote .crayon-title {
96
+ color: #333 !important;
97
+ }
98
+ .crayon-theme-kayote .crayon-language {
99
+ color: #666 !important;
100
+ }
101
+ .crayon-theme-kayote .crayon-toolbar .crayon-mixed-highlight {
102
+ background-position: -24px center;
103
+ }
104
+ .crayon-theme-kayote .crayon-button {
105
+ background-color: transparent !important;
106
+ }
107
+ .crayon-theme-kayote .crayon-button:hover {
108
+ background-color: #ccc !important;
109
+ color: #666;
110
+ }
111
+ .crayon-theme-kayote .crayon-button.crayon-pressed:hover {
112
+ background-color: #ccc !important;
113
+ color: #666;
114
+ }
115
+ .crayon-theme-kayote .crayon-button.crayon-pressed {
116
+ background-color: #999 !important;
117
+ color: #ccc;
118
+ }
119
+ .crayon-theme-kayote .crayon-button.crayon-pressed:active {
120
+ background-color: #999 !important;
121
+ color: #ccc;
122
+ }
123
+ .crayon-theme-kayote .crayon-button:active {
124
+ background-color: #999 !important;
125
+ color: #ccc;
126
+ }
127
+ .crayon-theme-kayote .crayon-pre .crayon-c {
128
+ color: #b2b2b2 !important;
129
+ }
130
+ .crayon-theme-kayote .crayon-pre .crayon-p {
131
+ color: #a19ba2 !important;
132
+ }
133
+ .crayon-theme-kayote .crayon-pre .crayon-s {
134
+ color: #b2cb79 !important;
135
+ }
136
+ .crayon-theme-kayote .crayon-pre .crayon-k {
137
+ color: #c2b298 !important;
138
+ }
139
+ .crayon-theme-kayote .crayon-pre .crayon-st {
140
+ color: #c2b298 !important;
141
+ }
142
+ .crayon-theme-kayote .crayon-pre .crayon-r {
143
+ color: #c2b298 !important;
144
+ }
145
+ .crayon-theme-kayote .crayon-pre .crayon-t {
146
+ color: #c2b298 !important;
147
+ }
148
+ .crayon-theme-kayote .crayon-pre .crayon-m {
149
+ color: #d58a45 !important;
150
+ }
151
+ .crayon-theme-kayote .crayon-pre .crayon-ta {
152
+ color: #AAA !important;
153
+ }
154
+ .crayon-theme-kayote .crayon-pre .crayon-i {
155
+ color: #d58a45 !important;
156
+ }
157
+ .crayon-theme-kayote .crayon-pre .crayon-v {
158
+ color: #92a3ca !important;
159
+ }
160
+ .crayon-theme-kayote .crayon-pre .crayon-e {
161
+ color: #d9d8a6 !important;
162
+ }
163
+ .crayon-theme-kayote .crayon-pre .crayon-cn {
164
+ color: #80aac6 !important;
165
+ }
166
+ .crayon-theme-kayote .crayon-pre .crayon-o {
167
+ color: #bedcbe !important;
168
+ }
169
+ .crayon-theme-kayote .crayon-pre .crayon-h {
170
+ color: #82adc9 !important;
171
+ }
172
+ .crayon-theme-kayote .crayon-pre .crayon-sy {
173
+ color: #ffffff !important;
174
+ }
175
+ .crayon-theme-kayote .crayon-pre .crayon-n {
176
+ color: #726e73 !important;
177
+ font-style: italic !important;
178
+ }
179
+ .crayon-theme-kayote .crayon-pre .crayon-f {
180
+ color: #595959 !important;
181
+ }
182
+ .crayon-theme-kayote .crayon-pre {
183
+ color: #ffffff !important;
184
+ }
themes/mm-dark-blue/mm-dark-blue.css ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Mm Dark Blue
3
+ Description: Version: 1.0
4
+ Author: Max McKinney
5
+ URL: maxmckinney.com
6
+ */
7
+ .crayon-theme-mm-dark-blue {
8
+ border-width: 0px !important;
9
+ text-shadow: none !important;
10
+ background: #252C3B !important;
11
+ border-color: #252C3B !important;
12
+ border-style: solid !important;
13
+ }
14
+ .crayon-theme-mm-dark-blue-inline {
15
+ border-width: 1px !important;
16
+ border-color: #ddd !important;
17
+ background: #252C3B !important;
18
+ border-style: solid !important;
19
+ }
20
+ .crayon-theme-mm-dark-blue .crayon-table .crayon-nums {
21
+ background: #333e53 !important;
22
+ color: #888888 !important;
23
+ }
24
+ .crayon-theme-mm-dark-blue *::selection {
25
+ background: transparent !important;
26
+ }
27
+ .crayon-theme-mm-dark-blue .crayon-code *::selection {
28
+ background: #ddeeff !important;
29
+ color: #316ba5 !important;
30
+ }
31
+ .crayon-theme-mm-dark-blue .crayon-striped-line {
32
+ background: #252C3B !important;
33
+ }
34
+ .crayon-theme-mm-dark-blue .crayon-striped-num {
35
+ background: #333e53 !important;
36
+ color: #888888 !important;
37
+ }
38
+ .crayon-theme-mm-dark-blue .crayon-marked-line {
39
+ border-width: 0px !important;
40
+ border-color: #f6efef !important;
41
+ background: #353f54 !important;
42
+ }
43
+ .crayon-theme-mm-dark-blue .crayon-marked-num {
44
+ color: #888888 !important;
45
+ background: #262d3f !important;
46
+ border-width: 0px !important;
47
+ border-color: #f9f9f9 !important;
48
+ }
49
+ .crayon-theme-mm-dark-blue .crayon-marked-line.crayon-striped-line {
50
+ background: #353f54 !important;
51
+ }
52
+ .crayon-theme-mm-dark-blue .crayon-marked-num.crayon-striped-num {
53
+ background: #262d3f !important;
54
+ color: #888888 !important;
55
+ }
56
+ .crayon-theme-mm-dark-blue .crayon-marked-line.crayon-top {
57
+ border-top-style: solid !important;
58
+ }
59
+ .crayon-theme-mm-dark-blue .crayon-marked-num.crayon-top {
60
+ border-top-style: solid !important;
61
+ }
62
+ .crayon-theme-mm-dark-blue .crayon-marked-line.crayon-bottom {
63
+ border-bottom-style: solid !important;
64
+ }
65
+ .crayon-theme-mm-dark-blue .crayon-marked-num.crayon-bottom {
66
+ border-bottom-style: solid !important;
67
+ }
68
+ .crayon-theme-mm-dark-blue .crayon-info {
69
+ background: #717c94 !important;
70
+ border-bottom-width: 1px !important;
71
+ border-bottom-color: #323c51 !important;
72
+ border-bottom-style: solid !important;
73
+ color: #ffffff !important;
74
+ }
75
+ .crayon-theme-mm-dark-blue .crayon-toolbar {
76
+ background: #495671 !important;
77
+ border-bottom-width: 10px !important;
78
+ border-bottom-color: #323c51 !important;
79
+ border-bottom-style: solid !important;
80
+ }
81
+ .crayon-theme-mm-dark-blue .crayon-toolbar > div {
82
+ float: left !important;
83
+ }
84
+ .crayon-theme-mm-dark-blue .crayon-toolbar .crayon-tools {
85
+ float: right !important;
86
+ }
87
+ .crayon-theme-mm-dark-blue .crayon-title {
88
+ color: #ffffff !important;
89
+ }
90
+ .crayon-theme-mm-dark-blue .crayon-language {
91
+ color: #999 !important;
92
+ }
93
+ .crayon-theme-mm-dark-blue a.crayon-button {
94
+ background-color: transparent !important;
95
+ }
96
+ .crayon-theme-mm-dark-blue a.crayon-button:hover {
97
+ background-color: #dddddd !important;
98
+ color: #666;
99
+ }
100
+ .crayon-theme-mm-dark-blue a.crayon-button.crayon-pressed:hover {
101
+ background-color: #eeeeee !important;
102
+ color: #666;
103
+ }
104
+ .crayon-theme-mm-dark-blue a.crayon-button.crayon-pressed {
105
+ background-color: #dddddd !important;
106
+ color: #FFF;
107
+ }
108
+ .crayon-theme-mm-dark-blue a.crayon-button.crayon-pressed:active {
109
+ background-color: #dddddd !important;
110
+ color: #FFF;
111
+ }
112
+ .crayon-theme-mm-dark-blue a.crayon-button:active {
113
+ background-color: #dddddd !important;
114
+ color: #FFF;
115
+ }
116
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-c {
117
+ color: #aaaaaa !important;
118
+ }
119
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-s {
120
+ color: #c2885a !important;
121
+ }
122
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-p {
123
+ color: #ffffff !important;
124
+ }
125
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-ta {
126
+ color: #e91e1e !important;
127
+ }
128
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-k {
129
+ color: #90C56B !important;
130
+ }
131
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-st {
132
+ color: #90C56B !important;
133
+ font-weight: bold !important;
134
+ }
135
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-r {
136
+ color: #90C56B !important;
137
+ }
138
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-t {
139
+ color: #BF616A !important;
140
+ }
141
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-m {
142
+ color: #90C56B !important;
143
+ }
144
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-i {
145
+ color: #ffffff !important;
146
+ }
147
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-e {
148
+ color: #90C56B !important;
149
+ }
150
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-v {
151
+ color: #ffffff !important;
152
+ }
153
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-cn {
154
+ color: #ffffff !important;
155
+ }
156
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-o {
157
+ color: #ffffff !important;
158
+ }
159
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-sy {
160
+ color: #ffffff !important;
161
+ }
162
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-n {
163
+ color: #ffffff !important;
164
+ font-style: italic !important;
165
+ }
166
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-f {
167
+ color: #dfdfdf !important;
168
+ }
169
+ .crayon-theme-mm-dark-blue .crayon-pre .crayon-h {
170
+ color: #ffffff !important;
171
+ }
172
+ .crayon-theme-mm-dark-blue .crayon-pre {
173
+ color: #ffffff !important;
174
+ }
themes/powershell/powershell.css ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Powershell
3
+ Description: Version: 1.0
4
+ Author: Joshua Davis
5
+ URL: http://jdav.is
6
+ */
7
+ .crayon-theme-powershell {
8
+ border-width: 1px !important;
9
+ border-color: #303030 !important;
10
+ text-shadow: none !important;
11
+ background: #303030 !important;
12
+ }
13
+ .crayon-theme-powershell-inline {
14
+ border-width: 0px !important;
15
+ border-color: #000000 !important;
16
+ background: #012456 !important;
17
+ }
18
+ .crayon-theme-powershell .crayon-table .crayon-nums {
19
+ background: #012456 !important;
20
+ color: #fff !important;
21
+ border-right-width: 1px !important;
22
+ border-right-color: #8c8d8f !important;
23
+ border-right-style: solid !important;
24
+ }
25
+ .crayon-theme-powershell .crayon-striped-line {
26
+ background: #012456 !important;
27
+ }
28
+ .crayon-theme-powershell .crayon-striped-num {
29
+ background: #012456 !important;
30
+ color: #fff !important;
31
+ }
32
+ .crayon-theme-powershell .crayon-marked-line {
33
+ background: #012456 !important;
34
+ border-width: 1px !important;
35
+ border-color: #595959 !important;
36
+ }
37
+ .crayon-theme-powershell .crayon-marked-num {
38
+ color: #fff !important;
39
+ background: #012456 !important;
40
+ border-width: 1px !important;
41
+ border-color: #595959 !important;
42
+ }
43
+ .crayon-theme-powershell .crayon-marked-line.crayon-striped-line {
44
+ background: #012456 !important;
45
+ }
46
+ .crayon-theme-powershell .crayon-marked-num.crayon-striped-num {
47
+ background: #012456 !important;
48
+ color: #fff !important;
49
+ }/**/
50
+ .crayon-theme-powershell .crayon-marked-line.crayon-top {
51
+ }
52
+ .crayon-theme-powershell .crayon-marked-num.crayon-top {
53
+ }
54
+ .crayon-theme-powershell .crayon-marked-line.crayon-bottom {
55
+ }
56
+ .crayon-theme-powershell .crayon-marked-num.crayon-bottom {
57
+ }
58
+ .crayon-theme-powershell .crayon-info {
59
+ background: #333 !important;
60
+ border-bottom-width: 1px !important;
61
+ border-bottom-color: #b1af5e !important;
62
+ color: #fff !important;
63
+ border-bottom-style: solid !important;
64
+ }/**/
65
+ .crayon-theme-powershell .crayon-toolbar {
66
+ background: #4f4f4f !important;
67
+ border-bottom-width: 1px !important;
68
+ border-bottom-color: #2e2e2e !important;
69
+ border-bottom-style: solid !important;
70
+ }
71
+ .crayon-theme-powershell .crayon-toolbar > div {
72
+ float: left !important;
73
+ }
74
+ .crayon-theme-powershell .crayon-toolbar .crayon-tools {
75
+ float: right !important;
76
+ }
77
+ .crayon-theme-powershell .crayon-title {
78
+ color: #fff !important;
79
+ }
80
+ .crayon-theme-powershell .crayon-language {
81
+ color: #fff !important;
82
+ }
83
+ .crayon-theme-powershell .crayon-button {
84
+ }
85
+ .crayon-theme-powershell .crayon-button:hover {
86
+ background-color: #d3d3d3 !important;
87
+ color: #666;
88
+ }
89
+ .crayon-theme-powershell .crayon-button.crayon-pressed:hover {
90
+ background-color: #bcbcbc !important;
91
+ color: #666;
92
+ }
93
+ .crayon-theme-powershell .crayon-button.crayon-pressed {
94
+ background-color: #626262 !important;
95
+ color: #FFF;
96
+ }
97
+ .crayon-theme-powershell .crayon-button.crayon-pressed:active {
98
+ background-color: #626262 !important;
99
+ color: #FFF;
100
+ }
101
+ .crayon-theme-powershell .crayon-button:active {
102
+ background-color: #bcbcbc !important;
103
+ color: #FFF;
104
+ }
105
+ .crayon-theme-powershell .crayon-pre .crayon-c {
106
+ color: #57A64A !important;
107
+ font-style: italic !important;
108
+ }
109
+ .crayon-theme-powershell .crayon-pre .crayon-s {
110
+ color: #D69D85 !important;
111
+ }
112
+ .crayon-theme-powershell .crayon-pre .crayon-p {
113
+ color: #9B9B8B !important;
114
+ }
115
+ .crayon-theme-powershell .crayon-pre .crayon-ta {
116
+ color: #d35a5a !important;
117
+ }
118
+ .crayon-theme-powershell .crayon-pre .crayon-k {
119
+ color: #569CD6 !important;
120
+ }
121
+ .crayon-theme-powershell .crayon-pre .crayon-st {
122
+ color: #20b0da !important;
123
+ }
124
+ .crayon-theme-powershell .crayon-pre .crayon-r {
125
+ color: #f4bb15 !important;
126
+ }
127
+ .crayon-theme-powershell .crayon-pre .crayon-t {
128
+ color: #f4bb15 !important;
129
+ }
130
+ .crayon-theme-powershell .crayon-pre .crayon-m {
131
+ color: #569CD6 !important;
132
+ }
133
+ .crayon-theme-powershell .crayon-pre .crayon-i {
134
+ color: #dcdcdc !important;
135
+ }
136
+ .crayon-theme-powershell .crayon-pre .crayon-e {
137
+ color: #ff8000 !important;
138
+ }
139
+ .crayon-theme-powershell .crayon-pre .crayon-v {
140
+ color: #bdb76b !important;
141
+ }
142
+ .crayon-theme-powershell .crayon-pre .crayon-cn {
143
+ color: #e7a37a !important;
144
+ }
145
+ .crayon-theme-powershell .crayon-pre .crayon-o {
146
+ color: #DADADA !important;
147
+ }
148
+ .crayon-theme-powershell .crayon-pre .crayon-sy {
149
+ color: #D8D8D8 !important;
150
+ }
151
+ .crayon-theme-powershell .crayon-pre .crayon-n {
152
+ color: #666 !important;
153
+ font-style: italic !important;
154
+ }
155
+ .crayon-theme-powershell .crayon-pre .crayon-f {
156
+ color: #999999 !important;
157
+ }
158
+ .crayon-theme-powershell .crayon-pre .crayon-h {
159
+ color: #006fe0 !important;
160
+ }
161
+ .crayon-theme-powershell .crayon-pre {
162
+ color: #ffffff !important;
163
+ }
164
+ .crayon-theme-powershell {
165
+ background: #012456 !important;
166
+ }
themes/prism-like/prism-like.css ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Prism Like
3
+ Description: Theme similar to prism.js with rounded corners
4
+ Version: 1.0
5
+ Author: Augustin
6
+ */
7
+ .crayon-theme-prism-like {
8
+ margin-bottom: 25px !important;
9
+ background-color: #F5F2F0 !important;
10
+ border-radius: 5px;
11
+ font-size: 100% !important;
12
+ line-height: 130% !important;
13
+ border-style: solid !important;
14
+ border-width: 1px !important;
15
+ border-color: #dedede !important;
16
+ background: #f5f5f5 !important;
17
+ }
18
+ .crayon-theme-prism-like .crayon-toolbar {
19
+ background-color: #eee !important;
20
+ border-bottom-style: solid !important;
21
+ border-bottom-width: 1px !important;
22
+ border-bottom-color: #dedede !important;
23
+ }
24
+ .crayon-theme-prism-like .crayon-toolbar .crayon-language {
25
+ font-size: 80% !important;
26
+ color: #666 !important;
27
+ }
28
+ .crayon-theme-prism-like .crayon-toolbar .crayon-title {
29
+ font-size: 80% !important;
30
+ color: #666 !important;
31
+ }
32
+ .crayon-theme-prism-like .crayon-table .crayon-nums {
33
+ background-color: #eee !important;
34
+ }
35
+ .crayon-theme-prism-like .crayon-table .crayon-nums-content {
36
+ padding-top: 5px !important;
37
+ padding-bottom: 3px !important;
38
+ }
39
+ .crayon-theme-prism-like .crayon-table .crayon-num {
40
+ min-width: 1.2em !important;
41
+ text-align: right !important;
42
+ color: #aaa !important;
43
+ border-right-style: solid !important;
44
+ border-right-width: 1px !important;
45
+ border-right-color: #dedede !important;
46
+ }
47
+ .crayon-theme-prism-like .crayon-pre {
48
+ padding-top: 5px !important;
49
+ padding-bottom: 3px !important;
50
+ }
51
+ .crayon-theme-prism-like .crayon-marked-line {
52
+ background: #fffee2 !important;
53
+ }
54
+ .crayon-theme-prism-like .crayon-marked-num {
55
+ color: #1561ac !important;
56
+ background: #b3d3f4 !important;
57
+ border-width: 1px !important;
58
+ border-color: #5999d9 !important;
59
+ }
60
+ .crayon-theme-prism-like .crayon-pre .crayon-c {
61
+ color: #7D8B99 !important;
62
+ font-style: italic !important;
63
+ }
64
+ .crayon-theme-prism-like .crayon-pre .crayon-s {
65
+ color: #669900 !important;
66
+ }
67
+ .crayon-theme-prism-like .crayon-pre .crayon-p {
68
+ color: #b85c00 !important;
69
+ }
70
+ .crayon-theme-prism-like .crayon-pre .crayon-ta {
71
+ color: #FF0000 !important;
72
+ }
73
+ .crayon-theme-prism-like .crayon-pre .crayon-k {
74
+ color: #2F9C0A !important;
75
+ }
76
+ .crayon-theme-prism-like .crayon-pre .crayon-st {
77
+ color: #1990C5 !important;
78
+ font-weight: bold !important;
79
+ }
80
+ .crayon-theme-prism-like .crayon-pre .crayon-r {
81
+ color: #1990C5 !important;
82
+ font-weight: bold !important;
83
+ }
84
+ .crayon-theme-prism-like .crayon-pre .crayon-t {
85
+ color: #1990C5 !important;
86
+ font-weight: bold !important;
87
+ }
88
+ .crayon-theme-prism-like .crayon-pre .crayon-m {
89
+ color: #1990C5 !important;
90
+ font-weight: bold !important;
91
+ }
92
+ .crayon-theme-prism-like .crayon-pre .crayon-i {
93
+ color: #000 !important;
94
+ }
95
+ .crayon-theme-prism-like .crayon-pre .crayon-e {
96
+ color: black !important;
97
+ }
98
+ .crayon-theme-prism-like .crayon-pre .crayon-v {
99
+ color: black !important;
100
+ }
101
+ .crayon-theme-prism-like .crayon-pre .crayon-cn {
102
+ color: #990055 !important;
103
+ }
104
+ .crayon-theme-prism-like .crayon-pre .crayon-o {
105
+ color: #A67F59 !important;
106
+ }
107
+ .crayon-theme-prism-like .crayon-pre .crayon-sy {
108
+ color: #333 !important;
109
+ }
110
+ .crayon-theme-prism-like .crayon-pre .crayon-n {
111
+ color: #666 !important;
112
+ font-style: italic !important;
113
+ }
114
+ .crayon-theme-prism-like .crayon-pre .crayon-f {
115
+ color: #999 !important;
116
+ }
117
+ .crayon-theme-prism-like .crayon-pre .crayon-h {
118
+ color: #006fe0 !important;
119
+ }
themes/qtcreator/qtcreator.css ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Qtcreator
3
+ Description: Qt Creator IDE Theme
4
+ Version: 0.1
5
+ Author: Andrei Shikalev
6
+ URL: http://шикалёв.рф
7
+ */
8
+ .crayon-theme-qtcreator {
9
+ border-width: 1px !important;
10
+ border-color: #999 !important;
11
+ border-style: solid !important;
12
+ text-shadow: none !important;
13
+ background: #ffffff !important;
14
+ }
15
+ .crayon-theme-qtcreator-inline {
16
+ border-width: 1px !important;
17
+ border-color: #ddd !important;
18
+ border-style: solid !important;
19
+ background: #ffffff !important;
20
+ }
21
+ .crayon-theme-qtcreator .crayon-table .crayon-nums {
22
+ background: #f0f0f0 !important;
23
+ color: #a0a0a0 !important;
24
+ }
25
+ .crayon-theme-qtcreator .crayon-striped-line {
26
+ background: #ffffff !important;
27
+ }
28
+ .crayon-theme-qtcreator .crayon-striped-num {
29
+ background: #f0f0f0 !important;
30
+ color: #a0a0a0 !important;
31
+ }
32
+ .crayon-theme-qtcreator .crayon-marked-line {
33
+ background: #e0f0ff !important;
34
+ border-width: 1px !important;
35
+ border-color: #ffffff !important;
36
+ }
37
+ .crayon-theme-qtcreator .crayon-marked-num {
38
+ color: #a0a0a0 !important;
39
+ background: #f0f0f0 !important;
40
+ border-width: 0px !important;
41
+ border-color: #ffffff !important;
42
+ }
43
+ .crayon-theme-qtcreator .crayon-marked-line.crayon-striped-line {
44
+ background: #ffffff !important;
45
+ }
46
+ .crayon-theme-qtcreator .crayon-marked-num.crayon-striped-num {
47
+ background: #f0f0f0 !important;
48
+ color: #a0a0a0 !important;
49
+ }
50
+ .crayon-theme-qtcreator .crayon-marked-line.crayon-top {
51
+ border-top-style: solid !important;
52
+ }
53
+ .crayon-theme-qtcreator .crayon-marked-num.crayon-top {
54
+ border-top-style: solid !important;
55
+ }
56
+ .crayon-theme-qtcreator .crayon-marked-line.crayon-bottom {
57
+ border-bottom-style: solid !important;
58
+ }
59
+ .crayon-theme-qtcreator .crayon-marked-num.crayon-bottom {
60
+ border-bottom-style: solid !important;
61
+ }
62
+ .crayon-theme-qtcreator .crayon-info {
63
+ background: #faf9d7 !important;
64
+ border-bottom-width: 1px !important;
65
+ border-bottom-color: #b1af5e !important;
66
+ border-bottom-style: solid !important;
67
+ color: #7e7d34 !important;
68
+ }
69
+ .crayon-theme-qtcreator .crayon-toolbar {
70
+ background: #DDD !important;
71
+ border-bottom-width: 1px !important;
72
+ border-bottom-color: #BBB !important;
73
+ border-bottom-style: solid !important;
74
+ }
75
+ .crayon-theme-qtcreator .crayon-toolbar > div {
76
+ float: left !important;
77
+ }
78
+ .crayon-theme-qtcreator .crayon-toolbar .crayon-tools {
79
+ float: right !important;
80
+ }
81
+ .crayon-theme-qtcreator .crayon-title {
82
+ color: #333 !important;
83
+ }
84
+ .crayon-theme-qtcreator .crayon-language {
85
+ color: #999 !important;
86
+ }
87
+ .crayon-theme-qtcreator a.crayon-button {
88
+ background-color: transparent !important;
89
+ }
90
+ .crayon-theme-qtcreator a.crayon-button:hover {
91
+ background-color: #EEE !important;
92
+ color: #666;
93
+ }
94
+ .crayon-theme-qtcreator a.crayon-button.crayon-pressed:hover {
95
+ background-color: #EEE !important;
96
+ color: #666;
97
+ }
98
+ .crayon-theme-qtcreator a.crayon-button.crayon-pressed {
99
+ background-color: #BCBCBC !important;
100
+ color: #FFF;
101
+ }
102
+ .crayon-theme-qtcreator a.crayon-button.crayon-pressed:active {
103
+ background-color: #BCBCBC !important;
104
+ color: #FFF;
105
+ }
106
+ .crayon-theme-qtcreator a.crayon-button:active {
107
+ background-color: #BCBCBC !important;
108
+ color: #FFF;
109
+ }
110
+ .crayon-theme-qtcreator .crayon-pre .crayon-c {
111
+ color: #008000 !important;
112
+ }
113
+ .crayon-theme-qtcreator .crayon-pre .crayon-s {
114
+ color: #008000 !important;
115
+ }
116
+ .crayon-theme-qtcreator .crayon-pre .crayon-p {
117
+ color: #000080 !important;
118
+ }
119
+ .crayon-theme-qtcreator .crayon-pre .crayon-ta {
120
+ color: #FF0000 !important;
121
+ }
122
+ .crayon-theme-qtcreator .crayon-pre .crayon-k {
123
+ color: #808000 !important;
124
+ }
125
+ .crayon-theme-qtcreator .crayon-pre .crayon-st {
126
+ color: #000000 !important;
127
+ }
128
+ .crayon-theme-qtcreator .crayon-pre .crayon-r {
129
+ color: #22eb15 !important;
130
+ }
131
+ .crayon-theme-qtcreator .crayon-pre .crayon-t {
132
+ color: #808000 !important;
133
+ }
134
+ .crayon-theme-qtcreator .crayon-pre .crayon-m {
135
+ color: #808000 !important;
136
+ }
137
+ .crayon-theme-qtcreator .crayon-pre .crayon-i {
138
+ color: #15a6eb !important;
139
+ }
140
+ .crayon-theme-qtcreator .crayon-pre .crayon-e {
141
+ color: #800080 !important;
142
+ }
143
+ .crayon-theme-qtcreator .crayon-pre .crayon-v {
144
+ color: #000000 !important;
145
+ }
146
+ .crayon-theme-qtcreator .crayon-pre .crayon-cn {
147
+ color: #000000 !important;
148
+ }
149
+ .crayon-theme-qtcreator .crayon-pre .crayon-o {
150
+ color: #000000 !important;
151
+ }
152
+ .crayon-theme-qtcreator .crayon-pre .crayon-sy {
153
+ color: #333 !important;
154
+ }
155
+ .crayon-theme-qtcreator .crayon-pre .crayon-n {
156
+ color: #666 !important;
157
+ font-style: italic !important;
158
+ }
159
+ .crayon-theme-qtcreator .crayon-pre .crayon-f {
160
+ color: #ffffff !important;
161
+ }
162
+ .crayon-theme-qtcreator .crayon-pre .crayon-h {
163
+ color: #006fe0 !important;
164
+ }
themes/xcode/xcode.css ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Xcode
3
+ Description: Default Xcode theme
4
+ Version: 1.0
5
+ Author: Yaroslav Erohin
6
+ URL: http://ysoftware.ru/blog
7
+ */
8
+ .crayon-theme-xcode {
9
+ margin-bottom: 25px !important;
10
+ background-color: #f8f8ff !important;
11
+ font-size: 100% !important;
12
+ line-height: 130% !important;
13
+ border-style: solid !important;
14
+ border-width: 1px !important;
15
+ }
16
+ .crayon-theme-xcode .crayon-toolbar {
17
+ background-color: #eee !important;
18
+ border-bottom-style: solid !important;
19
+ border-bottom-width: 1px !important;
20
+ }
21
+ .crayon-theme-xcode .crayon-toolbar .crayon-language {
22
+ font-size: 80% !important;
23
+ color: #666 !important;
24
+ }
25
+ .crayon-theme-xcode .crayon-toolbar .crayon-title {
26
+ font-size: 80% !important;
27
+ color: #666 !important;
28
+ }
29
+ .crayon-theme-xcode .crayon-table .crayon-nums {
30
+ background-color: #eee !important;
31
+ }
32
+ .crayon-theme-xcode .crayon-table .crayon-nums-content {
33
+ padding-top: 5px !important;
34
+ padding-bottom: 3px !important;
35
+ }
36
+ .crayon-theme-xcode .crayon-table .crayon-num {
37
+ min-width: 1.2em !important;
38
+ text-align: right !important;
39
+ color: #aaa !important;
40
+ border-right-style: solid !important;
41
+ border-right-width: 1px !important;
42
+ border-right-color: #dedede !important;
43
+ }
44
+ .crayon-theme-xcode .crayon-pre {
45
+ padding-top: 5px !important;
46
+ padding-bottom: 3px !important;
47
+ }
48
+ .crayon-theme-xcode .crayon-marked-line {
49
+ background: #A4CDFF !important;
50
+ }
51
+ .crayon-theme-xcode .crayon-marked-num {
52
+ }
53
+ .crayon-theme-xcode .crayon-pre .crayon-c {
54
+ color: #007400 !important;
55
+ font-style: italic !important;
56
+ }
57
+ .crayon-theme-xcode .crayon-pre .crayon-s {
58
+ color: #C41A16 !important;
59
+ }
60
+ .crayon-theme-xcode .crayon-pre .crayon-p {
61
+ color: #643820 !important;
62
+ }
63
+ .crayon-theme-xcode .crayon-pre .crayon-ta {
64
+ color: #FF0000 !important;
65
+ }
66
+ .crayon-theme-xcode .crayon-pre .crayon-k {
67
+ color: #AA0D91 !important;
68
+ }
69
+ .crayon-theme-xcode .crayon-pre .crayon-st {
70
+ color: #AA0D91 !important;
71
+ }
72
+ .crayon-theme-xcode .crayon-pre .crayon-r {
73
+ color: #AA0D91 !important;
74
+ }
75
+ .crayon-theme-xcode .crayon-pre .crayon-t {
76
+ color: #5C2699 !important;
77
+ }
78
+ .crayon-theme-xcode .crayon-pre .crayon-m {
79
+ color: #800080 !important;
80
+ }
81
+ .crayon-theme-xcode .crayon-pre .crayon-i {
82
+ color: #AA0D91 !important;
83
+ }
84
+ .crayon-theme-xcode .crayon-pre .crayon-e {
85
+ color: #2E0D6E !important;
86
+ }
87
+ .crayon-theme-xcode .crayon-pre .crayon-v {
88
+ color: #5C2699 !important;
89
+ }
90
+ .crayon-theme-xcode .crayon-pre .crayon-cn {
91
+ color: #2E0D6E !important;
92
+ }
93
+ .crayon-theme-xcode .crayon-pre .crayon-o {
94
+ color: #2E0D6E !important;
95
+ }
96
+ .crayon-theme-xcode .crayon-pre .crayon-sy {
97
+ color: #333 !important;
98
+ }
99
+ .crayon-theme-xcode .crayon-pre .crayon-n {
100
+ color: #666 !important;
101
+ font-style: italic !important;
102
+ }
103
+ .crayon-theme-xcode .crayon-pre .crayon-f {
104
+ color: #999 !important;
105
+ }
106
+ .crayon-theme-xcode .crayon-pre .crayon-h {
107
+ color: #006fe0 !important;
108
+ }
109
+ .crayon-theme-xcode .crayon-striped-num {
110
+ }
111
+ .crayon-theme-xcode .crayon-button {
112
+ }
113
+ .crayon-theme-xcode .crayon-marked-line.crayon-striped-line {
114
+ background: #A4CDFF !important;
115
+ }
116
+ .crayon-theme-xcode .crayon-striped-line {
117
+ background: #f6f6f6 !important;
118
+ }
119
+ .crayon-theme-xcode .crayon-marked-num.crayon-bottom {
120
+ }
trans/crayon-syntax-highlighter-ar_AR.po CHANGED
@@ -690,7 +690,7 @@ msgstr "تمكين التعرف على أوسمة &lt;pre&gt; في الاضاف
690
  #: ../crayon_settings_wp.class.php:1117
691
  #, php-format
692
  msgid ""
693
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
694
  "the %sTag Editor%s instead and convert legacy tags."
695
  msgstr ""
696
 
690
  #: ../crayon_settings_wp.class.php:1117
691
  #, php-format
692
  msgid ""
693
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
694
  "the %sTag Editor%s instead and convert legacy tags."
695
  msgstr ""
696
 
trans/crayon-syntax-highlighter-de_DE.po CHANGED
@@ -1054,7 +1054,7 @@ msgstr "Behandle &lt;code&gt; wie"
1054
  #: crayon_settings_wp.class.php:1118
1055
  #, php-format
1056
  #@ crayon-syntax-highlighter
1057
- msgid "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use the %sTag Editor%s instead and convert legacy tags."
1058
  msgstr "Diese Auszeichnung für Mini-Tags und Inline-Tags ist %sveraltet%s!. Bitte den %sTag Editor%s verwenden und veraltete Tags konvertieren."
1059
 
1060
  #: crayon_settings_wp.class.php:1143
1054
  #: crayon_settings_wp.class.php:1118
1055
  #, php-format
1056
  #@ crayon-syntax-highlighter
1057
+ msgid "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use the %sTag Editor%s instead and convert legacy tags."
1058
  msgstr "Diese Auszeichnung für Mini-Tags und Inline-Tags ist %sveraltet%s!. Bitte den %sTag Editor%s verwenden und veraltete Tags konvertieren."
1059
 
1060
  #: crayon_settings_wp.class.php:1143
trans/crayon-syntax-highlighter-fa_IR.po CHANGED
@@ -727,7 +727,7 @@ msgstr ""
727
  #: ../crayon_settings_wp.class.php:1096
728
  #, php-format
729
  msgid ""
730
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
731
  "the %sTag Editor%s instead and convert legacy tags."
732
  msgstr ""
733
 
727
  #: ../crayon_settings_wp.class.php:1096
728
  #, php-format
729
  msgid ""
730
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
731
  "the %sTag Editor%s instead and convert legacy tags."
732
  msgstr ""
733
 
trans/crayon-syntax-highlighter-fi.po CHANGED
@@ -1059,7 +1059,7 @@ msgstr "Käsittele &lt;code&gt;-tägit kuten"
1059
  #: crayon_settings_wp.class.php:1118
1060
  #, php-format
1061
  msgid ""
1062
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
1063
  "the %sTag Editor%s instead and convert legacy tags."
1064
  msgstr ""
1065
  "Tämä minitägien merkintätapa on %spoistumassa%s! Käytä niiden sijaan "
1059
  #: crayon_settings_wp.class.php:1118
1060
  #, php-format
1061
  msgid ""
1062
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
1063
  "the %sTag Editor%s instead and convert legacy tags."
1064
  msgstr ""
1065
  "Tämä minitägien merkintätapa on %spoistumassa%s! Käytä niiden sijaan "
trans/crayon-syntax-highlighter-ko_KR.po CHANGED
@@ -714,10 +714,10 @@ msgstr "Capture &lt;pre&gt; tags as Crayons"
714
  #: ../crayon_settings_wp.class.php:1121
715
  #, php-format
716
  msgid ""
717
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
718
  "the %sTag Editor%s instead and convert legacy tags."
719
  msgstr ""
720
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
721
  "the %sTag Editor%s instead and convert legacy tags."
722
 
723
  # @ crayon-syntax-highlighter
714
  #: ../crayon_settings_wp.class.php:1121
715
  #, php-format
716
  msgid ""
717
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
718
  "the %sTag Editor%s instead and convert legacy tags."
719
  msgstr ""
720
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
721
  "the %sTag Editor%s instead and convert legacy tags."
722
 
723
  # @ crayon-syntax-highlighter
trans/crayon-syntax-highlighter-nb_NO.mo ADDED
Binary file
trans/crayon-syntax-highlighter-nb_NO.po ADDED
@@ -0,0 +1,1185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: crayon-syntax-highlighter\n"
4
+ "POT-Creation-Date: 2015-05-20 00:51+1000\n"
5
+ "PO-Revision-Date: 2015-05-20 00:51+1000\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: nb_NO\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
+ "X-Poedit-Basepath: /Users/Aram/Development/Web/crayon/wp-content/plugins/"
14
+ "crayon-syntax-highlighter\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: crayon__;crayon_n;crayon_e\n"
18
+ "X-Poedit-SearchPath-0: ..\n"
19
+
20
+ #: ../crayon-syntax-highlighter/crayon_formatter.class.php:290
21
+ msgid "Toggle Line Numbers"
22
+ msgstr "Vis linjenumre"
23
+
24
+ #: ../crayon-syntax-highlighter/crayon_formatter.class.php:294
25
+ msgid "Toggle Plain Code"
26
+ msgstr "Vis ren kildekode"
27
+
28
+ #: ../crayon-syntax-highlighter/crayon_formatter.class.php:298
29
+ msgid "Toggle Line Wrap"
30
+ msgstr "Vis linjeskift"
31
+
32
+ #: ../crayon-syntax-highlighter/crayon_formatter.class.php:302
33
+ msgid "Expand Code"
34
+ msgstr "Utvid kildekode"
35
+
36
+ #: ../crayon-syntax-highlighter/crayon_formatter.class.php:306
37
+ msgid "Copy"
38
+ msgstr "Kopier"
39
+
40
+ #: ../crayon-syntax-highlighter/crayon_formatter.class.php:310
41
+ msgid "Open Code In New Window"
42
+ msgstr "Åpne kildekode i nytt vindu"
43
+
44
+ #: ../crayon-syntax-highlighter/crayon_formatter.class.php:327
45
+ msgid "Contains Mixed Languages"
46
+ msgstr "Inneholder ulike språk"
47
+
48
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:158
49
+ msgid "Hourly"
50
+ msgstr "Hver time"
51
+
52
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:158
53
+ msgid "Daily"
54
+ msgstr "Daglig"
55
+
56
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:159
57
+ msgid "Weekly"
58
+ msgstr "Ukentlig"
59
+
60
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:159
61
+ msgid "Monthly"
62
+ msgstr "Månedlig"
63
+
64
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:160
65
+ msgid "Immediately"
66
+ msgstr "Umiddelbart"
67
+
68
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:171
69
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:175
70
+ msgid "Max"
71
+ msgstr "Maks"
72
+
73
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:171
74
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:175
75
+ msgid "Min"
76
+ msgstr "Min"
77
+
78
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:171
79
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:175
80
+ msgid "Static"
81
+ msgstr "Statisk"
82
+
83
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:173
84
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:177
85
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:750
86
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:759
87
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1038
88
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1040
89
+ msgid "Pixels"
90
+ msgstr "Bildepunkter"
91
+
92
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:173
93
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:177
94
+ msgid "Percent"
95
+ msgstr "Prosent"
96
+
97
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:186
98
+ msgid "None"
99
+ msgstr "Ingen"
100
+
101
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:186
102
+ msgid "Left"
103
+ msgstr "Venstre"
104
+
105
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:186
106
+ msgid "Center"
107
+ msgstr "Midtstilt"
108
+
109
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:186
110
+ msgid "Right"
111
+ msgstr "Høyre"
112
+
113
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:188
114
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:214
115
+ msgid "On MouseOver"
116
+ msgstr "Ved \"MouseOver\""
117
+
118
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:188
119
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:194
120
+ msgid "Always"
121
+ msgstr "Alltid"
122
+
123
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:188
124
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:194
125
+ msgid "Never"
126
+ msgstr "Aldri"
127
+
128
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:194
129
+ msgid "When Found"
130
+ msgstr "Når funnet"
131
+
132
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:214
133
+ msgid "On Double Click"
134
+ msgstr "Ved dobbelklikk"
135
+
136
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:214
137
+ msgid "On Single Click"
138
+ msgstr "Ved enkelklikk"
139
+
140
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:214
141
+ msgid "Disable Mouse Events"
142
+ msgstr "Slå av musehendelser"
143
+
144
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:222
145
+ msgid "An error has occurred. Please try again later."
146
+ msgstr "En feil oppstod, vennligst prøv senere."
147
+
148
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:238
149
+ msgid "Inline Tag"
150
+ msgstr "Innside tag"
151
+
152
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:238
153
+ msgid "Block Tag"
154
+ msgstr "Blokk tag"
155
+
156
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:251
157
+ msgid "Add Code"
158
+ msgstr "Legg til kildekode"
159
+
160
+ #: ../crayon-syntax-highlighter/crayon_settings.class.php:252
161
+ msgid "Edit Code"
162
+ msgstr "Rediger kildekode"
163
+
164
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:54
165
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:211
166
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1256
167
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:257
168
+ msgid "Settings"
169
+ msgstr "Innstillinger"
170
+
171
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:137
172
+ #, php-format
173
+ msgid "Press %s to Copy, %s to Paste"
174
+ msgstr "Trykk %s for å kopiere, %s for å lime inn"
175
+
176
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:138
177
+ msgid "Click To Expand Code"
178
+ msgstr "Klikk for å utvide kildekode"
179
+
180
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:180
181
+ msgid "Prompt"
182
+ msgstr "Spør"
183
+
184
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:181
185
+ msgid "Value"
186
+ msgstr "Verdi"
187
+
188
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:182
189
+ msgid "Alert"
190
+ msgstr "Varsel"
191
+
192
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:183
193
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:898
194
+ msgid "No"
195
+ msgstr "Nei"
196
+
197
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:184
198
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:898
199
+ msgid "Yes"
200
+ msgstr "Ja"
201
+
202
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:185
203
+ msgid "Confirm"
204
+ msgstr "Bekreft"
205
+
206
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:186
207
+ msgid "Change Code"
208
+ msgstr "Endre kildekode"
209
+
210
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:194
211
+ msgid "You do not have sufficient permissions to access this page."
212
+ msgstr "Nødvendig tilgang mangler for denne siden."
213
+
214
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:226
215
+ msgid "Save Changes"
216
+ msgstr "Lagre endringer"
217
+
218
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:233
219
+ msgid "Reset Settings"
220
+ msgstr "Nullstill innstillinger"
221
+
222
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:492
223
+ msgid "General"
224
+ msgstr "Generell"
225
+
226
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:493
227
+ msgid "Theme"
228
+ msgstr "Tema"
229
+
230
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:494
231
+ msgid "Font"
232
+ msgstr "Skrifttype"
233
+
234
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:495
235
+ msgid "Metrics"
236
+ msgstr "Verdier"
237
+
238
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:496
239
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:296
240
+ msgid "Toolbar"
241
+ msgstr "Verktøylinje"
242
+
243
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:497
244
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:294
245
+ msgid "Lines"
246
+ msgstr "Linjer"
247
+
248
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:498
249
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:217
250
+ msgid "Code"
251
+ msgstr "Kildekode"
252
+
253
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:499
254
+ msgid "Tags"
255
+ msgstr "Tagger"
256
+
257
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:500
258
+ msgid "Languages"
259
+ msgstr "Språk"
260
+
261
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:501
262
+ msgid "Files"
263
+ msgstr "Filer"
264
+
265
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:502
266
+ msgid "Posts"
267
+ msgstr "Poster"
268
+
269
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:503
270
+ msgid "Tag Editor"
271
+ msgstr "Taggredigering"
272
+
273
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:504
274
+ msgid "Misc"
275
+ msgstr "Diverse"
276
+
277
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:507
278
+ msgid "Debug"
279
+ msgstr "Feilsøk"
280
+
281
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:508
282
+ msgid "Errors"
283
+ msgstr "Feil"
284
+
285
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:509
286
+ msgid "Log"
287
+ msgstr "Logg"
288
+
289
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:512
290
+ msgid "About"
291
+ msgstr "Om"
292
+
293
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:727
294
+ msgid "Height"
295
+ msgstr "Høyde"
296
+
297
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:733
298
+ msgid "Width"
299
+ msgstr "Bredde"
300
+
301
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:739
302
+ msgid "Top Margin"
303
+ msgstr "Toppmarg"
304
+
305
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:740
306
+ msgid "Bottom Margin"
307
+ msgstr "Bunnmarg"
308
+
309
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:741
310
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:746
311
+ msgid "Left Margin"
312
+ msgstr "Venstremarg"
313
+
314
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:742
315
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:746
316
+ msgid "Right Margin"
317
+ msgstr "Høyremarg"
318
+
319
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:752
320
+ msgid "Horizontal Alignment"
321
+ msgstr "Horisontal justering"
322
+
323
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:755
324
+ msgid "Allow floating elements to surround Crayon"
325
+ msgstr "La flytende elementer omslutte Crayon"
326
+
327
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:757
328
+ msgid "Inline Margin"
329
+ msgstr "Innsidemarg"
330
+
331
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:765
332
+ msgid "Display the Toolbar"
333
+ msgstr "Vis verktøylinjen"
334
+
335
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:768
336
+ msgid "Overlay the toolbar on code rather than push it down when possible"
337
+ msgstr "La verktøylinjen ligge over kildekoden enn å flytte den ned når mulig"
338
+
339
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:769
340
+ msgid "Toggle the toolbar on single click when it is overlayed"
341
+ msgstr "Vis verktøylinjen med enkelklikk når den er ligger over"
342
+
343
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:770
344
+ msgid "Delay hiding the toolbar on MouseOut"
345
+ msgstr "Forsink skjuling av verktøylinjen når musen fjernes"
346
+
347
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:772
348
+ msgid "Display the title when provided"
349
+ msgstr "Vis tittel hvis oppgitt"
350
+
351
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:773
352
+ msgid "Display the language"
353
+ msgstr "Vis språk"
354
+
355
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:780
356
+ msgid "Display striped code lines"
357
+ msgstr "Vis stripete kildekode"
358
+
359
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:781
360
+ msgid "Enable line marking for important lines"
361
+ msgstr "Vis merking av viktige linjer"
362
+
363
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:782
364
+ msgid "Enable line ranges for showing only parts of code"
365
+ msgstr "Vis linjeutvalg for å vise deler av kildekoden"
366
+
367
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:783
368
+ msgid "Display line numbers by default"
369
+ msgstr "Vis linjenummer"
370
+
371
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:784
372
+ msgid "Enable line number toggling"
373
+ msgstr "Gjør vis/skjul av linjenummer mulig"
374
+
375
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:785
376
+ msgid "Wrap lines by default"
377
+ msgstr "Bryt linjer som standard"
378
+
379
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:786
380
+ msgid "Enable line wrap toggling"
381
+ msgstr "Gjør valg av linjebryting mulig"
382
+
383
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:787
384
+ msgid "Start line numbers from"
385
+ msgstr "Første linjenummer"
386
+
387
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:798
388
+ msgid "When no language is provided, use the fallback"
389
+ msgstr "Uten oppgitt språk, fall tilbake til"
390
+
391
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:804
392
+ #, php-format
393
+ msgid "%d language has been detected."
394
+ msgstr "%d språk har blitt oppdaget."
395
+
396
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:805
397
+ msgid "Parsing was successful"
398
+ msgstr "Tolking var vellykket"
399
+
400
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:805
401
+ msgid "Parsing was unsuccessful"
402
+ msgstr "Tolking var mislykket"
403
+
404
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:811
405
+ #, php-format
406
+ msgid "The selected language with id %s could not be loaded"
407
+ msgstr "Det valgte språket med id %s kunne ikke lastes"
408
+
409
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:814
410
+ msgid "Show Languages"
411
+ msgstr "Vis språk"
412
+
413
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:816
414
+ msgid "No languages could be parsed."
415
+ msgstr "Ingen språk kunne tolkes."
416
+
417
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:827
418
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:878
419
+ msgid "ID"
420
+ msgstr "ID"
421
+
422
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:827
423
+ msgid "Name"
424
+ msgstr "Navn"
425
+
426
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:827
427
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1194
428
+ msgid "Version"
429
+ msgstr "Versjon"
430
+
431
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:827
432
+ msgid "File Extensions"
433
+ msgstr "Filendelse"
434
+
435
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:827
436
+ msgid "Aliases"
437
+ msgstr "Aliaser"
438
+
439
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:827
440
+ msgid "State"
441
+ msgstr "Tilstand"
442
+
443
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:842
444
+ msgid ""
445
+ "Languages that have the same extension as their name don't need to "
446
+ "explicitly map extensions."
447
+ msgstr ""
448
+ "Språk med samme endelse som deres navn, trenger ikke eksplisitte endelser."
449
+
450
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:844
451
+ msgid "No languages could be found."
452
+ msgstr "Ingen språk funnet."
453
+
454
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:851
455
+ msgid "Show Crayon Posts"
456
+ msgstr "Vis Crayon-innlegg"
457
+
458
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:852
459
+ msgid "Refresh"
460
+ msgstr "Oppdater"
461
+
462
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:878
463
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:194
464
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:311
465
+ msgid "Title"
466
+ msgstr "Tittel"
467
+
468
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:878
469
+ msgid "Posted"
470
+ msgstr "Publisert"
471
+
472
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:878
473
+ msgid "Modifed"
474
+ msgstr "Endret"
475
+
476
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:878
477
+ msgid "Contains Legacy Tags?"
478
+ msgstr "Inneholder utdaterte tagger?"
479
+
480
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:993
481
+ msgid "Edit"
482
+ msgstr "Rediger"
483
+
484
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:993
485
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:199
486
+ msgid "Duplicate"
487
+ msgstr "Lag kopi"
488
+
489
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:993
490
+ msgid "Submit"
491
+ msgstr "Send"
492
+
493
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:994
494
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:196
495
+ msgid "Delete"
496
+ msgstr "Slett"
497
+
498
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:996
499
+ msgid "Loading..."
500
+ msgstr "Laster inn..."
501
+
502
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:998
503
+ msgid "Duplicate a Stock Theme into a User Theme to allow editing."
504
+ msgstr "Lag en brukerkopi av grunntema for å tillate endringer."
505
+
506
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1009
507
+ #, php-format
508
+ msgid ""
509
+ "Change the %1$sfallback language%2$s to change the sample code or %3$schange "
510
+ "it manually%4$s. Lines 5-7 are marked."
511
+ msgstr ""
512
+ "Endre %1$sspråk til å falle tilbake på%2$s for å endre eksempelkode eller "
513
+ "%3$sendre manuelt%4$s. Linjene 5-7 er markert."
514
+
515
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1016
516
+ msgid "Enable Live Preview"
517
+ msgstr "Tillat levende forhåndsvisning"
518
+
519
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1018
520
+ msgid "Enqueue themes in the header (more efficient)."
521
+ msgstr "Sett tema inn i filens topptekst (mer effektivt). "
522
+
523
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1021
524
+ #, php-format
525
+ msgid "The selected theme with id %s could not be loaded"
526
+ msgstr "Det valgte temaet med id %s kunne ikke lastes"
527
+
528
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1036
529
+ msgid "Custom Font Size"
530
+ msgstr "Tilpasset skriftstørrelse"
531
+
532
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1038
533
+ msgid "Line Height"
534
+ msgstr "Linjehøyde"
535
+
536
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1043
537
+ #, php-format
538
+ msgid "The selected font with id %s could not be loaded"
539
+ msgstr "Valgt skrifttype med id %s kunne ikke lastes"
540
+
541
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1049
542
+ msgid "Enqueue fonts in the header (more efficient)."
543
+ msgstr "Sett inn skrifttype i topptekst (mer effektivt)."
544
+
545
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1054
546
+ msgid "Enable plain code view and display"
547
+ msgstr "Muliggjør visning av ren kildekode"
548
+
549
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1057
550
+ msgid "Enable plain code toggling"
551
+ msgstr "Gjør valg av kodevisning mulig"
552
+
553
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1058
554
+ msgid "Show the plain code by default"
555
+ msgstr "Vis ren kildekode som standard"
556
+
557
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1059
558
+ msgid "Enable code copy/paste"
559
+ msgstr "Muliggjør kopiering/innliming av kildekode"
560
+
561
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1061
562
+ msgid "Enable opening code in a window"
563
+ msgstr "Muliggjør åpning av kildekode i et vindu"
564
+
565
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1062
566
+ msgid "Always display scrollbars"
567
+ msgstr "Alltid vis rullefelt"
568
+
569
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1063
570
+ msgid "Minimize code"
571
+ msgstr "Minimer kildekode"
572
+
573
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1064
574
+ msgid "Expand code beyond page borders on mouseover"
575
+ msgstr "Utvid kildekode utover siden når musen er over"
576
+
577
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1065
578
+ msgid "Enable code expanding toggling when possible"
579
+ msgstr "Gjør valg av kildekodeutvidelse mulig"
580
+
581
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1068
582
+ msgid "Decode HTML entities in code"
583
+ msgstr "Tolk HTML i kode"
584
+
585
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1070
586
+ msgid "Decode HTML entities in attributes"
587
+ msgstr "Tolk HTML i attributter"
588
+
589
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1072
590
+ msgid "Remove whitespace surrounding the shortcode content"
591
+ msgstr "Fjern blanke tegn som omslutter forkortet kode"
592
+
593
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1074
594
+ msgid "Remove &lt;code&gt; tags surrounding the shortcode content"
595
+ msgstr "Fjern &lt;code&gt;-tagger som omslutter forkortet kode"
596
+
597
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1075
598
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
599
+ msgstr "Tillat markering av blandede språk med avgrensinger og tagger."
600
+
601
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1077
602
+ msgid "Show Mixed Language Icon (+)"
603
+ msgstr "Vis ikon for blandede språk (+)"
604
+
605
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1079
606
+ msgid "Convert tabs to spaces"
607
+ msgstr "Gjør om tabulator til mellomrom"
608
+
609
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1080
610
+ msgid "Tab size in spaces"
611
+ msgstr "Tabulatorstørrelse"
612
+
613
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1082
614
+ msgid "Blank lines before code:"
615
+ msgstr "Blanke linjer før kode:"
616
+
617
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1084
618
+ msgid "Blank lines after code:"
619
+ msgstr "Blanke linjer etter kode:"
620
+
621
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1089
622
+ msgid "Capture Inline Tags"
623
+ msgstr "Fang opp innside-tagger"
624
+
625
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1090
626
+ msgid "Wrap Inline Tags"
627
+ msgstr "Pakk inn innside-tagger"
628
+
629
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1091
630
+ msgid "Capture &lt;code&gt; as"
631
+ msgstr "Fang &lt;code&gt; som"
632
+
633
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1095
634
+ msgid "Capture `backquotes` as &lt;code&gt;"
635
+ msgstr "Fang ` som &lt;code&gt;"
636
+
637
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1096
638
+ msgid "Capture &lt;pre&gt; tags as Crayons"
639
+ msgstr "Fang &lt;pre&gt; som 'Crayon'"
640
+
641
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1098
642
+ #, php-format
643
+ msgid ""
644
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
645
+ "the %sTag Editor%s instead and convert legacy tags."
646
+ msgstr ""
647
+ "Bruk av disse markeringene for minitagger og innside-tagger er nå %sforeldet"
648
+ "%s! Bruk %sTagredigering%s og gjør om utdaterte tagger."
649
+
650
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1099
651
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
652
+ msgstr "Fang opp minitagger som [php][/php] for Crayon."
653
+
654
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1100
655
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
656
+ msgstr "Fang innside-tagger som {php}{/php} i setninger."
657
+
658
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1101
659
+ msgid "Enable [plain][/plain] tag."
660
+ msgstr "Tillat [plain][/plain] tagg."
661
+
662
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1106
663
+ msgid ""
664
+ "When loading local files and a relative path is given for the URL, use the "
665
+ "absolute path"
666
+ msgstr ""
667
+ "Når en lokal fil åpnes og en relativ sti er angitt for URL, bruk denne "
668
+ "absolutte stien"
669
+
670
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1109
671
+ msgid "Followed by your relative URL."
672
+ msgstr "etterfulgt av din relative URL."
673
+
674
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1116
675
+ msgid "Convert Legacy Tags"
676
+ msgstr "Gjør om utdaterte tagger"
677
+
678
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1119
679
+ msgid "No Legacy Tags Found"
680
+ msgstr "Ingen utdaterte tagger funnet"
681
+
682
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1123
683
+ msgid "Encode"
684
+ msgstr "Kode"
685
+
686
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1125
687
+ #, php-format
688
+ msgid ""
689
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
690
+ "attribute"
691
+ msgstr "Bruk %s for å skille innstillingsnavn fra verdiene i &lt;pre&gt;"
692
+
693
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1128
694
+ msgid ""
695
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
696
+ "bbPress)"
697
+ msgstr ""
698
+ "Vis tagredigering i hvilken som helst TinyMCE på grensesnittet (f.eks. "
699
+ "bbPress)"
700
+
701
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1129
702
+ msgid "Display Tag Editor settings on the frontend"
703
+ msgstr "Vis tagredigering på grensesnittet"
704
+
705
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1130
706
+ msgid "Add Code button text"
707
+ msgstr "Tekst for knapp for å legge til kode"
708
+
709
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1132
710
+ msgid "Edit Code button text"
711
+ msgstr "Tekst for knapp for å redigere kode"
712
+
713
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1134
714
+ msgid "Quicktag button text"
715
+ msgstr "Tekst for kvikk-knapp"
716
+
717
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1139
718
+ msgid "Clear the cache used to store remote code requests"
719
+ msgstr "Fjern buffer brukt for å lagre eksterne spørringer"
720
+
721
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1141
722
+ msgid "Clear Now"
723
+ msgstr "Fjern nå"
724
+
725
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1142
726
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
727
+ msgstr "Forsøk å laste inn Crayon CSS og JavaScript kun ved behov"
728
+
729
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1143
730
+ msgid "Disable enqueuing for page templates that may contain The Loop."
731
+ msgstr "Slå av innsatte sidemaler som kan inneholde sløyfer."
732
+
733
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1144
734
+ msgid "Allow Crayons inside comments"
735
+ msgstr "Tillat Crayon i kommentarer"
736
+
737
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1145
738
+ msgid "Remove Crayons from excerpts"
739
+ msgstr "Fjern Crayon fra utdrag"
740
+
741
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1146
742
+ msgid "Load Crayons only from the main Wordpress query"
743
+ msgstr "Last inn Crayon kun fra Wordpress hovedsøk"
744
+
745
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1147
746
+ msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
747
+ msgstr "Slå av musbevegelser for berøringsenheter (f.eks. 'MouseOver')"
748
+
749
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1148
750
+ msgid "Disable animations"
751
+ msgstr "Slå av animasjoner"
752
+
753
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1149
754
+ msgid "Disable runtime stats"
755
+ msgstr "Slå av aktiv statistikk"
756
+
757
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1150
758
+ msgid "Disable for posts before"
759
+ msgstr "Slå av for innlegg før"
760
+
761
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1153
762
+ msgid ""
763
+ "Load scripts in the page footer using wp_footer() to improve loading "
764
+ "performance."
765
+ msgstr "Last inn skript i sidens bunntekst med wp_footer() for å øke ytelsen."
766
+
767
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1159
768
+ msgid "Log errors for individual Crayons"
769
+ msgstr "Logg feil for individuelle Crayon's"
770
+
771
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1160
772
+ msgid "Log system-wide errors"
773
+ msgstr "Logg feil for alle Crayon's"
774
+
775
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1161
776
+ msgid "Display custom message for errors"
777
+ msgstr "Vis egentilpasset feilmelding:"
778
+
779
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1173
780
+ msgid "Show Log"
781
+ msgstr "Vis logg"
782
+
783
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1173
784
+ msgid "Hide Log"
785
+ msgstr "Skjul logg"
786
+
787
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1175
788
+ msgid "Clear Log"
789
+ msgstr "Fjern logg"
790
+
791
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1176
792
+ msgid "Email Admin"
793
+ msgstr "Send e-post til admin"
794
+
795
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1178
796
+ msgid "Email Developer"
797
+ msgstr "Send e-post til utvikler"
798
+
799
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1180
800
+ msgid "The log is currently empty."
801
+ msgstr "Loggen er tom for øyeblikket."
802
+
803
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1182
804
+ msgid "The log file exists and is writable."
805
+ msgstr "Loggfilen eksisterer og kan skrives til."
806
+
807
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1182
808
+ msgid "The log file exists and is not writable."
809
+ msgstr "Loggfilen eksisterer men er ikke skrivbar."
810
+
811
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1184
812
+ msgid "The log file does not exist and is not writable."
813
+ msgstr "Loggfilen eksisterer ikke og kan ikke skrives."
814
+
815
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1196
816
+ msgid "Developer"
817
+ msgstr "Utvikler"
818
+
819
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1197
820
+ msgid "Translators"
821
+ msgstr "Oversettere"
822
+
823
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1250
824
+ msgid "?"
825
+ msgstr "?"
826
+
827
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1257
828
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:333
829
+ msgid "Theme Editor"
830
+ msgstr "Temaredigering"
831
+
832
+ #: ../crayon-syntax-highlighter/crayon_settings_wp.class.php:1258
833
+ msgid "Donate"
834
+ msgstr "Doner"
835
+
836
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:68
837
+ msgid "Add"
838
+ msgstr "Legg til"
839
+
840
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:69
841
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:349
842
+ msgid "Save"
843
+ msgstr "Lagre"
844
+
845
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:185
846
+ msgid "OK"
847
+ msgstr "OK"
848
+
849
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:187
850
+ msgid "Cancel"
851
+ msgstr "Avbryt"
852
+
853
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:196
854
+ msgid "A short description"
855
+ msgstr "En kort beskrivelse"
856
+
857
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:198
858
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:315
859
+ msgid "Inline"
860
+ msgstr "Innside"
861
+
862
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:200
863
+ msgid "Don't Highlight"
864
+ msgstr "Ikke marker"
865
+
866
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:205
867
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:319
868
+ msgid "Language"
869
+ msgstr "Språk"
870
+
871
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:208
872
+ msgid "Line Range"
873
+ msgstr "Linjer"
874
+
875
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:209
876
+ msgid "(e.g. 3-5 or 3)"
877
+ msgstr "(f.eks. 3-5 eller 3)"
878
+
879
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:210
880
+ msgid "Marked Lines"
881
+ msgstr "Merkerte linjer"
882
+
883
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:211
884
+ msgid "(e.g. 1,2,3-5)"
885
+ msgstr "(f.eks. 1,2,3-5)"
886
+
887
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:220
888
+ msgid "Clear"
889
+ msgstr "Fjern"
890
+
891
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:224
892
+ msgid "Paste your code here, or type it in manually."
893
+ msgstr "Lim inn kildekode her, eller skriv inn manuelt."
894
+
895
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:228
896
+ msgid "URL"
897
+ msgstr "URL"
898
+
899
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:230
900
+ msgid "Relative local path or absolute URL"
901
+ msgstr "Relativ lokal sti eller absolutt URL"
902
+
903
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:233
904
+ msgid ""
905
+ "If the URL fails to load, the code above will be shown instead. If no code "
906
+ "exists, an error is shown."
907
+ msgstr ""
908
+ "Hvis URL ikke lastes inn, overnevnte kildekode vil bli vist. Om ingen kode "
909
+ "eksistere, vil en feilmelding vises."
910
+
911
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:235
912
+ #, php-format
913
+ msgid ""
914
+ "If a relative local path is given it will be appended to %s - which is "
915
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
916
+ msgstr ""
917
+ "Om en relativ lokal sti angis vil den legges til %s - som er definert i "
918
+ "%sCrayon &gt; innstillingsfiler &gt;%s."
919
+
920
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:262
921
+ msgid "Change the following settings to override their global values."
922
+ msgstr "Endre følgende innstillinger for å overstyre de globale verdiene."
923
+
924
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:264
925
+ msgid "Only changes (shown yellow) are applied."
926
+ msgstr "Kun endringer (i gult) vil bli brukt."
927
+
928
+ #: ../crayon-syntax-highlighter/util/tag-editor/crayon_tag_editor_wp.class.php:266
929
+ #, php-format
930
+ msgid ""
931
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
932
+ "affect overridden settings."
933
+ msgstr ""
934
+ "Framtidige endringer i %sCrayon &gt; Innstillinger%s vil ikke påvirke "
935
+ "overstyrte valg."
936
+
937
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:192
938
+ msgid "User-Defined Theme"
939
+ msgstr "Brukerdefinert tema"
940
+
941
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:193
942
+ msgid "Stock Theme"
943
+ msgstr "Grunntema"
944
+
945
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:194
946
+ msgid "Success!"
947
+ msgstr "Suksess!"
948
+
949
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:195
950
+ msgid "Failed!"
951
+ msgstr "Feil!"
952
+
953
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:197
954
+ #, php-format
955
+ msgid "Are you sure you want to delete the \"%s\" theme?"
956
+ msgstr "Er du sikker på at du vil slette temaet \"%s\"?"
957
+
958
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:198
959
+ msgid "Delete failed!"
960
+ msgstr "Sletting mislykket!"
961
+
962
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:200
963
+ msgid "New Name"
964
+ msgstr "Nytt navn"
965
+
966
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:201
967
+ msgid "Duplicate failed!"
968
+ msgstr "Kopiering mislykket!"
969
+
970
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:202
971
+ msgid "Please check the log for details."
972
+ msgstr "Sjekk loggfilen for detaljer."
973
+
974
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:203
975
+ msgid "Are you sure you want to discard all changes?"
976
+ msgstr "Er du sikker på at du vil forkaste alle endringene?"
977
+
978
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:204
979
+ #, php-format
980
+ msgid "Editing Theme: %s"
981
+ msgstr "Redigerer tema: %s"
982
+
983
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:205
984
+ #, php-format
985
+ msgid "Creating Theme: %s"
986
+ msgstr "Oppretter tema: %s"
987
+
988
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:206
989
+ msgid "Submit Your Theme"
990
+ msgstr "Send inn ditt tema"
991
+
992
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:207
993
+ msgid ""
994
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
995
+ "email me your theme - make sure it's considerably different from the stock "
996
+ "themes :)"
997
+ msgstr ""
998
+ "Send inn ditt tema for å bli et grunntema i Crayon! Dette vil sendes som e-"
999
+ "post til meg - så forsikre deg først at det er vesentlig annerledes fra de "
1000
+ "andre temaene :)"
1001
+
1002
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:208
1003
+ msgid "Message"
1004
+ msgstr "Beskjed"
1005
+
1006
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:209
1007
+ msgid "Please include this theme in Crayon!"
1008
+ msgstr "Vennligst inkluder dette temaet i Crayon!"
1009
+
1010
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:210
1011
+ msgid "Submit was successful."
1012
+ msgstr "Innsending var vellykket."
1013
+
1014
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:211
1015
+ msgid "Submit failed!"
1016
+ msgstr "Innsending mislykkes!"
1017
+
1018
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:291
1019
+ msgid "Information"
1020
+ msgstr "Informasjon"
1021
+
1022
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:292
1023
+ msgid "Highlighting"
1024
+ msgstr "Markering"
1025
+
1026
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:293
1027
+ msgid "Frame"
1028
+ msgstr "Ramme"
1029
+
1030
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:295
1031
+ msgid "Line Numbers"
1032
+ msgstr "Linjenummer"
1033
+
1034
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:298
1035
+ msgid "Background"
1036
+ msgstr "Bakgrunn"
1037
+
1038
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:299
1039
+ msgid "Text"
1040
+ msgstr "Tekst"
1041
+
1042
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:300
1043
+ msgid "Border"
1044
+ msgstr "Kant"
1045
+
1046
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:301
1047
+ msgid "Top Border"
1048
+ msgstr "Toppkant"
1049
+
1050
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:302
1051
+ msgid "Bottom Border"
1052
+ msgstr "Bunnkant"
1053
+
1054
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:303
1055
+ msgid "Right Border"
1056
+ msgstr "Høyrekant"
1057
+
1058
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:305
1059
+ msgid "Hover"
1060
+ msgstr "Musover"
1061
+
1062
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:306
1063
+ msgid "Active"
1064
+ msgstr "Aktiv"
1065
+
1066
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:307
1067
+ msgid "Pressed"
1068
+ msgstr "Presset"
1069
+
1070
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:308
1071
+ msgid "Pressed & Hover"
1072
+ msgstr "Press og musover"
1073
+
1074
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:309
1075
+ msgid "Pressed & Active"
1076
+ msgstr "Press og aktiv"
1077
+
1078
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:312
1079
+ msgid "Buttons"
1080
+ msgstr "Knapper"
1081
+
1082
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:314
1083
+ msgid "Normal"
1084
+ msgstr "Normal"
1085
+
1086
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:316
1087
+ msgid "Striped"
1088
+ msgstr "Stripet"
1089
+
1090
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:317
1091
+ msgid "Marked"
1092
+ msgstr "Markert"
1093
+
1094
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:318
1095
+ msgid "Striped & Marked"
1096
+ msgstr "Stripet og markert"
1097
+
1098
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:348
1099
+ msgid "Back To Settings"
1100
+ msgstr "Tilbake til innstillinger"
1101
+
1102
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:387
1103
+ msgid "Comment"
1104
+ msgstr "Kommentar"
1105
+
1106
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:388
1107
+ msgid "String"
1108
+ msgstr "Streng"
1109
+
1110
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:389
1111
+ msgid "Preprocessor"
1112
+ msgstr "Preprossessor"
1113
+
1114
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:390
1115
+ msgid "Tag"
1116
+ msgstr "Tagg"
1117
+
1118
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:391
1119
+ msgid "Keyword"
1120
+ msgstr "Nøkkelord"
1121
+
1122
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:392
1123
+ msgid "Statement"
1124
+ msgstr "Utsagn"
1125
+
1126
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:393
1127
+ msgid "Reserved"
1128
+ msgstr "Reservert"
1129
+
1130
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:394
1131
+ msgid "Type"
1132
+ msgstr "Type"
1133
+
1134
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:395
1135
+ msgid "Modifier"
1136
+ msgstr "Modifikator"
1137
+
1138
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:396
1139
+ msgid "Identifier"
1140
+ msgstr "Identifikator"
1141
+
1142
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:397
1143
+ msgid "Entity"
1144
+ msgstr "Enhet"
1145
+
1146
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:398
1147
+ msgid "Variable"
1148
+ msgstr "Variabel"
1149
+
1150
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:399
1151
+ msgid "Constant"
1152
+ msgstr "Konstant"
1153
+
1154
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:400
1155
+ msgid "Operator"
1156
+ msgstr "Operator"
1157
+
1158
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:401
1159
+ msgid "Symbol"
1160
+ msgstr "Symbol"
1161
+
1162
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:402
1163
+ msgid "Notation"
1164
+ msgstr "Notering"
1165
+
1166
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:403
1167
+ msgid "Faded"
1168
+ msgstr "Bleket"
1169
+
1170
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:404
1171
+ msgid "HTML"
1172
+ msgstr "HTML"
1173
+
1174
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:405
1175
+ msgid "Unhighlighted"
1176
+ msgstr "Umarkert"
1177
+
1178
+ #: ../crayon-syntax-highlighter/util/theme-editor/theme_editor.php:539
1179
+ msgid "(Used for Copy/Paste)"
1180
+ msgstr "(For å kopiere/lime inn)"
1181
+
1182
+ #~ msgid ""
1183
+ #~ "$INPUT_PATH/util.js $INPUT_PATH/jquery.popup.js $INPUT_PATH/crayon.js"
1184
+ #~ msgstr ""
1185
+ #~ "$INPUT_PATH/util.js $INPUT_PATH/jquery.popup.js $INPUT_PATH/crayon.js"
trans/crayon-syntax-highlighter-nl_NL.po CHANGED
@@ -694,7 +694,7 @@ msgstr "Behandel &lt;pre&gt; tags als Crayons"
694
  #: ../crayon_settings_wp.class.php:1121
695
  #, php-format
696
  msgid ""
697
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
698
  "the %sTag Editor%s instead and convert legacy tags."
699
  msgstr ""
700
  "Deze manier van het tonen van mini tags en inline tags wordt %sniet meer "
694
  #: ../crayon_settings_wp.class.php:1121
695
  #, php-format
696
  msgid ""
697
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
698
  "the %sTag Editor%s instead and convert legacy tags."
699
  msgstr ""
700
  "Deze manier van het tonen van mini tags en inline tags wordt %sniet meer "
trans/crayon-syntax-highlighter-pl_PL.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-pl_PL.po CHANGED
@@ -1,1014 +1,1186 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Crayon Syntax Highlighter v_1.17_beta\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2012-12-14 13:59:32+0000\n"
7
- "Last-Translator: Bartosz Romanowski <toszcze@gmail.com>\n"
 
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
13
- "X-Poedit-Language: Polish\n"
14
- "X-Poedit-Country: POLAND\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
 
17
  "X-Poedit-Basepath: ../\n"
18
- "X-Poedit-Bookmarks: \n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
 
22
- #: crayon_formatter.class.php:274
23
- #@ crayon-syntax-highlighter
 
 
 
24
  msgid "Toggle Plain Code"
25
  msgstr "Włącz/wyłącz czysty kod"
26
 
27
- #: crayon_formatter.class.php:275
28
- #@ crayon-syntax-highlighter
29
  msgid "Toggle Line Wrap"
30
  msgstr "Włącz/wyłącz zawijanie linii"
31
 
32
- #: crayon_formatter.class.php:276
33
- #@ crayon-syntax-highlighter
34
  msgid "Expand Code"
35
  msgstr "Rozwiń kod"
36
 
37
- #: crayon_formatter.class.php:278
38
- #, php-format
39
- #@ crayon-syntax-highlighter
40
- msgid "Press %s to Copy, %s to Paste"
41
- msgstr "Naciśnij %s aby skopiować, %s aby wkleić"
42
 
43
- #: crayon_formatter.class.php:278
44
- #@ crayon-syntax-highlighter
45
- msgid "Copy Plain Code"
46
- msgstr "Skopiuj czysty kod"
47
-
48
- #: crayon_formatter.class.php:280
49
- #@ crayon-syntax-highlighter
50
  msgid "Open Code In New Window"
51
  msgstr "Otwórz kod w nowym oknie"
52
 
53
- #: crayon_formatter.class.php:282
54
- #@ crayon-syntax-highlighter
55
- msgid "Toggle Line Numbers"
56
- msgstr "Włącz/wyłącz numery linii"
57
-
58
- #: crayon_formatter.class.php:285
59
- #@ crayon-syntax-highlighter
60
  msgid "Contains Mixed Languages"
61
  msgstr "Zawiera kilka języków"
62
 
63
- #: crayon_settings.class.php:145
64
- #@ crayon-syntax-highlighter
65
  msgid "Hourly"
66
  msgstr "Co godzinę"
67
 
68
- #: crayon_settings.class.php:145
69
- #@ crayon-syntax-highlighter
70
  msgid "Daily"
71
  msgstr "Raz dziennie"
72
 
73
- #: crayon_settings.class.php:146
74
- #@ crayon-syntax-highlighter
75
  msgid "Weekly"
76
  msgstr "Co tydzień"
77
 
78
- #: crayon_settings.class.php:146
79
- #@ crayon-syntax-highlighter
80
  msgid "Monthly"
81
  msgstr "Co miesiąc"
82
 
83
- #: crayon_settings.class.php:147
84
- #@ crayon-syntax-highlighter
85
  msgid "Immediately"
86
  msgstr "Natychmiast"
87
 
88
- #: crayon_settings.class.php:157
89
- #: crayon_settings.class.php:161
90
- #@ crayon-syntax-highlighter
91
  msgid "Max"
92
  msgstr "maks."
93
 
94
- #: crayon_settings.class.php:157
95
- #: crayon_settings.class.php:161
96
- #@ crayon-syntax-highlighter
97
  msgid "Min"
98
  msgstr "min."
99
 
100
- #: crayon_settings.class.php:157
101
- #: crayon_settings.class.php:161
102
- #@ crayon-syntax-highlighter
103
  msgid "Static"
104
  msgstr "stała"
105
 
106
- #: crayon_settings.class.php:159
107
- #: crayon_settings.class.php:163
108
- #: crayon_settings_wp.class.php:680
109
- #: crayon_settings_wp.class.php:689
110
- #: crayon_settings_wp.class.php:951
111
- #@ crayon-syntax-highlighter
112
  msgid "Pixels"
113
  msgstr "pikseli"
114
 
115
- #: crayon_settings.class.php:159
116
- #: crayon_settings.class.php:163
117
- #@ crayon-syntax-highlighter
118
  msgid "Percent"
119
  msgstr "procent"
120
 
121
- #: crayon_settings.class.php:172
122
- #@ crayon-syntax-highlighter
123
  msgid "None"
124
  msgstr "brak"
125
 
126
- #: crayon_settings.class.php:172
127
- #@ crayon-syntax-highlighter
128
  msgid "Left"
129
  msgstr "do lewej"
130
 
131
- #: crayon_settings.class.php:172
132
- #@ crayon-syntax-highlighter
133
  msgid "Center"
134
  msgstr "wyśrodkowane"
135
 
136
- #: crayon_settings.class.php:172
137
- #@ crayon-syntax-highlighter
138
  msgid "Right"
139
  msgstr "do prawej"
140
 
141
- #: crayon_settings.class.php:174
142
- #: crayon_settings.class.php:198
143
- #@ crayon-syntax-highlighter
144
  msgid "On MouseOver"
145
  msgstr "wskazanie myszą"
146
 
147
- #: crayon_settings.class.php:174
148
- #: crayon_settings.class.php:180
149
- #@ crayon-syntax-highlighter
150
  msgid "Always"
151
  msgstr "zawsze"
152
 
153
- #: crayon_settings.class.php:174
154
- #: crayon_settings.class.php:180
155
- #@ crayon-syntax-highlighter
156
  msgid "Never"
157
  msgstr "nigdy"
158
 
159
- #: crayon_settings.class.php:180
160
- #@ crayon-syntax-highlighter
161
  msgid "When Found"
162
  msgstr "gdy znaleziono"
163
 
164
- #: crayon_settings.class.php:198
165
- #@ crayon-syntax-highlighter
166
  msgid "On Double Click"
167
  msgstr "podwójne kliknięcie"
168
 
169
- #: crayon_settings.class.php:198
170
- #@ crayon-syntax-highlighter
171
  msgid "On Single Click"
172
  msgstr "pojedyncze kliknięcie"
173
 
174
- #: crayon_settings.class.php:198
175
- #@ crayon-syntax-highlighter
176
  msgid "Disable Mouse Events"
177
  msgstr "wyłącz zdarzenia myszy"
178
 
179
- #: crayon_settings.class.php:205
180
- #@ crayon-syntax-highlighter
181
  msgid "An error has occurred. Please try again later."
182
  msgstr "Wystąpił błąd. Spróbuj ponownie."
183
 
184
- #: crayon_settings_wp.class.php:49
185
- #: crayon_settings_wp.class.php:156
186
- #: crayon_settings_wp.class.php:1138
187
- #: util/tag-editor/crayon_tag_editor_wp.class.php:238
188
- #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  msgid "Settings"
190
  msgstr "Ustawienia"
191
 
192
- #: crayon_settings_wp.class.php:135
193
- #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  msgid "You do not have sufficient permissions to access this page."
195
  msgstr "Nie masz wystarczających uprawnień aby uzyskać dostęp do tej strony."
196
 
197
- #: crayon_settings_wp.class.php:171
198
- #@ crayon-syntax-highlighter
199
  msgid "Save Changes"
200
  msgstr "Zapisz zmiany"
201
 
202
- #: crayon_settings_wp.class.php:178
203
- #@ crayon-syntax-highlighter
204
  msgid "Reset Settings"
205
  msgstr "Resetuj ustawienia"
206
 
207
- #: crayon_settings_wp.class.php:423
208
- #@ crayon-syntax-highlighter
209
  msgid "General"
210
  msgstr "Ogólne"
211
 
212
- #: crayon_settings_wp.class.php:424
213
- #@ crayon-syntax-highlighter
214
  msgid "Theme"
215
  msgstr "Motyw"
216
 
217
- #: crayon_settings_wp.class.php:425
218
- #@ crayon-syntax-highlighter
219
  msgid "Font"
220
  msgstr "Czcionka"
221
 
222
- #: crayon_settings_wp.class.php:426
223
- #@ crayon-syntax-highlighter
224
  msgid "Metrics"
225
  msgstr "Rozmiary"
226
 
227
- #: crayon_settings_wp.class.php:427
228
- #@ crayon-syntax-highlighter
229
  msgid "Toolbar"
230
  msgstr "Pasek narzędzi"
231
 
232
- #: crayon_settings_wp.class.php:428
233
- #@ crayon-syntax-highlighter
234
  msgid "Lines"
235
  msgstr "Linie"
236
 
237
- #: crayon_settings_wp.class.php:429
238
- #: util/tag-editor/crayon_tag_editor_wp.class.php:201
239
- #@ crayon-syntax-highlighter
240
  msgid "Code"
241
  msgstr "Kod"
242
 
243
- #: crayon_settings_wp.class.php:430
244
- #@ crayon-syntax-highlighter
245
  msgid "Tags"
246
  msgstr "Znaczniki"
247
 
248
- #: crayon_settings_wp.class.php:431
249
- #@ crayon-syntax-highlighter
250
  msgid "Languages"
251
  msgstr "Języki"
252
 
253
- #: crayon_settings_wp.class.php:432
254
- #@ crayon-syntax-highlighter
255
  msgid "Files"
256
  msgstr "Pliki"
257
 
258
- #: crayon_settings_wp.class.php:433
259
- #@ crayon-syntax-highlighter
260
  msgid "Posts"
261
  msgstr "Wpisy"
262
 
263
- #: crayon_settings_wp.class.php:434
264
- #@ crayon-syntax-highlighter
265
  msgid "Tag Editor"
266
  msgstr "Edytor znaczników"
267
 
268
- #: crayon_settings_wp.class.php:435
269
- #@ crayon-syntax-highlighter
270
  msgid "Misc"
271
  msgstr "Różne"
272
 
273
- #: crayon_settings_wp.class.php:438
274
- #@ crayon-syntax-highlighter
275
  msgid "Debug"
276
  msgstr "Debugowanie"
277
 
278
- #: crayon_settings_wp.class.php:439
279
- #@ crayon-syntax-highlighter
280
  msgid "Errors"
281
  msgstr "Błędy"
282
 
283
- #: crayon_settings_wp.class.php:440
284
- #@ crayon-syntax-highlighter
285
  msgid "Log"
286
  msgstr "Log"
287
 
288
- #: crayon_settings_wp.class.php:443
289
- #@ crayon-syntax-highlighter
290
  msgid "About"
291
  msgstr "O wtyczce"
292
 
293
- #: crayon_settings_wp.class.php:657
294
- #@ crayon-syntax-highlighter
295
  msgid "Height"
296
  msgstr "Wysokość"
297
 
298
- #: crayon_settings_wp.class.php:663
299
- #@ crayon-syntax-highlighter
300
  msgid "Width"
301
  msgstr "Szerokość"
302
 
303
- #: crayon_settings_wp.class.php:669
304
- #@ crayon-syntax-highlighter
305
  msgid "Top Margin"
306
  msgstr "Górny margines"
307
 
308
- #: crayon_settings_wp.class.php:670
309
- #@ crayon-syntax-highlighter
310
  msgid "Bottom Margin"
311
  msgstr "Dolny margines"
312
 
313
- #: crayon_settings_wp.class.php:671
314
- #: crayon_settings_wp.class.php:676
315
- #@ crayon-syntax-highlighter
316
  msgid "Left Margin"
317
  msgstr "Lewy margines"
318
 
319
- #: crayon_settings_wp.class.php:672
320
- #: crayon_settings_wp.class.php:676
321
- #@ crayon-syntax-highlighter
322
  msgid "Right Margin"
323
  msgstr "Prawy margines"
324
 
325
- #: crayon_settings_wp.class.php:682
326
- #@ crayon-syntax-highlighter
327
  msgid "Horizontal Alignment"
328
  msgstr "Wyrównanie w poziomie"
329
 
330
- #: crayon_settings_wp.class.php:685
331
- #@ crayon-syntax-highlighter
332
  msgid "Allow floating elements to surround Crayon"
333
  msgstr "Pozwalaj elementom opływającym na otaczanie Crayona"
334
 
335
- #: crayon_settings_wp.class.php:687
336
- #@ crayon-syntax-highlighter
337
  msgid "Inline Margin"
338
  msgstr "Margines dla elementu liniowego"
339
 
340
- #: crayon_settings_wp.class.php:695
341
- #@ crayon-syntax-highlighter
342
  msgid "Display the Toolbar"
343
  msgstr "Pokazuj pasek narzędzi"
344
 
345
- #: crayon_settings_wp.class.php:698
346
- #@ crayon-syntax-highlighter
347
  msgid "Overlay the toolbar on code rather than push it down when possible"
348
- msgstr "Jeśli to możliwe, wyświetlaj pasek narzędzi nad kodem zamiast przesuwać go w dół"
 
 
349
 
350
- #: crayon_settings_wp.class.php:699
351
- #@ crayon-syntax-highlighter
352
  msgid "Toggle the toolbar on single click when it is overlayed"
353
- msgstr "Włączaj/wyłączaj pasek narzędzi pojedynczym kliknięciem gdy przykrywa kod"
 
354
 
355
- #: crayon_settings_wp.class.php:700
356
- #@ crayon-syntax-highlighter
357
  msgid "Delay hiding the toolbar on MouseOut"
358
  msgstr "Opóźniaj ukrywanie paska narzędzi po przesunięciu kursora myszy"
359
 
360
- #: crayon_settings_wp.class.php:702
361
- #@ crayon-syntax-highlighter
362
  msgid "Display the title when provided"
363
  msgstr "Pokazuj tytuł jeśli został podany"
364
 
365
- #: crayon_settings_wp.class.php:703
366
- #@ crayon-syntax-highlighter
367
  msgid "Display the language"
368
  msgstr "Pokazuj język"
369
 
370
- #: crayon_settings_wp.class.php:710
371
- #@ crayon-syntax-highlighter
372
  msgid "Display striped code lines"
373
  msgstr "Wyświetla paski dla linii kodu"
374
 
375
- #: crayon_settings_wp.class.php:711
376
- #@ crayon-syntax-highlighter
377
  msgid "Enable line marking for important lines"
378
  msgstr "Włącz możliwość oznaczania ważnych linii"
379
 
380
- #: crayon_settings_wp.class.php:712
381
- #@ crayon-syntax-highlighter
382
  msgid "Enable line ranges for showing only parts of code"
383
- msgstr "Włącz możliwość określania zakresów, aby pokazywać tylko fragmenty kodu"
 
384
 
385
- #: crayon_settings_wp.class.php:713
386
- #@ crayon-syntax-highlighter
387
  msgid "Display line numbers by default"
388
  msgstr "Domyślnie pokazuj numery linii"
389
 
390
- #: crayon_settings_wp.class.php:714
391
- #@ crayon-syntax-highlighter
392
  msgid "Enable line number toggling"
393
  msgstr "Włącz możliwość włączania i wyłączania numerów linii"
394
 
395
- #: crayon_settings_wp.class.php:715
396
- #@ crayon-syntax-highlighter
397
  msgid "Wrap lines by default"
398
  msgstr "Domyślnie zawijaj linie"
399
 
400
- #: crayon_settings_wp.class.php:716
401
- #@ crayon-syntax-highlighter
402
  msgid "Enable line wrap toggling"
403
  msgstr "Włącz możliwość włączania/wyłączania zawijania linii"
404
 
405
- #: crayon_settings_wp.class.php:717
406
- #@ crayon-syntax-highlighter
407
  msgid "Start line numbers from"
408
  msgstr "Zacznij numerowanie linii od"
409
 
410
- #: crayon_settings_wp.class.php:728
411
- #@ crayon-syntax-highlighter
412
  msgid "When no language is provided, use the fallback"
413
  msgstr "Gdy nie podano języka, użyj tego:"
414
 
415
- #: crayon_settings_wp.class.php:734
416
- #, php-format
417
- #@ crayon-syntax-highlighter
418
  msgid "%d language has been detected."
419
  msgid_plural "%d languages have been detected."
420
  msgstr[0] "%d język został wykryty."
421
  msgstr[1] "%d języki zostały wykryty."
422
  msgstr[2] "%d języków zostało wykrytych."
423
 
424
- #: crayon_settings_wp.class.php:735
425
- #@ crayon-syntax-highlighter
426
  msgid "Parsing was successful"
427
  msgstr "Parsowanie powiodło się"
428
 
429
- #: crayon_settings_wp.class.php:735
430
- #@ crayon-syntax-highlighter
431
  msgid "Parsing was unsuccessful"
432
  msgstr "Parsowanie nie powiodło się"
433
 
434
- #: crayon_settings_wp.class.php:741
435
- #, php-format
436
- #@ crayon-syntax-highlighter
437
  msgid "The selected language with id %s could not be loaded"
438
  msgstr "Wybrany język o id %s nie mógł zostać załadowany"
439
 
440
- #: crayon_settings_wp.class.php:744
441
- #@ crayon-syntax-highlighter
442
  msgid "Show Languages"
443
  msgstr "Pokaż języki"
444
 
445
- #: crayon_settings_wp.class.php:780
446
- #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
447
  msgid "Show Crayon Posts"
448
  msgstr "Pokaż wpisy ze znacznikami Crayon"
449
 
450
- #: crayon_settings_wp.class.php:781
451
- #@ crayon-syntax-highlighter
452
  msgid "Refresh"
453
  msgstr "Odśwież"
454
 
455
- #: crayon_settings_wp.class.php:806
456
- #@ crayon-syntax-highlighter
457
- msgid "ID"
458
- msgstr "ID"
459
-
460
- #: crayon_settings_wp.class.php:806
461
- #: util/tag-editor/crayon_tag_editor_wp.class.php:179
462
- #@ crayon-syntax-highlighter
463
  msgid "Title"
464
  msgstr "Tytuł"
465
 
466
- #: crayon_settings_wp.class.php:806
467
- #@ crayon-syntax-highlighter
468
  msgid "Posted"
469
  msgstr "Opublikowany"
470
 
471
- #: crayon_settings_wp.class.php:806
472
- #@ crayon-syntax-highlighter
473
  msgid "Modifed"
474
  msgstr "Zmodyfikowany"
475
 
476
- #: crayon_settings_wp.class.php:806
477
- #@ crayon-syntax-highlighter
478
  msgid "Contains Legacy Tags?"
479
  msgstr "Zawiera stare znaczniki?"
480
 
481
- #: crayon_settings_wp.class.php:826
482
- #@ crayon-syntax-highlighter
483
- msgid "Yes"
484
- msgstr "Tak"
485
-
486
- #: crayon_settings_wp.class.php:826
487
- #@ crayon-syntax-highlighter
488
- msgid "No"
489
- msgstr "Nie"
490
-
491
- #: crayon_settings_wp.class.php:910
492
- #@ crayon-syntax-highlighter
493
  msgid "Edit"
494
  msgstr "Edytuj"
495
 
496
- #: crayon_settings_wp.class.php:910
497
- #@ crayon-syntax-highlighter
498
  msgid "Duplicate"
499
  msgstr "Duplikuj"
500
 
501
- #: crayon_settings_wp.class.php:910
502
- #@ crayon-syntax-highlighter
503
- msgid "Create"
504
- msgstr "Utwórz"
505
 
506
- #: crayon_settings_wp.class.php:910
507
- #@ crayon-syntax-highlighter
508
  msgid "Delete"
509
  msgstr "Usuń"
510
 
511
- #: crayon_settings_wp.class.php:912
512
- #@ crayon-syntax-highlighter
513
  msgid "Loading..."
514
  msgstr "Ładowanie..."
515
 
516
- #: crayon_settings_wp.class.php:927
517
- #, php-format
518
- #@ crayon-syntax-highlighter
519
- msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
520
- msgstr "Zmień %1$sdomyślny język%2$s aby zmienić przykładowy kod. Linie 5-7 są oznaczone."
521
 
522
- #: crayon_settings_wp.class.php:932
523
- #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
524
  msgid "Enable Live Preview"
525
  msgstr "Włącz podgląd na żywo"
526
 
527
- #: crayon_settings_wp.class.php:934
528
- #@ crayon-syntax-highlighter
529
  msgid "Enqueue themes in the header (more efficient)."
530
  msgstr "Dodawaj pliki motywów do nagłówka (bardziej wydajne)."
531
 
532
- #: crayon_settings_wp.class.php:937
533
- #, php-format
534
- #@ crayon-syntax-highlighter
535
  msgid "The selected theme with id %s could not be loaded"
536
  msgstr "Wybrany motyw o id %s nie mógł zostać załadowany"
537
 
538
- #: crayon_settings_wp.class.php:949
539
- #@ crayon-syntax-highlighter
540
  msgid "Custom Font Size"
541
  msgstr "Własny rozmiar czcionki"
542
 
543
- #: crayon_settings_wp.class.php:954
544
- #, php-format
545
- #@ crayon-syntax-highlighter
 
 
546
  msgid "The selected font with id %s could not be loaded"
547
  msgstr "Wybrana czcionka o id %s nie mogła zostać załadowana"
548
 
549
- #: crayon_settings_wp.class.php:960
550
- #@ crayon-syntax-highlighter
551
  msgid "Enqueue fonts in the header (more efficient)."
552
  msgstr "Dodawaj pliki czcionek do nagłówka (bardziej wydajne)."
553
 
554
- #: crayon_settings_wp.class.php:965
555
- #@ crayon-syntax-highlighter
556
  msgid "Enable plain code view and display"
557
  msgstr "Włącz widok czystego kodu"
558
 
559
- #: crayon_settings_wp.class.php:968
560
- #@ crayon-syntax-highlighter
561
  msgid "Enable plain code toggling"
562
  msgstr "Włącz włączanie/wyłączanie czystego kodu"
563
 
564
- #: crayon_settings_wp.class.php:969
565
- #@ crayon-syntax-highlighter
566
  msgid "Show the plain code by default"
567
  msgstr "Domyślnie pokazuj czysty kod"
568
 
569
- #: crayon_settings_wp.class.php:970
570
- #@ crayon-syntax-highlighter
571
  msgid "Enable code copy/paste"
572
  msgstr "Włącz kopiowanie i wklejanie kodu"
573
 
574
- #: crayon_settings_wp.class.php:972
575
- #@ crayon-syntax-highlighter
576
  msgid "Enable opening code in a window"
577
  msgstr "Włącz otwieranie kodu w nowym oknie"
578
 
579
- #: crayon_settings_wp.class.php:973
580
- #@ crayon-syntax-highlighter
581
  msgid "Always display scrollbars"
582
  msgstr "Zawsze pokazuj paski przewijania"
583
 
584
- #: crayon_settings_wp.class.php:974
585
- #@ crayon-syntax-highlighter
 
 
 
586
  msgid "Expand code beyond page borders on mouseover"
587
  msgstr "Rozszerz kod poza krawędzie strony po wskazaniu myszą"
588
 
589
- #: crayon_settings_wp.class.php:975
590
- #@ crayon-syntax-highlighter
591
  msgid "Enable code expanding toggling when possible"
592
  msgstr "Gdy to możliwe, włącz włączanie/wyłączanie rozszerzania kodu"
593
 
594
- #: crayon_settings_wp.class.php:978
595
- #@ crayon-syntax-highlighter
596
  msgid "Decode HTML entities in code"
597
  msgstr "Dekoduj encje HTML w kodzie"
598
 
599
- #: crayon_settings_wp.class.php:980
600
- #@ crayon-syntax-highlighter
601
  msgid "Decode HTML entities in attributes"
602
  msgstr "Dekoduj encje HTML w atrybutach"
603
 
604
- #: crayon_settings_wp.class.php:982
605
- #@ crayon-syntax-highlighter
606
  msgid "Remove whitespace surrounding the shortcode content"
607
  msgstr "Usuwaj białe spacje otaczające zawartość shortcode"
608
 
609
- #: crayon_settings_wp.class.php:984
610
- #@ crayon-syntax-highlighter
 
 
 
611
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
612
  msgstr "Pozwalaj na kolorowanie wielu języków z separatorami i znacznikami."
613
 
614
- #: crayon_settings_wp.class.php:986
615
- #@ crayon-syntax-highlighter
616
  msgid "Show Mixed Language Icon (+)"
617
  msgstr "Pokazuj ikonę wielu języków (+)"
618
 
619
- #: crayon_settings_wp.class.php:988
620
- #@ crayon-syntax-highlighter
 
 
 
621
  msgid "Tab size in spaces"
622
  msgstr "Wielkość tabulatora (spacje)"
623
 
624
- #: crayon_settings_wp.class.php:990
625
- #@ crayon-syntax-highlighter
626
  msgid "Blank lines before code:"
627
  msgstr "Puste linie przed kodem:"
628
 
629
- #: crayon_settings_wp.class.php:992
630
- #@ crayon-syntax-highlighter
631
  msgid "Blank lines after code:"
632
  msgstr "Puste linie za kodem:"
633
 
634
- #: crayon_settings_wp.class.php:997
635
- #@ crayon-syntax-highlighter
636
- msgid "Capture Mini Tags like [php][/php] as Crayons."
637
- msgstr "Traktuj znaczniki w rodzaju [php][/php] jako znaczniki Crayona."
638
-
639
- #: crayon_settings_wp.class.php:998
640
- #@ crayon-syntax-highlighter
641
- msgid "Capture Inline Tags like {php}{/php} inside sentences."
642
- msgstr "Traktuj znaczniki liniowe w rodzaju {php}{/php} wewnątrz zdań jako znaczniki Crayona."
643
 
644
- #: crayon_settings_wp.class.php:999
645
- #@ crayon-syntax-highlighter
646
  msgid "Wrap Inline Tags"
647
  msgstr "Zawijaj znaczniki liniowe"
648
 
649
- #: crayon_settings_wp.class.php:1000
650
- #@ crayon-syntax-highlighter
 
 
 
651
  msgid "Capture `backquotes` as &lt;code&gt;"
652
  msgstr "Traktuj `odwrócone apostrofy` jako &lt;code&gt;"
653
 
654
- #: crayon_settings_wp.class.php:1001
655
- #@ crayon-syntax-highlighter
656
  msgid "Capture &lt;pre&gt; tags as Crayons"
657
  msgstr "Traktuj znaczniki &lt;pre&gt; jako znaczniki Crayona"
658
 
659
- #: crayon_settings_wp.class.php:1002
660
- #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
661
  msgid "Enable [plain][/plain] tag."
662
  msgstr "Włącz tag [plain][/plain]."
663
 
664
- #: crayon_settings_wp.class.php:1007
665
- #@ crayon-syntax-highlighter
666
- msgid "When loading local files and a relative path is given for the URL, use the absolute path"
667
- msgstr "Gdy ładowane są lokalne pliki i podano względną ścieżkę dla adresu URL, użyj ścieżki bezwzględnej"
 
 
 
668
 
669
- #: crayon_settings_wp.class.php:1010
670
- #@ crayon-syntax-highlighter
671
  msgid "Followed by your relative URL."
672
  msgstr "poprzedzonej Twoim pełnym adresem URL."
673
 
674
- #: crayon_settings_wp.class.php:1017
675
- #@ crayon-syntax-highlighter
676
  msgid "Convert Legacy Tags"
677
  msgstr "Konwertuj stare znaczniki"
678
 
679
- #: crayon_settings_wp.class.php:1020
680
- #@ crayon-syntax-highlighter
681
  msgid "No Legacy Tags Found"
682
  msgstr "Nie znaleziono starych znaczników"
683
 
684
- #: crayon_settings_wp.class.php:1025
685
- #, php-format
686
- #@ crayon-syntax-highlighter
687
- msgid "Use %s to separate setting names from values in the &lt;pre&gt; class attribute"
688
- msgstr "Użyj %s do oddzielania nazw ustawień od ich wartości w atrybucie 'class' znacznika &lt;pre&gt;"
 
 
 
 
 
 
689
 
690
- #: crayon_settings_wp.class.php:1028
691
- #@ crayon-syntax-highlighter
692
- msgid "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. bbPress)"
 
693
  msgstr "Pokazuj edytor znaczników w TinyMCE na stronie (np. w bbPress)"
694
 
695
- #: crayon_settings_wp.class.php:1029
696
- #@ crayon-syntax-highlighter
697
  msgid "Display Tag Editor settings on the frontend"
698
  msgstr "Pokazuj ustawienia edytora znaczników na stronie"
699
 
700
- #: crayon_settings_wp.class.php:1033
701
- #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
 
 
 
 
702
  msgid "Clear the cache used to store remote code requests"
703
  msgstr "Wyczyść cache kodu pobranego z zewnętrznych źródeł"
704
 
705
- #: crayon_settings_wp.class.php:1035
706
- #@ crayon-syntax-highlighter
707
  msgid "Clear Now"
708
  msgstr "Wyczyść teraz"
709
 
710
- #: crayon_settings_wp.class.php:1036
711
- #@ crayon-syntax-highlighter
712
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
713
  msgstr "Spróbuj ładować pliki CSS i JavaScript Crayona tylko gdy są potrzebne"
714
 
715
- #: crayon_settings_wp.class.php:1037
716
- #@ crayon-syntax-highlighter
717
  msgid "Disable enqueuing for page templates that may contain The Loop."
718
- msgstr "Wyłącz ładowanie plików dla szablonów stron, które mogą zawierać pętlę (The Loop)."
 
 
719
 
720
- #: crayon_settings_wp.class.php:1038
721
- #@ crayon-syntax-highlighter
722
  msgid "Allow Crayons inside comments"
723
  msgstr "Pozwól na działanie Crayona w komentarzach"
724
 
725
- #: crayon_settings_wp.class.php:1039
726
- #@ crayon-syntax-highlighter
727
  msgid "Remove Crayons from excerpts"
728
  msgstr "Usuwaj znaczniki Crayona z wypisów"
729
 
730
- #: crayon_settings_wp.class.php:1040
731
- #@ crayon-syntax-highlighter
732
  msgid "Load Crayons only from the main Wordpress query"
733
  msgstr "Ładuj znaczniki Crayon tylko dla głównego zapytania WordPressa."
734
 
735
- #: crayon_settings_wp.class.php:1041
736
- #@ crayon-syntax-highlighter
737
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
738
  msgstr "Wyłącz gesty myszy dla urządzeń dotykowych (np. MouseOver)"
739
 
740
- #: crayon_settings_wp.class.php:1042
741
- #@ crayon-syntax-highlighter
742
  msgid "Disable animations"
743
  msgstr "Wyłącz animacje"
744
 
745
- #: crayon_settings_wp.class.php:1043
746
- #@ crayon-syntax-highlighter
747
  msgid "Disable runtime stats"
748
  msgstr "Wyłącz zbieranie danych o działaniu"
749
 
750
- #: crayon_settings_wp.class.php:1049
751
- #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
 
 
 
 
752
  msgid "Log errors for individual Crayons"
753
  msgstr "Loguj błędy na poszczególnych znaczników Crayona"
754
 
755
- #: crayon_settings_wp.class.php:1050
756
- #@ crayon-syntax-highlighter
757
  msgid "Log system-wide errors"
758
  msgstr "Loguj błędy systemowe"
759
 
760
- #: crayon_settings_wp.class.php:1051
761
- #@ crayon-syntax-highlighter
762
  msgid "Display custom message for errors"
763
  msgstr "Pokazuj własne komunikaty o błędach"
764
 
765
- #: crayon_settings_wp.class.php:1063
766
- #@ crayon-syntax-highlighter
767
  msgid "Show Log"
768
  msgstr "Pokaż log"
769
 
770
- #: crayon_settings_wp.class.php:1063
771
- #@ crayon-syntax-highlighter
772
  msgid "Hide Log"
773
  msgstr "Ukryj log"
774
 
775
- #: crayon_settings_wp.class.php:1065
776
- #@ crayon-syntax-highlighter
777
  msgid "Clear Log"
778
  msgstr "Wyczyść log"
779
 
780
- #: crayon_settings_wp.class.php:1066
781
- #@ crayon-syntax-highlighter
782
  msgid "Email Admin"
783
  msgstr "Wyślij e-mailem do administratora"
784
 
785
- #: crayon_settings_wp.class.php:1068
786
- #@ crayon-syntax-highlighter
787
  msgid "Email Developer"
788
  msgstr "Wyślij e-mailem do autora"
789
 
790
- #: crayon_settings_wp.class.php:1070
791
- #@ crayon-syntax-highlighter
792
  msgid "The log is currently empty."
793
  msgstr "Log jest pusty."
794
 
795
- #: crayon_settings_wp.class.php:1072
796
- #@ crayon-syntax-highlighter
797
  msgid "The log file exists and is writable."
798
  msgstr "Plik logu istnieje i jest zapisywalny."
799
 
800
- #: crayon_settings_wp.class.php:1072
801
- #@ crayon-syntax-highlighter
802
  msgid "The log file exists and is not writable."
803
  msgstr "Plik logu istnieje, ale nie jest zapisywalny."
804
 
805
- #: crayon_settings_wp.class.php:1074
806
- #@ crayon-syntax-highlighter
807
  msgid "The log file does not exist and is not writable."
808
  msgstr "Plik logu nie istnieje i nie można go utworzyć."
809
 
810
- #: crayon_settings_wp.class.php:1084
811
- #@ crayon-syntax-highlighter
812
- msgid "Version"
813
- msgstr "Wersja"
814
-
815
- #: crayon_settings_wp.class.php:1086
816
- #@ crayon-syntax-highlighter
817
  msgid "Developer"
818
  msgstr "Autor"
819
 
820
- #: crayon_settings_wp.class.php:1087
821
- #@ crayon-syntax-highlighter
822
  msgid "Translators"
823
  msgstr "Tłumacze"
824
 
825
- #: crayon_settings_wp.class.php:1122
826
- #@ crayon-syntax-highlighter
827
- msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
828
- msgstr "Wynik niezliczonych godzin ciężkiej pracy przez wiele miesięcy. Ten projekt wciąż jest rozwijany, tak więc motywujcie mnie!"
829
-
830
- #: crayon_settings_wp.class.php:1132
831
- #@ crayon-syntax-highlighter
832
  msgid "?"
833
  msgstr "?"
834
 
835
- #: crayon_settings_wp.class.php:1139
836
- #@ crayon-syntax-highlighter
 
 
 
837
  msgid "Donate"
838
  msgstr "Dotacje"
839
 
840
- #. translators: plugin header field 'Name'
841
- #: crayon_wp.class.php:0
842
- #@ crayon-syntax-highlighter
843
- msgid "Crayon Syntax Highlighter"
844
- msgstr ""
845
-
846
- #. translators: plugin header field 'PluginURI'
847
- #: crayon_wp.class.php:0
848
- #@ crayon-syntax-highlighter
849
- msgid "http://aramk.com/projects/crayon-syntax-highlighter"
850
- msgstr ""
851
-
852
- #. translators: plugin header field 'Description'
853
- #: crayon_wp.class.php:0
854
- #@ crayon-syntax-highlighter
855
- msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
856
- msgstr "Obsługuje wiele języków, motywy, kolorowanie kodu pobieranego z adresu URL, pliku lokalnego lub treści wpisu."
857
-
858
- #. translators: plugin header field 'Author'
859
- #: crayon_wp.class.php:0
860
- #@ crayon-syntax-highlighter
861
- msgid "Aram Kocharyan"
862
- msgstr ""
863
-
864
- #. translators: plugin header field 'AuthorURI'
865
- #: crayon_wp.class.php:0
866
- #@ crayon-syntax-highlighter
867
- msgid "http://aramk.com/"
868
- msgstr ""
869
-
870
- #: util/tag-editor/crayon_tag_editor_wp.class.php:64
871
- #@ crayon-syntax-highlighter
872
- msgid "Add Crayon Code"
873
- msgstr "Dodaj kod Crayon"
874
-
875
- #: util/tag-editor/crayon_tag_editor_wp.class.php:65
876
- #@ crayon-syntax-highlighter
877
- msgid "Edit Crayon Code"
878
- msgstr "Edytuj kod Crayon"
879
-
880
- #: util/tag-editor/crayon_tag_editor_wp.class.php:66
881
- #@ crayon-syntax-highlighter
882
  msgid "Add"
883
  msgstr "Dodaj"
884
 
885
- #: util/tag-editor/crayon_tag_editor_wp.class.php:67
886
- #@ crayon-syntax-highlighter
887
  msgid "Save"
888
  msgstr "Zapisz"
889
 
890
- #: util/tag-editor/crayon_tag_editor_wp.class.php:170
891
- #@ crayon-syntax-highlighter
892
  msgid "OK"
893
  msgstr "OK"
894
 
895
- #: util/tag-editor/crayon_tag_editor_wp.class.php:172
896
- #@ crayon-syntax-highlighter
897
  msgid "Cancel"
898
  msgstr "Anuluj"
899
 
900
- #: util/tag-editor/crayon_tag_editor_wp.class.php:181
901
- #@ crayon-syntax-highlighter
902
  msgid "A short description"
903
  msgstr "Krótki opis"
904
 
905
- #: util/tag-editor/crayon_tag_editor_wp.class.php:183
906
- #@ crayon-syntax-highlighter
907
  msgid "Inline"
908
  msgstr "Liniowy"
909
 
910
- #: util/tag-editor/crayon_tag_editor_wp.class.php:185
911
- #@ crayon-syntax-highlighter
912
  msgid "Don't Highlight"
913
  msgstr "Nie koloruj"
914
 
915
- #: util/tag-editor/crayon_tag_editor_wp.class.php:190
916
- #@ crayon-syntax-highlighter
917
  msgid "Language"
918
  msgstr "Język"
919
 
920
- #: util/tag-editor/crayon_tag_editor_wp.class.php:193
921
- #@ crayon-syntax-highlighter
922
  msgid "Line Range"
923
  msgstr "Zakres linii"
924
 
925
- #: util/tag-editor/crayon_tag_editor_wp.class.php:194
926
- #@ crayon-syntax-highlighter
927
  msgid "(e.g. 3-5 or 3)"
928
  msgstr "(np. 3-5 lub 3)"
929
 
930
- #: util/tag-editor/crayon_tag_editor_wp.class.php:195
931
- #@ crayon-syntax-highlighter
932
  msgid "Marked Lines"
933
  msgstr "Oznaczone linie"
934
 
935
- #: util/tag-editor/crayon_tag_editor_wp.class.php:196
936
- #@ crayon-syntax-highlighter
937
  msgid "(e.g. 1,2,3-5)"
938
  msgstr "(np. 1,2,3-5)"
939
 
940
- #: util/tag-editor/crayon_tag_editor_wp.class.php:203
941
- #@ crayon-syntax-highlighter
942
  msgid "Clear"
943
  msgstr "Wyczyść"
944
 
945
- #: util/tag-editor/crayon_tag_editor_wp.class.php:207
946
- #@ crayon-syntax-highlighter
947
  msgid "Paste your code here, or type it in manually."
948
  msgstr "Wklej tutaj swój kod lub wpisz go ręcznie."
949
 
950
- #: util/tag-editor/crayon_tag_editor_wp.class.php:211
951
- #@ crayon-syntax-highlighter
952
  msgid "URL"
953
  msgstr "URL"
954
 
955
- #: util/tag-editor/crayon_tag_editor_wp.class.php:213
956
- #@ crayon-syntax-highlighter
957
  msgid "Relative local path or absolute URL"
958
  msgstr "Względna ścieżka lokalna lub pełny URL"
959
 
960
- #: util/tag-editor/crayon_tag_editor_wp.class.php:216
961
- #@ crayon-syntax-highlighter
962
- msgid "If the URL fails to load, the code above will be shown instead. If no code exists, an error is shown."
963
- msgstr "Jeśli nie uda się załadować tego URLa, zostanie wyświetlony powyższy kod. Jeśli żaden kod nie istnieje, zostanie wyświetlony błąd."
 
 
 
964
 
965
- #: util/tag-editor/crayon_tag_editor_wp.class.php:218
966
- #, php-format
967
- #@ crayon-syntax-highlighter
968
- msgid "If a relative local path is given it will be appended to %s - which is defined in %sCrayon &gt; Settings &gt; Files%s."
969
- msgstr "Jeśli została podana względna ścieżka lokalna, zostanie ona poprzedzona przez %s. Można to zdefiniować w %sCrayon &gt; Ustawienia &gt; Pliki%s."
 
 
970
 
971
- #: util/tag-editor/crayon_tag_editor_wp.class.php:243
972
- #@ crayon-syntax-highlighter
973
  msgid "Change the following settings to override their global values."
974
  msgstr "Zmień poszczególne ustawienia aby nadpisać ich globalne wartości."
975
 
976
- #: util/tag-editor/crayon_tag_editor_wp.class.php:245
977
- #@ crayon-syntax-highlighter
978
  msgid "Only changes (shown yellow) are applied."
979
- msgstr "Tylko te z nich, które zostały zmienione (oznaczone na żółto), zostaną zapisane."
 
 
 
 
 
 
 
 
 
 
980
 
981
- #: util/tag-editor/crayon_tag_editor_wp.class.php:247
982
- #, php-format
983
- #@ crayon-syntax-highlighter
984
- msgid "Future changes to the global settings under %sCrayon &gt; Settings%s won't affect overridden settings."
985
- msgstr "Przyszłe zmiany w globalnych ustawieniach (%sCrayon &gt; Ustawienia%s) nie będą miały wpływu na nadpisane tutaj ustawienia."
986
 
987
- #: util/theme-editor/theme_editor_content.php:23
988
- #@ crayon-syntax-highlighter
989
- msgid "Theme Editor"
990
- msgstr "Edytor motywów"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
991
 
992
- #: util/theme-editor/theme_editor_content.php:29
993
- #, php-format
994
- #@ crayon-syntax-highlighter
995
- msgid "Editing \"%s\" Theme"
996
- msgstr "Edycja motywu \"%s\""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
997
 
998
- #: util/theme-editor/theme_editor_content.php:31
999
- #, php-format
1000
- #@ crayon-syntax-highlighter
1001
- msgid "Creating Theme From \"%s\""
1002
- msgstr "Tworzenie motywu na podstawie \"%s\""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1003
 
1004
- #: util/theme-editor/theme_editor_content.php:37
1005
- #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1006
  msgid "Back To Settings"
1007
  msgstr "Powrót do ustawień"
1008
 
1009
- #. translators: plugin header field 'Version'
1010
- #: crayon_wp.class.php:0
1011
- #@ crayon-syntax-highlighter
1012
- msgid "_1.17_beta"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1013
  msgstr ""
1014
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Crayon Syntax Highlighter v_1.17_beta\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/crayon-syntax-"
5
+ "highlighter\n"
6
+ "POT-Creation-Date: 2015-11-09 23:06:42+00:00\n"
7
+ "PO-Revision-Date: 2015-11-10 14:16+0100\n"
8
+ "Last-Translator: Robert Korulczyk <robert@korulczyk.pl>\n"
9
  "Language-Team: \n"
10
+ "Language: pl_PL\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
15
+ "|| n%100>=20) ? 1 : 2;\n"
 
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
19
  "X-Poedit-Basepath: ../\n"
20
+ "X-Textdomain-Support: yes\n"
21
+ "X-Generator: Poedit 1.5.4\n"
22
  "X-Poedit-SearchPath-0: .\n"
 
23
 
24
+ #: crayon_formatter.class.php:290
25
+ msgid "Toggle Line Numbers"
26
+ msgstr "Włącz/wyłącz numery linii"
27
+
28
+ #: crayon_formatter.class.php:294
29
  msgid "Toggle Plain Code"
30
  msgstr "Włącz/wyłącz czysty kod"
31
 
32
+ #: crayon_formatter.class.php:298
 
33
  msgid "Toggle Line Wrap"
34
  msgstr "Włącz/wyłącz zawijanie linii"
35
 
36
+ #: crayon_formatter.class.php:302
 
37
  msgid "Expand Code"
38
  msgstr "Rozwiń kod"
39
 
40
+ #: crayon_formatter.class.php:306
41
+ msgid "Copy"
42
+ msgstr "Kopiuj"
 
 
43
 
44
+ #: crayon_formatter.class.php:310
 
 
 
 
 
 
45
  msgid "Open Code In New Window"
46
  msgstr "Otwórz kod w nowym oknie"
47
 
48
+ #: crayon_formatter.class.php:327
 
 
 
 
 
 
49
  msgid "Contains Mixed Languages"
50
  msgstr "Zawiera kilka języków"
51
 
52
+ #: crayon_settings.class.php:158
 
53
  msgid "Hourly"
54
  msgstr "Co godzinę"
55
 
56
+ #: crayon_settings.class.php:158
 
57
  msgid "Daily"
58
  msgstr "Raz dziennie"
59
 
60
+ #: crayon_settings.class.php:159
 
61
  msgid "Weekly"
62
  msgstr "Co tydzień"
63
 
64
+ #: crayon_settings.class.php:159
 
65
  msgid "Monthly"
66
  msgstr "Co miesiąc"
67
 
68
+ #: crayon_settings.class.php:160
 
69
  msgid "Immediately"
70
  msgstr "Natychmiast"
71
 
72
+ #: crayon_settings.class.php:171 crayon_settings.class.php:175
 
 
73
  msgid "Max"
74
  msgstr "maks."
75
 
76
+ #: crayon_settings.class.php:171 crayon_settings.class.php:175
 
 
77
  msgid "Min"
78
  msgstr "min."
79
 
80
+ #: crayon_settings.class.php:171 crayon_settings.class.php:175
 
 
81
  msgid "Static"
82
  msgstr "stała"
83
 
84
+ #: crayon_settings.class.php:173 crayon_settings.class.php:177
85
+ #: crayon_settings_wp.class.php:750 crayon_settings_wp.class.php:759
86
+ #: crayon_settings_wp.class.php:1038 crayon_settings_wp.class.php:1040
 
 
 
87
  msgid "Pixels"
88
  msgstr "pikseli"
89
 
90
+ #: crayon_settings.class.php:173 crayon_settings.class.php:177
 
 
91
  msgid "Percent"
92
  msgstr "procent"
93
 
94
+ #: crayon_settings.class.php:186
 
95
  msgid "None"
96
  msgstr "brak"
97
 
98
+ #: crayon_settings.class.php:186
 
99
  msgid "Left"
100
  msgstr "do lewej"
101
 
102
+ #: crayon_settings.class.php:186
 
103
  msgid "Center"
104
  msgstr "wyśrodkowane"
105
 
106
+ #: crayon_settings.class.php:186
 
107
  msgid "Right"
108
  msgstr "do prawej"
109
 
110
+ #: crayon_settings.class.php:188 crayon_settings.class.php:214
 
 
111
  msgid "On MouseOver"
112
  msgstr "wskazanie myszą"
113
 
114
+ #: crayon_settings.class.php:188 crayon_settings.class.php:194
 
 
115
  msgid "Always"
116
  msgstr "zawsze"
117
 
118
+ #: crayon_settings.class.php:188 crayon_settings.class.php:194
 
 
119
  msgid "Never"
120
  msgstr "nigdy"
121
 
122
+ #: crayon_settings.class.php:194
 
123
  msgid "When Found"
124
  msgstr "gdy znaleziono"
125
 
126
+ #: crayon_settings.class.php:214
 
127
  msgid "On Double Click"
128
  msgstr "podwójne kliknięcie"
129
 
130
+ #: crayon_settings.class.php:214
 
131
  msgid "On Single Click"
132
  msgstr "pojedyncze kliknięcie"
133
 
134
+ #: crayon_settings.class.php:214
 
135
  msgid "Disable Mouse Events"
136
  msgstr "wyłącz zdarzenia myszy"
137
 
138
+ #: crayon_settings.class.php:222
 
139
  msgid "An error has occurred. Please try again later."
140
  msgstr "Wystąpił błąd. Spróbuj ponownie."
141
 
142
+ #: crayon_settings.class.php:238
143
+ msgid "Inline Tag"
144
+ msgstr "Znacznik liniowy"
145
+
146
+ #: crayon_settings.class.php:238
147
+ msgid "Block Tag"
148
+ msgstr "Znacznik blokowy"
149
+
150
+ #: crayon_settings.class.php:251
151
+ msgid "Add Code"
152
+ msgstr "Dodaj kod"
153
+
154
+ #: crayon_settings.class.php:252
155
+ msgid "Edit Code"
156
+ msgstr "Edytuj kod"
157
+
158
+ #: crayon_settings_wp.class.php:54 crayon_settings_wp.class.php:211
159
+ #: crayon_settings_wp.class.php:1257
160
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:257
161
  msgid "Settings"
162
  msgstr "Ustawienia"
163
 
164
+ #: crayon_settings_wp.class.php:137
165
+ msgid "Press %s to Copy, %s to Paste"
166
+ msgstr "Naciśnij %s aby skopiować, %s aby wkleić"
167
+
168
+ #: crayon_settings_wp.class.php:138
169
+ msgid "Click To Expand Code"
170
+ msgstr "Rozwiń kod"
171
+
172
+ #: crayon_settings_wp.class.php:180
173
+ msgid "Prompt"
174
+ msgstr "Monit"
175
+
176
+ #: crayon_settings_wp.class.php:181
177
+ msgid "Value"
178
+ msgstr "Wartość"
179
+
180
+ #: crayon_settings_wp.class.php:182
181
+ msgid "Alert"
182
+ msgstr "Komunikat"
183
+
184
+ #: crayon_settings_wp.class.php:183 crayon_settings_wp.class.php:898
185
+ msgid "No"
186
+ msgstr "Nie"
187
+
188
+ #: crayon_settings_wp.class.php:184 crayon_settings_wp.class.php:898
189
+ msgid "Yes"
190
+ msgstr "Tak"
191
+
192
+ #: crayon_settings_wp.class.php:185
193
+ msgid "Confirm"
194
+ msgstr "Potwierdź"
195
+
196
+ #: crayon_settings_wp.class.php:186
197
+ msgid "Change Code"
198
+ msgstr "Zmień kod"
199
+
200
+ #: crayon_settings_wp.class.php:194
201
  msgid "You do not have sufficient permissions to access this page."
202
  msgstr "Nie masz wystarczających uprawnień aby uzyskać dostęp do tej strony."
203
 
204
+ #: crayon_settings_wp.class.php:226
 
205
  msgid "Save Changes"
206
  msgstr "Zapisz zmiany"
207
 
208
+ #: crayon_settings_wp.class.php:233
 
209
  msgid "Reset Settings"
210
  msgstr "Resetuj ustawienia"
211
 
212
+ #: crayon_settings_wp.class.php:492
 
213
  msgid "General"
214
  msgstr "Ogólne"
215
 
216
+ #: crayon_settings_wp.class.php:493
 
217
  msgid "Theme"
218
  msgstr "Motyw"
219
 
220
+ #: crayon_settings_wp.class.php:494
 
221
  msgid "Font"
222
  msgstr "Czcionka"
223
 
224
+ #: crayon_settings_wp.class.php:495
 
225
  msgid "Metrics"
226
  msgstr "Rozmiary"
227
 
228
+ #: crayon_settings_wp.class.php:496 util/theme-editor/theme_editor.php:296
 
229
  msgid "Toolbar"
230
  msgstr "Pasek narzędzi"
231
 
232
+ #: crayon_settings_wp.class.php:497 util/theme-editor/theme_editor.php:294
 
233
  msgid "Lines"
234
  msgstr "Linie"
235
 
236
+ #: crayon_settings_wp.class.php:498
237
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:217
 
238
  msgid "Code"
239
  msgstr "Kod"
240
 
241
+ #: crayon_settings_wp.class.php:499
 
242
  msgid "Tags"
243
  msgstr "Znaczniki"
244
 
245
+ #: crayon_settings_wp.class.php:500
 
246
  msgid "Languages"
247
  msgstr "Języki"
248
 
249
+ #: crayon_settings_wp.class.php:501
 
250
  msgid "Files"
251
  msgstr "Pliki"
252
 
253
+ #: crayon_settings_wp.class.php:502
 
254
  msgid "Posts"
255
  msgstr "Wpisy"
256
 
257
+ #: crayon_settings_wp.class.php:503
 
258
  msgid "Tag Editor"
259
  msgstr "Edytor znaczników"
260
 
261
+ #: crayon_settings_wp.class.php:504
 
262
  msgid "Misc"
263
  msgstr "Różne"
264
 
265
+ #: crayon_settings_wp.class.php:507
 
266
  msgid "Debug"
267
  msgstr "Debugowanie"
268
 
269
+ #: crayon_settings_wp.class.php:508
 
270
  msgid "Errors"
271
  msgstr "Błędy"
272
 
273
+ #: crayon_settings_wp.class.php:509
 
274
  msgid "Log"
275
  msgstr "Log"
276
 
277
+ #: crayon_settings_wp.class.php:512
 
278
  msgid "About"
279
  msgstr "O wtyczce"
280
 
281
+ #: crayon_settings_wp.class.php:727
 
282
  msgid "Height"
283
  msgstr "Wysokość"
284
 
285
+ #: crayon_settings_wp.class.php:733
 
286
  msgid "Width"
287
  msgstr "Szerokość"
288
 
289
+ #: crayon_settings_wp.class.php:739
 
290
  msgid "Top Margin"
291
  msgstr "Górny margines"
292
 
293
+ #: crayon_settings_wp.class.php:740
 
294
  msgid "Bottom Margin"
295
  msgstr "Dolny margines"
296
 
297
+ #: crayon_settings_wp.class.php:741 crayon_settings_wp.class.php:746
 
 
298
  msgid "Left Margin"
299
  msgstr "Lewy margines"
300
 
301
+ #: crayon_settings_wp.class.php:742 crayon_settings_wp.class.php:746
 
 
302
  msgid "Right Margin"
303
  msgstr "Prawy margines"
304
 
305
+ #: crayon_settings_wp.class.php:752
 
306
  msgid "Horizontal Alignment"
307
  msgstr "Wyrównanie w poziomie"
308
 
309
+ #: crayon_settings_wp.class.php:755
 
310
  msgid "Allow floating elements to surround Crayon"
311
  msgstr "Pozwalaj elementom opływającym na otaczanie Crayona"
312
 
313
+ #: crayon_settings_wp.class.php:757
 
314
  msgid "Inline Margin"
315
  msgstr "Margines dla elementu liniowego"
316
 
317
+ #: crayon_settings_wp.class.php:765
 
318
  msgid "Display the Toolbar"
319
  msgstr "Pokazuj pasek narzędzi"
320
 
321
+ #: crayon_settings_wp.class.php:768
 
322
  msgid "Overlay the toolbar on code rather than push it down when possible"
323
+ msgstr ""
324
+ "Jeśli to możliwe, wyświetlaj pasek narzędzi nad kodem zamiast przesuwać go w "
325
+ "dół"
326
 
327
+ #: crayon_settings_wp.class.php:769
 
328
  msgid "Toggle the toolbar on single click when it is overlayed"
329
+ msgstr ""
330
+ "Włączaj/wyłączaj pasek narzędzi pojedynczym kliknięciem gdy przykrywa kod"
331
 
332
+ #: crayon_settings_wp.class.php:770
 
333
  msgid "Delay hiding the toolbar on MouseOut"
334
  msgstr "Opóźniaj ukrywanie paska narzędzi po przesunięciu kursora myszy"
335
 
336
+ #: crayon_settings_wp.class.php:772
 
337
  msgid "Display the title when provided"
338
  msgstr "Pokazuj tytuł jeśli został podany"
339
 
340
+ #: crayon_settings_wp.class.php:773
 
341
  msgid "Display the language"
342
  msgstr "Pokazuj język"
343
 
344
+ #: crayon_settings_wp.class.php:780
 
345
  msgid "Display striped code lines"
346
  msgstr "Wyświetla paski dla linii kodu"
347
 
348
+ #: crayon_settings_wp.class.php:781
 
349
  msgid "Enable line marking for important lines"
350
  msgstr "Włącz możliwość oznaczania ważnych linii"
351
 
352
+ #: crayon_settings_wp.class.php:782
 
353
  msgid "Enable line ranges for showing only parts of code"
354
+ msgstr ""
355
+ "Włącz możliwość określania zakresów, aby pokazywać tylko fragmenty kodu"
356
 
357
+ #: crayon_settings_wp.class.php:783
 
358
  msgid "Display line numbers by default"
359
  msgstr "Domyślnie pokazuj numery linii"
360
 
361
+ #: crayon_settings_wp.class.php:784
 
362
  msgid "Enable line number toggling"
363
  msgstr "Włącz możliwość włączania i wyłączania numerów linii"
364
 
365
+ #: crayon_settings_wp.class.php:785
 
366
  msgid "Wrap lines by default"
367
  msgstr "Domyślnie zawijaj linie"
368
 
369
+ #: crayon_settings_wp.class.php:786
 
370
  msgid "Enable line wrap toggling"
371
  msgstr "Włącz możliwość włączania/wyłączania zawijania linii"
372
 
373
+ #: crayon_settings_wp.class.php:787
 
374
  msgid "Start line numbers from"
375
  msgstr "Zacznij numerowanie linii od"
376
 
377
+ #: crayon_settings_wp.class.php:798
 
378
  msgid "When no language is provided, use the fallback"
379
  msgstr "Gdy nie podano języka, użyj tego:"
380
 
381
+ #: crayon_settings_wp.class.php:804
 
 
382
  msgid "%d language has been detected."
383
  msgid_plural "%d languages have been detected."
384
  msgstr[0] "%d język został wykryty."
385
  msgstr[1] "%d języki zostały wykryty."
386
  msgstr[2] "%d języków zostało wykrytych."
387
 
388
+ #: crayon_settings_wp.class.php:805
 
389
  msgid "Parsing was successful"
390
  msgstr "Parsowanie powiodło się"
391
 
392
+ #: crayon_settings_wp.class.php:805
 
393
  msgid "Parsing was unsuccessful"
394
  msgstr "Parsowanie nie powiodło się"
395
 
396
+ #: crayon_settings_wp.class.php:811
 
 
397
  msgid "The selected language with id %s could not be loaded"
398
  msgstr "Wybrany język o id %s nie mógł zostać załadowany"
399
 
400
+ #: crayon_settings_wp.class.php:814
 
401
  msgid "Show Languages"
402
  msgstr "Pokaż języki"
403
 
404
+ #: crayon_settings_wp.class.php:816
405
+ msgid "No languages could be parsed."
406
+ msgstr "Nie udało się przeprasować żadnego języka."
407
+
408
+ #: crayon_settings_wp.class.php:827 crayon_settings_wp.class.php:878
409
+ msgid "ID"
410
+ msgstr "ID"
411
+
412
+ #: crayon_settings_wp.class.php:827
413
+ msgid "Name"
414
+ msgstr "Nazwa"
415
+
416
+ #: crayon_settings_wp.class.php:827 crayon_settings_wp.class.php:1194
417
+ msgid "Version"
418
+ msgstr "Wersja"
419
+
420
+ #: crayon_settings_wp.class.php:827
421
+ msgid "File Extensions"
422
+ msgstr "Rozszerzenie pliku"
423
+
424
+ #: crayon_settings_wp.class.php:827
425
+ msgid "Aliases"
426
+ msgstr "Aliasy"
427
+
428
+ #: crayon_settings_wp.class.php:827
429
+ msgid "State"
430
+ msgstr "stan"
431
+
432
+ #: crayon_settings_wp.class.php:842
433
+ msgid ""
434
+ "Languages that have the same extension as their name don't need to "
435
+ "explicitly map extensions."
436
+ msgstr ""
437
+ "Języki posiadające takie same rozszerzenie jak nazwę nie musza być "
438
+ "wyminione w mapie rozszerzeń."
439
+
440
+ #: crayon_settings_wp.class.php:844
441
+ msgid "No languages could be found."
442
+ msgstr "NIe znaleziono żadnych języków."
443
+
444
+ #: crayon_settings_wp.class.php:851
445
  msgid "Show Crayon Posts"
446
  msgstr "Pokaż wpisy ze znacznikami Crayon"
447
 
448
+ #: crayon_settings_wp.class.php:852
 
449
  msgid "Refresh"
450
  msgstr "Odśwież"
451
 
452
+ #: crayon_settings_wp.class.php:878
453
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:194
454
+ #: util/theme-editor/theme_editor.php:311
 
 
 
 
 
455
  msgid "Title"
456
  msgstr "Tytuł"
457
 
458
+ #: crayon_settings_wp.class.php:878
 
459
  msgid "Posted"
460
  msgstr "Opublikowany"
461
 
462
+ #: crayon_settings_wp.class.php:878
 
463
  msgid "Modifed"
464
  msgstr "Zmodyfikowany"
465
 
466
+ #: crayon_settings_wp.class.php:878
 
467
  msgid "Contains Legacy Tags?"
468
  msgstr "Zawiera stare znaczniki?"
469
 
470
+ #: crayon_settings_wp.class.php:993
 
 
 
 
 
 
 
 
 
 
 
471
  msgid "Edit"
472
  msgstr "Edytuj"
473
 
474
+ #: crayon_settings_wp.class.php:993 util/theme-editor/theme_editor.php:199
 
475
  msgid "Duplicate"
476
  msgstr "Duplikuj"
477
 
478
+ #: crayon_settings_wp.class.php:993
479
+ msgid "Submit"
480
+ msgstr "Zatwierdź"
 
481
 
482
+ #: crayon_settings_wp.class.php:994 util/theme-editor/theme_editor.php:196
 
483
  msgid "Delete"
484
  msgstr "Usuń"
485
 
486
+ #: crayon_settings_wp.class.php:996
 
487
  msgid "Loading..."
488
  msgstr "Ładowanie..."
489
 
490
+ #: crayon_settings_wp.class.php:998
491
+ msgid "Duplicate a Stock Theme into a User Theme to allow editing."
492
+ msgstr "Skopiuj wbudowany motyw do motywu użytkownika, aby umożliwić edycję"
 
 
493
 
494
+ #: crayon_settings_wp.class.php:1009
495
+ msgid ""
496
+ "Change the %1$sfallback language%2$s to change the sample code or %3$schange "
497
+ "it manually%4$s. Lines 5-7 are marked."
498
+ msgstr ""
499
+ "Zmień %1$sdomyślny język%2$s aby zmienić przykładowy kod lub %3$szmień go "
500
+ "ręcznie%4$s. Linie 5-7 są oznaczone."
501
+
502
+ #: crayon_settings_wp.class.php:1016
503
  msgid "Enable Live Preview"
504
  msgstr "Włącz podgląd na żywo"
505
 
506
+ #: crayon_settings_wp.class.php:1018
 
507
  msgid "Enqueue themes in the header (more efficient)."
508
  msgstr "Dodawaj pliki motywów do nagłówka (bardziej wydajne)."
509
 
510
+ #: crayon_settings_wp.class.php:1021
 
 
511
  msgid "The selected theme with id %s could not be loaded"
512
  msgstr "Wybrany motyw o id %s nie mógł zostać załadowany"
513
 
514
+ #: crayon_settings_wp.class.php:1036
 
515
  msgid "Custom Font Size"
516
  msgstr "Własny rozmiar czcionki"
517
 
518
+ #: crayon_settings_wp.class.php:1038
519
+ msgid "Line Height"
520
+ msgstr "Wysokość wiersza"
521
+
522
+ #: crayon_settings_wp.class.php:1043
523
  msgid "The selected font with id %s could not be loaded"
524
  msgstr "Wybrana czcionka o id %s nie mogła zostać załadowana"
525
 
526
+ #: crayon_settings_wp.class.php:1049
 
527
  msgid "Enqueue fonts in the header (more efficient)."
528
  msgstr "Dodawaj pliki czcionek do nagłówka (bardziej wydajne)."
529
 
530
+ #: crayon_settings_wp.class.php:1054
 
531
  msgid "Enable plain code view and display"
532
  msgstr "Włącz widok czystego kodu"
533
 
534
+ #: crayon_settings_wp.class.php:1057
 
535
  msgid "Enable plain code toggling"
536
  msgstr "Włącz włączanie/wyłączanie czystego kodu"
537
 
538
+ #: crayon_settings_wp.class.php:1058
 
539
  msgid "Show the plain code by default"
540
  msgstr "Domyślnie pokazuj czysty kod"
541
 
542
+ #: crayon_settings_wp.class.php:1059
 
543
  msgid "Enable code copy/paste"
544
  msgstr "Włącz kopiowanie i wklejanie kodu"
545
 
546
+ #: crayon_settings_wp.class.php:1061
 
547
  msgid "Enable opening code in a window"
548
  msgstr "Włącz otwieranie kodu w nowym oknie"
549
 
550
+ #: crayon_settings_wp.class.php:1062
 
551
  msgid "Always display scrollbars"
552
  msgstr "Zawsze pokazuj paski przewijania"
553
 
554
+ #: crayon_settings_wp.class.php:1063
555
+ msgid "Minimize code"
556
+ msgstr "Zwiń kod"
557
+
558
+ #: crayon_settings_wp.class.php:1064
559
  msgid "Expand code beyond page borders on mouseover"
560
  msgstr "Rozszerz kod poza krawędzie strony po wskazaniu myszą"
561
 
562
+ #: crayon_settings_wp.class.php:1065
 
563
  msgid "Enable code expanding toggling when possible"
564
  msgstr "Gdy to możliwe, włącz włączanie/wyłączanie rozszerzania kodu"
565
 
566
+ #: crayon_settings_wp.class.php:1068
 
567
  msgid "Decode HTML entities in code"
568
  msgstr "Dekoduj encje HTML w kodzie"
569
 
570
+ #: crayon_settings_wp.class.php:1070
 
571
  msgid "Decode HTML entities in attributes"
572
  msgstr "Dekoduj encje HTML w atrybutach"
573
 
574
+ #: crayon_settings_wp.class.php:1072
 
575
  msgid "Remove whitespace surrounding the shortcode content"
576
  msgstr "Usuwaj białe spacje otaczające zawartość shortcode"
577
 
578
+ #: crayon_settings_wp.class.php:1074
579
+ msgid "Remove &lt;code&gt; tags surrounding the shortcode content"
580
+ msgstr "Usuwaj znaczniki &lt;code&gt otaczające zawartość shortcode"
581
+
582
+ #: crayon_settings_wp.class.php:1075
583
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
584
  msgstr "Pozwalaj na kolorowanie wielu języków z separatorami i znacznikami."
585
 
586
+ #: crayon_settings_wp.class.php:1077
 
587
  msgid "Show Mixed Language Icon (+)"
588
  msgstr "Pokazuj ikonę wielu języków (+)"
589
 
590
+ #: crayon_settings_wp.class.php:1079
591
+ msgid "Convert tabs to spaces"
592
+ msgstr "Zamień tabulatory na spacje"
593
+
594
+ #: crayon_settings_wp.class.php:1080
595
  msgid "Tab size in spaces"
596
  msgstr "Wielkość tabulatora (spacje)"
597
 
598
+ #: crayon_settings_wp.class.php:1082
 
599
  msgid "Blank lines before code:"
600
  msgstr "Puste linie przed kodem:"
601
 
602
+ #: crayon_settings_wp.class.php:1084
 
603
  msgid "Blank lines after code:"
604
  msgstr "Puste linie za kodem:"
605
 
606
+ #: crayon_settings_wp.class.php:1089
607
+ msgid "Capture Inline Tags"
608
+ msgstr "Obsługuj znaczniki liniowe"
 
 
 
 
 
 
609
 
610
+ #: crayon_settings_wp.class.php:1090
 
611
  msgid "Wrap Inline Tags"
612
  msgstr "Zawijaj znaczniki liniowe"
613
 
614
+ #: crayon_settings_wp.class.php:1091
615
+ msgid "Capture &lt;code&gt; as"
616
+ msgstr "Traktuj znaczniki &lt;code&gt; jako"
617
+
618
+ #: crayon_settings_wp.class.php:1095
619
  msgid "Capture `backquotes` as &lt;code&gt;"
620
  msgstr "Traktuj `odwrócone apostrofy` jako &lt;code&gt;"
621
 
622
+ #: crayon_settings_wp.class.php:1096
 
623
  msgid "Capture &lt;pre&gt; tags as Crayons"
624
  msgstr "Traktuj znaczniki &lt;pre&gt; jako znaczniki Crayona"
625
 
626
+ #: crayon_settings_wp.class.php:1098
627
+ msgid ""
628
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
629
+ "the %sTag Editor%s instead and convert legacy tags."
630
+ msgstr ""
631
+ "Wykorzystywanie tej składni do znaczników liniowych jest %sprzestarzałe%s! "
632
+ "Zamiast tego użyj %sEdytora tagów%s."
633
+
634
+ #: crayon_settings_wp.class.php:1099
635
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
636
+ msgstr "Traktuj znaczniki w rodzaju [php][/php] jako znaczniki Crayona."
637
+
638
+ #: crayon_settings_wp.class.php:1100
639
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
640
+ msgstr ""
641
+ "Traktuj znaczniki liniowe w rodzaju {php}{/php} wewnątrz zdań jako znaczniki "
642
+ "Crayona."
643
+
644
+ #: crayon_settings_wp.class.php:1101
645
  msgid "Enable [plain][/plain] tag."
646
  msgstr "Włącz tag [plain][/plain]."
647
 
648
+ #: crayon_settings_wp.class.php:1106
649
+ msgid ""
650
+ "When loading local files and a relative path is given for the URL, use the "
651
+ "absolute path"
652
+ msgstr ""
653
+ "Gdy ładowane są lokalne pliki i podano względną ścieżkę dla adresu URL, użyj "
654
+ "ścieżki bezwzględnej"
655
 
656
+ #: crayon_settings_wp.class.php:1109
 
657
  msgid "Followed by your relative URL."
658
  msgstr "poprzedzonej Twoim pełnym adresem URL."
659
 
660
+ #: crayon_settings_wp.class.php:1116
 
661
  msgid "Convert Legacy Tags"
662
  msgstr "Konwertuj stare znaczniki"
663
 
664
+ #: crayon_settings_wp.class.php:1119
 
665
  msgid "No Legacy Tags Found"
666
  msgstr "Nie znaleziono starych znaczników"
667
 
668
+ #: crayon_settings_wp.class.php:1123
669
+ msgid "Encode"
670
+ msgstr "Koduj"
671
+
672
+ #: crayon_settings_wp.class.php:1125
673
+ msgid ""
674
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
675
+ "attribute"
676
+ msgstr ""
677
+ "Użyj %s do oddzielania nazw ustawień od ich wartości w atrybucie 'class' "
678
+ "znacznika &lt;pre&gt;"
679
 
680
+ #: crayon_settings_wp.class.php:1128
681
+ msgid ""
682
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
683
+ "bbPress)"
684
  msgstr "Pokazuj edytor znaczników w TinyMCE na stronie (np. w bbPress)"
685
 
686
+ #: crayon_settings_wp.class.php:1129
 
687
  msgid "Display Tag Editor settings on the frontend"
688
  msgstr "Pokazuj ustawienia edytora znaczników na stronie"
689
 
690
+ #: crayon_settings_wp.class.php:1130
691
+ msgid "Add Code button text"
692
+ msgstr "Tekst buttona Dodaj kod"
693
+
694
+ #: crayon_settings_wp.class.php:1132
695
+ msgid "Edit Code button text"
696
+ msgstr "Tekst buttona Edytuj kod"
697
+
698
+ #: crayon_settings_wp.class.php:1134
699
+ msgid "Quicktag button text"
700
+ msgstr "Tekst buttona Quicktag"
701
+
702
+ #: crayon_settings_wp.class.php:1139
703
  msgid "Clear the cache used to store remote code requests"
704
  msgstr "Wyczyść cache kodu pobranego z zewnętrznych źródeł"
705
 
706
+ #: crayon_settings_wp.class.php:1141
 
707
  msgid "Clear Now"
708
  msgstr "Wyczyść teraz"
709
 
710
+ #: crayon_settings_wp.class.php:1142
 
711
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
712
  msgstr "Spróbuj ładować pliki CSS i JavaScript Crayona tylko gdy są potrzebne"
713
 
714
+ #: crayon_settings_wp.class.php:1143
 
715
  msgid "Disable enqueuing for page templates that may contain The Loop."
716
+ msgstr ""
717
+ "Wyłącz ładowanie plików dla szablonów stron, które mogą zawierać pętlę (The "
718
+ "Loop)."
719
 
720
+ #: crayon_settings_wp.class.php:1144
 
721
  msgid "Allow Crayons inside comments"
722
  msgstr "Pozwól na działanie Crayona w komentarzach"
723
 
724
+ #: crayon_settings_wp.class.php:1145
 
725
  msgid "Remove Crayons from excerpts"
726
  msgstr "Usuwaj znaczniki Crayona z wypisów"
727
 
728
+ #: crayon_settings_wp.class.php:1146
 
729
  msgid "Load Crayons only from the main Wordpress query"
730
  msgstr "Ładuj znaczniki Crayon tylko dla głównego zapytania WordPressa."
731
 
732
+ #: crayon_settings_wp.class.php:1147
 
733
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
734
  msgstr "Wyłącz gesty myszy dla urządzeń dotykowych (np. MouseOver)"
735
 
736
+ #: crayon_settings_wp.class.php:1148
 
737
  msgid "Disable animations"
738
  msgstr "Wyłącz animacje"
739
 
740
+ #: crayon_settings_wp.class.php:1149
 
741
  msgid "Disable runtime stats"
742
  msgstr "Wyłącz zbieranie danych o działaniu"
743
 
744
+ #: crayon_settings_wp.class.php:1150
745
+ msgid "Disable for posts before"
746
+ msgstr "Wyłącz dla postów przed"
747
+
748
+ #: crayon_settings_wp.class.php:1153
749
+ msgid ""
750
+ "Load scripts in the page footer using wp_footer() to improve loading "
751
+ "performance."
752
+ msgstr ""
753
+ "Umieszczaj skrypty w stopcje strony wykorzystując wp_footer(), aby poprawić "
754
+ "szybkość ładowania się strony."
755
+
756
+ #: crayon_settings_wp.class.php:1159
757
  msgid "Log errors for individual Crayons"
758
  msgstr "Loguj błędy na poszczególnych znaczników Crayona"
759
 
760
+ #: crayon_settings_wp.class.php:1160
 
761
  msgid "Log system-wide errors"
762
  msgstr "Loguj błędy systemowe"
763
 
764
+ #: crayon_settings_wp.class.php:1161
 
765
  msgid "Display custom message for errors"
766
  msgstr "Pokazuj własne komunikaty o błędach"
767
 
768
+ #: crayon_settings_wp.class.php:1173
 
769
  msgid "Show Log"
770
  msgstr "Pokaż log"
771
 
772
+ #: crayon_settings_wp.class.php:1173
 
773
  msgid "Hide Log"
774
  msgstr "Ukryj log"
775
 
776
+ #: crayon_settings_wp.class.php:1175
 
777
  msgid "Clear Log"
778
  msgstr "Wyczyść log"
779
 
780
+ #: crayon_settings_wp.class.php:1176
 
781
  msgid "Email Admin"
782
  msgstr "Wyślij e-mailem do administratora"
783
 
784
+ #: crayon_settings_wp.class.php:1178
 
785
  msgid "Email Developer"
786
  msgstr "Wyślij e-mailem do autora"
787
 
788
+ #: crayon_settings_wp.class.php:1180
 
789
  msgid "The log is currently empty."
790
  msgstr "Log jest pusty."
791
 
792
+ #: crayon_settings_wp.class.php:1182
 
793
  msgid "The log file exists and is writable."
794
  msgstr "Plik logu istnieje i jest zapisywalny."
795
 
796
+ #: crayon_settings_wp.class.php:1182
 
797
  msgid "The log file exists and is not writable."
798
  msgstr "Plik logu istnieje, ale nie jest zapisywalny."
799
 
800
+ #: crayon_settings_wp.class.php:1184
 
801
  msgid "The log file does not exist and is not writable."
802
  msgstr "Plik logu nie istnieje i nie można go utworzyć."
803
 
804
+ #: crayon_settings_wp.class.php:1196
 
 
 
 
 
 
805
  msgid "Developer"
806
  msgstr "Autor"
807
 
808
+ #: crayon_settings_wp.class.php:1197
 
809
  msgid "Translators"
810
  msgstr "Tłumacze"
811
 
812
+ #: crayon_settings_wp.class.php:1251
 
 
 
 
 
 
813
  msgid "?"
814
  msgstr "?"
815
 
816
+ #: crayon_settings_wp.class.php:1258 util/theme-editor/theme_editor.php:333
817
+ msgid "Theme Editor"
818
+ msgstr "Edytor motywów"
819
+
820
+ #: crayon_settings_wp.class.php:1259
821
  msgid "Donate"
822
  msgstr "Dotacje"
823
 
824
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
825
  msgid "Add"
826
  msgstr "Dodaj"
827
 
828
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:69
829
+ #: util/theme-editor/theme_editor.php:349
830
  msgid "Save"
831
  msgstr "Zapisz"
832
 
833
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:185
 
834
  msgid "OK"
835
  msgstr "OK"
836
 
837
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:187
 
838
  msgid "Cancel"
839
  msgstr "Anuluj"
840
 
841
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:196
 
842
  msgid "A short description"
843
  msgstr "Krótki opis"
844
 
845
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:198
846
+ #: util/theme-editor/theme_editor.php:315
847
  msgid "Inline"
848
  msgstr "Liniowy"
849
 
850
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:200
 
851
  msgid "Don't Highlight"
852
  msgstr "Nie koloruj"
853
 
854
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:205
855
+ #: util/theme-editor/theme_editor.php:319
856
  msgid "Language"
857
  msgstr "Język"
858
 
859
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:208
 
860
  msgid "Line Range"
861
  msgstr "Zakres linii"
862
 
863
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:209
 
864
  msgid "(e.g. 3-5 or 3)"
865
  msgstr "(np. 3-5 lub 3)"
866
 
867
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:210
 
868
  msgid "Marked Lines"
869
  msgstr "Oznaczone linie"
870
 
871
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:211
 
872
  msgid "(e.g. 1,2,3-5)"
873
  msgstr "(np. 1,2,3-5)"
874
 
875
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:220
 
876
  msgid "Clear"
877
  msgstr "Wyczyść"
878
 
879
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:224
 
880
  msgid "Paste your code here, or type it in manually."
881
  msgstr "Wklej tutaj swój kod lub wpisz go ręcznie."
882
 
883
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:228
 
884
  msgid "URL"
885
  msgstr "URL"
886
 
887
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:230
 
888
  msgid "Relative local path or absolute URL"
889
  msgstr "Względna ścieżka lokalna lub pełny URL"
890
 
891
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:233
892
+ msgid ""
893
+ "If the URL fails to load, the code above will be shown instead. If no code "
894
+ "exists, an error is shown."
895
+ msgstr ""
896
+ "Jeśli nie uda się załadować tego URLa, zostanie wyświetlony powyższy kod. "
897
+ "Jeśli żaden kod nie istnieje, zostanie wyświetlony błąd."
898
 
899
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:235
900
+ msgid ""
901
+ "If a relative local path is given it will be appended to %s - which is "
902
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
903
+ msgstr ""
904
+ "Jeśli została podana względna ścieżka lokalna, zostanie ona poprzedzona "
905
+ "przez %s. Można to zdefiniować w %sCrayon &gt; Ustawienia &gt; Pliki%s."
906
 
907
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:262
 
908
  msgid "Change the following settings to override their global values."
909
  msgstr "Zmień poszczególne ustawienia aby nadpisać ich globalne wartości."
910
 
911
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:264
 
912
  msgid "Only changes (shown yellow) are applied."
913
+ msgstr ""
914
+ "Tylko te z nich, które zostały zmienione (oznaczone na żółto), zostaną "
915
+ "zapisane."
916
+
917
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:266
918
+ msgid ""
919
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
920
+ "affect overridden settings."
921
+ msgstr ""
922
+ "Przyszłe zmiany w globalnych ustawieniach (%sCrayon &gt; Ustawienia%s) nie "
923
+ "będą miały wpływu na nadpisane tutaj ustawienia."
924
 
925
+ #: util/theme-editor/theme_editor.php:192
926
+ msgid "User-Defined Theme"
927
+ msgstr "Motyw użytkownia"
 
 
928
 
929
+ #: util/theme-editor/theme_editor.php:193
930
+ msgid "Stock Theme"
931
+ msgstr "Wbudowany motyw"
932
+
933
+ #: util/theme-editor/theme_editor.php:194
934
+ msgid "Success!"
935
+ msgstr "Sukces!"
936
+
937
+ #: util/theme-editor/theme_editor.php:195
938
+ msgid "Failed!"
939
+ msgstr "Niepowodzenie!"
940
+
941
+ #: util/theme-editor/theme_editor.php:197
942
+ msgid "Are you sure you want to delete the \"%s\" theme?"
943
+ msgstr "Jesteś pewien, że chcesz usunąć motyw \"%s\" ?"
944
+
945
+ #: util/theme-editor/theme_editor.php:198
946
+ msgid "Delete failed!"
947
+ msgstr "Usunięcie nie powiodło się!"
948
+
949
+ #: util/theme-editor/theme_editor.php:200
950
+ msgid "New Name"
951
+ msgstr "Nowa nazwa"
952
 
953
+ #: util/theme-editor/theme_editor.php:201
954
+ msgid "Duplicate failed!"
955
+ msgstr "Kopiowanie nie powiodło się!"
956
+
957
+ #: util/theme-editor/theme_editor.php:202
958
+ msgid "Please check the log for details."
959
+ msgstr "Sprawdź plik lugu, aby zobaczyć szczegóły."
960
+
961
+ #: util/theme-editor/theme_editor.php:203
962
+ msgid "Are you sure you want to discard all changes?"
963
+ msgstr "Czy jesteś pewien, że chcesz porzucić wszystkie zmiany?"
964
+
965
+ #: util/theme-editor/theme_editor.php:204
966
+ msgid "Editing Theme: %s"
967
+ msgstr "Edycja motywu: %s"
968
+
969
+ #: util/theme-editor/theme_editor.php:205
970
+ msgid "Creating Theme: %s"
971
+ msgstr "Tworzenie motywu: %s"
972
+
973
+ #: util/theme-editor/theme_editor.php:206
974
+ msgid "Submit Your Theme"
975
+ msgstr "Zatwierdź swój motyw."
976
+
977
+ #: util/theme-editor/theme_editor.php:207
978
+ msgid ""
979
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
980
+ "email me your theme - make sure it's considerably different from the stock "
981
+ "themes :)"
982
+ msgstr ""
983
 
984
+ #: util/theme-editor/theme_editor.php:208
985
+ msgid "Message"
986
+ msgstr "Wiadomość"
987
+
988
+ #: util/theme-editor/theme_editor.php:209
989
+ msgid "Please include this theme in Crayon!"
990
+ msgstr ""
991
+
992
+ #: util/theme-editor/theme_editor.php:210
993
+ msgid "Submit was successful."
994
+ msgstr "Zatwierdzenie powiodło się."
995
+
996
+ #: util/theme-editor/theme_editor.php:211
997
+ msgid "Submit failed!"
998
+ msgstr "Zatwierdzenie się nie powiodło!"
999
+
1000
+ #: util/theme-editor/theme_editor.php:291
1001
+ msgid "Information"
1002
+ msgstr "Informacja"
1003
+
1004
+ #: util/theme-editor/theme_editor.php:292
1005
+ msgid "Highlighting"
1006
+ msgstr "Kolorowanie"
1007
+
1008
+ #: util/theme-editor/theme_editor.php:293
1009
+ msgid "Frame"
1010
+ msgstr "Ramka"
1011
+
1012
+ #: util/theme-editor/theme_editor.php:295
1013
+ msgid "Line Numbers"
1014
+ msgstr "Numery linii"
1015
+
1016
+ #: util/theme-editor/theme_editor.php:298
1017
+ msgid "Background"
1018
+ msgstr "Tło"
1019
+
1020
+ #: util/theme-editor/theme_editor.php:299
1021
+ msgid "Text"
1022
+ msgstr "Tekst"
1023
+
1024
+ #: util/theme-editor/theme_editor.php:300
1025
+ msgid "Border"
1026
+ msgstr "Obramowanie"
1027
+
1028
+ #: util/theme-editor/theme_editor.php:301
1029
+ msgid "Top Border"
1030
+ msgstr "Górna krawędź"
1031
+
1032
+ #: util/theme-editor/theme_editor.php:302
1033
+ msgid "Bottom Border"
1034
+ msgstr "Dolna krawędź"
1035
+
1036
+ #: util/theme-editor/theme_editor.php:303
1037
+ msgid "Right Border"
1038
+ msgstr "Prawa krawędź"
1039
+
1040
+ #: util/theme-editor/theme_editor.php:305
1041
+ msgid "Hover"
1042
+ msgstr ""
1043
 
1044
+ #: util/theme-editor/theme_editor.php:306
1045
+ msgid "Active"
1046
+ msgstr ""
1047
+
1048
+ #: util/theme-editor/theme_editor.php:307
1049
+ msgid "Pressed"
1050
+ msgstr ""
1051
+
1052
+ #: util/theme-editor/theme_editor.php:308
1053
+ msgid "Pressed & Hover"
1054
+ msgstr ""
1055
+
1056
+ #: util/theme-editor/theme_editor.php:309
1057
+ msgid "Pressed & Active"
1058
+ msgstr ""
1059
+
1060
+ #: util/theme-editor/theme_editor.php:312
1061
+ msgid "Buttons"
1062
+ msgstr ""
1063
+
1064
+ #: util/theme-editor/theme_editor.php:314
1065
+ msgid "Normal"
1066
+ msgstr ""
1067
+
1068
+ #: util/theme-editor/theme_editor.php:316
1069
+ msgid "Striped"
1070
+ msgstr ""
1071
+
1072
+ #: util/theme-editor/theme_editor.php:317
1073
+ msgid "Marked"
1074
+ msgstr "Oznaczone"
1075
+
1076
+ #: util/theme-editor/theme_editor.php:318
1077
+ msgid "Striped & Marked"
1078
+ msgstr ""
1079
+
1080
+ #: util/theme-editor/theme_editor.php:348
1081
  msgid "Back To Settings"
1082
  msgstr "Powrót do ustawień"
1083
 
1084
+ #: util/theme-editor/theme_editor.php:387
1085
+ msgid "Comment"
1086
+ msgstr ""
1087
+
1088
+ #: util/theme-editor/theme_editor.php:388
1089
+ msgid "String"
1090
+ msgstr ""
1091
+
1092
+ #: util/theme-editor/theme_editor.php:389
1093
+ msgid "Preprocessor"
1094
+ msgstr ""
1095
+
1096
+ #: util/theme-editor/theme_editor.php:390
1097
+ msgid "Tag"
1098
+ msgstr "Znacznik"
1099
+
1100
+ #: util/theme-editor/theme_editor.php:391
1101
+ msgid "Keyword"
1102
+ msgstr ""
1103
+
1104
+ #: util/theme-editor/theme_editor.php:392
1105
+ msgid "Statement"
1106
+ msgstr ""
1107
+
1108
+ #: util/theme-editor/theme_editor.php:393
1109
+ msgid "Reserved"
1110
+ msgstr ""
1111
+
1112
+ #: util/theme-editor/theme_editor.php:394
1113
+ msgid "Type"
1114
+ msgstr ""
1115
+
1116
+ #: util/theme-editor/theme_editor.php:395
1117
+ msgid "Modifier"
1118
+ msgstr "Modyfikator"
1119
+
1120
+ #: util/theme-editor/theme_editor.php:396
1121
+ msgid "Identifier"
1122
  msgstr ""
1123
 
1124
+ #: util/theme-editor/theme_editor.php:397
1125
+ msgid "Entity"
1126
+ msgstr ""
1127
+
1128
+ #: util/theme-editor/theme_editor.php:398
1129
+ msgid "Variable"
1130
+ msgstr ""
1131
+
1132
+ #: util/theme-editor/theme_editor.php:399
1133
+ msgid "Constant"
1134
+ msgstr ""
1135
+
1136
+ #: util/theme-editor/theme_editor.php:400
1137
+ msgid "Operator"
1138
+ msgstr ""
1139
+
1140
+ #: util/theme-editor/theme_editor.php:401
1141
+ msgid "Symbol"
1142
+ msgstr ""
1143
+
1144
+ #: util/theme-editor/theme_editor.php:402
1145
+ msgid "Notation"
1146
+ msgstr ""
1147
+
1148
+ #: util/theme-editor/theme_editor.php:403
1149
+ msgid "Faded"
1150
+ msgstr ""
1151
+
1152
+ #: util/theme-editor/theme_editor.php:404
1153
+ msgid "HTML"
1154
+ msgstr ""
1155
+
1156
+ #: util/theme-editor/theme_editor.php:405
1157
+ msgid "Unhighlighted"
1158
+ msgstr "Niekolorowane"
1159
+
1160
+ #: util/theme-editor/theme_editor.php:539
1161
+ msgid "(Used for Copy/Paste)"
1162
+ msgstr ""
1163
+
1164
+ #. Plugin Name of the plugin/theme
1165
+ msgid "Crayon Syntax Highlighter"
1166
+ msgstr ""
1167
+
1168
+ #. Plugin URI of the plugin/theme
1169
+ msgid "https://github.com/aramk/crayon-syntax-highlighter"
1170
+ msgstr ""
1171
+
1172
+ #. Description of the plugin/theme
1173
+ msgid ""
1174
+ "Supports multiple languages, themes, highlighting from a URL, local file or "
1175
+ "post text."
1176
+ msgstr ""
1177
+ "Obsługuje wiele języków, motywy, kolorowanie kodu pobieranego z adresu URL, "
1178
+ "pliku lokalnego lub treści wpisu."
1179
+
1180
+ #. Author of the plugin/theme
1181
+ msgid "Aram Kocharyan"
1182
+ msgstr ""
1183
+
1184
+ #. Author URI of the plugin/theme
1185
+ msgid "http://aramk.com/"
1186
+ msgstr ""
trans/crayon-syntax-highlighter-sl_SI.po CHANGED
@@ -1064,7 +1064,7 @@ msgstr "Prikaži &lt;code&gt; kot"
1064
  #: crayon_settings_wp.class.php:1118
1065
  #, php-format
1066
  msgid ""
1067
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
1068
  "the %sTag Editor%s instead and convert legacy tags."
1069
  msgstr ""
1070
  "Uporaba tega označevanja za majhne značke in značke v vrstici je sedaj "
1064
  #: crayon_settings_wp.class.php:1118
1065
  #, php-format
1066
  msgid ""
1067
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
1068
  "the %sTag Editor%s instead and convert legacy tags."
1069
  msgstr ""
1070
  "Uporaba tega označevanja za majhne značke in značke v vrstici je sedaj "
trans/crayon-syntax-highlighter-ta_MY.mo ADDED
Binary file
trans/crayon-syntax-highlighter-ta_MY.po ADDED
@@ -0,0 +1,1306 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: crayon-syntax-highlighter\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-07-20 13:53+1000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: MahdiY <ymd1376@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
16
+ "crayon__;crayon_n;crayon_e\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.6.10\n"
20
+ "Language: ta_MY\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPath-1: ..\n"
23
+
24
+ # @ crayon-syntax-highlighter
25
+ #: ../crayon_formatter.class.php:286
26
+ msgid "Toggle Line Numbers"
27
+ msgstr "வரி எண்கள் நிலைமாற்றவும்"
28
+
29
+ # @ crayon-syntax-highlighter
30
+ #: ../crayon_formatter.class.php:290
31
+ msgid "Toggle Plain Code"
32
+ msgstr "மாற்று எளிய குறியீடு"
33
+
34
+ # @ crayon-syntax-highlighter
35
+ #: ../crayon_formatter.class.php:294
36
+ msgid "Toggle Line Wrap"
37
+ msgstr "மாற்று வரி மடக்கு"
38
+
39
+ # @ crayon-syntax-highlighter
40
+ #: ../crayon_formatter.class.php:298
41
+ msgid "Expand Code"
42
+ msgstr "குறியீடு விரி"
43
+
44
+ #: ../crayon_formatter.class.php:302
45
+ msgid "Copy"
46
+ msgstr "நகலெடு"
47
+
48
+ # @ crayon-syntax-highlighter
49
+ #: ../crayon_formatter.class.php:306
50
+ msgid "Open Code In New Window"
51
+ msgstr "புதிய சாளரத்தில்குறியீடு திற"
52
+
53
+ # @ crayon-syntax-highlighter
54
+ #: ../crayon_formatter.class.php:323
55
+ msgid "Contains Mixed Languages"
56
+ msgstr "கலப்பு மொழிகள் கொண்டிருக்கிறது"
57
+
58
+ # @ crayon-syntax-highlighter
59
+ #: ../crayon_settings.class.php:151
60
+ msgid "Hourly"
61
+ msgstr "மணிக்கொருமுறை"
62
+
63
+ # @ crayon-syntax-highlighter
64
+ #: ../crayon_settings.class.php:151
65
+ msgid "Daily"
66
+ msgstr "நாள்தோறும்"
67
+
68
+ # @ crayon-syntax-highlighter
69
+ #: ../crayon_settings.class.php:152
70
+ msgid "Weekly"
71
+ msgstr "வாரந்தோறும்"
72
+
73
+ # @ crayon-syntax-highlighter
74
+ #: ../crayon_settings.class.php:152
75
+ msgid "Monthly"
76
+ msgstr "மாதந்தோறும்"
77
+
78
+ # @ crayon-syntax-highlighter
79
+ #: ../crayon_settings.class.php:153
80
+ msgid "Immediately"
81
+ msgstr "உடனடியாக"
82
+
83
+ # @ crayon-syntax-highlighter
84
+ #: ../crayon_settings.class.php:164 ../crayon_settings.class.php:168
85
+ msgid "Max"
86
+ msgstr "அதிகபட்சம்"
87
+
88
+ # @ crayon-syntax-highlighter
89
+ #: ../crayon_settings.class.php:164 ../crayon_settings.class.php:168
90
+ msgid "Min"
91
+ msgstr "குறைந்தது"
92
+
93
+ # @ crayon-syntax-highlighter
94
+ #: ../crayon_settings.class.php:164 ../crayon_settings.class.php:168
95
+ msgid "Static"
96
+ msgstr "நிலையான"
97
+
98
+ # @ crayon-syntax-highlighter
99
+ #: ../crayon_settings.class.php:166 ../crayon_settings.class.php:170
100
+ #: ../crayon_settings_wp.class.php:749 ../crayon_settings_wp.class.php:758
101
+ #: ../crayon_settings_wp.class.php:1037 ../crayon_settings_wp.class.php:1039
102
+ msgid "Pixels"
103
+ msgstr "பிக்சல்கள்"
104
+
105
+ # @ crayon-syntax-highlighter
106
+ #: ../crayon_settings.class.php:166 ../crayon_settings.class.php:170
107
+ msgid "Percent"
108
+ msgstr "சதவீதம்"
109
+
110
+ # @ crayon-syntax-highlighter
111
+ #: ../crayon_settings.class.php:179
112
+ msgid "None"
113
+ msgstr "எதுவும் இல்லை"
114
+
115
+ # @ crayon-syntax-highlighter
116
+ #: ../crayon_settings.class.php:179
117
+ msgid "Left"
118
+ msgstr "இடது"
119
+
120
+ # @ crayon-syntax-highlighter
121
+ #: ../crayon_settings.class.php:179
122
+ msgid "Center"
123
+ msgstr "நடு"
124
+
125
+ # @ crayon-syntax-highlighter
126
+ #: ../crayon_settings.class.php:179
127
+ msgid "Right"
128
+ msgstr "வலது"
129
+
130
+ # @ crayon-syntax-highlighter
131
+ #: ../crayon_settings.class.php:181 ../crayon_settings.class.php:206
132
+ msgid "On MouseOver"
133
+ msgstr "சுட்டி மேலே வைக்கப்படும்போது"
134
+
135
+ # @ crayon-syntax-highlighter
136
+ #: ../crayon_settings.class.php:181 ../crayon_settings.class.php:187
137
+ msgid "Always"
138
+ msgstr "எப்போதும்"
139
+
140
+ # @ crayon-syntax-highlighter
141
+ #: ../crayon_settings.class.php:181 ../crayon_settings.class.php:187
142
+ msgid "Never"
143
+ msgstr "வேண்டாம்"
144
+
145
+ # @ crayon-syntax-highlighter
146
+ #: ../crayon_settings.class.php:187
147
+ msgid "When Found"
148
+ msgstr "காணப்படும் போது"
149
+
150
+ # @ crayon-syntax-highlighter
151
+ #: ../crayon_settings.class.php:206
152
+ msgid "On Double Click"
153
+ msgstr "இரட்டை கிளிக்கில்"
154
+
155
+ # @ crayon-syntax-highlighter
156
+ #: ../crayon_settings.class.php:206
157
+ msgid "On Single Click"
158
+ msgstr "ஒரே கிளிக்கில் "
159
+
160
+ # @ crayon-syntax-highlighter
161
+ #: ../crayon_settings.class.php:206
162
+ msgid "Disable Mouse Events"
163
+ msgstr "கணினி சொடுக்கி நிகழ்வுகள் முடக்கு"
164
+
165
+ # @ crayon-syntax-highlighter
166
+ #: ../crayon_settings.class.php:213
167
+ msgid "An error has occurred. Please try again later."
168
+ msgstr "ஒரு பிழை ஏற்பட்டுள்ளது. பின்னர் மீண்டும் முயற்சிக்கவும்."
169
+
170
+ # @ crayon-syntax-highlighter
171
+ #: ../crayon_settings.class.php:229
172
+ msgid "Inline Tag"
173
+ msgstr "இன்லைன் இணைப்பு"
174
+
175
+ #: ../crayon_settings.class.php:229
176
+ msgid "Block Tag"
177
+ msgstr "பிளாக் இணைப்பு"
178
+
179
+ # @ crayon-syntax-highlighter
180
+ #: ../crayon_settings_wp.class.php:54 ../crayon_settings_wp.class.php:211
181
+ #: ../crayon_settings_wp.class.php:1242
182
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:256
183
+ msgid "Settings"
184
+ msgstr "அமைப்புகள்"
185
+
186
+ # @ crayon-syntax-highlighter
187
+ #: ../crayon_settings_wp.class.php:137
188
+ #, php-format
189
+ msgid "Press %s to Copy, %s to Paste"
190
+ msgstr "நகலெடுக்க பிரஸ் %s , ஒத்தவதற்கு பிரஸ் %s "
191
+
192
+ #: ../crayon_settings_wp.class.php:138
193
+ msgid "Click To Expand Code"
194
+ msgstr "குறியீடு விரிவிக்க கிளிக் செய்யவும்"
195
+
196
+ #: ../crayon_settings_wp.class.php:180
197
+ msgid "Prompt"
198
+ msgstr ""
199
+
200
+ #: ../crayon_settings_wp.class.php:181
201
+ msgid "Value"
202
+ msgstr "மதிப்பு"
203
+
204
+ #: ../crayon_settings_wp.class.php:182
205
+ msgid "Alert"
206
+ msgstr "எச்சரிக்கை"
207
+
208
+ # @ crayon-syntax-highlighter
209
+ #: ../crayon_settings_wp.class.php:183 ../crayon_settings_wp.class.php:897
210
+ msgid "No"
211
+ msgstr "இல்லை"
212
+
213
+ #: ../crayon_settings_wp.class.php:184 ../crayon_settings_wp.class.php:897
214
+ msgid "Yes"
215
+ msgstr "ஆமாம்"
216
+
217
+ #: ../crayon_settings_wp.class.php:185
218
+ msgid "Confirm"
219
+ msgstr "உறுதிப்படுத்து"
220
+
221
+ # @ crayon-syntax-highlighter
222
+ #: ../crayon_settings_wp.class.php:186
223
+ msgid "Change Code"
224
+ msgstr "மாற்று குறியீடு"
225
+
226
+ # @ crayon-syntax-highlighter
227
+ #: ../crayon_settings_wp.class.php:194
228
+ msgid "You do not have sufficient permissions to access this page."
229
+ msgstr "நீங்கள் இந்த பக்கம் அணுக போதுமான அனுமதிகள் இல்லை."
230
+
231
+ # @ crayon-syntax-highlighter
232
+ #: ../crayon_settings_wp.class.php:226
233
+ msgid "Save Changes"
234
+ msgstr "சேமி"
235
+
236
+ # @ crayon-syntax-highlighter
237
+ #: ../crayon_settings_wp.class.php:233
238
+ msgid "Reset Settings"
239
+ msgstr "மீட்டமை அமைப்புகள்"
240
+
241
+ # @ crayon-syntax-highlighter
242
+ #: ../crayon_settings_wp.class.php:492
243
+ msgid "General"
244
+ msgstr "பொது"
245
+
246
+ # @ crayon-syntax-highlighter
247
+ #: ../crayon_settings_wp.class.php:493
248
+ msgid "Theme"
249
+ msgstr "தீம்"
250
+
251
+ # @ crayon-syntax-highlighter
252
+ #: ../crayon_settings_wp.class.php:494
253
+ msgid "Font"
254
+ msgstr "எழுத்துரு"
255
+
256
+ # @ crayon-syntax-highlighter
257
+ #: ../crayon_settings_wp.class.php:495
258
+ msgid "Metrics"
259
+ msgstr "மெட்ரிக்ஸ்"
260
+
261
+ # @ crayon-syntax-highlighter
262
+ #: ../crayon_settings_wp.class.php:496
263
+ #: ../util/theme-editor/theme_editor.php:299
264
+ msgid "Toolbar"
265
+ msgstr "கருவிப்பட்டை"
266
+
267
+ # @ crayon-syntax-highlighter
268
+ #: ../crayon_settings_wp.class.php:497
269
+ #: ../util/theme-editor/theme_editor.php:297
270
+ msgid "Lines"
271
+ msgstr "கோடுகள்"
272
+
273
+ # @ crayon-syntax-highlighter
274
+ #: ../crayon_settings_wp.class.php:498
275
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:216
276
+ msgid "Code"
277
+ msgstr "குறியீடு"
278
+
279
+ # @ crayon-syntax-highlighter
280
+ #: ../crayon_settings_wp.class.php:499
281
+ msgid "Tags"
282
+ msgstr "குறிச்சொற்கள்"
283
+
284
+ # @ crayon-syntax-highlighter
285
+ #: ../crayon_settings_wp.class.php:500
286
+ msgid "Languages"
287
+ msgstr "மொழிகள்"
288
+
289
+ # @ crayon-syntax-highlighter
290
+ #: ../crayon_settings_wp.class.php:501
291
+ msgid "Files"
292
+ msgstr "கோப்புகள்"
293
+
294
+ #: ../crayon_settings_wp.class.php:502
295
+ msgid "Posts"
296
+ msgstr "இடுகைகள்"
297
+
298
+ # @ crayon-syntax-highlighter
299
+ #: ../crayon_settings_wp.class.php:503
300
+ msgid "Tag Editor"
301
+ msgstr "டாக் எடிட்டரை"
302
+
303
+ # @ crayon-syntax-highlighter
304
+ #: ../crayon_settings_wp.class.php:504
305
+ msgid "Misc"
306
+ msgstr "மற்றவை"
307
+
308
+ # @ crayon-syntax-highlighter
309
+ #: ../crayon_settings_wp.class.php:507
310
+ msgid "Debug"
311
+ msgstr "பிழைத்திருத்தம்"
312
+
313
+ # @ crayon-syntax-highlighter
314
+ #: ../crayon_settings_wp.class.php:508
315
+ msgid "Errors"
316
+ msgstr "பிழைகள்"
317
+
318
+ # @ crayon-syntax-highlighter
319
+ #: ../crayon_settings_wp.class.php:509
320
+ msgid "Log"
321
+ msgstr "பதிகை"
322
+
323
+ # @ crayon-syntax-highlighter
324
+ #: ../crayon_settings_wp.class.php:512
325
+ msgid "About"
326
+ msgstr "பற்றி"
327
+
328
+ # @ crayon-syntax-highlighter
329
+ #: ../crayon_settings_wp.class.php:726
330
+ msgid "Height"
331
+ msgstr "உயரம்"
332
+
333
+ # @ crayon-syntax-highlighter
334
+ #: ../crayon_settings_wp.class.php:732
335
+ msgid "Width"
336
+ msgstr "அகலம்"
337
+
338
+ # @ crayon-syntax-highlighter
339
+ #: ../crayon_settings_wp.class.php:738
340
+ msgid "Top Margin"
341
+ msgstr "மேல்மட்ட மார்ஜின்"
342
+
343
+ # @ crayon-syntax-highlighter
344
+ #: ../crayon_settings_wp.class.php:739
345
+ msgid "Bottom Margin"
346
+ msgstr "பாட்டம் மார்ஜின்"
347
+
348
+ # @ crayon-syntax-highlighter
349
+ #: ../crayon_settings_wp.class.php:740 ../crayon_settings_wp.class.php:745
350
+ msgid "Left Margin"
351
+ msgstr "இடது மார்ஜின்"
352
+
353
+ # @ crayon-syntax-highlighter
354
+ #: ../crayon_settings_wp.class.php:741 ../crayon_settings_wp.class.php:745
355
+ msgid "Right Margin"
356
+ msgstr "வலது மார்ஜின்"
357
+
358
+ # @ crayon-syntax-highlighter
359
+ #: ../crayon_settings_wp.class.php:751
360
+ msgid "Horizontal Alignment"
361
+ msgstr "கிடைமட்ட சீரமைப்பு"
362
+
363
+ # @ crayon-syntax-highlighter
364
+ #: ../crayon_settings_wp.class.php:754
365
+ msgid "Allow floating elements to surround Crayon"
366
+ msgstr "கிரேயான் சுற்றி கூறுகளை மிதந்து அனுமதி"
367
+
368
+ # @ crayon-syntax-highlighter
369
+ #: ../crayon_settings_wp.class.php:756
370
+ msgid "Inline Margin"
371
+ msgstr "இன்லைன் மார்ஜின்"
372
+
373
+ # @ crayon-syntax-highlighter
374
+ #: ../crayon_settings_wp.class.php:764
375
+ msgid "Display the Toolbar"
376
+ msgstr "டூல்பார்"
377
+
378
+ # @ crayon-syntax-highlighter
379
+ #: ../crayon_settings_wp.class.php:767
380
+ msgid "Overlay the toolbar on code rather than push it down when possible"
381
+ msgstr "Overlay the toolbar on code rather than push it down when possible"
382
+
383
+ # @ crayon-syntax-highlighter
384
+ #: ../crayon_settings_wp.class.php:768
385
+ msgid "Toggle the toolbar on single click when it is overlayed"
386
+ msgstr "அது இடப்படுகிறது போது ஒரே கிளிக்கில் மீது டூல்பார் நிலைமாற்றவும்"
387
+
388
+ # @ crayon-syntax-highlighter
389
+ #: ../crayon_settings_wp.class.php:769
390
+ msgid "Delay hiding the toolbar on MouseOut"
391
+ msgstr "தாமதம் மவுஸ் அவுட் மீது டூல்பார் மறைத்து"
392
+
393
+ # @ crayon-syntax-highlighter
394
+ #: ../crayon_settings_wp.class.php:771
395
+ msgid "Display the title when provided"
396
+ msgstr "வழங்கப்படும் போது தலைப்பை காட்ட"
397
+
398
+ # @ crayon-syntax-highlighter
399
+ #: ../crayon_settings_wp.class.php:772
400
+ msgid "Display the language"
401
+ msgstr "மொழியை காண்பிக்கும்"
402
+
403
+ # @ crayon-syntax-highlighter
404
+ #: ../crayon_settings_wp.class.php:779
405
+ msgid "Display striped code lines"
406
+ msgstr "கோடிட்ட குறியீடு கோடுகள் காண்பிக்கும்"
407
+
408
+ # @ crayon-syntax-highlighter
409
+ #: ../crayon_settings_wp.class.php:780
410
+ msgid "Enable line marking for important lines"
411
+ msgstr "முக்கியமான வரிகளை குறிக்கும் வரி இயக்கு"
412
+
413
+ #: ../crayon_settings_wp.class.php:781
414
+ msgid "Enable line ranges for showing only parts of code"
415
+ msgstr "குறியீடு பகுதிகளை மட்டுமே காட்டும் வரி எல்லைகள் இயக்கு"
416
+
417
+ # @ crayon-syntax-highlighter
418
+ #: ../crayon_settings_wp.class.php:782
419
+ msgid "Display line numbers by default"
420
+ msgstr "இயல்பாக காட்டு வரிசை எண்களை"
421
+
422
+ # @ crayon-syntax-highlighter
423
+ #: ../crayon_settings_wp.class.php:783
424
+ msgid "Enable line number toggling"
425
+ msgstr "வரி எண் மற்றொரு முறை இயக்கு"
426
+
427
+ # @ crayon-syntax-highlighter
428
+ #: ../crayon_settings_wp.class.php:784
429
+ msgid "Wrap lines by default"
430
+ msgstr "இயல்பாக மடக்கு கோடுகள்"
431
+
432
+ # @ crayon-syntax-highlighter
433
+ #: ../crayon_settings_wp.class.php:785
434
+ msgid "Enable line wrap toggling"
435
+ msgstr "வரி மடக்கு மற்றொரு முறை இயக்கு"
436
+
437
+ # @ crayon-syntax-highlighter
438
+ #: ../crayon_settings_wp.class.php:786
439
+ msgid "Start line numbers from"
440
+ msgstr "வரி எண்கள் இருந்து தொடங்க"
441
+
442
+ # @ crayon-syntax-highlighter
443
+ #: ../crayon_settings_wp.class.php:797
444
+ msgid "When no language is provided, use the fallback"
445
+ msgstr "எந்த மொழியை வழங்கப்படுகிறது போது, குறைவடையும் பயன்படுத்த"
446
+
447
+ # @ crayon-syntax-highlighter
448
+ #: ../crayon_settings_wp.class.php:803
449
+ #, php-format
450
+ msgid "%d language has been detected."
451
+ msgstr "%d மொழி கண்டறியப்பட்டது."
452
+
453
+ # @ crayon-syntax-highlighter
454
+ #: ../crayon_settings_wp.class.php:804
455
+ msgid "Parsing was successful"
456
+ msgstr "பாகுபடுத்தல் வெற்றிகரமான இருந்தது"
457
+
458
+ # @ crayon-syntax-highlighter
459
+ #: ../crayon_settings_wp.class.php:804
460
+ msgid "Parsing was unsuccessful"
461
+ msgstr "பாகுபடுத்தல் வெற்றியடையவில்லை"
462
+
463
+ # @ crayon-syntax-highlighter
464
+ #: ../crayon_settings_wp.class.php:810
465
+ #, php-format
466
+ msgid "The selected language with id %s could not be loaded"
467
+ msgstr "ஐடி %s கொண்டு தேர்ந்தெடுக்கப்பட்ட மொழியில் மாற முடியவில்லை"
468
+
469
+ # @ crayon-syntax-highlighter
470
+ #: ../crayon_settings_wp.class.php:813
471
+ msgid "Show Languages"
472
+ msgstr "காண்பி மொழிகள்"
473
+
474
+ #: ../crayon_settings_wp.class.php:815
475
+ msgid "No languages could be parsed."
476
+ msgstr " அலச. மொழிகள் இல்லை"
477
+
478
+ #: ../crayon_settings_wp.class.php:826 ../crayon_settings_wp.class.php:877
479
+ msgid "ID"
480
+ msgstr "ஐடி"
481
+
482
+ #: ../crayon_settings_wp.class.php:826
483
+ msgid "Name"
484
+ msgstr "பெயர்"
485
+
486
+ # @ crayon-syntax-highlighter
487
+ #: ../crayon_settings_wp.class.php:826 ../crayon_settings_wp.class.php:1182
488
+ msgid "Version"
489
+ msgstr "பதிப்பு"
490
+
491
+ #: ../crayon_settings_wp.class.php:826
492
+ msgid "File Extensions"
493
+ msgstr "கோப்பு நீட்டிப்புகள்"
494
+
495
+ #: ../crayon_settings_wp.class.php:826
496
+ msgid "Aliases"
497
+ msgstr "மாற்றுப்பெயர்கள்"
498
+
499
+ # @ crayon-syntax-highlighter
500
+ #: ../crayon_settings_wp.class.php:826
501
+ msgid "State"
502
+ msgstr "மாநிலம்"
503
+
504
+ #: ../crayon_settings_wp.class.php:841
505
+ msgid ""
506
+ "Languages that have the same extension as their name don't need to "
507
+ "explicitly map extensions."
508
+ msgstr ""
509
+
510
+ #: ../crayon_settings_wp.class.php:843
511
+ msgid "No languages could be found."
512
+ msgstr "மொழிகள் இல்லை காணலாம்."
513
+
514
+ #: ../crayon_settings_wp.class.php:850
515
+ msgid "Show Crayon Posts"
516
+ msgstr "காண்பி கிரேயான் இடுகைகள்"
517
+
518
+ #: ../crayon_settings_wp.class.php:851
519
+ msgid "Refresh"
520
+ msgstr "புதுப்பிப்பு"
521
+
522
+ # @ crayon-syntax-highlighter
523
+ #: ../crayon_settings_wp.class.php:877
524
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:193
525
+ #: ../util/theme-editor/theme_editor.php:314
526
+ msgid "Title"
527
+ msgstr "தலைப்பு"
528
+
529
+ #: ../crayon_settings_wp.class.php:877
530
+ msgid "Posted"
531
+ msgstr ""
532
+
533
+ #: ../crayon_settings_wp.class.php:877
534
+ msgid "Modifed"
535
+ msgstr ""
536
+
537
+ # @ crayon-syntax-highlighter
538
+ #: ../crayon_settings_wp.class.php:877
539
+ msgid "Contains Legacy Tags?"
540
+ msgstr ""
541
+
542
+ #: ../crayon_settings_wp.class.php:992
543
+ msgid "Edit"
544
+ msgstr "திருத்த"
545
+
546
+ #: ../crayon_settings_wp.class.php:992
547
+ #: ../util/theme-editor/theme_editor.php:199
548
+ msgid "Duplicate"
549
+ msgstr "பிரதி"
550
+
551
+ #: ../crayon_settings_wp.class.php:992
552
+ msgid "Submit"
553
+ msgstr "சமர்ப்பிக்கவும்"
554
+
555
+ #: ../crayon_settings_wp.class.php:993
556
+ #: ../util/theme-editor/theme_editor.php:196
557
+ msgid "Delete"
558
+ msgstr "நீக்கு"
559
+
560
+ # @ crayon-syntax-highlighter
561
+ #: ../crayon_settings_wp.class.php:995
562
+ msgid "Loading..."
563
+ msgstr "ஏற்றுகிறது ..."
564
+
565
+ #: ../crayon_settings_wp.class.php:997
566
+ msgid "Duplicate a Stock Theme into a User Theme to allow editing."
567
+ msgstr "எடிட்டிங் அனுமதிக்க ஒரு பயனர் தீம் ஒரு பங்குவர்த்தக தீம் நகல்."
568
+
569
+ # @ crayon-syntax-highlighter
570
+ #: ../crayon_settings_wp.class.php:1008
571
+ #, php-format
572
+ msgid ""
573
+ "Change the %1$sfallback language%2$s to change the sample code or %3$schange "
574
+ "it manually%4$s. Lines 5-7 are marked."
575
+ msgstr ""
576
+
577
+ # @ crayon-syntax-highlighter
578
+ #: ../crayon_settings_wp.class.php:1015
579
+ msgid "Enable Live Preview"
580
+ msgstr "நேரடி முன்னோட்டம் இயக்கு"
581
+
582
+ # @ crayon-syntax-highlighter
583
+ #: ../crayon_settings_wp.class.php:1017
584
+ msgid "Enqueue themes in the header (more efficient)."
585
+ msgstr "தலைப்பு (திறமையான) இல் என்கியூ கருப்பொருள்கள்."
586
+
587
+ # @ crayon-syntax-highlighter
588
+ #: ../crayon_settings_wp.class.php:1020
589
+ #, php-format
590
+ msgid "The selected theme with id %s could not be loaded"
591
+ msgstr ""
592
+
593
+ # @ crayon-syntax-highlighter
594
+ #: ../crayon_settings_wp.class.php:1035
595
+ msgid "Custom Font Size"
596
+ msgstr ""
597
+
598
+ # @ crayon-syntax-highlighter
599
+ #: ../crayon_settings_wp.class.php:1037
600
+ msgid "Line Height"
601
+ msgstr "வரி உயரம்"
602
+
603
+ # @ crayon-syntax-highlighter
604
+ #: ../crayon_settings_wp.class.php:1042
605
+ #, php-format
606
+ msgid "The selected font with id %s could not be loaded"
607
+ msgstr ""
608
+
609
+ # @ crayon-syntax-highlighter
610
+ #: ../crayon_settings_wp.class.php:1048
611
+ msgid "Enqueue fonts in the header (more efficient)."
612
+ msgstr ""
613
+
614
+ # @ crayon-syntax-highlighter
615
+ #: ../crayon_settings_wp.class.php:1053
616
+ msgid "Enable plain code view and display"
617
+ msgstr ""
618
+
619
+ # @ crayon-syntax-highlighter
620
+ #: ../crayon_settings_wp.class.php:1056
621
+ msgid "Enable plain code toggling"
622
+ msgstr ""
623
+
624
+ # @ crayon-syntax-highlighter
625
+ #: ../crayon_settings_wp.class.php:1057
626
+ msgid "Show the plain code by default"
627
+ msgstr ""
628
+
629
+ # @ crayon-syntax-highlighter
630
+ #: ../crayon_settings_wp.class.php:1058
631
+ msgid "Enable code copy/paste"
632
+ msgstr ""
633
+
634
+ # @ crayon-syntax-highlighter
635
+ #: ../crayon_settings_wp.class.php:1060
636
+ msgid "Enable opening code in a window"
637
+ msgstr ""
638
+
639
+ # @ crayon-syntax-highlighter
640
+ #: ../crayon_settings_wp.class.php:1061
641
+ msgid "Always display scrollbars"
642
+ msgstr ""
643
+
644
+ #: ../crayon_settings_wp.class.php:1062
645
+ msgid "Minimize code"
646
+ msgstr "குறியீடு குறைத்தல்"
647
+
648
+ #: ../crayon_settings_wp.class.php:1063
649
+ msgid "Expand code beyond page borders on mouseover"
650
+ msgstr ""
651
+
652
+ #: ../crayon_settings_wp.class.php:1064
653
+ msgid "Enable code expanding toggling when possible"
654
+ msgstr ""
655
+
656
+ # @ crayon-syntax-highlighter
657
+ #: ../crayon_settings_wp.class.php:1067
658
+ msgid "Decode HTML entities in code"
659
+ msgstr ""
660
+
661
+ # @ crayon-syntax-highlighter
662
+ #: ../crayon_settings_wp.class.php:1069
663
+ msgid "Decode HTML entities in attributes"
664
+ msgstr ""
665
+
666
+ # @ crayon-syntax-highlighter
667
+ #: ../crayon_settings_wp.class.php:1071
668
+ msgid "Remove whitespace surrounding the shortcode content"
669
+ msgstr ""
670
+
671
+ #: ../crayon_settings_wp.class.php:1073
672
+ msgid "Remove &lt;code&gt; tags surrounding the shortcode content"
673
+ msgstr ""
674
+
675
+ # @ crayon-syntax-highlighter
676
+ #: ../crayon_settings_wp.class.php:1074
677
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
678
+ msgstr ""
679
+
680
+ # @ crayon-syntax-highlighter
681
+ #: ../crayon_settings_wp.class.php:1076
682
+ msgid "Show Mixed Language Icon (+)"
683
+ msgstr ""
684
+
685
+ # @ crayon-syntax-highlighter
686
+ #: ../crayon_settings_wp.class.php:1078
687
+ msgid "Tab size in spaces"
688
+ msgstr ""
689
+
690
+ #: ../crayon_settings_wp.class.php:1080
691
+ msgid "Blank lines before code:"
692
+ msgstr "குறியீடு முன் வெற்றுக் கோடுகள்:"
693
+
694
+ #: ../crayon_settings_wp.class.php:1082
695
+ msgid "Blank lines after code:"
696
+ msgstr "குறியீடு பிறகு வெற்று கோடுகள்:"
697
+
698
+ # @ crayon-syntax-highlighter
699
+ #: ../crayon_settings_wp.class.php:1087
700
+ msgid "Capture Inline Tags"
701
+ msgstr "இன்லைன் குறிச்சொற்கள் கைப்பற்ற"
702
+
703
+ # @ crayon-syntax-highlighter
704
+ #: ../crayon_settings_wp.class.php:1088
705
+ msgid "Wrap Inline Tags"
706
+ msgstr "மடக்கு இன்லைன் இணைப்புகள்"
707
+
708
+ # @ crayon-syntax-highlighter
709
+ #: ../crayon_settings_wp.class.php:1089
710
+ msgid "Capture &lt;code&gt; as"
711
+ msgstr ""
712
+
713
+ # @ crayon-syntax-highlighter
714
+ #: ../crayon_settings_wp.class.php:1093
715
+ msgid "Capture `backquotes` as &lt;code&gt;"
716
+ msgstr ""
717
+
718
+ # @ crayon-syntax-highlighter
719
+ #: ../crayon_settings_wp.class.php:1094
720
+ msgid "Capture &lt;pre&gt; tags as Crayons"
721
+ msgstr ""
722
+
723
+ #: ../crayon_settings_wp.class.php:1096
724
+ #, php-format
725
+ msgid ""
726
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
727
+ "the %sTag Editor%s instead and convert legacy tags."
728
+ msgstr ""
729
+
730
+ # @ crayon-syntax-highlighter
731
+ #: ../crayon_settings_wp.class.php:1097
732
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
733
+ msgstr ""
734
+
735
+ # @ crayon-syntax-highlighter
736
+ #: ../crayon_settings_wp.class.php:1098
737
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
738
+ msgstr ""
739
+
740
+ # @ crayon-syntax-highlighter
741
+ #: ../crayon_settings_wp.class.php:1099
742
+ msgid "Enable [plain][/plain] tag."
743
+ msgstr ""
744
+
745
+ # @ crayon-syntax-highlighter
746
+ #: ../crayon_settings_wp.class.php:1104
747
+ msgid ""
748
+ "When loading local files and a relative path is given for the URL, use the "
749
+ "absolute path"
750
+ msgstr ""
751
+
752
+ # @ crayon-syntax-highlighter
753
+ #: ../crayon_settings_wp.class.php:1107
754
+ msgid "Followed by your relative URL."
755
+ msgstr ""
756
+
757
+ #: ../crayon_settings_wp.class.php:1114
758
+ msgid "Convert Legacy Tags"
759
+ msgstr ""
760
+
761
+ #: ../crayon_settings_wp.class.php:1117
762
+ msgid "No Legacy Tags Found"
763
+ msgstr "எந்த மரபுரிமை இணைப்புகள் கிடைக்கவில்லை"
764
+
765
+ #: ../crayon_settings_wp.class.php:1121
766
+ msgid "Encode"
767
+ msgstr "என்கோடு"
768
+
769
+ # @ crayon-syntax-highlighter
770
+ #: ../crayon_settings_wp.class.php:1123
771
+ #, php-format
772
+ msgid ""
773
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
774
+ "attribute"
775
+ msgstr ""
776
+
777
+ #: ../crayon_settings_wp.class.php:1126
778
+ msgid ""
779
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
780
+ "bbPress)"
781
+ msgstr ""
782
+
783
+ #: ../crayon_settings_wp.class.php:1127
784
+ msgid "Display Tag Editor settings on the frontend"
785
+ msgstr ""
786
+
787
+ # @ crayon-syntax-highlighter
788
+ #: ../crayon_settings_wp.class.php:1131
789
+ msgid "Clear the cache used to store remote code requests"
790
+ msgstr ""
791
+
792
+ # @ crayon-syntax-highlighter
793
+ #: ../crayon_settings_wp.class.php:1133
794
+ msgid "Clear Now"
795
+ msgstr "தெளிவு இப்பொழுது"
796
+
797
+ # @ crayon-syntax-highlighter
798
+ #: ../crayon_settings_wp.class.php:1134
799
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
800
+ msgstr ""
801
+
802
+ # @ crayon-syntax-highlighter
803
+ #: ../crayon_settings_wp.class.php:1135
804
+ msgid "Disable enqueuing for page templates that may contain The Loop."
805
+ msgstr ""
806
+
807
+ # @ crayon-syntax-highlighter
808
+ #: ../crayon_settings_wp.class.php:1136
809
+ msgid "Allow Crayons inside comments"
810
+ msgstr ""
811
+
812
+ #: ../crayon_settings_wp.class.php:1137
813
+ msgid "Remove Crayons from excerpts"
814
+ msgstr ""
815
+
816
+ # @ crayon-syntax-highlighter
817
+ #: ../crayon_settings_wp.class.php:1138
818
+ msgid "Load Crayons only from the main Wordpress query"
819
+ msgstr ""
820
+
821
+ # @ crayon-syntax-highlighter
822
+ #: ../crayon_settings_wp.class.php:1139
823
+ msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
824
+ msgstr ""
825
+
826
+ # @ crayon-syntax-highlighter
827
+ #: ../crayon_settings_wp.class.php:1140
828
+ msgid "Disable animations"
829
+ msgstr ""
830
+
831
+ # @ crayon-syntax-highlighter
832
+ #: ../crayon_settings_wp.class.php:1141
833
+ msgid "Disable runtime stats"
834
+ msgstr ""
835
+
836
+ # @ crayon-syntax-highlighter
837
+ #: ../crayon_settings_wp.class.php:1147
838
+ msgid "Log errors for individual Crayons"
839
+ msgstr ""
840
+
841
+ # @ crayon-syntax-highlighter
842
+ #: ../crayon_settings_wp.class.php:1148
843
+ msgid "Log system-wide errors"
844
+ msgstr ""
845
+
846
+ # @ crayon-syntax-highlighter
847
+ #: ../crayon_settings_wp.class.php:1149
848
+ msgid "Display custom message for errors"
849
+ msgstr ""
850
+
851
+ # @ crayon-syntax-highlighter
852
+ #: ../crayon_settings_wp.class.php:1161
853
+ msgid "Show Log"
854
+ msgstr "பதிவைக் காண்பிக்கவும்"
855
+
856
+ # @ crayon-syntax-highlighter
857
+ #: ../crayon_settings_wp.class.php:1161
858
+ msgid "Hide Log"
859
+ msgstr "பதிகை மறை"
860
+
861
+ # @ crayon-syntax-highlighter
862
+ #: ../crayon_settings_wp.class.php:1163
863
+ msgid "Clear Log"
864
+ msgstr "தெளிவு பதிகை"
865
+
866
+ # @ crayon-syntax-highlighter
867
+ #: ../crayon_settings_wp.class.php:1164
868
+ msgid "Email Admin"
869
+ msgstr "மின்னஞ்சல் நிர்வாகம்"
870
+
871
+ # @ crayon-syntax-highlighter
872
+ #: ../crayon_settings_wp.class.php:1166
873
+ msgid "Email Developer"
874
+ msgstr "மின்னஞ்சல் டெவலப்பர்"
875
+
876
+ # @ crayon-syntax-highlighter
877
+ #: ../crayon_settings_wp.class.php:1168
878
+ msgid "The log is currently empty."
879
+ msgstr "பதிவு தற்போது காலியாக உள்ளது."
880
+
881
+ # @ crayon-syntax-highlighter
882
+ #: ../crayon_settings_wp.class.php:1170
883
+ msgid "The log file exists and is writable."
884
+ msgstr "பதிவு கோப்பு உள்ளது மற்றும் எழுத."
885
+
886
+ # @ crayon-syntax-highlighter
887
+ #: ../crayon_settings_wp.class.php:1170
888
+ msgid "The log file exists and is not writable."
889
+ msgstr "பதிவு கோப்பு உள்ளது மற்றும் எழுத அல்ல."
890
+
891
+ # @ crayon-syntax-highlighter
892
+ #: ../crayon_settings_wp.class.php:1172
893
+ msgid "The log file does not exist and is not writable."
894
+ msgstr "பதிவு கோப்பு உள்ளவில்லை மற்றும் எழுதக்கூடியதாக இல்லை."
895
+
896
+ # @ crayon-syntax-highlighter
897
+ #: ../crayon_settings_wp.class.php:1184
898
+ msgid "Developer"
899
+ msgstr "டெவலப்பர்"
900
+
901
+ # @ crayon-syntax-highlighter
902
+ #: ../crayon_settings_wp.class.php:1185
903
+ msgid "Translators"
904
+ msgstr "மொழிபெயர்ப்பாளர்"
905
+
906
+ # @ crayon-syntax-highlighter
907
+ #: ../crayon_settings_wp.class.php:1236
908
+ msgid "?"
909
+ msgstr "?"
910
+
911
+ # @ crayon-syntax-highlighter
912
+ #: ../crayon_settings_wp.class.php:1243
913
+ #: ../util/theme-editor/theme_editor.php:336
914
+ msgid "Theme Editor"
915
+ msgstr "தீம் எடிட்டர்"
916
+
917
+ # @ crayon-syntax-highlighter
918
+ #: ../crayon_settings_wp.class.php:1244
919
+ msgid "Donate"
920
+ msgstr "தானம் செய்யுங்கள்"
921
+
922
+ # @ crayon-syntax-highlighter
923
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:65
924
+ msgid "Add Crayon Code"
925
+ msgstr "கிரேயான் குறியீடு சேர்"
926
+
927
+ # @ crayon-syntax-highlighter
928
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:66
929
+ msgid "Edit Crayon Code"
930
+ msgstr "திருத்த கிரேயான் குறியீடு"
931
+
932
+ # @ crayon-syntax-highlighter
933
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:67
934
+ msgid "Add"
935
+ msgstr "சேர்"
936
+
937
+ # @ crayon-syntax-highlighter
938
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:68
939
+ #: ../util/theme-editor/theme_editor.php:352
940
+ msgid "Save"
941
+ msgstr "சேமி"
942
+
943
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:184
944
+ msgid "OK"
945
+ msgstr "சரி"
946
+
947
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:186
948
+ msgid "Cancel"
949
+ msgstr "ரத்து"
950
+
951
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:195
952
+ msgid "A short description"
953
+ msgstr "ஒரு குறுகிய விளக்கம்"
954
+
955
+ # @ crayon-syntax-highlighter
956
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:197
957
+ #: ../util/theme-editor/theme_editor.php:318
958
+ msgid "Inline"
959
+ msgstr "இன்லைன்"
960
+
961
+ # @ crayon-syntax-highlighter
962
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:199
963
+ msgid "Don't Highlight"
964
+ msgstr "முன்னிலைப்படுத்த"
965
+
966
+ # @ crayon-syntax-highlighter
967
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:204
968
+ #: ../util/theme-editor/theme_editor.php:322
969
+ msgid "Language"
970
+ msgstr "மொழி"
971
+
972
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:207
973
+ msgid "Line Range"
974
+ msgstr "வரி ரேஞ்ச்"
975
+
976
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:208
977
+ msgid "(e.g. 3-5 or 3)"
978
+ msgstr "(எ.கா. 3-5 அல்லது 3)"
979
+
980
+ # @ crayon-syntax-highlighter
981
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:209
982
+ msgid "Marked Lines"
983
+ msgstr "குறிக்கப்பட்டது கோடுகள்"
984
+
985
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:210
986
+ msgid "(e.g. 1,2,3-5)"
987
+ msgstr "(எ.கா. 1,2,3-5)"
988
+
989
+ # @ crayon-syntax-highlighter
990
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:219
991
+ msgid "Clear"
992
+ msgstr "தெளிவு"
993
+
994
+ # @ crayon-syntax-highlighter
995
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:223
996
+ msgid "Paste your code here, or type it in manually."
997
+ msgstr "இங்கே உங்கள் குறியீடு ஒட்டவும், அல்லது கைமுறையாக அதை தட்டச்சு."
998
+
999
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:227
1000
+ msgid "URL"
1001
+ msgstr "URL"
1002
+
1003
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:229
1004
+ msgid "Relative local path or absolute URL"
1005
+ msgstr ""
1006
+
1007
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:232
1008
+ msgid ""
1009
+ "If the URL fails to load, the code above will be shown instead. If no code "
1010
+ "exists, an error is shown."
1011
+ msgstr ""
1012
+
1013
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:234
1014
+ #, php-format
1015
+ msgid ""
1016
+ "If a relative local path is given it will be appended to %s - which is "
1017
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
1018
+ msgstr ""
1019
+
1020
+ # @ crayon-syntax-highlighter
1021
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:261
1022
+ msgid "Change the following settings to override their global values."
1023
+ msgstr ""
1024
+
1025
+ # @ crayon-syntax-highlighter
1026
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:263
1027
+ msgid "Only changes (shown yellow) are applied."
1028
+ msgstr ""
1029
+
1030
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:265
1031
+ #, php-format
1032
+ msgid ""
1033
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
1034
+ "affect overridden settings."
1035
+ msgstr ""
1036
+
1037
+ #: ../util/theme-editor/theme_editor.php:192
1038
+ msgid "User-Defined Theme"
1039
+ msgstr ""
1040
+
1041
+ # @ crayon-syntax-highlighter
1042
+ #: ../util/theme-editor/theme_editor.php:193
1043
+ msgid "Stock Theme"
1044
+ msgstr "பங்குவர்த்தக தீம்"
1045
+
1046
+ #: ../util/theme-editor/theme_editor.php:194
1047
+ msgid "Success!"
1048
+ msgstr "வெற்றி!"
1049
+
1050
+ #: ../util/theme-editor/theme_editor.php:195
1051
+ msgid "Failed!"
1052
+ msgstr "தோல்வி!"
1053
+
1054
+ #: ../util/theme-editor/theme_editor.php:197
1055
+ #, php-format
1056
+ msgid "Are you sure you want to delete the \"%s\" theme?"
1057
+ msgstr ""
1058
+
1059
+ #: ../util/theme-editor/theme_editor.php:198
1060
+ msgid "Delete failed!"
1061
+ msgstr "நீக்கு தோல்வி!"
1062
+
1063
+ #: ../util/theme-editor/theme_editor.php:200
1064
+ msgid "New Name"
1065
+ msgstr "புதிய பெயர்"
1066
+
1067
+ #: ../util/theme-editor/theme_editor.php:201
1068
+ msgid "Duplicate failed!"
1069
+ msgstr "பிரதி தோல்வி!"
1070
+
1071
+ #: ../util/theme-editor/theme_editor.php:202
1072
+ msgid "Please check the log for details."
1073
+ msgstr "விவரங்கள் பதிவு சரிபார்க்கவும்."
1074
+
1075
+ #: ../util/theme-editor/theme_editor.php:203
1076
+ msgid "Are you sure you want to discard all changes?"
1077
+ msgstr "நீங்கள் அனைத்து மாற்றங்களையும் நிராகரிக்க வேண்டும் உறுதியாக உள்ளீர்களா?"
1078
+
1079
+ #: ../util/theme-editor/theme_editor.php:204
1080
+ #, php-format
1081
+ msgid "Editing Theme: %s"
1082
+ msgstr "Editing Theme: %s"
1083
+
1084
+ #: ../util/theme-editor/theme_editor.php:205
1085
+ #, php-format
1086
+ msgid "Creating Theme: %s"
1087
+ msgstr "தீம் உருவாக்குதல்: %s"
1088
+
1089
+ #: ../util/theme-editor/theme_editor.php:206
1090
+ msgid "Submit Your Theme"
1091
+ msgstr ""
1092
+
1093
+ #: ../util/theme-editor/theme_editor.php:207
1094
+ msgid ""
1095
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
1096
+ "email me your theme - make sure it's considerably different from the stock "
1097
+ "themes :)"
1098
+ msgstr ""
1099
+
1100
+ #: ../util/theme-editor/theme_editor.php:208
1101
+ msgid "Message"
1102
+ msgstr "தகவல்"
1103
+
1104
+ #: ../util/theme-editor/theme_editor.php:209
1105
+ msgid "Please include this theme in Crayon!"
1106
+ msgstr "கிரேயோனில் இந்த தீம் சேருங்கள்!"
1107
+
1108
+ # @ crayon-syntax-highlighter
1109
+ #: ../util/theme-editor/theme_editor.php:210
1110
+ msgid "Submit was successful."
1111
+ msgstr "சமர்ப்பிக்கவும் வெற்றிகரமான இருந்தது."
1112
+
1113
+ #: ../util/theme-editor/theme_editor.php:211
1114
+ msgid "Submit failed!"
1115
+ msgstr "சமர்ப்பிக்கவும் தோல்வி!"
1116
+
1117
+ #: ../util/theme-editor/theme_editor.php:294
1118
+ msgid "Information"
1119
+ msgstr "தகவல்"
1120
+
1121
+ # @ crayon-syntax-highlighter
1122
+ #: ../util/theme-editor/theme_editor.php:295
1123
+ msgid "Highlighting"
1124
+ msgstr "வெளிச்சம்போட்டு"
1125
+
1126
+ #: ../util/theme-editor/theme_editor.php:296
1127
+ msgid "Frame"
1128
+ msgstr "ஃப்ரேம்"
1129
+
1130
+ # @ crayon-syntax-highlighter
1131
+ #: ../util/theme-editor/theme_editor.php:298
1132
+ msgid "Line Numbers"
1133
+ msgstr "வரி எண்கள்"
1134
+
1135
+ #: ../util/theme-editor/theme_editor.php:301
1136
+ msgid "Background"
1137
+ msgstr "பின்னணி"
1138
+
1139
+ #: ../util/theme-editor/theme_editor.php:302
1140
+ msgid "Text"
1141
+ msgstr "உரை"
1142
+
1143
+ #: ../util/theme-editor/theme_editor.php:303
1144
+ msgid "Border"
1145
+ msgstr "பார்டர்"
1146
+
1147
+ #: ../util/theme-editor/theme_editor.php:304
1148
+ msgid "Top Border"
1149
+ msgstr "மேல்மட்ட பார்டர்"
1150
+
1151
+ # @ crayon-syntax-highlighter
1152
+ #: ../util/theme-editor/theme_editor.php:305
1153
+ msgid "Bottom Border"
1154
+ msgstr "பாட்டம் பார்டர்"
1155
+
1156
+ #: ../util/theme-editor/theme_editor.php:306
1157
+ msgid "Right Border"
1158
+ msgstr "வலது பார்டர்v"
1159
+
1160
+ #: ../util/theme-editor/theme_editor.php:308
1161
+ msgid "Hover"
1162
+ msgstr "ஹோவர்"
1163
+
1164
+ #: ../util/theme-editor/theme_editor.php:309
1165
+ msgid "Active"
1166
+ msgstr "செயலில்"
1167
+
1168
+ #: ../util/theme-editor/theme_editor.php:310
1169
+ msgid "Pressed"
1170
+ msgstr "அழுத்தப்பட்ட"
1171
+
1172
+ #: ../util/theme-editor/theme_editor.php:311
1173
+ msgid "Pressed & Hover"
1174
+ msgstr "பிரெஸ்ட் & ஹோவர்"
1175
+
1176
+ #: ../util/theme-editor/theme_editor.php:312
1177
+ msgid "Pressed & Active"
1178
+ msgstr "பிரெஸ்ட் & செயலில்"
1179
+
1180
+ #: ../util/theme-editor/theme_editor.php:315
1181
+ msgid "Buttons"
1182
+ msgstr "பொத்தான்கள்"
1183
+
1184
+ #: ../util/theme-editor/theme_editor.php:317
1185
+ msgid "Normal"
1186
+ msgstr "இயல்பான"
1187
+
1188
+ #: ../util/theme-editor/theme_editor.php:319
1189
+ msgid "Striped"
1190
+ msgstr ""
1191
+
1192
+ # @ crayon-syntax-highlighter
1193
+ #: ../util/theme-editor/theme_editor.php:320
1194
+ msgid "Marked"
1195
+ msgstr "குறிக்கப்பட்டது"
1196
+
1197
+ #: ../util/theme-editor/theme_editor.php:321
1198
+ msgid "Striped & Marked"
1199
+ msgstr ""
1200
+
1201
+ # @ crayon-syntax-highlighter
1202
+ #: ../util/theme-editor/theme_editor.php:351
1203
+ msgid "Back To Settings"
1204
+ msgstr "மீண்டும் அமைப்புகள்"
1205
+
1206
+ #: ../util/theme-editor/theme_editor.php:390
1207
+ msgid "Comment"
1208
+ msgstr "கருத்து"
1209
+
1210
+ #: ../util/theme-editor/theme_editor.php:391
1211
+ msgid "String"
1212
+ msgstr ""
1213
+
1214
+ #: ../util/theme-editor/theme_editor.php:392
1215
+ msgid "Preprocessor"
1216
+ msgstr "ப்ரிப்ராஸசசர்"
1217
+
1218
+ # @ crayon-syntax-highlighter
1219
+ #: ../util/theme-editor/theme_editor.php:393
1220
+ msgid "Tag"
1221
+ msgstr "இணைப்பு"
1222
+
1223
+ #: ../util/theme-editor/theme_editor.php:394
1224
+ msgid "Keyword"
1225
+ msgstr "முக்கிய"
1226
+
1227
+ #: ../util/theme-editor/theme_editor.php:395
1228
+ msgid "Statement"
1229
+ msgstr "அறிக்கை"
1230
+
1231
+ #: ../util/theme-editor/theme_editor.php:396
1232
+ msgid "Reserved"
1233
+ msgstr "ஒதுக்கப்பட்டது"
1234
+
1235
+ #: ../util/theme-editor/theme_editor.php:397
1236
+ msgid "Type"
1237
+ msgstr "வகை"
1238
+
1239
+ #: ../util/theme-editor/theme_editor.php:398
1240
+ msgid "Modifier"
1241
+ msgstr "மாற்றி"
1242
+
1243
+ #: ../util/theme-editor/theme_editor.php:399
1244
+ msgid "Identifier"
1245
+ msgstr "ஐடண்டிபயர்"
1246
+
1247
+ #: ../util/theme-editor/theme_editor.php:400
1248
+ msgid "Entity"
1249
+ msgstr "நிறுவனத்தின்"
1250
+
1251
+ #: ../util/theme-editor/theme_editor.php:401
1252
+ msgid "Variable"
1253
+ msgstr "Variable"
1254
+
1255
+ #: ../util/theme-editor/theme_editor.php:402
1256
+ msgid "Constant"
1257
+ msgstr "கான்ஸ்டன்ட்"
1258
+
1259
+ #: ../util/theme-editor/theme_editor.php:403
1260
+ msgid "Operator"
1261
+ msgstr "ஆபரேட்டர்"
1262
+
1263
+ #: ../util/theme-editor/theme_editor.php:404
1264
+ msgid "Symbol"
1265
+ msgstr "சின்னங்கள்"
1266
+
1267
+ #: ../util/theme-editor/theme_editor.php:405
1268
+ msgid "Notation"
1269
+ msgstr "குறிப்பு"
1270
+
1271
+ #: ../util/theme-editor/theme_editor.php:406
1272
+ msgid "Faded"
1273
+ msgstr "வாடி"
1274
+
1275
+ #: ../util/theme-editor/theme_editor.php:407
1276
+ msgid "HTML"
1277
+ msgstr "HTML"
1278
+
1279
+ #: ../util/theme-editor/theme_editor.php:408
1280
+ msgid "Unhighlighted"
1281
+ msgstr "தனிப்படுத்தாதவை"
1282
+
1283
+ #: ../util/theme-editor/theme_editor.php:542
1284
+ msgid "(Used for Copy/Paste)"
1285
+ msgstr ""
1286
+
1287
+ msgid "Parsed With Errors"
1288
+ msgstr "பிழைகள் உடன் அலசப்பட்டது"
1289
+
1290
+ msgid "Successfully Parsed"
1291
+ msgstr "வெற்றிகரமாக அலசப்பட்டது"
1292
+
1293
+ msgid "Not Parsed"
1294
+ msgstr "அலசப்படவில்லை"
1295
+
1296
+ msgid "Undetermined"
1297
+ msgstr "தீர்மானிக்கப்படாத"
1298
+
1299
+ msgid "Description"
1300
+ msgstr "விளக்கம்"
1301
+
1302
+ msgid "Author"
1303
+ msgstr "எழுதியோன்"
1304
+
1305
+ msgid "Add More"
1306
+ msgstr "மேலும் சேர்"
trans/crayon-syntax-highlighter-tr_TR.po CHANGED
@@ -691,7 +691,7 @@ msgstr "&lt;pre&gt; etiketleri Crayons olarak yakala"
691
  #: ../crayon_settings_wp.class.php:1118
692
  #, php-format
693
  msgid ""
694
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
695
  "the %sTag Editor%s instead and convert legacy tags."
696
  msgstr ""
697
  "Mini Etiketler ve Satır içi etiketler için bu biçimlendirmeyi kullanmak "
691
  #: ../crayon_settings_wp.class.php:1118
692
  #, php-format
693
  msgid ""
694
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
695
  "the %sTag Editor%s instead and convert legacy tags."
696
  msgstr ""
697
  "Mini Etiketler ve Satır içi etiketler için bu biçimlendirmeyi kullanmak "
trans/crayon-syntax-highlighter-uk_UA.po CHANGED
@@ -585,7 +585,7 @@ msgstr "Захоплення <pre> тегів в Crayons"
585
  #: ../crayon_settings_wp.class.php:1117
586
  #, php-format
587
  msgid ""
588
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
589
  "the %sTag Editor%s instead and convert legacy tags."
590
  msgstr ""
591
  "Використовуйте цю розмітку для виявлення вбудованих та застарілих тегів %s "
585
  #: ../crayon_settings_wp.class.php:1117
586
  #, php-format
587
  msgid ""
588
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
589
  "the %sTag Editor%s instead and convert legacy tags."
590
  msgstr ""
591
  "Використовуйте цю розмітку для виявлення вбудованих та застарілих тегів %s "
trans/crayon-syntax-highlighter-zh_CN.po CHANGED
@@ -744,7 +744,7 @@ msgstr "捕获 &lt;pre&gt; 标签为插件所用"
744
  #: crayon_settings_wp.class.php:1096
745
  #, php-format
746
  msgid ""
747
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
748
  "the %sTag Editor%s instead and convert legacy tags."
749
  msgstr ""
750
  "%s不建议%s再使用迷你标签以及行内标签!请使用 %s标签编辑器%s 代替且转换掉老式"
744
  #: crayon_settings_wp.class.php:1096
745
  #, php-format
746
  msgid ""
747
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
748
  "the %sTag Editor%s instead and convert legacy tags."
749
  msgstr ""
750
  "%s不建议%s再使用迷你标签以及行内标签!请使用 %s标签编辑器%s 代替且转换掉老式"
trans/crayon-syntax-highlighter-zh_TW.po CHANGED
@@ -744,7 +744,7 @@ msgstr "捕獲 &lt;pre&gt; 標簽為插件所用"
744
  #: crayon_settings_wp.class.php:1096
745
  #, php-format
746
  msgid ""
747
- "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use "
748
  "the %sTag Editor%s instead and convert legacy tags."
749
  msgstr ""
750
  "%s不建議%s再使用迷你標簽以及行內標簽!請使用 %s標簽編輯器%s 代替且轉換掉老式"
744
  #: crayon_settings_wp.class.php:1096
745
  #, php-format
746
  msgid ""
747
+ "Using this markup for Mini Tags and Inline tags is now %sdeprecated%s! Use "
748
  "the %sTag Editor%s instead and convert legacy tags."
749
  msgstr ""
750
  "%s不建議%s再使用迷你標簽以及行內標簽!請使用 %s標簽編輯器%s 代替且轉換掉老式"
util/crayon_util.class.php CHANGED
@@ -541,7 +541,7 @@ EOT;
541
  }
542
 
543
  // Returns path according to detected use of forwardslash/backslash
544
- // Depreciated from regular use after v.1.1.1
545
  public static function path($path, $detect) {
546
  $slash = self::detect_slash($detect);
547
  return str_replace(array('\\', '/'), $slash, $path);
@@ -661,7 +661,7 @@ EOT;
661
  public static function version_parts($version) {
662
  preg_match('#[\d+\.]+#msi', $version, $match);
663
  if (count($match[0])) {
664
- return split('\.', $match[0]);
665
  } else {
666
  return array();
667
  }
541
  }
542
 
543
  // Returns path according to detected use of forwardslash/backslash
544
+ // Deprecated from regular use after v.1.1.1
545
  public static function path($path, $detect) {
546
  $slash = self::detect_slash($detect);
547
  return str_replace(array('\\', '/'), $slash, $path);
661
  public static function version_parts($version) {
662
  preg_match('#[\d+\.]+#msi', $version, $match);
663
  if (count($match[0])) {
664
+ return explode('.', $match[0]);
665
  } else {
666
  return array();
667
  }
util/depreciated/exceptions.php DELETED
@@ -1,109 +0,0 @@
1
- <?php
2
- require_once ('crayon_util.class.php');
3
-
4
- /* Custom exception that also logs exceptions */
5
- class CrayonException extends Exception {
6
-
7
- // message() function used to prevent HTML formatting inside returned messages
8
-
9
- function message() {
10
- return html_entity_decode($this->getMessage());
11
- }
12
- }
13
-
14
- class CrayonErrorException extends ErrorException {
15
-
16
- public function message() {
17
- return crayon_exception_message($this); //htmlentities( $this->getMessage() );
18
-
19
- }
20
- }
21
-
22
- function crayon_exception_message($exception) {
23
- return html_entity_decode(CRAYON_NL . '[Line ' . $exception->getLine() . ', ' .
24
- basename(CrayonUtil::path_rel($exception->getFile())) .
25
- '] ' . CRAYON_NL . $exception->getMessage());
26
- }
27
-
28
- function crayon_exception_log($exception) {
29
- $info = crayon_exception_info($exception);
30
- // Log the exception
31
-
32
- CrayonLog::syslog(strip_tags($info));
33
- if (CRAYON_DEBUG) {
34
- // Only print when debugging
35
-
36
- echo $info;
37
- }
38
- }
39
-
40
- /* Custom handler for CrayonExceptions */
41
- function crayon_exception_handler($exception) {
42
- try {
43
- crayon_exception_log($exception);
44
- } catch (Exception $e) {
45
- // An error within an error handler. Exception.
46
-
47
- echo '<br/><b>Fatal Exception:</b> ', get_class($e),
48
- ' thrown within the exception handler.<br/><b>Message:</b> ',
49
- $e->getMessage(), '<br/><b>Line:</b> ',
50
- CrayonUtil::path_rel($e->getFile()), '<br/><b>Line:</b> ', $e->getLine();
51
- }
52
- }
53
-
54
- /* Prints exception info */
55
- function crayon_exception_info($e, $return = TRUE) {
56
- $print = '<br/><b>Uncaught ' . get_class($e) . ':</b> ' . $e->getMessage() . CRAYON_BL . '<b>File:</b> ' .
57
- CrayonUtil::path_rel($e->getFile()) . CRAYON_BL . '<b>Line:</b> ' . $e->getLine() . CRAYON_BL . '<br/>';
58
- if ($return) {
59
- return $print;
60
- } else {
61
- echo $print;
62
- }
63
- }
64
-
65
- /* Some errors throw catchable exceptions, so we can handle them nicely */
66
- function crayon_error_handler($errno, $errstr, $errfile, $errline) {
67
-
68
- if (!(error_reporting() & $errno)) {
69
- // This error code is not included in error_reporting
70
-
71
- return;
72
- }
73
- $e = new CrayonErrorException($errstr, 0, $errno, $errfile, $errline);
74
- if (in_array($errno, array(E_ERROR, E_USER_ERROR))) {
75
- // Only throw an exception for fatal errors
76
-
77
- throw $e;
78
- } else {
79
-
80
- // Treat all other errors as usual
81
-
82
- return false;
83
- }
84
- // Don't execute PHP internal error handler
85
-
86
- return true;
87
- }
88
- /* Records the old error handlers and reverts back to them when needed. */
89
- $old_error_handler = null;
90
- $old_exception_handler = null;
91
-
92
- /* Turn on the custom handlers */
93
- function crayon_handler_on() {
94
- global $old_error_handler, $old_exception_handler;
95
- $old_error_handler = set_error_handler('crayon_error_handler');
96
- $old_exception_handler = set_exception_handler('crayon_exception_handler');
97
- }
98
-
99
- /* Turn off the custom handlers */
100
- function crayon_handler_off() {
101
- global $old_error_handler, $old_exception_handler;
102
- if (!empty($old_error_handler)) {
103
- set_error_handler($old_error_handler);
104
- }
105
- if (!empty($old_exception_handler)) {
106
- set_exception_handler($old_exception_handler);
107
- }
108
- }
109
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
util/sample/kl.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Swirley Movement OP KL Example
3
+ */
4
+
5
+ require Math;
6
+
7
+ operator swirleyMovementOp(
8
+ Scalar seconds,
9
+ Index id,
10
+ Xfo baseXfo,
11
+ io Xfo xfo
12
+ ) {
13
+ xfo.tr = baseXfo.tr + Vec3(sin((seconds * 2.3) + (id * 3.2)) * 3.0, cos(seconds * 4.30) * 3.0, 0.0);
14
+
15
+ // The following line will log a message to the console...
16
+ // report("swirleyMovementOp :" + xfo.tr);
17
+ }
18
+
util/sample/mel.txt ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Code starts here
2
+ global proc human(int $age){
3
+ string $ageExt;
4
+ $age++;
5
+
6
+ if($age == 0){
7
+ $ageExt = "th";
8
+ }else if($age == 1){
9
+ $ageExt = "st";
10
+ }else if($age == 2){
11
+ $ageExt = "nd";
12
+ }else{
13
+ $ageExt = "th";
14
+ }
15
+
16
+ print("Happy " + $age + $ageExt + " Birthday!\n");
17
+ }
18
+
19
+
20
+ int $i=0;
21
+ for($i=0;$i<=99;$i+=1){
22
+ human($i);
23
+ }
24
+
util/theme-editor/theme_editor.php CHANGED
@@ -662,7 +662,7 @@ class CrayonThemeEditorWP {
662
  // Create an instance to use functions, since late static binding is only available in 5.3 (PHP kinda sucks)
663
  $theme = CrayonResources::themes()->resource_instance('');
664
  $newID = $theme->clean_id($name);
665
- $name = $theme->clean_name($newID);
666
  $newPath = CrayonResources::themes()->path($newID, $user);
667
  $newDir = CrayonResources::themes()->dirpath_for_id($newID, $user);
668
 
662
  // Create an instance to use functions, since late static binding is only available in 5.3 (PHP kinda sucks)
663
  $theme = CrayonResources::themes()->resource_instance('');
664
  $newID = $theme->clean_id($name);
665
+ $name = CrayonResource::clean_name($newID);
666
  $newPath = CrayonResources::themes()->path($newID, $user);
667
  $newDir = CrayonResources::themes()->dirpath_for_id($newID, $user);
668