Crayon Syntax Highlighter - Version 2.6.7

Version Description

  • ADDED:
    • Traditional Chinese translation (thanks to Arefly)
    • Converting tabs to spaces setting is now off by default. The original tab size setting is used with the tab-size CSS style instead to preserve tabs in the source.
    • "ignore:true" setting in the class of pre tags will prevent that code block from being parsed by Crayon.
    • Obsidian theme thanks to Rakcheev Artem.
    • Visual Assist theme thanks to Brady Reuter.
  • FIXED:
    • Styling for (?) buttons on settings page.
Download this release

Release Info

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

Code changes from version 2.6.1 to 2.6.7

Files changed (76) hide show
  1. .gitignore +2 -0
  2. crayon_formatter.class.php +50 -51
  3. crayon_parser.class.php +24 -18
  4. crayon_resource.class.php +14 -11
  5. crayon_settings.class.php +6 -3
  6. crayon_settings_wp.class.php +16 -37
  7. crayon_wp.class.php +27 -10
  8. css/src/crayon_style.css +1 -0
  9. css/src/global_style.css +16 -7
  10. fonts/adobe-source-sans.css +14 -0
  11. fonts/adobe-source-sans/SourceSansPro-Semibold.eot +0 -0
  12. fonts/adobe-source-sans/SourceSansPro-Semibold.otf.woff +0 -0
  13. fonts/adobe-source-sans/SourceSansPro-Semibold.svg +1117 -0
  14. fonts/adobe-source-sans/SourceSansPro-Semibold.ttf.woff +0 -0
  15. global.php +4 -5
  16. js/minify.sh +1 -1
  17. langs/1c-kod/1c-kod.txt +10 -0
  18. langs/1c-kod/operator.txt +8 -0
  19. langs/1c-kod/statement.txt +82 -0
  20. langs/1c-zapros/1c-zapros.txt +10 -0
  21. langs/1c-zapros/operator.txt +20 -0
  22. langs/1c-zapros/statement.txt +55 -0
  23. langs/1c-zapros/symbol.txt +15 -0
  24. langs/default/default.txt +1 -1
  25. langs/delimiters.txt +1 -0
  26. langs/go/go.txt +2 -2
  27. langs/objc/objc.txt +1 -1
  28. langs/ps/ps.txt +3 -3
  29. langs/rust/modifier.txt +4 -0
  30. langs/rust/reserved.txt +3 -0
  31. langs/rust/rust.txt +23 -0
  32. langs/rust/statement.txt +24 -0
  33. langs/rust/type.txt +10 -0
  34. langs/swift/modifier.txt +20 -0
  35. langs/swift/operator.txt +2 -0
  36. langs/swift/reserved.txt +40 -0
  37. langs/swift/swift.txt +24 -0
  38. langs/swift/type.txt +4 -0
  39. readme.txt +69 -12
  40. themes/1c-kod/1c-kod.css +174 -0
  41. themes/1c-zapros/1c-zapros.css +174 -0
  42. themes/809finest/809finest.css +171 -0
  43. themes/coda-special-board/coda-special-board.css +213 -0
  44. themes/dark-terminal/dark-terminal.css +175 -0
  45. themes/light-abite/light-abite.css +117 -0
  46. themes/obsidian/obsidian.css +213 -0
  47. themes/powershell-ise/powershell-ise.css +174 -0
  48. themes/pspad/pspad.css +175 -0
  49. themes/shell-default/shell-default.css +174 -0
  50. themes/sublime-text/sublime-text.css +174 -0
  51. themes/visual-assist/visual-assist.css +174 -0
  52. trans/crayon-syntax-highlighter-fa_IR.mo +0 -0
  53. trans/crayon-syntax-highlighter-fa_IR.po +1322 -0
  54. trans/crayon-syntax-highlighter-fi.mo +0 -0
  55. trans/crayon-syntax-highlighter-fi.po +1399 -0
  56. trans/crayon-syntax-highlighter-ko_KR.mo +0 -0
  57. trans/crayon-syntax-highlighter-ko_KR.po +1364 -0
  58. trans/crayon-syntax-highlighter-sl_SI.mo +0 -0
  59. trans/crayon-syntax-highlighter-sl_SI.po +1406 -0
  60. trans/crayon-syntax-highlighter-uk_UA.mo +0 -0
  61. trans/crayon-syntax-highlighter-uk_UA.po +1128 -0
  62. trans/crayon-syntax-highlighter-zh_CN.mo +0 -0
  63. trans/crayon-syntax-highlighter-zh_CN.po +1380 -2393
  64. trans/crayon-syntax-highlighter-zh_TW.mo +0 -0
  65. trans/crayon-syntax-highlighter-zh_TW.po +1380 -0
  66. util/lines_to_array.rb +11 -0
  67. util/lines_to_regex.rb +11 -0
  68. util/sample/dws.txt +13 -0
  69. util/sample/ini.txt +10 -0
  70. util/sample/rust.txt +8 -0
  71. util/sample/swift.txt +7 -0
  72. util/sample/zsh.txt +20 -0
  73. util/tag-editor/crayon_tag_editor.js +37 -22
  74. util/tag-editor/crayon_tag_editor_wp.class.php +3 -1
  75. util/tag-editor/crayon_tinymce.js +3 -18
  76. util/theme-editor/theme_editor.php +3 -6
.gitignore CHANGED
@@ -7,3 +7,5 @@ Thumbs.db
7
  *.pyc
8
  .idea/
9
  /log.txt
 
 
7
  *.pyc
8
  .idea/
9
  /log.txt
10
+
11
+ .c9
crayon_formatter.class.php CHANGED
@@ -19,7 +19,7 @@ class CrayonFormatter {
19
  private static $delimiters;
20
  private static $delim_regex;
21
  private static $delim_pieces;
22
-
23
  // Methods ================================================================
24
  private function __construct() {}
25
 
@@ -77,11 +77,11 @@ class CrayonFormatter {
77
  /* Prints the formatted code, option to override the line numbers with a custom string */
78
  public static function print_code($hl, $code, $line_numbers = TRUE, $print = TRUE) {
79
  global $CRAYON_VERSION;
80
-
81
  // We can print either block or inline, inline is treated differently, factor out common stuff here
82
  $output = '';
83
  // Used for style tag
84
- $main_style = $code_style = $toolbar_style = $info_style = $font_style = $line_style = '';
85
  // Unique ID for this instance of Crayon
86
  $uid = 'crayon-' . $hl->id();
87
  // Print theme id
@@ -91,7 +91,7 @@ class CrayonFormatter {
91
  if (!$hl->setting_val(CrayonSettings::ENQUEUE_THEMES)) {
92
  $output .= CrayonResources::themes()->get_css($theme_id);
93
  }
94
-
95
  // Print font id
96
  // We make the assumption that the id is correct (checked in crayon_wp)
97
  $font_id = $hl->setting_val(CrayonSettings::FONT);
@@ -99,12 +99,12 @@ class CrayonFormatter {
99
  if (!$hl->setting_val(CrayonSettings::ENQUEUE_FONTS)) {
100
  $output .= CrayonResources::fonts()->get_css($font_id);
101
  }
102
-
103
  // Inline margin
104
  if ($hl->is_inline()) {
105
  $inline_margin = $hl->setting_val(CrayonSettings::INLINE_MARGIN) . 'px !important;';
106
  }
107
-
108
  // Determine font size
109
  // TODO improve logic
110
  if ($hl->setting_val(CrayonSettings::FONT_SIZE_ENABLE)) {
@@ -115,17 +115,16 @@ class CrayonFormatter {
115
  $line_height = ($_line_height > $_font_size ? $_line_height : $_font_size) . 'px !important;';
116
  $toolbar_height = $font_size * 1.5 . 'px !important;';
117
  $info_height = $font_size * 1.4 . 'px !important;';
118
-
119
  $font_style .= "font-size: $font_size line-height: $line_height";
120
  $toolbar_style .= "font-size: $font_size";
121
  $line_style .= "height: $line_height";
122
-
123
  if ($hl->is_inline()) {
124
  $font_style .= "font-size: $font_size";
125
  } else {
126
  $toolbar_style .= "height: $toolbar_height line-height: $toolbar_height";
127
  $info_style .= "min-height: $info_height line-height: $info_height";
128
-
129
  }
130
  } else if (!$hl->is_inline()) {
131
  if (($font_size = CrayonGlobalSettings::get(CrayonSettings::FONT_SIZE)) !== FALSE) {
@@ -133,24 +132,27 @@ class CrayonFormatter {
133
  $line_height = ($font_size * 1.4) . 'px !important;';
134
  }
135
  }
136
-
 
 
 
137
  // This will return from function with inline print
138
  if ($hl->is_inline()) {
139
  $wrap = !$hl->setting_val(CrayonSettings::INLINE_WRAP) ? 'crayon-syntax-inline-nowrap' : '';
140
  $output .= '
141
  <span id="'.$uid.'" class="crayon-syntax crayon-syntax-inline '.$wrap.' crayon-theme-'.$theme_id_dashed.' crayon-theme-'.$theme_id_dashed.'-inline crayon-font-'.$font_id_dashed.'" style="'.$font_style.'">' .
142
- '<span class="crayon-pre crayon-code" style="'.$font_style.'">' . $code . '</span>' .
143
  '</span>';
144
  return $output;
145
  }
146
-
147
  // Below code only for block (default) printing
148
-
149
  // Generate the code lines and separate each line as a div
150
  $print_code = '';
151
  $print_nums = '';
152
  $hl->line_count(preg_match_all("#(?:^|(?<=\r\n|\n))[^\r\n]*#", $code, $code_lines));
153
-
154
  // The line number to start from
155
  $start_line = $hl->setting_val(CrayonSettings::START_LINE);
156
  $marking = $hl->setting_val(CrayonSettings::MARKING);
@@ -166,12 +168,12 @@ class CrayonFormatter {
166
  }
167
  }
168
  $code_line = $code_lines[0][$i - 1];
169
-
170
  // If line is blank, add a space so the div has the correct height
171
  if ($code_line == '') {
172
  $code_line = '&nbsp;';
173
  }
174
-
175
  // Check if the current line has been selected
176
  $marked_lines = $hl->marked();
177
  // Check if lines need to be marked as important
@@ -245,7 +247,7 @@ class CrayonFormatter {
245
  $touch = TRUE;
246
  $code_settings .= ' touchscreen';
247
  }
248
-
249
  // Disabling Popup
250
  if (!$hl->setting_val(CrayonSettings::POPUP)) {
251
  $code_settings .= ' no-popup';
@@ -255,7 +257,7 @@ class CrayonFormatter {
255
  if (!$hl->setting_val(CrayonSettings::MINIMIZE)) {
256
  $code_settings .= ' minimize';
257
  }
258
-
259
  // Draw the plain code and toolbar
260
  $toolbar_settings = $print_plain_button = $print_copy_button = '';
261
  $toolbar_index = $hl->setting_index(CrayonSettings::TOOLBAR);
@@ -281,7 +283,7 @@ class CrayonFormatter {
281
  }
282
 
283
  $buttons = array();
284
-
285
  if ($hl->setting_val(CrayonSettings::NUMS_TOGGLE)) {
286
  $buttons['nums'] = crayon__('Toggle Line Numbers');
287
  }
@@ -295,7 +297,7 @@ class CrayonFormatter {
295
  }
296
 
297
  if ($hl->setting_val(CrayonSettings::EXPAND_TOGGLE)) {
298
- $buttons['expand'] = crayon__('Expand Code');
299
  }
300
 
301
  if (!$touch && $hl->setting_val(CrayonSettings::PLAIN) && $hl->setting_val(CrayonSettings::COPY)) {
@@ -330,7 +332,7 @@ class CrayonFormatter {
330
  } else {
331
  $toolbar = $buttons = $plain_settings = '';
332
  }
333
-
334
  if (empty($error) && $hl->setting_val(CrayonSettings::PLAIN)) {
335
  // Different events to display plain code
336
  switch ($hl->setting_index(CrayonSettings::SHOW_PLAIN)) {
@@ -349,17 +351,14 @@ class CrayonFormatter {
349
  if ($hl->setting_val(CrayonSettings::SHOW_PLAIN_DEFAULT)) {
350
  $plain_settings .= ' show-plain-default';
351
  }
352
- $tab = $hl->setting_val(CrayonSettings::TAB_SIZE);
353
- // TODO doesn't seem to work at the moment
354
- $plain_style = "-moz-tab-size:$tab; -o-tab-size:$tab; -webkit-tab-size:$tab; tab-size:$tab;";
355
  $readonly = $touch ? '' : 'readonly';
356
  $print_plain = $print_plain_button = '';
357
  $textwrap = !$hl->setting_val(CrayonSettings::WRAP) ? 'wrap="soft"' : '';
358
- $print_plain = '<textarea '.$textwrap.' class="crayon-plain print-no" data-settings="' . $plain_settings . '" '. $readonly .' style="' . $plain_style .' '. $font_style . '">' . "\n" . self::clean_code($hl->code()) . '</textarea>';
359
  } else {
360
  $print_plain = $plain_settings = $plain_settings = '';
361
  }
362
-
363
  // Line numbers visibility
364
  $num_vis = $num_settings = '';
365
  if ($line_numbers === FALSE) {
@@ -367,7 +366,7 @@ class CrayonFormatter {
367
  } else {
368
  $num_settings = ($hl->setting_val(CrayonSettings::NUMS) ? 'show' : 'hide');
369
  }
370
-
371
  // Determine scrollbar visibility
372
  $code_settings .= $hl->setting_val(CrayonSettings::SCROLL) && !$touch ? ' scroll-always' : ' scroll-mouseover';
373
 
@@ -375,17 +374,17 @@ class CrayonFormatter {
375
  if ($hl->setting_val(CrayonSettings::DISABLE_ANIM)) {
376
  $code_settings .= ' disable-anim';
377
  }
378
-
379
  // Wrap
380
  if ($hl->setting_val(CrayonSettings::WRAP)) {
381
  $code_settings .= ' wrap';
382
  }
383
-
384
  // Expand
385
  if ($hl->setting_val(CrayonSettings::EXPAND)) {
386
  $code_settings .= ' expand';
387
  }
388
-
389
  // Determine dimensions
390
  if ($hl->setting_val(CrayonSettings::HEIGHT_SET)) {
391
  $height_style = self::dimension_style($hl, CrayonSettings::HEIGHT);
@@ -401,7 +400,7 @@ class CrayonFormatter {
401
  $main_style .= $width_style;
402
  }
403
  }
404
-
405
  // Determine margins
406
  if ($hl->setting_val(CrayonSettings::TOP_SET)) {
407
  $code_style .= ' margin-top: ' . $hl->setting_val(CrayonSettings::TOP_MARGIN) . 'px;';
@@ -415,9 +414,9 @@ class CrayonFormatter {
415
  if ($hl->setting_val(CrayonSettings::RIGHT_SET)) {
416
  $code_style .= ' margin-right: ' . $hl->setting_val(CrayonSettings::RIGHT_MARGIN) . 'px;';
417
  }
418
-
419
  // Determine horizontal alignment
420
- $align_style = ' float: none;';
421
  switch ($hl->setting_index(CrayonSettings::H_ALIGN)) {
422
  case 1 :
423
  $align_style = ' float: left;';
@@ -430,18 +429,18 @@ class CrayonFormatter {
430
  break;
431
  }
432
  $code_style .= $align_style;
433
-
434
  // Determine allowed float elements
435
  if ($hl->setting_val(CrayonSettings::FLOAT_ENABLE)) {
436
  $clear_style = ' clear: none;';
437
  } else {
438
- $clear_style = ' clear: both;';
439
- }
440
  $code_style .= $clear_style;
441
-
442
  // Determine if operating system is mac
443
  $crayon_os = CrayonUtil::is_mac() ? 'mac' : 'pc';
444
-
445
  // Produce output
446
  $output .= '
447
  <div id="'.$uid.'" class="crayon-syntax crayon-theme-'.$theme_id_dashed.' crayon-font-'.$font_id_dashed.' crayon-os-'.$crayon_os.' print-yes notranslate" data-settings="'.$code_settings.'" style="'.$code_style.' '.$font_style.'">
@@ -459,7 +458,7 @@ class CrayonFormatter {
459
  }
460
  // XXX
461
  $output .= '
462
- <td class="crayon-code"><div class="crayon-pre" style="'.$font_style.'">'.$print_code.'</div></td>
463
  </tr>
464
  </table>
465
  </div>
@@ -495,40 +494,40 @@ class CrayonFormatter {
495
  }
496
 
497
  // Delimiters =============================================================
498
-
499
  public static function format_mixed_code($code, $language, $hl) {
500
  self::$curr = $hl;
501
  self::$delim_pieces = array();
502
  // Remove crayon internal element from INPUT code
503
  $code = preg_replace('#'.CrayonParser::CRAYON_ELEMENT_REGEX_CAPTURE.'#msi', '', $code);
504
-
505
  if (self::$delimiters == NULL) {
506
  self::$delimiters = CrayonResources::langs()->delimiters();
507
  }
508
-
509
  // Find all delimiters in all languages
510
  if (self::$delim_regex == NULL) {
511
  self::$delim_regex = '#(' . implode(')|(', array_values(self::$delimiters)) . ')#msi';
512
  }
513
-
514
  // Extract delimited code, replace with internal elements
515
  $internal_code = preg_replace_callback(self::$delim_regex, 'CrayonFormatter::delim_to_internal', $code);
516
-
517
  // Format with given language
518
  $formatted_code = CrayonFormatter::format_code($internal_code, $language, $hl);
519
-
520
  // Replace internal elements with delimited pieces
521
  $formatted_code = preg_replace_callback('#\{\{crayon-internal:(\d+)\}\}#', 'CrayonFormatter::internal_to_code', $formatted_code);
522
 
523
  return $formatted_code;
524
  }
525
-
526
  public static function delim_to_internal($matches) {
527
  // Mark as mixed so we can show (+)
528
  self::$curr->is_mixed(TRUE);
529
  $capture_group = count($matches) - 2;
530
  $capture_groups = array_keys(self::$delimiters);
531
- $lang_id = $capture_groups[$capture_group];
532
  if ( ($lang = CrayonResources::langs()->get($lang_id)) === NULL ) {
533
  return $matches[0];
534
  }
@@ -537,11 +536,11 @@ class CrayonFormatter {
537
  self::$delim_pieces[] = CrayonFormatter::format_code($matches[0], $lang, self::$curr);
538
  return $internal;
539
  }
540
-
541
  public static function internal_to_code($matches) {
542
  return self::$delim_pieces[intval($matches[1])];
543
  }
544
-
545
  // Auxiliary Methods ======================================================
546
  /* Prepares code for formatting. */
547
  public static function clean_code($code, $escape = TRUE, $spaces = FALSE, $tabs = FALSE, $lines = FALSE) {
@@ -556,7 +555,7 @@ class CrayonFormatter {
556
  // Replace 2 spaces with html escaped characters
557
  $code = preg_replace('#[ ]{2}#msi', '&nbsp;&nbsp;', $code);
558
  }
559
- if ($tabs) {
560
  // Replace tabs with 4 spaces
561
  $code = preg_replace('#\t#', str_repeat('&nbsp;', CrayonGlobalSettings::val(CrayonSettings::TAB_SIZE)), $code);
562
  }
@@ -565,7 +564,7 @@ class CrayonFormatter {
565
  }
566
  return $code;
567
  }
568
-
569
  /* Converts the code to entities and wraps in a <pre><code></code></pre> */
570
  public static function plain_code($code, $encoded = TRUE) {
571
  if (is_array($code)) {
19
  private static $delimiters;
20
  private static $delim_regex;
21
  private static $delim_pieces;
22
+
23
  // Methods ================================================================
24
  private function __construct() {}
25
 
77
  /* Prints the formatted code, option to override the line numbers with a custom string */
78
  public static function print_code($hl, $code, $line_numbers = TRUE, $print = TRUE) {
79
  global $CRAYON_VERSION;
80
+
81
  // We can print either block or inline, inline is treated differently, factor out common stuff here
82
  $output = '';
83
  // Used for style tag
84
+ $main_style = $code_style = $toolbar_style = $info_style = $font_style = $line_style = $pre_style = '';
85
  // Unique ID for this instance of Crayon
86
  $uid = 'crayon-' . $hl->id();
87
  // Print theme id
91
  if (!$hl->setting_val(CrayonSettings::ENQUEUE_THEMES)) {
92
  $output .= CrayonResources::themes()->get_css($theme_id);
93
  }
94
+
95
  // Print font id
96
  // We make the assumption that the id is correct (checked in crayon_wp)
97
  $font_id = $hl->setting_val(CrayonSettings::FONT);
99
  if (!$hl->setting_val(CrayonSettings::ENQUEUE_FONTS)) {
100
  $output .= CrayonResources::fonts()->get_css($font_id);
101
  }
102
+
103
  // Inline margin
104
  if ($hl->is_inline()) {
105
  $inline_margin = $hl->setting_val(CrayonSettings::INLINE_MARGIN) . 'px !important;';
106
  }
107
+
108
  // Determine font size
109
  // TODO improve logic
110
  if ($hl->setting_val(CrayonSettings::FONT_SIZE_ENABLE)) {
115
  $line_height = ($_line_height > $_font_size ? $_line_height : $_font_size) . 'px !important;';
116
  $toolbar_height = $font_size * 1.5 . 'px !important;';
117
  $info_height = $font_size * 1.4 . 'px !important;';
118
+
119
  $font_style .= "font-size: $font_size line-height: $line_height";
120
  $toolbar_style .= "font-size: $font_size";
121
  $line_style .= "height: $line_height";
122
+
123
  if ($hl->is_inline()) {
124
  $font_style .= "font-size: $font_size";
125
  } else {
126
  $toolbar_style .= "height: $toolbar_height line-height: $toolbar_height";
127
  $info_style .= "min-height: $info_height line-height: $info_height";
 
128
  }
129
  } else if (!$hl->is_inline()) {
130
  if (($font_size = CrayonGlobalSettings::get(CrayonSettings::FONT_SIZE)) !== FALSE) {
132
  $line_height = ($font_size * 1.4) . 'px !important;';
133
  }
134
  }
135
+
136
+ $tab = $hl->setting_val(CrayonSettings::TAB_SIZE);
137
+ $pre_style = "-moz-tab-size:$tab; -o-tab-size:$tab; -webkit-tab-size:$tab; tab-size:$tab;";
138
+
139
  // This will return from function with inline print
140
  if ($hl->is_inline()) {
141
  $wrap = !$hl->setting_val(CrayonSettings::INLINE_WRAP) ? 'crayon-syntax-inline-nowrap' : '';
142
  $output .= '
143
  <span id="'.$uid.'" class="crayon-syntax crayon-syntax-inline '.$wrap.' crayon-theme-'.$theme_id_dashed.' crayon-theme-'.$theme_id_dashed.'-inline crayon-font-'.$font_id_dashed.'" style="'.$font_style.'">' .
144
+ '<span class="crayon-pre crayon-code" style="'.$font_style.' '.$pre_style.'">' . $code . '</span>' .
145
  '</span>';
146
  return $output;
147
  }
148
+
149
  // Below code only for block (default) printing
150
+
151
  // Generate the code lines and separate each line as a div
152
  $print_code = '';
153
  $print_nums = '';
154
  $hl->line_count(preg_match_all("#(?:^|(?<=\r\n|\n))[^\r\n]*#", $code, $code_lines));
155
+
156
  // The line number to start from
157
  $start_line = $hl->setting_val(CrayonSettings::START_LINE);
158
  $marking = $hl->setting_val(CrayonSettings::MARKING);
168
  }
169
  }
170
  $code_line = $code_lines[0][$i - 1];
171
+
172
  // If line is blank, add a space so the div has the correct height
173
  if ($code_line == '') {
174
  $code_line = '&nbsp;';
175
  }
176
+
177
  // Check if the current line has been selected
178
  $marked_lines = $hl->marked();
179
  // Check if lines need to be marked as important
247
  $touch = TRUE;
248
  $code_settings .= ' touchscreen';
249
  }
250
+
251
  // Disabling Popup
252
  if (!$hl->setting_val(CrayonSettings::POPUP)) {
253
  $code_settings .= ' no-popup';
257
  if (!$hl->setting_val(CrayonSettings::MINIMIZE)) {
258
  $code_settings .= ' minimize';
259
  }
260
+
261
  // Draw the plain code and toolbar
262
  $toolbar_settings = $print_plain_button = $print_copy_button = '';
263
  $toolbar_index = $hl->setting_index(CrayonSettings::TOOLBAR);
283
  }
284
 
285
  $buttons = array();
286
+
287
  if ($hl->setting_val(CrayonSettings::NUMS_TOGGLE)) {
288
  $buttons['nums'] = crayon__('Toggle Line Numbers');
289
  }
297
  }
298
 
299
  if ($hl->setting_val(CrayonSettings::EXPAND_TOGGLE)) {
300
+ $buttons['expand'] = crayon__('Expand Code');
301
  }
302
 
303
  if (!$touch && $hl->setting_val(CrayonSettings::PLAIN) && $hl->setting_val(CrayonSettings::COPY)) {
332
  } else {
333
  $toolbar = $buttons = $plain_settings = '';
334
  }
335
+
336
  if (empty($error) && $hl->setting_val(CrayonSettings::PLAIN)) {
337
  // Different events to display plain code
338
  switch ($hl->setting_index(CrayonSettings::SHOW_PLAIN)) {
351
  if ($hl->setting_val(CrayonSettings::SHOW_PLAIN_DEFAULT)) {
352
  $plain_settings .= ' show-plain-default';
353
  }
 
 
 
354
  $readonly = $touch ? '' : 'readonly';
355
  $print_plain = $print_plain_button = '';
356
  $textwrap = !$hl->setting_val(CrayonSettings::WRAP) ? 'wrap="soft"' : '';
357
+ $print_plain = '<textarea '.$textwrap.' class="crayon-plain print-no" data-settings="' . $plain_settings . '" '. $readonly .' style="' . $pre_style .' '. $font_style . '">' . "\n" . self::clean_code($hl->code()) . '</textarea>';
358
  } else {
359
  $print_plain = $plain_settings = $plain_settings = '';
360
  }
361
+
362
  // Line numbers visibility
363
  $num_vis = $num_settings = '';
364
  if ($line_numbers === FALSE) {
366
  } else {
367
  $num_settings = ($hl->setting_val(CrayonSettings::NUMS) ? 'show' : 'hide');
368
  }
369
+
370
  // Determine scrollbar visibility
371
  $code_settings .= $hl->setting_val(CrayonSettings::SCROLL) && !$touch ? ' scroll-always' : ' scroll-mouseover';
372
 
374
  if ($hl->setting_val(CrayonSettings::DISABLE_ANIM)) {
375
  $code_settings .= ' disable-anim';
376
  }
377
+
378
  // Wrap
379
  if ($hl->setting_val(CrayonSettings::WRAP)) {
380
  $code_settings .= ' wrap';
381
  }
382
+
383
  // Expand
384
  if ($hl->setting_val(CrayonSettings::EXPAND)) {
385
  $code_settings .= ' expand';
386
  }
387
+
388
  // Determine dimensions
389
  if ($hl->setting_val(CrayonSettings::HEIGHT_SET)) {
390
  $height_style = self::dimension_style($hl, CrayonSettings::HEIGHT);
400
  $main_style .= $width_style;
401
  }
402
  }
403
+
404
  // Determine margins
405
  if ($hl->setting_val(CrayonSettings::TOP_SET)) {
406
  $code_style .= ' margin-top: ' . $hl->setting_val(CrayonSettings::TOP_MARGIN) . 'px;';
414
  if ($hl->setting_val(CrayonSettings::RIGHT_SET)) {
415
  $code_style .= ' margin-right: ' . $hl->setting_val(CrayonSettings::RIGHT_MARGIN) . 'px;';
416
  }
417
+
418
  // Determine horizontal alignment
419
+ $align_style = '';
420
  switch ($hl->setting_index(CrayonSettings::H_ALIGN)) {
421
  case 1 :
422
  $align_style = ' float: left;';
429
  break;
430
  }
431
  $code_style .= $align_style;
432
+
433
  // Determine allowed float elements
434
  if ($hl->setting_val(CrayonSettings::FLOAT_ENABLE)) {
435
  $clear_style = ' clear: none;';
436
  } else {
437
+ $clear_style = '';
438
+ }
439
  $code_style .= $clear_style;
440
+
441
  // Determine if operating system is mac
442
  $crayon_os = CrayonUtil::is_mac() ? 'mac' : 'pc';
443
+
444
  // Produce output
445
  $output .= '
446
  <div id="'.$uid.'" class="crayon-syntax crayon-theme-'.$theme_id_dashed.' crayon-font-'.$font_id_dashed.' crayon-os-'.$crayon_os.' print-yes notranslate" data-settings="'.$code_settings.'" style="'.$code_style.' '.$font_style.'">
458
  }
459
  // XXX
460
  $output .= '
461
+ <td class="crayon-code"><div class="crayon-pre" style="'.$font_style.' '.$pre_style.'">'.$print_code.'</div></td>
462
  </tr>
463
  </table>
464
  </div>
494
  }
495
 
496
  // Delimiters =============================================================
497
+
498
  public static function format_mixed_code($code, $language, $hl) {
499
  self::$curr = $hl;
500
  self::$delim_pieces = array();
501
  // Remove crayon internal element from INPUT code
502
  $code = preg_replace('#'.CrayonParser::CRAYON_ELEMENT_REGEX_CAPTURE.'#msi', '', $code);
503
+
504
  if (self::$delimiters == NULL) {
505
  self::$delimiters = CrayonResources::langs()->delimiters();
506
  }
507
+
508
  // Find all delimiters in all languages
509
  if (self::$delim_regex == NULL) {
510
  self::$delim_regex = '#(' . implode(')|(', array_values(self::$delimiters)) . ')#msi';
511
  }
512
+
513
  // Extract delimited code, replace with internal elements
514
  $internal_code = preg_replace_callback(self::$delim_regex, 'CrayonFormatter::delim_to_internal', $code);
515
+
516
  // Format with given language
517
  $formatted_code = CrayonFormatter::format_code($internal_code, $language, $hl);
518
+
519
  // Replace internal elements with delimited pieces
520
  $formatted_code = preg_replace_callback('#\{\{crayon-internal:(\d+)\}\}#', 'CrayonFormatter::internal_to_code', $formatted_code);
521
 
522
  return $formatted_code;
523
  }
524
+
525
  public static function delim_to_internal($matches) {
526
  // Mark as mixed so we can show (+)
527
  self::$curr->is_mixed(TRUE);
528
  $capture_group = count($matches) - 2;
529
  $capture_groups = array_keys(self::$delimiters);
530
+ $lang_id = $capture_groups[$capture_group];
531
  if ( ($lang = CrayonResources::langs()->get($lang_id)) === NULL ) {
532
  return $matches[0];
533
  }
536
  self::$delim_pieces[] = CrayonFormatter::format_code($matches[0], $lang, self::$curr);
537
  return $internal;
538
  }
539
+
540
  public static function internal_to_code($matches) {
541
  return self::$delim_pieces[intval($matches[1])];
542
  }
543
+
544
  // Auxiliary Methods ======================================================
545
  /* Prepares code for formatting. */
546
  public static function clean_code($code, $escape = TRUE, $spaces = FALSE, $tabs = FALSE, $lines = FALSE) {
555
  // Replace 2 spaces with html escaped characters
556
  $code = preg_replace('#[ ]{2}#msi', '&nbsp;&nbsp;', $code);
557
  }
558
+ if ($tabs && CrayonGlobalSettings::val(CrayonSettings::TAB_CONVERT)) {
559
  // Replace tabs with 4 spaces
560
  $code = preg_replace('#\t#', str_repeat('&nbsp;', CrayonGlobalSettings::val(CrayonSettings::TAB_SIZE)), $code);
561
  }
564
  }
565
  return $code;
566
  }
567
+
568
  /* Converts the code to entities and wraps in a <pre><code></code></pre> */
569
  public static function plain_code($code, $encoded = TRUE) {
570
  if (is_array($code)) {
crayon_parser.class.php CHANGED
@@ -16,12 +16,12 @@ class CrayonParser {
16
  const CRAYON_ELEMENT = 'CRAYON_ELEMENT';
17
  const CRAYON_ELEMENT_REGEX = '\{\{crayon-internal:[^\}]*\}\}';
18
  const CRAYON_ELEMENT_REGEX_CAPTURE = '\{\{crayon-internal:([^\}]*)\}\}';
19
-
20
  private static $modes = array(self::CASE_INSENSITIVE => TRUE, self::MULTI_LINE => TRUE, self::SINGLE_LINE => TRUE, self::ALLOW_MIXED => TRUE);
21
 
22
  // Methods ================================================================
23
  private function __construct() {}
24
-
25
  /**
26
  * Parse all languages stored in CrayonLangs.
27
  * Avoid using this unless you must list the details in language files for all languages.
@@ -39,7 +39,7 @@ class CrayonParser {
39
  }
40
 
41
  /* Read a syntax file and parse the regex rules within it, this may require several other
42
- files containing lists of keywords and such to be read. Updates the parsed elements and
43
  regex in the CrayonLang with the given $id. */
44
  public static function parse($id) {
45
  // Verify the language is loaded and has not been parsed before
@@ -49,12 +49,14 @@ class CrayonParser {
49
  } else if ($lang->is_parsed()) {
50
  return;
51
  }
52
- // Read language file
53
  $path = CrayonResources::langs()->path($id);
 
54
  if ( ($file = CrayonUtil::lines($path, 'wcs')) === FALSE ) {
 
55
  return FALSE;
56
  }
57
-
58
  // Extract the language name
59
  $name_pattern = '#^[ \t]*name[ \t]+([^\r\n]+)[ \t]*#mi';
60
  preg_match($name_pattern, $file, $name);
@@ -65,7 +67,7 @@ class CrayonParser {
65
  } else {
66
  $name = $lang->id();
67
  }
68
-
69
  // Extract the language version
70
  $version_pattern = '#^[ \t]*version[ \t]+([^\r\n]+)[ \t]*#mi';
71
  preg_match($version_pattern, $file, $version);
@@ -74,7 +76,7 @@ class CrayonParser {
74
  $lang->version($version);
75
  $file = preg_replace($version_pattern, '', $file);
76
  }
77
-
78
  // Extract the modes
79
  $mode_pattern = '#^[ \t]*(' . implode('|', array_keys(self::$modes)) . ')[ \t]+(?:=[ \t]*)?([^\r\n]+)[ \t]*#mi';
80
  preg_match_all($mode_pattern, $file, $mode_matches);
@@ -84,15 +86,15 @@ class CrayonParser {
84
  }
85
  $file = preg_replace($mode_pattern, '', $file);
86
  }
87
-
88
  /* Add reserved Crayon element. This is used by Crayon internally. */
89
  $crayon_element = new CrayonElement(self::CRAYON_ELEMENT, $path, self::CRAYON_ELEMENT_REGEX);
90
  $lang->element(self::CRAYON_ELEMENT, $crayon_element);
91
-
92
  // Extract elements, classes and regex
93
  $pattern = '#^[ \t]*([\w:]+)[ \t]+(?:\[([\w\t ]*)\][ \t]+)?([^\r\n]+)[ \t]*#m';
94
  preg_match_all($pattern, $file, $matches);
95
-
96
  if (!empty($matches[0])) {
97
  $elements = $matches[1];
98
  $classes = $matches[2];
@@ -100,7 +102,7 @@ class CrayonParser {
100
  } else {
101
  CrayonLog::syslog("No regex patterns and/or elements were parsed from language file at '$path'.");
102
  }
103
-
104
  // Remember state in case we encounter catchable exceptions
105
  $error = FALSE;
106
  for ($i = 0; $i < count($matches[0]); $i++) {
@@ -144,7 +146,7 @@ class CrayonParser {
144
  $state = $error ? CrayonLang::PARSED_ERRORS : CrayonLang::PARSED_SUCCESS;
145
  $lang->state($state);
146
  }
147
-
148
  /* Prevents < > and other html entities from being printed as is, which could lead to actual html tags
149
  * from the printed code appearing on the page - not good. This can also act to color any HTML entities
150
  * that are not picked up by previously defined elements.
@@ -192,31 +194,35 @@ class CrayonParser {
192
  $regex = str_replace($def[0][$i], '(?:' . $default_element->regex() .')', $regex);
193
  } else {
194
  CrayonLog::syslog("The language at '{$element->path()}' referred to the Default Language regex for element '{$element->name()}', which did not exist.");
 
 
 
 
195
  return FALSE;
196
  }
197
  }
198
  }
199
-
200
- // If the (?html) tag is used, escape characters in html (<, > and &)
201
  $html = self::regex_match('#\(\?html:(.+?)\)#', $regex);
202
  if ( count($html) == 2 ) {
203
  for ($i = 0; $i < count($html[1]); $i++) {
204
  $regex = str_replace($html[0][$i], htmlentities($html[1][$i]), $regex);
205
  }
206
  }
207
-
208
  // Ensure all parenthesis are atomic to avoid conflicting with element matches
209
  $regex = CrayonUtil::esc_atomic($regex);
210
-
211
  // Escape #, this is our delimiter
212
  $regex = CrayonUtil::esc_hash($regex);
213
-
214
  // Test if regex is valid
215
  if (@preg_match("#$regex#", '') === FALSE) {
216
  CrayonLog::syslog("The regex for the element '{$element->name()}' in '{$element->path()}' is not valid.");
217
  return FALSE;
218
  }
219
-
220
  return $regex;
221
  } else {
222
  return '';
16
  const CRAYON_ELEMENT = 'CRAYON_ELEMENT';
17
  const CRAYON_ELEMENT_REGEX = '\{\{crayon-internal:[^\}]*\}\}';
18
  const CRAYON_ELEMENT_REGEX_CAPTURE = '\{\{crayon-internal:([^\}]*)\}\}';
19
+
20
  private static $modes = array(self::CASE_INSENSITIVE => TRUE, self::MULTI_LINE => TRUE, self::SINGLE_LINE => TRUE, self::ALLOW_MIXED => TRUE);
21
 
22
  // Methods ================================================================
23
  private function __construct() {}
24
+
25
  /**
26
  * Parse all languages stored in CrayonLangs.
27
  * Avoid using this unless you must list the details in language files for all languages.
39
  }
40
 
41
  /* Read a syntax file and parse the regex rules within it, this may require several other
42
+ files containing lists of keywords and such to be read. Updates the parsed elements and
43
  regex in the CrayonLang with the given $id. */
44
  public static function parse($id) {
45
  // Verify the language is loaded and has not been parsed before
49
  } else if ($lang->is_parsed()) {
50
  return;
51
  }
52
+ // Read language file
53
  $path = CrayonResources::langs()->path($id);
54
+ CrayonLog::debug('Parsing language ' . $path);
55
  if ( ($file = CrayonUtil::lines($path, 'wcs')) === FALSE ) {
56
+ CrayonLog::debug('Parsing failed ' . $path);
57
  return FALSE;
58
  }
59
+
60
  // Extract the language name
61
  $name_pattern = '#^[ \t]*name[ \t]+([^\r\n]+)[ \t]*#mi';
62
  preg_match($name_pattern, $file, $name);
67
  } else {
68
  $name = $lang->id();
69
  }
70
+
71
  // Extract the language version
72
  $version_pattern = '#^[ \t]*version[ \t]+([^\r\n]+)[ \t]*#mi';
73
  preg_match($version_pattern, $file, $version);
76
  $lang->version($version);
77
  $file = preg_replace($version_pattern, '', $file);
78
  }
79
+
80
  // Extract the modes
81
  $mode_pattern = '#^[ \t]*(' . implode('|', array_keys(self::$modes)) . ')[ \t]+(?:=[ \t]*)?([^\r\n]+)[ \t]*#mi';
82
  preg_match_all($mode_pattern, $file, $mode_matches);
86
  }
87
  $file = preg_replace($mode_pattern, '', $file);
88
  }
89
+
90
  /* Add reserved Crayon element. This is used by Crayon internally. */
91
  $crayon_element = new CrayonElement(self::CRAYON_ELEMENT, $path, self::CRAYON_ELEMENT_REGEX);
92
  $lang->element(self::CRAYON_ELEMENT, $crayon_element);
93
+
94
  // Extract elements, classes and regex
95
  $pattern = '#^[ \t]*([\w:]+)[ \t]+(?:\[([\w\t ]*)\][ \t]+)?([^\r\n]+)[ \t]*#m';
96
  preg_match_all($pattern, $file, $matches);
97
+
98
  if (!empty($matches[0])) {
99
  $elements = $matches[1];
100
  $classes = $matches[2];
102
  } else {
103
  CrayonLog::syslog("No regex patterns and/or elements were parsed from language file at '$path'.");
104
  }
105
+
106
  // Remember state in case we encounter catchable exceptions
107
  $error = FALSE;
108
  for ($i = 0; $i < count($matches[0]); $i++) {
146
  $state = $error ? CrayonLang::PARSED_ERRORS : CrayonLang::PARSED_SUCCESS;
147
  $lang->state($state);
148
  }
149
+
150
  /* Prevents < > and other html entities from being printed as is, which could lead to actual html tags
151
  * from the printed code appearing on the page - not good. This can also act to color any HTML entities
152
  * that are not picked up by previously defined elements.
194
  $regex = str_replace($def[0][$i], '(?:' . $default_element->regex() .')', $regex);
195
  } else {
196
  CrayonLog::syslog("The language at '{$element->path()}' referred to the Default Language regex for element '{$element->name()}', which did not exist.");
197
+ if (CRAYON_DEBUG) {
198
+ CrayonLog::syslog("Default language URL: " . CrayonResources::langs()->url(CrayonLangs::DEFAULT_LANG));
199
+ CrayonLog::syslog("Default language Path: " . CrayonResources::langs()->path(CrayonLangs::DEFAULT_LANG));
200
+ }
201
  return FALSE;
202
  }
203
  }
204
  }
205
+
206
+ // If the (?html) tag is used, escape characters in html (<, > and &)
207
  $html = self::regex_match('#\(\?html:(.+?)\)#', $regex);
208
  if ( count($html) == 2 ) {
209
  for ($i = 0; $i < count($html[1]); $i++) {
210
  $regex = str_replace($html[0][$i], htmlentities($html[1][$i]), $regex);
211
  }
212
  }
213
+
214
  // Ensure all parenthesis are atomic to avoid conflicting with element matches
215
  $regex = CrayonUtil::esc_atomic($regex);
216
+
217
  // Escape #, this is our delimiter
218
  $regex = CrayonUtil::esc_hash($regex);
219
+
220
  // Test if regex is valid
221
  if (@preg_match("#$regex#", '') === FALSE) {
222
  CrayonLog::syslog("The regex for the element '{$element->name()}' in '{$element->path()}' is not valid.");
223
  return FALSE;
224
  }
225
+
226
  return $regex;
227
  } else {
228
  return '';
crayon_resource.class.php CHANGED
@@ -154,9 +154,12 @@ class CrayonResourceCollection {
154
  if (is_string($id) && !empty($id)) {
155
  $this->collection[$id] = $resource;
156
  asort($this->collection);
157
- }
 
 
 
158
  }
159
-
160
  public function add_resource($resource) {
161
  $this->add($resource->id(), $resource);
162
  }
@@ -181,7 +184,7 @@ class CrayonResourceCollection {
181
  }
182
  return NULL;
183
  }
184
-
185
  public function get_array() {
186
  $array = array();
187
  foreach ($this->get() as $resource) {
@@ -220,11 +223,11 @@ class CrayonResourceCollection {
220
  $this->dir = CrayonUtil::path_slash($dir);
221
  }
222
  }
223
-
224
  public function url($id) {
225
  return '';
226
  }
227
-
228
  public function get_css($id, $ver = NULL) {
229
  $resource = $this->get($id);
230
  return '<link rel="stylesheet" type="text/css" href="' . $this->url($resource->id()) . ($ver ? "?ver=$ver" : '') . '" />' . CRAYON_NL;
@@ -251,7 +254,7 @@ class CrayonUsedResourceCollection extends CrayonResourceCollection {
251
  }
252
  }
253
  }
254
-
255
  public function set_used($id, $value = TRUE) {
256
  $resource = $this->get($id);
257
  if ($resource !== NULL && !$resource->used()) {
@@ -260,7 +263,7 @@ class CrayonUsedResourceCollection extends CrayonResourceCollection {
260
  }
261
  return FALSE;
262
  }
263
-
264
  public function get_used() {
265
  $used = array();
266
  foreach ($this->get() as $resource) {
@@ -270,7 +273,7 @@ class CrayonUsedResourceCollection extends CrayonResourceCollection {
270
  }
271
  return $used;
272
  }
273
-
274
  // XXX Override
275
  public function resource_instance($id, $name = NULL) {
276
  return new CrayonUsedResource($id, $name);
@@ -410,17 +413,17 @@ class CrayonResource {
410
 
411
  function name($name = NULL) {
412
  if ($name === NULL) {
413
- return $this->name;
414
  } else {
415
  $this->name = $name;
416
  }
417
  }
418
-
419
  function clean_id($id) {
420
  $id = CrayonUtil::space_to_hyphen( strtolower(trim($id)) );
421
  return preg_replace('#[^\w-]#msi', '', $id);
422
  }
423
-
424
  function clean_name($id) {
425
  $id = CrayonUtil::hyphen_to_space( strtolower(trim($id)) );
426
  return CrayonUtil::ucwords($id);
154
  if (is_string($id) && !empty($id)) {
155
  $this->collection[$id] = $resource;
156
  asort($this->collection);
157
+ CrayonLog::debug('Added resource: ' . $this->path($id));
158
+ } else {
159
+ CrayonLog::syslog('Could not add resource: ', $id);
160
+ }
161
  }
162
+
163
  public function add_resource($resource) {
164
  $this->add($resource->id(), $resource);
165
  }
184
  }
185
  return NULL;
186
  }
187
+
188
  public function get_array() {
189
  $array = array();
190
  foreach ($this->get() as $resource) {
223
  $this->dir = CrayonUtil::path_slash($dir);
224
  }
225
  }
226
+
227
  public function url($id) {
228
  return '';
229
  }
230
+
231
  public function get_css($id, $ver = NULL) {
232
  $resource = $this->get($id);
233
  return '<link rel="stylesheet" type="text/css" href="' . $this->url($resource->id()) . ($ver ? "?ver=$ver" : '') . '" />' . CRAYON_NL;
254
  }
255
  }
256
  }
257
+
258
  public function set_used($id, $value = TRUE) {
259
  $resource = $this->get($id);
260
  if ($resource !== NULL && !$resource->used()) {
263
  }
264
  return FALSE;
265
  }
266
+
267
  public function get_used() {
268
  $used = array();
269
  foreach ($this->get() as $resource) {
273
  }
274
  return $used;
275
  }
276
+
277
  // XXX Override
278
  public function resource_instance($id, $name = NULL) {
279
  return new CrayonUsedResource($id, $name);
413
 
414
  function name($name = NULL) {
415
  if ($name === NULL) {
416
+ return $this->name;
417
  } else {
418
  $this->name = $name;
419
  }
420
  }
421
+
422
  function clean_id($id) {
423
  $id = CrayonUtil::space_to_hyphen( strtolower(trim($id)) );
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);
crayon_settings.class.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
- require_once ('global.php');
3
- require_once (CRAYON_PARSER_PHP);
4
- require_once (CRAYON_THEMES_PHP);
5
 
6
  /**
7
  * Stores CrayonSetting objects.
@@ -64,6 +64,7 @@ class CrayonSettings {
64
  const WHITESPACE_AFTER = 'whitespace-after';
65
  const TRIM_CODE_TAG = 'trim-code-tag';
66
  const TAB_SIZE = 'tab-size';
 
67
  const FALLBACK_LANG = 'fallback-lang';
68
  const LOCAL_PATH = 'local-path';
69
  const SCROLL = 'scroll';
@@ -111,6 +112,7 @@ class CrayonSettings {
111
  const EXPAND = 'expand';
112
  const EXPAND_TOGGLE = 'expand-toggle';
113
  const MINIMIZE = 'minimize';
 
114
 
115
  private static $cache_array;
116
 
@@ -195,6 +197,7 @@ class CrayonSettings {
195
  new CrayonSetting(self::WHITESPACE_BEFORE, 0),
196
  new CrayonSetting(self::WHITESPACE_AFTER, 0),
197
  new CrayonSetting(self::TRIM_CODE_TAG, TRUE),
 
198
  new CrayonSetting(self::TAB_SIZE, 4),
199
  new CrayonSetting(self::FALLBACK_LANG, CrayonLangs::DEFAULT_LANG),
200
  new CrayonSetting(self::LOCAL_PATH, ''),
1
  <?php
2
+ require_once('global.php');
3
+ require_once(CRAYON_PARSER_PHP);
4
+ require_once(CRAYON_THEMES_PHP);
5
 
6
  /**
7
  * Stores CrayonSetting objects.
64
  const WHITESPACE_AFTER = 'whitespace-after';
65
  const TRIM_CODE_TAG = 'trim-code-tag';
66
  const TAB_SIZE = 'tab-size';
67
+ const TAB_CONVERT = 'tab-convert';
68
  const FALLBACK_LANG = 'fallback-lang';
69
  const LOCAL_PATH = 'local-path';
70
  const SCROLL = 'scroll';
112
  const EXPAND = 'expand';
113
  const EXPAND_TOGGLE = 'expand-toggle';
114
  const MINIMIZE = 'minimize';
115
+ const IGNORE = 'ignore';
116
 
117
  private static $cache_array;
118
 
197
  new CrayonSetting(self::WHITESPACE_BEFORE, 0),
198
  new CrayonSetting(self::WHITESPACE_AFTER, 0),
199
  new CrayonSetting(self::TRIM_CODE_TAG, TRUE),
200
+ new CrayonSetting(self::TAB_CONVERT, FALSE),
201
  new CrayonSetting(self::TAB_SIZE, 4),
202
  new CrayonSetting(self::FALLBACK_LANG, CrayonLangs::DEFAULT_LANG),
203
  new CrayonSetting(self::LOCAL_PATH, ''),
crayon_settings_wp.class.php CHANGED
@@ -708,45 +708,19 @@ class CrayonSettingsWP {
708
  if (CrayonGlobalSettings::val(CrayonSettings::HIDE_HELP)) {
709
  return;
710
  }
711
- echo '
712
- <div id="crayon-help" class="updated settings-error crayon-help">
713
  <p><strong>Howdy, coder!</strong> Thanks for using Crayon. <strong>Useful Links:</strong> <a href="' . $CRAYON_WEBSITE . '" target="_blank">Documentation</a>, <a href="' . $CRAYON_GIT . '" target="_blank">GitHub</a>, <a href="' . $CRAYON_PLUGIN_WP . '" target="_blank">Plugin Page</a>, <a href="' . $CRAYON_TWITTER . '" target="_blank">Twitter</a>. Crayon has always been free. If you value my work please consider a <a href="' . $CRAYON_DONATE . '">small donation</a> to show your appreciation. Thanks! <a class="crayon-help-close">X</a></p></div>
714
  ';
715
  }
716
 
717
- // public static function get_crayon_help_file() {
718
- // // Load help
719
- // if ( ($help = @file_get_contents(CRAYON_HELP_FILE)) !== FALSE) {
720
- // $help = str_replace('{PLUGIN}', CrayonGlobalSettings::plugin_path(), $help);
721
- // } else {
722
- // $help = 'Help failed to load... Try <a href="#info">these</a> instead.';
723
- // }
724
- // return $help;
725
- // }
726
-
727
  public static function help_screen() {
728
  $screen = get_current_screen();
729
 
730
  if ($screen->id != self::$admin_page) {
731
  return;
732
  }
733
-
734
- // Add my_help_tab if current screen is My Admin Page
735
- // $screen->add_help_tab( array(
736
- // 'id' => 'crayon_help_tab',
737
- // 'title' => crayon__('Crayon Help'),
738
- // 'content' => self::get_crayon_help_file() // TODO consider adding tranlations for help
739
- // ) );
740
  }
741
 
742
- // XXX Depreciated since WP 3.3
743
- // public static function cont_help($contextual_help, $screen_id, $screen) {
744
- // if ($screen_id == self::$admin_page) {
745
- // return self::get_crayon_help_file();
746
- // }
747
- // return $contextual_help;
748
- // }
749
-
750
  public static function metrics() {
751
  echo '<div id="crayon-section-metrics" class="crayon-hide-inline">';
752
  self::checkbox(array(CrayonSettings::HEIGHT_SET, '<span class="crayon-span-50">' . crayon__('Height') . ' </span>'), FALSE);
@@ -838,7 +812,7 @@ class CrayonSettingsWP {
838
  // Language parsing info
839
  echo CRAYON_BR, '<div id="crayon-subsection-langs-info"><div>' . self::button(array('id' => 'show-langs', 'title' => crayon__('Show Languages'))) . '</div></div>';
840
  } else {
841
- echo 'No languages could be parsed.';
842
  }
843
  }
844
  }
@@ -849,7 +823,7 @@ class CrayonSettingsWP {
849
  if (($langs = CrayonParser::parse_all()) != FALSE) {
850
  $langs = CrayonLangs::sort_by_name($langs);
851
  echo '<table class="crayon-table" cellspacing="0" cellpadding="0"><tr class="crayon-table-header">',
852
- '<td>ID</td><td>Name</td><td>Version</td><td>File Extensions</td><td>Aliases</td><td>State</td></tr>';
853
  $keys = array_values($langs);
854
  for ($i = 0; $i < count($langs); $i++) {
855
  $lang = $keys[$i];
@@ -864,9 +838,9 @@ class CrayonSettingsWP {
864
  $lang->state_info(), '</td>',
865
  '</tr>';
866
  }
867
- echo '</table><br/>Languages that have the same extension as their name don\'t need to explicitly map extensions.';
868
  } else {
869
- echo 'No languages could be found.';
870
  }
871
  exit();
872
  }
@@ -1101,6 +1075,7 @@ class Human {
1101
  echo '<div class="crayon-hide-inline-only">';
1102
  self::checkbox(array(CrayonSettings::SHOW_MIXED, crayon__('Show Mixed Language Icon (+)')));
1103
  echo '</div>';
 
1104
  self::span(crayon__('Tab size in spaces') . ': ');
1105
  self::textbox(array('id' => CrayonSettings::TAB_SIZE, 'size' => 2, 'break' => TRUE));
1106
  self::span(crayon__('Blank lines before code:') . ' ');
@@ -1211,21 +1186,25 @@ class Human {
1211
  $translators = '<strong>' . crayon__('Translators') . ':</strong> ' .
1212
  '
1213
  Arabic (<a href="http://djennadhamza.eb2a.com/" target="_blank">Djennad Hamza</a>),
1214
- Chinese (<a href="http://smerpup.com/" target="_blank">Dezhi Liu</a>, <a href="http://neverno.me/" target="_blank">Jash Yin</a>),
1215
- Dutch (<a href="http://www.dreamdesignsolutions.nl/" target="_blank">Robin Roelofsen</a>, <a href="https://twitter.com/#!/chilionsnoek" target="_blank">Chilion Snoek</a>),
 
1216
  French (<a href="http://tech.dupeu.pl" target="_blank">Victor Felder</a>),
 
1217
  German (<a href="http://www.technologyblog.de/" target="_blank">Stephan Knau&#223;</a>),
1218
  Italian (<a href="http://www.federicobellucci.net/" target="_blank">Federico Bellucci</a>),
1219
  Japanese (<a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>),
1220
  Korean (<a href="https://github.com/dokenzy" target="_blank">dokenzy</a>),
1221
- Lithuanian (<a href="http://www.host1free.com" target="_blank">Vincent G</a>),
 
1222
  Polish (<a href="https://github.com/toszcze" target="_blank">Bartosz Romanowski</a>),
1223
  Portuguese (<a href="http://www.adonai.eti.br" target="_blank">Adonai S. Canez</a>),
1224
- Slovak (<a href="http://webhostinggeeks.com/blog/" target="_blank">http://webhostinggeeks.com/</a>),
 
1225
  Slovenian (<a href="http://jodlajodla.si/" target="_blank">Jan Su&#353;nik</a>),
1226
- Russian (<a href="http://simplelib.com/" target="_blank">Minimus</a>, <a href="http://atlocal.net/" target="_blank">Di_Skyer</a>),
1227
  Spanish (<a href="http://www.hbravo.com/" target="_blank">Hermann Bravo</a>),
1228
- Turkish (<a href="http://hakanertr.wordpress.com" target="_blank">Hakan</a>)';
 
1229
 
1230
  $links = '
1231
  <a id="docs-icon" class="small-icon" title="Documentation" href="' . $CRAYON_WEBSITE . '" target="_blank"></a>
708
  if (CrayonGlobalSettings::val(CrayonSettings::HIDE_HELP)) {
709
  return;
710
  }
711
+ echo '<div id="crayon-help" class="updated settings-error crayon-help">
 
712
  <p><strong>Howdy, coder!</strong> Thanks for using Crayon. <strong>Useful Links:</strong> <a href="' . $CRAYON_WEBSITE . '" target="_blank">Documentation</a>, <a href="' . $CRAYON_GIT . '" target="_blank">GitHub</a>, <a href="' . $CRAYON_PLUGIN_WP . '" target="_blank">Plugin Page</a>, <a href="' . $CRAYON_TWITTER . '" target="_blank">Twitter</a>. Crayon has always been free. If you value my work please consider a <a href="' . $CRAYON_DONATE . '">small donation</a> to show your appreciation. Thanks! <a class="crayon-help-close">X</a></p></div>
713
  ';
714
  }
715
 
 
 
 
 
 
 
 
 
 
 
716
  public static function help_screen() {
717
  $screen = get_current_screen();
718
 
719
  if ($screen->id != self::$admin_page) {
720
  return;
721
  }
 
 
 
 
 
 
 
722
  }
723
 
 
 
 
 
 
 
 
 
724
  public static function metrics() {
725
  echo '<div id="crayon-section-metrics" class="crayon-hide-inline">';
726
  self::checkbox(array(CrayonSettings::HEIGHT_SET, '<span class="crayon-span-50">' . crayon__('Height') . ' </span>'), FALSE);
812
  // Language parsing info
813
  echo CRAYON_BR, '<div id="crayon-subsection-langs-info"><div>' . self::button(array('id' => 'show-langs', 'title' => crayon__('Show Languages'))) . '</div></div>';
814
  } else {
815
+ echo crayon__('No languages could be parsed.');
816
  }
817
  }
818
  }
823
  if (($langs = CrayonParser::parse_all()) != FALSE) {
824
  $langs = CrayonLangs::sort_by_name($langs);
825
  echo '<table class="crayon-table" cellspacing="0" cellpadding="0"><tr class="crayon-table-header">',
826
+ '<td>',crayon__('ID'),'</td><td>',crayon__('Name'),'</td><td>',crayon__('Version'),'</td><td>',crayon__('File Extensions'),'</td><td>',crayon__('Aliases'),'</td><td>',crayon__('State'),'</td></tr>';
827
  $keys = array_values($langs);
828
  for ($i = 0; $i < count($langs); $i++) {
829
  $lang = $keys[$i];
838
  $lang->state_info(), '</td>',
839
  '</tr>';
840
  }
841
+ echo '</table><br/>' . crayon__("Languages that have the same extension as their name don't need to explicitly map extensions.");
842
  } else {
843
+ echo crayon__('No languages could be found.');
844
  }
845
  exit();
846
  }
1075
  echo '<div class="crayon-hide-inline-only">';
1076
  self::checkbox(array(CrayonSettings::SHOW_MIXED, crayon__('Show Mixed Language Icon (+)')));
1077
  echo '</div>';
1078
+ self::checkbox(array(CrayonSettings::TAB_CONVERT, crayon__('Convert tabs to spaces')));
1079
  self::span(crayon__('Tab size in spaces') . ': ');
1080
  self::textbox(array('id' => CrayonSettings::TAB_SIZE, 'size' => 2, 'break' => TRUE));
1081
  self::span(crayon__('Blank lines before code:') . ' ');
1186
  $translators = '<strong>' . crayon__('Translators') . ':</strong> ' .
1187
  '
1188
  Arabic (<a href="http://djennadhamza.eb2a.com/" target="_blank">Djennad Hamza</a>),
1189
+ Chinese Simplified (<a href="http://smerpup.com/" target="_blank">Dezhi Liu</a>, <a href="http://neverno.me/" target="_blank">Jash Yin</a>),
1190
+ Chinese Traditional (<a href="http://www.arefly.com/" target="_blank">Arefly</a>),
1191
+ Dutch (<a href="https://twitter.com/RobinRoelofsen" target="_blank">Robin Roelofsen</a>, <a href="https://twitter.com/#!/chilionsnoek" target="_blank">Chilion Snoek</a>),
1192
  French (<a href="http://tech.dupeu.pl" target="_blank">Victor Felder</a>),
1193
+ Finnish (<a href="https://github.com/vahalan" target="_blank">vahalan</a>),
1194
  German (<a href="http://www.technologyblog.de/" target="_blank">Stephan Knau&#223;</a>),
1195
  Italian (<a href="http://www.federicobellucci.net/" target="_blank">Federico Bellucci</a>),
1196
  Japanese (<a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>),
1197
  Korean (<a href="https://github.com/dokenzy" target="_blank">dokenzy</a>),
1198
+ Lithuanian (Vincent G),
1199
+ Persian (MahdiY),
1200
  Polish (<a href="https://github.com/toszcze" target="_blank">Bartosz Romanowski</a>),
1201
  Portuguese (<a href="http://www.adonai.eti.br" target="_blank">Adonai S. Canez</a>),
1202
+ Russian (<a href="http://simplelib.com/" target="_blank">Minimus</a>, Di_Skyer),
1203
+ Slovak (<a href="https://twitter.com/#!/webhostgeeks" target="_blank">webhostgeeks</a>),
1204
  Slovenian (<a href="http://jodlajodla.si/" target="_blank">Jan Su&#353;nik</a>),
 
1205
  Spanish (<a href="http://www.hbravo.com/" target="_blank">Hermann Bravo</a>),
1206
+ Turkish (<a href="http://hakanertr.wordpress.com" target="_blank">Hakan</a>),
1207
+ Ukrainian (<a href="http://getvoip.com/blog" target="_blank">Michael Yunat</a>)';
1208
 
1209
  $links = '
1210
  <a id="docs-icon" class="small-icon" title="Documentation" href="' . $CRAYON_WEBSITE . '" target="_blank"></a>
crayon_wp.class.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Crayon Syntax Highlighter
4
  Plugin URI: https://github.com/aramkocharyan/crayon-syntax-highlighter
5
  Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
6
- Version: 2.6.1
7
  Author: Aram Kocharyan
8
  Author URI: http://aramk.com/
9
  Text Domain: crayon-syntax-highlighter
@@ -23,15 +23,15 @@ You should have received a copy of the GNU General Public License
23
  along with this program; if not, write to the Free Software
24
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
- require_once ('global.php');
27
- require_once (CRAYON_HIGHLIGHTER_PHP);
28
  if (CRAYON_TAG_EDITOR) {
29
- require_once (CRAYON_TAG_EDITOR_PHP);
30
  }
31
  if (CRAYON_THEME_EDITOR) {
32
- require_once (CRAYON_THEME_EDITOR_PHP);
33
  }
34
- require_once ('crayon_settings_wp.class.php');
35
 
36
  if (defined('ABSPATH')) {
37
  // Used to get plugin version info
@@ -40,6 +40,7 @@ if (defined('ABSPATH')) {
40
  }
41
 
42
  /* The plugin class that manages all other classes and integrates Crayon with WP */
 
43
  class CrayonWP {
44
  // Properties and Constants ===============================================
45
 
@@ -288,8 +289,6 @@ class CrayonWP {
288
  $wp_content = preg_replace_callback('#(?<!\$)\[\s*plain\s*\](.*?)\[\s*/\s*plain\s*\]#msi', 'CrayonFormatter::plain_code', $wp_content);
289
  }
290
 
291
-
292
-
293
  // Add IDs to the Crayons
294
  CrayonLog::debug('capture adding id ' . $wp_id . ' , now has len ' . strlen($wp_content));
295
  $wp_content = preg_replace_callback(self::REGEX_ID, 'CrayonWP::add_crayon_id', $wp_content);
@@ -347,6 +346,11 @@ class CrayonWP {
347
  }
348
  }
349
 
 
 
 
 
 
350
  // Capture theme
351
  $theme_id = array_key_exists(CrayonSettings::THEME, $atts_array) ? $atts_array[CrayonSettings::THEME] : '';
352
  $theme = CrayonResources::themes()->get($theme_id);
@@ -518,7 +522,7 @@ class CrayonWP {
518
  }
519
 
520
  private static function add_crayon_id($content) {
521
- $uid = $content[0] . '-' . str_replace('.','',uniqid('',true));
522
  CrayonLog::debug('add_crayon_id ' . $uid);
523
  return $uid;
524
  }
@@ -755,7 +759,7 @@ class CrayonWP {
755
  return $the_excerpt . ' ';
756
  }
757
 
758
- // Refactored, used to capture pre and span tags which have settings in class attribute
759
  public static function class_tag($matches) {
760
  // If class exists, atts is not captured
761
  $pre_class = $matches[1];
@@ -775,6 +779,10 @@ class CrayonWP {
775
  }
776
 
777
  if (!empty($class)) {
 
 
 
 
778
  // crayon-inline is turned into inline="1"
779
  $class = preg_replace('#' . self::REGEX_INLINE_CLASS . '#mi', 'inline="1"', $class);
780
  // "setting[:_]value" style settings in the class attribute
@@ -882,6 +890,14 @@ class CrayonWP {
882
  self::refresh_post($post);
883
  }
884
 
 
 
 
 
 
 
 
 
885
  public static function refresh_post($post, $refresh_legacy = TRUE, $save = TRUE) {
886
  $postID = $post->ID;
887
  if (wp_is_post_revision($postID)) {
@@ -1304,6 +1320,7 @@ if (defined('ABSPATH')) {
1304
  // For marking a post as containing a Crayon
1305
  add_action('update_post', 'CrayonWP::save_post', 10, 2);
1306
  add_action('save_post', 'CrayonWP::save_post', 10, 2);
 
1307
  }
1308
  register_activation_hook(__FILE__, 'CrayonWP::install');
1309
  register_deactivation_hook(__FILE__, 'CrayonWP::uninstall');
3
  Plugin Name: Crayon Syntax Highlighter
4
  Plugin URI: https://github.com/aramkocharyan/crayon-syntax-highlighter
5
  Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
6
+ Version: 2.6.7
7
  Author: Aram Kocharyan
8
  Author URI: http://aramk.com/
9
  Text Domain: crayon-syntax-highlighter
23
  along with this program; if not, write to the Free Software
24
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
+ require_once('global.php');
27
+ require_once(CRAYON_HIGHLIGHTER_PHP);
28
  if (CRAYON_TAG_EDITOR) {
29
+ require_once(CRAYON_TAG_EDITOR_PHP);
30
  }
31
  if (CRAYON_THEME_EDITOR) {
32
+ require_once(CRAYON_THEME_EDITOR_PHP);
33
  }
34
+ require_once('crayon_settings_wp.class.php');
35
 
36
  if (defined('ABSPATH')) {
37
  // Used to get plugin version info
40
  }
41
 
42
  /* The plugin class that manages all other classes and integrates Crayon with WP */
43
+
44
  class CrayonWP {
45
  // Properties and Constants ===============================================
46
 
289
  $wp_content = preg_replace_callback('#(?<!\$)\[\s*plain\s*\](.*?)\[\s*/\s*plain\s*\]#msi', 'CrayonFormatter::plain_code', $wp_content);
290
  }
291
 
 
 
292
  // Add IDs to the Crayons
293
  CrayonLog::debug('capture adding id ' . $wp_id . ' , now has len ' . strlen($wp_content));
294
  $wp_content = preg_replace_callback(self::REGEX_ID, 'CrayonWP::add_crayon_id', $wp_content);
346
  }
347
  }
348
 
349
+ if (@$atts_array[CrayonSettings::IGNORE]) {
350
+ // TODO(aramk) Revert to the original content.
351
+ continue;
352
+ }
353
+
354
  // Capture theme
355
  $theme_id = array_key_exists(CrayonSettings::THEME, $atts_array) ? $atts_array[CrayonSettings::THEME] : '';
356
  $theme = CrayonResources::themes()->get($theme_id);
522
  }
523
 
524
  private static function add_crayon_id($content) {
525
+ $uid = $content[0] . '-' . str_replace('.', '', uniqid('', true));
526
  CrayonLog::debug('add_crayon_id ' . $uid);
527
  return $uid;
528
  }
759
  return $the_excerpt . ' ';
760
  }
761
 
762
+ // Used to capture pre and span tags which have settings in class attribute
763
  public static function class_tag($matches) {
764
  // If class exists, atts is not captured
765
  $pre_class = $matches[1];
779
  }
780
 
781
  if (!empty($class)) {
782
+ if (preg_match('#\bignore\s*:\s*true#', $class)) {
783
+ // Prevent any changes if ignoring the tag.
784
+ return $matches[0];
785
+ }
786
  // crayon-inline is turned into inline="1"
787
  $class = preg_replace('#' . self::REGEX_INLINE_CLASS . '#mi', 'inline="1"', $class);
788
  // "setting[:_]value" style settings in the class attribute
890
  self::refresh_post($post);
891
  }
892
 
893
+ public static function filter_post_data($data, $postarr) {
894
+ // Remove the selected CSS that may be present from the tag editor.
895
+ CrayonTagEditorWP::init_settings();
896
+ $css_selected = CrayonTagEditorWP::$settings['css_selected'];
897
+ $data['post_content'] = preg_replace("#(class\s*=\s*(\\\\[\"'])[^\"']*)$css_selected([^\"']*\\2)#msi", '$1$3', $data['post_content']);
898
+ return $data;
899
+ }
900
+
901
  public static function refresh_post($post, $refresh_legacy = TRUE, $save = TRUE) {
902
  $postID = $post->ID;
903
  if (wp_is_post_revision($postID)) {
1320
  // For marking a post as containing a Crayon
1321
  add_action('update_post', 'CrayonWP::save_post', 10, 2);
1322
  add_action('save_post', 'CrayonWP::save_post', 10, 2);
1323
+ add_filter('wp_insert_post_data', 'CrayonWP::filter_post_data', '99', 2);
1324
  }
1325
  register_activation_hook(__FILE__, 'CrayonWP::install');
1326
  register_deactivation_hook(__FILE__, 'CrayonWP::uninstall');
css/src/crayon_style.css CHANGED
@@ -357,6 +357,7 @@ coloring etc.
357
  overflow: visible;
358
  background: none !important;
359
  border: none !important;
 
360
  }
361
 
362
  .crayon-syntax .crayon-line {
357
  overflow: visible;
358
  background: none !important;
359
  border: none !important;
360
+ tab-size: 4;
361
  }
362
 
363
  .crayon-syntax .crayon-line {
css/src/global_style.css CHANGED
@@ -35,6 +35,10 @@
35
  text-align: left;
36
  }
37
 
 
 
 
 
38
  #crayon-te-table .crayon-tr-center td, #crayon-te-table .crayon-tr-center th {
39
  vertical-align: middle;
40
  }
@@ -135,10 +139,6 @@
135
  background: #EEE !important;
136
  }
137
 
138
- .mce_crayon_tinymce_highlight, .qt_crayon_highlight {
139
- border: 1px solid #7c9dde !important;
140
- }
141
-
142
  .qt_crayon_highlight {
143
  background-image: -ms-linear-gradient(bottom, #daf2ff, white) !important;
144
  background-image: -moz-linear-gradient(bottom, #daf2ff, white) !important;
@@ -157,10 +157,13 @@
157
 
158
  /* TinyMCE v4 */
159
  .mce_crayon_tinymce {
160
- background: url(../images/crayon_tinymce.png) 0 0 !important;
161
  padding: 0 !important;
162
  margin: 2px 3px !important;
163
  }
 
 
 
 
164
 
165
  /* TinyMCE v3 - deprecated */
166
  a.mce_crayon_tinymce {
@@ -257,14 +260,20 @@ a.mce_crayon_tinymce {
257
 
258
  .crayon-question {
259
  padding: 1px 4px !important;
260
- background: #83b3cb !important;
261
  text-decoration: none !important;
262
- color: white !important;
263
  border-radius: 10px !important;
264
  height: 15px !important;
265
  width: 15px !important;
266
  }
267
 
 
 
 
 
 
 
 
268
  .crayon-setting {
269
 
270
  }
35
  text-align: left;
36
  }
37
 
38
+ .rtl #crayon-te-table th, .rtl #crayon-te-table td {
39
+ text-align: right;
40
+ }
41
+
42
  #crayon-te-table .crayon-tr-center td, #crayon-te-table .crayon-tr-center th {
43
  vertical-align: middle;
44
  }
139
  background: #EEE !important;
140
  }
141
 
 
 
 
 
142
  .qt_crayon_highlight {
143
  background-image: -ms-linear-gradient(bottom, #daf2ff, white) !important;
144
  background-image: -moz-linear-gradient(bottom, #daf2ff, white) !important;
157
 
158
  /* TinyMCE v4 */
159
  .mce_crayon_tinymce {
 
160
  padding: 0 !important;
161
  margin: 2px 3px !important;
162
  }
163
+ .mce-i-crayon_tinymce,
164
+ .mce_crayon_tinymce {
165
+ background: url(../images/crayon_tinymce.png) 0 0 !important;
166
+ }
167
 
168
  /* TinyMCE v3 - deprecated */
169
  a.mce_crayon_tinymce {
260
 
261
  .crayon-question {
262
  padding: 1px 4px !important;
 
263
  text-decoration: none !important;
264
+ color: #83b3cb !important;
265
  border-radius: 10px !important;
266
  height: 15px !important;
267
  width: 15px !important;
268
  }
269
 
270
+ .crayon-question:hover {
271
+ background: #83b3cb !important;
272
+ color: white !important;
273
+ height: 15px !important;
274
+ width: 15px !important;
275
+ }
276
+
277
  .crayon-setting {
278
 
279
  }
fonts/adobe-source-sans.css ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @font-face {
2
+ font-family: 'AdobeSourceSansSemibold';
3
+ src: url('adobe-source-sans/SourceSansPro-Semibold.eot');
4
+ src: url('adobe-source-sans/SourceSansPro-Semibold.eot?#iefix') format('embedded-opentype'),
5
+ url('adobe-source-sans/SourceSansPro-Semibold.otf.woff') format('woff'),
6
+ url('adobe-source-sans/SourceSansPro-Semibold.ttf.woff') format('truetype'),
7
+ url('adobe-source-sans/SourceSansPro-Semibold.svg#AdobeSourceSansSemibold') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+
12
+ .crayon-font-adobe-source-sans * {
13
+ font-family: AdobeSourceSans, 'AdobeSourceSansSemibold', 'Courier New', monospace !important;
14
+ }
fonts/adobe-source-sans/SourceSansPro-Semibold.eot ADDED
Binary file
fonts/adobe-source-sans/SourceSansPro-Semibold.otf.woff ADDED
Binary file
fonts/adobe-source-sans/SourceSansPro-Semibold.svg ADDED
@@ -0,0 +1,1117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <font horiz-adv-x="1000">
2
+ <!-- Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. -->
3
+ <font-face font-family="SourceSansPro-Semibold" units-per-em="1000" underline-position="-100" underline-thickness="50"/>
4
+ <missing-glyph horiz-adv-x="672" d="M84,0l504,0l0,660l-504,0 z M166,133l0,416l111,-209 z M395,340l110,209l0,-416 z M230,75l57,104l47,100l4,0l46,-100l56,-104 z M334,401l-46,94l-49,89l193,0l-48,-89l-46,-94z"/>
5
+ <glyph unicode=" " horiz-adv-x="205"/>
6
+ <glyph unicode="A" horiz-adv-x="558" d="M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
7
+ <glyph unicode="B" horiz-adv-x="597" d="M83,0l226,0C453,0 560,61 560,192C560,280 508,331 414,347l0,4C490,371 526,431 526,493C526,613 427,654 292,654l-209,0 z M199,383l0,181l85,0C369,564 412,539 412,479C412,418 373,383 282,383 z M199,90l0,210l98,0C395,300 447,268 447,200C447,126 393,90 297,90z"/>
8
+ <glyph unicode="C" horiz-adv-x="576" d="M49,325C49,108 179,-12 346,-12C428,-12 497,22 550,83l-65,71C448,113 406,89 348,89C238,89 168,179 168,328C168,475 244,565 352,565C402,565 439,544 472,511l65,72C496,627 430,666 351,666C183,666 49,539 49,325z"/>
9
+ <glyph unicode="D" horiz-adv-x="625" d="M83,0l181,0C458,0 576,113 576,330C576,546 458,654 258,654l-175,0 z M199,94l0,466l51,0C382,560 457,490 457,330C457,169 382,94 250,94z"/>
10
+ <glyph unicode="E" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0z"/>
11
+ <glyph unicode="F" horiz-adv-x="510" d="M83,0l116,0l0,273l238,0l0,98l-238,0l0,185l279,0l0,98l-395,0z"/>
12
+ <glyph unicode="G" horiz-adv-x="628" d="M49,325C49,108 180,-12 354,-12C444,-12 521,22 566,66l0,288l-228,0l0,-95l124,0l0,-141C441,99 405,89 368,89C237,89 168,179 168,328C168,475 246,565 362,565C423,565 459,543 492,511l64,72C515,625 451,666 361,666C184,666 49,539 49,325z"/>
13
+ <glyph unicode="H" horiz-adv-x="663" d="M83,0l116,0l0,290l265,0l0,-290l116,0l0,654l-116,0l0,-263l-265,0l0,263l-116,0z"/>
14
+ <glyph unicode="I" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0z"/>
15
+ <glyph unicode="J" horiz-adv-x="494" d="M24,99C65,26 128,-12 219,-12C356,-12 414,86 414,205l0,449l-116,0l0,-439C298,122 267,89 206,89C166,89 130,110 104,158z"/>
16
+ <glyph unicode="K" horiz-adv-x="597" d="M83,0l116,0l0,191l94,117l177,-308l128,0l-235,399l201,255l-129,0l-233,-297l-3,0l0,297l-116,0z"/>
17
+ <glyph unicode="L" horiz-adv-x="502" d="M83,0l388,0l0,98l-272,0l0,556l-116,0z"/>
18
+ <glyph unicode="M" horiz-adv-x="745" d="M83,0l107,0l0,299C190,360 181,447 175,507l4,0l52,-149l113,-297l54,0l113,297l53,149l4,0C562,447 553,360 553,299l0,-299l109,0l0,654l-128,0l-116,-322l-42,-124l-4,0l-43,124l-118,322l-128,0z"/>
19
+ <glyph unicode="N" horiz-adv-x="656" d="M83,0l111,0l0,286C194,359 184,438 179,507l4,0l67,-139l204,-368l119,0l0,654l-111,0l0,-284C462,297 472,214 477,147l-4,0l-67,139l-204,368l-119,0z"/>
20
+ <glyph unicode="O" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89z"/>
21
+ <glyph unicode="P" horiz-adv-x="592" d="M83,0l116,0l0,240l104,0C444,240 552,307 552,452C552,604 446,654 303,654l-220,0 z M199,333l0,228l95,0C389,561 438,534 438,452C438,372 391,333 294,333z"/>
22
+ <glyph unicode="Q" horiz-adv-x="674" d="M168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,177 440,83 337,83C234,83 168,177 168,330 z M629,-66C610,-72 587,-77 558,-77C495,-77 436,-56 406,-4C539,26 626,148 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,141 142,18 283,-7C325,-103 415,-171 545,-171C590,-171 628,-163 650,-153z"/>
23
+ <glyph unicode="R" horiz-adv-x="599" d="M199,561l93,0C381,561 430,535 430,460C430,386 381,348 292,348l-93,0 z M570,0l-156,273C492,300 544,360 544,460C544,606 440,654 304,654l-221,0l0,-654l116,0l0,256l100,0l141,-256z"/>
24
+ <glyph unicode="S" horiz-adv-x="545" d="M38,84C100,23 186,-12 274,-12C421,-12 509,76 509,182C509,277 454,326 377,359l-89,37C234,418 184,437 184,488C184,536 225,565 287,565C343,565 387,544 429,509l59,74C437,634 363,666 287,666C159,666 67,586 67,482C67,386 135,335 199,308l90,-39C348,244 390,227 390,173C390,122 350,89 276,89C216,89 153,119 106,163z"/>
25
+ <glyph unicode="T" horiz-adv-x="546" d="M215,0l116,0l0,556l189,0l0,98l-494,0l0,-98l189,0z"/>
26
+ <glyph unicode="U" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0z"/>
27
+ <glyph unicode="V" horiz-adv-x="536" d="M200,0l137,0l203,654l-119,0l-91,-329C310,251 295,187 273,112l-4,0C247,187 232,251 211,325l-92,329l-123,0z"/>
28
+ <glyph unicode="W" horiz-adv-x="800" d="M148,0l141,0l79,344C379,395 389,445 398,495l4,0C410,445 420,395 431,344l81,-344l144,0l125,654l-111,0l-57,-330C603,255 592,185 582,115l-4,0C563,185 549,256 534,324l-80,330l-101,0l-80,-330C258,255 244,184 230,115l-4,0C216,184 205,254 194,324l-57,330l-119,0z"/>
29
+ <glyph unicode="X" horiz-adv-x="541" d="M13,0l123,0l78,154C230,188 245,221 262,261l4,0C286,221 302,188 319,154l80,-154l129,0l-186,332l174,322l-123,0l-69,-145C309,479 296,448 280,409l-4,0C256,448 242,479 226,509l-72,145l-129,0l174,-317z"/>
30
+ <glyph unicode="Y" horiz-adv-x="501" d="M192,0l116,0l0,243l197,411l-121,0l-71,-167C294,438 274,393 253,343l-4,0C228,393 210,438 191,487l-71,167l-124,0l196,-411z"/>
31
+ <glyph unicode="Z" horiz-adv-x="540" d="M40,0l462,0l0,98l-319,0l317,486l0,70l-431,0l0,-98l287,0l-316,-486z"/>
32
+ <glyph unicode="a" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141z"/>
33
+ <glyph unicode="b" horiz-adv-x="564" d="M73,0l91,0l10,50l3,0C218,10 266,-12 311,-12C420,-12 521,85 521,254C521,405 450,503 327,503C277,503 226,478 185,442l3,82l0,182l-115,0 z M188,124l0,229C226,390 260,408 296,408C370,408 402,350 402,252C402,141 352,83 287,83C258,83 223,94 188,124z"/>
34
+ <glyph unicode="c" horiz-adv-x="462" d="M41,245C41,82 144,-12 278,-12C334,-12 393,10 439,51l-48,73C364,102 330,82 290,82C213,82 159,147 159,245C159,344 214,409 293,409C324,409 350,396 376,373l55,73C398,478 350,503 287,503C156,503 41,409 41,245z"/>
35
+ <glyph unicode="d" horiz-adv-x="564" d="M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,706l-115,0l0,-178l4,-79C342,482 307,503 251,503C144,503 43,405 43,245 z M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246z"/>
36
+ <glyph unicode="e" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289z"/>
37
+ <glyph unicode="f" horiz-adv-x="317" d="M346,701C324,710 291,718 256,718C140,718 93,644 93,542l0,-51l-66,-5l0,-86l66,0l0,-400l115,0l0,400l96,0l0,91l-96,0l0,53C208,601 230,627 270,627C287,627 306,623 324,615z"/>
38
+ <glyph unicode="g" horiz-adv-x="520" d="M136,-72C136,-49 148,-27 174,-7C193,-12 214,-14 241,-14l67,0C364,-14 395,-25 395,-63C395,-105 341,-142 262,-142C184,-142 136,-116 136,-72 z M40,-89C40,-175 127,-217 244,-217C404,-217 506,-141 506,-44C506,41 444,77 326,77l-87,0C179,77 159,94 159,122C159,144 168,156 183,169C205,160 229,156 250,156C354,156 436,214 436,323C436,357 424,387 408,406l90,0l0,85l-176,0C302,498 277,503 250,503C147,503 56,440 56,327C56,269 87,222 120,197l0,-4C92,173 66,140 66,102C66,62 85,36 110,20l0,-4C65,-12 40,-48 40,-89 z M250,228C202,228 164,264 164,327C164,389 202,424 250,424C298,424 335,388 335,327C335,264 297,228 250,228z"/>
39
+ <glyph unicode="h" horiz-adv-x="558" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 225,468 184,429l4,95l0,182l-115,0z"/>
40
+ <glyph unicode="i" horiz-adv-x="262" d="M131,577C172,577 202,604 202,642C202,681 172,708 131,708C90,708 60,681 60,642C60,604 90,577 131,577 z M73,0l115,0l0,491l-115,0z"/>
41
+ <glyph unicode="j" horiz-adv-x="263" d="M74,-27C74,-84 62,-115 18,-115C3,-115 -11,-111 -24,-107l-22,-86C-27,-200 -2,-206 34,-206C150,-206 190,-129 190,-25l0,516l-116,0 z M132,577C173,577 204,604 204,642C204,681 173,708 132,708C92,708 61,681 61,642C61,604 92,577 132,577z"/>
42
+ <glyph unicode="k" horiz-adv-x="522" d="M73,0l113,0l0,125l77,88l126,-213l125,0l-185,291l168,200l-126,0l-182,-226l-3,0l0,441l-113,0z"/>
43
+ <glyph unicode="l" horiz-adv-x="271" d="M73,126C73,41 103,-12 185,-12C212,-12 232,-8 246,-2l-15,86C222,82 218,82 213,82C201,82 188,92 188,120l0,586l-115,0z"/>
44
+ <glyph unicode="m" horiz-adv-x="843" d="M73,0l115,0l0,343C226,384 261,404 291,404C343,404 367,374 367,293l0,-293l115,0l0,343C520,384 554,404 585,404C636,404 660,374 660,293l0,-293l116,0l0,308C776,432 728,503 624,503C562,503 513,465 466,415C443,470 402,503 330,503C269,503 221,468 180,424l-4,0l-8,67l-95,0z"/>
45
+ <glyph unicode="n" horiz-adv-x="560" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 224,468 180,425l-4,0l-8,66l-95,0z"/>
46
+ <glyph unicode="o" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245z"/>
47
+ <glyph unicode="p" horiz-adv-x="564" d="M185,42C225,8 268,-12 311,-12C420,-12 521,85 521,253C521,405 450,503 328,503C274,503 221,474 180,439l-4,0l-8,52l-95,0l0,-685l115,0l0,154 z M188,124l0,229C226,390 260,408 296,408C370,408 402,350 402,252C402,141 352,83 287,83C258,83 224,94 188,124z"/>
48
+ <glyph unicode="q" horiz-adv-x="561" d="M43,245C43,83 122,-12 245,-12C295,-12 344,14 380,48l-4,-81l0,-161l115,0l0,685l-91,0l-10,-47l-3,0C346,484 306,503 251,503C144,503 43,405 43,245 z M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246z"/>
49
+ <glyph unicode="r" horiz-adv-x="373" d="M73,0l115,0l0,300C218,374 265,401 304,401C325,401 338,398 355,393l20,100C360,500 344,503 319,503C267,503 215,468 180,404l-4,0l-8,87l-95,0z"/>
50
+ <glyph unicode="s" horiz-adv-x="431" d="M24,56C72,17 143,-12 210,-12C334,-12 401,56 401,140C401,232 327,264 260,289C207,308 158,323 158,362C158,393 181,416 230,416C269,416 304,399 338,374l53,70C351,475 296,503 228,503C118,503 49,442 49,356C49,274 122,237 187,213C239,193 292,175 292,134C292,100 267,75 214,75C164,75 122,96 78,130z"/>
51
+ <glyph unicode="t" horiz-adv-x="361" d="M90,166C90,60 132,-12 246,-12C285,-12 319,-3 346,6l-20,85C312,85 292,80 275,80C228,80 206,108 206,166l0,234l125,0l0,91l-125,0l0,134l-96,0l-14,-134l-76,-5l0,-86l70,0z"/>
52
+ <glyph unicode="u" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0z"/>
53
+ <glyph unicode="v" horiz-adv-x="495" d="M183,0l133,0l167,491l-111,0l-78,-255C280,188 266,138 252,88l-4,0C235,138 220,188 207,236l-78,255l-117,0z"/>
54
+ <glyph unicode="w" horiz-adv-x="748" d="M154,0l132,0l56,228C353,274 362,320 371,372l4,0C386,320 394,275 405,229l57,-229l137,0l125,491l-108,0l-59,-255C548,189 540,143 531,95l-4,0C516,143 506,189 494,236l-65,255l-105,0l-64,-255C248,190 238,143 229,95l-4,0C216,143 209,189 199,236l-59,255l-116,0z"/>
55
+ <glyph unicode="x" horiz-adv-x="481" d="M14,0l120,0l52,97C200,127 215,156 229,184l4,0C250,156 267,126 283,97l60,-97l124,0l-156,243l145,248l-119,0l-47,-93C278,371 264,342 252,315l-4,0C233,342 217,371 203,398l-55,93l-124,0l146,-235z"/>
56
+ <glyph unicode="y" horiz-adv-x="495" d="M63,-102l-21,-90C60,-198 79,-202 106,-202C213,-202 264,-133 305,-22l178,513l-111,0l-74,-241C286,206 273,157 261,112l-4,0C242,158 228,207 214,250l-85,241l-117,0l193,-485l-9,-31C180,-74 150,-109 98,-109C86,-109 72,-105 63,-102z"/>
57
+ <glyph unicode="z" horiz-adv-x="443" d="M34,0l384,0l0,92l-239,0l231,338l0,61l-350,0l0,-91l206,0l-232,-338z"/>
58
+ <glyph unicode="&#xC0;" horiz-adv-x="558" d="M340,704l-84,116l-126,0l116,-116 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
59
+ <glyph unicode="&#xC1;" horiz-adv-x="558" d="M424,820l-126,0l-84,-116l93,0 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
60
+ <glyph unicode="&#xC2;" horiz-adv-x="558" d="M275,768l4,0l60,-64l90,0l-96,116l-112,0l-96,-116l90,0 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
61
+ <glyph unicode="&#xC3;" horiz-adv-x="558" d="M374,829C368,796 353,781 334,781C301,781 268,829 215,829C165,829 127,784 119,707l61,0C186,740 201,756 219,756C253,756 285,707 338,707C388,707 426,753 434,829 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
62
+ <glyph unicode="&#xC4;" horiz-adv-x="558" d="M370,708C404,708 429,733 429,767C429,802 404,827 370,827C335,827 310,802 310,767C310,733 335,708 370,708 z M184,708C219,708 244,733 244,767C244,802 219,827 184,827C149,827 124,802 124,767C124,733 149,708 184,708 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
63
+ <glyph unicode="&#x100;" horiz-adv-x="558" d="M410,800l-266,0l0,-76l266,0 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
64
+ <glyph unicode="&#x102;" horiz-adv-x="558" d="M341,820C335,791 316,766 277,766C237,766 218,791 212,820l-65,0C154,756 193,705 277,705C360,705 400,756 407,820 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
65
+ <glyph unicode="&#xC5;" horiz-adv-x="558" d="M277,838C301,838 320,820 320,791C320,761 301,744 277,744C252,744 232,761 232,791C232,820 252,838 277,838 z M277,698C337,698 380,734 380,791C380,847 337,884 277,884C216,884 174,847 174,791C174,734 216,698 277,698 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
66
+ <glyph unicode="&#x1CD;" horiz-adv-x="558" d="M333,704l96,116l-90,0l-60,-64l-4,0l-60,64l-90,0l96,-116 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
67
+ <glyph unicode="&#x1EA0;" horiz-adv-x="558" d="M277,-85C237,-85 209,-112 209,-150C209,-189 237,-216 277,-216C316,-216 345,-189 345,-150C345,-112 316,-85 277,-85 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M560,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0l51,-177z"/>
68
+ <glyph unicode="&#x1EA2;" horiz-adv-x="558" d="M245,694C312,702 370,730 370,793C370,845 323,876 217,879l-13,-61C260,815 285,803 285,780C285,759 263,749 235,743 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
69
+ <glyph unicode="&#x1EA4;" horiz-adv-x="558" d="M542,886l-93,0l-70,-116l68,0 z M275,762l4,0l57,-58l84,0l-93,110l-100,0l-94,-110l84,0 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
70
+ <glyph unicode="&#x1EA6;" horiz-adv-x="558" d="M488,770l-69,116l-94,0l95,-116 z M275,762l4,0l57,-58l84,0l-93,110l-100,0l-94,-110l84,0 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
71
+ <glyph unicode="&#x1EA8;" horiz-adv-x="558" d="M403,752C459,758 507,780 507,835C507,880 468,908 374,912l-12,-52C412,857 430,847 430,825C430,806 414,798 392,793 z M275,762l4,0l57,-58l84,0l-93,110l-100,0l-94,-110l84,0 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
72
+ <glyph unicode="&#x1EAA;" horiz-adv-x="558" d="M364,953C358,925 344,911 326,911C296,911 270,953 222,953C177,953 143,915 136,849l54,0C195,877 209,891 228,891C258,891 284,849 332,849C377,849 411,887 418,953 z M275,762l4,0l57,-58l84,0l-93,110l-100,0l-94,-110l84,0 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
73
+ <glyph unicode="&#x1EAC;" horiz-adv-x="558" d="M275,768l4,0l60,-64l90,0l-96,116l-112,0l-96,-116l90,0 z M277,-85C237,-85 209,-112 209,-150C209,-189 237,-216 277,-216C316,-216 345,-189 345,-150C345,-112 316,-85 277,-85 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M560,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0l51,-177z"/>
74
+ <glyph unicode="&#x1EAE;" horiz-adv-x="558" d="M395,917l-91,0l-69,-112l62,0 z M350,818C342,786 323,760 277,760C231,760 212,786 204,818l-56,0C155,755 195,705 277,705C359,705 399,755 406,818 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
75
+ <glyph unicode="&#x1EB0;" horiz-adv-x="558" d="M319,805l-69,112l-92,0l99,-112 z M350,818C342,786 323,760 277,760C231,760 212,786 204,818l-56,0C155,755 195,705 277,705C359,705 399,755 406,818 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
76
+ <glyph unicode="&#x1EB2;" horiz-adv-x="558" d="M249,803C305,810 353,831 353,886C353,932 314,960 220,963l-12,-51C258,908 276,898 276,876C276,857 260,849 238,844 z M350,818C342,786 323,760 277,760C231,760 212,786 204,818l-56,0C155,755 195,705 277,705C359,705 399,755 406,818 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
77
+ <glyph unicode="&#x1EB4;" horiz-adv-x="558" d="M364,953C358,925 344,911 326,911C296,911 270,953 222,953C177,953 143,915 136,849l54,0C195,877 209,891 228,891C258,891 284,849 332,849C377,849 411,887 418,953 z M148,818C155,755 195,705 277,705C359,705 399,755 406,818l-56,0C342,786 323,760 277,760C231,760 212,786 204,818 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M438,0l122,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0z"/>
78
+ <glyph unicode="&#x1EB6;" horiz-adv-x="558" d="M341,820C335,791 316,766 277,766C237,766 218,791 212,820l-65,0C154,756 193,705 277,705C360,705 400,756 407,820 z M277,-85C237,-85 209,-112 209,-150C209,-189 237,-216 277,-216C316,-216 345,-189 345,-150C345,-112 316,-85 277,-85 z M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M560,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0l51,-177z"/>
79
+ <glyph unicode="&#x104;" horiz-adv-x="558" d="M194,268l23,80C238,417 257,491 275,564l4,0C298,492 317,417 338,348l23,-80 z M558,-126C547,-135 534,-140 518,-140C495,-140 475,-126 475,-98C475,-58 510,-12 560,0l-213,654l-136,0l-213,-654l118,0l51,177l220,0l51,-177l29,0C434,-21 389,-69 389,-127C389,-186 436,-218 494,-218C525,-218 564,-204 586,-186z"/>
80
+ <glyph unicode="&#xC6;" horiz-adv-x="834" d="M246,261l51,105C328,430 358,498 390,565l4,0l0,-304 z M510,98l0,193l221,0l0,98l-221,0l0,167l263,0l0,98l-449,0l-327,-654l122,0l83,170l192,0l0,-170l389,0l0,98z"/>
81
+ <glyph unicode="&#xC7;" horiz-adv-x="576" d="M485,154C448,113 406,89 348,89C238,89 168,179 168,328C168,475 244,565 352,565C402,565 439,544 472,511l65,72C496,627 430,666 351,666C183,666 49,539 49,325C49,124 161,6 310,-10l-33,-65C320,-86 338,-100 338,-121C338,-148 302,-161 252,-167l10,-50C347,-211 423,-182 423,-119C423,-78 398,-58 364,-46l17,36C448,-2 505,31 550,83z"/>
82
+ <glyph unicode="&#x106;" horiz-adv-x="576" d="M49,325C49,108 179,-12 346,-12C428,-12 497,22 550,83l-65,71C448,113 406,89 348,89C238,89 168,179 168,328C168,475 244,565 352,565C402,565 439,544 472,511l65,72C496,627 430,666 351,666C183,666 49,539 49,325 z M484,820l-126,0l-84,-116l93,0z"/>
83
+ <glyph unicode="&#x108;" horiz-adv-x="576" d="M49,325C49,108 179,-12 346,-12C428,-12 497,22 550,83l-65,71C448,113 406,89 348,89C238,89 168,179 168,328C168,475 244,565 352,565C402,565 439,544 472,511l65,72C496,627 430,666 351,666C183,666 49,539 49,325 z M275,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
84
+ <glyph unicode="&#x10C;" horiz-adv-x="576" d="M49,325C49,108 179,-12 346,-12C428,-12 497,22 550,83l-65,71C448,113 406,89 348,89C238,89 168,179 168,328C168,475 244,565 352,565C402,565 439,544 472,511l65,72C496,627 430,666 351,666C183,666 49,539 49,325 z M399,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
85
+ <glyph unicode="&#x10A;" horiz-adv-x="576" d="M49,325C49,108 179,-12 346,-12C428,-12 497,22 550,83l-65,71C448,113 406,89 348,89C238,89 168,179 168,328C168,475 244,565 352,565C402,565 439,544 472,511l65,72C496,627 430,666 351,666C183,666 49,539 49,325 z M337,707C378,707 408,734 408,773C408,811 378,838 337,838C296,838 266,811 266,773C266,734 296,707 337,707z"/>
86
+ <glyph unicode="&#x10E;" horiz-adv-x="625" d="M83,0l181,0C458,0 576,113 576,330C576,546 458,654 258,654l-175,0 z M199,94l0,466l51,0C382,560 457,490 457,330C457,169 382,94 250,94 z M375,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
87
+ <glyph unicode="&#x1E0C;" horiz-adv-x="625" d="M83,0l181,0C458,0 576,113 576,330C576,546 458,654 258,654l-175,0 z M199,94l0,466l51,0C382,560 457,490 457,330C457,169 382,94 250,94 z M309,-216C348,-216 377,-189 377,-150C377,-112 348,-85 309,-85C269,-85 241,-112 241,-150C241,-189 269,-216 309,-216z"/>
88
+ <glyph unicode="&#x1E0E;" horiz-adv-x="625" d="M83,0l181,0C458,0 576,113 576,330C576,546 458,654 258,654l-175,0 z M199,94l0,466l51,0C382,560 457,490 457,330C457,169 382,94 250,94 z M439,-104l-261,0l0,-76l261,0z"/>
89
+ <glyph unicode="&#x110;" horiz-adv-x="649" d="M223,94l0,217l137,0l0,59l-137,0l0,190l51,0C405,560 481,490 481,330C481,169 405,94 274,94 z M107,654l0,-284l-77,-4l0,-55l77,0l0,-311l180,0C482,0 600,113 600,330C600,546 482,654 281,654z"/>
90
+ <glyph unicode="&#xC8;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M256,704l94,0l-85,116l-125,0z"/>
91
+ <glyph unicode="&#xC9;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M433,820l-125,0l-85,-116l94,0z"/>
92
+ <glyph unicode="&#xCA;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M224,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
93
+ <glyph unicode="&#x11A;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M348,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
94
+ <glyph unicode="&#xCB;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M194,708C228,708 253,733 253,767C253,802 228,827 194,827C159,827 134,802 134,767C134,733 159,708 194,708 z M379,708C414,708 439,733 439,767C439,802 414,827 379,827C344,827 320,802 320,767C320,733 344,708 379,708z"/>
95
+ <glyph unicode="&#x112;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M154,724l265,0l0,76l-265,0z"/>
96
+ <glyph unicode="&#x114;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M286,705C370,705 409,756 416,820l-65,0C345,791 326,766 286,766C247,766 228,791 222,820l-66,0C164,756 203,705 286,705z"/>
97
+ <glyph unicode="&#x116;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M286,707C327,707 358,734 358,773C358,811 327,838 286,838C246,838 215,811 215,773C215,734 246,707 286,707z"/>
98
+ <glyph unicode="&#x1EB8;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M295,-216C335,-216 363,-189 363,-150C363,-112 335,-85 295,-85C256,-85 227,-112 227,-150C227,-189 256,-216 295,-216z"/>
99
+ <glyph unicode="&#x1EBA;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M255,694C322,702 380,730 380,793C380,845 332,876 226,879l-12,-61C270,815 295,803 295,780C295,759 273,749 244,743z"/>
100
+ <glyph unicode="&#x1EBC;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M348,707C398,707 436,753 444,829l-60,0C377,796 362,781 344,781C310,781 278,829 225,829C175,829 137,784 129,707l60,0C196,740 210,756 229,756C262,756 295,707 348,707z"/>
101
+ <glyph unicode="&#x1EBE;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M389,770l68,0l94,116l-93,0 z M143,704l84,0l57,58l4,0l58,-58l84,0l-94,110l-100,0z"/>
102
+ <glyph unicode="&#x1EC0;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M428,886l-93,0l95,-116l68,0 z M143,704l84,0l57,58l4,0l58,-58l84,0l-94,110l-100,0z"/>
103
+ <glyph unicode="&#x1EC2;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M413,752C469,758 517,780 517,835C517,880 477,908 383,912l-11,-52C422,857 440,847 440,825C440,806 423,798 402,793 z M143,704l84,0l57,58l4,0l58,-58l84,0l-94,110l-100,0z"/>
104
+ <glyph unicode="&#x1EC4;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M143,704l84,0l57,58l4,0l58,-58l84,0l-94,110l-100,0 z M200,849C205,877 219,891 237,891C267,891 293,849 341,849C386,849 420,887 427,953l-54,0C368,925 354,911 335,911C305,911 280,953 232,953C186,953 152,915 146,849z"/>
105
+ <glyph unicode="&#x1EC6;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M224,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116 z M295,-216C335,-216 363,-189 363,-150C363,-112 335,-85 295,-85C256,-85 227,-112 227,-150C227,-189 256,-216 295,-216z"/>
106
+ <glyph unicode="&#x118;" horiz-adv-x="538" d="M83,0l301,0C348,-22 307,-69 307,-127C307,-186 354,-218 412,-218C443,-218 482,-204 505,-186l-29,60C465,-134 453,-140 438,-140C416,-140 394,-127 394,-98C394,-50 437,-4 482,0l5,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0z"/>
107
+ <glyph unicode="&#x11C;" horiz-adv-x="628" d="M49,325C49,108 180,-12 354,-12C444,-12 521,22 566,66l0,288l-228,0l0,-95l124,0l0,-141C441,99 405,89 368,89C237,89 168,179 168,328C168,475 246,565 362,565C423,565 459,543 492,511l64,72C515,625 451,666 361,666C184,666 49,539 49,325 z M298,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
108
+ <glyph unicode="&#x11E;" horiz-adv-x="628" d="M49,325C49,108 180,-12 354,-12C444,-12 521,22 566,66l0,288l-228,0l0,-95l124,0l0,-141C441,99 405,89 368,89C237,89 168,179 168,328C168,475 246,565 362,565C423,565 459,543 492,511l64,72C515,625 451,666 361,666C184,666 49,539 49,325 z M360,705C444,705 483,756 490,820l-65,0C419,791 400,766 360,766C321,766 302,791 296,820l-66,0C238,756 277,705 360,705z"/>
109
+ <glyph unicode="&#x120;" horiz-adv-x="628" d="M49,325C49,108 180,-12 354,-12C444,-12 521,22 566,66l0,288l-228,0l0,-95l124,0l0,-141C441,99 405,89 368,89C237,89 168,179 168,328C168,475 246,565 362,565C423,565 459,543 492,511l64,72C515,625 451,666 361,666C184,666 49,539 49,325 z M360,707C401,707 432,734 432,773C432,811 401,838 360,838C320,838 289,811 289,773C289,734 320,707 360,707z"/>
110
+ <glyph unicode="&#x122;" horiz-adv-x="628" d="M49,325C49,108 180,-12 354,-12C444,-12 521,22 566,66l0,288l-228,0l0,-95l124,0l0,-141C441,99 405,89 368,89C237,89 168,179 168,328C168,475 246,565 362,565C423,565 459,543 492,511l64,72C515,625 451,666 361,666C184,666 49,539 49,325 z M323,-45l-23,-46C329,-98 347,-109 347,-132C347,-156 312,-167 262,-173l9,-50C356,-217 432,-188 432,-125C432,-78 402,-54 323,-45z"/>
111
+ <glyph unicode="&#x1E6;" horiz-adv-x="628" d="M49,325C49,108 180,-12 354,-12C444,-12 521,22 566,66l0,288l-228,0l0,-95l124,0l0,-141C441,99 405,89 368,89C237,89 168,179 168,328C168,475 246,565 362,565C423,565 459,543 492,511l64,72C515,625 451,666 361,666C184,666 49,539 49,325 z M422,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
112
+ <glyph unicode="&#x1E20;" horiz-adv-x="628" d="M49,325C49,108 180,-12 354,-12C444,-12 521,22 566,66l0,288l-228,0l0,-95l124,0l0,-141C441,99 405,89 368,89C237,89 168,179 168,328C168,475 246,565 362,565C423,565 459,543 492,511l64,72C515,625 451,666 361,666C184,666 49,539 49,325 z M228,724l265,0l0,76l-265,0z"/>
113
+ <glyph unicode="&#xE000;" horiz-adv-x="628" d="M49,325C49,108 180,-12 354,-12C444,-12 521,22 566,66l0,288l-228,0l0,-95l124,0l0,-141C441,99 405,89 368,89C237,89 168,179 168,328C168,475 246,565 362,565C423,565 459,543 492,511l64,72C515,625 451,666 361,666C184,666 49,539 49,325 z M422,707C472,707 510,753 518,829l-60,0C451,796 436,781 418,781C384,781 352,829 299,829C249,829 211,784 203,707l60,0C270,740 284,756 303,756C336,756 369,707 422,707z"/>
114
+ <glyph unicode="&#x124;" horiz-adv-x="663" d="M83,0l116,0l0,290l265,0l0,-290l116,0l0,654l-116,0l0,-263l-265,0l0,263l-116,0 z M269,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
115
+ <glyph unicode="&#x1E24;" horiz-adv-x="663" d="M83,0l116,0l0,290l265,0l0,-290l116,0l0,654l-116,0l0,-263l-265,0l0,263l-116,0 z M331,-216C370,-216 399,-189 399,-150C399,-112 370,-85 331,-85C291,-85 263,-112 263,-150C263,-189 291,-216 331,-216z"/>
116
+ <glyph unicode="&#x1E2A;" horiz-adv-x="663" d="M83,0l116,0l0,290l265,0l0,-290l116,0l0,654l-116,0l0,-263l-265,0l0,263l-116,0 z M331,-208C420,-208 460,-141 464,-75l-67,0C392,-111 372,-142 331,-142C290,-142 270,-111 265,-75l-67,0C202,-141 241,-208 331,-208z"/>
117
+ <glyph unicode="&#x126;" horiz-adv-x="700" d="M484,391l-265,0l0,98l265,0 z M671,548l-71,0l0,106l-116,0l0,-106l-265,0l0,106l-116,0l0,-106l-75,-5l0,-54l75,0l0,-489l116,0l0,290l265,0l0,-290l116,0l0,489l71,0z"/>
118
+ <glyph unicode="&#xCC;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M111,704l93,0l-84,116l-126,0z"/>
119
+ <glyph unicode="&#xCD;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M288,820l-126,0l-84,-116l94,0z"/>
120
+ <glyph unicode="&#xCE;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M79,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
121
+ <glyph unicode="&#x128;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M203,707C253,707 291,753 299,829l-61,0C232,796 217,781 199,781C165,781 133,829 80,829C30,829 -8,784 -16,707l60,0C50,740 65,756 84,756C117,756 150,707 203,707z"/>
122
+ <glyph unicode="&#xCF;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M48,708C83,708 108,733 108,767C108,802 83,827 48,827C14,827 -11,802 -11,767C-11,733 14,708 48,708 z M234,708C269,708 294,733 294,767C294,802 269,827 234,827C199,827 174,802 174,767C174,733 199,708 234,708z"/>
123
+ <glyph unicode="&#x12A;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M8,724l266,0l0,76l-266,0z"/>
124
+ <glyph unicode="&#x130;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M141,707C182,707 212,734 212,773C212,811 182,838 141,838C100,838 70,811 70,773C70,734 100,707 141,707z"/>
125
+ <glyph unicode="&#x1CF;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M203,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
126
+ <glyph unicode="&#x1EC8;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M110,694C176,702 235,730 235,793C235,845 187,876 81,879l-13,-61C125,815 150,803 150,780C150,759 128,749 99,743z"/>
127
+ <glyph unicode="&#x1ECA;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M142,-216C181,-216 210,-189 210,-150C210,-112 181,-85 142,-85C102,-85 74,-112 74,-150C74,-189 102,-216 142,-216z"/>
128
+ <glyph unicode="&#x12E;" horiz-adv-x="282" d="M83,0l30,0C83,-25 43,-66 43,-127C43,-186 90,-218 148,-218C179,-218 218,-204 240,-186l-28,60C202,-134 188,-140 173,-140C152,-140 129,-127 129,-98C129,-61 152,-27 199,0l0,654l-116,0z"/>
129
+ <glyph unicode="&#x134;" horiz-adv-x="494" d="M24,99C65,26 128,-12 219,-12C356,-12 414,86 414,205l0,449l-116,0l0,-439C298,122 267,89 206,89C166,89 130,110 104,158 z M292,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
130
+ <glyph unicode="&#x136;" horiz-adv-x="597" d="M83,0l116,0l0,191l94,117l177,-308l128,0l-235,399l201,255l-129,0l-233,-297l-3,0l0,297l-116,0 z M296,-45l-23,-46C302,-98 320,-109 320,-132C320,-156 285,-167 235,-173l9,-50C330,-217 406,-188 406,-125C406,-78 375,-54 296,-45z"/>
131
+ <glyph unicode="&#x139;" horiz-adv-x="502" d="M83,0l388,0l0,98l-272,0l0,556l-116,0 z M291,820l-125,0l-85,-116l94,0z"/>
132
+ <glyph unicode="&#x13D;" horiz-adv-x="502" d="M83,0l388,0l0,98l-272,0l0,556l-116,0 z M395,512l19,154l2,63l-77,0l4,-217z"/>
133
+ <glyph unicode="&#x13B;" horiz-adv-x="502" d="M83,0l388,0l0,98l-272,0l0,556l-116,0 z M257,-45l-24,-46C263,-98 281,-109 281,-132C281,-156 245,-167 195,-173l10,-50C290,-217 366,-188 366,-125C366,-78 335,-54 257,-45z"/>
134
+ <glyph unicode="&#x13F;" horiz-adv-x="502" d="M83,0l388,0l0,98l-272,0l0,556l-116,0 z M319,327C319,282 352,249 394,249C436,249 468,282 468,327C468,372 436,405 394,405C352,405 319,372 319,327z"/>
135
+ <glyph unicode="&#x1E36;" horiz-adv-x="502" d="M83,0l388,0l0,98l-272,0l0,556l-116,0 z M289,-216C329,-216 357,-189 357,-150C357,-112 329,-85 289,-85C249,-85 221,-112 221,-150C221,-189 249,-216 289,-216z"/>
136
+ <glyph unicode="&#x1E38;" horiz-adv-x="502" d="M83,0l388,0l0,98l-272,0l0,556l-116,0 z M12,724l265,0l0,76l-265,0 z M289,-216C329,-216 357,-189 357,-150C357,-112 329,-85 289,-85C249,-85 221,-112 221,-150C221,-189 249,-216 289,-216z"/>
137
+ <glyph unicode="&#x1E3A;" horiz-adv-x="502" d="M83,0l388,0l0,98l-272,0l0,556l-116,0 z M419,-104l-261,0l0,-76l261,0z"/>
138
+ <glyph unicode="&#x141;" horiz-adv-x="507" d="M206,98l0,180l179,97l0,91l-179,-97l0,285l-116,0l0,-338l-78,-45l0,-91l78,45l0,-225l387,0l0,98z"/>
139
+ <glyph unicode="&#x1E42;" horiz-adv-x="745" d="M83,0l107,0l0,299C190,360 181,447 175,507l4,0l52,-149l113,-297l54,0l113,297l53,149l4,0C562,447 553,360 553,299l0,-299l109,0l0,654l-128,0l-116,-322l-42,-124l-4,0l-43,124l-118,322l-128,0 z M374,-216C414,-216 442,-189 442,-150C442,-112 414,-85 374,-85C334,-85 306,-112 306,-150C306,-189 334,-216 374,-216z"/>
140
+ <glyph unicode="&#x143;" horiz-adv-x="656" d="M83,0l111,0l0,286C194,359 184,438 179,507l4,0l67,-139l204,-368l119,0l0,654l-111,0l0,-284C462,297 472,214 477,147l-4,0l-67,139l-204,368l-119,0 z M477,820l-126,0l-84,-116l93,0z"/>
141
+ <glyph unicode="&#x147;" horiz-adv-x="656" d="M83,0l111,0l0,286C194,359 184,438 179,507l4,0l67,-139l204,-368l119,0l0,654l-111,0l0,-284C462,297 472,214 477,147l-4,0l-67,139l-204,368l-119,0 z M392,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
142
+ <glyph unicode="&#xD1;" horiz-adv-x="656" d="M83,0l111,0l0,286C194,359 184,438 179,507l4,0l67,-139l204,-368l119,0l0,654l-111,0l0,-284C462,297 472,214 477,147l-4,0l-67,139l-204,368l-119,0 z M392,707C442,707 480,753 488,829l-61,0C421,796 406,781 388,781C354,781 322,829 268,829C218,829 180,784 172,707l61,0C239,740 254,756 272,756C306,756 338,707 392,707z"/>
143
+ <glyph unicode="&#x145;" horiz-adv-x="656" d="M83,0l111,0l0,286C194,359 184,438 179,507l4,0l67,-139l204,-368l119,0l0,654l-111,0l0,-284C462,297 472,214 477,147l-4,0l-67,139l-204,368l-119,0 z M304,-45l-24,-46C310,-98 328,-109 328,-132C328,-156 292,-167 242,-173l10,-50C337,-217 413,-188 413,-125C413,-78 382,-54 304,-45z"/>
144
+ <glyph unicode="&#x1E44;" horiz-adv-x="656" d="M83,0l111,0l0,286C194,359 184,438 179,507l4,0l67,-139l204,-368l119,0l0,654l-111,0l0,-284C462,297 472,214 477,147l-4,0l-67,139l-204,368l-119,0 z M330,707C371,707 401,734 401,773C401,811 371,838 330,838C289,838 259,811 259,773C259,734 289,707 330,707z"/>
145
+ <glyph unicode="&#x1E46;" horiz-adv-x="656" d="M83,0l111,0l0,286C194,359 184,438 179,507l4,0l67,-139l204,-368l119,0l0,654l-111,0l0,-284C462,297 472,214 477,147l-4,0l-67,139l-204,368l-119,0 z M336,-216C376,-216 404,-189 404,-150C404,-112 376,-85 336,-85C296,-85 268,-112 268,-150C268,-189 296,-216 336,-216z"/>
146
+ <glyph unicode="&#x1E48;" horiz-adv-x="656" d="M83,0l111,0l0,286C194,359 184,438 179,507l4,0l67,-139l204,-368l119,0l0,654l-111,0l0,-284C462,297 472,214 477,147l-4,0l-67,139l-204,368l-119,0 z M466,-104l-261,0l0,-76l261,0z"/>
147
+ <glyph unicode="&#xD2;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M307,704l93,0l-84,116l-126,0z"/>
148
+ <glyph unicode="&#xD3;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M484,820l-126,0l-84,-116l94,0z"/>
149
+ <glyph unicode="&#xD4;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M275,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
150
+ <glyph unicode="&#xD5;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M399,707C449,707 487,753 495,829l-61,0C428,796 413,781 395,781C361,781 329,829 276,829C226,829 188,784 180,707l60,0C246,740 261,756 280,756C313,756 346,707 399,707z"/>
151
+ <glyph unicode="&#xD6;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M244,708C279,708 304,733 304,767C304,802 279,827 244,827C210,827 185,802 185,767C185,733 210,708 244,708 z M430,708C465,708 490,733 490,767C490,802 465,827 430,827C395,827 370,802 370,767C370,733 395,708 430,708z"/>
152
+ <glyph unicode="&#x14C;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M204,724l266,0l0,76l-266,0z"/>
153
+ <glyph unicode="&#x150;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M294,704l86,116l-102,0l-64,-116 z M383,704l79,0l87,116l-102,0z"/>
154
+ <glyph unicode="&#x1D1;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M399,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
155
+ <glyph unicode="&#x1ECC;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M337,-216C377,-216 405,-189 405,-150C405,-112 377,-85 337,-85C298,-85 269,-112 269,-150C269,-189 298,-216 337,-216z"/>
156
+ <glyph unicode="&#x1ECE;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M306,694C372,702 431,730 431,793C431,845 383,876 277,879l-13,-61C321,815 346,803 346,780C346,759 324,749 295,743z"/>
157
+ <glyph unicode="&#x1ED0;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M439,770l68,0l95,116l-93,0 z M194,704l84,0l57,58l4,0l58,-58l84,0l-94,110l-100,0z"/>
158
+ <glyph unicode="&#x1ED2;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M479,886l-93,0l95,-116l68,0 z M194,704l84,0l57,58l4,0l58,-58l84,0l-94,110l-100,0z"/>
159
+ <glyph unicode="&#x1ED4;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M464,752C520,758 568,780 568,835C568,880 528,908 434,912l-11,-52C473,857 491,847 491,825C491,806 474,798 452,793 z M194,704l84,0l57,58l4,0l58,-58l84,0l-94,110l-100,0z"/>
160
+ <glyph unicode="&#x1ED6;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M194,704l84,0l57,58l4,0l58,-58l84,0l-94,110l-100,0 z M250,849C256,877 270,891 288,891C318,891 344,849 392,849C437,849 471,887 478,953l-54,0C419,925 405,911 386,911C356,911 330,953 282,953C237,953 203,915 196,849z"/>
161
+ <glyph unicode="&#x1ED8;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M275,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116 z M337,-216C377,-216 405,-189 405,-150C405,-112 377,-85 337,-85C298,-85 269,-112 269,-150C269,-189 298,-216 337,-216z"/>
162
+ <glyph unicode="&#xD8;" horiz-adv-x="674" d="M489,450C501,417 508,376 508,330C508,183 442,89 339,89C299,89 264,103 237,130 z M192,199C178,235 170,280 170,330C170,476 236,565 339,565C382,565 418,550 446,522 z M640,642l-62,48l-64,-82C467,646 407,666 339,666C168,666 50,541 50,330C50,236 73,158 114,100l-69,-88l61,-48l62,79C215,7 273,-12 339,-12C509,-12 627,118 627,330C627,420 606,494 568,550z"/>
163
+ <glyph unicode="&#x152;" horiz-adv-x="859" d="M49,330C49,113 179,0 371,0l437,0l0,98l-272,0l0,193l220,0l0,98l-220,0l0,167l262,0l0,98l-421,0C179,654 49,546 49,330 z M168,330C168,492 249,560 384,560l36,0l0,-466l-36,0C249,94 168,168 168,330z"/>
164
+ <glyph unicode="&#x1A0;" horiz-adv-x="674" d="M339,89C236,89 170,183 170,330C170,476 236,565 339,565C442,565 508,476 508,330C508,183 442,89 339,89 z M529,742C537,730 544,715 544,698C544,661 520,644 474,635C435,655 389,666 339,666C168,666 50,541 50,330C50,118 168,-12 339,-12C509,-12 627,118 627,330C627,445 592,535 532,593C594,610 635,645 635,706C635,735 623,760 609,778z"/>
165
+ <glyph unicode="&#x1EDA;" horiz-adv-x="674" d="M484,820l-126,0l-84,-116l94,0 z M339,89C236,89 170,183 170,330C170,476 236,565 339,565C442,565 508,476 508,330C508,183 442,89 339,89 z M529,742C537,730 544,715 544,698C544,661 520,644 474,635C435,655 389,666 339,666C168,666 50,541 50,330C50,118 168,-12 339,-12C509,-12 627,118 627,330C627,445 592,535 532,593C594,610 635,645 635,706C635,735 623,760 609,778z"/>
166
+ <glyph unicode="&#x1EDC;" horiz-adv-x="674" d="M400,704l-84,116l-126,0l117,-116 z M339,89C236,89 170,183 170,330C170,476 236,565 339,565C442,565 508,476 508,330C508,183 442,89 339,89 z M529,742C537,730 544,715 544,698C544,661 520,644 474,635C435,655 389,666 339,666C168,666 50,541 50,330C50,118 168,-12 339,-12C509,-12 627,118 627,330C627,445 592,535 532,593C594,610 635,645 635,706C635,735 623,760 609,778z"/>
167
+ <glyph unicode="&#x1EDE;" horiz-adv-x="674" d="M306,694C372,702 431,730 431,793C431,845 383,876 277,879l-13,-61C321,815 346,803 346,780C346,759 324,749 295,743 z M339,89C236,89 170,183 170,330C170,476 236,565 339,565C442,565 508,476 508,330C508,183 442,89 339,89 z M529,742C537,730 544,715 544,698C544,661 520,644 474,635C435,655 389,666 339,666C168,666 50,541 50,330C50,118 168,-12 339,-12C509,-12 627,118 627,330C627,445 592,535 532,593C594,610 635,645 635,706C635,735 623,760 609,778z"/>
168
+ <glyph unicode="&#x1EE0;" horiz-adv-x="674" d="M434,829C428,796 413,781 395,781C361,781 329,829 276,829C226,829 188,784 180,707l60,0C246,740 261,756 280,756C313,756 346,707 399,707C449,707 487,753 495,829 z M339,89C236,89 170,183 170,330C170,476 236,565 339,565C442,565 508,476 508,330C508,183 442,89 339,89 z M529,742C537,730 544,715 544,698C544,661 520,644 474,635C435,655 389,666 339,666C168,666 50,541 50,330C50,118 168,-12 339,-12C509,-12 627,118 627,330C627,445 592,535 532,593C594,610 635,645 635,706C635,735 623,760 609,778z"/>
169
+ <glyph unicode="&#x1EE2;" horiz-adv-x="674" d="M337,-85C298,-85 269,-112 269,-150C269,-189 298,-216 337,-216C377,-216 405,-189 405,-150C405,-112 377,-85 337,-85 z M339,89C236,89 170,183 170,330C170,476 236,565 339,565C442,565 508,476 508,330C508,183 442,89 339,89 z M529,742C537,730 544,715 544,698C544,661 520,644 474,635C435,655 389,666 339,666C168,666 50,541 50,330C50,118 168,-12 339,-12C509,-12 627,118 627,330C627,445 592,535 532,593C594,610 635,645 635,706C635,735 623,760 609,778z"/>
170
+ <glyph unicode="&#x1EA;" horiz-adv-x="674" d="M259,-127C259,-186 306,-218 364,-218C395,-218 434,-204 457,-186l-29,60C417,-134 405,-140 390,-140C368,-140 346,-127 346,-98C346,-68 368,-29 420,-6C550,53 626,148 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,127 154,-2 322,-11C289,-38 259,-79 259,-127 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89z"/>
171
+ <glyph unicode="&#x154;" horiz-adv-x="599" d="M449,820l-126,0l-84,-116l93,0 z M199,561l93,0C381,561 430,535 430,460C430,386 381,348 292,348l-93,0 z M570,0l-156,273C492,300 544,360 544,460C544,606 440,654 304,654l-221,0l0,-654l116,0l0,256l100,0l141,-256z"/>
172
+ <glyph unicode="&#x158;" horiz-adv-x="599" d="M358,704l96,116l-90,0l-60,-64l-4,0l-60,64l-90,0l96,-116 z M199,561l93,0C381,561 430,535 430,460C430,386 381,348 292,348l-93,0 z M570,0l-156,273C492,300 544,360 544,460C544,606 440,654 304,654l-221,0l0,-654l116,0l0,256l100,0l141,-256z"/>
173
+ <glyph unicode="&#x156;" horiz-adv-x="599" d="M263,-91C292,-98 310,-109 310,-132C310,-156 274,-167 224,-173l10,-50C319,-217 395,-188 395,-125C395,-78 365,-54 286,-45 z M199,561l93,0C381,561 430,535 430,460C430,386 381,348 292,348l-93,0 z M414,273C492,300 544,360 544,460C544,606 440,654 304,654l-221,0l0,-654l116,0l0,256l100,0l141,-256l130,0z"/>
174
+ <glyph unicode="&#x1E5A;" horiz-adv-x="599" d="M318,-85C279,-85 250,-112 250,-150C250,-189 279,-216 318,-216C358,-216 386,-189 386,-150C386,-112 358,-85 318,-85 z M199,561l93,0C381,561 430,535 430,460C430,386 381,348 292,348l-93,0 z M414,273C492,300 544,360 544,460C544,606 440,654 304,654l-221,0l0,-654l116,0l0,256l100,0l141,-256l130,0z"/>
175
+ <glyph unicode="&#x1E5C;" horiz-adv-x="599" d="M435,800l-266,0l0,-76l266,0 z M318,-85C279,-85 250,-112 250,-150C250,-189 279,-216 318,-216C358,-216 386,-189 386,-150C386,-112 358,-85 318,-85 z M199,561l93,0C381,561 430,535 430,460C430,386 381,348 292,348l-93,0 z M414,273C492,300 544,360 544,460C544,606 440,654 304,654l-221,0l0,-654l116,0l0,256l100,0l141,-256l130,0z"/>
176
+ <glyph unicode="&#x1E5E;" horiz-adv-x="599" d="M199,561l93,0C381,561 430,535 430,460C430,386 381,348 292,348l-93,0 z M199,256l100,0l141,-256l130,0l-156,273C492,300 544,360 544,460C544,606 440,654 304,654l-221,0l0,-654l116,0 z M187,-180l262,0l0,76l-262,0z"/>
177
+ <glyph unicode="&#x15A;" horiz-adv-x="545" d="M38,84C100,23 186,-12 274,-12C421,-12 509,76 509,182C509,277 454,326 377,359l-89,37C234,418 184,437 184,488C184,536 225,565 287,565C343,565 387,544 429,509l59,74C437,634 363,666 287,666C159,666 67,586 67,482C67,386 135,335 199,308l90,-39C348,244 390,227 390,173C390,122 350,89 276,89C216,89 153,119 106,163 z M432,820l-126,0l-84,-116l94,0z"/>
178
+ <glyph unicode="&#x15C;" horiz-adv-x="545" d="M38,84C100,23 186,-12 274,-12C421,-12 509,76 509,182C509,277 454,326 377,359l-89,37C234,418 184,437 184,488C184,536 225,565 287,565C343,565 387,544 429,509l59,74C437,634 363,666 287,666C159,666 67,586 67,482C67,386 135,335 199,308l90,-39C348,244 390,227 390,173C390,122 350,89 276,89C216,89 153,119 106,163 z M223,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
179
+ <glyph unicode="&#x160;" horiz-adv-x="545" d="M38,84C100,23 186,-12 274,-12C421,-12 509,76 509,182C509,277 454,326 377,359l-89,37C234,418 184,437 184,488C184,536 225,565 287,565C343,565 387,544 429,509l59,74C437,634 363,666 287,666C159,666 67,586 67,482C67,386 135,335 199,308l90,-39C348,244 390,227 390,173C390,122 350,89 276,89C216,89 153,119 106,163 z M347,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
180
+ <glyph unicode="&#x15E;" horiz-adv-x="545" d="M288,396C234,418 184,437 184,488C184,536 225,565 287,565C343,565 387,544 429,509l59,74C437,634 363,666 287,666C159,666 67,586 67,482C67,386 135,335 199,308l90,-39C348,244 390,227 390,173C390,122 350,89 276,89C216,89 153,119 106,163l-68,-79C92,31 164,-3 240,-10l-33,-65C250,-86 268,-100 268,-121C268,-148 232,-161 182,-167l10,-50C277,-211 353,-182 353,-119C353,-78 327,-58 294,-46l17,36C436,3 509,85 509,182C509,277 454,326 377,359z"/>
181
+ <glyph unicode="&#x218;" horiz-adv-x="545" d="M38,84C100,23 186,-12 274,-12C421,-12 509,76 509,182C509,277 454,326 377,359l-89,37C234,418 184,437 184,488C184,536 225,565 287,565C343,565 387,544 429,509l59,74C437,634 363,666 287,666C159,666 67,586 67,482C67,386 135,335 199,308l90,-39C348,244 390,227 390,173C390,122 350,89 276,89C216,89 153,119 106,163 z M244,-45l-24,-46C250,-98 268,-109 268,-132C268,-156 232,-167 182,-173l10,-50C277,-217 353,-188 353,-125C353,-78 322,-54 244,-45z"/>
182
+ <glyph unicode="&#x1E60;" horiz-adv-x="545" d="M38,84C100,23 186,-12 274,-12C421,-12 509,76 509,182C509,277 454,326 377,359l-89,37C234,418 184,437 184,488C184,536 225,565 287,565C343,565 387,544 429,509l59,74C437,634 363,666 287,666C159,666 67,586 67,482C67,386 135,335 199,308l90,-39C348,244 390,227 390,173C390,122 350,89 276,89C216,89 153,119 106,163 z M285,707C326,707 356,734 356,773C356,811 326,838 285,838C244,838 214,811 214,773C214,734 244,707 285,707z"/>
183
+ <glyph unicode="&#x1E62;" horiz-adv-x="545" d="M38,84C100,23 186,-12 274,-12C421,-12 509,76 509,182C509,277 454,326 377,359l-89,37C234,418 184,437 184,488C184,536 225,565 287,565C343,565 387,544 429,509l59,74C437,634 363,666 287,666C159,666 67,586 67,482C67,386 135,335 199,308l90,-39C348,244 390,227 390,173C390,122 350,89 276,89C216,89 153,119 106,163 z M276,-216C316,-216 344,-189 344,-150C344,-112 316,-85 276,-85C236,-85 208,-112 208,-150C208,-189 236,-216 276,-216z"/>
184
+ <glyph unicode="&#x1E9E;" horiz-adv-x="686" d="M86,0l116,0l0,395C202,514 255,571 351,571C411,571 451,539 470,501l-123,-139l8,-70C486,270 526,226 526,175C526,121 492,83 436,83C397,83 363,97 328,134l-63,-72C304,21 367,-12 448,-12C572,-12 645,69 645,174C645,271 582,331 464,360l123,137C554,598 475,666 354,666C176,666 86,564 86,413z"/>
185
+ <glyph unicode="&#x164;" horiz-adv-x="546" d="M215,0l116,0l0,556l189,0l0,98l-494,0l0,-98l189,0 z M335,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
186
+ <glyph unicode="&#x162;" horiz-adv-x="546" d="M331,0l0,556l189,0l0,98l-494,0l0,-98l189,0l0,-556l26,0l-38,-75C246,-86 264,-100 264,-121C264,-148 228,-161 178,-167l10,-50C273,-211 349,-182 349,-119C349,-78 324,-58 290,-46l22,46z"/>
187
+ <glyph unicode="&#x21A;" horiz-adv-x="546" d="M215,0l116,0l0,556l189,0l0,98l-494,0l0,-98l189,0 z M241,-45l-23,-46C247,-98 265,-109 265,-132C265,-156 230,-167 180,-173l9,-50C274,-217 350,-188 350,-125C350,-78 320,-54 241,-45z"/>
188
+ <glyph unicode="&#x1E6C;" horiz-adv-x="546" d="M215,0l116,0l0,556l189,0l0,98l-494,0l0,-98l189,0 z M274,-216C313,-216 342,-189 342,-150C342,-112 313,-85 274,-85C234,-85 206,-112 206,-150C206,-189 234,-216 274,-216z"/>
189
+ <glyph unicode="&#x1E6E;" horiz-adv-x="546" d="M215,0l116,0l0,556l189,0l0,98l-494,0l0,-98l189,0 z M404,-104l-262,0l0,-76l262,0z"/>
190
+ <glyph unicode="&#xD9;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M297,704l94,0l-85,116l-125,0z"/>
191
+ <glyph unicode="&#xDA;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M474,820l-125,0l-85,-116l94,0z"/>
192
+ <glyph unicode="&#xDB;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M266,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
193
+ <glyph unicode="&#x168;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M389,707C439,707 477,753 485,829l-60,0C418,796 404,781 385,781C352,781 319,829 266,829C216,829 178,784 170,707l60,0C237,740 252,756 270,756C304,756 336,707 389,707z"/>
194
+ <glyph unicode="&#xDC;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M235,708C270,708 294,733 294,767C294,802 270,827 235,827C200,827 175,802 175,767C175,733 200,708 235,708 z M420,708C455,708 480,733 480,767C480,802 455,827 420,827C386,827 361,802 361,767C361,733 386,708 420,708z"/>
195
+ <glyph unicode="&#x16A;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M195,724l265,0l0,76l-265,0z"/>
196
+ <glyph unicode="&#x16C;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M328,705C411,705 450,756 458,820l-66,0C386,791 367,766 328,766C288,766 269,791 263,820l-65,0C205,756 244,705 328,705z"/>
197
+ <glyph unicode="&#x16E;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M328,698C388,698 431,734 431,791C431,847 388,884 328,884C267,884 224,847 224,791C224,734 267,698 328,698 z M328,744C303,744 283,761 283,791C283,820 303,838 328,838C351,838 371,820 371,791C371,761 351,744 328,744z"/>
198
+ <glyph unicode="&#x170;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M284,704l86,116l-101,0l-65,-116 z M373,704l80,0l86,116l-101,0z"/>
199
+ <glyph unicode="&#x1D3;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M390,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
200
+ <glyph unicode="&#x1D5;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M195,866l265,0l0,58l-265,0 z M235,708C266,708 288,730 288,761C288,792 266,815 235,815C204,815 181,792 181,761C181,730 204,708 235,708 z M420,708C452,708 474,730 474,761C474,792 452,815 420,815C389,815 367,792 367,761C367,730 389,708 420,708z"/>
201
+ <glyph unicode="&#x1D7;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M264,846l93,0l115,116l-122,0 z M235,708C266,708 288,730 288,761C288,792 266,815 235,815C204,815 181,792 181,761C181,730 204,708 235,708 z M420,708C452,708 474,730 474,761C474,792 452,815 420,815C389,815 367,792 367,761C367,730 389,708 420,708z"/>
202
+ <glyph unicode="&#x1D9;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M235,708C266,708 288,730 288,761C288,792 266,815 235,815C204,815 181,792 181,761C181,730 204,708 235,708 z M420,708C452,708 474,730 474,761C474,792 452,815 420,815C389,815 367,792 367,761C367,730 389,708 420,708 z M390,962l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
203
+ <glyph unicode="&#x1DB;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M306,962l-123,0l115,-116l93,0 z M420,708C452,708 474,730 474,761C474,792 452,815 420,815C389,815 367,792 367,761C367,730 389,708 420,708 z M235,708C266,708 288,730 288,761C288,792 266,815 235,815C204,815 181,792 181,761C181,730 204,708 235,708z"/>
204
+ <glyph unicode="&#x1EE4;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M328,-216C367,-216 396,-189 396,-150C396,-112 367,-85 328,-85C288,-85 260,-112 260,-150C260,-189 288,-216 328,-216z"/>
205
+ <glyph unicode="&#x1EE6;" horiz-adv-x="655" d="M80,287C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0 z M296,694C363,702 421,730 421,793C421,845 374,876 268,879l-13,-61C311,815 336,803 336,780C336,759 314,749 286,743z"/>
206
+ <glyph unicode="&#x172;" horiz-adv-x="655" d="M80,287C80,83 167,-4 312,-11C291,-31 248,-68 248,-127C248,-186 295,-218 354,-218C384,-218 424,-204 446,-186l-28,60C407,-134 394,-140 380,-140C357,-140 335,-127 335,-98C335,-68 359,-30 410,-6C517,44 575,106 575,287l0,367l-111,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0z"/>
207
+ <glyph unicode="&#x1AF;" horiz-adv-x="671" d="M586,762C594,750 601,735 601,718C601,670 562,657 515,654l-51,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0l0,-367C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,322C640,622 692,655 692,726C692,755 680,780 666,798z"/>
208
+ <glyph unicode="&#x1EE8;" horiz-adv-x="671" d="M474,820l-126,0l-84,-116l94,0 z M586,762C594,750 601,735 601,718C601,670 562,657 515,654l-51,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0l0,-367C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,322C640,622 692,655 692,726C692,755 680,780 666,798z"/>
209
+ <glyph unicode="&#x1EEA;" horiz-adv-x="671" d="M390,704l-84,116l-126,0l117,-116 z M586,762C594,750 601,735 601,718C601,670 562,657 515,654l-51,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0l0,-367C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,322C640,622 692,655 692,726C692,755 680,780 666,798z"/>
210
+ <glyph unicode="&#x1EEC;" horiz-adv-x="671" d="M296,694C362,702 421,730 421,793C421,845 373,876 267,879l-13,-61C311,815 336,803 336,780C336,759 314,749 285,743 z M586,762C594,750 601,735 601,718C601,670 562,657 515,654l-51,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0l0,-367C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,322C640,622 692,655 692,726C692,755 680,780 666,798z"/>
211
+ <glyph unicode="&#x1EEE;" horiz-adv-x="671" d="M424,829C418,796 403,781 385,781C351,781 319,829 266,829C216,829 178,784 170,707l60,0C236,740 251,756 270,756C303,756 336,707 389,707C439,707 477,753 485,829 z M586,762C594,750 601,735 601,718C601,670 562,657 515,654l-51,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0l0,-367C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,322C640,622 692,655 692,726C692,755 680,780 666,798z"/>
212
+ <glyph unicode="&#x1EF0;" horiz-adv-x="671" d="M327,-85C288,-85 259,-112 259,-150C259,-189 288,-216 327,-216C367,-216 395,-189 395,-150C395,-112 367,-85 327,-85 z M586,762C594,750 601,735 601,718C601,670 562,657 515,654l-51,0l0,-376C464,136 408,89 328,89C249,89 196,136 196,278l0,376l-116,0l0,-367C80,72 177,-12 328,-12C480,-12 575,72 575,287l0,322C640,622 692,655 692,726C692,755 680,780 666,798z"/>
213
+ <glyph unicode="&#x1E80;" horiz-adv-x="800" d="M148,0l141,0l79,344C379,395 389,445 398,495l4,0C410,445 420,395 431,344l81,-344l144,0l125,654l-111,0l-57,-330C603,255 592,185 582,115l-4,0C563,185 549,256 534,324l-80,330l-101,0l-80,-330C258,255 244,184 230,115l-4,0C216,184 205,254 194,324l-57,330l-119,0 z M370,704l93,0l-84,116l-126,0z"/>
214
+ <glyph unicode="&#x1E82;" horiz-adv-x="800" d="M148,0l141,0l79,344C379,395 389,445 398,495l4,0C410,445 420,395 431,344l81,-344l144,0l125,654l-111,0l-57,-330C603,255 592,185 582,115l-4,0C563,185 549,256 534,324l-80,330l-101,0l-80,-330C258,255 244,184 230,115l-4,0C216,184 205,254 194,324l-57,330l-119,0 z M547,820l-126,0l-84,-116l93,0z"/>
215
+ <glyph unicode="&#x174;" horiz-adv-x="800" d="M148,0l141,0l79,344C379,395 389,445 398,495l4,0C410,445 420,395 431,344l81,-344l144,0l125,654l-111,0l-57,-330C603,255 592,185 582,115l-4,0C563,185 549,256 534,324l-80,330l-101,0l-80,-330C258,255 244,184 230,115l-4,0C216,184 205,254 194,324l-57,330l-119,0 z M338,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
216
+ <glyph unicode="&#x1E84;" horiz-adv-x="800" d="M148,0l141,0l79,344C379,395 389,445 398,495l4,0C410,445 420,395 431,344l81,-344l144,0l125,654l-111,0l-57,-330C603,255 592,185 582,115l-4,0C563,185 549,256 534,324l-80,330l-101,0l-80,-330C258,255 244,184 230,115l-4,0C216,184 205,254 194,324l-57,330l-119,0 z M307,708C342,708 367,733 367,767C367,802 342,827 307,827C272,827 248,802 248,767C248,733 272,708 307,708 z M493,708C528,708 552,733 552,767C552,802 528,827 493,827C458,827 433,802 433,767C433,733 458,708 493,708z"/>
217
+ <glyph unicode="&#x1EF2;" horiz-adv-x="501" d="M192,0l116,0l0,243l197,411l-121,0l-71,-167C294,438 274,393 253,343l-4,0C228,393 210,438 191,487l-71,167l-124,0l196,-411 z M220,704l94,0l-85,116l-125,0z"/>
218
+ <glyph unicode="&#xDD;" horiz-adv-x="501" d="M192,0l116,0l0,243l197,411l-121,0l-71,-167C294,438 274,393 253,343l-4,0C228,393 210,438 191,487l-71,167l-124,0l196,-411 z M397,820l-125,0l-85,-116l94,0z"/>
219
+ <glyph unicode="&#x176;" horiz-adv-x="501" d="M192,0l116,0l0,243l197,411l-121,0l-71,-167C294,438 274,393 253,343l-4,0C228,393 210,438 191,487l-71,167l-124,0l196,-411 z M188,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
220
+ <glyph unicode="&#x178;" horiz-adv-x="501" d="M192,0l116,0l0,243l197,411l-121,0l-71,-167C294,438 274,393 253,343l-4,0C228,393 210,438 191,487l-71,167l-124,0l196,-411 z M158,708C192,708 217,733 217,767C217,802 192,827 158,827C123,827 98,802 98,767C98,733 123,708 158,708 z M343,708C378,708 403,733 403,767C403,802 378,827 343,827C308,827 284,802 284,767C284,733 308,708 343,708z"/>
221
+ <glyph unicode="&#x1E8E;" horiz-adv-x="501" d="M192,0l116,0l0,243l197,411l-121,0l-71,-167C294,438 274,393 253,343l-4,0C228,393 210,438 191,487l-71,167l-124,0l196,-411 z M250,707C291,707 322,734 322,773C322,811 291,838 250,838C210,838 179,811 179,773C179,734 210,707 250,707z"/>
222
+ <glyph unicode="&#x1EF4;" horiz-adv-x="501" d="M192,0l116,0l0,243l197,411l-121,0l-71,-167C294,438 274,393 253,343l-4,0C228,393 210,438 191,487l-71,167l-124,0l196,-411 z M252,-216C292,-216 320,-189 320,-150C320,-112 292,-85 252,-85C213,-85 184,-112 184,-150C184,-189 213,-216 252,-216z"/>
223
+ <glyph unicode="&#x1EF6;" horiz-adv-x="501" d="M192,0l116,0l0,243l197,411l-121,0l-71,-167C294,438 274,393 253,343l-4,0C228,393 210,438 191,487l-71,167l-124,0l196,-411 z M219,694C286,702 344,730 344,793C344,845 296,876 190,879l-12,-61C234,815 259,803 259,780C259,759 237,749 208,743z"/>
224
+ <glyph unicode="&#x1EF8;" horiz-adv-x="501" d="M192,0l116,0l0,243l197,411l-121,0l-71,-167C294,438 274,393 253,343l-4,0C228,393 210,438 191,487l-71,167l-124,0l196,-411 z M312,707C362,707 400,753 408,829l-60,0C341,796 326,781 308,781C274,781 242,829 189,829C139,829 101,784 93,707l60,0C160,740 174,756 193,756C226,756 259,707 312,707z"/>
225
+ <glyph unicode="&#x179;" horiz-adv-x="540" d="M40,0l462,0l0,98l-319,0l317,486l0,70l-431,0l0,-98l287,0l-316,-486 z M429,820l-126,0l-84,-116l93,0z"/>
226
+ <glyph unicode="&#x17D;" horiz-adv-x="540" d="M40,0l462,0l0,98l-319,0l317,486l0,70l-431,0l0,-98l287,0l-316,-486 z M344,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
227
+ <glyph unicode="&#x17B;" horiz-adv-x="540" d="M40,0l462,0l0,98l-319,0l317,486l0,70l-431,0l0,-98l287,0l-316,-486 z M282,707C323,707 353,734 353,773C353,811 323,838 282,838C241,838 211,811 211,773C211,734 241,707 282,707z"/>
228
+ <glyph unicode="&#x1E92;" horiz-adv-x="540" d="M40,0l462,0l0,98l-319,0l317,486l0,70l-431,0l0,-98l287,0l-316,-486 z M282,-216C321,-216 350,-189 350,-150C350,-112 321,-85 282,-85C242,-85 214,-112 214,-150C214,-189 242,-216 282,-216z"/>
229
+ <glyph unicode="&#xD0;" horiz-adv-x="649" d="M223,94l0,217l137,0l0,59l-137,0l0,190l51,0C405,560 481,490 481,330C481,169 405,94 274,94 z M107,654l0,-284l-77,-4l0,-55l77,0l0,-311l180,0C482,0 600,113 600,330C600,546 482,654 281,654z"/>
230
+ <glyph unicode="&#xDE;" horiz-adv-x="600" d="M83,0l116,0l0,136l104,0C444,136 552,202 552,348C552,499 446,550 303,550l-104,0l0,104l-116,0 z M199,229l0,228l95,0C389,457 438,429 438,348C438,268 391,229 294,229z"/>
231
+ <glyph unicode="&#x18F;" horiz-adv-x="668" d="M501,275C487,153 421,83 333,83C245,83 181,152 173,275 z M174,508C211,542 262,571 325,571C432,571 494,495 503,361l-446,0C56,348 54,335 54,324C54,118 166,-12 333,-12C501,-12 619,117 619,328C619,540 506,666 337,666C242,666 169,633 120,587z"/>
232
+ <glyph unicode="&#xE0;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M263,573l86,0l-90,146l-114,0z"/>
233
+ <glyph unicode="&#xE1;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M405,719l-114,0l-90,-146l86,0z"/>
234
+ <glyph unicode="&#xE2;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M133,573l80,0l60,85l4,0l60,-85l80,0l-96,146l-92,0z"/>
235
+ <glyph unicode="&#xE3;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M122,577l61,0C190,610 201,625 219,625C251,625 283,577 335,577C386,577 420,622 428,698l-61,0C360,665 349,650 331,650C300,650 267,698 215,698C164,698 130,653 122,577z"/>
236
+ <glyph unicode="&#xE4;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M182,579C217,579 242,605 242,639C242,672 217,698 182,698C147,698 123,672 123,639C123,605 147,579 182,579 z M368,579C403,579 427,605 427,639C427,672 403,698 368,698C333,698 308,672 308,639C308,605 333,579 368,579z"/>
237
+ <glyph unicode="&#x101;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M145,596l260,0l0,76l-260,0z"/>
238
+ <glyph unicode="&#x103;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M275,575C365,575 404,642 408,708l-67,0C336,672 316,640 275,640C234,640 214,672 209,708l-67,0C146,642 185,575 275,575z"/>
239
+ <glyph unicode="&#xE5;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M275,545C336,545 378,584 378,642C378,701 336,740 275,740C214,740 172,701 172,642C172,584 214,545 275,545 z M275,591C250,591 231,612 231,642C231,673 250,694 275,694C300,694 319,673 319,642C319,612 300,591 275,591z"/>
240
+ <glyph unicode="&#x1CE;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M229,573l92,0l96,146l-80,0l-60,-85l-4,0l-60,85l-80,0z"/>
241
+ <glyph unicode="&#x1EA1;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M258,-216C298,-216 326,-189 326,-150C326,-112 298,-85 258,-85C219,-85 190,-112 190,-150C190,-189 219,-216 258,-216z"/>
242
+ <glyph unicode="&#x1EA3;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M243,555C310,563 369,590 369,653C369,706 321,736 215,740l-13,-61C259,676 283,663 283,641C283,619 261,610 233,603z"/>
243
+ <glyph unicode="&#x1EA5;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M147,573l74,0l52,69l4,0l52,-69l74,0l-82,124l-92,0 z M373,643l67,0l93,116l-89,0z"/>
244
+ <glyph unicode="&#x1EA7;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M147,573l74,0l52,69l4,0l52,-69l74,0l-82,124l-92,0 z M430,759l-90,0l94,-116l67,0z"/>
245
+ <glyph unicode="&#x1EA9;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M147,573l74,0l52,69l4,0l52,-69l74,0l-82,124l-92,0 z M402,628C457,638 507,657 507,716C507,763 466,790 372,793l-10,-52C412,738 429,726 429,704C429,685 414,676 393,670z"/>
246
+ <glyph unicode="&#x1EAB;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M139,572l77,0l57,62l4,0l57,-62l77,0l-84,108l-104,0 z M189,716C195,744 208,756 227,756C257,756 277,716 329,716C374,716 407,752 413,818l-52,0C355,790 342,778 323,778C293,778 273,818 221,818C176,818 143,782 137,716z"/>
247
+ <glyph unicode="&#x1EAD;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M133,573l80,0l60,85l4,0l60,-85l80,0l-96,146l-92,0 z M258,-216C298,-216 326,-189 326,-150C326,-112 298,-85 258,-85C219,-85 190,-112 190,-150C190,-189 219,-216 258,-216z"/>
248
+ <glyph unicode="&#x1EAF;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M233,684l62,0l88,116l-87,0 z M275,575C365,575 404,642 408,708l-55,0C347,668 323,634 275,634C227,634 203,668 197,708l-55,0C146,642 185,575 275,575z"/>
249
+ <glyph unicode="&#x1EB1;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M254,800l-87,0l88,-116l62,0 z M275,575C365,575 404,642 408,708l-55,0C347,668 323,634 275,634C227,634 203,668 197,708l-55,0C146,642 185,575 275,575z"/>
250
+ <glyph unicode="&#x1EB3;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M275,575C365,575 404,642 408,708l-55,0C347,668 323,634 275,634C227,634 203,668 197,708l-55,0C146,642 185,575 275,575 z M244,691C300,700 349,719 349,779C349,826 309,852 215,855l-11,-51C254,801 271,789 271,767C271,747 257,739 235,733z"/>
251
+ <glyph unicode="&#x1EB5;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M275,575C365,575 403,629 407,688l-57,0C344,659 322,632 275,632C228,632 206,659 200,688l-57,0C147,629 185,575 275,575 z M137,716l52,0C195,744 208,756 227,756C257,756 277,716 329,716C374,716 407,752 413,818l-52,0C355,790 342,778 323,778C293,778 273,818 221,818C176,818 143,782 137,716z"/>
252
+ <glyph unicode="&#x1EB7;" horiz-adv-x="523" d="M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l9,-54l94,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132 z M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M275,575C365,575 404,642 408,708l-67,0C336,672 316,640 275,640C234,640 214,672 209,708l-67,0C146,642 185,575 275,575 z M258,-216C298,-216 326,-189 326,-150C326,-112 298,-85 258,-85C219,-85 190,-112 190,-150C190,-189 219,-216 258,-216z"/>
253
+ <glyph unicode="&#x105;" horiz-adv-x="523" d="M164,141C164,190 208,225 341,242l0,-110C305,98 274,78 234,78C193,78 164,97 164,141 z M52,132C52,46 112,-12 198,-12C256,-12 306,17 350,54l3,0l10,-53C331,-20 289,-64 289,-120C289,-178 332,-208 387,-208C416,-208 455,-196 477,-178l-26,54C441,-132 428,-137 413,-137C391,-137 369,-124 369,-95C369,-60 396,-20 456,0l0,291C456,428 396,503 273,503C195,503 126,473 72,439l42,-77C157,388 203,410 252,410C318,410 340,366 341,314C140,292 52,237 52,132z"/>
254
+ <glyph unicode="&#xE6;" horiz-adv-x="785" d="M164,141C164,191 211,225 336,242l2,-23C339,190 344,159 354,136C318,100 273,78 234,78C193,78 164,97 164,141 z M114,362C157,388 203,410 250,410C317,410 336,366 338,314C139,293 52,237 52,132C52,46 112,-12 198,-12C262,-12 324,14 392,72C431,25 486,-12 563,-12C625,-12 683,10 730,41l-41,77C653,95 620,80 578,80C507,80 451,129 443,214l300,0C746,226 748,246 748,268C748,405 682,503 557,503C494,503 444,470 404,414C379,469 332,503 265,503C193,503 126,473 72,439 z M443,287C452,368 497,414 553,414C617,414 649,366 649,287z"/>
255
+ <glyph unicode="&#xE7;" horiz-adv-x="462" d="M312,-9C357,-2 402,18 439,51l-48,73C364,102 330,82 290,82C213,82 159,147 159,245C159,344 214,409 293,409C324,409 350,396 376,373l55,73C398,478 350,503 287,503C156,503 41,409 41,245C41,97 126,6 242,-10l-34,-65C251,-86 269,-100 269,-121C269,-148 233,-161 183,-167l10,-50C278,-211 354,-182 354,-119C354,-78 329,-58 295,-46z"/>
256
+ <glyph unicode="&#x107;" horiz-adv-x="462" d="M41,245C41,82 144,-12 278,-12C334,-12 393,10 439,51l-48,73C364,102 330,82 290,82C213,82 159,147 159,245C159,344 214,409 293,409C324,409 350,396 376,373l55,73C398,478 350,503 287,503C156,503 41,409 41,245 z M415,719l-114,0l-90,-146l86,0z"/>
257
+ <glyph unicode="&#x109;" horiz-adv-x="462" d="M41,245C41,82 144,-12 278,-12C334,-12 393,10 439,51l-48,73C364,102 330,82 290,82C213,82 159,147 159,245C159,344 214,409 293,409C324,409 350,396 376,373l55,73C398,478 350,503 287,503C156,503 41,409 41,245 z M143,573l80,0l60,85l4,0l60,-85l79,0l-95,146l-93,0z"/>
258
+ <glyph unicode="&#x10D;" horiz-adv-x="462" d="M41,245C41,82 144,-12 278,-12C334,-12 393,10 439,51l-48,73C364,102 330,82 290,82C213,82 159,147 159,245C159,344 214,409 293,409C324,409 350,396 376,373l55,73C398,478 350,503 287,503C156,503 41,409 41,245 z M238,573l93,0l95,146l-79,0l-60,-85l-4,0l-60,85l-80,0z"/>
259
+ <glyph unicode="&#x10B;" horiz-adv-x="462" d="M41,245C41,82 144,-12 278,-12C334,-12 393,10 439,51l-48,73C364,102 330,82 290,82C213,82 159,147 159,245C159,344 214,409 293,409C324,409 350,396 376,373l55,73C398,478 350,503 287,503C156,503 41,409 41,245 z M285,577C324,577 353,604 353,643C353,681 324,708 285,708C245,708 217,681 217,643C217,604 245,577 285,577z"/>
260
+ <glyph unicode="&#x10F;" horiz-adv-x="594" d="M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,706l-115,0l0,-178l4,-79C342,482 307,503 251,503C144,503 43,405 43,245 z M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M593,548l19,154l1,63l-77,0l5,-217z"/>
261
+ <glyph unicode="&#x1E0D;" horiz-adv-x="564" d="M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,706l-115,0l0,-178l4,-79C342,482 307,503 251,503C144,503 43,405 43,245 z M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M307,-216C347,-216 375,-189 375,-150C375,-112 347,-85 307,-85C268,-85 239,-112 239,-150C239,-189 268,-216 307,-216z"/>
262
+ <glyph unicode="&#x1E0F;" horiz-adv-x="564" d="M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,706l-115,0l0,-178l4,-79C342,482 307,503 251,503C144,503 43,405 43,245 z M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M437,-104l-261,0l0,-76l261,0z"/>
263
+ <glyph unicode="&#x111;" horiz-adv-x="564" d="M376,138C343,100 311,83 273,83C202,83 162,135 162,236C162,332 213,388 276,388C309,388 342,377 376,347 z M561,623l-70,0l0,83l-115,0l0,-83l-156,0l0,-59l156,0l0,-56l4,-79C342,462 307,483 251,483C144,483 43,388 43,235C43,78 122,-12 245,-12C299,-12 347,14 383,50l3,0l8,-50l97,0l0,564l70,5z"/>
264
+ <glyph unicode="&#xE8;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M255,573l86,0l-90,146l-114,0z"/>
265
+ <glyph unicode="&#xE9;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M398,719l-115,0l-89,-146l85,0z"/>
266
+ <glyph unicode="&#xEA;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M126,573l79,0l60,85l4,0l60,-85l80,0l-95,146l-93,0z"/>
267
+ <glyph unicode="&#x11B;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M221,573l93,0l95,146l-80,0l-60,-85l-4,0l-60,85l-79,0z"/>
268
+ <glyph unicode="&#xEB;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M174,579C209,579 234,605 234,639C234,672 209,698 174,698C140,698 115,672 115,639C115,605 140,579 174,579 z M360,579C395,579 420,605 420,639C420,672 395,698 360,698C325,698 300,672 300,639C300,605 325,579 360,579z"/>
269
+ <glyph unicode="&#x113;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M137,596l261,0l0,76l-261,0z"/>
270
+ <glyph unicode="&#x115;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M267,575C357,575 396,642 400,708l-67,0C328,672 308,640 267,640C226,640 206,672 201,708l-67,0C138,642 178,575 267,575z"/>
271
+ <glyph unicode="&#x117;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M267,577C307,577 335,604 335,643C335,681 307,708 267,708C228,708 199,681 199,643C199,604 228,577 267,577z"/>
272
+ <glyph unicode="&#x1EB9;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M266,-216C306,-216 334,-189 334,-150C334,-112 306,-85 266,-85C226,-85 198,-112 198,-150C198,-189 226,-216 266,-216z"/>
273
+ <glyph unicode="&#x1EBB;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M236,555C302,563 361,590 361,653C361,706 313,736 207,740l-13,-61C251,676 276,663 276,641C276,619 254,610 225,603z"/>
274
+ <glyph unicode="&#x1EBD;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M114,577l62,0C182,610 193,625 211,625C243,625 276,577 327,577C378,577 412,622 420,698l-61,0C352,665 342,650 323,650C292,650 259,698 207,698C156,698 122,653 114,577z"/>
275
+ <glyph unicode="&#x1EBF;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M139,573l74,0l52,69l4,0l53,-69l73,0l-81,124l-93,0 z M365,643l67,0l94,116l-90,0z"/>
276
+ <glyph unicode="&#x1EC1;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M139,573l74,0l52,69l4,0l53,-69l73,0l-81,124l-93,0 z M422,759l-90,0l94,-116l67,0z"/>
277
+ <glyph unicode="&#x1EC3;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M139,573l74,0l52,69l4,0l53,-69l73,0l-81,124l-93,0 z M394,628C450,638 499,657 499,716C499,763 458,790 364,793l-10,-52C404,738 421,726 421,704C421,685 406,676 385,670z"/>
278
+ <glyph unicode="&#x1EC5;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M131,572l77,0l57,62l4,0l57,-62l77,0l-83,108l-105,0 z M182,716C187,744 200,756 219,756C249,756 269,716 321,716C366,716 399,752 406,818l-53,0C348,790 334,778 316,778C286,778 265,818 214,818C168,818 136,782 129,716z"/>
279
+ <glyph unicode="&#x1EC7;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M126,573l79,0l60,85l4,0l60,-85l80,0l-95,146l-93,0 z M266,-216C305,-216 334,-189 334,-150C334,-112 305,-85 266,-85C226,-85 198,-112 198,-150C198,-189 226,-216 266,-216z"/>
280
+ <glyph unicode="&#x119;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C295,-12 306,-11 321,-7C295,-30 263,-71 263,-120C263,-178 305,-208 360,-208C388,-208 428,-196 450,-178l-26,54C413,-132 401,-137 387,-137C362,-137 342,-123 342,-95C342,-54 364,-20 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,247 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,372 212,414 270,414C337,414 370,367 370,289z"/>
281
+ <glyph unicode="&#x11D;" horiz-adv-x="520" d="M136,-72C136,-49 148,-27 174,-7C193,-12 214,-14 241,-14l67,0C364,-14 395,-25 395,-63C395,-105 341,-142 262,-142C184,-142 136,-116 136,-72 z M40,-89C40,-175 127,-217 244,-217C404,-217 506,-141 506,-44C506,41 444,77 326,77l-87,0C179,77 159,94 159,122C159,144 168,156 183,169C205,160 229,156 250,156C354,156 436,214 436,323C436,357 424,387 408,406l90,0l0,85l-176,0C302,498 277,503 250,503C147,503 56,440 56,327C56,269 87,222 120,197l0,-4C92,173 66,140 66,102C66,62 85,36 110,20l0,-4C65,-12 40,-48 40,-89 z M250,228C202,228 164,264 164,327C164,389 202,424 250,424C298,424 335,388 335,327C335,264 297,228 250,228 z M104,573l80,0l60,85l4,0l60,-85l79,0l-95,146l-93,0z"/>
282
+ <glyph unicode="&#x11F;" horiz-adv-x="520" d="M136,-72C136,-49 148,-27 174,-7C193,-12 214,-14 241,-14l67,0C364,-14 395,-25 395,-63C395,-105 341,-142 262,-142C184,-142 136,-116 136,-72 z M40,-89C40,-175 127,-217 244,-217C404,-217 506,-141 506,-44C506,41 444,77 326,77l-87,0C179,77 159,94 159,122C159,144 168,156 183,169C205,160 229,156 250,156C354,156 436,214 436,323C436,357 424,387 408,406l90,0l0,85l-176,0C302,498 277,503 250,503C147,503 56,440 56,327C56,269 87,222 120,197l0,-4C92,173 66,140 66,102C66,62 85,36 110,20l0,-4C65,-12 40,-48 40,-89 z M250,228C202,228 164,264 164,327C164,389 202,424 250,424C298,424 335,388 335,327C335,264 297,228 250,228 z M246,575C335,575 375,642 378,708l-66,0C307,672 287,640 246,640C205,640 184,672 180,708l-67,0C116,642 156,575 246,575z"/>
283
+ <glyph unicode="&#x121;" horiz-adv-x="520" d="M136,-72C136,-49 148,-27 174,-7C193,-12 214,-14 241,-14l67,0C364,-14 395,-25 395,-63C395,-105 341,-142 262,-142C184,-142 136,-116 136,-72 z M40,-89C40,-175 127,-217 244,-217C404,-217 506,-141 506,-44C506,41 444,77 326,77l-87,0C179,77 159,94 159,122C159,144 168,156 183,169C205,160 229,156 250,156C354,156 436,214 436,323C436,357 424,387 408,406l90,0l0,85l-176,0C302,498 277,503 250,503C147,503 56,440 56,327C56,269 87,222 120,197l0,-4C92,173 66,140 66,102C66,62 85,36 110,20l0,-4C65,-12 40,-48 40,-89 z M250,228C202,228 164,264 164,327C164,389 202,424 250,424C298,424 335,388 335,327C335,264 297,228 250,228 z M246,577C285,577 314,604 314,643C314,681 285,708 246,708C206,708 178,681 178,643C178,604 206,577 246,577z"/>
284
+ <glyph unicode="&#x123;" horiz-adv-x="520" d="M136,-72C136,-49 148,-27 174,-7C193,-12 214,-14 241,-14l67,0C364,-14 395,-25 395,-63C395,-105 341,-142 262,-142C184,-142 136,-116 136,-72 z M40,-89C40,-175 127,-217 244,-217C404,-217 506,-141 506,-44C506,41 444,77 326,77l-87,0C179,77 159,94 159,122C159,144 168,156 183,169C205,160 229,156 250,156C354,156 436,214 436,323C436,357 424,387 408,406l90,0l0,85l-176,0C302,498 277,503 250,503C147,503 56,440 56,327C56,269 87,222 120,197l0,-4C92,173 66,140 66,102C66,62 85,36 110,20l0,-4C65,-12 40,-48 40,-89 z M250,228C202,228 164,264 164,327C164,389 202,424 250,424C298,424 335,388 335,327C335,264 297,228 250,228 z M277,543l23,46C271,596 253,607 253,630C253,654 289,665 339,671l-10,50C244,715 168,686 168,623C168,576 198,552 277,543z"/>
285
+ <glyph unicode="&#x1E7;" horiz-adv-x="520" d="M136,-72C136,-49 148,-27 174,-7C193,-12 214,-14 241,-14l67,0C364,-14 395,-25 395,-63C395,-105 341,-142 262,-142C184,-142 136,-116 136,-72 z M40,-89C40,-175 127,-217 244,-217C404,-217 506,-141 506,-44C506,41 444,77 326,77l-87,0C179,77 159,94 159,122C159,144 168,156 183,169C205,160 229,156 250,156C354,156 436,214 436,323C436,357 424,387 408,406l90,0l0,85l-176,0C302,498 277,503 250,503C147,503 56,440 56,327C56,269 87,222 120,197l0,-4C92,173 66,140 66,102C66,62 85,36 110,20l0,-4C65,-12 40,-48 40,-89 z M250,228C202,228 164,264 164,327C164,389 202,424 250,424C298,424 335,388 335,327C335,264 297,228 250,228 z M199,573l93,0l95,146l-79,0l-60,-85l-4,0l-60,85l-80,0z"/>
286
+ <glyph unicode="&#x1E21;" horiz-adv-x="520" d="M136,-72C136,-49 148,-27 174,-7C193,-12 214,-14 241,-14l67,0C364,-14 395,-25 395,-63C395,-105 341,-142 262,-142C184,-142 136,-116 136,-72 z M40,-89C40,-175 127,-217 244,-217C404,-217 506,-141 506,-44C506,41 444,77 326,77l-87,0C179,77 159,94 159,122C159,144 168,156 183,169C205,160 229,156 250,156C354,156 436,214 436,323C436,357 424,387 408,406l90,0l0,85l-176,0C302,498 277,503 250,503C147,503 56,440 56,327C56,269 87,222 120,197l0,-4C92,173 66,140 66,102C66,62 85,36 110,20l0,-4C65,-12 40,-48 40,-89 z M250,228C202,228 164,264 164,327C164,389 202,424 250,424C298,424 335,388 335,327C335,264 297,228 250,228 z M115,596l261,0l0,76l-261,0z"/>
287
+ <glyph unicode="&#xE001;" horiz-adv-x="520" d="M136,-72C136,-49 148,-27 174,-7C193,-12 214,-14 241,-14l67,0C364,-14 395,-25 395,-63C395,-105 341,-142 262,-142C184,-142 136,-116 136,-72 z M40,-89C40,-175 127,-217 244,-217C404,-217 506,-141 506,-44C506,41 444,77 326,77l-87,0C179,77 159,94 159,122C159,144 168,156 183,169C205,160 229,156 250,156C354,156 436,214 436,323C436,357 424,387 408,406l90,0l0,85l-176,0C302,498 277,503 250,503C147,503 56,440 56,327C56,269 87,222 120,197l0,-4C92,173 66,140 66,102C66,62 85,36 110,20l0,-4C65,-12 40,-48 40,-89 z M250,228C202,228 164,264 164,327C164,389 202,424 250,424C298,424 335,388 335,327C335,264 297,228 250,228 z M93,577l61,0C160,610 171,625 190,625C221,625 254,577 306,577C357,577 390,622 398,698l-61,0C331,665 320,650 302,650C271,650 237,698 186,698C134,698 101,653 93,577z"/>
288
+ <glyph unicode="&#x125;" horiz-adv-x="558" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 225,468 184,429l4,95l0,182l-115,0 z M68,749l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
289
+ <glyph unicode="&#x1E25;" horiz-adv-x="558" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 225,468 184,429l4,95l0,182l-115,0 z M290,-216C329,-216 358,-189 358,-150C358,-112 329,-85 290,-85C250,-85 222,-112 222,-150C222,-189 250,-216 290,-216z"/>
290
+ <glyph unicode="&#x1E2B;" horiz-adv-x="558" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 225,468 184,429l4,95l0,182l-115,0 z M289,-208C379,-208 418,-141 422,-75l-67,0C350,-111 330,-142 289,-142C248,-142 228,-111 223,-75l-67,0C160,-141 200,-208 289,-208z"/>
291
+ <glyph unicode="&#x127;" horiz-adv-x="558" d="M188,504l0,60l176,0l0,59l-176,0l0,83l-115,0l0,-83l-71,-5l0,-54l71,0l0,-564l115,0l0,323C229,363 257,384 300,384C354,384 377,354 377,273l0,-273l115,0l0,288C492,412 446,483 341,483C274,483 225,448 184,409z"/>
292
+ <glyph unicode="&#xEC;" horiz-adv-x="262" d="M73,0l115,0l0,491l-115,0 z M119,573l85,0l-89,146l-115,0z"/>
293
+ <glyph unicode="&#xED;" horiz-adv-x="262" d="M73,0l115,0l0,491l-115,0 z M261,719l-114,0l-90,-146l86,0z"/>
294
+ <glyph unicode="&#xEE;" horiz-adv-x="262" d="M73,0l115,0l0,491l-115,0 z M-11,573l80,0l60,85l4,0l60,-85l79,0l-95,146l-93,0z"/>
295
+ <glyph unicode="&#x129;" horiz-adv-x="262" d="M73,0l115,0l0,491l-115,0 z M-22,577l61,0C46,610 56,625 75,625C106,625 139,577 191,577C242,577 276,622 284,698l-62,0C216,665 205,650 187,650C156,650 122,698 71,698C20,698 -14,653 -22,577z"/>
296
+ <glyph unicode="&#xEF;" horiz-adv-x="262" d="M73,0l115,0l0,491l-115,0 z M38,579C73,579 98,605 98,639C98,672 73,698 38,698C3,698 -22,672 -22,639C-22,605 3,579 38,579 z M224,579C258,579 283,605 283,639C283,672 258,698 224,698C189,698 164,672 164,639C164,605 189,579 224,579z"/>
297
+ <glyph unicode="&#x12B;" horiz-adv-x="262" d="M73,0l115,0l0,491l-115,0 z M0,596l261,0l0,76l-261,0z"/>
298
+ <glyph unicode="&#x1D0;" horiz-adv-x="262" d="M73,0l115,0l0,491l-115,0 z M84,573l93,0l95,146l-79,0l-60,-85l-4,0l-60,85l-80,0z"/>
299
+ <glyph unicode="&#x1EC9;" horiz-adv-x="262" d="M73,0l115,0l0,491l-115,0 z M99,555C166,563 224,590 224,653C224,706 177,736 71,740l-13,-61C114,676 139,663 139,641C139,619 117,610 89,603z"/>
300
+ <glyph unicode="&#x1ECB;" horiz-adv-x="262" d="M131,577C172,577 202,604 202,642C202,681 172,708 131,708C90,708 60,681 60,642C60,604 90,577 131,577 z M73,0l115,0l0,491l-115,0 z M131,-216C171,-216 199,-189 199,-150C199,-112 171,-85 131,-85C92,-85 63,-112 63,-150C63,-189 92,-216 131,-216z"/>
301
+ <glyph unicode="&#x12F;" horiz-adv-x="262" d="M73,0l31,0C78,-24 40,-64 40,-120C40,-178 83,-208 138,-208C166,-208 206,-196 228,-178l-26,54C190,-132 178,-137 165,-137C141,-137 120,-123 120,-95C120,-60 142,-24 188,0l0,491l-115,0 z M130,577C171,577 202,604 202,642C202,681 171,708 130,708C90,708 59,681 59,642C59,604 90,577 130,577z"/>
302
+ <glyph unicode="&#xE002;" horiz-adv-x="262" d="M73,0l31,0C78,-24 40,-64 40,-120C40,-178 83,-208 138,-208C166,-208 206,-196 228,-178l-26,54C190,-132 178,-137 165,-137C141,-137 120,-123 120,-95C120,-60 142,-24 188,0l0,491l-115,0z"/>
303
+ <glyph unicode="&#x131;" horiz-adv-x="262" d="M73,0l115,0l0,491l-115,0z"/>
304
+ <glyph unicode="&#x135;" horiz-adv-x="263" d="M74,-27C74,-84 62,-115 18,-115C3,-115 -11,-111 -24,-107l-22,-86C-27,-200 -2,-206 34,-206C150,-206 190,-129 190,-25l0,516l-116,0 z M-10,573l80,0l60,85l4,0l60,-85l80,0l-96,146l-92,0z"/>
305
+ <glyph unicode="&#x137;" horiz-adv-x="522" d="M73,0l113,0l0,125l77,88l126,-213l125,0l-185,291l168,200l-126,0l-182,-226l-3,0l0,441l-113,0 z M251,-45l-23,-46C257,-98 275,-109 275,-132C275,-156 239,-167 189,-173l10,-50C284,-217 360,-188 360,-125C360,-78 330,-54 251,-45z"/>
306
+ <glyph unicode="&#x138;" horiz-adv-x="522" d="M73,0l115,0l0,121l75,89l126,-210l125,0l-183,291l166,200l-126,0l-179,-228l-4,0l0,228l-115,0z"/>
307
+ <glyph unicode="&#x13A;" horiz-adv-x="271" d="M73,126C73,41 103,-12 185,-12C212,-12 232,-8 246,-2l-15,86C222,82 218,82 213,82C201,82 188,92 188,120l0,586l-115,0 z M277,874l-126,0l-84,-116l94,0z"/>
308
+ <glyph unicode="&#x13E;" horiz-adv-x="292" d="M73,126C73,41 103,-12 185,-12C212,-12 232,-8 246,-2l-15,86C222,82 218,82 213,82C201,82 188,92 188,120l0,586l-115,0 z M290,548l20,154l1,63l-77,0l4,-217z"/>
309
+ <glyph unicode="&#x140;" horiz-adv-x="408" d="M73,126C73,41 103,-12 185,-12C212,-12 232,-8 246,-2l-15,86C222,82 218,82 213,82C201,82 188,92 188,120l0,586l-115,0 z M260,327C260,282 292,249 334,249C376,249 409,282 409,327C409,372 376,405 334,405C292,405 260,372 260,327z"/>
310
+ <glyph unicode="&#x13C;" horiz-adv-x="271" d="M73,126C73,41 103,-12 185,-12C212,-12 232,-8 246,-2l-15,86C222,82 218,82 213,82C201,82 188,92 188,120l0,586l-115,0 z M148,-45l-23,-46C154,-98 172,-109 172,-132C172,-156 136,-167 86,-173l10,-50C181,-217 257,-188 257,-125C257,-78 227,-54 148,-45z"/>
311
+ <glyph unicode="&#x1E37;" horiz-adv-x="271" d="M73,126C73,41 103,-12 185,-12C212,-12 232,-8 246,-2l-15,86C222,82 218,82 213,82C201,82 188,92 188,120l0,586l-115,0 z M180,-216C220,-216 248,-189 248,-150C248,-112 220,-85 180,-85C141,-85 112,-112 112,-150C112,-189 141,-216 180,-216z"/>
312
+ <glyph unicode="&#x1E39;" horiz-adv-x="271" d="M73,126C73,41 103,-12 185,-12C212,-12 232,-8 246,-2l-15,86C222,82 218,82 213,82C201,82 188,92 188,120l0,586l-115,0 z M-1,812l261,0l0,76l-261,0 z M180,-216C220,-216 248,-189 248,-150C248,-112 220,-85 180,-85C141,-85 112,-112 112,-150C112,-189 141,-216 180,-216z"/>
313
+ <glyph unicode="&#x1E3B;" horiz-adv-x="271" d="M73,126C73,41 103,-12 185,-12C212,-12 232,-8 246,-2l-15,86C222,82 218,82 213,82C201,82 188,92 188,120l0,586l-115,0 z M311,-104l-262,0l0,-76l262,0z"/>
314
+ <glyph unicode="&#x142;" horiz-adv-x="283" d="M264,403l0,95l-68,-41l0,249l-116,0l0,-309l-61,-38l0,-94l61,38l0,-177C80,41 110,-12 192,-12C220,-12 239,-8 253,-2l-15,86C230,82 226,82 220,82C208,82 196,92 196,120l0,242z"/>
315
+ <glyph unicode="&#x1E43;" horiz-adv-x="843" d="M73,0l115,0l0,343C226,384 261,404 291,404C343,404 367,374 367,293l0,-293l115,0l0,343C520,384 554,404 585,404C636,404 660,374 660,293l0,-293l116,0l0,308C776,432 728,503 624,503C562,503 513,465 466,415C443,470 402,503 330,503C269,503 221,468 180,424l-4,0l-8,67l-95,0 z M433,-216C472,-216 501,-189 501,-150C501,-112 472,-85 433,-85C393,-85 365,-112 365,-150C365,-189 393,-216 433,-216z"/>
316
+ <glyph unicode="&#x144;" horiz-adv-x="560" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 224,468 180,425l-4,0l-8,66l-95,0 z M430,719l-114,0l-90,-146l86,0z"/>
317
+ <glyph unicode="&#x148;" horiz-adv-x="560" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 224,468 180,425l-4,0l-8,66l-95,0 z M254,573l92,0l96,146l-80,0l-60,-85l-4,0l-60,85l-80,0z"/>
318
+ <glyph unicode="&#xF1;" horiz-adv-x="560" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 224,468 180,425l-4,0l-8,66l-95,0 z M147,577l61,0C215,610 226,625 244,625C276,625 308,577 360,577C411,577 445,622 453,698l-61,0C385,665 374,650 356,650C325,650 292,698 240,698C189,698 155,653 147,577z"/>
319
+ <glyph unicode="&#x146;" horiz-adv-x="560" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 224,468 180,425l-4,0l-8,66l-95,0 z M253,-45l-23,-46C259,-98 277,-109 277,-132C277,-156 241,-167 191,-173l10,-50C286,-217 362,-188 362,-125C362,-78 332,-54 253,-45z"/>
320
+ <glyph unicode="&#x1E45;" horiz-adv-x="560" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 224,468 180,425l-4,0l-8,66l-95,0 z M300,577C340,577 368,604 368,643C368,681 340,708 300,708C260,708 232,681 232,643C232,604 260,577 300,577z"/>
321
+ <glyph unicode="&#x1E47;" horiz-adv-x="560" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 224,468 180,425l-4,0l-8,66l-95,0 z M286,-216C325,-216 354,-189 354,-150C354,-112 325,-85 286,-85C246,-85 218,-112 218,-150C218,-189 246,-216 286,-216z"/>
322
+ <glyph unicode="&#x1E49;" horiz-adv-x="560" d="M73,0l115,0l0,343C229,383 257,404 300,404C354,404 377,374 377,293l0,-293l115,0l0,308C492,432 446,503 341,503C274,503 224,468 180,425l-4,0l-8,66l-95,0 z M416,-104l-262,0l0,-76l262,0z"/>
323
+ <glyph unicode="&#x149;" horiz-adv-x="814" d="M95,391C178,434 220,500 220,587C220,657 192,698 141,698C103,698 76,671 76,629C76,590 106,567 141,567C144,567 147,567 150,568C150,509 122,474 67,442 z M427,425l-9,66l-94,0l0,-491l115,0l0,343C480,383 508,404 551,404C604,404 628,374 628,293l0,-293l115,0l0,308C743,432 697,503 592,503C524,503 474,468 430,425z"/>
324
+ <glyph unicode="&#xF2;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M262,573l86,0l-90,146l-114,0z"/>
325
+ <glyph unicode="&#xF3;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M405,719l-115,0l-89,-146l85,0z"/>
326
+ <glyph unicode="&#xF4;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M133,573l79,0l60,85l4,0l60,-85l80,0l-95,146l-93,0z"/>
327
+ <glyph unicode="&#xF5;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M122,577l61,0C189,610 200,625 218,625C250,625 283,577 334,577C386,577 419,622 427,698l-61,0C360,665 349,650 330,650C300,650 266,698 214,698C163,698 130,653 122,577z"/>
328
+ <glyph unicode="&#xF6;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M182,579C216,579 241,605 241,639C241,672 216,698 182,698C147,698 122,672 122,639C122,605 147,579 182,579 z M367,579C402,579 427,605 427,639C427,672 402,698 367,698C332,698 308,672 308,639C308,605 332,579 367,579z"/>
329
+ <glyph unicode="&#x14D;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M144,596l261,0l0,76l-261,0z"/>
330
+ <glyph unicode="&#x151;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M162,572l73,0l92,147l-95,0 z M322,572l72,0l92,147l-95,0z"/>
331
+ <glyph unicode="&#x1D2;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M228,573l93,0l95,146l-80,0l-60,-85l-4,0l-60,85l-79,0z"/>
332
+ <glyph unicode="&#x1ECD;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M275,-216C314,-216 343,-189 343,-150C343,-112 314,-85 275,-85C235,-85 207,-112 207,-150C207,-189 235,-216 275,-216z"/>
333
+ <glyph unicode="&#x1ECF;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M243,555C310,563 368,590 368,653C368,706 320,736 214,740l-12,-61C258,676 283,663 283,641C283,619 261,610 232,603z"/>
334
+ <glyph unicode="&#x1ED1;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M146,573l74,0l52,69l4,0l53,-69l73,0l-81,124l-93,0 z M372,643l67,0l94,116l-90,0z"/>
335
+ <glyph unicode="&#x1ED3;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M146,573l74,0l52,69l4,0l53,-69l73,0l-81,124l-93,0 z M429,759l-89,0l93,-116l67,0z"/>
336
+ <glyph unicode="&#x1ED5;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M146,573l74,0l52,69l4,0l53,-69l73,0l-81,124l-93,0 z M401,628C457,638 506,657 506,716C506,763 466,790 372,793l-11,-52C411,738 428,726 428,704C428,685 414,676 392,670z"/>
337
+ <glyph unicode="&#x1ED7;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M138,572l78,0l56,62l4,0l57,-62l77,0l-83,108l-105,0 z M189,716C194,744 208,756 226,756C256,756 276,716 328,716C373,716 406,752 413,818l-53,0C355,790 341,778 323,778C293,778 272,818 221,818C176,818 143,782 136,716z"/>
338
+ <glyph unicode="&#x1ED9;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M133,573l79,0l60,85l4,0l60,-85l80,0l-95,146l-93,0 z M275,-216C314,-216 343,-189 343,-150C343,-112 314,-85 275,-85C235,-85 207,-112 207,-150C207,-189 235,-216 275,-216z"/>
339
+ <glyph unicode="&#xF8;" horiz-adv-x="549" d="M382,331C391,306 396,275 396,239C396,143 346,78 274,78C244,78 219,88 199,108 z M167,160C158,185 153,216 153,251C153,347 202,413 274,413C304,413 329,403 349,384 z M503,480l-46,36l-47,-57C371,488 324,503 274,503C152,503 41,409 41,245C41,174 62,116 96,73l-50,-61l46,-36l46,56C177,3 225,-12 274,-12C397,-12 508,82 508,245C508,317 487,375 453,418z"/>
340
+ <glyph unicode="&#x153;" horiz-adv-x="830" d="M158,245C158,344 202,409 268,409C335,409 379,344 379,245C379,147 335,82 268,82C202,82 158,147 158,245 z M41,245C41,82 144,-12 266,-12C342,-12 398,24 438,92C476,27 539,-12 606,-12C669,-12 728,10 775,41l-41,77C698,95 664,80 622,80C550,80 494,129 486,214l303,0C791,226 794,246 794,268C794,405 726,503 600,503C535,503 475,464 436,399C400,465 340,503 268,503C146,503 41,409 41,245 z M486,287C495,368 540,414 597,414C660,414 694,366 694,287z"/>
341
+ <glyph unicode="&#x1A1;" horiz-adv-x="549" d="M274,82C202,82 159,147 159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82 z M418,589C427,577 434,562 434,545C434,508 409,490 369,483C340,496 307,503 274,503C152,503 41,409 41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,331 477,398 430,442C482,458 525,492 525,553C525,582 513,608 498,626z"/>
342
+ <glyph unicode="&#x1EDB;" horiz-adv-x="549" d="M405,719l-115,0l-89,-146l85,0 z M274,82C202,82 159,147 159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82 z M418,589C427,577 434,562 434,545C434,508 409,490 369,483C340,496 307,503 274,503C152,503 41,409 41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,331 477,398 430,442C482,458 525,492 525,553C525,582 513,608 498,626z"/>
343
+ <glyph unicode="&#x1EDD;" horiz-adv-x="549" d="M348,573l-90,146l-114,0l118,-146 z M274,82C202,82 159,147 159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82 z M418,589C427,577 434,562 434,545C434,508 409,490 369,483C340,496 307,503 274,503C152,503 41,409 41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,331 477,398 430,442C482,458 525,492 525,553C525,582 513,608 498,626z"/>
344
+ <glyph unicode="&#x1EDF;" horiz-adv-x="549" d="M243,555C310,563 368,590 368,653C368,706 320,736 214,740l-12,-61C258,676 283,663 283,641C283,619 261,610 232,603 z M274,82C202,82 159,147 159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82 z M418,589C427,577 434,562 434,545C434,508 409,490 369,483C340,496 307,503 274,503C152,503 41,409 41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,331 477,398 430,442C482,458 525,492 525,553C525,582 513,608 498,626z"/>
345
+ <glyph unicode="&#x1EE1;" horiz-adv-x="549" d="M366,698C360,665 349,650 330,650C300,650 266,698 214,698C163,698 130,653 122,577l61,0C189,610 200,625 218,625C250,625 283,577 334,577C386,577 419,622 427,698 z M274,82C202,82 159,147 159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82 z M418,589C427,577 434,562 434,545C434,508 409,490 369,483C340,496 307,503 274,503C152,503 41,409 41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,331 477,398 430,442C482,458 525,492 525,553C525,582 513,608 498,626z"/>
346
+ <glyph unicode="&#x1EE3;" horiz-adv-x="549" d="M275,-85C235,-85 207,-112 207,-150C207,-189 235,-216 275,-216C314,-216 343,-189 343,-150C343,-112 314,-85 275,-85 z M274,82C202,82 159,147 159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82 z M418,589C427,577 434,562 434,545C434,508 409,490 369,483C340,496 307,503 274,503C152,503 41,409 41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,331 477,398 430,442C482,458 525,492 525,553C525,582 513,608 498,626z"/>
347
+ <glyph unicode="&#x1EB;" horiz-adv-x="549" d="M198,-120C198,-178 242,-208 296,-208C325,-208 364,-196 386,-178l-26,54C349,-132 337,-137 322,-137C300,-137 278,-124 278,-95C278,-62 300,-24 347,-2C443,42 508,112 508,245C508,409 397,503 274,503C152,503 41,409 41,245C41,93 138,0 253,-10C230,-30 198,-70 198,-120 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245z"/>
348
+ <glyph unicode="&#x155;" horiz-adv-x="373" d="M73,0l115,0l0,300C218,374 265,401 304,401C325,401 338,398 355,393l20,100C360,500 344,503 319,503C267,503 215,468 180,404l-4,0l-8,87l-95,0 z M363,719l-115,0l-89,-146l85,0z"/>
349
+ <glyph unicode="&#x157;" horiz-adv-x="373" d="M73,0l115,0l0,300C218,374 265,401 304,401C325,401 338,398 355,393l20,100C360,500 344,503 319,503C267,503 215,468 180,404l-4,0l-8,87l-95,0 z M97,-45l-23,-46C103,-98 121,-109 121,-132C121,-156 86,-167 36,-173l9,-50C130,-217 206,-188 206,-125C206,-78 176,-54 97,-45z"/>
350
+ <glyph unicode="&#x159;" horiz-adv-x="373" d="M73,0l115,0l0,300C218,374 265,401 304,401C325,401 338,398 355,393l20,100C360,500 344,503 319,503C267,503 215,468 180,404l-4,0l-8,87l-95,0 z M186,573l93,0l95,146l-80,0l-60,-85l-4,0l-60,85l-79,0z"/>
351
+ <glyph unicode="&#x1E5B;" horiz-adv-x="373" d="M73,0l115,0l0,300C218,374 265,401 304,401C325,401 338,398 355,393l20,100C360,500 344,503 319,503C267,503 215,468 180,404l-4,0l-8,87l-95,0 z M130,-216C170,-216 198,-189 198,-150C198,-112 170,-85 130,-85C90,-85 62,-112 62,-150C62,-189 90,-216 130,-216z"/>
352
+ <glyph unicode="&#x1E5D;" horiz-adv-x="373" d="M73,0l115,0l0,300C218,374 265,401 304,401C325,401 338,398 355,393l20,100C360,500 344,503 319,503C267,503 215,468 180,404l-4,0l-8,87l-95,0 z M102,596l261,0l0,76l-261,0 z M130,-216C170,-216 198,-189 198,-150C198,-112 170,-85 130,-85C90,-85 62,-112 62,-150C62,-189 90,-216 130,-216z"/>
353
+ <glyph unicode="&#x1E5F;" horiz-adv-x="373" d="M73,0l115,0l0,300C218,374 265,401 304,401C325,401 338,398 355,393l20,100C360,500 344,503 319,503C267,503 215,468 180,404l-4,0l-8,87l-95,0 z M260,-104l-262,0l0,-76l262,0z"/>
354
+ <glyph unicode="&#x15B;" horiz-adv-x="431" d="M24,56C72,17 143,-12 210,-12C334,-12 401,56 401,140C401,232 327,264 260,289C207,308 158,323 158,362C158,393 181,416 230,416C269,416 304,399 338,374l53,70C351,475 296,503 228,503C118,503 49,442 49,356C49,274 122,237 187,213C239,193 292,175 292,134C292,100 267,75 214,75C164,75 122,96 78,130 z M358,719l-114,0l-90,-146l86,0z"/>
355
+ <glyph unicode="&#x15D;" horiz-adv-x="431" d="M24,56C72,17 143,-12 210,-12C334,-12 401,56 401,140C401,232 327,264 260,289C207,308 158,323 158,362C158,393 181,416 230,416C269,416 304,399 338,374l53,70C351,475 296,503 228,503C118,503 49,442 49,356C49,274 122,237 187,213C239,193 292,175 292,134C292,100 267,75 214,75C164,75 122,96 78,130 z M86,573l80,0l60,85l4,0l60,-85l80,0l-96,146l-92,0z"/>
356
+ <glyph unicode="&#x161;" horiz-adv-x="431" d="M24,56C72,17 143,-12 210,-12C334,-12 401,56 401,140C401,232 327,264 260,289C207,308 158,323 158,362C158,393 181,416 230,416C269,416 304,399 338,374l53,70C351,475 296,503 228,503C118,503 49,442 49,356C49,274 122,237 187,213C239,193 292,175 292,134C292,100 267,75 214,75C164,75 122,96 78,130 z M182,573l92,0l96,146l-80,0l-60,-85l-4,0l-60,85l-80,0z"/>
357
+ <glyph unicode="&#x15F;" horiz-adv-x="431" d="M391,444C351,475 296,503 228,503C118,503 49,442 49,356C49,274 122,237 187,213C239,193 292,175 292,134C292,100 267,75 214,75C164,75 122,96 78,130l-54,-74C68,20 131,-7 193,-11l-33,-64C203,-86 221,-100 221,-121C221,-148 186,-161 136,-167l9,-50C230,-211 306,-182 306,-119C306,-78 281,-58 248,-46l18,39C354,10 401,70 401,140C401,232 327,264 260,289C207,308 158,323 158,362C158,393 181,416 230,416C269,416 304,399 338,374z"/>
358
+ <glyph unicode="&#x219;" horiz-adv-x="431" d="M24,56C72,17 143,-12 210,-12C334,-12 401,56 401,140C401,232 327,264 260,289C207,308 158,323 158,362C158,393 181,416 230,416C269,416 304,399 338,374l53,70C351,475 296,503 228,503C118,503 49,442 49,356C49,274 122,237 187,213C239,193 292,175 292,134C292,100 267,75 214,75C164,75 122,96 78,130 z M195,-45l-23,-46C201,-98 219,-109 219,-132C219,-156 184,-167 134,-173l9,-50C228,-217 304,-188 304,-125C304,-78 274,-54 195,-45z"/>
359
+ <glyph unicode="&#x1E61;" horiz-adv-x="431" d="M24,56C72,17 143,-12 210,-12C334,-12 401,56 401,140C401,232 327,264 260,289C207,308 158,323 158,362C158,393 181,416 230,416C269,416 304,399 338,374l53,70C351,475 296,503 228,503C118,503 49,442 49,356C49,274 122,237 187,213C239,193 292,175 292,134C292,100 267,75 214,75C164,75 122,96 78,130 z M228,577C268,577 296,604 296,643C296,681 268,708 228,708C188,708 160,681 160,643C160,604 188,577 228,577z"/>
360
+ <glyph unicode="&#x1E63;" horiz-adv-x="431" d="M24,56C72,17 143,-12 210,-12C334,-12 401,56 401,140C401,232 327,264 260,289C207,308 158,323 158,362C158,393 181,416 230,416C269,416 304,399 338,374l53,70C351,475 296,503 228,503C118,503 49,442 49,356C49,274 122,237 187,213C239,193 292,175 292,134C292,100 267,75 214,75C164,75 122,96 78,130 z M228,-216C268,-216 296,-189 296,-150C296,-112 268,-85 228,-85C188,-85 160,-112 160,-150C160,-189 188,-216 228,-216z"/>
361
+ <glyph unicode="&#xDF;" horiz-adv-x="604" d="M73,0l114,0l0,484C187,575 224,625 290,625C338,625 363,592 363,547C363,468 284,440 284,357C284,222 470,234 470,139C470,104 445,75 401,75C366,75 335,87 300,114l-42,-79C303,6 348,-12 404,-12C514,-12 577,57 577,144C577,302 390,290 390,371C390,431 474,462 474,560C474,642 411,716 290,716C147,716 73,628 73,501z"/>
362
+ <glyph unicode="&#x165;" horiz-adv-x="361" d="M90,166C90,60 132,-12 246,-12C285,-12 319,-3 346,6l-20,85C312,85 292,80 275,80C228,80 206,108 206,166l0,234l125,0l0,91l-125,0l0,134l-96,0l-14,-134l-76,-5l0,-86l70,0 z M320,548l19,154l1,63l-76,0l4,-217z"/>
363
+ <glyph unicode="&#x163;" horiz-adv-x="361" d="M263,-11C295,-9 323,-2 346,6l-20,85C312,85 292,80 275,80C228,80 206,108 206,166l0,234l125,0l0,91l-125,0l0,134l-96,0l-14,-134l-76,-5l0,-86l70,0l0,-234C90,78 119,13 195,-6l-35,-69C202,-86 220,-100 220,-121C220,-148 185,-161 135,-167l9,-50C230,-211 306,-182 306,-119C306,-78 280,-58 247,-46z"/>
364
+ <glyph unicode="&#x21B;" horiz-adv-x="361" d="M90,166C90,60 132,-12 246,-12C285,-12 319,-3 346,6l-20,85C312,85 292,80 275,80C228,80 206,108 206,166l0,234l125,0l0,91l-125,0l0,134l-96,0l-14,-134l-76,-5l0,-86l70,0 z M192,-45l-23,-46C198,-98 216,-109 216,-132C216,-156 180,-167 130,-173l10,-50C225,-217 301,-188 301,-125C301,-78 271,-54 192,-45z"/>
365
+ <glyph unicode="&#x1E6D;" horiz-adv-x="361" d="M90,166C90,60 132,-12 246,-12C285,-12 319,-3 346,6l-20,85C312,85 292,80 275,80C228,80 206,108 206,166l0,234l125,0l0,91l-125,0l0,134l-96,0l-14,-134l-76,-5l0,-86l70,0 z M225,-216C264,-216 293,-189 293,-150C293,-112 264,-85 225,-85C185,-85 157,-112 157,-150C157,-189 185,-216 225,-216z"/>
366
+ <glyph unicode="&#x1E6F;" horiz-adv-x="361" d="M90,166C90,60 132,-12 246,-12C285,-12 319,-3 346,6l-20,85C312,85 292,80 275,80C228,80 206,108 206,166l0,234l125,0l0,91l-125,0l0,134l-96,0l-14,-134l-76,-5l0,-86l70,0 z M355,-104l-262,0l0,-76l262,0z"/>
367
+ <glyph unicode="&#x1E97;" horiz-adv-x="361" d="M90,166C90,60 132,-12 246,-12C285,-12 319,-3 346,6l-20,85C312,85 292,80 275,80C228,80 206,108 206,166l0,234l125,0l0,91l-125,0l0,134l-96,0l-14,-134l-76,-5l0,-86l70,0 z M63,717C98,717 122,743 122,777C122,810 98,836 63,836C28,836 3,810 3,777C3,743 28,717 63,717 z M248,717C283,717 308,743 308,777C308,810 283,836 248,836C214,836 189,810 189,777C189,743 214,717 248,717z"/>
368
+ <glyph unicode="&#xF9;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M267,573l85,0l-89,146l-115,0z"/>
369
+ <glyph unicode="&#xFA;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M409,719l-114,0l-90,-146l86,0z"/>
370
+ <glyph unicode="&#xFB;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M137,573l80,0l60,85l4,0l60,-85l79,0l-95,146l-93,0z"/>
371
+ <glyph unicode="&#x169;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M126,577l61,0C194,610 204,625 223,625C254,625 287,577 339,577C390,577 424,622 432,698l-62,0C364,665 353,650 335,650C304,650 270,698 219,698C168,698 134,653 126,577z"/>
372
+ <glyph unicode="&#xFC;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M186,579C221,579 246,605 246,639C246,672 221,698 186,698C151,698 126,672 126,639C126,605 151,579 186,579 z M372,579C406,579 431,605 431,639C431,672 406,698 372,698C337,698 312,672 312,639C312,605 337,579 372,579z"/>
373
+ <glyph unicode="&#x16B;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M146,596l261,0l0,76l-261,0z"/>
374
+ <glyph unicode="&#x16D;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M279,575C368,575 408,642 412,708l-67,0C340,672 320,640 279,640C238,640 218,672 213,708l-67,0C150,642 189,575 279,575z"/>
375
+ <glyph unicode="&#x16F;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M279,545C340,545 382,584 382,642C382,701 340,740 279,740C218,740 176,701 176,642C176,584 218,545 279,545 z M279,591C254,591 234,612 234,642C234,673 254,694 279,694C303,694 323,673 323,642C323,612 303,591 279,591z"/>
376
+ <glyph unicode="&#x171;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M167,572l73,0l91,147l-95,0 z M326,572l73,0l91,147l-94,0z"/>
377
+ <glyph unicode="&#x1D4;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M232,573l93,0l95,146l-79,0l-60,-85l-4,0l-60,85l-80,0z"/>
378
+ <glyph unicode="&#x1D6;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M186,579C217,579 240,603 240,633C240,663 217,686 186,686C155,686 132,663 132,633C132,603 155,579 186,579 z M372,579C403,579 425,603 425,633C425,663 403,686 372,686C340,686 318,663 318,633C318,603 340,579 372,579 z M148,753l261,0l0,58l-261,0z"/>
379
+ <glyph unicode="&#x1D8;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M218,729l76,0l110,107l-103,0 z M186,579C217,579 240,603 240,633C240,663 217,686 186,686C155,686 132,663 132,633C132,603 155,579 186,579 z M372,579C403,579 425,603 425,633C425,663 403,686 372,686C340,686 318,663 318,633C318,603 340,579 372,579z"/>
380
+ <glyph unicode="&#x1DA;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M230,729l98,0l88,107l-81,0l-54,-61l-4,0l-55,61l-80,0 z M186,579C217,579 240,603 240,633C240,663 217,686 186,686C155,686 132,663 132,633C132,603 155,579 186,579 z M372,579C403,579 425,603 425,633C425,663 403,686 372,686C340,686 318,663 318,633C318,603 340,579 372,579z"/>
381
+ <glyph unicode="&#x1DC;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M257,836l-103,0l109,-107l76,0 z M372,579C403,579 425,603 425,633C425,663 403,686 372,686C340,686 318,663 318,633C318,603 340,579 372,579 z M186,579C217,579 240,603 240,633C240,663 217,686 186,686C155,686 132,663 132,633C132,603 155,579 186,579z"/>
382
+ <glyph unicode="&#x1EE5;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M297,-216C336,-216 365,-189 365,-150C365,-112 336,-85 297,-85C257,-85 229,-112 229,-150C229,-189 257,-216 297,-216z"/>
383
+ <glyph unicode="&#x1EE7;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0 z M247,555C314,563 372,590 372,653C372,706 325,736 219,740l-13,-61C262,676 287,663 287,641C287,619 265,610 237,603z"/>
384
+ <glyph unicode="&#x173;" horiz-adv-x="556" d="M68,183C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l10,-71C356,-24 316,-64 316,-120C316,-178 359,-208 414,-208C442,-208 482,-196 504,-178l-26,54C468,-132 454,-137 440,-137C418,-137 396,-123 396,-95C396,-60 421,-24 483,0l0,491l-115,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0z"/>
385
+ <glyph unicode="&#x1B0;" horiz-adv-x="556" d="M470,599C478,587 485,572 485,555C485,507 444,494 402,491l-34,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0l0,-308C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,453C532,468 576,501 576,563C576,592 564,618 550,636z"/>
386
+ <glyph unicode="&#x1EE9;" horiz-adv-x="556" d="M400,719l-114,0l-90,-146l86,0 z M470,599C478,587 485,572 485,555C485,507 444,494 402,491l-34,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0l0,-308C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,453C532,468 576,501 576,563C576,592 564,618 550,636z"/>
387
+ <glyph unicode="&#x1EEB;" horiz-adv-x="556" d="M343,573l-89,146l-115,0l119,-146 z M470,599C478,587 485,572 485,555C485,507 444,494 402,491l-34,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0l0,-308C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,453C532,468 576,501 576,563C576,592 564,618 550,636z"/>
388
+ <glyph unicode="&#x1EED;" horiz-adv-x="556" d="M238,555C305,563 363,590 363,653C363,706 316,736 210,740l-13,-61C253,676 278,663 278,641C278,619 256,610 228,603 z M470,599C478,587 485,572 485,555C485,507 444,494 402,491l-34,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0l0,-308C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,453C532,468 576,501 576,563C576,592 564,618 550,636z"/>
389
+ <glyph unicode="&#x1EEF;" horiz-adv-x="556" d="M361,698C355,665 344,650 326,650C295,650 261,698 210,698C159,698 125,653 117,577l61,0C185,610 195,625 214,625C245,625 278,577 330,577C381,577 415,622 423,698 z M470,599C478,587 485,572 485,555C485,507 444,494 402,491l-34,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0l0,-308C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,453C532,468 576,501 576,563C576,592 564,618 550,636z"/>
390
+ <glyph unicode="&#x1EF1;" horiz-adv-x="556" d="M288,-85C249,-85 220,-112 220,-150C220,-189 249,-216 288,-216C328,-216 356,-189 356,-150C356,-112 328,-85 288,-85 z M470,599C478,587 485,572 485,555C485,507 444,494 402,491l-34,0l0,-336C331,107 302,87 259,87C206,87 183,117 183,198l0,293l-115,0l0,-308C68,59 114,-12 219,-12C286,-12 334,21 377,72l3,0l9,-72l94,0l0,453C532,468 576,501 576,563C576,592 564,618 550,636z"/>
391
+ <glyph unicode="&#x1E81;" horiz-adv-x="748" d="M154,0l132,0l56,228C353,274 362,320 371,372l4,0C386,320 394,275 405,229l57,-229l137,0l125,491l-108,0l-59,-255C548,189 540,143 531,95l-4,0C516,143 506,189 494,236l-65,255l-105,0l-64,-255C248,190 238,143 229,95l-4,0C216,143 209,189 199,236l-59,255l-116,0 z M363,573l85,0l-89,146l-115,0z"/>
392
+ <glyph unicode="&#x1E83;" horiz-adv-x="748" d="M154,0l132,0l56,228C353,274 362,320 371,372l4,0C386,320 394,275 405,229l57,-229l137,0l125,491l-108,0l-59,-255C548,189 540,143 531,95l-4,0C516,143 506,189 494,236l-65,255l-105,0l-64,-255C248,190 238,143 229,95l-4,0C216,143 209,189 199,236l-59,255l-116,0 z M505,719l-114,0l-90,-146l86,0z"/>
393
+ <glyph unicode="&#x175;" horiz-adv-x="748" d="M154,0l132,0l56,228C353,274 362,320 371,372l4,0C386,320 394,275 405,229l57,-229l137,0l125,491l-108,0l-59,-255C548,189 540,143 531,95l-4,0C516,143 506,189 494,236l-65,255l-105,0l-64,-255C248,190 238,143 229,95l-4,0C216,143 209,189 199,236l-59,255l-116,0 z M233,573l80,0l60,85l4,0l60,-85l79,0l-95,146l-93,0z"/>
394
+ <glyph unicode="&#x1E85;" horiz-adv-x="748" d="M154,0l132,0l56,228C353,274 362,320 371,372l4,0C386,320 394,275 405,229l57,-229l137,0l125,491l-108,0l-59,-255C548,189 540,143 531,95l-4,0C516,143 506,189 494,236l-65,255l-105,0l-64,-255C248,190 238,143 229,95l-4,0C216,143 209,189 199,236l-59,255l-116,0 z M282,579C317,579 342,605 342,639C342,672 317,698 282,698C247,698 222,672 222,639C222,605 247,579 282,579 z M468,579C502,579 527,605 527,639C527,672 502,698 468,698C433,698 408,672 408,639C408,605 433,579 468,579z"/>
395
+ <glyph unicode="&#x1EF3;" horiz-adv-x="495" d="M63,-102l-21,-90C60,-198 79,-202 106,-202C213,-202 264,-133 305,-22l178,513l-111,0l-74,-241C286,206 273,157 261,112l-4,0C242,158 228,207 214,250l-85,241l-117,0l193,-485l-9,-31C180,-74 150,-109 98,-109C86,-109 72,-105 63,-102 z M243,573l86,0l-90,146l-114,0z"/>
396
+ <glyph unicode="&#xFD;" horiz-adv-x="495" d="M63,-102l-21,-90C60,-198 79,-202 106,-202C213,-202 264,-133 305,-22l178,513l-111,0l-74,-241C286,206 273,157 261,112l-4,0C242,158 228,207 214,250l-85,241l-117,0l193,-485l-9,-31C180,-74 150,-109 98,-109C86,-109 72,-105 63,-102 z M386,719l-115,0l-89,-146l85,0z"/>
397
+ <glyph unicode="&#x177;" horiz-adv-x="495" d="M63,-102l-21,-90C60,-198 79,-202 106,-202C213,-202 264,-133 305,-22l178,513l-111,0l-74,-241C286,206 273,157 261,112l-4,0C242,158 228,207 214,250l-85,241l-117,0l193,-485l-9,-31C180,-74 150,-109 98,-109C86,-109 72,-105 63,-102 z M114,573l79,0l60,85l4,0l60,-85l80,0l-95,146l-93,0z"/>
398
+ <glyph unicode="&#xFF;" horiz-adv-x="495" d="M63,-102l-21,-90C60,-198 79,-202 106,-202C213,-202 264,-133 305,-22l178,513l-111,0l-74,-241C286,206 273,157 261,112l-4,0C242,158 228,207 214,250l-85,241l-117,0l193,-485l-9,-31C180,-74 150,-109 98,-109C86,-109 72,-105 63,-102 z M162,579C197,579 222,605 222,639C222,672 197,698 162,698C128,698 103,672 103,639C103,605 128,579 162,579 z M348,579C383,579 408,605 408,639C408,672 383,698 348,698C313,698 288,672 288,639C288,605 313,579 348,579z"/>
399
+ <glyph unicode="&#x1E8F;" horiz-adv-x="495" d="M63,-102l-21,-90C60,-198 79,-202 106,-202C213,-202 264,-133 305,-22l178,513l-111,0l-74,-241C286,206 273,157 261,112l-4,0C242,158 228,207 214,250l-85,241l-117,0l193,-485l-9,-31C180,-74 150,-109 98,-109C86,-109 72,-105 63,-102 z M255,577C295,577 323,604 323,643C323,681 295,708 255,708C216,708 187,681 187,643C187,604 216,577 255,577z"/>
400
+ <glyph unicode="&#x1EF5;" horiz-adv-x="495" d="M63,-102l-21,-90C60,-198 79,-202 106,-202C213,-202 264,-133 305,-22l178,513l-111,0l-74,-241C286,206 273,157 261,112l-4,0C242,158 228,207 214,250l-85,241l-117,0l193,-485l-9,-31C180,-74 150,-109 98,-109C86,-109 72,-105 63,-102 z M420,-210C460,-210 488,-183 488,-144C488,-106 460,-79 420,-79C380,-79 352,-106 352,-144C352,-183 380,-210 420,-210z"/>
401
+ <glyph unicode="&#x1EF7;" horiz-adv-x="495" d="M63,-102l-21,-90C60,-198 79,-202 106,-202C213,-202 264,-133 305,-22l178,513l-111,0l-74,-241C286,206 273,157 261,112l-4,0C242,158 228,207 214,250l-85,241l-117,0l193,-485l-9,-31C180,-74 150,-109 98,-109C86,-109 72,-105 63,-102 z M224,555C290,563 349,590 349,653C349,706 301,736 195,740l-13,-61C239,676 264,663 264,641C264,619 242,610 213,603z"/>
402
+ <glyph unicode="&#x1EF9;" horiz-adv-x="495" d="M63,-102l-21,-90C60,-198 79,-202 106,-202C213,-202 264,-133 305,-22l178,513l-111,0l-74,-241C286,206 273,157 261,112l-4,0C242,158 228,207 214,250l-85,241l-117,0l193,-485l-9,-31C180,-74 150,-109 98,-109C86,-109 72,-105 63,-102 z M102,577l62,0C170,610 181,625 199,625C231,625 264,577 315,577C366,577 400,622 408,698l-61,0C340,665 330,650 311,650C280,650 247,698 195,698C144,698 110,653 102,577z"/>
403
+ <glyph unicode="&#x17A;" horiz-adv-x="443" d="M34,0l384,0l0,92l-239,0l231,338l0,61l-350,0l0,-91l206,0l-232,-338 z M368,719l-115,0l-89,-146l85,0z"/>
404
+ <glyph unicode="&#x17E;" horiz-adv-x="443" d="M34,0l384,0l0,92l-239,0l231,338l0,61l-350,0l0,-91l206,0l-232,-338 z M191,573l93,0l95,146l-80,0l-60,-85l-4,0l-60,85l-79,0z"/>
405
+ <glyph unicode="&#x17C;" horiz-adv-x="443" d="M34,0l384,0l0,92l-239,0l231,338l0,61l-350,0l0,-91l206,0l-232,-338 z M237,577C277,577 305,604 305,643C305,681 277,708 237,708C198,708 169,681 169,643C169,604 198,577 237,577z"/>
406
+ <glyph unicode="&#x1E93;" horiz-adv-x="443" d="M34,0l384,0l0,92l-239,0l231,338l0,61l-350,0l0,-91l206,0l-232,-338 z M237,-216C276,-216 305,-189 305,-150C305,-112 276,-85 237,-85C197,-85 169,-112 169,-150C169,-189 197,-216 237,-216z"/>
407
+ <glyph unicode="&#xF0;" horiz-adv-x="552" d="M274,82C209,82 154,136 154,225C154,311 200,364 273,364C313,364 351,351 387,306C388,290 389,273 389,256C389,146 347,82 274,82 z M487,666l-31,54l-143,-73C270,682 223,710 175,735l-51,-71C161,644 195,624 225,602l-122,-62l31,-53l142,72C321,515 354,464 372,397C341,435 297,451 252,451C142,451 48,365 48,225C48,79 152,-12 271,-12C410,-12 498,101 498,262C498,415 442,523 363,603z"/>
408
+ <glyph unicode="&#xFE;" horiz-adv-x="564" d="M188,-40l-2,78C225,6 264,-12 311,-12C420,-12 521,85 521,253C521,405 448,503 322,503C272,503 225,479 186,447l2,77l0,182l-115,0l0,-900l115,0 z M188,124l0,229C226,390 260,408 296,408C370,408 402,350 402,252C402,141 352,83 287,83C258,83 224,94 188,124z"/>
409
+ <glyph unicode="&#x237;" horiz-adv-x="263" d="M74,-27C74,-84 62,-115 18,-115C3,-115 -11,-111 -24,-107l-22,-86C-27,-200 -2,-206 34,-206C150,-206 190,-129 190,-25l0,516l-116,0z"/>
410
+ <glyph unicode="&#x251;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245z"/>
411
+ <glyph unicode="&#x259;" horiz-adv-x="507" d="M37,225C37,84 112,-12 244,-12C365,-12 466,86 466,246C466,407 370,503 243,503C178,503 117,482 68,448l39,-71C144,400 181,414 224,414C299,414 345,365 354,279l-312,0C39,267 37,247 37,225 z M136,206l219,0C345,120 302,77 241,77C173,77 136,123 136,206z"/>
412
+ <glyph unicode="&#x261;" horiz-adv-x="571" d="M120,-73l-40,-78C134,-186 203,-205 260,-205C410,-205 494,-134 494,-10l0,501l-94,0l-8,-45l-4,0C349,485 309,503 257,503C150,503 47,406 47,254C47,106 126,9 248,9C300,9 347,33 382,66l-3,-76C376,-73 341,-114 260,-114C217,-114 167,-102 120,-73 z M277,103C206,103 164,160 164,255C164,349 216,408 279,408C312,408 346,397 379,367l0,-208C346,120 315,103 277,103z"/>
413
+ <glyph unicode="&#xE003;" horiz-adv-x="616" d="M646,701C624,710 592,718 556,718C440,718 393,644 393,542l0,-51l-185,0l0,43C208,589 234,617 275,617C301,617 318,613 337,604l22,86C335,701 300,708 263,708C144,708 93,635 93,534l0,-43l-66,-5l0,-86l66,0l0,-400l115,0l0,400l185,0l0,-400l115,0l0,400l96,0l0,91l-96,0l0,53C508,601 530,627 571,627C588,627 606,623 624,615z"/>
414
+ <glyph unicode="&#xFB01;" horiz-adv-x="596" d="M93,491l-66,-5l0,-86l66,0l0,-400l115,0l0,400l96,0l0,91l-96,0l0,53C208,601 230,627 270,627C287,627 306,623 324,615l22,86C324,710 291,718 256,718C140,718 93,644 93,542 z M466,577C507,577 537,604 537,642C537,681 507,708 466,708C425,708 395,681 395,642C395,604 425,577 466,577 z M408,0l115,0l0,491l-115,0z"/>
415
+ <glyph unicode="&#xFB02;" horiz-adv-x="588" d="M93,491l-66,-5l0,-86l66,0l0,-400l115,0l0,400l96,0l0,91l-96,0l0,53C208,601 230,627 270,627C287,627 306,623 324,615l22,86C324,710 291,718 256,718C140,718 93,644 93,542 z M548,84C539,82 535,82 530,82C518,82 505,92 505,120l0,586l-115,0l0,-580C390,41 420,-12 502,-12C529,-12 548,-8 562,-2z"/>
416
+ <glyph unicode="&#xE004;" horiz-adv-x="642" d="M607,91C593,85 573,80 556,80C509,80 486,108 486,166l0,234l126,0l0,91l-126,0l0,134l-95,0l-14,-134l-169,0l0,53C208,601 230,627 270,627C287,627 306,623 324,615l22,86C324,710 291,718 256,718C140,718 93,644 93,542l0,-51l-66,-5l0,-86l66,0l0,-400l115,0l0,400l163,0l0,-234C371,60 413,-12 526,-12C566,-12 600,-3 627,6z"/>
417
+ <glyph unicode="&#xE005;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0z"/>
418
+ <glyph unicode="&#xE006;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0 z M155,704l93,0l-84,116l-126,0z"/>
419
+ <glyph unicode="&#xE007;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0 z M332,820l-126,0l-84,-116l94,0z"/>
420
+ <glyph unicode="&#xE008;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0 z M123,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
421
+ <glyph unicode="&#xE009;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0 z M247,707C297,707 335,753 343,829l-61,0C276,796 261,781 243,781C209,781 177,829 124,829C74,829 36,784 28,707l60,0C94,740 109,756 128,756C161,756 194,707 247,707z"/>
422
+ <glyph unicode="&#xE00A;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0 z M92,708C127,708 152,733 152,767C152,802 127,827 92,827C58,827 33,802 33,767C33,733 58,708 92,708 z M278,708C313,708 338,733 338,767C338,802 313,827 278,827C243,827 218,802 218,767C218,733 243,708 278,708z"/>
423
+ <glyph unicode="&#xE00B;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0 z M52,724l266,0l0,76l-266,0z"/>
424
+ <glyph unicode="&#xE00C;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0 z M185,707C226,707 256,734 256,773C256,811 226,838 185,838C144,838 114,811 114,773C114,734 144,707 185,707z"/>
425
+ <glyph unicode="&#xE00D;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0 z M247,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
426
+ <glyph unicode="&#xE00E;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0 z M154,694C220,702 279,730 279,793C279,845 231,876 125,879l-13,-61C169,815 194,803 194,780C194,759 172,749 143,743z"/>
427
+ <glyph unicode="&#xE00F;" horiz-adv-x="370" d="M49,0l271,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0 z M186,-216C226,-216 254,-189 254,-150C254,-112 226,-85 186,-85C146,-85 118,-112 118,-150C118,-189 146,-216 186,-216z"/>
428
+ <glyph unicode="&#xE010;" horiz-adv-x="370" d="M49,0l106,0C126,-23 86,-70 86,-127C86,-186 132,-218 191,-218C222,-218 261,-204 283,-186l-28,60C244,-134 231,-140 217,-140C194,-140 172,-127 172,-98C172,-64 194,-29 231,0l89,0l0,98l-77,0l0,458l77,0l0,98l-271,0l0,-98l78,0l0,-458l-78,0z"/>
429
+ <glyph unicode="&#xE011;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245z"/>
430
+ <glyph unicode="&#xE012;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M279,573l86,0l-90,146l-114,0z"/>
431
+ <glyph unicode="&#xE013;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M422,719l-115,0l-89,-146l85,0z"/>
432
+ <glyph unicode="&#xE014;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M150,573l79,0l60,85l4,0l60,-85l80,0l-95,146l-93,0z"/>
433
+ <glyph unicode="&#xE015;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M138,577l62,0C206,610 217,625 235,625C267,625 300,577 351,577C402,577 436,622 444,698l-61,0C376,665 366,650 347,650C316,650 283,698 231,698C180,698 146,653 138,577z"/>
434
+ <glyph unicode="&#xE016;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M198,579C233,579 258,605 258,639C258,672 233,698 198,698C164,698 139,672 139,639C139,605 164,579 198,579 z M384,579C419,579 444,605 444,639C444,672 419,698 384,698C349,698 324,672 324,639C324,605 349,579 384,579z"/>
435
+ <glyph unicode="&#xE017;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M161,596l261,0l0,76l-261,0z"/>
436
+ <glyph unicode="&#xE018;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M291,575C381,575 420,642 424,708l-67,0C352,672 332,640 291,640C250,640 230,672 225,708l-67,0C162,642 202,575 291,575z"/>
437
+ <glyph unicode="&#xE019;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M291,545C352,545 394,584 394,642C394,701 352,740 291,740C230,740 188,701 188,642C188,584 230,545 291,545 z M291,591C267,591 247,612 247,642C247,673 267,694 291,694C316,694 336,673 336,642C336,612 316,591 291,591z"/>
438
+ <glyph unicode="&#xE01A;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M245,573l93,0l95,146l-80,0l-60,-85l-4,0l-60,85l-79,0z"/>
439
+ <glyph unicode="&#xE01B;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M293,-216C332,-216 361,-189 361,-150C361,-112 332,-85 293,-85C253,-85 225,-112 225,-150C225,-189 253,-216 293,-216z"/>
440
+ <glyph unicode="&#xE01C;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M260,555C326,563 385,590 385,653C385,706 337,736 231,740l-13,-61C275,676 300,663 300,641C300,619 278,610 249,603z"/>
441
+ <glyph unicode="&#xE01D;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M163,573l74,0l52,69l4,0l53,-69l73,0l-81,124l-93,0 z M389,643l67,0l94,116l-90,0z"/>
442
+ <glyph unicode="&#xE01E;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M163,573l74,0l52,69l4,0l53,-69l73,0l-81,124l-93,0 z M446,759l-90,0l94,-116l67,0z"/>
443
+ <glyph unicode="&#xE01F;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M163,573l74,0l52,69l4,0l53,-69l73,0l-81,124l-93,0 z M418,628C474,638 523,657 523,716C523,763 482,790 388,793l-10,-52C428,738 445,726 445,704C445,685 430,676 409,670z"/>
444
+ <glyph unicode="&#xE020;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M155,572l77,0l57,62l4,0l57,-62l77,0l-83,108l-105,0 z M206,716C211,744 224,756 243,756C273,756 293,716 345,716C390,716 423,752 430,818l-53,0C372,790 358,778 340,778C310,778 289,818 238,818C192,818 160,782 153,716z"/>
445
+ <glyph unicode="&#xE021;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M150,573l79,0l60,85l4,0l60,-85l80,0l-95,146l-93,0 z M293,-216C332,-216 361,-189 361,-150C361,-112 332,-85 293,-85C253,-85 225,-112 225,-150C225,-189 253,-216 293,-216z"/>
446
+ <glyph unicode="&#xE022;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M249,684l62,0l88,116l-87,0 z M291,575C381,575 420,642 424,708l-55,0C363,668 339,634 291,634C243,634 219,668 213,708l-55,0C162,642 202,575 291,575z"/>
447
+ <glyph unicode="&#xE023;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M270,800l-87,0l89,-116l61,0 z M291,575C381,575 420,642 424,708l-55,0C363,668 339,634 291,634C243,634 219,668 213,708l-55,0C162,642 202,575 291,575z"/>
448
+ <glyph unicode="&#xE024;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M291,575C381,575 420,642 424,708l-55,0C363,668 339,634 291,634C243,634 219,668 213,708l-55,0C162,642 202,575 291,575 z M260,691C316,700 366,719 366,779C366,826 325,852 231,855l-11,-51C270,801 288,789 288,767C288,747 273,739 251,733z"/>
449
+ <glyph unicode="&#xE025;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M291,575C381,575 420,629 423,688l-57,0C360,659 339,632 291,632C244,632 222,659 216,688l-57,0C163,629 202,575 291,575 z M153,716l53,0C211,744 224,756 243,756C273,756 293,716 345,716C390,716 423,752 430,818l-53,0C372,790 358,778 340,778C310,778 289,818 238,818C192,818 160,782 153,716z"/>
450
+ <glyph unicode="&#xE026;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l8,-53l95,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245 z M291,575C381,575 420,642 424,708l-67,0C352,672 332,640 291,640C250,640 230,672 225,708l-67,0C162,642 202,575 291,575 z M293,-216C332,-216 361,-189 361,-150C361,-112 332,-85 293,-85C253,-85 225,-112 225,-150C225,-189 253,-216 293,-216z"/>
451
+ <glyph unicode="&#xE027;" horiz-adv-x="564" d="M162,246C162,349 213,408 276,408C309,408 342,397 376,367l0,-229C343,100 311,83 273,83C202,83 162,140 162,246 z M43,245C43,83 122,-12 245,-12C298,-12 348,17 384,53l4,0l10,-52C363,-24 323,-64 323,-120C323,-178 367,-208 422,-208C450,-208 489,-196 512,-178l-26,54C475,-132 462,-137 448,-137C425,-137 404,-123 404,-95C404,-60 428,-24 491,0l0,491l-92,0l-9,-48l-3,0C346,484 306,503 254,503C146,503 43,405 43,245z"/>
452
+ <glyph unicode="&#xE028;" horiz-adv-x="571" d="M120,-73l-40,-78C134,-186 203,-205 260,-205C410,-205 494,-134 494,-10l0,501l-94,0l-8,-45l-4,0C349,485 309,503 257,503C150,503 47,406 47,254C47,106 126,9 248,9C300,9 347,33 382,66l-3,-76C376,-73 341,-114 260,-114C217,-114 167,-102 120,-73 z M277,103C206,103 164,160 164,255C164,349 216,408 279,408C312,408 346,397 379,367l0,-208C346,120 315,103 277,103z"/>
453
+ <glyph unicode="&#xE029;" horiz-adv-x="571" d="M120,-73l-40,-78C134,-186 203,-205 260,-205C410,-205 494,-134 494,-10l0,501l-94,0l-8,-45l-4,0C349,485 309,503 257,503C150,503 47,406 47,254C47,106 126,9 248,9C300,9 347,33 382,66l-3,-76C376,-73 341,-114 260,-114C217,-114 167,-102 120,-73 z M277,103C206,103 164,160 164,255C164,349 216,408 279,408C312,408 346,397 379,367l0,-208C346,120 315,103 277,103 z M153,573l79,0l60,85l4,0l60,-85l80,0l-95,146l-93,0z"/>
454
+ <glyph unicode="&#xE02A;" horiz-adv-x="571" d="M120,-73l-40,-78C134,-186 203,-205 260,-205C410,-205 494,-134 494,-10l0,501l-94,0l-8,-45l-4,0C349,485 309,503 257,503C150,503 47,406 47,254C47,106 126,9 248,9C300,9 347,33 382,66l-3,-76C376,-73 341,-114 260,-114C217,-114 167,-102 120,-73 z M277,103C206,103 164,160 164,255C164,349 216,408 279,408C312,408 346,397 379,367l0,-208C346,120 315,103 277,103 z M294,575C384,575 424,642 427,708l-67,0C356,672 335,640 294,640C253,640 233,672 228,708l-66,0C165,642 205,575 294,575z"/>
455
+ <glyph unicode="&#xE02B;" horiz-adv-x="571" d="M120,-73l-40,-78C134,-186 203,-205 260,-205C410,-205 494,-134 494,-10l0,501l-94,0l-8,-45l-4,0C349,485 309,503 257,503C150,503 47,406 47,254C47,106 126,9 248,9C300,9 347,33 382,66l-3,-76C376,-73 341,-114 260,-114C217,-114 167,-102 120,-73 z M277,103C206,103 164,160 164,255C164,349 216,408 279,408C312,408 346,397 379,367l0,-208C346,120 315,103 277,103 z M294,577C334,577 362,604 362,643C362,681 334,708 294,708C255,708 226,681 226,643C226,604 255,577 294,577z"/>
456
+ <glyph unicode="&#xE02C;" horiz-adv-x="571" d="M120,-73l-40,-78C134,-186 203,-205 260,-205C410,-205 494,-134 494,-10l0,501l-94,0l-8,-45l-4,0C349,485 309,503 257,503C150,503 47,406 47,254C47,106 126,9 248,9C300,9 347,33 382,66l-3,-76C376,-73 341,-114 260,-114C217,-114 167,-102 120,-73 z M277,103C206,103 164,160 164,255C164,349 216,408 279,408C312,408 346,397 379,367l0,-208C346,120 315,103 277,103 z M326,543l23,46C320,596 302,607 302,630C302,654 338,665 388,671l-10,50C293,715 217,686 217,623C217,576 247,552 326,543z"/>
457
+ <glyph unicode="&#xE02D;" horiz-adv-x="571" d="M120,-73l-40,-78C134,-186 203,-205 260,-205C410,-205 494,-134 494,-10l0,501l-94,0l-8,-45l-4,0C349,485 309,503 257,503C150,503 47,406 47,254C47,106 126,9 248,9C300,9 347,33 382,66l-3,-76C376,-73 341,-114 260,-114C217,-114 167,-102 120,-73 z M277,103C206,103 164,160 164,255C164,349 216,408 279,408C312,408 346,397 379,367l0,-208C346,120 315,103 277,103 z M248,573l93,0l95,146l-80,0l-60,-85l-4,0l-60,85l-79,0z"/>
458
+ <glyph unicode="&#xE02E;" horiz-adv-x="571" d="M120,-73l-40,-78C134,-186 203,-205 260,-205C410,-205 494,-134 494,-10l0,501l-94,0l-8,-45l-4,0C349,485 309,503 257,503C150,503 47,406 47,254C47,106 126,9 248,9C300,9 347,33 382,66l-3,-76C376,-73 341,-114 260,-114C217,-114 167,-102 120,-73 z M277,103C206,103 164,160 164,255C164,349 216,408 279,408C312,408 346,397 379,367l0,-208C346,120 315,103 277,103 z M164,596l261,0l0,76l-261,0z"/>
459
+ <glyph unicode="&#xE02F;" horiz-adv-x="571" d="M120,-73l-40,-78C134,-186 203,-205 260,-205C410,-205 494,-134 494,-10l0,501l-94,0l-8,-45l-4,0C349,485 309,503 257,503C150,503 47,406 47,254C47,106 126,9 248,9C300,9 347,33 382,66l-3,-76C376,-73 341,-114 260,-114C217,-114 167,-102 120,-73 z M277,103C206,103 164,160 164,255C164,349 216,408 279,408C312,408 346,397 379,367l0,-208C346,120 315,103 277,103 z M142,577l61,0C209,610 220,625 238,625C270,625 303,577 354,577C406,577 439,622 447,698l-61,0C380,665 369,650 350,650C320,650 286,698 234,698C183,698 150,653 142,577z"/>
460
+ <glyph unicode="&#xE030;" horiz-adv-x="262" d="M73,0l115,0l0,706l-115,0z"/>
461
+ <glyph unicode="&#xE031;" horiz-adv-x="262" d="M73,0l115,0l0,706l-115,0 z M278,874l-126,0l-84,-116l93,0z"/>
462
+ <glyph unicode="&#xE032;" horiz-adv-x="292" d="M73,0l115,0l0,706l-115,0 z M290,548l20,154l1,63l-77,0l4,-217z"/>
463
+ <glyph unicode="&#xE033;" horiz-adv-x="408" d="M73,0l115,0l0,706l-115,0 z M260,327C260,282 293,249 335,249C377,249 409,282 409,327C409,372 377,405 335,405C293,405 260,372 260,327z"/>
464
+ <glyph unicode="&#xE034;" horiz-adv-x="262" d="M73,0l115,0l0,706l-115,0 z M98,-45l-23,-46C104,-98 122,-109 122,-132C122,-156 86,-167 36,-173l10,-50C131,-217 207,-188 207,-125C207,-78 177,-54 98,-45z"/>
465
+ <glyph unicode="&#xE035;" horiz-adv-x="262" d="M73,0l115,0l0,706l-115,0 z M131,-216C170,-216 199,-189 199,-150C199,-112 170,-85 131,-85C91,-85 63,-112 63,-150C63,-189 91,-216 131,-216z"/>
466
+ <glyph unicode="&#xE036;" horiz-adv-x="262" d="M73,0l115,0l0,706l-115,0 z M0,812l261,0l0,76l-261,0 z M131,-216C170,-216 199,-189 199,-150C199,-112 170,-85 131,-85C91,-85 63,-112 63,-150C63,-189 91,-216 131,-216z"/>
467
+ <glyph unicode="&#xE037;" horiz-adv-x="262" d="M73,0l115,0l0,706l-115,0 z M261,-104l-262,0l0,-76l262,0z"/>
468
+ <glyph unicode="&#xE038;" horiz-adv-x="278" d="M264,498l-76,-46l0,254l-115,0l0,-313l-54,-34l0,-94l54,34l0,-299l115,0l0,357l76,46z"/>
469
+ <glyph unicode="&#xE039;" horiz-adv-x="596" d="M93,491l-66,-5l0,-86l66,0l0,-400l115,0l0,400l96,0l0,91l-96,0l0,53C208,601 230,627 270,627C287,627 306,623 324,615l22,86C324,710 291,718 256,718C140,718 93,644 93,542 z M408,706l0,-706l115,0l0,706z"/>
470
+ <glyph unicode="&amp;" horiz-adv-x="639" d="M138,179C138,219 164,251 201,281C243,222 298,165 356,116C323,92 287,77 251,77C186,77 138,118 138,179 z M207,504C207,554 236,588 277,588C315,588 330,561 330,526C330,475 287,442 233,408C217,442 207,474 207,504 z M622,82C587,89 547,108 504,134C555,202 592,279 616,361l-106,0C492,293 463,235 427,187C371,230 318,283 278,337C349,387 420,441 420,527C420,610 365,666 276,666C176,666 111,593 111,503C111,458 126,409 153,359C87,315 28,262 28,172C28,69 107,-12 237,-12C317,-12 382,15 434,58C488,23 543,0 593,-12z"/>
471
+ <glyph unicode="0" horiz-adv-x="513" d="M256,-12C388,-12 472,106 472,321C472,535 388,648 256,648C124,648 40,536 40,321C40,106 124,-12 256,-12 z M256,78C195,78 150,141 150,321C150,501 195,558 256,558C318,558 362,501 362,321C362,141 318,78 256,78z"/>
472
+ <glyph unicode="1" horiz-adv-x="513" d="M74,0l383,0l0,94l-125,0l0,542l-86,0C206,612 162,596 99,584l0,-72l117,0l0,-418l-142,0z"/>
473
+ <glyph unicode="2" horiz-adv-x="513" d="M38,0l430,0l0,98l-156,0C281,98 239,94 206,91C332,224 437,340 437,453C437,571 358,648 236,648C149,648 91,612 33,550l64,-64C131,524 172,557 221,557C289,557 326,514 326,447C326,350 215,238 38,67z"/>
474
+ <glyph unicode="3" horiz-adv-x="513" d="M24,78C69,28 137,-12 240,-12C362,-12 463,56 463,172C463,256 406,310 331,330l0,4C400,361 442,409 442,480C442,588 358,648 236,648C160,648 99,616 45,568l59,-71C143,533 182,557 232,557C290,557 326,525 326,472C326,413 285,370 160,370l0,-84C305,286 347,244 347,178C347,118 299,82 230,82C166,82 117,113 79,152z"/>
475
+ <glyph unicode="4" horiz-adv-x="513" d="M132,253l116,177C266,464 284,496 300,529l4,0C302,492 299,434 299,397l0,-144 z M487,253l-80,0l0,383l-137,0l-252,-394l0,-78l281,0l0,-164l108,0l0,164l80,0z"/>
476
+ <glyph unicode="5" horiz-adv-x="513" d="M24,76C71,29 138,-12 241,-12C358,-12 465,68 465,207C465,344 374,406 265,406C232,406 208,398 181,385l13,154l240,0l0,97l-340,0l-19,-314l55,-35C168,312 191,323 232,323C302,323 349,280 349,204C349,127 297,82 226,82C162,82 115,114 77,150z"/>
477
+ <glyph unicode="6" horiz-adv-x="513" d="M273,76C211,76 166,124 154,237C190,290 232,310 268,310C331,310 368,272 368,197C368,119 326,76 273,76 z M464,576C426,616 371,648 294,648C164,648 44,546 44,299C44,85 150,-12 275,-12C384,-12 475,70 475,197C475,330 399,394 289,394C243,394 188,366 151,319C156,495 221,554 301,554C339,554 379,534 402,506z"/>
478
+ <glyph unicode="7" horiz-adv-x="513" d="M168,0l117,0C296,248 322,381 471,566l0,70l-427,0l0,-97l301,0C222,368 179,226 168,0z"/>
479
+ <glyph unicode="8" horiz-adv-x="513" d="M142,175C142,224 171,265 211,294C297,259 364,234 364,165C364,106 320,70 259,70C194,70 142,112 142,175 z M299,359C228,387 171,415 171,479C171,534 209,566 258,566C317,566 352,525 352,469C352,429 333,393 299,359 z M41,163C41,60 133,-12 257,-12C386,-12 472,63 472,161C472,246 421,293 362,326l0,4C403,360 447,413 447,476C447,579 374,648 260,648C150,648 68,582 68,479C68,412 107,365 156,330l0,-4C96,294 41,242 41,163z"/>
480
+ <glyph unicode="9" horiz-adv-x="513" d="M244,326C180,326 143,365 143,440C143,517 186,560 238,560C300,560 346,512 358,400C323,347 280,326 244,326 z M47,60C85,20 141,-12 217,-12C348,-12 467,91 467,338C467,552 361,648 237,648C128,648 37,567 37,440C37,307 113,243 222,243C268,243 324,271 361,317C356,141 291,82 211,82C172,82 133,102 109,130z"/>
481
+ <glyph unicode="&#xE03A;" horiz-adv-x="559" d="M280,-12C418,-12 506,111 506,321C506,530 418,648 280,648C142,648 54,530 54,321C54,111 142,-12 280,-12 z M280,82C213,82 170,146 170,321C170,496 213,554 280,554C346,554 390,496 390,321C390,146 346,82 280,82z"/>
482
+ <glyph unicode="&#xE03B;" horiz-adv-x="390" d="M162,0l115,0l0,636l-86,0C151,612 108,596 44,584l0,-72l118,0z"/>
483
+ <glyph unicode="&#xE03C;" horiz-adv-x="514" d="M44,0l418,0l0,98l-144,0C287,98 245,94 212,91C335,224 437,340 437,453C437,571 361,648 240,648C154,648 95,614 35,550l64,-64C133,524 175,557 224,557C293,557 326,514 326,447C326,350 218,238 44,67z"/>
484
+ <glyph unicode="&#xE03D;" horiz-adv-x="513" d="M24,78C69,28 137,-12 240,-12C362,-12 463,56 463,172C463,256 406,310 331,330l0,4C400,361 442,409 442,480C442,588 358,648 236,648C160,648 99,616 45,568l59,-71C143,533 182,557 232,557C290,557 326,525 326,472C326,413 285,370 160,370l0,-84C305,286 347,244 347,178C347,118 299,82 230,82C166,82 117,113 79,152z"/>
485
+ <glyph unicode="&#xE03E;" horiz-adv-x="540" d="M150,253l115,177C283,464 301,496 317,529l4,0C319,492 316,434 316,397l0,-144 z M504,253l-80,0l0,383l-136,0l-252,-394l0,-78l280,0l0,-164l108,0l0,164l80,0z"/>
486
+ <glyph unicode="&#xE03F;" horiz-adv-x="513" d="M24,76C71,29 138,-12 241,-12C358,-12 465,68 465,207C465,344 374,406 265,406C232,406 208,398 181,385l13,154l240,0l0,97l-340,0l-19,-314l55,-35C168,312 191,323 232,323C302,323 349,280 349,204C349,127 297,82 226,82C162,82 115,114 77,150z"/>
487
+ <glyph unicode="&#xE040;" horiz-adv-x="544" d="M288,76C226,76 181,124 169,237C204,291 247,310 283,310C346,310 383,272 383,197C383,119 341,76 288,76 z M479,576C441,616 386,648 309,648C179,648 59,546 59,299C59,85 165,-12 290,-12C398,-12 490,70 490,197C490,330 414,394 304,394C259,394 203,366 166,320C171,495 236,554 316,554C354,554 394,534 417,506z"/>
488
+ <glyph unicode="&#xE041;" horiz-adv-x="504" d="M158,0l117,0C286,248 310,381 457,566l0,70l-413,0l0,-97l287,0C210,368 169,226 158,0z"/>
489
+ <glyph unicode="&#xE042;" horiz-adv-x="537" d="M154,175C154,224 183,265 223,294C309,259 376,234 376,165C376,106 332,70 271,70C206,70 154,112 154,175 z M311,359C240,387 183,415 183,479C183,534 221,566 270,566C329,566 364,525 364,469C364,429 345,393 311,359 z M53,163C53,60 145,-12 269,-12C398,-12 484,63 484,161C484,246 433,293 374,326l0,4C415,360 459,413 459,476C459,579 386,648 272,648C162,648 80,582 80,479C80,412 119,365 168,330l0,-4C108,294 53,242 53,163z"/>
490
+ <glyph unicode="&#xE043;" horiz-adv-x="544" d="M258,326C194,326 157,365 157,440C157,517 200,560 252,560C314,560 360,512 372,400C337,347 294,326 258,326 z M61,60C99,20 155,-12 231,-12C362,-12 481,91 481,338C481,552 375,648 251,648C142,648 51,567 51,440C51,307 127,243 236,243C282,243 338,271 375,317C370,141 305,82 225,82C186,82 147,102 123,130z"/>
491
+ <glyph unicode="&#xE044;" horiz-adv-x="513" d="M256,-12C386,-12 472,92 472,288C472,484 386,588 256,588C127,588 40,484 40,288C40,92 127,-12 256,-12 z M256,78C188,78 150,159 150,288C150,417 188,498 256,498C325,498 362,417 362,288C362,159 325,78 256,78z"/>
492
+ <glyph unicode="&#xE045;" horiz-adv-x="513" d="M74,0l383,0l0,94l-125,0l0,482l-86,0C206,552 162,535 99,524l0,-73l117,0l0,-357l-142,0z"/>
493
+ <glyph unicode="&#xE046;" horiz-adv-x="513" d="M38,0l430,0l0,98l-145,0C292,98 250,94 216,91C343,209 434,294 434,396C434,510 355,587 236,587C149,587 91,551 33,488l64,-63C131,463 172,496 222,496C287,496 322,453 322,391C322,303 214,209 38,67z"/>
494
+ <glyph unicode="&#xE047;" horiz-adv-x="513" d="M24,2C69,-48 137,-88 240,-88C362,-88 463,-16 463,100C463,186 406,243 331,262l0,4C400,294 442,346 442,417C442,525 358,588 236,588C160,588 99,556 45,508l59,-72C143,473 182,496 232,496C290,496 326,462 326,409C326,350 285,302 160,302l0,-84C305,218 347,172 347,107C347,47 299,6 230,6C166,6 117,37 79,76z"/>
495
+ <glyph unicode="&#xE048;" horiz-adv-x="513" d="M132,178l116,184C266,396 284,433 300,467l4,0C302,430 299,373 299,336l0,-158 z M487,178l-80,0l0,398l-137,0l-252,-409l0,-79l281,0l0,-164l108,0l0,164l80,0z"/>
496
+ <glyph unicode="&#xE049;" horiz-adv-x="513" d="M24,2C71,-46 138,-88 241,-88C358,-88 465,-7 465,136C465,274 374,338 265,338C232,338 208,331 181,318l13,160l240,0l0,98l-340,0l-19,-321l55,-35C168,244 191,255 232,255C302,255 349,210 349,133C349,54 297,6 226,6C162,6 115,38 77,74z"/>
497
+ <glyph unicode="&#xE04A;" horiz-adv-x="513" d="M274,76C212,76 167,124 155,237C190,291 233,310 269,310C332,310 369,272 369,197C369,119 327,76 274,76 z M465,576C427,616 372,648 295,648C165,648 45,546 45,299C45,85 151,-12 276,-12C384,-12 476,70 476,197C476,330 400,394 290,394C245,394 189,366 152,320C157,495 222,554 302,554C340,554 380,534 403,506z"/>
498
+ <glyph unicode="&#xE04B;" horiz-adv-x="513" d="M168,-76l117,0C296,175 322,318 471,505l0,71l-427,0l0,-98l301,0C222,306 179,152 168,-76z"/>
499
+ <glyph unicode="&#xE04C;" horiz-adv-x="513" d="M142,175C142,224 171,265 211,294C297,259 364,234 364,165C364,106 320,70 259,70C194,70 142,112 142,175 z M299,359C228,387 171,415 171,479C171,534 209,566 258,566C317,566 352,525 352,469C352,429 333,393 299,359 z M41,163C41,60 133,-12 257,-12C386,-12 472,63 472,161C472,246 421,293 362,326l0,4C403,360 447,413 447,476C447,579 374,648 260,648C150,648 68,582 68,479C68,412 107,365 156,330l0,-4C96,294 41,242 41,163z"/>
500
+ <glyph unicode="&#xE04D;" horiz-adv-x="513" d="M236,245C170,245 134,288 134,373C134,452 178,500 234,500C301,500 350,450 360,321C322,265 277,245 236,245 z M52,-33C100,-70 144,-88 211,-88C375,-88 471,42 471,269C471,466 379,588 232,588C121,588 28,502 28,373C28,238 97,162 215,162C264,162 324,189 361,236C354,64 291,6 203,6C161,6 128,20 96,47z"/>
501
+ <glyph unicode="&#xE04E;" horiz-adv-x="532" d="M264,-12C394,-12 480,92 480,288C480,484 394,588 264,588C135,588 48,484 48,288C48,92 135,-12 264,-12 z M264,78C196,78 158,159 158,288C158,417 196,498 264,498C333,498 370,417 370,288C370,159 333,78 264,78z"/>
502
+ <glyph unicode="&#xE04F;" horiz-adv-x="390" d="M162,0l115,0l0,576l-86,0C151,552 108,535 44,524l0,-73l118,0z"/>
503
+ <glyph unicode="&#xE050;" horiz-adv-x="508" d="M46,0l410,0l0,98l-130,0C295,98 253,94 220,91C346,209 429,294 429,396C429,510 353,587 234,587C147,587 94,551 36,488l64,-63C134,463 170,496 220,496C286,496 318,453 318,391C318,303 222,209 46,67z"/>
504
+ <glyph unicode="&#xE051;" horiz-adv-x="513" d="M24,2C69,-48 137,-88 240,-88C362,-88 463,-16 463,100C463,186 406,243 331,262l0,4C400,294 442,346 442,417C442,525 358,588 236,588C160,588 99,556 45,508l59,-72C143,473 182,496 232,496C290,496 326,462 326,409C326,350 285,302 160,302l0,-84C305,218 347,172 347,107C347,47 299,6 230,6C166,6 117,37 79,76z"/>
505
+ <glyph unicode="&#xE052;" horiz-adv-x="532" d="M140,178l116,184C274,396 292,433 308,467l4,0C310,430 307,373 307,336l0,-158 z M495,178l-80,0l0,398l-137,0l-252,-409l0,-79l281,0l0,-164l108,0l0,164l80,0z"/>
506
+ <glyph unicode="&#xE053;" horiz-adv-x="513" d="M24,2C71,-46 138,-88 241,-88C358,-88 465,-7 465,136C465,274 374,338 265,338C232,338 208,331 181,318l13,160l240,0l0,98l-340,0l-19,-321l55,-35C168,244 191,255 232,255C302,255 349,210 349,133C349,54 297,6 226,6C162,6 115,38 77,74z"/>
507
+ <glyph unicode="&#xE054;" horiz-adv-x="532" d="M282,76C220,76 175,124 163,237C198,291 241,310 277,310C340,310 377,272 377,197C377,119 335,76 282,76 z M473,576C435,616 380,648 303,648C173,648 53,546 53,299C53,85 159,-12 284,-12C392,-12 484,70 484,197C484,330 408,394 298,394C253,394 197,366 160,320C165,495 230,554 310,554C348,554 388,534 411,506z"/>
508
+ <glyph unicode="&#xE055;" horiz-adv-x="503" d="M154,-76l117,0C282,178 310,317 457,505l0,71l-413,0l0,-98l287,0C210,305 166,154 154,-76z"/>
509
+ <glyph unicode="&#xE056;" horiz-adv-x="533" d="M150,175C150,224 179,265 219,294C305,259 372,234 372,165C372,106 328,70 267,70C202,70 150,112 150,175 z M307,359C236,387 179,415 179,479C179,534 217,566 266,566C325,566 360,525 360,469C360,429 341,393 307,359 z M49,163C49,60 141,-12 265,-12C394,-12 480,63 480,161C480,246 429,293 370,326l0,4C411,360 455,413 455,476C455,579 382,648 268,648C158,648 76,582 76,479C76,412 115,365 164,330l0,-4C104,294 49,242 49,163z"/>
510
+ <glyph unicode="&#xE057;" horiz-adv-x="532" d="M244,245C178,245 142,288 142,373C142,452 186,500 242,500C309,500 358,450 368,321C330,265 285,245 244,245 z M60,-33C108,-70 152,-88 219,-88C383,-88 479,42 479,269C479,466 387,588 240,588C129,588 36,502 36,373C36,238 105,162 223,162C272,162 332,189 369,236C362,64 299,6 211,6C169,6 136,20 104,47z"/>
511
+ <glyph unicode="." horiz-adv-x="275" d="M63,66C63,21 96,-12 138,-12C180,-12 212,21 212,66C212,111 180,144 138,144C96,144 63,111 63,66z"/>
512
+ <glyph unicode="," horiz-adv-x="275" d="M72,-182C171,-148 228,-72 228,26C228,100 196,144 142,144C100,144 65,116 65,73C65,28 100,2 139,2C142,2 145,2 148,2C148,-49 111,-94 47,-119z"/>
513
+ <glyph unicode=":" horiz-adv-x="275" d="M63,408C63,363 96,330 138,330C180,330 212,363 212,408C212,453 180,486 138,486C96,486 63,453 63,408 z M63,66C63,21 96,-12 138,-12C180,-12 212,21 212,66C212,111 180,144 138,144C96,144 63,111 63,66z"/>
514
+ <glyph unicode=";" horiz-adv-x="275" d="M138,330C180,330 212,363 212,408C212,453 180,486 138,486C96,486 63,453 63,408C63,363 96,330 138,330 z M72,-182C171,-148 228,-72 228,26C228,100 196,144 142,144C100,144 65,116 65,73C65,28 100,2 139,2C142,2 145,2 148,2C148,-49 111,-94 47,-119z"/>
515
+ <glyph unicode="&#x2026;" horiz-adv-x="964" d="M85,66C85,21 118,-12 160,-12C202,-12 234,21 234,66C234,111 202,144 160,144C118,144 85,111 85,66 z M418,66C418,21 451,-12 493,-12C535,-12 567,21 567,66C567,111 535,144 493,144C451,144 418,111 418,66 z M752,66C752,21 784,-12 826,-12C868,-12 900,21 900,66C900,111 868,144 826,144C784,144 752,111 752,66z"/>
516
+ <glyph unicode="!" horiz-adv-x="315" d="M119,215l77,0l16,341l4,114l-116,0l3,-114 z M83,66C83,21 116,-12 158,-12C200,-12 232,21 232,66C232,111 200,144 158,144C116,144 83,111 83,66z"/>
517
+ <glyph unicode="&#xA1;" horiz-adv-x="315" d="M196,276l-77,0l-16,-341l-3,-114l116,0l-4,114 z M232,426C232,470 200,503 158,503C116,503 83,470 83,426C83,380 116,347 158,347C200,347 232,380 232,426z"/>
518
+ <glyph unicode="?" horiz-adv-x="444" d="M157,215l101,0C244,344 400,389 400,516C400,625 323,682 215,682C142,682 83,646 40,595l64,-59C133,568 166,588 207,588C258,588 288,556 288,508C288,418 136,361 157,215 z M134,66C134,21 166,-12 208,-12C250,-12 283,21 283,66C283,111 250,144 208,144C166,144 134,111 134,66z"/>
519
+ <glyph unicode="&#xBF;" horiz-adv-x="444" d="M288,276l-102,0C200,147 45,102 45,-25C45,-134 122,-191 230,-191C302,-191 361,-154 405,-104l-65,59C311,-76 278,-97 238,-97C186,-97 156,-64 156,-17C156,73 308,130 288,276 z M310,426C310,470 278,503 236,503C194,503 162,470 162,426C162,380 194,347 236,347C278,347 310,380 310,426z"/>
520
+ <glyph unicode="'" horiz-adv-x="275" d="M104,392l66,0l23,183l3,113l-118,0l4,-113z"/>
521
+ <glyph unicode="&quot;" horiz-adv-x="482" d="M104,392l66,0l23,183l3,113l-118,0l4,-113 z M312,392l65,0l23,183l4,113l-119,0l4,-113z"/>
522
+ <glyph unicode="&#x2018;" horiz-adv-x="275" d="M180,689C98,646 56,580 56,493C56,423 84,382 134,382C172,382 200,409 200,451C200,490 170,513 134,513C131,513 128,513 125,512C125,571 153,606 208,638z"/>
523
+ <glyph unicode="&#x2019;" horiz-adv-x="275" d="M95,391C178,434 220,500 220,587C220,657 192,698 141,698C103,698 76,671 76,629C76,590 106,567 141,567C144,567 147,567 150,568C150,509 122,474 67,442z"/>
524
+ <glyph unicode="&#x201C;" horiz-adv-x="482" d="M180,689C98,646 56,580 56,493C56,423 84,382 134,382C172,382 200,409 200,451C200,490 170,513 134,513C131,513 128,513 125,512C125,571 153,606 208,638 z M388,689C305,646 263,580 263,493C263,423 291,382 342,382C380,382 407,409 407,451C407,490 377,513 342,513C339,513 335,513 332,512C332,571 360,606 416,638z"/>
525
+ <glyph unicode="&#x201D;" horiz-adv-x="482" d="M95,391C178,434 220,500 220,587C220,657 192,698 141,698C103,698 76,671 76,629C76,590 106,567 141,567C144,567 147,567 150,568C150,509 122,474 67,442 z M302,391C385,434 427,500 427,587C427,657 399,698 348,698C310,698 283,671 283,629C283,590 313,567 348,567C351,567 354,567 357,568C357,509 329,474 274,442z"/>
526
+ <glyph unicode="&#x201A;" horiz-adv-x="275" d="M95,-157C178,-114 220,-48 220,39C220,109 192,150 141,150C103,150 76,123 76,81C76,42 106,19 141,19C144,19 147,19 150,20C150,-39 122,-74 67,-106z"/>
527
+ <glyph unicode="&#x201E;" horiz-adv-x="482" d="M95,-157C178,-114 220,-48 220,39C220,109 192,150 141,150C103,150 76,123 76,81C76,42 106,19 141,19C144,19 147,19 150,20C150,-39 122,-74 67,-106 z M302,-157C385,-114 427,-48 427,39C427,109 399,150 348,150C310,150 283,123 283,81C283,42 313,19 348,19C351,19 354,19 357,20C357,-39 329,-74 274,-106z"/>
528
+ <glyph unicode="&#x2039;" horiz-adv-x="282" d="M182,61l46,36l-115,155l115,154l-46,37l-135,-149l0,-84z"/>
529
+ <glyph unicode="&#x203A;" horiz-adv-x="282" d="M54,97l45,-36l136,149l0,84l-136,149l-45,-37l114,-154z"/>
530
+ <glyph unicode="&#xAB;" horiz-adv-x="455" d="M182,61l46,36l-115,155l115,154l-46,37l-135,-149l0,-84 z M356,61l45,36l-114,155l114,154l-45,37l-136,-149l0,-84z"/>
531
+ <glyph unicode="&#xBB;" horiz-adv-x="455" d="M54,97l45,-36l136,149l0,84l-136,149l-45,-37l114,-154 z M228,97l45,-36l135,149l0,84l-135,149l-45,-37l114,-154z"/>
532
+ <glyph unicode="-" horiz-adv-x="322" d="M42,210l238,0l0,84l-238,0z"/>
533
+ <glyph unicode="&#xAD;" horiz-adv-x="322" d="M42,210l238,0l0,84l-238,0z"/>
534
+ <glyph unicode="&#x2013;" horiz-adv-x="480" d="M42,214l396,0l0,76l-396,0z"/>
535
+ <glyph unicode="&#x2014;" horiz-adv-x="800" d="M42,214l716,0l0,76l-716,0z"/>
536
+ <glyph unicode="&#x2012;" horiz-adv-x="513" d="M42,214l429,0l0,76l-429,0z"/>
537
+ <glyph unicode="&#x2015;" horiz-adv-x="800" d="M42,214l716,0l0,76l-716,0z"/>
538
+ <glyph unicode="&#xB7;" horiz-adv-x="275" d="M63,321C63,276 96,243 138,243C180,243 212,276 212,321C212,366 180,399 138,399C96,399 63,366 63,321z"/>
539
+ <glyph unicode="&#x2022;" horiz-adv-x="325" d="M162,133C230,133 285,187 285,263C285,338 230,393 162,393C95,393 40,338 40,263C40,187 95,133 162,133z"/>
540
+ <glyph unicode="_" horiz-adv-x="500" d="M12,-64l0,-69l476,0l0,69z"/>
541
+ <glyph unicode="(" horiz-adv-x="324" d="M209,-178l72,32C206,-18 171,131 171,278C171,425 206,574 281,702l-72,32C126,598 77,454 77,278C77,102 126,-42 209,-178z"/>
542
+ <glyph unicode=")" horiz-adv-x="324" d="M43,-146l72,-32C198,-42 247,102 247,278C247,454 198,598 115,734l-72,-32C118,574 153,425 153,278C153,131 118,-18 43,-146z"/>
543
+ <glyph unicode="[" horiz-adv-x="324" d="M90,-152l196,0l0,63l-109,0l0,734l109,0l0,63l-196,0z"/>
544
+ <glyph unicode="]" horiz-adv-x="324" d="M38,-89l0,-63l196,0l0,860l-196,0l0,-63l109,0l0,-734z"/>
545
+ <glyph unicode="{" horiz-adv-x="324" d="M263,-89C215,-89 202,-69 202,-9C202,48 207,99 207,163C207,233 187,264 140,276l0,4C187,292 207,322 207,393C207,457 202,508 202,565C202,625 215,645 263,645l23,0l0,63l-54,0C148,708 109,676 109,570C109,498 118,454 118,388C118,352 99,314 32,313l0,-70C99,242 118,204 118,167C118,102 109,58 109,-14C109,-120 148,-152 232,-152l54,0l0,63z"/>
546
+ <glyph unicode="}" horiz-adv-x="324" d="M38,-89l0,-63l54,0C176,-152 215,-120 215,-14C215,58 206,102 206,167C206,204 225,242 292,243l0,70C225,314 206,352 206,388C206,454 215,498 215,570C215,676 176,708 92,708l-54,0l0,-63l23,0C109,645 122,625 122,565C122,508 117,457 117,393C117,322 137,292 184,280l0,-4C137,264 117,233 117,163C117,99 122,48 122,-9C122,-69 109,-89 61,-89z"/>
547
+ <glyph unicode="/" horiz-adv-x="344" d="M12,-160l78,0l233,870l-78,0z"/>
548
+ <glyph unicode="|" horiz-adv-x="255" d="M89,-250l77,0l0,1000l-77,0z"/>
549
+ <glyph unicode="\" horiz-adv-x="344" d="M255,-160l78,0l-234,870l-78,0z"/>
550
+ <glyph unicode="&#xA6;" horiz-adv-x="255" d="M89,302l77,0l0,448l-77,0 z M89,209l0,-459l77,0l0,459z"/>
551
+ <glyph unicode="*" horiz-adv-x="438" d="M143,384l76,87l75,-87l51,37l-58,98l103,45l-19,60l-110,-25l-11,113l-63,0l-11,-113l-109,25l-19,-60l102,-45l-58,-98z"/>
552
+ <glyph unicode="&#x2020;" horiz-adv-x="482" d="M194,-80l94,0l-6,544l152,-6l0,94l-152,-7l6,167l-94,0l7,-167l-152,7l0,-94l152,6z"/>
553
+ <glyph unicode="&#x2021;" horiz-adv-x="482" d="M49,80l152,7l-7,-167l94,0l-6,167l152,-7l0,94l-152,-9l6,151l-6,151l152,-9l0,94l-152,-7l6,167l-94,0l7,-167l-152,7l0,-94l152,9l-7,-151l7,-151l-152,9z"/>
554
+ <glyph unicode="&#xA7;" horiz-adv-x="513" d="M140,342C140,375 157,397 187,415C268,371 373,350 373,275C373,240 358,219 327,203C247,248 140,268 140,342 z M426,626C386,657 328,687 258,687C152,687 94,625 94,545C94,511 105,484 124,463C74,434 41,388 41,334C41,148 310,164 310,68C310,36 285,12 238,12C192,12 155,31 122,64l-68,-60C97,-47 166,-74 238,-74C348,-74 415,-11 415,73C415,106 405,132 389,153C441,184 472,223 472,284C472,466 198,460 198,550C198,579 218,600 264,600C304,600 341,580 372,553z"/>
555
+ <glyph unicode="&#xB6;" horiz-adv-x="599" d="M387,-80l116,0l0,734l-116,0 z M295,212l37,0l0,442l-44,0C149,654 40,598 40,436C40,284 152,212 295,212z"/>
556
+ <glyph unicode="&#xA9;" horiz-adv-x="747" d="M47,324C47,119 198,-10 374,-10C549,-10 700,119 700,324C700,529 549,654 374,654C198,654 47,529 47,324 z M105,324C105,493 224,603 374,603C523,603 642,493 642,324C642,155 523,42 374,42C224,42 105,155 105,324 z M196,323C196,201 277,126 384,126C439,126 480,149 517,180l-39,56C451,214 425,197 387,197C323,197 282,246 282,323C282,392 323,443 391,443C422,443 444,430 469,406l45,50C482,488 444,514 385,514C286,514 196,440 196,323z"/>
557
+ <glyph unicode="&#x2117;" horiz-adv-x="746" d="M246,138l86,0l0,103l56,0C475,241 548,285 548,378C548,467 477,502 388,502l-142,0 z M332,304l0,133l46,0C432,437 463,419 463,376C463,326 433,304 378,304 z M47,324C47,119 198,-10 374,-10C549,-10 700,119 700,324C700,529 549,654 374,654C198,654 47,529 47,324 z M105,324C105,493 224,603 374,603C523,603 642,493 642,324C642,155 523,42 374,42C224,42 105,155 105,324z"/>
558
+ <glyph unicode="&#xAE;" horiz-adv-x="443" d="M221,315C328,315 414,397 414,514C414,632 328,714 221,714C115,714 28,632 28,514C28,397 115,315 221,315 z M221,358C137,358 75,421 75,514C75,608 137,672 221,672C305,672 367,608 367,514C367,421 305,358 221,358 z M144,417l50,0l0,65l34,0l33,-65l53,0l-44,79C294,506 307,528 307,551C307,598 271,616 227,616l-83,0 z M194,518l0,60l24,0C243,578 254,565 254,548C254,530 240,518 217,518z"/>
559
+ <glyph unicode="&#x2122;" horiz-adv-x="660" d="M313,364l76,0l0,116l-9,110l4,0l62,-179l55,0l62,179l4,0l-9,-110l0,-116l76,0l0,312l-93,0l-41,-101l-24,-73l-4,0l-24,73l-42,101l-93,0 z M96,364l78,0l0,241l94,0l0,71l-265,0l0,-71l93,0z"/>
560
+ <glyph unicode="&#x2120;" horiz-adv-x="660" d="M140,352C212,352 256,399 256,449C256,497 233,522 193,539l-44,20C124,570 109,579 109,595C109,611 121,625 147,625C170,625 195,611 216,596l37,50C227,668 190,685 151,685C83,685 38,644 38,591C38,542 67,517 100,502l44,-22C170,468 184,462 184,442C184,423 170,412 146,412C115,412 87,427 64,449l-42,-49C56,369 96,352 140,352 z M313,364l76,0l0,116l-9,110l4,0l62,-179l55,0l62,179l4,0l-9,-110l0,-116l76,0l0,312l-93,0l-41,-101l-24,-73l-4,0l-24,73l-42,101l-93,0z"/>
561
+ <glyph unicode="@" horiz-adv-x="875" d="M50,204C50,-40 218,-164 416,-164C486,-164 549,-148 609,-114l-27,64C538,-74 481,-91 425,-91C262,-91 130,11 130,208C130,437 300,586 475,586C664,586 750,462 750,310C750,191 685,117 623,117C574,117 556,150 573,218l43,211l-73,0l-13,-41l-2,0C510,422 484,437 450,437C334,437 253,312 253,198C253,107 306,52 379,52C422,52 470,80 500,120l2,0C511,70 555,44 612,44C710,44 826,135 826,314C826,517 693,658 484,658C249,658 50,478 50,204 z M342,205C342,272 384,361 453,361C476,361 493,350 508,326l-26,-147C452,142 427,127 403,127C366,127 342,151 342,205z"/>
562
+ <glyph unicode="&#xE058;" horiz-adv-x="806" d="M50,292C50,71 204,-29 374,-29C435,-29 487,-18 540,10l-29,60C475,50 427,40 383,40C248,40 128,115 128,295C128,496 278,626 436,626C605,626 681,525 681,393C681,277 622,216 572,216C534,216 521,247 536,313l43,186l-73,0l-14,-41l-2,0C473,492 447,507 415,507C306,507 232,394 232,285C232,206 280,152 343,152C387,152 435,181 463,220l2,0C473,173 508,143 561,143C662,143 757,232 757,397C757,574 634,695 446,695C230,695 50,536 50,292 z M368,226C340,226 320,248 320,292C320,352 358,434 417,434C441,434 454,424 468,400l-25,-124C414,241 391,226 368,226z"/>
563
+ <glyph unicode="#" horiz-adv-x="513" d="M88,0l70,0l24,195l117,0l-23,-195l70,0l23,195l94,0l0,76l-85,0l16,129l89,0l0,76l-80,0l21,174l-68,0l-23,-174l-117,0l21,174l-69,0l-22,-174l-91,0l0,-76l81,0l-16,-129l-85,0l0,-76l77,0 z M190,271l16,129l118,0l-16,-129z"/>
564
+ <glyph unicode="&#xE059;" horiz-adv-x="372" d="M186,428C278,428 342,504 342,636C342,767 278,842 186,842C94,842 30,767 30,636C30,504 94,428 186,428 z M186,495C144,495 113,538 113,636C113,734 144,775 186,775C228,775 259,734 259,636C259,538 228,495 186,495z"/>
565
+ <glyph unicode="&#xE05A;" horiz-adv-x="372" d="M168,440l87,0l0,390l-69,0C156,808 131,796 82,788l0,-54l86,0z"/>
566
+ <glyph unicode="&#xE05B;" horiz-adv-x="372" d="M48,440l279,0l0,73l-141,0C255,586 310,644 310,713C310,796 255,842 173,842C117,842 68,813 33,764l50,-46C105,749 131,770 160,770C201,770 226,743 226,699C226,645 159,583 48,488z"/>
567
+ <glyph unicode="&#xE05C;" horiz-adv-x="372" d="M31,506C63,458 117,428 183,428C261,428 328,475 328,547C328,596 293,628 251,642C289,662 313,691 313,735C313,802 253,842 183,842C125,842 85,819 47,776l50,-44C117,757 142,775 169,775C205,775 228,755 228,724C228,687 193,664 136,664l0,-51C205,613 243,592 243,553C243,516 213,495 176,495C139,495 109,513 85,548z"/>
568
+ <glyph unicode="&#xE05D;" horiz-adv-x="372" d="M122,594l51,89l45,79l4,0l-5,-113l0,-55 z M352,594l-58,0l0,236l-104,0l-152,-251l0,-44l179,0l0,-95l77,0l0,95l58,0z"/>
569
+ <glyph unicode="&#xE05E;" horiz-adv-x="372" d="M31,506C64,458 116,428 185,428C269,428 330,484 330,563C330,645 273,692 203,692C187,692 167,688 149,682l8,74l156,0l0,74l-225,0l-18,-191l39,-27C129,628 148,639 175,639C215,639 245,612 245,567C245,526 216,495 177,495C138,495 110,513 85,548z"/>
570
+ <glyph unicode="&#xE05F;" horiz-adv-x="372" d="M196,495C158,495 127,525 120,591C145,617 167,627 192,627C233,627 255,601 255,561C255,519 229,495 196,495 z M322,806C299,824 267,842 216,842C110,842 40,764 40,629C40,506 100,428 199,428C275,428 333,486 333,563C333,638 288,687 211,687C176,687 145,674 120,649C127,731 163,775 221,775C248,775 268,764 288,750z"/>
571
+ <glyph unicode="&#xE060;" horiz-adv-x="372" d="M124,440l91,0C222,574 242,666 334,783l0,47l-284,0l0,-73l187,0C164,652 132,568 124,440z"/>
572
+ <glyph unicode="&#xE061;" horiz-adv-x="372" d="M121,546C121,573 136,598 164,615C210,595 250,584 250,545C250,514 221,488 185,488C147,488 121,515 121,546 z M205,670C165,685 134,701 134,735C134,761 157,780 185,780C214,780 238,762 238,732C238,711 227,690 205,670 z M42,538C42,478 100,428 185,428C268,428 329,477 329,540C329,588 299,621 257,643l0,4C286,665 316,696 316,737C316,802 259,842 185,842C114,842 56,801 56,737C56,696 80,670 114,647l0,-4C78,622 42,585 42,538z"/>
573
+ <glyph unicode="&#xE062;" horiz-adv-x="372" d="M178,643C138,643 115,669 115,709C115,751 141,775 174,775C213,775 244,745 250,678C225,653 202,643 178,643 z M48,464C72,446 103,428 154,428C260,428 330,506 330,641C330,764 271,842 171,842C95,842 37,784 37,707C37,632 83,583 159,583C193,583 225,596 250,620C243,539 207,495 150,495C122,495 102,506 83,520z"/>
574
+ <glyph unicode="&#xE063;" horiz-adv-x="253" d="M153,356l63,27C168,463 146,546 146,635C146,724 168,807 216,887l-63,27C96,830 64,751 64,635C64,519 96,440 153,356z"/>
575
+ <glyph unicode="&#xE064;" horiz-adv-x="253" d="M37,383l63,-27C157,440 189,519 189,635C189,751 157,830 100,914l-63,-27C85,807 106,724 106,635C106,546 85,463 37,383z"/>
576
+ <glyph unicode="&#xE065;" horiz-adv-x="193" d="M42,488C42,455 65,432 96,432C128,432 151,455 151,488C151,520 128,544 96,544C65,544 42,520 42,488z"/>
577
+ <glyph unicode="&#xE066;" horiz-adv-x="193" d="M51,317C120,339 161,392 161,459C161,514 138,544 98,544C68,544 42,523 42,491C42,458 69,440 97,440C99,440 100,440 102,440C102,402 76,379 32,363z"/>
578
+ <glyph unicode="&#xE067;" horiz-adv-x="372" d="M186,-243C278,-243 342,-167 342,-35C342,96 278,171 186,171C94,171 30,96 30,-35C30,-167 94,-243 186,-243 z M186,-176C144,-176 113,-134 113,-35C113,63 144,104 186,104C228,104 259,63 259,-35C259,-134 228,-176 186,-176z"/>
579
+ <glyph unicode="&#xE068;" horiz-adv-x="372" d="M168,-231l87,0l0,390l-69,0C156,137 131,125 82,117l0,-54l86,0z"/>
580
+ <glyph unicode="&#xE069;" horiz-adv-x="372" d="M48,-231l279,0l0,73l-141,0C255,-86 310,-27 310,42C310,125 255,171 173,171C117,171 68,142 33,93l50,-46C105,78 131,99 160,99C201,99 226,72 226,28C226,-26 159,-88 48,-184z"/>
581
+ <glyph unicode="&#xE06A;" horiz-adv-x="372" d="M31,-166C63,-213 117,-243 183,-243C261,-243 328,-196 328,-124C328,-76 293,-43 251,-29C289,-9 313,20 313,64C313,130 253,171 183,171C125,171 85,148 47,105l50,-44C117,86 142,104 169,104C205,104 228,84 228,52C228,16 193,-7 136,-7l0,-51C205,-58 243,-79 243,-118C243,-155 213,-176 176,-176C139,-176 109,-158 85,-124z"/>
582
+ <glyph unicode="&#xE06B;" horiz-adv-x="372" d="M122,-78l51,90l45,79l4,0l-5,-113l0,-56 z M352,-78l-58,0l0,237l-104,0l-152,-251l0,-44l179,0l0,-95l77,0l0,95l58,0z"/>
583
+ <glyph unicode="&#xE06C;" horiz-adv-x="372" d="M31,-166C64,-213 116,-243 185,-243C269,-243 330,-187 330,-108C330,-26 273,21 203,21C187,21 167,17 149,11l8,74l156,0l0,74l-225,0l-18,-191l39,-28C129,-43 148,-32 175,-32C215,-32 245,-59 245,-104C245,-145 216,-176 177,-176C138,-176 110,-158 85,-124z"/>
584
+ <glyph unicode="&#xE06D;" horiz-adv-x="372" d="M196,-176C158,-176 127,-146 120,-80C145,-55 167,-44 192,-44C233,-44 255,-70 255,-110C255,-152 229,-176 196,-176 z M322,135C299,153 267,171 216,171C110,171 40,93 40,-42C40,-166 100,-243 199,-243C275,-243 333,-185 333,-108C333,-34 288,16 211,16C176,16 145,3 120,-22C127,60 163,104 221,104C248,104 268,93 288,79z"/>
585
+ <glyph unicode="&#xE06E;" horiz-adv-x="372" d="M124,-231l91,0C222,-97 242,-5 334,112l0,47l-284,0l0,-73l187,0C164,-20 132,-103 124,-231z"/>
586
+ <glyph unicode="&#xE06F;" horiz-adv-x="372" d="M121,-125C121,-98 136,-74 164,-56C210,-76 250,-87 250,-126C250,-158 221,-184 185,-184C147,-184 121,-156 121,-125 z M205,-1C165,14 134,30 134,64C134,90 157,109 185,109C214,109 238,91 238,61C238,40 227,19 205,-1 z M42,-133C42,-193 100,-243 185,-243C268,-243 329,-194 329,-131C329,-83 299,-50 257,-28l0,4C286,-6 316,25 316,66C316,131 259,171 185,171C114,171 56,130 56,66C56,25 80,-1 114,-24l0,-4C78,-49 42,-86 42,-133z"/>
587
+ <glyph unicode="&#xE070;" horiz-adv-x="372" d="M178,-28C138,-28 115,-2 115,38C115,80 141,104 174,104C213,104 244,74 250,7C225,-18 202,-28 178,-28 z M48,-207C72,-226 103,-243 154,-243C260,-243 330,-165 330,-30C330,93 271,171 171,171C95,171 37,112 37,36C37,-39 83,-88 159,-88C193,-88 225,-75 250,-52C242,-133 207,-176 150,-176C122,-176 102,-165 83,-151z"/>
588
+ <glyph unicode="&#xE071;" horiz-adv-x="253" d="M153,-316l63,28C168,-208 146,-125 146,-36C146,53 168,136 216,216l-63,27C96,158 64,80 64,-36C64,-152 96,-231 153,-316z"/>
589
+ <glyph unicode="&#xE072;" horiz-adv-x="253" d="M37,-288l63,-28C157,-231 189,-152 189,-36C189,80 157,158 100,243l-63,-27C85,136 106,53 106,-36C106,-125 85,-208 37,-288z"/>
590
+ <glyph unicode="&#xE073;" horiz-adv-x="193" d="M42,-184C42,-216 65,-239 96,-239C128,-239 151,-216 151,-184C151,-151 128,-127 96,-127C65,-127 42,-151 42,-184z"/>
591
+ <glyph unicode="&#xE074;" horiz-adv-x="193" d="M51,-354C120,-332 161,-280 161,-212C161,-157 138,-127 98,-127C68,-127 42,-148 42,-180C42,-213 69,-231 97,-231C99,-231 100,-231 102,-231C102,-269 76,-293 32,-308z"/>
592
+ <glyph unicode="&#xE075;" horiz-adv-x="372" d="M186,-12C278,-12 342,64 342,196C342,327 278,402 186,402C94,402 30,327 30,196C30,64 94,-12 186,-12 z M186,55C144,55 113,98 113,196C113,294 144,335 186,335C228,335 259,294 259,196C259,98 228,55 186,55z"/>
593
+ <glyph unicode="&#xE076;" horiz-adv-x="372" d="M168,0l87,0l0,390l-69,0C156,368 131,356 82,348l0,-54l86,0z"/>
594
+ <glyph unicode="&#xE077;" horiz-adv-x="372" d="M48,0l279,0l0,73l-141,0C255,146 310,204 310,273C310,356 255,402 173,402C117,402 68,373 33,324l50,-46C105,309 131,330 160,330C201,330 226,303 226,259C226,205 159,143 48,48z"/>
595
+ <glyph unicode="&#xE078;" horiz-adv-x="372" d="M31,66C63,18 117,-12 183,-12C261,-12 328,35 328,107C328,156 293,188 251,202C289,222 313,251 313,295C313,362 253,402 183,402C125,402 85,379 47,336l50,-44C117,317 142,335 169,335C205,335 228,315 228,284C228,247 193,224 136,224l0,-51C205,173 243,152 243,113C243,76 213,55 176,55C139,55 109,73 85,108z"/>
596
+ <glyph unicode="&#xE079;" horiz-adv-x="372" d="M122,154l51,89l45,79l4,0l-5,-113l0,-55 z M352,154l-58,0l0,236l-104,0l-152,-251l0,-44l179,0l0,-95l77,0l0,95l58,0z"/>
597
+ <glyph unicode="&#xE07A;" horiz-adv-x="372" d="M31,66C64,18 116,-12 185,-12C269,-12 330,44 330,123C330,205 273,252 203,252C187,252 167,248 149,242l8,74l156,0l0,74l-225,0l-18,-191l39,-27C129,188 148,199 175,199C215,199 245,172 245,127C245,86 216,55 177,55C138,55 110,73 85,108z"/>
598
+ <glyph unicode="&#xE07B;" horiz-adv-x="372" d="M196,55C158,55 127,85 120,151C145,177 167,187 192,187C233,187 255,161 255,121C255,79 229,55 196,55 z M322,366C299,384 267,402 216,402C110,402 40,324 40,189C40,66 100,-12 199,-12C275,-12 333,46 333,123C333,198 288,247 211,247C176,247 145,234 120,209C127,291 163,335 221,335C248,335 268,324 288,310z"/>
599
+ <glyph unicode="&#xE07C;" horiz-adv-x="372" d="M124,0l91,0C222,134 242,226 334,343l0,47l-284,0l0,-73l187,0C164,212 132,128 124,0z"/>
600
+ <glyph unicode="&#xE07D;" horiz-adv-x="372" d="M121,106C121,133 136,158 164,175C210,155 250,144 250,105C250,74 221,48 185,48C147,48 121,75 121,106 z M205,230C165,245 134,261 134,295C134,321 157,340 185,340C214,340 238,322 238,292C238,271 227,250 205,230 z M42,98C42,38 100,-12 185,-12C268,-12 329,37 329,100C329,148 299,181 257,203l0,4C286,225 316,256 316,297C316,362 259,402 185,402C114,402 56,361 56,297C56,256 80,230 114,207l0,-4C78,182 42,145 42,98z"/>
601
+ <glyph unicode="&#xE07E;" horiz-adv-x="372" d="M178,203C138,203 115,229 115,269C115,311 141,335 174,335C213,335 244,305 250,238C225,213 202,203 178,203 z M48,24C72,6 103,-12 154,-12C260,-12 330,66 330,201C330,324 271,402 171,402C95,402 37,344 37,267C37,192 83,143 159,143C193,143 225,156 250,180C243,99 207,55 150,55C122,55 102,66 83,80z"/>
602
+ <glyph unicode="&#xE07F;" horiz-adv-x="253" d="M153,-84l63,27C168,23 146,106 146,195C146,284 168,367 216,447l-63,27C96,390 64,311 64,195C64,79 96,0 153,-84z"/>
603
+ <glyph unicode="&#xE080;" horiz-adv-x="253" d="M37,-57l63,-27C157,0 189,79 189,195C189,311 157,390 100,474l-63,-27C85,367 106,284 106,195C106,106 85,23 37,-57z"/>
604
+ <glyph unicode="&#xE081;" horiz-adv-x="193" d="M42,48C42,15 65,-8 96,-8C128,-8 151,15 151,48C151,80 128,104 96,104C65,104 42,80 42,48z"/>
605
+ <glyph unicode="&#xE082;" horiz-adv-x="193" d="M51,-123C120,-101 161,-48 161,19C161,74 138,104 98,104C68,104 42,83 42,51C42,18 69,0 97,0C99,0 100,0 102,0C102,-38 76,-61 32,-77z"/>
606
+ <glyph unicode="&#xE083;" horiz-adv-x="372" d="M186,252C278,252 342,328 342,460C342,591 278,666 186,666C94,666 30,591 30,460C30,328 94,252 186,252 z M186,319C144,319 113,362 113,460C113,558 144,599 186,599C228,599 259,558 259,460C259,362 228,319 186,319z"/>
607
+ <glyph unicode="&#xE084;" horiz-adv-x="372" d="M168,264l87,0l0,390l-69,0C156,632 131,620 82,612l0,-54l86,0z"/>
608
+ <glyph unicode="&#xE085;" horiz-adv-x="372" d="M48,264l279,0l0,73l-141,0C255,410 310,468 310,537C310,620 255,666 173,666C117,666 68,637 33,588l50,-46C105,573 131,594 160,594C201,594 226,567 226,523C226,469 159,407 48,312z"/>
609
+ <glyph unicode="&#xE086;" horiz-adv-x="372" d="M31,330C63,282 117,252 183,252C261,252 328,299 328,371C328,420 293,452 251,466C289,486 313,515 313,559C313,626 253,666 183,666C125,666 85,643 47,600l50,-44C117,581 142,599 169,599C205,599 228,579 228,548C228,511 193,488 136,488l0,-51C205,437 243,416 243,377C243,340 213,319 176,319C139,319 109,337 85,372z"/>
610
+ <glyph unicode="&#xE087;" horiz-adv-x="372" d="M122,418l51,89l45,79l4,0l-5,-113l0,-55 z M352,418l-58,0l0,236l-104,0l-152,-251l0,-44l179,0l0,-95l77,0l0,95l58,0z"/>
611
+ <glyph unicode="&#xE088;" horiz-adv-x="372" d="M31,330C64,282 116,252 185,252C269,252 330,308 330,387C330,469 273,516 203,516C187,516 167,512 149,506l8,74l156,0l0,74l-225,0l-18,-191l39,-27C129,452 148,463 175,463C215,463 245,436 245,391C245,350 216,319 177,319C138,319 110,337 85,372z"/>
612
+ <glyph unicode="&#xE089;" horiz-adv-x="372" d="M196,319C158,319 127,349 120,415C145,441 167,451 192,451C233,451 255,425 255,385C255,343 229,319 196,319 z M322,630C299,648 267,666 216,666C110,666 40,588 40,453C40,330 100,252 199,252C275,252 333,310 333,387C333,462 288,511 211,511C176,511 145,498 120,473C127,555 163,599 221,599C248,599 268,588 288,574z"/>
613
+ <glyph unicode="&#xE08A;" horiz-adv-x="372" d="M124,264l91,0C222,398 242,490 334,607l0,47l-284,0l0,-73l187,0C164,476 132,392 124,264z"/>
614
+ <glyph unicode="&#xE08B;" horiz-adv-x="372" d="M121,370C121,397 136,422 164,439C210,419 250,408 250,369C250,338 221,312 185,312C147,312 121,339 121,370 z M205,494C165,509 134,525 134,559C134,585 157,604 185,604C214,604 238,586 238,556C238,535 227,514 205,494 z M42,362C42,302 100,252 185,252C268,252 329,301 329,364C329,412 299,445 257,467l0,4C286,489 316,520 316,561C316,626 259,666 185,666C114,666 56,625 56,561C56,520 80,494 114,471l0,-4C78,446 42,409 42,362z"/>
615
+ <glyph unicode="&#xE08C;" horiz-adv-x="372" d="M178,467C138,467 115,493 115,533C115,575 141,599 174,599C213,599 244,569 250,502C225,477 202,467 178,467 z M48,288C72,270 103,252 154,252C260,252 330,330 330,465C330,588 271,666 171,666C95,666 37,608 37,531C37,456 83,407 159,407C193,407 225,420 250,444C243,363 207,319 150,319C122,319 102,330 83,344z"/>
616
+ <glyph unicode="&#xE08D;" horiz-adv-x="253" d="M153,180l63,27C168,287 146,370 146,459C146,548 168,631 216,711l-63,27C96,654 64,575 64,459C64,343 96,264 153,180z"/>
617
+ <glyph unicode="&#xE08E;" horiz-adv-x="253" d="M37,207l63,-27C157,264 189,343 189,459C189,575 157,654 100,738l-63,-27C85,631 106,548 106,459C106,370 85,287 37,207z"/>
618
+ <glyph unicode="&#xE08F;" horiz-adv-x="193" d="M42,312C42,279 65,256 96,256C128,256 151,279 151,312C151,344 128,368 96,368C65,368 42,344 42,312z"/>
619
+ <glyph unicode="&#xE090;" horiz-adv-x="193" d="M51,141C120,163 161,216 161,283C161,338 138,368 98,368C68,368 42,347 42,315C42,282 69,264 97,264C99,264 100,264 102,264C102,226 76,203 32,187z"/>
620
+ <glyph unicode="&#xAA;" horiz-adv-x="352" d="M133,256C172,256 204,275 230,299l4,0l8,-35l67,0l0,192C309,549 266,598 184,598C132,598 83,578 45,554l30,-55C105,516 139,531 170,531C210,531 224,508 226,472C91,460 33,423 33,353C33,298 72,256 133,256 z M160,320C131,320 114,333 114,360C114,390 142,414 226,423l0,-70C203,332 183,320 160,320z"/>
621
+ <glyph unicode="&#xE091;" horiz-adv-x="380" d="M115,433C115,494 148,531 186,531C207,531 228,524 250,504l0,-146C229,334 210,324 188,324C140,324 115,359 115,433 z M30,431C30,320 82,256 166,256C202,256 231,274 255,297l4,0l7,-33l67,0l0,325l-64,0l-8,-32l-4,0C232,584 203,598 170,598C99,598 30,534 30,431z"/>
622
+ <glyph unicode="&#xBA;" horiz-adv-x="369" d="M184,256C268,256 341,319 341,426C341,535 268,598 184,598C100,598 27,535 27,426C27,319 100,256 184,256 z M184,323C137,323 112,365 112,426C112,489 137,531 184,531C231,531 256,489 256,426C256,365 231,323 184,323z"/>
623
+ <glyph unicode="&#xE092;" horiz-adv-x="352" d="M133,256C172,256 204,275 230,299l4,0l8,-35l67,0l0,192C309,549 266,598 184,598C132,598 83,578 45,554l30,-55C105,516 139,531 170,531C210,531 224,508 226,472C91,460 33,423 33,353C33,298 72,256 133,256 z M160,320C131,320 114,333 114,360C114,390 142,414 226,423l0,-70C203,332 183,320 160,320z"/>
624
+ <glyph unicode="&#xE093;" horiz-adv-x="380" d="M47,264l64,0l7,34l4,0C148,270 181,256 211,256C284,256 350,320 350,433C350,532 302,598 220,598C186,598 154,580 127,556l3,54l0,120l-83,0 z M130,348l0,147C153,518 175,530 198,530C243,530 265,495 265,432C265,359 233,323 194,323C174,323 152,330 130,348z"/>
625
+ <glyph unicode="&#xE094;" horiz-adv-x="310" d="M186,256C237,256 272,275 295,294l-34,54C245,334 226,323 195,323C146,323 112,365 112,427C112,488 148,531 196,531C219,531 235,523 252,509l38,54C272,580 238,598 189,598C103,598 27,534 27,427C27,318 94,256 186,256z"/>
626
+ <glyph unicode="&#xE095;" horiz-adv-x="380" d="M166,256C202,256 231,274 255,297l3,0l7,-33l68,0l0,466l-83,0l0,-114l4,-54C230,584 203,598 168,598C99,598 30,534 30,433C30,320 82,256 166,256 z M188,323C139,323 115,359 115,433C115,494 148,531 186,531C207,531 228,524 250,504l0,-146C229,334 210,323 188,323z"/>
627
+ <glyph unicode="&#xE096;" horiz-adv-x="341" d="M190,256C232,256 273,270 306,292l-29,51C254,328 228,320 200,320C149,320 112,349 106,406l207,0C316,421 317,428 317,444C317,518 280,598 180,598C97,598 26,531 26,427C26,319 98,256 190,256 z M105,456C112,506 141,533 181,533C229,533 246,494 246,456z"/>
628
+ <glyph unicode="&#xE097;" horiz-adv-x="217" d="M237,731C220,738 200,742 175,742C94,742 62,685 62,616l0,-26l-45,-4l0,-61l45,0l0,-261l83,0l0,261l64,0l0,65l-64,0l0,30C145,657 160,677 186,677C200,677 212,674 221,671z"/>
629
+ <glyph unicode="&#xE098;" horiz-adv-x="352" d="M95,219C95,233 104,246 119,258C133,254 150,254 163,254l43,0C242,254 261,246 261,224C261,198 226,175 176,175C126,175 95,191 95,219 z M26,206C26,148 84,122 162,122C273,122 341,172 341,237C341,295 300,318 220,318l-58,0C123,318 110,327 110,345C110,358 116,366 125,374C141,367 155,366 168,366C238,366 295,404 295,477C295,496 288,516 279,527l57,0l0,62l-116,0C205,595 187,598 168,598C97,598 35,556 35,480C35,442 56,411 79,395l0,-4C59,377 43,355 43,331C43,305 55,288 72,277l0,-4C42,256 26,234 26,206 z M168,418C136,418 113,441 113,480C113,519 136,540 168,540C198,540 222,519 222,480C222,441 198,418 168,418z"/>
630
+ <glyph unicode="&#xE099;" horiz-adv-x="375" d="M47,264l83,0l0,224C156,514 177,527 200,527C242,527 250,502 250,456l0,-192l84,0l0,203C334,545 306,598 231,598C187,598 150,573 125,547l5,63l0,120l-83,0z"/>
631
+ <glyph unicode="&#xE09A;" horiz-adv-x="177" d="M89,643C118,643 140,662 140,689C140,716 118,735 89,735C59,735 38,716 38,689C38,662 59,643 89,643 z M47,264l83,0l0,326l-83,0z"/>
632
+ <glyph unicode="&#xE09B;" horiz-adv-x="180" d="M25,124C104,124 132,177 132,250l0,340l-83,0l0,-344C49,208 41,190 13,190C1,190 -7,192 -14,195l-16,-63C-15,127 -1,124 25,124 z M91,643C120,643 142,662 142,689C142,716 120,735 91,735C61,735 40,716 40,689C40,662 61,643 91,643z"/>
633
+ <glyph unicode="&#xE09C;" horiz-adv-x="354" d="M47,264l83,0l0,81l46,55l83,-136l91,0l-127,190l116,136l-91,0l-114,-144l-4,0l0,284l-83,0z"/>
634
+ <glyph unicode="&#xE09D;" horiz-adv-x="184" d="M47,354C47,294 67,256 127,256C148,256 160,259 171,264l-11,61C154,323 151,323 147,323C137,323 130,330 130,350l0,380l-83,0z"/>
635
+ <glyph unicode="&#xE09E;" horiz-adv-x="568" d="M47,264l83,0l0,225C156,515 175,527 194,527C233,527 244,502 244,456l0,-192l84,0l0,225C353,515 373,527 392,527C431,527 442,502 442,456l0,-192l83,0l0,203C525,545 494,598 422,598C378,598 344,570 315,540C299,578 269,598 224,598C180,598 150,574 124,545l-3,0l-7,45l-67,0z"/>
636
+ <glyph unicode="&#xE09F;" horiz-adv-x="376" d="M47,264l83,0l0,224C156,514 177,527 201,527C242,527 250,502 250,456l0,-192l84,0l0,203C334,545 306,598 231,598C187,598 151,574 124,545l-3,0l-8,45l-66,0z"/>
637
+ <glyph unicode="&#xE0A0;" horiz-adv-x="369" d="M184,256C268,256 341,319 341,426C341,535 268,598 184,598C100,598 27,535 27,426C27,319 100,256 184,256 z M184,323C137,323 112,365 112,426C112,489 137,531 184,531C231,531 256,489 256,426C256,365 231,323 184,323z"/>
638
+ <glyph unicode="&#xE0A1;" horiz-adv-x="380" d="M47,129l83,0l0,99l-4,64C151,269 182,256 211,256C284,256 350,320 350,433C350,532 302,598 220,598C184,598 148,577 123,554l-3,0l-7,36l-66,0 z M130,348l0,147C153,518 175,530 198,530C243,530 265,495 265,432C265,359 233,323 194,323C174,323 152,330 130,348z"/>
639
+ <glyph unicode="&#xE0A2;" horiz-adv-x="380" d="M250,129l83,0l0,461l-64,0l-8,-34l-3,0C233,584 204,598 170,598C99,598 30,533 30,427C30,320 83,256 168,256C199,256 232,272 254,294l-4,-56 z M188,324C139,324 115,360 115,428C115,494 149,530 186,530C207,530 229,521 250,503l0,-147C229,333 210,324 188,324z"/>
640
+ <glyph unicode="&#xE0A3;" horiz-adv-x="256" d="M47,264l84,0l0,196C151,507 181,523 208,523C220,523 233,520 242,518l15,72C248,594 235,598 217,598C182,598 150,576 124,532l-2,0l-8,58l-67,0z"/>
641
+ <glyph unicode="&#xE0A4;" horiz-adv-x="290" d="M17,300C50,275 98,256 143,256C224,256 272,300 272,359C272,419 223,440 180,456C145,470 111,478 111,503C111,521 126,536 155,536C182,536 203,524 227,508l39,50C238,579 202,598 153,598C79,598 33,554 33,499C33,444 81,419 124,402C160,388 194,378 194,354C194,333 177,318 145,318C114,318 85,331 54,353z"/>
642
+ <glyph unicode="&#xE0A5;" horiz-adv-x="246" d="M60,378C60,306 89,256 167,256C195,256 219,262 238,268l-16,60C211,323 200,322 189,322C160,322 144,340 144,378l0,146l82,0l0,66l-82,0l0,88l-70,0l-10,-88l-50,-4l0,-62l46,0z"/>
643
+ <glyph unicode="&#xE0A6;" horiz-adv-x="377" d="M148,256C192,256 228,281 253,307l3,0l9,-43l66,0l0,326l-83,0l0,-225C223,338 201,326 178,326C136,326 128,351 128,396l0,194l-84,0l0,-205C44,308 74,256 148,256z"/>
644
+ <glyph unicode="&#xE0A7;" horiz-adv-x="338" d="M121,264l97,0l112,326l-80,0l-49,-164l-29,-99l-3,0l-29,99l-49,164l-83,0z"/>
645
+ <glyph unicode="&#xE0A8;" horiz-adv-x="505" d="M102,264l96,0l36,145l18,91l2,0l19,-91l36,-145l98,0l82,326l-77,0l-36,-164l-18,-95l-4,0l-20,95l-45,164l-70,0l-43,-164l-19,-95l-4,0l-17,95l-36,164l-84,0z"/>
646
+ <glyph unicode="&#xE0A9;" horiz-adv-x="328" d="M8,264l87,0l33,60l29,53l4,0l33,-53l36,-60l89,0l-103,160l98,166l-88,0l-29,-59l-24,-51l-4,0l-29,51l-34,59l-90,0l98,-156z"/>
647
+ <glyph unicode="&#xE0AA;" horiz-adv-x="336" d="M44,205l-15,-64C43,137 56,135 74,135C149,135 184,180 213,255l115,335l-80,0l-44,-153C195,406 185,376 178,344l-4,0C164,377 156,406 146,437l-54,153l-84,0l130,-320l-6,-17C122,222 101,200 68,200C61,200 55,201 44,205z"/>
648
+ <glyph unicode="&#xE0AB;" horiz-adv-x="301" d="M23,264l261,0l0,66l-157,0l152,214l0,46l-238,0l0,-66l134,0l-152,-215z"/>
649
+ <glyph unicode="&#xE0AC;" horiz-adv-x="341" d="M168,643l63,0l-59,97l-83,0 z M190,260C232,260 273,274 306,296l-29,51C254,332 228,324 200,324C149,324 112,353 106,410l207,0C316,425 317,432 317,448C317,522 280,602 180,602C97,602 26,535 26,431C26,323 98,260 190,260 z M105,460C112,510 141,537 181,537C229,537 246,498 246,460z"/>
650
+ <glyph unicode="&#xE0AD;" horiz-adv-x="341" d="M129,643l63,0l79,97l-83,0 z M190,260C232,260 273,274 306,296l-29,51C254,332 228,324 200,324C149,324 112,353 106,410l207,0C316,425 317,432 317,448C317,522 280,602 180,602C97,602 26,535 26,431C26,323 98,260 190,260 z M105,460C112,510 141,537 181,537C229,537 246,498 246,460z"/>
651
+ <glyph unicode="&#xE0AE;" horiz-adv-x="341" d="M162,256C246,256 314,322 314,427C314,532 253,598 159,598C118,598 78,583 45,561l29,-51C98,525 122,533 150,533C202,533 229,502 234,450l-206,0C24,435 23,428 23,412C23,336 62,256 162,256 z M161,320C113,320 94,356 94,400l141,0C230,346 201,320 161,320z"/>
652
+ <glyph unicode="&#xE0AF;" horiz-adv-x="380" d="M115,433C115,494 148,531 186,531C207,531 228,524 250,504l0,-146C229,334 210,324 188,324C140,324 115,359 115,433 z M30,431C30,320 82,256 166,256C202,256 231,274 255,297l4,0l7,-33l67,0l0,325l-64,0l-8,-32l-4,0C232,584 203,598 170,598C99,598 30,534 30,431z"/>
653
+ <glyph unicode="&#xE0B0;" horiz-adv-x="384" d="M82,214l-29,-55C90,135 137,122 174,122C276,122 335,173 335,262l0,327l-66,0l-7,-31l-2,0C234,585 206,597 172,597C101,597 32,534 32,434C32,339 85,275 169,275C202,275 229,290 255,312l-2,-38l0,-10C253,222 227,188 175,188C146,188 112,196 82,214 z M189,343C142,343 117,377 117,435C117,494 149,529 188,529C208,529 232,522 253,503l0,-126C231,353 212,343 189,343z"/>
654
+ <glyph unicode="&#xE0B1;" horiz-adv-x="177" d="M47,264l83,0l0,466l-83,0z"/>
655
+ <glyph unicode="&#xB0;" horiz-adv-x="348" d="M175,413C249,413 310,468 310,549C310,630 249,685 175,685C101,685 40,630 40,549C40,468 101,413 175,413 z M175,472C133,472 104,504 104,549C104,595 133,627 175,627C217,627 246,595 246,549C246,504 217,472 175,472z"/>
656
+ <glyph unicode="&#xA4;" horiz-adv-x="513" d="M82,93l69,70C182,142 219,132 256,132C293,132 331,142 362,163l69,-70l59,60l-63,63C449,247 462,285 462,329C462,374 449,412 427,443l63,63l-59,60l-69,-70C331,516 294,527 256,527C219,527 181,516 150,496l-68,70l-59,-60l62,-63C63,412 50,374 50,329C50,285 63,247 85,216l-62,-63 z M154,329C154,399 200,445 256,445C313,445 358,399 358,329C358,260 313,214 256,214C200,214 154,260 154,329z"/>
657
+ <glyph unicode="$" horiz-adv-x="513" d="M443,568C406,607 362,638 298,646l0,100l-80,0l0,-102C128,628 70,562 70,469C70,281 342,300 342,168C342,114 310,82 245,82C191,82 144,107 97,144l-52,-78C90,24 157,-4 218,-10l0,-100l80,0l0,103C397,11 453,81 453,176C453,378 181,354 181,474C181,526 214,554 268,554C316,554 347,535 384,501z"/>
658
+ <glyph unicode="&#xA3;" horiz-adv-x="513" d="M206,98l0,4C242,140 259,177 259,236C259,251 258,264 256,278l137,0l0,74l-154,0C230,384 222,415 222,448C222,515 259,554 321,554C359,554 386,536 411,507l64,63C435,618 384,648 311,648C193,648 111,574 111,454C111,421 121,387 132,352l-12,0l-67,-5l0,-69l100,0C155,264 157,251 157,237C157,164 115,103 51,71l0,-71l425,0l0,98z"/>
659
+ <glyph unicode="&#xA5;" horiz-adv-x="513" d="M18,636l154,-306l-131,0l0,-59l157,0l0,-59l-157,0l0,-60l157,0l0,-152l116,0l0,152l158,0l0,60l-158,0l0,59l158,0l0,59l-132,0l155,306l-116,0l-64,-151C297,441 279,397 260,352l-4,0C236,397 219,441 201,485l-64,151z"/>
660
+ <glyph unicode="&#x20AC;" horiz-adv-x="513" d="M440,141C410,100 378,78 335,78C267,78 220,132 202,225l193,0l0,61l-200,0C194,297 194,308 194,320C194,329 194,337 195,345l240,0l0,61l-234,0C217,502 265,558 337,558C375,558 405,537 431,507l65,63C458,618 400,648 340,648C208,648 112,559 85,405l-63,-4l0,-56l57,0C78,336 78,326 78,316C78,305 78,295 79,285l-57,-4l0,-56l63,0C112,72 205,-12 328,-12C401,-12 459,22 505,81z"/>
661
+ <glyph unicode="&#xA2;" horiz-adv-x="513" d="M269,162C208,180 173,234 173,308C173,382 208,435 269,455 z M423,196C399,176 369,158 335,155l0,308C362,460 386,448 409,428l54,71C433,529 390,553 335,556l0,98l-66,0l0,-101C150,534 61,448 61,308C61,165 144,78 269,62l0,-99l66,0l0,98C383,67 432,88 471,123z"/>
662
+ <glyph unicode="&#x192;" horiz-adv-x="513" d="M478,648C459,657 423,666 396,666C277,666 226,600 210,460l-5,-49l-19,0l-72,-5l0,-80l81,0l-20,-182C163,36 143,-4 88,-5C72,-5 56,-2 42,4l-18,-85C40,-90 69,-96 104,-97C227,-97 267,-7 281,113l24,213l124,0l0,85l-114,0l7,59C329,527 352,573 404,573C426,573 442,566 455,561z"/>
663
+ <glyph unicode="&#x20A1;" horiz-adv-x="513" d="M305,556C313,557 321,558 329,558C338,558 346,557 354,555l-56,-475C280,83 265,90 251,100 z M212,143C187,185 174,245 174,320C174,429 203,507 259,540 z M432,141C406,106 377,85 341,79l54,456C407,526 418,514 429,501l65,63C470,595 440,618 406,633l14,113l-43,0l-12,-101C354,647 343,648 332,648C327,648 321,648 316,648l12,98l-44,0l-12,-104C142,615 58,497 58,316C58,167 112,64 197,17l-15,-127l44,0l13,109C254,-6 270,-9 287,-11l-12,-99l43,0l12,99C397,-7 452,26 497,81z"/>
664
+ <glyph unicode="&#x20A4;" horiz-adv-x="513" d="M206,98l0,4C240,138 257,173 259,226l134,0l0,62l-139,0C251,306 246,324 242,341l151,0l0,62l-166,0C224,418 222,433 222,448C222,515 259,554 321,554C359,554 386,536 411,507l64,63C435,618 384,648 311,648C193,648 111,574 111,454C111,437 114,420 118,403l-6,0l-59,-5l0,-57l83,0C141,323 147,306 151,288l-27,0l-71,-6l0,-56l104,0C153,158 112,101 51,71l0,-71l425,0l0,98z"/>
665
+ <glyph unicode="&#x20A6;" horiz-adv-x="513" d="M353,288l-45,0l-16,53l-1,2l57,0 z M369,92l-4,0l-43,146l35,0 z M165,288l0,1l-4,54l46,0l14,-47l3,-8 z M144,544l4,0l45,-152l-36,0 z M504,343l0,49l-70,0l0,244l-86,0l0,-244l-74,0l-84,244l-111,0l0,-244l-72,-5l0,-44l72,0l0,-55l-72,-5l0,-45l72,0l0,-238l86,0l0,238l76,0l82,-238l111,0l0,238l70,0l0,50l-70,0l0,55z"/>
666
+ <glyph unicode="&#x20A7;" horiz-adv-x="513" d="M183,303l0,95l150,0C322,337 280,303 212,303 z M212,562C280,562 321,536 333,472l-150,0l0,90 z M502,472l-60,0C426,592 335,636 221,636l-147,0l0,-165l-68,-5l0,-68l68,0l0,-398l109,0l0,228l38,0C333,228 426,283 442,398l60,0z"/>
667
+ <glyph unicode="&#x20AB;" horiz-adv-x="513" d="M79,0l379,0l0,62l-379,0 z M329,236C302,204 278,192 248,192C196,192 166,230 166,303C166,362 206,402 252,402C282,402 303,392 329,368 z M425,600l0,58l-96,0l0,-58l-145,0l0,-62l145,0l0,-24l4,-75C303,466 277,482 231,482C148,482 66,414 66,302C66,180 129,113 225,113C270,113 308,133 336,163l2,0l8,-40l79,0l0,415l76,6l0,56z"/>
668
+ <glyph unicode="&#x20B1;" horiz-adv-x="513" d="M183,411l0,52l151,0C335,454 336,444 336,433C336,425 336,418 335,411 z M183,303l0,58l138,0C302,323 265,303 212,303 z M212,562C263,562 300,547 319,512l-136,0l0,50 z M502,512l-69,0C404,602 322,636 221,636l-147,0l0,-125l-68,-4l0,-44l68,0l0,-53l-68,-4l0,-45l68,0l0,-361l109,0l0,228l38,0C320,228 405,271 433,361l69,0l0,50l-59,0C444,418 444,425 444,433C444,443 444,453 443,463l59,0z"/>
669
+ <glyph unicode="&#x20B2;" horiz-adv-x="513" d="M478,347l-188,0l0,-95l84,0l0,-145C360,93 333,82 305,82C212,82 159,169 159,320C159,468 211,558 307,558C350,558 381,537 411,505l65,63C440,608 392,638 338,646l0,100l-79,0l0,-103C128,619 42,501 42,316C42,125 131,10 259,-9l0,-101l79,0l0,101C391,-1 439,23 478,61z"/>
670
+ <glyph unicode="&#x20B5;" horiz-adv-x="513" d="M283,84C213,106 174,191 174,320C174,444 212,527 283,551 z M432,141C408,109 382,89 350,81l0,475C379,550 403,532 423,507l65,63C454,613 403,642 350,647l0,93l-67,0l0,-96C147,621 58,502 58,316C58,121 150,5 283,-10l0,-100l67,0l0,101C409,0 457,32 497,81z"/>
671
+ <glyph unicode="&#x20B9;" horiz-adv-x="513" d="M458,636l-388,0l0,-92l68,0C213,544 260,525 274,474l-132,0l-72,-5l0,-57l206,0C266,349 217,319 138,319l-68,0l0,-93l75,0l159,-226l131,0l-179,242C330,266 382,321 391,412l67,0l0,62l-69,0C381,517 356,553 321,575l137,0z"/>
672
+ <glyph unicode="&#x20BA;" horiz-adv-x="513" d="M218,96l0,201l155,82l0,67l-155,-82l0,63l155,82l0,67l-155,-82l0,142l-116,0l0,-198l-84,-45l0,-67l84,44l0,-63l-84,-44l0,-67l84,44l0,-252C332,-18 482,72 482,247C482,262 480,280 475,302l-96,-24C383,262 383,251 383,242C383,155 299,101 218,96z"/>
673
+ <glyph unicode="&#x2044;" horiz-adv-x="91" d="M-98,-12l356,678l-70,0l-357,-678z"/>
674
+ <glyph unicode="&#x2215;" horiz-adv-x="91" d="M-98,-12l356,678l-70,0l-357,-678z"/>
675
+ <glyph unicode="&#xE0B2;" horiz-adv-x="91" d="M-98,-12l356,678l-70,0l-357,-678z"/>
676
+ <glyph unicode="%" horiz-adv-x="841" d="M186,252C278,252 342,328 342,460C342,591 278,666 186,666C94,666 30,591 30,460C30,328 94,252 186,252 z M186,319C144,319 113,362 113,460C113,558 144,599 186,599C228,599 259,558 259,460C259,362 228,319 186,319 z M277,-12l357,678l-70,0l-357,-678 z M655,-12C747,-12 811,64 811,196C811,327 747,402 655,402C563,402 499,327 499,196C499,64 563,-12 655,-12 z M655,55C613,55 582,98 582,196C582,294 613,335 655,335C697,335 728,294 728,196C728,98 697,55 655,55z"/>
677
+ <glyph unicode="&#x2030;" horiz-adv-x="1222" d="M276,-12l356,678l-70,0l-357,-678 z M186,252C278,252 342,328 342,460C342,591 278,666 186,666C94,666 30,591 30,460C30,328 94,252 186,252 z M186,319C144,319 113,362 113,460C113,558 144,599 186,599C228,599 259,558 259,460C259,362 228,319 186,319 z M654,-12C746,-12 810,64 810,196C810,327 746,402 654,402C562,402 498,327 498,196C498,64 562,-12 654,-12 z M654,55C612,55 580,98 580,196C580,294 612,335 654,335C696,335 727,294 727,196C727,98 696,55 654,55 z M1036,-12C1128,-12 1192,64 1192,196C1192,327 1128,402 1036,402C944,402 880,327 880,196C880,64 944,-12 1036,-12 z M1036,55C994,55 963,98 963,196C963,294 994,335 1036,335C1078,335 1109,294 1109,196C1109,98 1078,55 1036,55z"/>
678
+ <glyph unicode="&#xBC;" horiz-adv-x="795" d="M228,264l0,390l-69,0C128,632 104,620 54,612l0,-54l87,0l0,-294 z M540,666l-357,-678l71,0l356,678 z M545,154l51,89l45,79l4,0l-5,-113l0,-55 z M775,154l-58,0l0,236l-103,0l-152,-251l0,-44l178,0l0,-95l77,0l0,95l58,0z"/>
679
+ <glyph unicode="&#xBD;" horiz-adv-x="827" d="M141,264l87,0l0,390l-69,0C128,632 104,620 54,612l0,-54l87,0 z M236,-12l356,678l-70,0l-357,-678 z M504,0l278,0l0,73l-140,0C710,146 766,204 766,273C766,356 710,402 628,402C572,402 524,373 488,324l50,-46C560,309 586,330 616,330C656,330 682,303 682,259C682,205 614,143 504,48z"/>
680
+ <glyph unicode="&#xBE;" horiz-adv-x="807" d="M95,556C115,581 139,599 166,599C202,599 226,579 226,548C226,511 191,488 134,488l0,-51C203,437 240,416 240,377C240,340 210,319 173,319C137,319 107,337 83,372l-54,-42C61,282 115,252 181,252C259,252 326,299 326,371C326,420 290,452 248,466C286,486 311,515 311,559C311,626 250,666 180,666C123,666 83,643 45,600 z M570,666l-357,-678l70,0l357,678 z M556,154l52,89l45,79l4,0l-5,-113l0,-55 z M787,154l-58,0l0,236l-104,0l-152,-251l0,-44l179,0l0,-95l77,0l0,95l58,0z"/>
681
+ <glyph unicode="&#x2153;" horiz-adv-x="821" d="M141,264l87,0l0,390l-69,0C128,632 104,620 54,612l0,-54l87,0 z M230,-12l356,678l-70,0l-357,-678 z M480,66C512,18 566,-12 632,-12C710,-12 777,35 777,107C777,156 742,188 700,202C738,222 762,251 762,295C762,362 702,402 632,402C574,402 534,379 496,336l50,-44C566,317 591,335 618,335C654,335 677,315 677,284C677,247 643,224 585,224l0,-51C655,173 692,152 692,113C692,76 662,55 625,55C588,55 558,73 534,108z"/>
682
+ <glyph unicode="&#x2154;" horiz-adv-x="835" d="M50,264l278,0l0,73l-140,0C256,410 312,468 312,537C312,620 256,666 174,666C118,666 70,637 34,588l50,-46C106,573 132,594 162,594C202,594 228,567 228,523C228,469 160,407 50,312 z M280,-12l356,678l-70,0l-357,-678 z M494,66C526,18 580,-12 646,-12C724,-12 791,35 791,107C791,156 756,188 714,202C752,222 776,251 776,295C776,362 716,402 646,402C588,402 548,379 510,336l50,-44C580,317 605,335 632,335C668,335 691,315 691,284C691,247 657,224 599,224l0,-51C669,173 706,152 706,113C706,76 676,55 639,55C602,55 572,73 548,108z"/>
683
+ <glyph unicode="&#x215B;" horiz-adv-x="821" d="M141,264l87,0l0,390l-69,0C128,632 104,620 54,612l0,-54l87,0 z M240,-12l356,678l-70,0l-357,-678 z M570,106C570,133 586,158 614,175C660,155 699,144 699,105C699,74 670,48 634,48C596,48 570,75 570,106 z M654,230C614,245 583,261 583,295C583,321 606,340 634,340C664,340 687,322 687,292C687,271 676,250 654,230 z M491,98C491,38 549,-12 634,-12C717,-12 778,37 778,100C778,148 748,181 706,203l0,4C736,225 765,256 765,297C765,362 708,402 634,402C563,402 505,361 505,297C505,256 529,230 563,207l0,-4C527,182 491,145 491,98z"/>
684
+ <glyph unicode="&#x215C;" horiz-adv-x="835" d="M31,330C63,282 117,252 183,252C261,252 328,299 328,371C328,420 293,452 251,466C289,486 313,515 313,559C313,626 253,666 183,666C125,666 85,643 47,600l50,-44C117,581 142,599 169,599C205,599 228,579 228,548C228,511 193,488 136,488l0,-51C205,437 243,416 243,377C243,340 213,319 176,319C139,319 109,337 85,372 z M274,-12l356,678l-70,0l-357,-678 z M584,106C584,133 600,158 628,175C674,155 713,144 713,105C713,74 684,48 648,48C610,48 584,75 584,106 z M668,230C628,245 597,261 597,295C597,321 620,340 648,340C678,340 701,322 701,292C701,271 690,250 668,230 z M505,98C505,38 563,-12 648,-12C731,-12 792,37 792,100C792,148 762,181 720,203l0,4C750,225 779,256 779,297C779,362 722,402 648,402C577,402 519,361 519,297C519,256 543,230 577,207l0,-4C541,182 505,145 505,98z"/>
685
+ <glyph unicode="&#x215D;" horiz-adv-x="835" d="M31,330C64,282 116,252 185,252C269,252 330,308 330,387C330,469 273,516 203,516C187,516 167,512 149,506l8,74l156,0l0,74l-225,0l-18,-191l39,-27C129,452 148,463 175,463C215,463 245,436 245,391C245,350 216,319 177,319C138,319 110,337 85,372 z M274,-12l356,678l-70,0l-357,-678 z M584,106C584,133 600,158 628,175C674,155 713,144 713,105C713,74 684,48 648,48C610,48 584,75 584,106 z M668,230C628,245 597,261 597,295C597,321 620,340 648,340C678,340 701,322 701,292C701,271 690,250 668,230 z M505,98C505,38 563,-12 648,-12C731,-12 792,37 792,100C792,148 762,181 720,203l0,4C750,225 779,256 779,297C779,362 722,402 648,402C577,402 519,361 519,297C519,256 543,230 577,207l0,-4C541,182 505,145 505,98z"/>
686
+ <glyph unicode="&#x215E;" horiz-adv-x="815" d="M104,264l91,0C202,398 222,490 314,607l0,47l-284,0l0,-73l187,0C144,476 112,392 104,264 z M224,-12l356,678l-70,0l-357,-678 z M564,106C564,133 580,158 608,175C654,155 693,144 693,105C693,74 664,48 628,48C590,48 564,75 564,106 z M648,230C608,245 577,261 577,295C577,321 600,340 628,340C658,340 681,322 681,292C681,271 670,250 648,230 z M485,98C485,38 543,-12 628,-12C711,-12 772,37 772,100C772,148 742,181 700,203l0,4C730,225 759,256 759,297C759,362 702,402 628,402C557,402 499,361 499,297C499,256 523,230 557,207l0,-4C521,182 485,145 485,98z"/>
687
+ <glyph unicode="+" horiz-adv-x="513" d="M213,99l87,0l0,189l179,0l0,84l-179,0l0,189l-87,0l0,-189l-179,0l0,-84l179,0z"/>
688
+ <glyph unicode="&#x2212;" horiz-adv-x="513" d="M34,288l445,0l0,84l-445,0z"/>
689
+ <glyph unicode="&#xD7;" horiz-adv-x="513" d="M108,119l148,151l149,-151l59,60l-149,150l149,151l-59,60l-149,-152l-148,152l-59,-60l148,-151l-148,-150z"/>
690
+ <glyph unicode="&#xF7;" horiz-adv-x="513" d="M256,444C295,444 324,471 324,510C324,548 295,575 256,575C218,575 188,548 188,510C188,471 218,444 256,444 z M188,150C188,111 218,84 256,84C295,84 324,111 324,150C324,188 295,215 256,215C218,215 188,188 188,150 z M34,288l445,0l0,84l-445,0z"/>
691
+ <glyph unicode="&#x2219;" horiz-adv-x="516" d="M181,327C181,282 214,249 256,249C298,249 330,282 330,327C330,372 298,405 256,405C214,405 181,372 181,327z"/>
692
+ <glyph unicode="=" horiz-adv-x="513" d="M34,400l445,0l0,84l-445,0 z M34,176l445,0l0,84l-445,0z"/>
693
+ <glyph unicode="&lt;" horiz-adv-x="513" d="M34,290l445,-173l0,97l-193,68l-135,48l0,4l135,48l193,68l0,97l-445,-173z"/>
694
+ <glyph unicode="&gt;" horiz-adv-x="513" d="M479,374l-445,173l0,-97l193,-68l135,-48l0,-4l-135,-48l-193,-68l0,-97l445,173z"/>
695
+ <glyph unicode="&#x2264;" horiz-adv-x="513" d="M34,0l445,0l0,83l-445,0 z M34,301l445,-148l0,97l-191,59l-137,39l0,4l137,39l191,59l0,97l-445,-148z"/>
696
+ <glyph unicode="&#x2265;" horiz-adv-x="513" d="M34,0l445,0l0,83l-445,0 z M479,399l-445,148l0,-97l191,-59l137,-39l0,-4l-137,-39l-191,-59l0,-97l445,148z"/>
697
+ <glyph unicode="&#xB1;" horiz-adv-x="513" d="M213,143l87,0l0,156l179,0l0,83l-179,0l0,179l-87,0l0,-179l-179,0l0,-83l179,0 z M34,0l445,0l0,83l-445,0z"/>
698
+ <glyph unicode="^" horiz-adv-x="513" d="M55,279l97,0l55,151l47,135l4,0l48,-135l55,-151l97,0l-154,391l-96,0z"/>
699
+ <glyph unicode="&#x2260;" horiz-adv-x="513" d="M56,52l77,0l74,124l272,0l0,84l-225,0l82,140l143,0l0,84l-96,0l74,124l-77,0l-74,-124l-272,0l0,-84l225,0l-82,-140l-143,0l0,-84l96,0z"/>
700
+ <glyph unicode="~" horiz-adv-x="513" d="M94,269C116,309 140,328 168,328C224,328 262,248 343,248C389,248 438,276 480,344l-61,47C397,351 373,332 345,332C289,332 251,412 170,412C124,412 75,384 32,315z"/>
701
+ <glyph unicode="&#x2248;" horiz-adv-x="513" d="M94,381C116,421 140,440 168,440C224,440 262,360 343,360C389,360 438,388 480,456l-61,47C397,463 373,444 345,444C289,444 251,524 170,524C124,524 75,496 32,427 z M94,157C116,197 140,216 168,216C224,216 262,136 343,136C389,136 438,164 480,232l-61,47C397,239 373,220 345,220C289,220 251,300 170,300C124,300 75,272 32,203z"/>
702
+ <glyph unicode="&#xAC;" horiz-adv-x="513" d="M34,288l358,0l0,-189l87,0l0,273l-445,0z"/>
703
+ <glyph unicode="&#x3C0;" horiz-adv-x="584" d="M107,0l114,0l0,399l148,0l0,-263C369,46 399,-12 487,-12C515,-12 536,-8 553,0l-15,86C529,83 523,82 516,82C498,82 484,98 484,130l0,269l71,0l0,92l-462,0l-72,-5l0,-87l86,0z"/>
704
+ <glyph unicode="&#x221E;" horiz-adv-x="798" d="M199,152C278,152 332,206 368,250l4,0C433,171 490,130 575,130C679,130 760,209 760,338C760,447 682,525 579,525C497,525 435,476 386,411l-4,0C346,459 294,509 215,509C112,509 38,439 38,320C38,229 110,152 199,152 z M426,345C470,407 517,440 568,440C633,440 673,398 673,335C673,282 636,237 575,237C516,237 474,281 426,345 z M210,238C159,238 125,276 125,324C125,371 156,402 206,402C252,402 292,367 328,316C297,271 258,238 210,238z"/>
705
+ <glyph unicode="&#xB5;" horiz-adv-x="562" d="M73,-200l115,0l0,136l-6,90C201,0 226,-6 258,-6C308,-6 351,22 382,72l4,0l8,-72l95,0l0,491l-115,0l0,-336C336,107 308,87 265,87C212,87 188,117 188,198l0,293l-115,0z"/>
706
+ <glyph unicode="&#x2202;" horiz-adv-x="553" d="M246,82C195,82 151,121 151,189C151,271 195,322 272,322C312,322 354,304 389,255C368,137 313,82 246,82 z M167,530C198,561 234,578 274,578C356,578 398,509 398,370C398,362 398,354 398,346C361,387 311,412 260,412C130,412 44,317 44,183C44,62 132,-12 233,-12C396,-12 508,140 508,367C508,561 428,672 286,672C220,672 164,646 116,602z"/>
707
+ <glyph unicode="&#x222B;" horiz-adv-x="362" d="M59,-66l-12,-85C57,-154 77,-158 99,-158C235,-158 263,-56 263,80C263,237 224,406 224,556C224,654 235,702 288,702C302,702 314,701 323,698l12,85C326,787 305,790 283,790C147,790 119,687 119,552C119,396 159,226 159,76C159,-23 148,-70 94,-70C80,-70 68,-69 59,-66z"/>
708
+ <glyph unicode="&#x221A;" horiz-adv-x="573" d="M188,423l-154,-65l22,-57l73,31l150,-420l83,0l216,908l-79,0l-167,-717C326,79 322,54 318,30l-4,0C309,54 302,79 295,103z"/>
709
+ <glyph unicode="&#x2206;" horiz-adv-x="622" d="M32,0l558,0l0,70l-211,590l-137,0l-210,-590 z M163,98l90,265l56,185l4,0l55,-185l91,-265z"/>
710
+ <glyph unicode="&#x2126;" horiz-adv-x="707" d="M43,0l257,0l0,77C224,136 176,224 176,349C176,483 244,571 354,571C463,571 531,483 531,349C531,224 483,136 407,77l0,-77l257,0l0,94l-122,0l0,4C592,148 650,236 650,356C650,552 531,672 354,672C176,672 57,552 57,356C57,236 116,148 166,98l0,-4l-123,0z"/>
711
+ <glyph unicode="&#x2211;" horiz-adv-x="520" d="M24,-50l0,-70l489,0l0,98l-345,0l0,4l198,276l-190,277l0,4l311,0l0,97l-452,0l0,-70l211,-308z"/>
712
+ <glyph unicode="&#x220F;" horiz-adv-x="692" d="M84,-120l116,0l0,655l291,0l0,-655l117,0l0,756l-524,0z"/>
713
+ <glyph unicode="&#x2113;" horiz-adv-x="440" d="M220,507C220,598 247,634 278,634C306,634 326,611 326,557C326,475 288,405 220,338 z M396,128C372,107 343,84 303,84C258,84 220,115 220,194l0,30C353,330 420,433 420,558C420,660 361,720 274,720C179,720 107,651 107,490l0,-244C79,226 49,206 16,186l44,-72C77,125 93,135 109,145C123,41 199,-12 286,-12C350,-12 400,23 439,58z"/>
714
+ <glyph unicode="&#x212E;" horiz-adv-x="800" d="M184,108C180,114 176,121 176,129l0,183C176,315 178,316 180,316l575,0C755,319 755,322 755,325C755,511 597,661 401,661C205,661 46,511 46,325C46,139 205,-11 401,-11C515,-11 617,41 682,120l-52,0C575,52 493,9 402,9C316,9 238,47 184,108 z M180,335C178,335 176,337 176,340l0,180C176,529 180,537 185,543C240,603 316,641 402,641C485,641 561,604 617,546C622,540 626,533 626,524l0,-184C626,337 624,335 621,335z"/>
715
+ <glyph unicode="&#x2190;" horiz-adv-x="618" d="M24,250l275,-266l56,63l-175,159l398,0l0,92l-398,0l175,159l-56,63l-275,-266z"/>
716
+ <glyph unicode="&#x2191;" horiz-adv-x="618" d="M307,528l-267,-275l64,-56l158,175l0,-397l93,0l0,397l159,-175l63,56l-266,275z"/>
717
+ <glyph unicode="&#x2192;" horiz-adv-x="618" d="M593,254l-275,266l-56,-63l174,-159l-397,0l0,-92l397,0l-174,-159l56,-63l275,266z"/>
718
+ <glyph unicode="&#x2193;" horiz-adv-x="618" d="M311,-25l266,275l-63,56l-159,-175l0,397l-93,0l0,-397l-158,175l-64,-56l267,-275z"/>
719
+ <glyph unicode="&#x25A0;" horiz-adv-x="326" d="M54,152l218,0l0,222l-218,0z"/>
720
+ <glyph unicode="&#x25C6;" horiz-adv-x="326" d="M163,110l153,153l-153,152l-153,-152z"/>
721
+ <glyph unicode="&#x25C9;" horiz-adv-x="465" d="M232,197C267,197 294,225 294,263C294,300 267,327 232,327C198,327 170,300 170,263C170,225 198,197 232,197 z M232,68C339,68 424,146 424,263C424,379 339,457 232,457C126,457 41,379 41,263C41,146 126,68 232,68 z M232,130C164,130 106,182 106,263C106,344 164,396 232,396C301,396 358,344 358,263C358,182 301,130 232,130z"/>
722
+ <glyph unicode="&#x2752;" horiz-adv-x="396" d="M98,154l0,174l168,0l0,-174 z M54,112l235,0l53,62l0,230l-225,0l-63,-53z"/>
723
+ <glyph unicode="&#x25B2;" horiz-adv-x="582" d="M21,29l539,0l0,2l-267,509l-4,0l-268,-509z"/>
724
+ <glyph unicode="&#x25B3;" horiz-adv-x="582" d="M156,106l135,268l136,-268 z M21,29l539,0l0,2l-267,509l-4,0l-268,-509z"/>
725
+ <glyph unicode="&#x25B6;" horiz-adv-x="582" d="M55,12l2,0l509,268l0,4l-509,267l-2,0z"/>
726
+ <glyph unicode="&#x25B7;" horiz-adv-x="582" d="M133,146l0,271l265,-135 z M55,12l2,0l509,268l0,4l-509,267l-2,0z"/>
727
+ <glyph unicode="&#x25BC;" horiz-adv-x="582" d="M289,24l4,0l267,508l0,2l-539,0l0,-2z"/>
728
+ <glyph unicode="&#x25BD;" horiz-adv-x="582" d="M427,457l-136,-267l-135,267 z M21,532l268,-508l4,0l267,508l0,2l-539,0z"/>
729
+ <glyph unicode="&#x25C0;" horiz-adv-x="582" d="M16,280l508,-268l2,0l0,539l-2,0l-508,-267z"/>
730
+ <glyph unicode="&#x25C1;" horiz-adv-x="582" d="M184,282l264,135l0,-271 z M526,551l-2,0l-508,-267l0,-4l508,-268l2,0z"/>
731
+ <glyph unicode="&#x2610;" horiz-adv-x="803" d="M124,40l0,552l523,0l0,-552 z M74,-10l596,0l59,68l0,615l-587,0l-68,-58z"/>
732
+ <glyph unicode="&#x2611;" horiz-adv-x="803" d="M647,40l-523,0l0,552l445,0C494,473 429,335 388,195l-4,0C357,275 321,355 274,430l-76,-49C258,293 302,208 338,106l113,13C498,287 567,432 647,549 z M735,804C697,766 660,722 625,673l-483,0l-68,-58l0,-625l596,0l59,68l0,599C755,687 781,715 807,740z"/>
733
+ <glyph unicode="&#x2713;" horiz-adv-x="630" d="M270,-7C348,272 486,485 632,622l-72,64C414,540 282,308 211,69l-4,0C175,155 132,245 79,326l-75,-49C71,182 117,91 158,-20z"/>
734
+ <glyph unicode="&#x266A;" horiz-adv-x="524" d="M27,55C27,0 79,-26 134,-26C240,-26 319,37 319,157l0,384C394,517 436,456 436,395C436,359 433,334 423,303l42,-17C485,319 506,372 506,426C506,504 478,561 386,625C336,660 326,669 315,694l-65,0l0,-526C242,174 217,180 191,180C97,180 27,122 27,55z"/>
735
+ <glyph unicode="&#x25CA;" horiz-adv-x="533" d="M218,-10l97,0l164,340l-164,340l-97,0l-164,-340 z M264,87l-58,126l-54,117l54,116l58,127l4,0l58,-127l55,-116l-55,-117l-58,-126z"/>
736
+ <glyph unicode="&#x2032;" horiz-adv-x="275" d="M80,394l75,0l41,171l21,123l-115,0z"/>
737
+ <glyph unicode="&#x2033;" horiz-adv-x="482" d="M80,394l75,0l41,171l21,123l-115,0 z M287,394l76,0l40,171l21,123l-114,0z"/>
738
+ <glyph unicode="&#x2BB;" horiz-adv-x="275" d="M180,689C98,646 56,580 56,493C56,423 84,382 134,382C172,382 200,409 200,451C200,490 170,513 134,513C131,513 128,513 125,512C125,571 153,606 208,638z"/>
739
+ <glyph unicode="&#x2BC;" horiz-adv-x="275" d="M95,391C178,434 220,500 220,587C220,657 192,698 141,698C103,698 76,671 76,629C76,590 106,567 141,567C144,567 147,567 150,568C150,509 122,474 67,442z"/>
740
+ <glyph unicode="&#x2BE;" horiz-adv-x="157" d="M28,545C108,542 148,582 148,642C148,702 108,743 28,740l0,-46C72,694 88,673 88,642C88,612 72,590 28,590z"/>
741
+ <glyph unicode="&#x2BF;" horiz-adv-x="165" d="M136,740C57,743 16,702 16,642C16,582 57,542 136,545l0,45C92,590 76,612 76,642C76,673 92,694 136,694z"/>
742
+ <glyph unicode="`" horiz-adv-x="549" d="M262,573l86,0l-90,146l-114,0z"/>
743
+ <glyph unicode="&#xB4;" horiz-adv-x="549" d="M405,719l-115,0l-89,-146l85,0z"/>
744
+ <glyph unicode="&#x2C6;" horiz-adv-x="549" d="M133,573l79,0l60,85l4,0l60,-85l80,0l-95,146l-93,0z"/>
745
+ <glyph unicode="&#x2C7;" horiz-adv-x="549" d="M228,573l93,0l95,146l-80,0l-60,-85l-4,0l-60,85l-79,0z"/>
746
+ <glyph unicode="&#x2C8;" horiz-adv-x="131" d="M24,536l83,0l6,192l-95,0z"/>
747
+ <glyph unicode="&#x2C9;" horiz-adv-x="293" d="M16,596l261,0l0,76l-261,0z"/>
748
+ <glyph unicode="&#x2CA;" horiz-adv-x="230" d="M245,719l-115,0l-89,-146l85,0z"/>
749
+ <glyph unicode="&#x2CB;" horiz-adv-x="230" d="M102,573l86,0l-90,146l-114,0z"/>
750
+ <glyph unicode="&#x2CC;" horiz-adv-x="131" d="M24,-68l-6,-192l95,0l-6,192z"/>
751
+ <glyph unicode="&#x2DC;" horiz-adv-x="549" d="M122,577l61,0C189,610 200,625 218,625C250,625 283,577 334,577C386,577 419,622 427,698l-61,0C360,665 349,650 330,650C300,650 266,698 214,698C163,698 130,653 122,577z"/>
752
+ <glyph unicode="&#xA8;" horiz-adv-x="549" d="M182,579C216,579 241,605 241,639C241,672 216,698 182,698C147,698 122,672 122,639C122,605 147,579 182,579 z M367,579C402,579 427,605 427,639C427,672 402,698 367,698C332,698 308,672 308,639C308,605 332,579 367,579z"/>
753
+ <glyph unicode="&#xAF;" horiz-adv-x="549" d="M144,596l261,0l0,76l-261,0z"/>
754
+ <glyph unicode="&#x2D8;" horiz-adv-x="549" d="M274,575C364,575 404,642 407,708l-67,0C336,672 315,640 274,640C233,640 213,672 208,708l-66,0C145,642 185,575 274,575z"/>
755
+ <glyph unicode="&#x2DA;" horiz-adv-x="549" d="M274,545C335,545 378,584 378,642C378,701 335,740 274,740C214,740 171,701 171,642C171,584 214,545 274,545 z M274,591C250,591 230,612 230,642C230,673 250,694 274,694C299,694 319,673 319,642C319,612 299,591 274,591z"/>
756
+ <glyph unicode="&#x2DD;" horiz-adv-x="549" d="M162,572l73,0l92,147l-95,0 z M322,572l72,0l92,147l-95,0z"/>
757
+ <glyph unicode="&#x2D9;" horiz-adv-x="549" d="M274,577C314,577 342,604 342,643C342,681 314,708 274,708C235,708 206,681 206,643C206,604 235,577 274,577z"/>
758
+ <glyph unicode="&#xB8;" horiz-adv-x="549" d="M209,-75C252,-86 270,-100 270,-121C270,-148 234,-161 184,-167l10,-50C279,-211 355,-182 355,-119C355,-78 330,-58 296,-46l23,49l-70,0z"/>
759
+ <glyph unicode="&#x2DB;" horiz-adv-x="549" d="M198,-120C198,-178 242,-208 296,-208C325,-208 364,-196 386,-178l-26,54C350,-132 337,-137 322,-137C300,-137 278,-124 278,-95C278,-60 300,-28 339,3l-70,0C239,-19 198,-64 198,-120z"/>
760
+ <glyph unicode="&#x300;" horiz-adv-x="0" d="M-12,573l86,0l-90,146l-114,0z"/>
761
+ <glyph unicode="&#xE0B3;" horiz-adv-x="0" d="M-30,704l93,0l-84,116l-126,0z"/>
762
+ <glyph unicode="&#x301;" horiz-adv-x="0" d="M130,719l-114,0l-90,-146l86,0z"/>
763
+ <glyph unicode="&#xE0B4;" horiz-adv-x="0" d="M147,820l-126,0l-84,-116l93,0z"/>
764
+ <glyph unicode="&#x302;" horiz-adv-x="0" d="M-142,573l80,0l60,85l4,0l60,-85l80,0l-96,146l-92,0z"/>
765
+ <glyph unicode="&#xE0B5;" horiz-adv-x="0" d="M-62,704l60,64l4,0l60,-64l90,0l-96,116l-112,0l-96,-116z"/>
766
+ <glyph unicode="&#x303;" horiz-adv-x="0" d="M-153,577l61,0C-85,610 -74,625 -56,625C-24,625 8,577 60,577C111,577 145,622 153,698l-61,0C85,665 74,650 56,650C25,650 -8,698 -60,698C-111,698 -145,653 -153,577z"/>
767
+ <glyph unicode="&#xE0B6;" horiz-adv-x="0" d="M62,707C112,707 150,753 158,829l-61,0C91,796 76,781 58,781C24,781 -8,829 -62,829C-112,829 -150,784 -158,707l61,0C-91,740 -76,756 -58,756C-24,756 8,707 62,707z"/>
768
+ <glyph unicode="&#x304;" horiz-adv-x="0" d="M-130,596l260,0l0,76l-260,0z"/>
769
+ <glyph unicode="&#xE0B7;" horiz-adv-x="0" d="M-133,724l266,0l0,76l-266,0z"/>
770
+ <glyph unicode="&#x306;" horiz-adv-x="0" d="M0,575C90,575 129,642 133,708l-67,0C61,672 41,640 0,640C-41,640 -61,672 -66,708l-67,0C-129,642 -90,575 0,575z"/>
771
+ <glyph unicode="&#xE0B8;" horiz-adv-x="0" d="M0,705C84,705 123,756 130,820l-66,0C58,791 40,766 0,766C-40,766 -58,791 -64,820l-66,0C-123,756 -84,705 0,705z"/>
772
+ <glyph unicode="&#x307;" horiz-adv-x="0" d="M0,577C40,577 68,604 68,643C68,681 40,708 0,708C-40,708 -68,681 -68,643C-68,604 -40,577 0,577z"/>
773
+ <glyph unicode="&#xE0B9;" horiz-adv-x="0" d="M0,707C41,707 71,734 71,773C71,811 41,838 0,838C-41,838 -71,811 -71,773C-71,734 -41,707 0,707z"/>
774
+ <glyph unicode="&#x308;" horiz-adv-x="0" d="M-93,579C-58,579 -33,605 -33,639C-33,672 -58,698 -93,698C-128,698 -152,672 -152,639C-152,605 -128,579 -93,579 z M93,579C128,579 152,605 152,639C152,672 128,698 93,698C58,698 33,672 33,639C33,605 58,579 93,579z"/>
775
+ <glyph unicode="&#xE0BA;" horiz-adv-x="0" d="M-93,708C-58,708 -33,733 -33,767C-33,802 -58,827 -93,827C-128,827 -152,802 -152,767C-152,733 -128,708 -93,708 z M93,708C128,708 152,733 152,767C152,802 128,827 93,827C58,827 33,802 33,767C33,733 58,708 93,708z"/>
776
+ <glyph unicode="&#x309;" horiz-adv-x="0" d="M-32,555C35,563 94,590 94,653C94,706 46,736 -60,740l-13,-61C-16,676 8,663 8,641C8,619 -14,610 -42,603z"/>
777
+ <glyph unicode="&#xE0BB;" horiz-adv-x="0" d="M-32,694C35,702 94,730 94,793C94,845 46,876 -60,879l-13,-61C-16,815 8,803 8,780C8,759 -14,749 -42,743z"/>
778
+ <glyph unicode="&#x30A;" horiz-adv-x="0" d="M0,545C61,545 103,584 103,642C103,701 61,740 0,740C-61,740 -103,701 -103,642C-103,584 -61,545 0,545 z M0,591C-25,591 -44,612 -44,642C-44,673 -25,694 0,694C25,694 44,673 44,642C44,612 25,591 0,591z"/>
779
+ <glyph unicode="&#xE0BC;" horiz-adv-x="0" d="M0,698C60,698 103,734 103,791C103,847 60,884 0,884C-61,884 -103,847 -103,791C-103,734 -61,698 0,698 z M0,744C-25,744 -44,761 -44,791C-44,820 -25,838 0,838C24,838 44,820 44,791C44,761 24,744 0,744z"/>
780
+ <glyph unicode="&#x30B;" horiz-adv-x="0" d="M-112,572l73,0l91,147l-94,0 z M47,572l73,0l92,147l-95,0z"/>
781
+ <glyph unicode="&#xE0BD;" horiz-adv-x="0" d="M-44,704l87,116l-102,0l-64,-116 z M46,704l79,0l87,116l-102,0z"/>
782
+ <glyph unicode="&#x30C;" horiz-adv-x="0" d="M-46,573l92,0l96,146l-80,0l-60,-85l-4,0l-60,85l-80,0z"/>
783
+ <glyph unicode="&#xE0BE;" horiz-adv-x="0" d="M62,820l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
784
+ <glyph unicode="&#x30F;" horiz-adv-x="0" d="M42,719l-94,0l91,-147l73,0 z M-117,719l-95,0l92,-147l73,0z"/>
785
+ <glyph unicode="&#xE0BF;" horiz-adv-x="0" d="M123,704l-64,116l-102,0l87,-116 z M-110,820l-102,0l87,-116l79,0z"/>
786
+ <glyph unicode="&#x312;" horiz-adv-x="0" d="M30,744C-33,718 -60,672 -60,621C-60,571 -40,545 -2,545C24,545 45,563 45,596C45,625 22,641 -2,641C-5,641 -8,641 -11,640C-8,668 12,689 50,706z"/>
787
+ <glyph unicode="&#x313;" horiz-adv-x="0" d="M-32,542C30,568 58,615 58,666C58,715 38,742 0,742C-26,742 -47,724 -47,691C-47,662 -24,646 0,646C3,646 5,646 8,647C5,618 -15,597 -52,581z"/>
788
+ <glyph unicode="&#x31B;" horiz-adv-x="0" d="M0,430C87,437 157,472 157,552C157,581 145,607 131,625l-80,-37C59,576 66,561 66,544C66,503 38,488 -9,480z"/>
789
+ <glyph unicode="&#x323;" horiz-adv-x="0" d="M0,-216C40,-216 68,-189 68,-150C68,-112 40,-85 0,-85C-40,-85 -68,-112 -68,-150C-68,-189 -40,-216 0,-216z"/>
790
+ <glyph unicode="&#x324;" horiz-adv-x="0" d="M-93,-208C-58,-208 -33,-182 -33,-149C-33,-115 -58,-89 -93,-89C-128,-89 -152,-115 -152,-149C-152,-182 -128,-208 -93,-208 z M93,-208C128,-208 152,-182 152,-149C152,-115 128,-89 93,-89C58,-89 33,-115 33,-149C33,-182 58,-208 93,-208z"/>
791
+ <glyph unicode="&#x326;" horiz-adv-x="0" d="M-32,-45l-24,-46C-26,-98 -8,-109 -8,-132C-8,-156 -44,-167 -94,-173l10,-50C1,-217 77,-188 77,-125C77,-78 46,-54 -32,-45z"/>
792
+ <glyph unicode="&#x327;" horiz-adv-x="0" d="M-69,-75C-26,-86 -8,-100 -8,-121C-8,-148 -44,-161 -94,-167l10,-50C1,-211 77,-182 77,-119C77,-78 51,-58 18,-46l23,49l-70,0z"/>
793
+ <glyph unicode="&#xE0C0;" horiz-adv-x="0" d="M-69,-75C-26,-86 -8,-100 -8,-121C-8,-148 -44,-161 -94,-167l10,-50C1,-211 77,-182 77,-119C77,-78 51,-58 18,-46l23,49l-70,0z"/>
794
+ <glyph unicode="&#x328;" horiz-adv-x="0" d="M-76,-120C-76,-178 -33,-208 22,-208C50,-208 90,-196 112,-178l-26,54C76,-132 62,-137 48,-137C26,-137 4,-124 4,-95C4,-60 25,-28 65,3l-71,0C-35,-19 -76,-64 -76,-120z"/>
795
+ <glyph unicode="&#xE0C1;" horiz-adv-x="0" d="M-4,3C-35,-19 -78,-68 -78,-127C-78,-186 -31,-218 27,-218C58,-218 97,-204 120,-186l-29,60C80,-134 68,-140 53,-140C31,-140 8,-127 8,-98C8,-64 32,-28 71,3z"/>
796
+ <glyph unicode="&#x32E;" horiz-adv-x="0" d="M0,-208C90,-208 129,-141 133,-75l-67,0C61,-111 41,-142 0,-142C-41,-142 -61,-111 -66,-75l-67,0C-129,-141 -90,-208 0,-208z"/>
797
+ <glyph unicode="&#x331;" horiz-adv-x="0" d="M130,-104l-261,0l0,-76l261,0z"/>
798
+ <glyph unicode="&#xE0C2;" horiz-adv-x="0" d="M-93,579C-62,579 -39,603 -39,633C-39,663 -62,686 -93,686C-124,686 -146,663 -146,633C-146,603 -124,579 -93,579 z M93,579C124,579 146,603 146,633C146,663 124,686 93,686C62,686 39,663 39,633C39,603 62,579 93,579 z M-131,753l261,0l0,58l-261,0z"/>
799
+ <glyph unicode="&#xE0C3;" horiz-adv-x="0" d="M-133,866l266,0l0,58l-266,0 z M-93,708C-62,708 -39,730 -39,761C-39,792 -62,815 -93,815C-124,815 -146,792 -146,761C-146,730 -124,708 -93,708 z M93,708C124,708 146,730 146,761C146,792 124,815 93,815C62,815 39,792 39,761C39,730 62,708 93,708z"/>
800
+ <glyph unicode="&#xE0C4;" horiz-adv-x="0" d="M-60,729l76,0l109,107l-103,0 z M-93,579C-62,579 -39,603 -39,633C-39,663 -62,686 -93,686C-124,686 -146,663 -146,633C-146,603 -124,579 -93,579 z M93,579C124,579 146,603 146,633C146,663 124,686 93,686C62,686 39,663 39,633C39,603 62,579 93,579z"/>
801
+ <glyph unicode="&#xE0C5;" horiz-adv-x="0" d="M-63,846l93,0l115,116l-123,0 z M-93,708C-62,708 -39,730 -39,761C-39,792 -62,815 -93,815C-124,815 -146,792 -146,761C-146,730 -124,708 -93,708 z M93,708C124,708 146,730 146,761C146,792 124,815 93,815C62,815 39,792 39,761C39,730 62,708 93,708z"/>
802
+ <glyph unicode="&#xE0C6;" horiz-adv-x="0" d="M-49,729l98,0l88,107l-81,0l-54,-61l-4,0l-54,61l-81,0 z M-93,579C-62,579 -39,603 -39,633C-39,663 -62,686 -93,686C-124,686 -146,663 -146,633C-146,603 -124,579 -93,579 z M93,579C124,579 146,603 146,633C146,663 124,686 93,686C62,686 39,663 39,633C39,603 62,579 93,579z"/>
803
+ <glyph unicode="&#xE0C7;" horiz-adv-x="0" d="M-93,708C-62,708 -39,730 -39,761C-39,792 -62,815 -93,815C-124,815 -146,792 -146,761C-146,730 -124,708 -93,708 z M93,708C124,708 146,730 146,761C146,792 124,815 93,815C62,815 39,792 39,761C39,730 62,708 93,708 z M62,962l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
804
+ <glyph unicode="&#xE0C8;" horiz-adv-x="0" d="M-22,836l-103,0l109,-107l76,0 z M93,579C124,579 146,603 146,633C146,663 124,686 93,686C62,686 39,663 39,633C39,603 62,579 93,579 z M-93,579C-62,579 -39,603 -39,633C-39,663 -62,686 -93,686C-124,686 -146,663 -146,633C-146,603 -124,579 -93,579z"/>
805
+ <glyph unicode="&#xE0C9;" horiz-adv-x="0" d="M-22,962l-123,0l115,-116l93,0 z M93,708C124,708 146,730 146,761C146,792 124,815 93,815C62,815 39,792 39,761C39,730 62,708 93,708 z M-93,708C-62,708 -39,730 -39,761C-39,792 -62,815 -93,815C-124,815 -146,792 -146,761C-146,730 -124,708 -93,708z"/>
806
+ <glyph unicode="&#xE0CA;" horiz-adv-x="0" d="M-128,573l74,0l52,69l4,0l52,-69l74,0l-82,124l-92,0 z M98,643l67,0l93,116l-89,0z"/>
807
+ <glyph unicode="&#xE0CB;" horiz-adv-x="0" d="M102,770l68,0l95,116l-93,0 z M-144,704l84,0l58,58l4,0l58,-58l84,0l-94,110l-100,0z"/>
808
+ <glyph unicode="&#xE0CC;" horiz-adv-x="0" d="M-128,573l74,0l52,69l4,0l52,-69l74,0l-82,124l-92,0 z M155,759l-90,0l94,-116l67,0z"/>
809
+ <glyph unicode="&#xE0CD;" horiz-adv-x="0" d="M142,886l-93,0l94,-116l68,0 z M-144,704l84,0l58,58l4,0l58,-58l84,0l-94,110l-100,0z"/>
810
+ <glyph unicode="&#xE0CE;" horiz-adv-x="0" d="M-128,573l74,0l52,69l4,0l52,-69l74,0l-82,124l-92,0 z M127,628C182,638 232,657 232,716C232,763 191,790 97,793l-10,-52C137,738 154,726 154,704C154,685 139,676 118,670z"/>
811
+ <glyph unicode="&#xE0CF;" horiz-adv-x="0" d="M126,752C183,758 230,780 230,835C230,880 191,908 97,912l-11,-52C135,857 154,847 154,825C154,806 137,798 115,793 z M-144,704l84,0l58,58l4,0l58,-58l84,0l-94,110l-100,0z"/>
812
+ <glyph unicode="&#xE0D0;" horiz-adv-x="0" d="M-136,572l77,0l57,62l4,0l57,-62l77,0l-84,108l-104,0 z M-86,716C-80,744 -67,756 -48,756C-18,756 2,716 54,716C99,716 132,752 138,818l-52,0C80,790 67,778 48,778C18,778 -2,818 -54,818C-99,818 -132,782 -138,716z"/>
813
+ <glyph unicode="&#xE0D1;" horiz-adv-x="0" d="M-144,704l84,0l58,58l4,0l58,-58l84,0l-94,110l-100,0 z M-87,849C-82,877 -67,891 -49,891C-19,891 7,849 55,849C100,849 134,887 141,953l-54,0C82,925 67,911 49,911C19,911 -7,953 -55,953C-100,953 -134,915 -141,849z"/>
814
+ <glyph unicode="&#xE0D2;" horiz-adv-x="0" d="M-42,684l62,0l88,116l-87,0 z M0,575C90,575 129,642 133,708l-55,0C72,668 48,634 0,634C-48,634 -72,668 -78,708l-55,0C-129,642 -90,575 0,575z"/>
815
+ <glyph unicode="&#xE0D3;" horiz-adv-x="0" d="M-42,805l62,0l99,112l-92,0 z M0,705C82,705 122,755 129,818l-56,0C65,786 46,760 0,760C-46,760 -65,786 -73,818l-56,0C-122,755 -82,705 0,705z"/>
816
+ <glyph unicode="&#xE0D4;" horiz-adv-x="0" d="M-21,800l-87,0l88,-116l62,0 z M0,575C90,575 129,642 133,708l-55,0C72,668 48,634 0,634C-48,634 -72,668 -78,708l-55,0C-129,642 -90,575 0,575z"/>
817
+ <glyph unicode="&#xE0D5;" horiz-adv-x="0" d="M-27,917l-92,0l99,-112l62,0 z M0,705C82,705 122,755 129,818l-56,0C65,786 46,760 0,760C-46,760 -65,786 -73,818l-56,0C-122,755 -82,705 0,705z"/>
818
+ <glyph unicode="&#xE0D6;" horiz-adv-x="0" d="M0,575C90,575 129,642 133,708l-55,0C72,668 48,634 0,634C-48,634 -72,668 -78,708l-55,0C-129,642 -90,575 0,575 z M-31,691C25,700 74,719 74,779C74,826 34,852 -60,855l-11,-51C-21,801 -4,789 -4,767C-4,747 -18,739 -40,733z"/>
819
+ <glyph unicode="&#xE0D7;" horiz-adv-x="0" d="M-28,803C29,810 76,831 76,886C76,932 37,960 -57,963l-11,-51C-19,908 0,898 0,876C0,857 -17,849 -39,844 z M0,705C82,705 122,755 129,818l-56,0C65,786 46,760 0,760C-46,760 -65,786 -73,818l-56,0C-122,755 -82,705 0,705z"/>
820
+ <glyph unicode="&#xE0D8;" horiz-adv-x="0" d="M0,575C90,575 128,629 132,688l-57,0C69,659 47,632 0,632C-47,632 -69,659 -75,688l-57,0C-128,629 -90,575 0,575 z M-138,716l52,0C-80,744 -67,756 -48,756C-18,756 2,716 54,716C99,716 132,752 138,818l-52,0C80,790 67,778 48,778C18,778 -2,818 -54,818C-99,818 -132,782 -138,716z"/>
821
+ <glyph unicode="&#xE0D9;" horiz-adv-x="0" d="M0,705C82,705 122,755 129,818l-56,0C65,786 46,760 0,760C-46,760 -65,786 -73,818l-56,0C-122,755 -82,705 0,705 z M-87,849C-82,877 -67,891 -49,891C-19,891 7,849 55,849C100,849 134,887 141,953l-54,0C82,925 67,911 49,911C19,911 -7,953 -55,953C-100,953 -134,915 -141,849z"/>
822
+ <glyph unicode="&#xE0DA;" horiz-adv-x="30" d="M29,548l19,154l1,63l-77,0l5,-217z"/>
823
+ <glyph unicode="&#xE0DB;" horiz-adv-x="0" d="M32,543l23,46C26,596 8,607 8,630C8,654 43,665 93,671l-9,50C-2,715 -78,686 -78,623C-78,576 -47,552 32,543z"/>
824
+ <glyph unicode="&#xA0;" horiz-adv-x="205"/>
825
+ <glyph unicode="&#x2007;" horiz-adv-x="513"/>
826
+ <glyph unicode="&#xE0DC;" horiz-adv-x="137"/>
827
+ <glyph unicode="&#xE0DD;" horiz-adv-x="137"/>
828
+ <glyph unicode="&#x243;" horiz-adv-x="616" d="M220,84l0,92l138,0l0,59l-138,0l0,83l98,0C415,318 470,283 470,206C470,125 414,84 318,84 z M220,570l85,0C390,570 435,545 435,485C435,424 394,389 302,389l-82,0 z M434,363C511,383 546,437 546,496C546,612 447,654 313,654l-209,0l0,-419l-76,-5l0,-54l76,0l0,-176l226,0C474,0 581,63 581,198C581,290 528,342 434,359z"/>
829
+ <glyph unicode="&#x12C;" horiz-adv-x="282" d="M83,0l116,0l0,654l-116,0 z M141,705C225,705 264,756 271,820l-65,0C200,791 181,766 141,766C102,766 83,791 77,820l-66,0C18,756 58,705 141,705z"/>
830
+ <glyph unicode="&#x14E;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M337,705C421,705 460,756 467,820l-65,0C396,791 377,766 337,766C298,766 279,791 273,820l-66,0C214,756 254,705 337,705z"/>
831
+ <glyph unicode="&#x180;" horiz-adv-x="558" d="M188,333C226,370 260,388 296,388C370,388 402,333 402,242C402,137 352,83 287,83C258,83 223,94 188,124 z M188,504l0,60l176,0l0,59l-176,0l0,83l-115,0l0,-83l-71,-5l0,-54l71,0l0,-564l91,0l10,50l3,0C218,10 266,-12 311,-12C420,-12 521,81 521,244C521,389 450,483 327,483C277,483 226,458 185,422z"/>
832
+ <glyph unicode="&#x12D;" horiz-adv-x="262" d="M73,0l115,0l0,491l-115,0 z M131,575C221,575 260,642 264,708l-67,0C192,672 172,640 131,640C90,640 70,672 65,708l-67,0C2,642 42,575 131,575z"/>
833
+ <glyph unicode="&#x14F;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M274,575C364,575 404,642 407,708l-67,0C336,672 315,640 274,640C233,640 213,672 208,708l-66,0C145,642 185,575 274,575z"/>
834
+ <glyph unicode="&#xE0DE;" horiz-adv-x="0" d="M-136,572l77,0l57,62l4,0l57,-62l77,0l-84,108l-104,0 z M0,712C81,712 119,762 122,818l-57,0C60,791 41,769 0,769C-41,769 -60,791 -65,818l-57,0C-119,762 -81,712 0,712z"/>
835
+ <glyph unicode="&#xE0DF;" horiz-adv-x="0" d="M-144,704l84,0l58,58l4,0l58,-58l84,0l-94,110l-100,0 z M0,846C82,846 122,890 129,952l-56,0C65,922 46,901 0,901C-46,901 -65,922 -73,952l-56,0C-122,890 -82,846 0,846z"/>
836
+ <glyph unicode="&#x1E06;" horiz-adv-x="597" d="M83,0l226,0C453,0 560,61 560,192C560,280 508,331 414,347l0,4C490,371 526,431 526,493C526,613 427,654 292,654l-209,0 z M199,383l0,181l85,0C369,564 412,539 412,479C412,418 373,383 282,383 z M199,90l0,210l98,0C395,300 447,268 447,200C447,126 393,90 297,90 z M438,-104l-262,0l0,-76l262,0z"/>
837
+ <glyph unicode="&#x1E07;" horiz-adv-x="564" d="M73,0l91,0l10,50l3,0C218,10 266,-12 311,-12C420,-12 521,85 521,254C521,405 450,503 327,503C277,503 226,478 185,442l3,82l0,182l-115,0 z M188,124l0,229C226,390 260,408 296,408C370,408 402,350 402,252C402,141 352,83 287,83C258,83 223,94 188,124 z M419,-104l-262,0l0,-76l262,0z"/>
838
+ <glyph unicode="&#x1E34;" horiz-adv-x="597" d="M83,0l116,0l0,191l94,117l177,-308l128,0l-235,399l201,255l-129,0l-233,-297l-3,0l0,297l-116,0 z M459,-104l-262,0l0,-76l262,0z"/>
839
+ <glyph unicode="&#x1E35;" horiz-adv-x="522" d="M73,0l113,0l0,125l77,88l126,-213l125,0l-185,291l168,200l-126,0l-182,-226l-3,0l0,441l-113,0 z M414,-104l-262,0l0,-76l262,0z"/>
840
+ <glyph unicode="&#x1E16;" horiz-adv-x="538" d="M83,0l404,0l0,98l-288,0l0,193l235,0l0,98l-235,0l0,167l278,0l0,98l-394,0 z M222,846l93,0l115,116l-123,0 z M152,724l266,0l0,76l-266,0z"/>
841
+ <glyph unicode="&#x1E17;" horiz-adv-x="507" d="M41,245C41,83 147,-12 283,-12C345,-12 404,10 451,41l-39,72C376,90 340,77 298,77C219,77 163,127 153,216l312,0C468,228 470,248 470,270C470,407 400,503 267,503C152,503 41,405 41,245 z M152,289C162,371 212,414 270,414C337,414 370,367 370,289 z M207,729l76,0l109,107l-103,0 z M137,596l261,0l0,76l-261,0z"/>
842
+ <glyph unicode="&#x1E52;" horiz-adv-x="674" d="M337,-12C508,-12 626,118 626,330C626,541 508,666 337,666C167,666 49,541 49,330C49,118 167,-12 337,-12 z M337,89C234,89 168,183 168,330C168,476 234,565 337,565C440,565 506,476 506,330C506,183 440,89 337,89 z M272,846l93,0l115,116l-122,0 z M203,724l265,0l0,76l-265,0z"/>
843
+ <glyph unicode="&#x1E53;" horiz-adv-x="549" d="M41,245C41,82 152,-12 274,-12C397,-12 508,82 508,245C508,409 397,503 274,503C152,503 41,409 41,245 z M159,245C159,344 202,409 274,409C346,409 390,344 390,245C390,147 346,82 274,82C202,82 159,147 159,245 z M214,729l76,0l110,107l-104,0 z M144,596l261,0l0,76l-261,0z"/>
844
+ <glyph unicode="&#x2016;" horiz-adv-x="422" d="M89,-250l77,0l0,1000l-77,0 z M256,-250l77,0l0,1000l-77,0z"/>
845
+ <glyph unicode="&#x203D;" horiz-adv-x="456" d="M241,424l3,96l-95,0l9,-96l13,-209l32,0l37,0l12,0C237,323 412,365 412,520C412,618 330,682 215,682C141,682 69,648 22,595l64,-59C121,574 159,594 207,594C267,594 306,556 306,500C306,438 270,403 241,358 z M208,144C166,144 134,111 134,66C134,21 166,-12 208,-12C250,-12 283,21 283,66C283,111 250,144 208,144z"/>
846
+ <glyph unicode="&#x231C;" horiz-adv-x="324" d="M90,0l87,0l0,628l109,0l0,62l-196,0z"/>
847
+ <glyph unicode="&#x231D;" horiz-adv-x="324" d="M234,690l-196,0l0,-62l109,0l0,-628l87,0z"/>
848
+ <glyph unicode="&#x231E;" horiz-adv-x="324" d="M90,-54l196,0l0,63l-109,0l0,627l-87,0z"/>
849
+ <glyph unicode="&#x231F;" horiz-adv-x="324" d="M234,636l-87,0l0,-627l-109,0l0,-63l196,0z"/>
850
+ <glyph unicode="&#x27E6;" horiz-adv-x="408" d="M90,-152l280,0l0,63l-102,0l0,734l102,0l0,63l-280,0 z M159,645l47,0l0,-734l-47,0z"/>
851
+ <glyph unicode="&#x27E7;" horiz-adv-x="408" d="M318,708l-280,0l0,-63l102,0l0,-734l-102,0l0,-63l280,0 z M249,645l0,-734l-47,0l0,734z"/>
852
+ <glyph unicode="&#x2E22;" horiz-adv-x="324" d="M90,278l87,0l0,367l109,0l0,63l-196,0z"/>
853
+ <glyph unicode="&#x2E23;" horiz-adv-x="324" d="M234,708l-196,0l0,-63l109,0l0,-367l87,0z"/>
854
+ <glyph unicode="&#x2E24;" horiz-adv-x="324" d="M90,-152l196,0l0,63l-109,0l0,367l-87,0z"/>
855
+ <glyph unicode="&#x2E25;" horiz-adv-x="324" d="M234,278l-87,0l0,-367l-109,0l0,-63l196,0z"/>
856
+ <glyph unicode="&#xE0E0;" horiz-adv-x="513" d="M256,-12C388,-12 472,106 472,321C472,535 388,648 256,648C124,648 40,536 40,321C40,106 124,-12 256,-12 z M256,78C192,78 144,147 144,321C144,495 192,558 256,558C321,558 368,495 368,321C368,147 321,78 256,78 z M256,252C294,252 322,279 322,323C322,367 294,394 256,394C218,394 191,367 191,323C191,279 218,252 256,252z"/>
857
+ <glyph unicode="&#xE0E1;" horiz-adv-x="513" d="M341,142C321,93 291,72 256,72C192,72 144,143 144,321C144,357 146,389 150,416 z M171,499C191,545 221,564 256,564C320,564 368,500 368,321C368,285 366,253 362,225 z M256,648C124,648 40,536 40,321C40,106 124,-12 256,-12C388,-12 472,106 472,321C472,535 388,648 256,648z"/>
858
+ <glyph unicode="&#xE0E2;" horiz-adv-x="559" d="M280,-12C418,-12 506,111 506,321C506,530 418,648 280,648C142,648 54,530 54,321C54,111 142,-12 280,-12 z M280,82C210,82 164,152 164,321C164,490 210,554 280,554C350,554 396,490 396,321C396,152 350,82 280,82 z M280,252C318,252 346,279 346,323C346,367 318,394 280,394C242,394 213,367 213,323C213,279 242,252 280,252z"/>
859
+ <glyph unicode="&#xE0E3;" horiz-adv-x="559" d="M373,142C351,93 318,72 280,72C210,72 158,143 158,321C158,359 160,392 165,420 z M187,498C209,545 242,564 280,564C349,564 402,500 402,321C402,282 399,248 395,219 z M280,648C142,648 54,530 54,321C54,111 142,-12 280,-12C418,-12 506,111 506,321C506,530 418,648 280,648z"/>
860
+ <glyph unicode="&#xE0E4;" horiz-adv-x="262" d="M131,577C172,577 202,604 202,642C202,681 172,708 131,708C90,708 60,681 60,642C60,604 90,577 131,577 z M73,0l115,0l0,491l-115,0z"/>
861
+ <glyph unicode="&#xE0E5;" horiz-adv-x="487" d="M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
862
+ <glyph unicode="&#xE0E6;" horiz-adv-x="536" d="M83,0l200,0C406,0 500,46 500,153C500,223 456,262 381,277l0,4C443,297 472,346 472,393C472,493 384,523 268,523l-185,0 z M199,308l0,130l67,0C333,438 366,421 366,377C366,334 337,308 265,308 z M199,85l0,149l74,0C349,234 388,210 388,162C388,109 346,85 273,85z"/>
863
+ <glyph unicode="&#xE0E7;" horiz-adv-x="512" d="M49,259C49,81 163,-12 305,-12C377,-12 438,13 485,64l-63,68C393,103 358,84 310,84C223,84 167,148 167,263C167,373 229,439 314,439C355,439 384,424 413,397l63,70C439,504 381,535 313,535C168,535 49,433 49,259z"/>
864
+ <glyph unicode="&#xE0E8;" horiz-adv-x="568" d="M83,0l162,0C408,0 519,83 519,264C519,444 408,523 238,523l-155,0 z M199,90l0,343l44,0C346,433 400,378 400,264C400,146 346,90 243,90z"/>
865
+ <glyph unicode="&#xE0E9;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0z"/>
866
+ <glyph unicode="&#xE0EA;" horiz-adv-x="460" d="M83,0l116,0l0,207l196,0l0,88l-196,0l0,133l229,0l0,95l-345,0z"/>
867
+ <glyph unicode="&#xE0EB;" horiz-adv-x="563" d="M49,259C49,81 165,-12 317,-12C393,-12 461,14 501,50l0,239l-201,0l0,-82l98,0l0,-105C381,89 355,82 326,82C220,82 167,150 167,259C167,374 230,440 322,440C370,440 400,424 428,398l63,69C454,502 399,535 321,535C169,535 49,433 49,259z"/>
868
+ <glyph unicode="&#xE0EC;" horiz-adv-x="608" d="M83,0l116,0l0,221l210,0l0,-221l116,0l0,523l-116,0l0,-202l-210,0l0,202l-116,0z"/>
869
+ <glyph unicode="&#xE0ED;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0z"/>
870
+ <glyph unicode="&#xE0EE;" horiz-adv-x="454" d="M24,83C61,21 116,-12 197,-12C318,-12 374,71 374,170l0,353l-116,0l0,-344C258,108 232,85 185,85C152,85 123,104 102,140z"/>
871
+ <glyph unicode="&#xE0EF;" horiz-adv-x="535" d="M83,0l116,0l0,156l73,79l140,-235l124,0l-197,315l170,208l-126,0l-181,-219l-3,0l0,219l-116,0z"/>
872
+ <glyph unicode="&#xE0F0;" horiz-adv-x="454" d="M83,0l339,0l0,95l-223,0l0,428l-116,0z"/>
873
+ <glyph unicode="&#xE0F1;" horiz-adv-x="666" d="M83,0l105,0l0,201C188,252 178,332 173,383l4,0l47,-121l87,-216l44,0l86,216l48,121l4,0C487,332 479,252 479,201l0,-201l104,0l0,523l-122,0l-89,-239l-36,-96l-4,0l-34,96l-92,239l-123,0z"/>
874
+ <glyph unicode="&#xE0F2;" horiz-adv-x="596" d="M83,0l107,0l0,194C190,255 181,329 175,386l4,0l59,-118l160,-268l114,0l0,523l-106,0l0,-193C406,269 415,192 420,137l-4,0l-59,118l-157,268l-117,0z"/>
875
+ <glyph unicode="&#xE0F3;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84z"/>
876
+ <glyph unicode="&#xE0F4;" horiz-adv-x="535" d="M83,0l116,0l0,182l80,0C399,182 496,234 496,356C496,482 401,523 279,523l-196,0 z M199,262l0,170l73,0C348,432 385,409 385,350C385,293 349,262 274,262z"/>
877
+ <glyph unicode="&#xE0F5;" horiz-adv-x="602" d="M167,264C167,374 218,439 301,439C382,439 434,374 434,264C434,147 382,77 301,77C218,77 167,147 167,264 z M549,-61C532,-66 512,-70 488,-70C433,-70 386,-56 361,-6C476,19 553,116 553,264C553,435 449,535 301,535C151,535 48,436 48,264C48,115 125,17 243,-6C280,-98 355,-161 475,-161C516,-161 550,-154 570,-144z"/>
878
+ <glyph unicode="&#xE0F6;" horiz-adv-x="542" d="M199,432l69,0C339,432 380,411 380,355C380,302 343,272 269,272l-70,0 z M514,0l-129,210C448,235 490,286 490,361C490,485 396,523 278,523l-195,0l0,-523l116,0l0,191l79,0l113,-191z"/>
879
+ <glyph unicode="&#xE0F7;" horiz-adv-x="489" d="M38,63C90,19 165,-12 249,-12C377,-12 453,57 453,149C453,239 395,271 318,299l-60,22C212,339 183,355 183,387C183,424 212,445 260,445C307,445 351,424 387,396l58,74C403,504 343,536 262,536C147,536 68,474 68,381C68,302 131,261 202,235l61,-24C305,194 337,179 337,139C337,103 308,78 254,78C196,78 142,102 96,141z"/>
880
+ <glyph unicode="&#xE0F8;" horiz-adv-x="479" d="M182,0l116,0l0,428l155,0l0,95l-427,0l0,-95l156,0z"/>
881
+ <glyph unicode="&#xE0F9;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0z"/>
882
+ <glyph unicode="&#xE0FA;" horiz-adv-x="469" d="M166,0l137,0l170,523l-116,0l-71,-248C270,216 258,165 240,106l-4,0C219,165 205,216 189,275l-72,248l-121,0z"/>
883
+ <glyph unicode="&#xE0FB;" horiz-adv-x="701" d="M127,0l135,0l62,249C334,290 341,331 349,370l4,0C359,331 367,290 376,249l64,-249l137,0l105,523l-106,0l-44,-250C523,219 514,163 507,107l-4,0C490,163 477,219 465,273l-63,250l-95,0l-65,-250C231,218 217,162 206,107l-4,0C193,162 185,217 176,273l-44,250l-114,0z"/>
884
+ <glyph unicode="&#xE0FC;" horiz-adv-x="481" d="M13,0l123,0l58,109C206,137 219,164 233,196l4,0C252,164 266,137 280,109l61,-109l127,0l-157,264l147,259l-122,0l-51,-102C275,397 262,371 249,338l-4,0C229,371 216,397 204,421l-54,102l-127,0l146,-254z"/>
885
+ <glyph unicode="&#xE0FD;" horiz-adv-x="441" d="M163,0l116,0l0,188l167,335l-120,0l-54,-122C256,362 240,326 224,286l-4,0C203,326 187,362 172,401l-54,122l-122,0l167,-335z"/>
886
+ <glyph unicode="&#xE0FE;" horiz-adv-x="478" d="M40,0l400,0l0,95l-260,0l257,360l0,68l-373,0l0,-95l233,0l-257,-360z"/>
887
+ <glyph unicode="&#xE0FF;" horiz-adv-x="487" d="M304,591l-84,116l-126,0l117,-116 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
888
+ <glyph unicode="&#xE100;" horiz-adv-x="487" d="M388,707l-126,0l-84,-116l94,0 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
889
+ <glyph unicode="&#xE101;" horiz-adv-x="487" d="M239,656l4,0l60,-65l90,0l-96,116l-112,0l-96,-116l90,0 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
890
+ <glyph unicode="&#xE102;" horiz-adv-x="487" d="M338,716C332,684 317,668 299,668C265,668 233,716 180,716C130,716 92,671 84,594l60,0C150,627 165,643 184,643C217,643 250,594 303,594C353,594 391,640 399,716 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
891
+ <glyph unicode="&#xE103;" horiz-adv-x="487" d="M334,595C369,595 394,620 394,654C394,689 369,714 334,714C299,714 274,689 274,654C274,620 299,595 334,595 z M148,595C183,595 208,620 208,654C208,689 183,714 148,714C114,714 89,689 89,654C89,620 114,595 148,595 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
892
+ <glyph unicode="&#xE104;" horiz-adv-x="487" d="M374,687l-266,0l0,-76l266,0 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
893
+ <glyph unicode="&#xE105;" horiz-adv-x="487" d="M306,707C300,678 281,653 241,653C202,653 183,678 177,707l-66,0C118,644 158,592 241,592C325,592 364,644 371,707 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
894
+ <glyph unicode="&#xE106;" horiz-adv-x="487" d="M241,725C265,725 285,707 285,678C285,648 265,631 241,631C217,631 197,648 197,678C197,707 217,725 241,725 z M241,585C301,585 344,622 344,678C344,734 301,771 241,771C180,771 138,734 138,678C138,622 180,585 241,585 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
895
+ <glyph unicode="&#xE107;" horiz-adv-x="487" d="M297,591l96,116l-90,0l-60,-64l-4,0l-60,64l-90,0l96,-116 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
896
+ <glyph unicode="&#xE108;" horiz-adv-x="487" d="M241,-85C202,-85 173,-112 173,-150C173,-189 202,-216 241,-216C281,-216 309,-189 309,-150C309,-112 281,-85 241,-85 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M489,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0l37,-127z"/>
897
+ <glyph unicode="&#xE109;" horiz-adv-x="487" d="M210,582C276,590 335,617 335,680C335,732 287,763 181,766l-13,-60C225,702 250,690 250,668C250,646 228,637 199,630 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
898
+ <glyph unicode="&#xE10A;" horiz-adv-x="487" d="M506,773l-93,0l-70,-116l68,0 z M239,650l4,0l58,-59l84,0l-94,110l-100,0l-93,-110l84,0 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M176,523l-178,-523l117,0l38,127l178,0l37,-127l121,0l-178,523z"/>
899
+ <glyph unicode="&#xE10B;" horiz-adv-x="487" d="M453,657l-70,116l-93,0l95,-116 z M239,650l4,0l58,-59l84,0l-94,110l-100,0l-93,-110l84,0 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
900
+ <glyph unicode="&#xE10C;" horiz-adv-x="487" d="M368,639C424,646 472,667 472,722C472,768 432,796 338,799l-11,-51C377,744 395,734 395,712C395,693 378,685 356,680 z M239,650l4,0l58,-59l84,0l-94,110l-100,0l-93,-110l84,0 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
901
+ <glyph unicode="&#xE10D;" horiz-adv-x="487" d="M328,840C323,812 309,798 290,798C260,798 234,840 186,840C141,840 107,802 100,736l54,0C160,764 174,778 192,778C222,778 248,736 296,736C341,736 375,774 382,840 z M239,650l4,0l58,-59l84,0l-94,110l-100,0l-93,-110l84,0 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
902
+ <glyph unicode="&#xE10E;" horiz-adv-x="487" d="M239,656l4,0l60,-65l90,0l-96,116l-112,0l-96,-116l90,0 z M241,-85C202,-85 173,-112 173,-150C173,-189 202,-216 241,-216C281,-216 309,-189 309,-150C309,-112 281,-85 241,-85 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M489,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0l37,-127z"/>
903
+ <glyph unicode="&#xE10F;" horiz-adv-x="487" d="M360,804l-92,0l-69,-112l62,0 z M314,706C306,673 287,647 241,647C195,647 176,673 168,706l-56,0C119,642 159,592 241,592C323,592 363,642 370,706 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
904
+ <glyph unicode="&#xE110;" horiz-adv-x="487" d="M283,692l-69,112l-91,0l98,-112 z M314,706C306,673 287,647 241,647C195,647 176,673 168,706l-56,0C119,642 159,592 241,592C323,592 363,642 370,706 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
905
+ <glyph unicode="&#xE111;" horiz-adv-x="487" d="M214,690C270,697 318,718 318,773C318,819 278,847 184,850l-11,-51C223,796 241,786 241,763C241,744 224,736 202,731 z M314,706C306,673 287,647 241,647C195,647 176,673 168,706l-56,0C119,642 159,592 241,592C323,592 363,642 370,706 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
906
+ <glyph unicode="&#xE112;" horiz-adv-x="487" d="M328,840C323,812 309,798 290,798C260,798 234,840 186,840C141,840 107,802 100,736l54,0C160,764 174,778 192,778C222,778 248,736 296,736C341,736 375,774 382,840 z M112,706C119,642 159,592 241,592C323,592 363,642 370,706l-56,0C306,673 287,647 241,647C195,647 176,673 168,706 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M368,0l121,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0z"/>
907
+ <glyph unicode="&#xE113;" horiz-adv-x="487" d="M306,707C300,678 281,653 241,653C202,653 183,678 177,707l-66,0C118,644 158,592 241,592C325,592 364,644 371,707 z M241,-85C202,-85 173,-112 173,-150C173,-189 202,-216 241,-216C281,-216 309,-189 309,-150C309,-112 281,-85 241,-85 z M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M489,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0l37,-127z"/>
908
+ <glyph unicode="&#xE114;" horiz-adv-x="487" d="M178,211l17,57C210,322 224,380 239,435l4,0C259,381 273,322 289,268l17,-57 z M487,-126C476,-135 463,-140 446,-140C424,-140 404,-126 404,-98C404,-58 438,-12 489,0l-178,523l-135,0l-178,-523l117,0l38,127l178,0l37,-127l28,0C362,-21 318,-69 318,-127C318,-186 364,-218 423,-218C454,-218 493,-204 515,-186z"/>
909
+ <glyph unicode="&#xE115;" horiz-adv-x="726" d="M221,208l39,78C284,333 308,386 333,438l3,0l0,-230 z M452,90l0,137l180,0l0,85l-180,0l0,121l214,0l0,90l-399,0l-270,-523l119,0l62,124l158,0l0,-124l340,0l0,90z"/>
910
+ <glyph unicode="&#xE116;" horiz-adv-x="558" d="M221,73l0,59l110,0l0,47l-110,0l0,57l74,0C371,236 410,210 410,157C410,101 368,73 295,73 z M221,450l67,0C355,450 388,430 388,382C388,335 359,306 287,306l-66,0 z M403,281C465,297 494,346 494,393C494,493 406,523 290,523l-185,0l0,-344l-75,-4l0,-43l75,0l0,-132l200,0C428,0 522,46 522,153C522,223 478,262 403,277z"/>
911
+ <glyph unicode="&#xE117;" horiz-adv-x="536" d="M83,0l200,0C406,0 500,46 500,153C500,223 456,262 381,277l0,4C443,297 472,346 472,393C472,493 384,523 268,523l-185,0 z M199,308l0,130l67,0C333,438 366,421 366,377C366,334 337,308 265,308 z M199,85l0,149l74,0C349,234 388,210 388,162C388,109 346,85 273,85 z M423,-104l-261,0l0,-76l261,0z"/>
912
+ <glyph unicode="&#xE118;" horiz-adv-x="512" d="M422,132C393,103 358,84 310,84C223,84 167,148 167,263C167,373 229,439 314,439C355,439 384,424 413,397l63,70C439,504 381,535 313,535C168,535 49,433 49,259C49,98 142,6 266,-10l-34,-65C274,-86 292,-100 292,-121C292,-148 257,-161 207,-167l9,-50C302,-211 378,-182 378,-119C378,-78 352,-58 319,-46l17,36C394,-4 445,20 485,64z"/>
913
+ <glyph unicode="&#xE119;" horiz-adv-x="512" d="M49,259C49,81 163,-12 305,-12C377,-12 438,13 485,64l-63,68C393,103 358,84 310,84C223,84 167,148 167,263C167,373 229,439 314,439C355,439 384,424 413,397l63,70C439,504 381,535 313,535C168,535 49,433 49,259 z M448,707l-126,0l-84,-116l94,0z"/>
914
+ <glyph unicode="&#xE11A;" horiz-adv-x="512" d="M49,259C49,81 163,-12 305,-12C377,-12 438,13 485,64l-63,68C393,103 358,84 310,84C223,84 167,148 167,263C167,373 229,439 314,439C355,439 384,424 413,397l63,70C439,504 381,535 313,535C168,535 49,433 49,259 z M239,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
915
+ <glyph unicode="&#xE11B;" horiz-adv-x="512" d="M49,259C49,81 163,-12 305,-12C377,-12 438,13 485,64l-63,68C393,103 358,84 310,84C223,84 167,148 167,263C167,373 229,439 314,439C355,439 384,424 413,397l63,70C439,504 381,535 313,535C168,535 49,433 49,259 z M363,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
916
+ <glyph unicode="&#xE11C;" horiz-adv-x="512" d="M49,259C49,81 163,-12 305,-12C377,-12 438,13 485,64l-63,68C393,103 358,84 310,84C223,84 167,148 167,263C167,373 229,439 314,439C355,439 384,424 413,397l63,70C439,504 381,535 313,535C168,535 49,433 49,259 z M301,594C342,594 372,622 372,660C372,698 342,726 301,726C260,726 230,698 230,660C230,622 260,594 301,594z"/>
917
+ <glyph unicode="&#xE11D;" horiz-adv-x="566" d="M83,0l162,0C408,0 519,83 519,264C519,444 408,523 238,523l-155,0 z M199,90l0,343l44,0C346,433 400,378 400,264C400,146 346,90 243,90 z M352,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
918
+ <glyph unicode="&#xE11E;" horiz-adv-x="566" d="M83,0l162,0C408,0 519,83 519,264C519,444 408,523 238,523l-155,0 z M199,90l0,343l44,0C346,433 400,378 400,264C400,146 346,90 243,90 z M288,-216C328,-216 356,-189 356,-150C356,-112 328,-85 288,-85C249,-85 220,-112 220,-150C220,-189 249,-216 288,-216z"/>
919
+ <glyph unicode="&#xE11F;" horiz-adv-x="566" d="M83,0l162,0C408,0 519,83 519,264C519,444 408,523 238,523l-155,0 z M199,90l0,343l44,0C346,433 400,378 400,264C400,146 346,90 243,90 z M419,-104l-262,0l0,-76l262,0z"/>
920
+ <glyph unicode="&#xE120;" horiz-adv-x="590" d="M221,90l0,151l110,0l0,59l-110,0l0,133l44,0C368,433 422,378 422,264C422,146 368,90 265,90 z M105,523l0,-223l-75,-4l0,-55l75,0l0,-241l162,0C430,0 541,83 541,264C541,444 430,523 260,523z"/>
921
+ <glyph unicode="&#xE121;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M237,591l93,0l-84,116l-126,0z"/>
922
+ <glyph unicode="&#xE122;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M414,707l-126,0l-84,-116l93,0z"/>
923
+ <glyph unicode="&#xE123;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M205,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
924
+ <glyph unicode="&#xE124;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M329,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
925
+ <glyph unicode="&#xE125;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M174,595C209,595 234,620 234,654C234,689 209,714 174,714C139,714 115,689 115,654C115,620 139,595 174,595 z M360,595C395,595 419,620 419,654C419,689 395,714 360,714C325,714 300,689 300,654C300,620 325,595 360,595z"/>
926
+ <glyph unicode="&#xE126;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M134,611l266,0l0,76l-266,0z"/>
927
+ <glyph unicode="&#xE127;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M267,592C351,592 390,644 397,707l-66,0C325,678 307,653 267,653C227,653 209,678 203,707l-66,0C144,644 183,592 267,592z"/>
928
+ <glyph unicode="&#xE128;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M267,594C308,594 338,622 338,660C338,698 308,726 267,726C226,726 196,698 196,660C196,622 226,594 267,594z"/>
929
+ <glyph unicode="&#xE129;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M269,-216C308,-216 337,-189 337,-150C337,-112 308,-85 269,-85C229,-85 201,-112 201,-150C201,-189 229,-216 269,-216z"/>
930
+ <glyph unicode="&#xE12A;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M235,582C302,590 361,617 361,680C361,732 313,763 207,766l-13,-60C251,702 275,690 275,668C275,646 253,637 225,630z"/>
931
+ <glyph unicode="&#xE12B;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M329,594C379,594 417,640 425,716l-61,0C358,684 343,668 325,668C291,668 259,716 205,716C155,716 117,671 109,594l61,0C176,627 191,643 209,643C243,643 275,594 329,594z"/>
932
+ <glyph unicode="&#xE12C;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M369,657l68,0l95,116l-93,0 z M123,591l84,0l58,59l4,0l58,-59l84,0l-94,110l-100,0z"/>
933
+ <glyph unicode="&#xE12D;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M409,773l-93,0l94,-116l68,0 z M123,591l84,0l58,59l4,0l58,-59l84,0l-94,110l-100,0z"/>
934
+ <glyph unicode="&#xE12E;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M393,639C450,646 497,667 497,722C497,768 458,796 364,799l-11,-51C402,744 421,734 421,712C421,693 404,685 382,680 z M123,591l84,0l58,59l4,0l58,-59l84,0l-94,110l-100,0z"/>
935
+ <glyph unicode="&#xE12F;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M123,591l84,0l58,59l4,0l58,-59l84,0l-94,110l-100,0 z M180,736C185,764 200,778 218,778C248,778 274,736 322,736C367,736 401,774 408,840l-54,0C349,812 334,798 316,798C286,798 260,840 212,840C167,840 133,802 126,736z"/>
936
+ <glyph unicode="&#xE130;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M205,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116 z M269,-216C308,-216 337,-189 337,-150C337,-112 308,-85 269,-85C229,-85 201,-112 201,-150C201,-189 229,-216 269,-216z"/>
937
+ <glyph unicode="&#xE131;" horiz-adv-x="487" d="M83,0l251,0C298,-22 257,-69 257,-127C257,-186 304,-218 362,-218C393,-218 432,-204 454,-186l-28,60C415,-134 402,-140 388,-140C366,-140 343,-127 343,-98C343,-50 386,-4 432,0l4,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0z"/>
938
+ <glyph unicode="&#xE132;" horiz-adv-x="487" d="M83,0l353,0l0,90l-237,0l0,137l194,0l0,85l-194,0l0,121l227,0l0,90l-343,0 z M204,734l93,0l115,116l-123,0 z M134,611l266,0l0,76l-266,0z"/>
939
+ <glyph unicode="&#xE133;" horiz-adv-x="563" d="M49,259C49,81 165,-12 317,-12C393,-12 461,14 501,50l0,239l-201,0l0,-82l98,0l0,-105C381,89 355,82 326,82C220,82 167,150 167,259C167,374 230,440 322,440C370,440 400,424 428,398l63,69C454,502 399,535 321,535C169,535 49,433 49,259 z M252,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
940
+ <glyph unicode="&#xE134;" horiz-adv-x="563" d="M49,259C49,81 165,-12 317,-12C393,-12 461,14 501,50l0,239l-201,0l0,-82l98,0l0,-105C381,89 355,82 326,82C220,82 167,150 167,259C167,374 230,440 322,440C370,440 400,424 428,398l63,69C454,502 399,535 321,535C169,535 49,433 49,259 z M314,592C398,592 437,644 444,707l-66,0C372,678 354,653 314,653C274,653 256,678 250,707l-66,0C191,644 230,592 314,592z"/>
941
+ <glyph unicode="&#xE135;" horiz-adv-x="563" d="M49,259C49,81 165,-12 317,-12C393,-12 461,14 501,50l0,239l-201,0l0,-82l98,0l0,-105C381,89 355,82 326,82C220,82 167,150 167,259C167,374 230,440 322,440C370,440 400,424 428,398l63,69C454,502 399,535 321,535C169,535 49,433 49,259 z M314,594C355,594 385,622 385,660C385,698 355,726 314,726C273,726 243,698 243,660C243,622 273,594 314,594z"/>
942
+ <glyph unicode="&#xE136;" horiz-adv-x="563" d="M49,259C49,81 165,-12 317,-12C393,-12 461,14 501,50l0,239l-201,0l0,-82l98,0l0,-105C381,89 355,82 326,82C220,82 167,150 167,259C167,374 230,440 322,440C370,440 400,424 428,398l63,69C454,502 399,535 321,535C169,535 49,433 49,259 z M281,-45l-23,-46C287,-98 305,-109 305,-132C305,-156 270,-167 220,-173l9,-50C314,-217 390,-188 390,-125C390,-78 360,-54 281,-45z"/>
943
+ <glyph unicode="&#xE137;" horiz-adv-x="563" d="M49,259C49,81 165,-12 317,-12C393,-12 461,14 501,50l0,239l-201,0l0,-82l98,0l0,-105C381,89 355,82 326,82C220,82 167,150 167,259C167,374 230,440 322,440C370,440 400,424 428,398l63,69C454,502 399,535 321,535C169,535 49,433 49,259 z M376,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
944
+ <glyph unicode="&#xE138;" horiz-adv-x="563" d="M49,259C49,81 165,-12 317,-12C393,-12 461,14 501,50l0,239l-201,0l0,-82l98,0l0,-105C381,89 355,82 326,82C220,82 167,150 167,259C167,374 230,440 322,440C370,440 400,424 428,398l63,69C454,502 399,535 321,535C169,535 49,433 49,259 z M181,611l266,0l0,76l-266,0z"/>
945
+ <glyph unicode="&#xE139;" horiz-adv-x="563" d="M49,259C49,81 165,-12 317,-12C393,-12 461,14 501,50l0,239l-201,0l0,-82l98,0l0,-105C381,89 355,82 326,82C220,82 167,150 167,259C167,374 230,440 322,440C370,440 400,424 428,398l63,69C454,502 399,535 321,535C169,535 49,433 49,259 z M376,594C426,594 464,640 472,716l-61,0C405,684 390,668 372,668C338,668 306,716 252,716C202,716 164,671 156,594l61,0C223,627 238,643 256,643C290,643 322,594 376,594z"/>
946
+ <glyph unicode="&#xE13A;" horiz-adv-x="608" d="M83,0l116,0l0,221l210,0l0,-221l116,0l0,523l-116,0l0,-202l-210,0l0,202l-116,0 z M242,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
947
+ <glyph unicode="&#xE13B;" horiz-adv-x="608" d="M83,0l116,0l0,221l210,0l0,-221l116,0l0,523l-116,0l0,-202l-210,0l0,202l-116,0 z M304,-216C344,-216 372,-189 372,-150C372,-112 344,-85 304,-85C264,-85 236,-112 236,-150C236,-189 264,-216 304,-216z"/>
948
+ <glyph unicode="&#xE13C;" horiz-adv-x="608" d="M83,0l116,0l0,221l210,0l0,-221l116,0l0,523l-116,0l0,-202l-210,0l0,202l-116,0 z M304,-208C394,-208 433,-141 437,-75l-67,0C365,-111 345,-142 304,-142C263,-142 243,-111 238,-75l-67,0C175,-141 214,-208 304,-208z"/>
949
+ <glyph unicode="&#xE13D;" horiz-adv-x="646" d="M429,315l-210,0l0,71l210,0 z M617,444l-72,0l0,79l-116,0l0,-79l-210,0l0,79l-116,0l0,-79l-75,-5l0,-53l75,0l0,-386l116,0l0,227l210,0l0,-227l116,0l0,386l72,0z"/>
950
+ <glyph unicode="&#xE13E;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M111,591l93,0l-84,116l-126,0z"/>
951
+ <glyph unicode="&#xE13F;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M288,707l-126,0l-84,-116l94,0z"/>
952
+ <glyph unicode="&#xE140;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M79,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
953
+ <glyph unicode="&#xE141;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M203,594C253,594 291,640 299,716l-61,0C232,684 217,668 199,668C165,668 133,716 80,716C30,716 -8,671 -16,594l60,0C50,627 65,643 84,643C117,643 150,594 203,594z"/>
954
+ <glyph unicode="&#xE142;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M48,595C83,595 108,620 108,654C108,689 83,714 48,714C14,714 -11,689 -11,654C-11,620 14,595 48,595 z M234,595C269,595 294,620 294,654C294,689 269,714 234,714C199,714 174,689 174,654C174,620 199,595 234,595z"/>
955
+ <glyph unicode="&#xE143;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M8,611l266,0l0,76l-266,0z"/>
956
+ <glyph unicode="&#xE144;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M141,594C182,594 212,622 212,660C212,698 182,726 141,726C100,726 70,698 70,660C70,622 100,594 141,594z"/>
957
+ <glyph unicode="&#xE145;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M203,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
958
+ <glyph unicode="&#xE146;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M110,582C176,590 235,617 235,680C235,732 187,763 81,766l-13,-60C125,702 150,690 150,668C150,646 128,637 99,630z"/>
959
+ <glyph unicode="&#xE147;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M141,-216C181,-216 209,-189 209,-150C209,-112 181,-85 141,-85C102,-85 73,-112 73,-150C73,-189 102,-216 141,-216z"/>
960
+ <glyph unicode="&#xE148;" horiz-adv-x="282" d="M83,0l30,0C83,-25 43,-66 43,-127C43,-186 90,-218 148,-218C179,-218 218,-204 240,-186l-28,60C202,-134 188,-140 173,-140C152,-140 129,-127 129,-98C129,-61 152,-27 199,0l0,523l-116,0z"/>
961
+ <glyph unicode="&#xE149;" horiz-adv-x="282" d="M83,0l116,0l0,523l-116,0 z M141,592C225,592 264,644 271,707l-65,0C200,678 181,653 141,653C102,653 83,678 77,707l-66,0C18,644 58,592 141,592z"/>
962
+ <glyph unicode="&#xE14A;" horiz-adv-x="454" d="M24,83C61,21 116,-12 197,-12C318,-12 374,71 374,170l0,353l-116,0l0,-344C258,108 232,85 185,85C152,85 123,104 102,140 z M248,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
963
+ <glyph unicode="&#xE14B;" horiz-adv-x="535" d="M83,0l116,0l0,156l73,79l140,-235l124,0l-197,315l170,208l-126,0l-181,-219l-3,0l0,219l-116,0 z M276,-45l-24,-46C282,-98 300,-109 300,-132C300,-156 264,-167 214,-173l10,-50C309,-217 385,-188 385,-125C385,-78 354,-54 276,-45z"/>
964
+ <glyph unicode="&#xE14C;" horiz-adv-x="535" d="M83,0l116,0l0,156l73,79l140,-235l124,0l-197,315l170,208l-126,0l-181,-219l-3,0l0,219l-116,0 z M438,-104l-261,0l0,-76l261,0z"/>
965
+ <glyph unicode="&#xE14D;" horiz-adv-x="454" d="M83,0l339,0l0,95l-223,0l0,428l-116,0 z M293,707l-126,0l-84,-116l93,0z"/>
966
+ <glyph unicode="&#xE14E;" horiz-adv-x="454" d="M83,0l339,0l0,95l-223,0l0,428l-116,0 z M375,404l19,154l1,63l-77,0l5,-217z"/>
967
+ <glyph unicode="&#xE14F;" horiz-adv-x="454" d="M83,0l339,0l0,95l-223,0l0,428l-116,0 z M230,-45l-24,-46C236,-98 254,-109 254,-132C254,-156 218,-167 168,-173l10,-50C263,-217 339,-188 339,-125C339,-78 308,-54 230,-45z"/>
968
+ <glyph unicode="&#xE150;" horiz-adv-x="454" d="M83,0l339,0l0,95l-223,0l0,428l-116,0 z M291,303C291,258 324,225 366,225C408,225 440,258 440,303C440,348 408,381 366,381C324,381 291,348 291,303z"/>
969
+ <glyph unicode="&#xE151;" horiz-adv-x="454" d="M83,0l339,0l0,95l-223,0l0,428l-116,0 z M262,-216C302,-216 330,-189 330,-150C330,-112 302,-85 262,-85C222,-85 194,-112 194,-150C194,-189 222,-216 262,-216z"/>
970
+ <glyph unicode="&#xE152;" horiz-adv-x="454" d="M83,0l339,0l0,95l-223,0l0,428l-116,0 z M13,611l266,0l0,76l-266,0 z M262,-216C302,-216 330,-189 330,-150C330,-112 302,-85 262,-85C222,-85 194,-112 194,-150C194,-189 222,-216 262,-216z"/>
971
+ <glyph unicode="&#xE153;" horiz-adv-x="454" d="M83,0l339,0l0,95l-223,0l0,428l-116,0 z M392,-104l-261,0l0,-76l261,0z"/>
972
+ <glyph unicode="&#xE154;" horiz-adv-x="454" d="M206,95l0,119l149,81l0,87l-149,-80l0,221l-116,0l0,-274l-78,-45l0,-88l78,45l0,-161l339,0l0,95z"/>
973
+ <glyph unicode="&#xE155;" horiz-adv-x="666" d="M83,0l105,0l0,201C188,252 178,332 173,383l4,0l47,-121l87,-216l44,0l86,216l48,121l4,0C487,332 479,252 479,201l0,-201l104,0l0,523l-122,0l-89,-239l-36,-96l-4,0l-34,96l-92,239l-123,0 z M333,-216C373,-216 401,-189 401,-150C401,-112 373,-85 333,-85C294,-85 265,-112 265,-150C265,-189 294,-216 333,-216z"/>
974
+ <glyph unicode="&#xE156;" horiz-adv-x="596" d="M83,0l107,0l0,194C190,255 181,329 175,386l4,0l59,-118l160,-268l114,0l0,523l-106,0l0,-193C406,269 415,192 420,137l-4,0l-59,118l-157,268l-117,0 z M453,707l-125,0l-85,-116l94,0z"/>
975
+ <glyph unicode="&#xE157;" horiz-adv-x="596" d="M83,0l107,0l0,194C190,255 181,329 175,386l4,0l59,-118l160,-268l114,0l0,523l-106,0l0,-193C406,269 415,192 420,137l-4,0l-59,118l-157,268l-117,0 z M368,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
976
+ <glyph unicode="&#xE158;" horiz-adv-x="596" d="M83,0l107,0l0,194C190,255 181,329 175,386l4,0l59,-118l160,-268l114,0l0,523l-106,0l0,-193C406,269 415,192 420,137l-4,0l-59,118l-157,268l-117,0 z M368,594C418,594 456,640 464,716l-60,0C397,684 382,668 364,668C330,668 298,716 245,716C195,716 157,671 149,594l60,0C216,627 230,643 249,643C282,643 315,594 368,594z"/>
977
+ <glyph unicode="&#xE159;" horiz-adv-x="596" d="M83,0l107,0l0,194C190,255 181,329 175,386l4,0l59,-118l160,-268l114,0l0,523l-106,0l0,-193C406,269 415,192 420,137l-4,0l-59,118l-157,268l-117,0 z M272,-45l-24,-46C278,-98 296,-109 296,-132C296,-156 260,-167 210,-173l10,-50C305,-217 381,-188 381,-125C381,-78 350,-54 272,-45z"/>
978
+ <glyph unicode="&#xE15A;" horiz-adv-x="596" d="M83,0l107,0l0,194C190,255 181,329 175,386l4,0l59,-118l160,-268l114,0l0,523l-106,0l0,-193C406,269 415,192 420,137l-4,0l-59,118l-157,268l-117,0 z M306,594C347,594 378,622 378,660C378,698 347,726 306,726C266,726 235,698 235,660C235,622 266,594 306,594z"/>
979
+ <glyph unicode="&#xE15B;" horiz-adv-x="596" d="M83,0l107,0l0,194C190,255 181,329 175,386l4,0l59,-118l160,-268l114,0l0,523l-106,0l0,-193C406,269 415,192 420,137l-4,0l-59,118l-157,268l-117,0 z M304,-216C344,-216 372,-189 372,-150C372,-112 344,-85 304,-85C264,-85 236,-112 236,-150C236,-189 264,-216 304,-216z"/>
980
+ <glyph unicode="&#xE15C;" horiz-adv-x="596" d="M83,0l107,0l0,194C190,255 181,329 175,386l4,0l59,-118l160,-268l114,0l0,523l-106,0l0,-193C406,269 415,192 420,137l-4,0l-59,118l-157,268l-117,0 z M434,-104l-261,0l0,-76l261,0z"/>
981
+ <glyph unicode="&#xE15D;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M272,591l93,0l-84,116l-126,0z"/>
982
+ <glyph unicode="&#xE15E;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M449,707l-126,0l-84,-116l93,0z"/>
983
+ <glyph unicode="&#xE15F;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M240,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
984
+ <glyph unicode="&#xE160;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M364,594C414,594 452,640 460,716l-61,0C393,684 378,668 360,668C326,668 294,716 240,716C190,716 152,671 144,594l61,0C211,627 226,643 244,643C278,643 310,594 364,594z"/>
985
+ <glyph unicode="&#xE161;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M209,595C244,595 269,620 269,654C269,689 244,714 209,714C174,714 150,689 150,654C150,620 174,595 209,595 z M395,595C430,595 454,620 454,654C454,689 430,714 395,714C360,714 335,689 335,654C335,620 360,595 395,595z"/>
986
+ <glyph unicode="&#xE162;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M169,611l266,0l0,76l-266,0z"/>
987
+ <glyph unicode="&#xE163;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M258,591l87,116l-102,0l-64,-116 z M348,591l79,0l87,116l-102,0z"/>
988
+ <glyph unicode="&#xE164;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M364,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
989
+ <glyph unicode="&#xE165;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M303,-216C342,-216 371,-189 371,-150C371,-112 342,-85 303,-85C263,-85 235,-112 235,-150C235,-189 263,-216 303,-216z"/>
990
+ <glyph unicode="&#xE166;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M270,582C337,590 396,617 396,680C396,732 348,763 242,766l-13,-60C286,702 310,690 310,668C310,646 288,637 260,630z"/>
991
+ <glyph unicode="&#xE167;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M404,657l68,0l95,116l-93,0 z M158,591l84,0l58,59l4,0l58,-59l84,0l-94,110l-100,0z"/>
992
+ <glyph unicode="&#xE168;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M444,773l-93,0l94,-116l68,0 z M158,591l84,0l58,59l4,0l58,-59l84,0l-94,110l-100,0z"/>
993
+ <glyph unicode="&#xE169;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M428,639C485,646 532,667 532,722C532,768 493,796 399,799l-11,-51C437,744 456,734 456,712C456,693 439,685 417,680 z M158,591l84,0l58,59l4,0l58,-59l84,0l-94,110l-100,0z"/>
994
+ <glyph unicode="&#xE16A;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M158,591l84,0l58,59l4,0l58,-59l84,0l-94,110l-100,0 z M215,736C220,764 235,778 253,778C283,778 309,736 357,736C402,736 436,774 443,840l-54,0C384,812 369,798 351,798C321,798 295,840 247,840C202,840 168,802 161,736z"/>
995
+ <glyph unicode="&#xE16B;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M240,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116 z M303,-216C342,-216 371,-189 371,-150C371,-112 342,-85 303,-85C263,-85 235,-112 235,-150C235,-189 263,-216 303,-216z"/>
996
+ <glyph unicode="&#xE16C;" horiz-adv-x="603" d="M425,360C435,333 441,301 441,264C441,150 387,78 302,78C266,78 235,91 212,114 z M179,165C168,193 162,226 162,264C162,378 216,445 302,445C338,445 368,433 391,411 z M556,512l-46,36l-53,-61C416,518 362,535 302,535C152,535 49,436 49,264C49,188 69,125 105,79l-58,-67l46,-36l53,61C188,5 241,-12 302,-12C450,-12 554,92 554,264C554,339 534,401 499,446z"/>
997
+ <glyph unicode="&#xE16D;" horiz-adv-x="751" d="M49,259C49,79 161,0 334,0l366,0l0,90l-227,0l0,137l183,0l0,85l-183,0l0,121l217,0l0,90l-363,0C161,523 49,441 49,259 z M357,433l0,-342l-28,0C223,91 168,145 168,259C168,377 223,433 329,433z"/>
998
+ <glyph unicode="&#xE16E;" horiz-adv-x="603" d="M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M483,601C491,589 498,574 498,557C498,522 478,506 443,497C403,522 356,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12C450,-12 554,92 554,264C554,344 532,408 493,454C549,470 589,505 589,565C589,594 577,620 563,638z"/>
999
+ <glyph unicode="&#xE16F;" horiz-adv-x="603" d="M449,707l-126,0l-84,-116l93,0 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M483,601C491,589 498,574 498,557C498,522 478,506 443,497C403,522 356,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12C450,-12 554,92 554,264C554,344 532,408 493,454C549,470 589,505 589,565C589,594 577,620 563,638z"/>
1000
+ <glyph unicode="&#xE170;" horiz-adv-x="603" d="M365,591l-84,116l-126,0l117,-116 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M483,601C491,589 498,574 498,557C498,522 478,506 443,497C403,522 356,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12C450,-12 554,92 554,264C554,344 532,408 493,454C549,470 589,505 589,565C589,594 577,620 563,638z"/>
1001
+ <glyph unicode="&#xE171;" horiz-adv-x="603" d="M270,582C337,590 396,617 396,680C396,732 348,763 242,766l-13,-60C286,702 310,690 310,668C310,646 288,637 260,630 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M483,601C491,589 498,574 498,557C498,522 478,506 443,497C403,522 356,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12C450,-12 554,92 554,264C554,344 532,408 493,454C549,470 589,505 589,565C589,594 577,620 563,638z"/>
1002
+ <glyph unicode="&#xE172;" horiz-adv-x="603" d="M399,716C393,684 378,668 360,668C326,668 294,716 240,716C190,716 152,671 144,594l61,0C211,627 226,643 244,643C278,643 310,594 364,594C414,594 452,640 460,716 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M483,601C491,589 498,574 498,557C498,522 478,506 443,497C403,522 356,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12C450,-12 554,92 554,264C554,344 532,408 493,454C549,470 589,505 589,565C589,594 577,620 563,638z"/>
1003
+ <glyph unicode="&#xE173;" horiz-adv-x="603" d="M303,-85C263,-85 235,-112 235,-150C235,-189 263,-216 303,-216C342,-216 371,-189 371,-150C371,-112 342,-85 303,-85 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M483,601C491,589 498,574 498,557C498,522 478,506 443,497C403,522 356,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12C450,-12 554,92 554,264C554,344 532,408 493,454C549,470 589,505 589,565C589,594 577,620 563,638z"/>
1004
+ <glyph unicode="&#xE174;" horiz-adv-x="603" d="M554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,100 140,-3 286,-11C254,-38 224,-79 224,-127C224,-186 271,-218 329,-218C360,-218 399,-204 422,-186l-29,60C382,-134 370,-140 355,-140C333,-140 310,-127 310,-98C310,-68 333,-29 385,-6C492,40 554,120 554,264 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84z"/>
1005
+ <glyph unicode="&#xE175;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M302,592C386,592 425,644 432,707l-66,0C360,678 342,653 302,653C262,653 244,678 238,707l-66,0C179,644 218,592 302,592z"/>
1006
+ <glyph unicode="&#xE176;" horiz-adv-x="603" d="M302,-12C450,-12 554,92 554,264C554,435 450,535 302,535C152,535 49,436 49,264C49,92 152,-12 302,-12 z M302,84C219,84 168,153 168,264C168,374 219,439 302,439C383,439 435,374 435,264C435,153 383,84 302,84 z M239,734l93,0l115,116l-123,0 z M169,611l266,0l0,76l-266,0z"/>
1007
+ <glyph unicode="&#xE177;" horiz-adv-x="542" d="M438,707l-126,0l-84,-116l93,0 z M199,432l69,0C339,432 380,411 380,355C380,302 343,272 269,272l-70,0 z M514,0l-129,210C448,235 490,286 490,361C490,485 396,523 278,523l-195,0l0,-523l116,0l0,191l79,0l113,-191z"/>
1008
+ <glyph unicode="&#xE178;" horiz-adv-x="542" d="M347,591l96,116l-90,0l-60,-64l-4,0l-60,64l-90,0l96,-116 z M199,432l69,0C339,432 380,411 380,355C380,302 343,272 269,272l-70,0 z M514,0l-129,210C448,235 490,286 490,361C490,485 396,523 278,523l-195,0l0,-523l116,0l0,191l79,0l113,-191z"/>
1009
+ <glyph unicode="&#xE179;" horiz-adv-x="542" d="M240,-91C269,-98 287,-109 287,-132C287,-156 251,-167 201,-173l10,-50C296,-217 372,-188 372,-125C372,-78 342,-54 263,-45 z M199,432l69,0C339,432 380,411 380,355C380,302 343,272 269,272l-70,0 z M385,210C448,235 490,286 490,361C490,485 396,523 278,523l-195,0l0,-523l116,0l0,191l79,0l113,-191l123,0z"/>
1010
+ <glyph unicode="&#xE17A;" horiz-adv-x="542" d="M295,-85C256,-85 227,-112 227,-150C227,-189 256,-216 295,-216C335,-216 363,-189 363,-150C363,-112 335,-85 295,-85 z M199,432l69,0C339,432 380,411 380,355C380,302 343,272 269,272l-70,0 z M385,210C448,235 490,286 490,361C490,485 396,523 278,523l-195,0l0,-523l116,0l0,191l79,0l113,-191l123,0z"/>
1011
+ <glyph unicode="&#xE17B;" horiz-adv-x="542" d="M424,687l-266,0l0,-76l266,0 z M295,-85C256,-85 227,-112 227,-150C227,-189 256,-216 295,-216C335,-216 363,-189 363,-150C363,-112 335,-85 295,-85 z M199,432l69,0C339,432 380,411 380,355C380,302 343,272 269,272l-70,0 z M385,210C448,235 490,286 490,361C490,485 396,523 278,523l-195,0l0,-523l116,0l0,191l79,0l113,-191l123,0z"/>
1012
+ <glyph unicode="&#xE17C;" horiz-adv-x="542" d="M199,432l69,0C339,432 380,411 380,355C380,302 343,272 269,272l-70,0 z M199,191l79,0l113,-191l123,0l-129,210C448,235 490,286 490,361C490,485 396,523 278,523l-195,0l0,-523l116,0 z M164,-180l262,0l0,76l-262,0z"/>
1013
+ <glyph unicode="&#xE17D;" horiz-adv-x="489" d="M38,63C90,19 165,-12 249,-12C377,-12 453,57 453,149C453,239 395,271 318,299l-60,22C212,339 183,355 183,387C183,424 212,445 260,445C307,445 351,424 387,396l58,74C403,504 343,536 262,536C147,536 68,474 68,381C68,302 131,261 202,235l61,-24C305,194 337,179 337,139C337,103 308,78 254,78C196,78 142,102 96,141 z M410,707l-126,0l-84,-116l93,0z"/>
1014
+ <glyph unicode="&#xE17E;" horiz-adv-x="489" d="M38,63C90,19 165,-12 249,-12C377,-12 453,57 453,149C453,239 395,271 318,299l-60,22C212,339 183,355 183,387C183,424 212,445 260,445C307,445 351,424 387,396l58,74C403,504 343,536 262,536C147,536 68,474 68,381C68,302 131,261 202,235l61,-24C305,194 337,179 337,139C337,103 308,78 254,78C196,78 142,102 96,141 z M201,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
1015
+ <glyph unicode="&#xE17F;" horiz-adv-x="489" d="M38,63C90,19 165,-12 249,-12C377,-12 453,57 453,149C453,239 395,271 318,299l-60,22C212,339 183,355 183,387C183,424 212,445 260,445C307,445 351,424 387,396l58,74C403,504 343,536 262,536C147,536 68,474 68,381C68,302 131,261 202,235l61,-24C305,194 337,179 337,139C337,103 308,78 254,78C196,78 142,102 96,141 z M325,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
1016
+ <glyph unicode="&#xE180;" horiz-adv-x="489" d="M258,321C212,339 183,355 183,387C183,424 212,445 260,445C307,445 351,424 387,396l58,74C403,504 343,536 262,536C147,536 68,474 68,381C68,302 131,261 202,235l61,-24C305,194 337,179 337,139C337,103 308,78 254,78C196,78 142,102 96,141l-58,-78C83,25 144,-3 213,-10l-33,-65C223,-86 241,-100 241,-121C241,-148 205,-161 155,-167l10,-50C250,-211 326,-182 326,-119C326,-78 300,-58 267,-46l17,36C391,1 453,66 453,149C453,239 395,271 318,299z"/>
1017
+ <glyph unicode="&#xE181;" horiz-adv-x="489" d="M38,63C90,19 165,-12 249,-12C377,-12 453,57 453,149C453,239 395,271 318,299l-60,22C212,339 183,355 183,387C183,424 212,445 260,445C307,445 351,424 387,396l58,74C403,504 343,536 262,536C147,536 68,474 68,381C68,302 131,261 202,235l61,-24C305,194 337,179 337,139C337,103 308,78 254,78C196,78 142,102 96,141 z M233,-45l-24,-46C239,-98 257,-109 257,-132C257,-156 221,-167 171,-173l10,-50C266,-217 342,-188 342,-125C342,-78 311,-54 233,-45z"/>
1018
+ <glyph unicode="&#xE182;" horiz-adv-x="489" d="M38,63C90,19 165,-12 249,-12C377,-12 453,57 453,149C453,239 395,271 318,299l-60,22C212,339 183,355 183,387C183,424 212,445 260,445C307,445 351,424 387,396l58,74C403,504 343,536 262,536C147,536 68,474 68,381C68,302 131,261 202,235l61,-24C305,194 337,179 337,139C337,103 308,78 254,78C196,78 142,102 96,141 z M263,594C304,594 334,622 334,660C334,698 304,726 263,726C222,726 192,698 192,660C192,622 222,594 263,594z"/>
1019
+ <glyph unicode="&#xE183;" horiz-adv-x="489" d="M38,63C90,19 165,-12 249,-12C377,-12 453,57 453,149C453,239 395,271 318,299l-60,22C212,339 183,355 183,387C183,424 212,445 260,445C307,445 351,424 387,396l58,74C403,504 343,536 262,536C147,536 68,474 68,381C68,302 131,261 202,235l61,-24C305,194 337,179 337,139C337,103 308,78 254,78C196,78 142,102 96,141 z M265,-216C305,-216 333,-189 333,-150C333,-112 305,-85 265,-85C225,-85 197,-112 197,-150C197,-189 225,-216 265,-216z"/>
1020
+ <glyph unicode="&#xE184;" horiz-adv-x="968" d="M38,63C90,19 165,-12 249,-12C377,-12 453,57 453,149C453,239 395,271 318,299l-60,22C212,339 183,355 183,387C183,424 212,445 260,445C307,445 351,424 387,396l58,74C403,504 343,536 262,536C147,536 68,474 68,381C68,302 131,261 202,235l61,-24C305,194 337,179 337,139C337,103 308,78 254,78C196,78 142,102 96,141 z M517,63C569,19 644,-12 728,-12C856,-12 932,57 932,149C932,239 874,271 797,299l-60,22C691,339 662,355 662,387C662,424 691,445 739,445C786,445 830,424 866,396l58,74C882,504 822,536 741,536C626,536 547,474 547,381C547,302 610,261 681,235l61,-24C784,194 816,179 816,139C816,103 787,78 733,78C675,78 621,102 575,141z"/>
1021
+ <glyph unicode="&#xE185;" horiz-adv-x="615" d="M86,0l116,0l0,312C202,399 243,444 316,444C366,444 397,421 415,392l-101,-104l8,-59C422,215 457,184 457,143C457,104 432,79 391,79C363,79 332,88 303,114l-57,-66C279,17 333,-12 404,-12C514,-12 574,57 574,141C574,220 518,264 427,287l99,100C500,474 428,535 320,535C164,535 86,448 86,328z"/>
1022
+ <glyph unicode="&#xE186;" horiz-adv-x="479" d="M182,0l116,0l0,428l155,0l0,95l-427,0l0,-95l156,0 z M302,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
1023
+ <glyph unicode="&#xE187;" horiz-adv-x="479" d="M298,0l0,428l155,0l0,95l-427,0l0,-95l156,0l0,-428l23,0l-38,-75C210,-86 228,-100 228,-121C228,-148 192,-161 142,-167l10,-50C237,-211 313,-182 313,-119C313,-78 288,-58 254,-46l22,46z"/>
1024
+ <glyph unicode="&#xE188;" horiz-adv-x="479" d="M182,0l116,0l0,428l155,0l0,95l-427,0l0,-95l156,0 z M207,-45l-23,-46C213,-98 231,-109 231,-132C231,-156 196,-167 146,-173l9,-50C240,-217 316,-188 316,-125C316,-78 286,-54 207,-45z"/>
1025
+ <glyph unicode="&#xE189;" horiz-adv-x="479" d="M182,0l116,0l0,428l155,0l0,95l-427,0l0,-95l156,0 z M240,-216C279,-216 308,-189 308,-150C308,-112 279,-85 240,-85C200,-85 172,-112 172,-150C172,-189 200,-216 240,-216z"/>
1026
+ <glyph unicode="&#xE18A;" horiz-adv-x="479" d="M182,0l116,0l0,428l155,0l0,95l-427,0l0,-95l156,0 z M370,-104l-262,0l0,-76l262,0z"/>
1027
+ <glyph unicode="&#xE18B;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M267,591l94,0l-85,116l-125,0z"/>
1028
+ <glyph unicode="&#xE18C;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M444,707l-125,0l-85,-116l94,0z"/>
1029
+ <glyph unicode="&#xE18D;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M236,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
1030
+ <glyph unicode="&#xE18E;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M359,594C409,594 447,640 455,716l-60,0C388,684 374,668 355,668C322,668 289,716 236,716C186,716 148,671 140,594l60,0C207,627 222,643 240,643C274,643 306,594 359,594z"/>
1031
+ <glyph unicode="&#xE18F;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M205,595C240,595 264,620 264,654C264,689 240,714 205,714C170,714 145,689 145,654C145,620 170,595 205,595 z M390,595C425,595 450,620 450,654C450,689 425,714 390,714C356,714 331,689 331,654C331,620 356,595 390,595z"/>
1032
+ <glyph unicode="&#xE190;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M165,611l265,0l0,76l-265,0z"/>
1033
+ <glyph unicode="&#xE191;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M298,592C381,592 420,644 428,707l-66,0C356,678 337,653 298,653C258,653 239,678 233,707l-65,0C175,644 214,592 298,592z"/>
1034
+ <glyph unicode="&#xE192;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M298,585C358,585 401,622 401,678C401,734 358,771 298,771C237,771 194,734 194,678C194,622 237,585 298,585 z M298,631C273,631 253,648 253,678C253,707 273,725 298,725C321,725 341,707 341,678C341,648 321,631 298,631z"/>
1035
+ <glyph unicode="&#xE193;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M254,591l86,116l-101,0l-65,-116 z M343,591l80,0l86,116l-101,0z"/>
1036
+ <glyph unicode="&#xE194;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M360,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
1037
+ <glyph unicode="&#xE195;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M165,754l265,0l0,58l-265,0 z M205,595C236,595 258,618 258,648C258,679 236,702 205,702C174,702 151,679 151,648C151,618 174,595 205,595 z M390,595C422,595 444,618 444,648C444,679 422,702 390,702C359,702 337,679 337,648C337,618 359,595 390,595z"/>
1038
+ <glyph unicode="&#xE196;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M234,734l93,0l115,116l-122,0 z M205,595C236,595 258,618 258,648C258,679 236,702 205,702C174,702 151,679 151,648C151,618 174,595 205,595 z M390,595C422,595 444,618 444,648C444,679 422,702 390,702C359,702 337,679 337,648C337,618 359,595 390,595z"/>
1039
+ <glyph unicode="&#xE197;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M205,595C236,595 258,618 258,648C258,679 236,702 205,702C174,702 151,679 151,648C151,618 174,595 205,595 z M390,595C422,595 444,618 444,648C444,679 422,702 390,702C359,702 337,679 337,648C337,618 359,595 390,595 z M360,850l-60,-65l-4,0l-60,65l-90,0l96,-116l112,0l96,116z"/>
1040
+ <glyph unicode="&#xE198;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M276,850l-123,0l115,-116l93,0 z M390,595C422,595 444,618 444,648C444,679 422,702 390,702C359,702 337,679 337,648C337,618 359,595 390,595 z M205,595C236,595 258,618 258,648C258,679 236,702 205,702C174,702 151,679 151,648C151,618 174,595 205,595z"/>
1041
+ <glyph unicode="&#xE199;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M298,-216C337,-216 366,-189 366,-150C366,-112 337,-85 298,-85C258,-85 230,-112 230,-150C230,-189 258,-216 298,-216z"/>
1042
+ <glyph unicode="&#xE19A;" horiz-adv-x="595" d="M80,230C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,293l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0 z M266,582C333,590 391,617 391,680C391,732 344,763 238,766l-13,-60C281,702 306,690 306,668C306,646 284,637 256,630z"/>
1043
+ <glyph unicode="&#xE19B;" horiz-adv-x="595" d="M515,523l-110,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0l0,-293C80,62 157,-4 284,-11C262,-31 220,-68 220,-127C220,-186 266,-218 325,-218C356,-218 395,-204 417,-186l-28,60C378,-134 365,-140 351,-140C328,-140 306,-127 306,-98C306,-68 330,-30 381,-6C467,33 515,86 515,230z"/>
1044
+ <glyph unicode="&#xE19C;" horiz-adv-x="611" d="M526,631C534,619 541,604 541,587C541,539 502,526 455,523l-50,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0l0,-293C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,248C580,491 632,524 632,595C632,624 620,650 606,668z"/>
1045
+ <glyph unicode="&#xE19D;" horiz-adv-x="611" d="M444,707l-125,0l-85,-116l94,0 z M526,631C534,619 541,604 541,587C541,539 502,526 455,523l-50,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0l0,-293C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,248C580,491 632,524 632,595C632,624 620,650 606,668z"/>
1046
+ <glyph unicode="&#xE19E;" horiz-adv-x="611" d="M361,591l-85,116l-125,0l116,-116 z M526,631C534,619 541,604 541,587C541,539 502,526 455,523l-50,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0l0,-293C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,248C580,491 632,524 632,595C632,624 620,650 606,668z"/>
1047
+ <glyph unicode="&#xE19F;" horiz-adv-x="611" d="M266,582C333,590 391,617 391,680C391,732 344,763 238,766l-13,-60C281,702 306,690 306,668C306,646 284,637 256,630 z M526,631C534,619 541,604 541,587C541,539 502,526 455,523l-50,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0l0,-293C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,248C580,491 632,524 632,595C632,624 620,650 606,668z"/>
1048
+ <glyph unicode="&#xE1A0;" horiz-adv-x="611" d="M395,716C388,684 374,668 355,668C322,668 289,716 236,716C186,716 148,671 140,594l60,0C207,627 222,643 240,643C274,643 306,594 359,594C409,594 447,640 455,716 z M526,631C534,619 541,604 541,587C541,539 502,526 455,523l-50,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0l0,-293C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,248C580,491 632,524 632,595C632,624 620,650 606,668z"/>
1049
+ <glyph unicode="&#xE1A1;" horiz-adv-x="611" d="M298,-85C258,-85 230,-112 230,-150C230,-189 258,-216 298,-216C337,-216 366,-189 366,-150C366,-112 337,-85 298,-85 z M526,631C534,619 541,604 541,587C541,539 502,526 455,523l-50,0l0,-297C405,119 365,84 300,84C235,84 195,119 195,226l0,297l-115,0l0,-293C80,55 164,-12 299,-12C434,-12 515,55 515,230l0,248C580,491 632,524 632,595C632,624 620,650 606,668z"/>
1050
+ <glyph unicode="&#xE1A2;" horiz-adv-x="701" d="M127,0l135,0l62,249C334,290 341,331 349,370l4,0C359,331 367,290 376,249l64,-249l137,0l105,523l-106,0l-44,-250C523,219 514,163 507,107l-4,0C490,163 477,219 465,273l-63,250l-95,0l-65,-250C231,218 217,162 206,107l-4,0C193,162 185,217 176,273l-44,250l-114,0 z M320,591l94,0l-84,116l-126,0z"/>
1051
+ <glyph unicode="&#xE1A3;" horiz-adv-x="701" d="M127,0l135,0l62,249C334,290 341,331 349,370l4,0C359,331 367,290 376,249l64,-249l137,0l105,523l-106,0l-44,-250C523,219 514,163 507,107l-4,0C490,163 477,219 465,273l-63,250l-95,0l-65,-250C231,218 217,162 206,107l-4,0C193,162 185,217 176,273l-44,250l-114,0 z M498,707l-126,0l-84,-116l93,0z"/>
1052
+ <glyph unicode="&#xE1A4;" horiz-adv-x="701" d="M127,0l135,0l62,249C334,290 341,331 349,370l4,0C359,331 367,290 376,249l64,-249l137,0l105,523l-106,0l-44,-250C523,219 514,163 507,107l-4,0C490,163 477,219 465,273l-63,250l-95,0l-65,-250C231,218 217,162 206,107l-4,0C193,162 185,217 176,273l-44,250l-114,0 z M289,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
1053
+ <glyph unicode="&#xE1A5;" horiz-adv-x="701" d="M127,0l135,0l62,249C334,290 341,331 349,370l4,0C359,331 367,290 376,249l64,-249l137,0l105,523l-106,0l-44,-250C523,219 514,163 507,107l-4,0C490,163 477,219 465,273l-63,250l-95,0l-65,-250C231,218 217,162 206,107l-4,0C193,162 185,217 176,273l-44,250l-114,0 z M258,595C293,595 318,620 318,654C318,689 293,714 258,714C223,714 198,689 198,654C198,620 223,595 258,595 z M444,595C478,595 503,620 503,654C503,689 478,714 444,714C409,714 384,689 384,654C384,620 409,595 444,595z"/>
1054
+ <glyph unicode="&#xE1A6;" horiz-adv-x="441" d="M163,0l116,0l0,188l167,335l-120,0l-54,-122C256,362 240,326 224,286l-4,0C203,326 187,362 172,401l-54,122l-122,0l167,-335 z M189,591l94,0l-85,116l-125,0z"/>
1055
+ <glyph unicode="&#xE1A7;" horiz-adv-x="441" d="M163,0l116,0l0,188l167,335l-120,0l-54,-122C256,362 240,326 224,286l-4,0C203,326 187,362 172,401l-54,122l-122,0l167,-335 z M366,707l-125,0l-85,-116l94,0z"/>
1056
+ <glyph unicode="&#xE1A8;" horiz-adv-x="441" d="M163,0l116,0l0,188l167,335l-120,0l-54,-122C256,362 240,326 224,286l-4,0C203,326 187,362 172,401l-54,122l-122,0l167,-335 z M158,591l60,65l4,0l60,-65l90,0l-96,116l-112,0l-96,-116z"/>
1057
+ <glyph unicode="&#xE1A9;" horiz-adv-x="441" d="M163,0l116,0l0,188l167,335l-120,0l-54,-122C256,362 240,326 224,286l-4,0C203,326 187,362 172,401l-54,122l-122,0l167,-335 z M127,595C162,595 186,620 186,654C186,689 162,714 127,714C92,714 67,689 67,654C67,620 92,595 127,595 z M312,595C347,595 372,620 372,654C372,689 347,714 312,714C278,714 253,689 253,654C253,620 278,595 312,595z"/>
1058
+ <glyph unicode="&#xE1AA;" horiz-adv-x="441" d="M163,0l116,0l0,188l167,335l-120,0l-54,-122C256,362 240,326 224,286l-4,0C203,326 187,362 172,401l-54,122l-122,0l167,-335 z M220,594C260,594 291,622 291,660C291,698 260,726 220,726C179,726 148,698 148,660C148,622 179,594 220,594z"/>
1059
+ <glyph unicode="&#xE1AB;" horiz-adv-x="441" d="M163,0l116,0l0,188l167,335l-120,0l-54,-122C256,362 240,326 224,286l-4,0C203,326 187,362 172,401l-54,122l-122,0l167,-335 z M220,-216C259,-216 288,-189 288,-150C288,-112 259,-85 220,-85C180,-85 152,-112 152,-150C152,-189 180,-216 220,-216z"/>
1060
+ <glyph unicode="&#xE1AC;" horiz-adv-x="441" d="M163,0l116,0l0,188l167,335l-120,0l-54,-122C256,362 240,326 224,286l-4,0C203,326 187,362 172,401l-54,122l-122,0l167,-335 z M188,582C255,590 313,617 313,680C313,732 266,763 160,766l-13,-60C203,702 228,690 228,668C228,646 206,637 178,630z"/>
1061
+ <glyph unicode="&#xE1AD;" horiz-adv-x="441" d="M163,0l116,0l0,188l167,335l-120,0l-54,-122C256,362 240,326 224,286l-4,0C203,326 187,362 172,401l-54,122l-122,0l167,-335 z M281,594C331,594 369,640 377,716l-60,0C310,684 296,668 277,668C244,668 211,716 158,716C108,716 70,671 62,594l60,0C129,627 144,643 162,643C196,643 228,594 281,594z"/>
1062
+ <glyph unicode="&#xE1AE;" horiz-adv-x="478" d="M40,0l400,0l0,95l-260,0l257,360l0,68l-373,0l0,-95l233,0l-257,-360 z M400,707l-126,0l-84,-116l94,0z"/>
1063
+ <glyph unicode="&#xE1AF;" horiz-adv-x="478" d="M40,0l400,0l0,95l-260,0l257,360l0,68l-373,0l0,-95l233,0l-257,-360 z M315,707l-60,-64l-4,0l-60,64l-90,0l96,-116l112,0l96,116z"/>
1064
+ <glyph unicode="&#xE1B0;" horiz-adv-x="478" d="M40,0l400,0l0,95l-260,0l257,360l0,68l-373,0l0,-95l233,0l-257,-360 z M253,594C294,594 324,622 324,660C324,698 294,726 253,726C212,726 182,698 182,660C182,622 212,594 253,594z"/>
1065
+ <glyph unicode="&#xE1B1;" horiz-adv-x="478" d="M40,0l400,0l0,95l-260,0l257,360l0,68l-373,0l0,-95l233,0l-257,-360 z M253,-216C292,-216 321,-189 321,-150C321,-112 292,-85 253,-85C213,-85 185,-112 185,-150C185,-189 213,-216 253,-216z"/>
1066
+ <glyph unicode="&#xE1B2;" horiz-adv-x="590" d="M221,90l0,151l110,0l0,59l-110,0l0,133l44,0C368,433 422,378 422,264C422,146 368,90 265,90 z M105,523l0,-223l-75,-4l0,-55l75,0l0,-241l162,0C430,0 541,83 541,264C541,444 430,523 260,523z"/>
1067
+ <glyph unicode="&#xE1B3;" horiz-adv-x="544" d="M83,0l116,0l0,102l80,0C398,102 496,154 496,275C496,401 400,440 279,440l-80,0l0,83l-116,0 z M199,187l0,168l73,0C344,355 382,336 382,275C382,216 347,187 272,187z"/>
1068
+ <glyph unicode="&#xE1B4;" horiz-adv-x="593" d="M427,215C414,126 364,79 296,79C226,79 175,128 169,215 z M162,393C194,420 236,443 286,443C371,443 420,391 429,294l-372,0C56,280 54,270 54,259C54,91 152,-12 296,-12C441,-12 544,92 544,262C544,433 443,535 300,535C218,535 152,507 110,470z"/>
1069
+ <glyph unicode="&#xE1B5;" horiz-adv-x="566" d="M132,146C132,175 151,198 178,220C213,177 257,135 304,98C278,82 250,72 222,72C171,72 132,100 132,146 z M187,398C187,434 212,460 244,460C275,460 289,440 289,414C289,375 254,350 210,326C196,351 187,375 187,398 z M549,79C519,85 486,97 450,116C493,170 525,229 545,293l-104,0C427,243 404,198 375,162C330,193 286,230 252,269C312,307 373,348 373,415C373,486 324,535 243,535C154,535 97,471 97,398C97,363 111,324 134,284C78,251 28,210 28,139C28,58 94,-12 210,-12C280,-12 336,10 382,46C429,17 477,-3 521,-12z"/>
1070
+ <glyph unicode="&#xE1B6;" horiz-adv-x="528" d="M264,-12C389,-12 474,93 474,264C474,435 389,536 264,536C139,536 54,436 54,264C54,93 139,-12 264,-12 z M264,78C210,78 168,131 168,264C168,399 210,445 264,445C318,445 360,399 360,264C360,131 318,78 264,78z"/>
1071
+ <glyph unicode="&#xE1B7;" horiz-adv-x="379" d="M152,0l114,0l0,523l-86,0C142,501 103,487 44,477l0,-72l108,0z"/>
1072
+ <glyph unicode="&#xE1B8;" horiz-adv-x="467" d="M39,0l382,0l0,96l-118,0C271,96 232,94 202,91C307,185 400,279 400,373C400,470 329,535 218,535C144,535 84,507 30,452l62,-61C122,419 159,445 205,445C261,445 290,416 290,363C290,287 193,196 39,66z"/>
1073
+ <glyph unicode="&#xE1B9;" horiz-adv-x="477" d="M23,63C63,19 133,-12 219,-12C333,-12 427,44 427,141C427,210 376,253 309,270l0,3C370,297 407,336 407,391C407,483 330,535 216,535C148,535 90,509 41,467l57,-69C134,429 171,447 213,447C264,447 293,423 293,383C293,339 256,308 147,308l0,-80C277,228 312,197 312,148C312,105 272,78 218,78C155,78 111,103 76,134z"/>
1074
+ <glyph unicode="&#xE1BA;" horiz-adv-x="502" d="M148,213l95,133C262,377 271,391 289,422l3,0C291,390 289,342 289,309l0,-96 z M466,213l-71,0l0,310l-136,0l-222,-317l0,-78l252,0l0,-128l106,0l0,128l71,0z"/>
1075
+ <glyph unicode="&#xE1BB;" horiz-adv-x="479" d="M28,62C71,22 132,-11 222,-11C333,-11 430,55 430,171C430,283 347,334 248,334C222,334 198,328 175,318l9,110l219,0l0,95l-314,0l-16,-264l53,-33C160,247 180,258 218,258C275,258 316,223 316,168C316,112 274,78 214,78C156,78 113,106 79,134z"/>
1076
+ <glyph unicode="&#xE1BC;" horiz-adv-x="504" d="M273,74C220,74 179,104 167,191C197,231 234,246 266,246C321,246 355,214 355,160C355,106 317,74 273,74 z M450,474C414,507 362,535 290,535C169,535 58,447 58,248C58,65 158,-12 272,-12C375,-12 460,54 460,163C460,275 390,327 294,327C248,327 196,304 163,267C168,399 226,443 295,443C331,443 368,426 389,405z"/>
1077
+ <glyph unicode="&#xE1BD;" horiz-adv-x="448" d="M134,0l114,0C260,204 279,306 413,453l0,70l-380,0l0,-95l255,0C179,291 144,178 134,0z"/>
1078
+ <glyph unicode="&#xE1BE;" horiz-adv-x="500" d="M152,146C152,187 183,216 216,236C295,209 348,188 348,138C348,91 309,67 255,67C198,67 152,98 152,146 z M286,299C222,320 174,345 174,391C174,434 206,456 249,456C301,456 332,427 332,384C332,355 315,324 286,299 z M50,130C50,47 135,-12 250,-12C371,-12 452,50 452,135C452,205 405,244 351,271l0,3C389,299 428,340 428,395C428,477 360,535 251,535C151,535 74,480 74,391C74,337 109,297 154,268l0,-3C100,238 50,197 50,130z"/>
1079
+ <glyph unicode="&#xE1BF;" horiz-adv-x="499" d="M238,276C185,276 152,303 152,362C152,419 190,450 232,450C284,450 325,418 337,332C308,293 269,276 238,276 z M55,50C90,16 143,-12 216,-12C336,-12 446,75 446,275C446,458 345,536 232,536C130,536 46,468 46,360C46,249 118,197 215,197C259,197 308,218 341,255C336,125 279,79 211,79C173,79 137,97 115,118z"/>
1080
+ <glyph unicode="&#xE1C0;" horiz-adv-x="290" d="M42,228l206,0l0,84l-206,0z"/>
1081
+ <glyph unicode="&#xE1C1;" horiz-adv-x="416" d="M42,233l331,0l0,76l-331,0z"/>
1082
+ <glyph unicode="&#xE1C2;" horiz-adv-x="692" d="M42,233l608,0l0,76l-608,0z"/>
1083
+ <glyph unicode="&#x2B9;" horiz-adv-x="275" d="M80,394l75,0l41,171l21,123l-115,0z"/>
1084
+ <glyph unicode="&#xE1C3;" horiz-adv-x="375" d="M133,442l14,50C160,537 174,585 185,632l2,0C200,586 214,537 226,492l14,-50 z M290,264l89,0l-141,432l-99,0l-142,-432l85,0l33,114l143,0z"/>
1085
+ <glyph unicode="&#xE1C4;" horiz-adv-x="399" d="M53,264l156,0C304,264 377,305 377,392C377,449 343,483 280,494l0,2C331,511 354,550 354,590C354,670 287,696 197,696l-144,0 z M137,519l0,113l55,0C246,632 273,616 273,579C273,541 248,519 190,519 z M137,328l0,132l63,0C263,460 295,440 295,397C295,350 262,328 200,328z"/>
1086
+ <glyph unicode="&#xE1C5;" horiz-adv-x="385" d="M31,477C31,335 118,256 229,256C287,256 333,278 369,320l-46,50C299,344 271,328 233,328C162,328 117,385 117,480C117,573 167,632 236,632C268,632 292,618 315,597l46,51C334,679 289,704 235,704C123,704 31,618 31,477z"/>
1087
+ <glyph unicode="&#xE1C6;" horiz-adv-x="419" d="M53,264l123,0C307,264 388,338 388,483C388,626 307,696 172,696l-119,0 z M137,331l0,298l32,0C253,629 301,588 301,482C301,377 253,331 170,331z"/>
1088
+ <glyph unicode="&#xE1C7;" horiz-adv-x="360" d="M53,264l274,0l0,69l-190,0l0,121l156,0l0,69l-156,0l0,104l184,0l0,69l-268,0z"/>
1089
+ <glyph unicode="&#xE1C8;" horiz-adv-x="342" d="M53,264l84,0l0,177l158,0l0,69l-158,0l0,117l185,0l0,69l-269,0z"/>
1090
+ <glyph unicode="&#xE1C9;" horiz-adv-x="421" d="M31,479C31,335 121,256 239,256C298,256 350,280 382,308l0,193l-155,0l0,-68l79,0l0,-88C294,334 271,328 247,328C162,328 117,386 117,481C117,575 168,632 242,632C283,632 306,618 328,597l47,54C345,678 303,704 242,704C123,704 31,620 31,479z"/>
1091
+ <glyph unicode="&#xE1CA;" horiz-adv-x="443" d="M53,264l84,0l0,189l170,0l0,-189l84,0l0,432l-84,0l0,-171l-170,0l0,171l-84,0z"/>
1092
+ <glyph unicode="&#xE1CB;" horiz-adv-x="190" d="M53,264l84,0l0,432l-84,0z"/>
1093
+ <glyph unicode="&#xE1CC;" horiz-adv-x="333" d="M14,332C42,282 84,256 145,256C241,256 281,322 281,403l0,293l-83,0l0,-286C198,348 177,328 138,328C111,328 88,341 71,373z"/>
1094
+ <glyph unicode="&#xE1CD;" horiz-adv-x="401" d="M53,264l84,0l0,126l61,74l114,-200l92,0l-157,264l134,168l-93,0l-148,-190l-3,0l0,190l-84,0z"/>
1095
+ <glyph unicode="&#xE1CE;" horiz-adv-x="337" d="M53,264l264,0l0,69l-180,0l0,363l-84,0z"/>
1096
+ <glyph unicode="&#xE1CF;" horiz-adv-x="500" d="M53,264l77,0l0,187C130,492 123,551 120,590l2,0l36,-98l74,-188l36,0l73,188l37,98l2,0C376,551 369,492 369,451l0,-187l79,0l0,432l-92,0l-74,-206l-28,-80l-3,0l-28,80l-79,206l-91,0z"/>
1097
+ <glyph unicode="&#xE1D0;" horiz-adv-x="438" d="M53,264l78,0l0,180C131,492 126,545 122,592l3,0l45,-92l129,-236l87,0l0,432l-78,0l0,-177C308,470 313,413 317,368l-3,0l-44,94l-129,234l-88,0z"/>
1098
+ <glyph unicode="&#xE1D1;" horiz-adv-x="452" d="M226,256C341,256 421,342 421,482C421,621 341,704 226,704C111,704 31,622 31,482C31,342 111,256 226,256 z M226,328C159,328 117,389 117,482C117,576 159,632 226,632C292,632 335,576 335,482C335,389 292,328 226,328z"/>
1099
+ <glyph unicode="&#xE1D2;" horiz-adv-x="397" d="M53,264l84,0l0,155l68,0C298,419 373,464 373,562C373,662 300,696 205,696l-152,0 z M137,485l0,145l61,0C259,630 291,612 291,562C291,511 260,485 198,485z"/>
1100
+ <glyph unicode="&#xE1D3;" horiz-adv-x="452" d="M115,482C115,576 157,632 224,632C291,632 334,576 334,482C334,386 291,325 224,325C157,325 115,386 115,482 z M423,224C410,221 395,218 375,218C334,218 295,229 274,262C362,284 420,364 420,482C420,621 339,704 224,704C109,704 29,622 29,482C29,358 92,276 186,259C214,195 276,150 365,150C397,150 423,156 438,163z"/>
1101
+ <glyph unicode="&#xE1D4;" horiz-adv-x="402" d="M137,630l59,0C254,630 285,612 285,565C285,519 254,495 196,495l-59,0 z M386,264l-103,179C334,462 368,504 368,567C368,664 296,696 204,696l-151,0l0,-432l84,0l0,165l65,0l90,-165z"/>
1102
+ <glyph unicode="&#xE1D5;" horiz-adv-x="365" d="M24,320C67,278 124,256 184,256C284,256 342,316 342,391C342,449 312,477 255,502l-59,25C160,542 128,555 128,587C128,616 150,635 190,635C229,635 259,620 287,597l43,52C294,683 244,705 193,705C105,705 43,650 43,581C43,519 84,488 132,467l60,-26C230,425 258,414 258,381C258,351 236,328 189,328C148,328 104,346 73,376z"/>
1103
+ <glyph unicode="&#xE1D6;" horiz-adv-x="366" d="M142,264l84,0l0,363l124,0l0,69l-334,0l0,-69l126,0z"/>
1104
+ <glyph unicode="&#xE1D7;" horiz-adv-x="440" d="M52,457C52,314 113,256 222,256C326,256 388,314 388,457l0,239l-80,0l0,-246C308,358 273,328 222,328C169,328 135,358 135,450l0,246l-83,0z"/>
1105
+ <glyph unicode="&#xE1D8;" horiz-adv-x="362" d="M132,264l100,0l134,432l-85,0l-59,-212C209,436 199,394 185,344l-2,0C168,394 158,436 145,484l-60,212l-89,0z"/>
1106
+ <glyph unicode="&#xE1D9;" horiz-adv-x="538" d="M97,264l102,0l49,219C256,516 261,549 268,582l2,0C276,549 282,516 289,483l52,-219l104,0l82,432l-80,0l-36,-213C404,438 398,392 391,345l-2,0C379,392 370,439 360,483l-53,213l-72,0l-51,-213C173,438 166,392 156,345l-3,0C146,392 140,437 132,483l-35,213l-87,0z"/>
1107
+ <glyph unicode="&#xE1DA;" horiz-adv-x="366" d="M8,264l89,0l48,99C156,385 167,406 179,433l2,0C194,406 205,385 216,363l50,-99l92,0l-123,219l116,213l-89,0l-43,-91C210,585 201,565 190,538l-3,0C174,565 163,585 154,605l-45,91l-93,0l116,-209z"/>
1108
+ <glyph unicode="&#xE1DB;" horiz-adv-x="338" d="M128,264l84,0l0,159l131,273l-87,0l-45,-106C198,557 185,527 172,494l-2,0C156,527 144,557 130,590l-45,106l-90,0l133,-273z"/>
1109
+ <glyph unicode="&#xE1DC;" horiz-adv-x="361" d="M25,264l312,0l0,69l-209,0l207,313l0,50l-291,0l0,-69l188,0l-207,-313z"/>
1110
+ <glyph unicode="&#xE1DD;" horiz-adv-x="193" d="M42,488C42,455 65,432 96,432C128,432 151,455 151,488C151,520 128,544 96,544C65,544 42,520 42,488 z M42,704C42,671 65,648 96,648C128,648 151,671 151,704C151,736 128,760 96,760C65,760 42,736 42,704z"/>
1111
+ <glyph unicode="&#xE1DE;" horiz-adv-x="244" d="M42,607l161,0l0,59l-161,0z"/>
1112
+ <glyph unicode="&#xE1DF;" horiz-adv-x="349" d="M42,610l265,0l0,53l-265,0z"/>
1113
+ <glyph unicode="&#xE1E0;" horiz-adv-x="563" d="M42,610l479,0l0,53l-479,0z"/>
1114
+ <glyph unicode="&#xE1E1;" horiz-adv-x="0" d="M-60,729l76,0l109,107l-103,0 z M-130,596l260,0l0,76l-260,0z"/>
1115
+ <glyph unicode="&#xE1E2;" horiz-adv-x="0" d="M-63,846l93,0l115,116l-123,0 z M-133,724l266,0l0,76l-266,0z"/>
1116
+ <glyph unicode="&#xFEFF;" horiz-adv-x="0"/>
1117
+ </font>
fonts/adobe-source-sans/SourceSansPro-Semibold.ttf.woff ADDED
Binary file
global.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
 
3
  // Switches
4
-
5
  define('CRAYON_DEBUG', FALSE);
6
 
7
  define('CRAYON_TAG_EDITOR', TRUE);
@@ -18,13 +17,13 @@ define('CRAYON_DOMAIN', 'crayon-syntax-highlighter');
18
  $CRAYON_VERSION = '1.1.1';
19
  $CRAYON_DATE = '27th September, 2011';
20
  $CRAYON_AUTHOR = 'Aram Kocharyan';
21
- $CRAYON_AUTHOR_SITE = 'http://aramk.com/';
22
  $CRAYON_DONATE = 'http://bit.ly/crayondonate';
23
- $CRAYON_WEBSITE = 'https://github.com/aramkocharyan/crayon-syntax-highlighter';
24
  $CRAYON_EMAIL = 'crayon.syntax@gmail.com';
25
  $CRAYON_TWITTER = 'http://twitter.com/crayonsyntax';
26
- $CRAYON_GIT = 'http://github.com/aramkocharyan/crayon-syntax-highlighter/';
27
- $CRAYON_PLUGIN_WP = 'http://wordpress.org/extend/plugins/crayon-syntax-highlighter/';
28
 
29
  // XXX Used to name the class
30
 
1
  <?php
2
 
3
  // Switches
 
4
  define('CRAYON_DEBUG', FALSE);
5
 
6
  define('CRAYON_TAG_EDITOR', TRUE);
17
  $CRAYON_VERSION = '1.1.1';
18
  $CRAYON_DATE = '27th September, 2011';
19
  $CRAYON_AUTHOR = 'Aram Kocharyan';
20
+ $CRAYON_AUTHOR_SITE = 'http://aramk.com';
21
  $CRAYON_DONATE = 'http://bit.ly/crayondonate';
22
+ $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
 
js/minify.sh CHANGED
@@ -6,4 +6,4 @@ source ../util/minify.sh
6
 
7
  common=$"$INPUT_PATH/util.js $INPUT_PATH/jquery.popup.js $INPUT_PATH/crayon.js"
8
  minify $common $OUTPUT_PATH/crayon.min.js
9
- minify $common $INPUT_PATH/cssjson.js $TE_PATH/crayon_qt.js $COLORBOX_PATH/jquery.colorbox-min.js $TE_PATH/crayon_tag_editor.js $OUTPUT_PATH/crayon.te.min.js
6
 
7
  common=$"$INPUT_PATH/util.js $INPUT_PATH/jquery.popup.js $INPUT_PATH/crayon.js"
8
  minify $common $OUTPUT_PATH/crayon.min.js
9
+ minify $common $TE_PATH/crayon_qt.js $COLORBOX_PATH/jquery.colorbox-min.js $TE_PATH/crayon_tag_editor.js $OUTPUT_PATH/crayon.te.min.js
langs/1c-kod/1c-kod.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ ### 1C LANGUAGE ###
2
+
3
+ NAME 1С (Код)
4
+ VERSION 8.X
5
+ PREPROCESSOR ((&|#)[^\n^',']*)
6
+ COMMENT (?default)
7
+ STRING (?default)
8
+ OPERATOR (?alt:operator.txt)
9
+ STATEMENT (?alt:statement.txt)([\s';']|$)
10
+ ENTITY \b[0-9.]*\b
langs/1c-kod/operator.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ #
2
+ ;
3
+ (
4
+ )
5
+ [
6
+ ]
7
+ ,
8
+ .
langs/1c-kod/statement.txt ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # comparison
2
+ =
3
+ <>
4
+ >=
5
+ <=
6
+ Новый
7
+ Для
8
+ Каждого
9
+ Из
10
+ Цикл
11
+ Перем
12
+ Экспорт
13
+ Функция
14
+ Процедура
15
+ ИначеЕсли
16
+ Если
17
+ Или
18
+ Не
19
+ Ложь
20
+ КонецПроцедуры
21
+ КонецФункции
22
+ Истина
23
+ И
24
+ КонецЕсли
25
+ Возврат
26
+ Тогда
27
+ Попытка
28
+ Исключение
29
+ КонецПопытки
30
+ КонецЦикла
31
+ Неопределено
32
+ НОВЫЙ
33
+ ДЛЯ
34
+ КАЖДОГО
35
+ ИЗ
36
+ ЦИКЛ
37
+ ПЕРЕМ
38
+ ЭКСПОРТ
39
+ ФУНКЦИЯ
40
+ ПРОЦЕДУРА
41
+ ИНАЧЕЕСЛИ
42
+ ЕСЛИ
43
+ ИЛИ
44
+ НЕ
45
+ ЛОЖЬ
46
+ КОНЕЦПРОЦЕДУРЫ
47
+ КОНЕЦФУНКЦИИ
48
+ ИСТИНА
49
+ И
50
+ КОНЕЦЕСЛИ
51
+ ВОЗВРАТ
52
+ ТОГДА
53
+ ПОПЫТКА
54
+ ИСКЛЮЧЕНИЕ
55
+ КОНЕЦПОПЫТКИ
56
+ КОНЕЦЦИКЛА
57
+ НЕОПРЕДЕЛЕНО
58
+ новый
59
+ для
60
+ каждого
61
+ из
62
+ цикл
63
+ перем
64
+ функция
65
+ процедура
66
+ иначеесли
67
+ если
68
+ или
69
+ не
70
+ ложь
71
+ конецпроцедуры
72
+ конецфункции
73
+ истина
74
+ и
75
+ конецесли
76
+ возврат
77
+ тогда
78
+ попытка
79
+ исключение
80
+ конецпопытки
81
+ конеццикла
82
+ неопределено
langs/1c-zapros/1c-zapros.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ ### 1C LANGUAGE ###
2
+
3
+ NAME 1С (Запрос)
4
+ VERSION 8.X
5
+ COMMENT (?default)
6
+ VARIABLE (&[^\s^','^)]*)
7
+ OPERATOR (?alt:operator.txt)([\s';']|$)
8
+ STATEMENT (\s(?alt:statement.txt)(.?))+?(?=\()|(\s)(?alt:statement.txt)([\s';']|$)
9
+ SYMBOL (?alt:symbol.txt)
10
+
langs/1c-zapros/operator.txt ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # logical
2
+ ИЗ
3
+ ВЫБРАТЬ
4
+ ГДЕ
5
+ КАК
6
+ РАЗЛИЧНЫЕ
7
+ СГРУППИРОВАТЬ
8
+ ИТОГИ
9
+ ПО
10
+ РАЗРЕШЕННЫЕ
11
+ ПЕРВЫЕ
12
+ ПОМЕСТИТЬ
13
+ ЧИСЛО
14
+ СТРОКА
15
+ ДАТА
16
+ УНИЧТОЖИТЬ
17
+ ЗНАЧЕНИЕ
18
+ ТИПЗНАЧЕНИЯ
19
+ ОБЪЕДИНИТЬ ВСЕ
20
+ ОБЪЕДИНИТЬ
langs/1c-zapros/statement.txt ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #Как делать регистр я так и не понял
2
+ И
3
+ НЕ
4
+ В ИЕРАРХИИ
5
+ ЕСТЬ
6
+ NULL
7
+ МАКСИМУМ
8
+ МИНИМУМ
9
+ КОЛИЧЕСТВО
10
+ СУММА
11
+ ИЛИ
12
+ МЕЖДУ
13
+ ПОДОБНО
14
+ ВЫРАЗИТЬ
15
+ ВЫБОР
16
+ КОГДА
17
+ ТОГДА
18
+ ИНАЧЕ
19
+ КОНЕЦ
20
+ ГОД
21
+ МЕСЯЦ
22
+ КВАРТАЛ
23
+ ДЕНЬ
24
+ НЕДЕЛЯ
25
+ ЧАС
26
+ МИНУТА
27
+ СЕКУНДА
28
+ ЕСТЬNULL
29
+ ДАТАВРЕМЯ
30
+ и
31
+ есть
32
+ null
33
+ максимум
34
+ минимум
35
+ количество
36
+ сумма
37
+ или
38
+ между
39
+ подобно
40
+ выразить
41
+ выбор
42
+ когда
43
+ тогда
44
+ иначе
45
+ конец
46
+ год
47
+ месяц
48
+ квартал
49
+ день
50
+ неделя
51
+ час
52
+ минута
53
+ секунда
54
+ естьnull
55
+ датавремя
langs/1c-zapros/symbol.txt ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ =
3
+ >=
4
+ >
5
+ <=
6
+ <
7
+ <>
8
+ /
9
+ -
10
+ %
11
+ +
12
+ *
13
+ ,
14
+ (
15
+ )
langs/default/default.txt CHANGED
@@ -7,7 +7,7 @@
7
 
8
  COMMENT (/\*.*?\*/)|(//.*?$)
9
  PREPROCESSOR (#.*?$)
10
- STRING ((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
11
 
12
  STATEMENT \b(?alt:statement.txt)\b
13
  RESERVED \b(?<![:\.])(?alt:reserved.txt)\b
7
 
8
  COMMENT (/\*.*?\*/)|(//.*?$)
9
  PREPROCESSOR (#.*?$)
10
+ STRING ((?<![^\\]\\)".*?(?<![^\\]\\)")|((?<![^\\]\\)'.*?(?<![^\\]\\)')
11
 
12
  STATEMENT \b(?alt:statement.txt)\b
13
  RESERVED \b(?<![:\.])(?alt:reserved.txt)\b
langs/delimiters.txt CHANGED
@@ -2,3 +2,4 @@ php <\?(?:php)?.*?\?\>
2
  js <script\b[^\>]*>.*?</script>
3
  css <style\b[^\>]*>.*?</style>
4
  ruby (<%.*?%>)|(^%.*?[\r\n])
 
2
  js <script\b[^\>]*>.*?</script>
3
  css <style\b[^\>]*>.*?</style>
4
  ruby (<%.*?%>)|(^%.*?[\r\n])
5
+ swift \\\(.*?\)
langs/go/go.txt CHANGED
@@ -9,8 +9,8 @@
9
  PREPROCESSOR (?default)
10
  STRING (?default)
11
 
12
- STATEMENT (?default)
13
- RESERVED (?default)|\b(?alt:reserved.txt)\b
14
  TYPE (?default)
15
  MODIFIER (?default)
16
 
9
  PREPROCESSOR (?default)
10
  STRING (?default)
11
 
12
+ STATEMENT \b(?alt:statement.txt)\b
13
+ RESERVED (?default)
14
  TYPE (?default)
15
  MODIFIER (?default)
16
 
langs/objc/objc.txt CHANGED
@@ -8,7 +8,7 @@
8
  COMMENT (?default)
9
  PREPROCESSOR (?default)
10
  STRING (@?(?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
11
- NOTATION \<.+\>
12
 
13
  STATEMENT (?alt:statement_at.txt)\b|\b(?alt:statement.txt)\b
14
  RESERVED (?alt:reserved_at.txt)\b|\b(?alt:reserved.txt)\b
8
  COMMENT (?default)
9
  PREPROCESSOR (?default)
10
  STRING (@?(?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
11
+ NOTATION \<\ ?[a-zA-Z]+\ ?\>
12
 
13
  STATEMENT (?alt:statement_at.txt)\b|\b(?alt:statement.txt)\b
14
  RESERVED (?alt:reserved_at.txt)\b|\b(?alt:reserved.txt)\b
langs/ps/ps.txt CHANGED
@@ -6,8 +6,8 @@
6
  VERSION 1.8.2
7
 
8
  COMMENT ((?<!`)#.*?$)|((?<!`)<#.*?(?<!`)#>)
9
- HERESTRING:STRING ((?<!`)(@\".*?^\s*(?<!`)\"@))|((?<!`)(@\'.*?^\s*(?<!`)\'@))
10
- STRING ((?<!`)".*?(?<!`)")|((?<!`)'.*?(?<!`)')
11
 
12
  FUNCTIONS:RESERVED (\b(?alt:reserved.txt)\b)|((?-i)[A-Z]\w+-[A-Z]\w+(?i))
13
  STATEMENT \b(?alt:statement.txt)\b
@@ -20,4 +20,4 @@
20
  OPERATOR (?default)
21
  SYMBOL (?default)
22
 
23
- #// -\w+\b
6
  VERSION 1.8.2
7
 
8
  COMMENT ((?<!`)#.*?$)|((?<!`)<#.*?(?<!`)#>)
9
+ HERESTRING:STRING ((?<!`)(@\".*?^\s*\"@))|((?<!`)(@\'.*?^\s*\'@))
10
+ STRING ((?<!`)".*?(?<!`)")|((?<!`)'.*?')
11
 
12
  FUNCTIONS:RESERVED (\b(?alt:reserved.txt)\b)|((?-i)[A-Z]\w+-[A-Z]\w+(?i))
13
  STATEMENT \b(?alt:statement.txt)\b
20
  OPERATOR (?default)
21
  SYMBOL (?default)
22
 
23
+ #// -\w+\b
langs/rust/modifier.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ mut
2
+ priv
3
+ pub
4
+ static
langs/rust/reserved.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ fn
2
+ let
3
+ use
langs/rust/rust.txt ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Rust LANGUAGE ###
2
+
3
+ # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
+
5
+ NAME Rust
6
+ VERSION 1.0.0
7
+
8
+ COMMENT (?default)
9
+ PREPROCESSOR (?default)
10
+ STRING (?default)
11
+
12
+ STATEMENT (?default)|\b(?alt:statement.txt)\b
13
+ RESERVED (?default)|\b(?alt:reserved.txt)\b
14
+ TYPE (?default)|\b(?alt:type.txt)\b
15
+ MODIFIER (?default)|\b(?alt:modifier.txt)\b
16
+
17
+ ENTITY (?default)
18
+ # TODO: the use of priorities would be suitable here, last check for &*** vars might match entity
19
+ VARIABLE (?default)|(?default:identifier)(?=::)|\b(?<=\-\>)\s*[A-Za-z_]\w*|&(?default:identifier)\s*(?!\()
20
+ IDENTIFIER (?default)
21
+ CONSTANT (?default)
22
+ OPERATOR (?default)
23
+ SYMBOL (?default)
langs/rust/statement.txt ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ as
2
+ break
3
+ continue
4
+ do
5
+ else
6
+ enum
7
+ extern
8
+ for
9
+ if
10
+ impl
11
+ in
12
+ loop
13
+ match
14
+ mod
15
+ proc
16
+ ref
17
+ return
18
+ self
19
+ struct
20
+ super
21
+ trait
22
+ type
23
+ unsafe
24
+ while
langs/rust/type.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ int
2
+ uint
3
+ f32
4
+ f64
5
+ i32
6
+ i64
7
+ true
8
+ false
9
+ std
10
+ extra
langs/swift/modifier.txt ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ unowned(unsafe)
2
+ unowned(safe)
3
+ associativity
4
+ nonmutating
5
+ precedence
6
+ override
7
+ operator
8
+ mutating
9
+ unowned
10
+ postfix
11
+ prefix
12
+ didSet
13
+ right
14
+ inout
15
+ infix
16
+ weak
17
+ none
18
+ left
19
+ set
20
+ get
langs/swift/operator.txt ADDED
@@ -0,0 +1,2 @@
 
 
1
+ ...
2
+ ..
langs/swift/reserved.txt ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ __FUNCTION__
2
+ fallthrough
3
+ dynamicType
4
+ __COLUMN__
5
+ typealias
6
+ subscript
7
+ extension
8
+ protocol
9
+ __LINE__
10
+ __FILE__
11
+ continue
12
+ default
13
+ switch
14
+ struct
15
+ static
16
+ return
17
+ import
18
+ deinit
19
+ while
20
+ where
21
+ super
22
+ class
23
+ break
24
+ Type
25
+ Self
26
+ self
27
+ init
28
+ func
29
+ enum
30
+ else
31
+ case
32
+ var
33
+ new
34
+ let
35
+ for
36
+ is
37
+ in
38
+ if
39
+ do
40
+ as
langs/swift/swift.txt ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### SWIFT LANGUAGE ###
2
+
3
+ # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
+
5
+ NAME Swift
6
+ VERSION 1.0
7
+
8
+ COMMENT (?default)
9
+ STRING (?default)
10
+
11
+ STATEMENT (?default)
12
+ RESERVED \b(?alt:reserved.txt)\b
13
+ CAST:ENTITY (\b(?default:type)\b(?=\s*\([^\)]*\)))
14
+ TYPE (?default)|\b(?alt:type.txt)\b|(?<=:)(\s*[A-Za-z_]\w*\b(?=\s*\{))
15
+ MODIFIER \b(?alt:modifier.txt)\b
16
+
17
+ PROPERTY:VARIABLE (?<=\.)([A-Za-z_]\w*)
18
+ ENTITY (?default)
19
+
20
+ VARIABLE (?default)|[A-Za-z_]\w*\s*$
21
+ IDENTIFIER (?default)
22
+ CONSTANT (?<!\w)[0-9]\.[0-9]+|(?<!\w)[0-9]\w*\b
23
+ OPERATOR (?default)|(?alt:operator.txt)
24
+ SYMBOL (?default)
langs/swift/type.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ Double
2
+ String
3
+ Float
4
+ Int
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: 3.9.0
8
  Stable tag: trunk
9
 
10
  Syntax Highlighter supporting multiple languages, themes, fonts, highlighting from a URL, local file or post text.
@@ -73,6 +73,7 @@ Languages are defined in language files using Regular Expressions to capture ele
73
  See the <a href="http://aramk.com/blog/2011/09/23/crayon-language-file-specification/" target="_blank">Crayon Language File Specification</a> to learn how to make your own.
74
 
75
  * Default Language (one size fits all, highlights generic code)
 
76
  * ABAP
77
  * ActionScript
78
  * AmigaDOS (thanks to <a href="http://www.amigalog.com/" target="_blank">amigalog.com</a>)
@@ -115,6 +116,7 @@ See the <a href="http://aramk.com/blog/2011/09/23/crayon-language-file-specifica
115
  * Rust (thanks to <a href="https://github.com/Stibbons" target="_blank">Stibbons</a>)
116
  * Scheme (thanks to <a href="https://github.com/harry75369" target="_blank">Harry75369</a>)
117
  * Shell (Unix)
 
118
  * Transact-SQL
119
  * TeX
120
  * Vim
@@ -127,21 +129,25 @@ See the <a href="http://aramk.com/blog/2011/09/23/crayon-language-file-specifica
127
  **International Languages**
128
 
129
  * Arabic (thanks to <a href="http://djennadhamza.eb2a.com/" target="_blank">Djennad Hamza</a>)
130
- * Chinese (Simplified, thanks to <a href="http://smerpup.com/" target="_blank">Dezhi Liu</a> & <a href="http://neverno.me/" target="_blank">Jash Yin</a>)
131
- * Dutch (thanks to <a href="http://www.dreamdesignsolutions.nl/" target="_blank">Robin Roelofsen</a> & <a href="https://twitter.com/#!/chilionsnoek" target="_blank">Chilion Snoek</a>)
 
 
132
  * French (thanks to <a href="http://tech.dupeu.pl" target="_blank">Victor Felder</a>)
133
  * German (thanks to <a href="http://www.technologyblog.de/" target="_blank">Stephan Knau&szlig;</a>)
134
  * Italian (thanks to <a href="http://www.federicobellucci.net/" target="_blank">Federico Bellucci</a>)
135
  * Japanese (thanks to <a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>)
136
  * Korean (thanks to <a href="https://github.com/dokenzy" target="_blank">dokenzy</a>)
137
- * Lithuanian (thanks to <a href="http://www.host1free.com" target="_blank">Vincent G</a>)
 
138
  * Polish (thanks to <a href="https://github.com/toszcze" target="_blank">Bartosz Romanowski</a>)
139
  * Portuguese (thanks to <a href="http://www.adonai.eti.br" target="_blank">Adonai S. Canez</a>)
140
- * Slovak (thanks to Branco, <a href="http://webhostinggeeks.com/blog/" target="_blank">http://webhostinggeeks.com/</a>)
 
141
  * Slovenian (thanks to Jan Su&#353;nik, <a href="http://jodlajodla.si/" target="_blank">http://jodlajodla.si/</a>)
142
  * Spanish (thanks to <a href="http://www.hbravo.com/" target="_blank">Hermann Bravo</a>)
143
- * Russian (thanks to <a href="http://simplelib.com" target="_blank">Minimus</a> & <a href="http://atlocal.net/" target="_blank">Di_Skyer</a>)
144
  * Turkish (thanks to <a href="http://hakanertr.wordpress.com" target="_blank">Hakan</a>)
 
145
  * Help from translators at improving/adding to this list greatly appreciated!
146
 
147
  **Articles**
@@ -186,16 +192,17 @@ A handful of articles from others written about Crayon, thanks guys!
186
  * http://www.wplover.com/2155/crayon-syntax-highlighter-plugin/
187
  * http://www.htmlandphp.com/scripts/crayon-syntax-highlighter.html
188
 
189
- **Future Development**
190
-
191
- * Performance, minimised resources
192
- * Theme Editor
193
- * Integrated commenting
194
-
195
  **Donations**
196
 
197
  Thanks to all those who donate to the project:
198
 
 
 
 
 
 
 
 
199
  * Alicia Ramirez, (http://aliciaramirez.com/), Canada
200
  * William Eisert, USA
201
  * Inappix Development, (http://www.inappix.com/), Switzerland
@@ -271,6 +278,56 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
271
 
272
  == Changelog ==
273
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  = 2.6.1 =
275
  * ADDED:
276
  * Sublime-text theme.
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.0.0
8
  Stable tag: trunk
9
 
10
  Syntax Highlighter supporting multiple languages, themes, fonts, highlighting from a URL, local file or post text.
73
  See the <a href="http://aramk.com/blog/2011/09/23/crayon-language-file-specification/" target="_blank">Crayon Language File Specification</a> to learn how to make your own.
74
 
75
  * Default Language (one size fits all, highlights generic code)
76
+ * C1 (thanks to <a href="http://oparin.info/" target="_blank">Oparin Pavel</a>)
77
  * ABAP
78
  * ActionScript
79
  * AmigaDOS (thanks to <a href="http://www.amigalog.com/" target="_blank">amigalog.com</a>)
116
  * Rust (thanks to <a href="https://github.com/Stibbons" target="_blank">Stibbons</a>)
117
  * Scheme (thanks to <a href="https://github.com/harry75369" target="_blank">Harry75369</a>)
118
  * Shell (Unix)
119
+ * Swift (thanks to <a href="https://github.com/weyhan" target="_blank">weyhan</a>)
120
  * Transact-SQL
121
  * TeX
122
  * Vim
129
  **International Languages**
130
 
131
  * Arabic (thanks to <a href="http://djennadhamza.eb2a.com/" target="_blank">Djennad Hamza</a>)
132
+ * Chinese Simplified (thanks to <a href="http://smerpup.com/" target="_blank">Dezhi Liu</a> & <a href="http://neverno.me/" target="_blank">Jash Yin</a>)
133
+ * Chinese Traditional (thanks to <a href="http://www.arefly.com/" target="_blank">Arefly</a>)
134
+ * 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>)
135
+ * Finnish (thanks to <a href="https://github.com/vahalan" target="_blank">vahalan</a>)
136
  * French (thanks to <a href="http://tech.dupeu.pl" target="_blank">Victor Felder</a>)
137
  * German (thanks to <a href="http://www.technologyblog.de/" target="_blank">Stephan Knau&szlig;</a>)
138
  * Italian (thanks to <a href="http://www.federicobellucci.net/" target="_blank">Federico Bellucci</a>)
139
  * Japanese (thanks to <a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>)
140
  * Korean (thanks to <a href="https://github.com/dokenzy" target="_blank">dokenzy</a>)
141
+ * Lithuanian (thanks to Vincent G)
142
+ * Persian (thanks to MahdiY)
143
  * Polish (thanks to <a href="https://github.com/toszcze" target="_blank">Bartosz Romanowski</a>)
144
  * Portuguese (thanks to <a href="http://www.adonai.eti.br" target="_blank">Adonai S. Canez</a>)
145
+ * Russian (thanks to <a href="http://simplelib.com" target="_blank">Minimus</a> & <a href="http://atlocal.net/" target="_blank">Di_Skyer</a>)
146
+ * Slovak (thanks to Branco, <a href="https://twitter.com/#!/webhostgeeks" target="_blank">webhostgeeks/</a>)
147
  * Slovenian (thanks to Jan Su&#353;nik, <a href="http://jodlajodla.si/" target="_blank">http://jodlajodla.si/</a>)
148
  * Spanish (thanks to <a href="http://www.hbravo.com/" target="_blank">Hermann Bravo</a>)
 
149
  * Turkish (thanks to <a href="http://hakanertr.wordpress.com" target="_blank">Hakan</a>)
150
+ * Ukrainian (thanks to <a href="http://getvoip.com/blog" target="_blank">Michael Yunat</a>)
151
  * Help from translators at improving/adding to this list greatly appreciated!
152
 
153
  **Articles**
192
  * http://www.wplover.com/2155/crayon-syntax-highlighter-plugin/
193
  * http://www.htmlandphp.com/scripts/crayon-syntax-highlighter.html
194
 
 
 
 
 
 
 
195
  **Donations**
196
 
197
  Thanks to all those who donate to the project:
198
 
199
+ * Raffael Vogler, Germany
200
+ * Erdal Cicek, Turkey
201
+ * Cloud-VPS, Poland
202
+ * Łukasz Bereza, Poland
203
+ * Laurence Scotford, UK
204
+ * Goretity Árpád László, (http://h2co3.org/blog), Hungary
205
+ * AdsProvider, USA
206
  * Alicia Ramirez, (http://aliciaramirez.com/), Canada
207
  * William Eisert, USA
208
  * Inappix Development, (http://www.inappix.com/), Switzerland
278
 
279
  == Changelog ==
280
 
281
+ = 2.6.7 =
282
+ * ADDED:
283
+ * Traditional Chinese translation (thanks to <a href="http://www.arefly.com/" target="_blank">Arefly</a>)
284
+ * Converting tabs to spaces setting is now off by default. The original tab size setting is used with the tab-size CSS style instead to preserve tabs in the source.
285
+ * "ignore:true" setting in the class of pre tags will prevent that code block from being parsed by Crayon.
286
+ * Obsidian theme thanks to <a href="http://rakcheev.ru/" target="_blank">Rakcheev Artem</a>.
287
+ * Visual Assist theme thanks to Brady Reuter.
288
+ * FIXED:
289
+ * Styling for (?) buttons on settings page.
290
+
291
+ = 2.6.6 =
292
+ * ADDED:
293
+ * Persian translation (thanks to MahdiY).
294
+ * C1 language and themes (thanks to Oparin Pavel).
295
+ * FIXED:
296
+ * Improved Chinese translation and Go language statements (thanks to <a href="https://github.com/sumhat" target="_blank">sumhat</a>)
297
+ * Theme editor failing to load.
298
+ * Updated to WP 4.0
299
+
300
+ = 2.6.5 =
301
+ * ADDED:
302
+ * Shell-default theme.
303
+ * FIXED:
304
+ * Added missing SVN files.
305
+
306
+ = 2.6.4 =
307
+ * ADDED:
308
+ * Swift language (thanks to <a href="https://github.com/weyhan" target="_blank">weyhan</a>).
309
+ * Light Abite theme.
310
+ * Missing gettext for in settings page.
311
+ * Finnish translation (thanks to <a href="https://github.com/vahalan" target="_blank">vahalan</a>).
312
+ * FIXED:
313
+ * Issue causing other shortcode tags (e.g. captions) to be removed on post save.
314
+ * Improved tag editor button style when active to use the default for TinyMCE.
315
+ * Style missing for visual editor if switching from text mode after a refresh.
316
+ * String matching fixes thanks to <a href="https://github.com/mcmanigle" target="_blank">mcmanigle</a>
317
+
318
+ = 2.6.3 =
319
+ * FIXED:
320
+ * Removed commercial links from translations section following advice from WordPress.
321
+
322
+ = 2.6.2 =
323
+ * ADDED:
324
+ * Ukrainian translation.
325
+ * FIXED:
326
+ * Tag Editor compatibility with WordPress 3.9.1.
327
+ * Reduced loading times by lazily loading Tag Editor content, which was parsing all languages to populate the dropdown.
328
+ * Added more debug statements to log issues with loading resources and parsing languages.
329
+ * Removed clear: both and float: none from crayon tag styles.
330
+
331
  = 2.6.1 =
332
  * ADDED:
333
  * Sublime-text theme.
themes/1c-kod/1c-kod.css ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: 1C (���)
3
+ Description: ����� ��� ��������� ���� 1C
4
+ Version: 1.0
5
+ Author: Oparin Pavel
6
+ URL: http://oparin.info
7
+ */
8
+ .crayon-theme-1c-kod {
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
+ }
15
+ .crayon-theme-1c-kod-inline {
16
+ border-width: 1px !important;
17
+ border-color: #ddd !important;
18
+ border-style: solid !important;
19
+ background: #fafafa !important;
20
+ }
21
+ .crayon-theme-1c-kod .crayon-table .crayon-nums {
22
+ background: #dfefff !important;
23
+ color: #5499de !important;
24
+ }
25
+ .crayon-theme-1c-kod *::selection {
26
+ background: transparent !important;
27
+ }
28
+ .crayon-theme-1c-kod .crayon-code *::selection {
29
+ background: #ddeeff !important;
30
+ color: #316ba5 !important;
31
+ }
32
+ .crayon-theme-1c-kod .crayon-striped-line {
33
+ background: #f7f7f7 !important;
34
+ }
35
+ .crayon-theme-1c-kod .crayon-striped-num {
36
+ background: #c8e1fa !important;
37
+ color: #317cc5 !important;
38
+ }
39
+ .crayon-theme-1c-kod .crayon-marked-line {
40
+ background: #fffee2 !important;
41
+ border-width: 1px !important;
42
+ border-color: #e9e579 !important;
43
+ }
44
+ .crayon-theme-1c-kod .crayon-marked-num {
45
+ color: #1561ac !important;
46
+ background: #b3d3f4 !important;
47
+ border-width: 1px !important;
48
+ border-color: #5999d9 !important;
49
+ }
50
+ .crayon-theme-1c-kod .crayon-marked-line.crayon-striped-line {
51
+ background: #faf8d1 !important;
52
+ }
53
+ .crayon-theme-1c-kod .crayon-marked-num.crayon-striped-num {
54
+ background: #9ec5ec !important;
55
+ color: #105395 !important;
56
+ }
57
+ .crayon-theme-1c-kod .crayon-marked-line.crayon-top {
58
+ border-top-style: solid !important;
59
+ }
60
+ .crayon-theme-1c-kod .crayon-marked-num.crayon-top {
61
+ border-top-style: solid !important;
62
+ }
63
+ .crayon-theme-1c-kod .crayon-marked-line.crayon-bottom {
64
+ border-bottom-style: solid !important;
65
+ }
66
+ .crayon-theme-1c-kod .crayon-marked-num.crayon-bottom {
67
+ border-bottom-style: solid !important;
68
+ }
69
+ .crayon-theme-1c-kod .crayon-info {
70
+ background: #faf9d7 !important;
71
+ border-bottom-width: 1px !important;
72
+ border-bottom-color: #b1af5e !important;
73
+ border-bottom-style: solid !important;
74
+ color: #7e7d34;
75
+ }
76
+ .crayon-theme-1c-kod .crayon-toolbar {
77
+ background: #DDD !important;
78
+ border-bottom-width: 1px !important;
79
+ border-bottom-color: #BBB !important;
80
+ border-bottom-style: solid !important;
81
+ }
82
+ .crayon-theme-1c-kod .crayon-toolbar > div {
83
+ float: left !important;
84
+ }
85
+ .crayon-theme-1c-kod .crayon-toolbar .crayon-tools {
86
+ float: right !important;
87
+ }
88
+ .crayon-theme-1c-kod .crayon-title {
89
+ color: #333 !important;
90
+ }
91
+ .crayon-theme-1c-kod .crayon-language {
92
+ color: #999 !important;
93
+ }
94
+ .crayon-theme-1c-kod .crayon-button {
95
+ background-color: #DDD;
96
+ }
97
+ .crayon-theme-1c-kod .crayon-button:hover {
98
+ background-color: #EEE;
99
+ color: #666;
100
+ }
101
+ .crayon-theme-1c-kod .crayon-button.crayon-pressed:hover {
102
+ background-color: #EEE;
103
+ color: #666;
104
+ }
105
+ .crayon-theme-1c-kod .crayon-button.crayon-pressed {
106
+ background-color: #BCBCBC;
107
+ color: #FFF;
108
+ }
109
+ .crayon-theme-1c-kod .crayon-button.crayon-pressed:active {
110
+ background-color: #BCBCBC;
111
+ color: #FFF;
112
+ }
113
+ .crayon-theme-1c-kod .crayon-button:active {
114
+ background-color: #BCBCBC;
115
+ color: #FFF;
116
+ }
117
+ .crayon-theme-1c-kod .crayon-pre .crayon-c {
118
+ color: #008000 !important;
119
+ }
120
+ .crayon-theme-1c-kod .crayon-pre .crayon-s {
121
+ color: #000000 !important;
122
+ }
123
+ .crayon-theme-1c-kod .crayon-pre .crayon-p {
124
+ color: #963200 !important;
125
+ }
126
+ .crayon-theme-1c-kod .crayon-pre .crayon-ta {
127
+ color: #FF0000 !important;
128
+ }
129
+ .crayon-theme-1c-kod .crayon-pre .crayon-k {
130
+ color: #800080 !important;
131
+ }
132
+ .crayon-theme-1c-kod .crayon-pre .crayon-st {
133
+ color: #FF0000 !important;
134
+ }
135
+ .crayon-theme-1c-kod .crayon-pre .crayon-r {
136
+ color: #800080 !important;
137
+ }
138
+ .crayon-theme-1c-kod .crayon-pre .crayon-t {
139
+ color: #800080 !important;
140
+ }
141
+ .crayon-theme-1c-kod .crayon-pre .crayon-m {
142
+ color: #800080 !important;
143
+ }
144
+ .crayon-theme-1c-kod .crayon-pre .crayon-i {
145
+ color: #000 !important;
146
+ }
147
+ .crayon-theme-1c-kod .crayon-pre .crayon-e {
148
+ color: #000000 !important;
149
+ }
150
+ .crayon-theme-1c-kod .crayon-pre .crayon-v {
151
+ color: #002D7A !important;
152
+ }
153
+ .crayon-theme-1c-kod .crayon-pre .crayon-cn {
154
+ color: #ce0000 !important;
155
+ }
156
+ .crayon-theme-1c-kod .crayon-pre .crayon-o {
157
+ color: #FF0000 !important;
158
+ }
159
+ .crayon-theme-1c-kod .crayon-pre .crayon-sy {
160
+ color: #333 !important;
161
+ }
162
+ .crayon-theme-1c-kod .crayon-pre .crayon-n {
163
+ color: #666 !important;
164
+ font-style: italic;
165
+ }
166
+ .crayon-theme-1c-kod .crayon-pre .crayon-f {
167
+ color: #999 !important;
168
+ }
169
+ .crayon-theme-1c-kod .crayon-pre .crayon-h {
170
+ color: #006fe0 !important;
171
+ }
172
+ .crayon-theme-1c-kod .crayon-pre, .crayon-syntax pre{
173
+ color: #0000FF !important;
174
+ }
themes/1c-zapros/1c-zapros.css ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: 1C (������)
3
+ Description: ����� ��� ��������� ������� 1C
4
+ Version: 1.0
5
+ Author: Oparin Pavel
6
+ URL: http://oparin.info
7
+ */
8
+ .crayon-theme-1c-zapros {
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
+ }
15
+ .crayon-theme-1c-zapros-inline {
16
+ border-width: 1px !important;
17
+ border-color: #ddd !important;
18
+ border-style: solid !important;
19
+ background: #fafafa !important;
20
+ }
21
+ .crayon-theme-1c-zapros .crayon-table .crayon-nums {
22
+ background: #dfefff !important;
23
+ color: #5499de !important;
24
+ }
25
+ .crayon-theme-1c-zapros *::selection {
26
+ background: transparent !important;
27
+ }
28
+ .crayon-theme-1c-zapros .crayon-code *::selection {
29
+ background: #ddeeff !important;
30
+ color: #316ba5 !important;
31
+ }
32
+ .crayon-theme-1c-zapros .crayon-striped-line {
33
+ background: #f7f7f7 !important;
34
+ }
35
+ .crayon-theme-1c-zapros .crayon-striped-num {
36
+ background: #c8e1fa !important;
37
+ color: #317cc5 !important;
38
+ }
39
+ .crayon-theme-1c-zapros .crayon-marked-line {
40
+ background: #fffee2 !important;
41
+ border-width: 1px !important;
42
+ border-color: #e9e579 !important;
43
+ }
44
+ .crayon-theme-1c-zapros .crayon-marked-num {
45
+ color: #1561ac !important;
46
+ background: #b3d3f4 !important;
47
+ border-width: 1px !important;
48
+ border-color: #5999d9 !important;
49
+ }
50
+ .crayon-theme-1c-zapros .crayon-marked-line.crayon-striped-line {
51
+ background: #faf8d1 !important;
52
+ }
53
+ .crayon-theme-1c-zapros .crayon-marked-num.crayon-striped-num {
54
+ background: #9ec5ec !important;
55
+ color: #105395 !important;
56
+ }
57
+ .crayon-theme-1c-zapros .crayon-marked-line.crayon-top {
58
+ border-top-style: solid !important;
59
+ }
60
+ .crayon-theme-1c-zapros .crayon-marked-num.crayon-top {
61
+ border-top-style: solid !important;
62
+ }
63
+ .crayon-theme-1c-zapros .crayon-marked-line.crayon-bottom {
64
+ border-bottom-style: solid !important;
65
+ }
66
+ .crayon-theme-1c-zapros .crayon-marked-num.crayon-bottom {
67
+ border-bottom-style: solid !important;
68
+ }
69
+ .crayon-theme-1c-zapros .crayon-info {
70
+ background: #faf9d7 !important;
71
+ border-bottom-width: 1px !important;
72
+ border-bottom-color: #b1af5e !important;
73
+ border-bottom-style: solid !important;
74
+ color: #7e7d34;
75
+ }
76
+ .crayon-theme-1c-zapros .crayon-toolbar {
77
+ background: #DDD !important;
78
+ border-bottom-width: 1px !important;
79
+ border-bottom-color: #BBB !important;
80
+ border-bottom-style: solid !important;
81
+ }
82
+ .crayon-theme-1c-zapros .crayon-toolbar > div {
83
+ float: left !important;
84
+ }
85
+ .crayon-theme-1c-zapros .crayon-toolbar .crayon-tools {
86
+ float: right !important;
87
+ }
88
+ .crayon-theme-1c-zapros .crayon-title {
89
+ color: #333 !important;
90
+ }
91
+ .crayon-theme-1c-zapros .crayon-language {
92
+ color: #999 !important;
93
+ }
94
+ .crayon-theme-1c-zapros .crayon-button {
95
+ background-color: #DDD;
96
+ }
97
+ .crayon-theme-1c-zapros .crayon-button:hover {
98
+ background-color: #EEE;
99
+ color: #666;
100
+ }
101
+ .crayon-theme-1c-zapros .crayon-button.crayon-pressed:hover {
102
+ background-color: #EEE;
103
+ color: #666;
104
+ }
105
+ .crayon-theme-1c-zapros .crayon-button.crayon-pressed {
106
+ background-color: #BCBCBC;
107
+ color: #FFF;
108
+ }
109
+ .crayon-theme-1c-zapros .crayon-button.crayon-pressed:active {
110
+ background-color: #BCBCBC;
111
+ color: #FFF;
112
+ }
113
+ .crayon-theme-1c-zapros .crayon-button:active {
114
+ background-color: #BCBCBC;
115
+ color: #FFF;
116
+ }
117
+ .crayon-theme-1c-zapros .crayon-pre .crayon-c {
118
+ color: #008000 !important;
119
+ }
120
+ .crayon-theme-1c-zapros .crayon-pre .crayon-s {
121
+ color: #000000 !important;
122
+ }
123
+ .crayon-theme-1c-zapros .crayon-pre .crayon-p {
124
+ color: #963200 !important;
125
+ }
126
+ .crayon-theme-1c-zapros .crayon-pre .crayon-ta {
127
+ color: #FF0000 !important;
128
+ }
129
+ .crayon-theme-1c-zapros .crayon-pre .crayon-k {
130
+ color: #800080 !important;
131
+ }
132
+ .crayon-theme-1c-zapros .crayon-pre .crayon-st {
133
+ color: #800000 !important;
134
+ }
135
+ .crayon-theme-1c-zapros .crayon-pre .crayon-r {
136
+ color: #800080 !important;
137
+ }
138
+ .crayon-theme-1c-zapros .crayon-pre .crayon-t {
139
+ color: #800080 !important;
140
+ }
141
+ .crayon-theme-1c-zapros .crayon-pre .crayon-m {
142
+ color: #800080 !important;
143
+ }
144
+ .crayon-theme-1c-zapros .crayon-pre .crayon-i {
145
+ color: #000 !important;
146
+ }
147
+ .crayon-theme-1c-zapros .crayon-pre .crayon-e {
148
+ color: #000000 !important;
149
+ }
150
+ .crayon-theme-1c-zapros .crayon-pre .crayon-v {
151
+ color: #008080 !important;
152
+ }
153
+ .crayon-theme-1c-zapros .crayon-pre .crayon-cn {
154
+ color: #ce0000 !important;
155
+ }
156
+ .crayon-theme-1c-zapros .crayon-pre .crayon-o {
157
+ color: #0000FF !important;
158
+ }
159
+ .crayon-theme-1c-zapros .crayon-pre .crayon-sy {
160
+ color: #0000FF !important;
161
+ }
162
+ .crayon-theme-1c-zapros .crayon-pre .crayon-n {
163
+ color: #666 !important;
164
+ font-style: italic;
165
+ }
166
+ .crayon-theme-1c-zapros .crayon-pre .crayon-f {
167
+ color: #999 !important;
168
+ }
169
+ .crayon-theme-1c-zapros .crayon-pre .crayon-h {
170
+ color: #006fe0 !important;
171
+ }
172
+ .crayon-theme-1c-zapros .crayon-pre, .crayon-syntax pre{
173
+ color: #000000 !important;
174
+ }
themes/809finest/809finest.css ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: 809finest
3
+ Description: Version: 1.0
4
+ Author: Daniel De Jesús
5
+ URL: http://809finest.com
6
+ */
7
+ .crayon-theme-809finest {
8
+ border-width: 1px !important;
9
+ text-shadow: none !important;
10
+ border-color: #162E53 !important;
11
+ border-style: solid !important;
12
+ background: #162E53 !important;
13
+ }
14
+ .crayon-theme-809finest-inline {
15
+ border-width: 1px !important;
16
+ border-color: #162E53 !important;
17
+ border-style: solid !important;
18
+ background: #112442 !important;
19
+ }
20
+ .crayon-theme-809finest .crayon-table .crayon-nums {
21
+ color: #ffffff !important;
22
+ background: #BB0A1C !important;
23
+ }
24
+ .crayon-theme-809finest *::selection {
25
+ background: transparent !important;
26
+ }
27
+ .crayon-theme-809finest .crayon-code *::selection {
28
+ background: #ddeeff !important;
29
+ color: #316ba5 !important;
30
+ }
31
+ .crayon-theme-809finest .crayon-striped-line {
32
+ background: #162E53 !important;
33
+ }
34
+ .crayon-theme-809finest .crayon-striped-num {
35
+ background: #BB0A1C !important;
36
+ color: #ffffff !important;
37
+ }
38
+ .crayon-theme-809finest .crayon-marked-line {
39
+ border-width: 1px !important;
40
+ border-color: #162E53 !important;
41
+ background: #162E53 !important;
42
+ }
43
+ .crayon-theme-809finest .crayon-marked-num {
44
+ color: #ffffff !important;
45
+ border-width: 1px !important;
46
+ border-color: #BB0A1C !important;
47
+ background: #BB0A1C !important;
48
+ }
49
+ .crayon-theme-809finest .crayon-marked-line.crayon-striped-line {
50
+ background: #162E53 !important;
51
+ }
52
+ .crayon-theme-809finest .crayon-marked-num.crayon-striped-num {
53
+ color: #ffffff !important;
54
+ background: #BB0A1C !important;
55
+ }
56
+ .crayon-theme-809finest .crayon-marked-line.crayon-top {
57
+ border-top-style: solid !important;
58
+ }
59
+ .crayon-theme-809finest .crayon-marked-num.crayon-top {
60
+ border-top-style: solid !important;
61
+ }
62
+ .crayon-theme-809finest .crayon-marked-line.crayon-bottom {
63
+ border-bottom-style: solid !important;
64
+ }
65
+ .crayon-theme-809finest .crayon-marked-num.crayon-bottom {
66
+ border-bottom-style: solid !important;
67
+ }
68
+ .crayon-theme-809finest .crayon-info {
69
+ border-bottom-width: 1px !important;
70
+ border-bottom-style: solid !important;
71
+ color: #ffffff !important;
72
+ border-bottom-color: #BB0A1C !important;
73
+ background: #162E53 !important;
74
+ }
75
+ .crayon-theme-809finest .crayon-toolbar {
76
+ background: #BB0A1C !important;
77
+ border-bottom-width: 1px !important;
78
+ border-bottom-color: #BB0A1C !important;
79
+ border-bottom-style: solid !important;
80
+ }
81
+ .crayon-theme-809finest .crayon-toolbar > div {
82
+ float: left !important;
83
+ }
84
+ .crayon-theme-809finest .crayon-toolbar .crayon-tools {
85
+ float: right !important;
86
+ }
87
+ .crayon-theme-809finest .crayon-title {
88
+ color: #ffffff !important;
89
+ }
90
+ .crayon-theme-809finest .crayon-language {
91
+ color: #ffffff !important;
92
+ }
93
+ .crayon-theme-809finest a.crayon-button {
94
+ background-color: transparent !important;
95
+ }
96
+ .crayon-theme-809finest a.crayon-button:hover {
97
+ background-color: #dddddd !important;
98
+ color: #666;
99
+ }
100
+ .crayon-theme-809finest a.crayon-button.crayon-pressed:hover {
101
+ background-color: #eeeeee !important;
102
+ color: #666;
103
+ }
104
+ .crayon-theme-809finest a.crayon-button.crayon-pressed {
105
+ background-color: #dddddd !important;
106
+ color: #FFF;
107
+ }
108
+ .crayon-theme-809finest a.crayon-button.crayon-pressed:active {
109
+ background-color: #dddddd !important;
110
+ color: #FFF;
111
+ }
112
+ .crayon-theme-809finest a.crayon-button:active {
113
+ background-color: #dddddd !important;
114
+ color: #FFF;
115
+ }
116
+ .crayon-theme-809finest .crayon-pre .crayon-c {
117
+ color: #ffffff !important;
118
+ }
119
+ .crayon-theme-809finest .crayon-pre .crayon-s {
120
+ color: #ffffff !important;
121
+ }
122
+ .crayon-theme-809finest .crayon-pre .crayon-p {
123
+ color: #ffffff !important;
124
+ }
125
+ .crayon-theme-809finest .crayon-pre .crayon-ta {
126
+ color: #e91e1e !important;
127
+ }
128
+ .crayon-theme-809finest .crayon-pre .crayon-k {
129
+ color: #006699 !important;
130
+ }
131
+ .crayon-theme-809finest .crayon-pre .crayon-st {
132
+ color: #BB0A1C !important;
133
+ font-weight: bold !important;
134
+ }
135
+ .crayon-theme-809finest .crayon-pre .crayon-r {
136
+ color: #BB0A1C !important;
137
+ }
138
+ .crayon-theme-809finest .crayon-pre .crayon-t {
139
+ color: #BB0A1C !important;
140
+ }
141
+ .crayon-theme-809finest .crayon-pre .crayon-m {
142
+ color: #BB0A1C !important;
143
+ }
144
+ .crayon-theme-809finest .crayon-pre .crayon-i {
145
+ color: #ffffff !important;
146
+ }
147
+ .crayon-theme-809finest .crayon-pre .crayon-e {
148
+ color: #BB0A1C !important;
149
+ }
150
+ .crayon-theme-809finest .crayon-pre .crayon-v {
151
+ color: #ffffff !important;
152
+ }
153
+ .crayon-theme-809finest .crayon-pre .crayon-cn {
154
+ color: #ffffff !important;
155
+ }
156
+ .crayon-theme-809finest .crayon-pre .crayon-o {
157
+ color: #ffffff !important;
158
+ }
159
+ .crayon-theme-809finest .crayon-pre .crayon-sy {
160
+ color: #ffffff !important;
161
+ }
162
+ .crayon-theme-809finest .crayon-pre .crayon-n {
163
+ color: #ffffff !important;
164
+ font-style: italic !important;
165
+ }
166
+ .crayon-theme-809finest .crayon-pre .crayon-f {
167
+ color: #112442 !important;
168
+ }
169
+ .crayon-theme-809finest .crayon-pre .crayon-h {
170
+ color: #BB0A1C !important;
171
+ }
themes/coda-special-board/coda-special-board.css ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Coda Special Board
3
+ Description: Dark and elegant.
4
+ Version: 1.4
5
+ Author: Simone Ottaviano
6
+ URL: http://www.refuseall.it
7
+ */
8
+ .crayon-theme-coda-special-board {
9
+ text-shadow: none !important;
10
+ color: #fff;
11
+ background: #2d2d2d !important;
12
+ border-style: solid !important;
13
+ border-width: 1px !important;
14
+ border-color: #333 !important;
15
+ }
16
+ .crayon-theme-coda-special-board .crayon-code {
17
+ background: #2d2d2d !important;
18
+ }
19
+ .crayon-theme-coda-special-board-inline {
20
+ background: #333 !important;
21
+ border-style: solid !important;
22
+ border-width: 1px !important;
23
+ border-color: #333 !important;
24
+ }
25
+ .crayon-theme-coda-special-board span {
26
+ color: #999 !important;
27
+ }
28
+ .crayon-theme-coda-special-board .crayon-table .crayon-nums {
29
+ color: #333 !important;
30
+ background: #e0e0e0 !important;
31
+ border-right-style: solid !important;
32
+ border-right-width: 1px !important;
33
+ border-right-color: #333 !important;
34
+ }
35
+ .crayon-theme-coda-special-board .crayon-code::selection {
36
+ background: #ddeeff !important;
37
+ color: #316ba5 !important;
38
+ }
39
+ .crayon-theme-coda-special-board .crayon-code *::selection {
40
+ background: #ddeeff !important;
41
+ color: #316ba5 !important;
42
+ }
43
+ .crayon-theme-coda-special-board::selection {
44
+ background: transparent !important;
45
+ }
46
+ .crayon-theme-coda-special-board .crayon-toolbar::selection {
47
+ background: transparent !important;
48
+ }
49
+ .crayon-theme-coda-special-board .crayon-toolbar *::selection {
50
+ background: transparent !important;
51
+ }
52
+ .crayon-theme-coda-special-board .crayon-info::selection {
53
+ background: transparent !important;
54
+ }
55
+ .crayon-theme-coda-special-board .crayon-info *::selection {
56
+ background: transparent !important;
57
+ }
58
+ .crayon-theme-coda-special-board .crayon-nums::selection {
59
+ background: transparent !important;
60
+ }
61
+ .crayon-theme-coda-special-board .crayon-nums *::selection {
62
+ background: transparent !important;
63
+ }
64
+ .crayon-theme-coda-special-board .crayon-striped-line {
65
+ background: #343434 !important;
66
+ border-width: 1px !important;
67
+ border-color: #171717 !important;
68
+ }
69
+ .crayon-theme-coda-special-board .crayon-striped-num {
70
+ background: #aaa !important;
71
+ color: #555 !important;
72
+ border-width: 1px !important;
73
+ border-color: #CCC !important;
74
+ }
75
+ .crayon-theme-coda-special-board .crayon-marked-line {
76
+ background: #484844 !important;
77
+ border-width: 1px !important;
78
+ border-color: #222 !important;
79
+ }
80
+ .crayon-theme-coda-special-board .crayon-marked-num {
81
+ color: #555 !important;
82
+ background: #bbb !important;
83
+ border-width: 1px !important;
84
+ border-color: #777 !important;
85
+ }
86
+ .crayon-theme-coda-special-board .crayon-marked-line.crayon-striped-line {
87
+ background: #51514d !important;
88
+ }
89
+ .crayon-theme-coda-special-board .crayon-marked-num.crayon-striped-num {
90
+ background: #ccc !important;
91
+ color: #888 !important;
92
+ }
93
+ .crayon-theme-coda-special-board .crayon-marked-line.crayon-top {
94
+ border-top-style: solid !important;
95
+ }
96
+ .crayon-theme-coda-special-board .crayon-marked-num.crayon-top {
97
+ border-top-style: solid !important;
98
+ }
99
+ .crayon-theme-coda-special-board .crayon-marked-line.crayon-bottom {
100
+ border-bottom-style: solid !important;
101
+ }
102
+ .crayon-theme-coda-special-board .crayon-marked-num.crayon-bottom {
103
+ border-bottom-style: solid !important;
104
+ }
105
+ .crayon-theme-coda-special-board .crayon-info {
106
+ background: #faf9d7 !important;
107
+ color: #7e7d34 !important;
108
+ border-bottom-style: solid !important;
109
+ border-bottom-width: 1px !important;
110
+ border-bottom-color: #b1af5e !important;
111
+ }
112
+ .crayon-theme-coda-special-board .crayon-toolbar {
113
+ background: #b2b2b2 !important;
114
+ border-bottom-style: solid !important;
115
+ border-bottom-width: 1px !important;
116
+ border-bottom-color: #666 !important;
117
+ }
118
+ .crayon-theme-coda-special-board .crayon-toolbar > div {
119
+ float: left !important;
120
+ }
121
+ .crayon-theme-coda-special-board .crayon-toolbar .crayon-tools {
122
+ float: right !important;
123
+ }
124
+ .crayon-theme-coda-special-board .crayon-title {
125
+ color: #333 !important;
126
+ }
127
+ .crayon-theme-coda-special-board .crayon-language {
128
+ color: #666 !important;
129
+ }
130
+ .crayon-theme-coda-special-board .crayon-toolbar .crayon-mixed-highlight {
131
+ background-position: -24px center;
132
+ }
133
+ .crayon-theme-coda-special-board .crayon-button {
134
+ background-color: transparent !important;
135
+ }
136
+ .crayon-theme-coda-special-board .crayon-button:hover {
137
+ background-color: #ccc !important;
138
+ color: #666;
139
+ }
140
+ .crayon-theme-coda-special-board .crayon-button.crayon-pressed:hover {
141
+ background-color: #ccc !important;
142
+ color: #666;
143
+ }
144
+ .crayon-theme-coda-special-board .crayon-button.crayon-pressed {
145
+ background-color: #999 !important;
146
+ color: #ccc;
147
+ }
148
+ .crayon-theme-coda-special-board .crayon-button.crayon-pressed:active {
149
+ background-color: #999 !important;
150
+ color: #ccc;
151
+ }
152
+ .crayon-theme-coda-special-board .crayon-button:active {
153
+ background-color: #999 !important;
154
+ color: #ccc;
155
+ }
156
+ .crayon-theme-coda-special-board .crayon-pre .crayon-c {
157
+ color: #797979 !important;
158
+ }
159
+ .crayon-theme-coda-special-board .crayon-pre .crayon-p {
160
+ color: #a19ba2 !important;
161
+ }
162
+ .crayon-theme-coda-special-board .crayon-pre .crayon-s {
163
+ color: #b2cb79 !important;
164
+ }
165
+ .crayon-theme-coda-special-board .crayon-pre .crayon-k {
166
+ color: #fecf84 !important;
167
+ }
168
+ .crayon-theme-coda-special-board .crayon-pre .crayon-st {
169
+ color: #fecf84 !important;
170
+ }
171
+ .crayon-theme-coda-special-board .crayon-pre .crayon-r {
172
+ color: #fecf84 !important;
173
+ }
174
+ .crayon-theme-coda-special-board .crayon-pre .crayon-t {
175
+ color: #fecf84 !important;
176
+ }
177
+ .crayon-theme-coda-special-board .crayon-pre .crayon-m {
178
+ color: #d58a45 !important;
179
+ }
180
+ .crayon-theme-coda-special-board .crayon-pre .crayon-ta {
181
+ color: #AAA !important;
182
+ }
183
+ .crayon-theme-coda-special-board .crayon-pre .crayon-i {
184
+ color: #d58a45 !important;
185
+ }
186
+ .crayon-theme-coda-special-board .crayon-pre .crayon-v {
187
+ color: #dadafe !important;
188
+ }
189
+ .crayon-theme-coda-special-board .crayon-pre .crayon-e {
190
+ color: #b1758c !important;
191
+ }
192
+ .crayon-theme-coda-special-board .crayon-pre .crayon-cn {
193
+ color: #80aac6 !important;
194
+ }
195
+ .crayon-theme-coda-special-board .crayon-pre .crayon-o {
196
+ color: #c2be23 !important;
197
+ }
198
+ .crayon-theme-coda-special-board .crayon-pre .crayon-h {
199
+ color: #82adc9 !important;
200
+ }
201
+ .crayon-theme-coda-special-board .crayon-pre .crayon-sy {
202
+ color: #ffffff !important;
203
+ }
204
+ .crayon-theme-coda-special-board .crayon-pre .crayon-n {
205
+ color: #726e73 !important;
206
+ font-style: italic !important;
207
+ }
208
+ .crayon-theme-coda-special-board .crayon-pre .crayon-f {
209
+ color: #595959 !important;
210
+ }
211
+ .crayon-theme-coda-special-board .crayon-pre {
212
+ color: #ffffff !important;
213
+ }
themes/dark-terminal/dark-terminal.css ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Dark Terminal
3
+ Description: Black-on-white, no highlighting, useful for terminal sessions
4
+ Version: 1.0
5
+ Author: Dimiter Naydenov
6
+ URL: http://blog.naydenov.net/
7
+ */
8
+ .crayon-theme-dark-terminal {
9
+ border-width: 1px !important;
10
+ border-color: #000000 !important;
11
+ border-style: solid !important;
12
+ text-shadow: none !important;
13
+ background: #000000 !important;
14
+ }
15
+ .crayon-theme-dark-terminal-inline {
16
+ border-width: 1px !important;
17
+ border-color: #000000 !important;
18
+ border-style: solid !important;
19
+ background: #000103 !important;
20
+ }
21
+ .crayon-theme-dark-terminal .crayon-table .crayon-nums {
22
+ background: #000000 !important;
23
+ color: #000000 !important;
24
+ border-right-width: 1px !important;
25
+ border-right-color: #ffffff !important;
26
+ }
27
+ .crayon-theme-dark-terminal *::selection {
28
+ background: transparent !important;
29
+ }
30
+ .crayon-theme-dark-terminal .crayon-code *::selection {
31
+ background: #ddeeff !important;
32
+ color: #316ba5 !important;
33
+ }
34
+ .crayon-theme-dark-terminal .crayon-striped-line {
35
+ background: #000000 !important;
36
+ }
37
+ .crayon-theme-dark-terminal .crayon-striped-num {
38
+ background: #000000 !important;
39
+ color: #000000 !important;
40
+ }
41
+ .crayon-theme-dark-terminal .crayon-marked-line {
42
+ background: #3b3b3b !important;
43
+ border-width: 1px !important;
44
+ border-color: #3a3a47 !important;
45
+ }
46
+ .crayon-theme-dark-terminal .crayon-marked-num {
47
+ color: #000000 !important;
48
+ background: #000000 !important;
49
+ border-width: 1px !important;
50
+ border-color: #000000 !important;
51
+ }
52
+ .crayon-theme-dark-terminal .crayon-marked-line.crayon-striped-line {
53
+ background: #3b3b3b !important;
54
+ }
55
+ .crayon-theme-dark-terminal .crayon-marked-num.crayon-striped-num {
56
+ background: #000000 !important;
57
+ color: #000000 !important;
58
+ }
59
+ .crayon-theme-dark-terminal .crayon-marked-line.crayon-top {
60
+ border-top-style: solid !important;
61
+ }
62
+ .crayon-theme-dark-terminal .crayon-marked-num.crayon-top {
63
+ border-top-style: solid !important;
64
+ }
65
+ .crayon-theme-dark-terminal .crayon-marked-line.crayon-bottom {
66
+ border-bottom-style: solid !important;
67
+ }
68
+ .crayon-theme-dark-terminal .crayon-marked-num.crayon-bottom {
69
+ border-bottom-style: solid !important;
70
+ }
71
+ .crayon-theme-dark-terminal .crayon-info {
72
+ background: #faf9d7 !important;
73
+ border-bottom-width: 1px !important;
74
+ border-bottom-color: #b1af5e !important;
75
+ border-bottom-style: solid !important;
76
+ color: #7e7d34 !important;
77
+ }
78
+ .crayon-theme-dark-terminal .crayon-toolbar {
79
+ background: #8d8c8c !important;
80
+ border-bottom-width: 1px !important;
81
+ border-bottom-color: #2e2e2e !important;
82
+ border-bottom-style: solid !important;
83
+ }
84
+ .crayon-theme-dark-terminal .crayon-toolbar > div {
85
+ float: left !important;
86
+ }
87
+ .crayon-theme-dark-terminal .crayon-toolbar .crayon-tools {
88
+ float: right !important;
89
+ }
90
+ .crayon-theme-dark-terminal .crayon-title {
91
+ color: #2a2a2a !important;
92
+ }
93
+ .crayon-theme-dark-terminal .crayon-language {
94
+ color: #494949 !important;
95
+ }
96
+ .crayon-theme-dark-terminal .crayon-button {
97
+ }
98
+ .crayon-theme-dark-terminal .crayon-button:hover {
99
+ background-color: #bcbcbc !important;
100
+ color: #666;
101
+ }
102
+ .crayon-theme-dark-terminal .crayon-button.crayon-pressed:hover {
103
+ background-color: #bcbcbc !important;
104
+ color: #666;
105
+ }
106
+ .crayon-theme-dark-terminal .crayon-button.crayon-pressed {
107
+ background-color: #626262 !important;
108
+ color: #FFF;
109
+ }
110
+ .crayon-theme-dark-terminal .crayon-button.crayon-pressed:active {
111
+ background-color: #626262 !important;
112
+ color: #FFF;
113
+ }
114
+ .crayon-theme-dark-terminal .crayon-button:active {
115
+ background-color: #bcbcbc !important;
116
+ color: #FFF;
117
+ }
118
+ .crayon-theme-dark-terminal .crayon-pre .crayon-c {
119
+ color: #ffffff !important;
120
+ }
121
+ .crayon-theme-dark-terminal .crayon-pre .crayon-s {
122
+ color: #ffffff !important;
123
+ }
124
+ .crayon-theme-dark-terminal .crayon-pre .crayon-p {
125
+ color: #ffffff !important;
126
+ }
127
+ .crayon-theme-dark-terminal .crayon-pre .crayon-ta {
128
+ color: #ffffff !important;
129
+ }
130
+ .crayon-theme-dark-terminal .crayon-pre .crayon-k {
131
+ color: #ffffff !important;
132
+ }
133
+ .crayon-theme-dark-terminal .crayon-pre .crayon-st {
134
+ color: #ffffff !important;
135
+ }
136
+ .crayon-theme-dark-terminal .crayon-pre .crayon-r {
137
+ color: #ffffff !important;
138
+ }
139
+ .crayon-theme-dark-terminal .crayon-pre .crayon-t {
140
+ color: #ffffff !important;
141
+ }
142
+ .crayon-theme-dark-terminal .crayon-pre .crayon-m {
143
+ color: #ffffff !important;
144
+ }
145
+ .crayon-theme-dark-terminal .crayon-pre .crayon-i {
146
+ color: #ffffff !important;
147
+ }
148
+ .crayon-theme-dark-terminal .crayon-pre .crayon-e {
149
+ color: #ffffff !important;
150
+ }
151
+ .crayon-theme-dark-terminal .crayon-pre .crayon-v {
152
+ color: #ffffff !important;
153
+ }
154
+ .crayon-theme-dark-terminal .crayon-pre .crayon-cn {
155
+ color: #ffffff !important;
156
+ }
157
+ .crayon-theme-dark-terminal .crayon-pre .crayon-o {
158
+ color: #ffffff !important;
159
+ }
160
+ .crayon-theme-dark-terminal .crayon-pre .crayon-sy {
161
+ color: #ffffff !important;
162
+ }
163
+ .crayon-theme-dark-terminal .crayon-pre .crayon-n {
164
+ color: #ffffff !important;
165
+ font-style: italic !important;
166
+ }
167
+ .crayon-theme-dark-terminal .crayon-pre .crayon-f {
168
+ color: #ffffff !important;
169
+ }
170
+ .crayon-theme-dark-terminal .crayon-pre .crayon-h {
171
+ color: #ffffff !important;
172
+ }
173
+ .crayon-theme-dark-terminal .crayon-pre {
174
+ color: #ffffff !important;
175
+ }
themes/light-abite/light-abite.css ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Light Abite
3
+ Description: Light color.
4
+ Version: 1.0
5
+ Author: Jacques Marais
6
+ URL: http://jacquesmarais.tk/
7
+ */
8
+ .crayon-theme-light-abite {
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
+ border-color: #dedede !important;
16
+ }
17
+ .crayon-theme-light-abite .crayon-toolbar {
18
+ background-color: #eee !important;
19
+ border-bottom-style: solid !important;
20
+ border-bottom-width: 1px !important;
21
+ border-bottom-color: #dedede !important;
22
+ }
23
+ .crayon-theme-light-abite .crayon-toolbar .crayon-language {
24
+ font-size: 80% !important;
25
+ color: #666 !important;
26
+ }
27
+ .crayon-theme-light-abite .crayon-toolbar .crayon-title {
28
+ font-size: 80% !important;
29
+ color: #666 !important;
30
+ }
31
+ .crayon-theme-light-abite .crayon-table .crayon-nums {
32
+ background-color: #eee !important;
33
+ }
34
+ .crayon-theme-light-abite .crayon-table .crayon-nums-content {
35
+ padding-top: 5px !important;
36
+ padding-bottom: 3px !important;
37
+ }
38
+ .crayon-theme-light-abite .crayon-table .crayon-num {
39
+ min-width: 1.2em !important;
40
+ text-align: right !important;
41
+ color: #aaa !important;
42
+ border-right-style: solid !important;
43
+ border-right-width: 1px !important;
44
+ border-right-color: #dedede !important;
45
+ }
46
+ .crayon-theme-light-abite .crayon-pre {
47
+ padding-top: 5px !important;
48
+ padding-bottom: 3px !important;
49
+ }
50
+ .crayon-theme-light-abite .crayon-marked-line {
51
+ background: #fffee2 !important;
52
+ }
53
+ .crayon-theme-light-abite .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-light-abite .crayon-pre .crayon-c {
60
+ color: #999 !important;
61
+ font-style: italic !important;
62
+ }
63
+ .crayon-theme-light-abite .crayon-pre .crayon-s {
64
+ color: #1fbbdd !important;
65
+ }
66
+ .crayon-theme-light-abite .crayon-pre .crayon-p {
67
+ color: #28c94a !important;
68
+ }
69
+ .crayon-theme-light-abite .crayon-pre .crayon-ta {
70
+ color: #FF0000 !important;
71
+ }
72
+ .crayon-theme-light-abite .crayon-pre .crayon-k {
73
+ color: teal !important;
74
+ }
75
+ .crayon-theme-light-abite .crayon-pre .crayon-st {
76
+ color: #3c9cc9 !important;
77
+ font-weight: bold !important;
78
+ }
79
+ .crayon-theme-light-abite .crayon-pre .crayon-r {
80
+ color: #2bafaa !important;
81
+ font-weight: bold !important;
82
+ }
83
+ .crayon-theme-light-abite .crayon-pre .crayon-t {
84
+ color: #800080 !important;
85
+ font-weight: bold !important;
86
+ }
87
+ .crayon-theme-light-abite .crayon-pre .crayon-m {
88
+ color: #800080 !important;
89
+ }
90
+ .crayon-theme-light-abite .crayon-pre .crayon-i {
91
+ color: #66cb76 !important;
92
+ }
93
+ .crayon-theme-light-abite .crayon-pre .crayon-e {
94
+ color: teal !important;
95
+ }
96
+ .crayon-theme-light-abite .crayon-pre .crayon-v {
97
+ color: #002D7A !important;
98
+ }
99
+ .crayon-theme-light-abite .crayon-pre .crayon-cn {
100
+ color: #099 !important;
101
+ }
102
+ .crayon-theme-light-abite .crayon-pre .crayon-o {
103
+ color: #006fe0 !important;
104
+ }
105
+ .crayon-theme-light-abite .crayon-pre .crayon-sy {
106
+ color: #333 !important;
107
+ }
108
+ .crayon-theme-light-abite .crayon-pre .crayon-n {
109
+ color: #666 !important;
110
+ font-style: italic !important;
111
+ }
112
+ .crayon-theme-light-abite .crayon-pre .crayon-f {
113
+ color: #999 !important;
114
+ }
115
+ .crayon-theme-light-abite .crayon-pre .crayon-h {
116
+ color: #006fe0 !important;
117
+ }
themes/obsidian/obsidian.css ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Obsidian
3
+ Description: JetBrains PhpStorm Obsidian
4
+ Version: 1
5
+ Author: Rakcheev Artem
6
+ URL: http://rakcheev.ru/
7
+ */
8
+ .crayon-theme-obsidian {
9
+ text-shadow: none !important;
10
+ color: #fff;
11
+ background: #283033 !important;
12
+ border-style: solid !important;
13
+ border-width: 1px !important;
14
+ border-color: #283033 !important;
15
+ }
16
+ .crayon-theme-obsidian .crayon-code {
17
+ background: #2d2d2d !important;
18
+ }
19
+ .crayon-theme-obsidian-inline {
20
+ background: #283033 !important;
21
+ border-style: solid !important;
22
+ border-width: 1px !important;
23
+ border-color: #283033 !important;
24
+ }
25
+ .crayon-theme-obsidian span {
26
+ color: #999 !important;
27
+ }
28
+ .crayon-theme-obsidian .crayon-table .crayon-nums {
29
+ color: #81969a !important;
30
+ background: #3f4b4e !important;
31
+ border-right-style: dotted !important;
32
+ border-right-width: 1px !important;
33
+ border-right-color: #808080 !important;
34
+ }
35
+ .crayon-theme-obsidian .crayon-code::selection {
36
+ background: #ddeeff !important;
37
+ color: #316ba5 !important;
38
+ }
39
+ .crayon-theme-obsidian .crayon-code *::selection {
40
+ background: #ddeeff !important;
41
+ color: #316ba5 !important;
42
+ }
43
+ .crayon-theme-obsidian::selection {
44
+ background: transparent !important;
45
+ }
46
+ .crayon-theme-obsidian .crayon-toolbar::selection {
47
+ background: transparent !important;
48
+ }
49
+ .crayon-theme-obsidian .crayon-toolbar *::selection {
50
+ background: transparent !important;
51
+ }
52
+ .crayon-theme-obsidian .crayon-info::selection {
53
+ background: transparent !important;
54
+ }
55
+ .crayon-theme-obsidian .crayon-info *::selection {
56
+ background: transparent !important;
57
+ }
58
+ .crayon-theme-obsidian .crayon-nums::selection {
59
+ background: transparent !important;
60
+ }
61
+ .crayon-theme-obsidian .crayon-nums *::selection {
62
+ background: transparent !important;
63
+ }
64
+ .crayon-theme-obsidian .crayon-striped-line {
65
+ background: #283033 !important;
66
+ border-width: 1px !important;
67
+ border-color: #171717 !important;
68
+ }
69
+ .crayon-theme-obsidian .crayon-striped-num {
70
+ background: #3f4b4e !important;
71
+ color: #81969a !important;
72
+ border-width: 1px !important;
73
+ border-color: #CCC !important;
74
+ }
75
+ .crayon-theme-obsidian .crayon-marked-line {
76
+ background: #2f393c !important;
77
+ border-width: 1px !important;
78
+ border-color: #2f393c !important;
79
+ }
80
+ .crayon-theme-obsidian .crayon-marked-num {
81
+ color: #81969a !important;
82
+ background: #2f393c !important;
83
+ border-width: 1px !important;
84
+ border-color: #2f393c !important;
85
+ }
86
+ .crayon-theme-obsidian .crayon-marked-line.crayon-striped-line {
87
+ background: #2f393c !important;
88
+ }
89
+ .crayon-theme-obsidian .crayon-marked-num.crayon-striped-num {
90
+ background: #2f393c !important;
91
+ color: #81969a !important;
92
+ }
93
+ .crayon-theme-obsidian .crayon-marked-line.crayon-top {
94
+ border-top-style: solid !important;
95
+ }
96
+ .crayon-theme-obsidian .crayon-marked-num.crayon-top {
97
+ border-top-style: solid !important;
98
+ }
99
+ .crayon-theme-obsidian .crayon-marked-line.crayon-bottom {
100
+ border-bottom-style: solid !important;
101
+ }
102
+ .crayon-theme-obsidian .crayon-marked-num.crayon-bottom {
103
+ border-bottom-style: solid !important;
104
+ }
105
+ .crayon-theme-obsidian .crayon-info {
106
+ background: #faf9d7 !important;
107
+ color: #7e7d34 !important;
108
+ border-bottom-style: solid !important;
109
+ border-bottom-width: 1px !important;
110
+ border-bottom-color: #b1af5e !important;
111
+ }
112
+ .crayon-theme-obsidian .crayon-toolbar {
113
+ background: #3c3f41 !important;
114
+ border-bottom-style: solid !important;
115
+ border-bottom-width: 1px !important;
116
+ border-bottom-color: #595959 !important;
117
+ }
118
+ .crayon-theme-obsidian .crayon-toolbar > div {
119
+ float: left !important;
120
+ }
121
+ .crayon-theme-obsidian .crayon-toolbar .crayon-tools {
122
+ float: right !important;
123
+ }
124
+ .crayon-theme-obsidian .crayon-title {
125
+ color: #bbbbbb !important;
126
+ }
127
+ .crayon-theme-obsidian .crayon-language {
128
+ color: #bbbbbb !important;
129
+ }
130
+ .crayon-theme-obsidian .crayon-toolbar .crayon-mixed-highlight {
131
+ background-position: -24px center;
132
+ }
133
+ .crayon-theme-obsidian .crayon-button {
134
+ background-color: transparent !important;
135
+ }
136
+ .crayon-theme-obsidian .crayon-button:hover {
137
+ background-color: #3c3f41 !important;
138
+ color: #666;
139
+ }
140
+ .crayon-theme-obsidian .crayon-button.crayon-pressed:hover {
141
+ background-color: #505050 !important;
142
+ color: #666;
143
+ }
144
+ .crayon-theme-obsidian .crayon-button.crayon-pressed {
145
+ background-color: #505050 !important;
146
+ color: #ccc;
147
+ }
148
+ .crayon-theme-obsidian .crayon-button.crayon-pressed:active {
149
+ background-color: #505050 !important;
150
+ color: #ccc;
151
+ }
152
+ .crayon-theme-obsidian .crayon-button:active {
153
+ background-color: #505050 !important;
154
+ color: #ccc;
155
+ }
156
+ .crayon-theme-obsidian .crayon-pre .crayon-c {
157
+ color: #66747b !important;
158
+ }
159
+ .crayon-theme-obsidian .crayon-pre .crayon-p {
160
+ color: #a19ba2 !important;
161
+ }
162
+ .crayon-theme-obsidian .crayon-pre .crayon-s {
163
+ color: #ec7600 !important;
164
+ }
165
+ .crayon-theme-obsidian .crayon-pre .crayon-k {
166
+ color: #93c763 !important;
167
+ }
168
+ .crayon-theme-obsidian .crayon-pre .crayon-st {
169
+ color: #93c763 !important;
170
+ }
171
+ .crayon-theme-obsidian .crayon-pre .crayon-r {
172
+ color: #93c763 !important;
173
+ }
174
+ .crayon-theme-obsidian .crayon-pre .crayon-t {
175
+ color: #93c763 !important;
176
+ }
177
+ .crayon-theme-obsidian .crayon-pre .crayon-m {
178
+ color: #93c763 !important;
179
+ }
180
+ .crayon-theme-obsidian .crayon-pre .crayon-ta {
181
+ color: #aaaaaa !important;
182
+ }
183
+ .crayon-theme-obsidian .crayon-pre .crayon-i {
184
+ color: #d955c1 !important;
185
+ }
186
+ .crayon-theme-obsidian .crayon-pre .crayon-v {
187
+ color: #ffffff !important;
188
+ }
189
+ .crayon-theme-obsidian .crayon-pre .crayon-e {
190
+ color: #678cb1 !important;
191
+ }
192
+ .crayon-theme-obsidian .crayon-pre .crayon-cn {
193
+ color: #ffcd22 !important;
194
+ }
195
+ .crayon-theme-obsidian .crayon-pre .crayon-o {
196
+ color: #ffffff !important;
197
+ }
198
+ .crayon-theme-obsidian .crayon-pre .crayon-h {
199
+ color: #ac99ab !important;
200
+ }
201
+ .crayon-theme-obsidian .crayon-pre .crayon-sy {
202
+ color: #ffffff !important;
203
+ }
204
+ .crayon-theme-obsidian .crayon-pre .crayon-n {
205
+ color: #726e73 !important;
206
+ font-style: italic !important;
207
+ }
208
+ .crayon-theme-obsidian .crayon-pre .crayon-f {
209
+ color: #d8bfd8 !important;
210
+ }
211
+ .crayon-theme-obsidian .crayon-pre {
212
+ color: #ffffff !important;
213
+ }
themes/powershell-ise/powershell-ise.css ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: PowerShell ISE
3
+ Description: PowerShell ISE Light Editor Theme Replica
4
+ Version: 0.2
5
+ Author: Devin Lanei
6
+ Url: http://itfiend.com/
7
+ */
8
+ .crayon-theme-powershell-ise {
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-powershell-ise-inline {
16
+ border-width: 1px !important;
17
+ border-color: #ddd !important;
18
+ border-style: solid !important;
19
+ background: #ffffff !important;
20
+ }
21
+ .crayon-theme-powershell-ise .crayon-table .crayon-nums {
22
+ background: #cccccc !important;
23
+ color: #8ac1f8 !important;
24
+ }
25
+ .crayon-theme-powershell-ise *::selection {
26
+ background: transparent !important;
27
+ }
28
+ .crayon-theme-powershell-ise .crayon-code *::selection {
29
+ background: #ddeeff !important;
30
+ color: #316ba5 !important;
31
+ }
32
+ .crayon-theme-powershell-ise .crayon-striped-line {
33
+ background: #ffffff !important;
34
+ }
35
+ .crayon-theme-powershell-ise .crayon-striped-num {
36
+ background: #ffffff !important;
37
+ color: #8ac1f8 !important;
38
+ }
39
+ .crayon-theme-powershell-ise .crayon-marked-line {
40
+ background: #d7dfe3 !important;
41
+ border-width: 1px !important;
42
+ border-color: #ffffff !important;
43
+ }
44
+ .crayon-theme-powershell-ise .crayon-marked-num {
45
+ color: #8ac1f8 !important;
46
+ background: #ffffff !important;
47
+ border-width: 1px !important;
48
+ border-color: #ffffff !important;
49
+ }
50
+ .crayon-theme-powershell-ise .crayon-marked-line.crayon-striped-line {
51
+ background: #ffffff !important;
52
+ }
53
+ .crayon-theme-powershell-ise .crayon-marked-num.crayon-striped-num {
54
+ background: #ffffff !important;
55
+ color: #8ac1f8 !important;
56
+ }
57
+ .crayon-theme-powershell-ise .crayon-marked-line.crayon-top {
58
+ border-top-style: solid !important;
59
+ }
60
+ .crayon-theme-powershell-ise .crayon-marked-num.crayon-top {
61
+ border-top-style: solid !important;
62
+ }
63
+ .crayon-theme-powershell-ise .crayon-marked-line.crayon-bottom {
64
+ border-bottom-style: solid !important;
65
+ }
66
+ .crayon-theme-powershell-ise .crayon-marked-num.crayon-bottom {
67
+ border-bottom-style: solid !important;
68
+ }
69
+ .crayon-theme-powershell-ise .crayon-info {
70
+ background: #faf9d7 !important;
71
+ border-bottom-width: 1px !important;
72
+ border-bottom-color: #b1af5e !important;
73
+ border-bottom-style: solid !important;
74
+ color: #7e7d34 !important;
75
+ }
76
+ .crayon-theme-powershell-ise .crayon-toolbar {
77
+ background: #DDD !important;
78
+ border-bottom-width: 1px !important;
79
+ border-bottom-color: #BBB !important;
80
+ border-bottom-style: solid !important;
81
+ }
82
+ .crayon-theme-powershell-ise .crayon-toolbar > div {
83
+ float: left !important;
84
+ }
85
+ .crayon-theme-powershell-ise .crayon-toolbar .crayon-tools {
86
+ float: right !important;
87
+ }
88
+ .crayon-theme-powershell-ise .crayon-title {
89
+ color: #333 !important;
90
+ }
91
+ .crayon-theme-powershell-ise .crayon-language {
92
+ color: #999 !important;
93
+ }
94
+ .crayon-theme-powershell-ise a.crayon-button {
95
+ background-color: transparent !important;
96
+ }
97
+ .crayon-theme-powershell-ise a.crayon-button:hover {
98
+ background-color: #EEE !important;
99
+ color: #666;
100
+ }
101
+ .crayon-theme-powershell-ise a.crayon-button.crayon-pressed:hover {
102
+ background-color: #EEE !important;
103
+ color: #666;
104
+ }
105
+ .crayon-theme-powershell-ise a.crayon-button.crayon-pressed {
106
+ background-color: #BCBCBC !important;
107
+ color: #FFF;
108
+ }
109
+ .crayon-theme-powershell-ise a.crayon-button.crayon-pressed:active {
110
+ background-color: #BCBCBC !important;
111
+ color: #FFF;
112
+ }
113
+ .crayon-theme-powershell-ise a.crayon-button:active {
114
+ background-color: #BCBCBC !important;
115
+ color: #FFF;
116
+ }
117
+ .crayon-theme-powershell-ise .crayon-pre .crayon-c {
118
+ color: #006400 !important;//comments
119
+ }
120
+ .crayon-theme-powershell-ise .crayon-pre .crayon-s {
121
+ color: #8b0000 !important;//strings
122
+ }
123
+ .crayon-theme-powershell-ise .crayon-pre .crayon-p {
124
+ color: #b85c00 !important;
125
+ }
126
+ .crayon-theme-powershell-ise .crayon-pre .crayon-ta {
127
+ color: #FF0000 !important;
128
+ }
129
+ .crayon-theme-powershell-ise .crayon-pre .crayon-k {
130
+ color: #3215eb !important;
131
+ }
132
+ .crayon-theme-powershell-ise .crayon-pre .crayon-st {
133
+ color: #00008b !important;//foreach
134
+ }
135
+ .crayon-theme-powershell-ise .crayon-pre .crayon-r {
136
+ color: #0000ff !important;//command
137
+ }
138
+ .crayon-theme-powershell-ise .crayon-pre .crayon-t {
139
+ color: #000080 !important;//switch in (), commands in []
140
+ }
141
+ .crayon-theme-powershell-ise .crayon-pre .crayon-m {
142
+ color: #3215eb !important;
143
+ }
144
+ .crayon-theme-powershell-ise .crayon-pre .crayon-i {
145
+ color: #8a2be2 !important;//switch values, ().statements, [System.Math]:
146
+ }
147
+ .crayon-theme-powershell-ise .crayon-pre .crayon-e {
148
+ color: #000000 !important;//adds/round/Pow, occasionally backtick switch text, affects backticked properties
149
+ }
150
+ .crayon-theme-powershell-ise .crayon-pre .crayon-v {
151
+ color: #ff4500 !important;//variables
152
+ }
153
+ .crayon-theme-powershell-ise .crayon-pre .crayon-cn {
154
+ color: #000080 !important;//Crayon Constant, assigned to Switches
155
+ }
156
+ .crayon-theme-powershell-ise .crayon-pre .crayon-o {
157
+ color: #a9a9a9 !important;
158
+ }
159
+ .crayon-theme-powershell-ise .crayon-pre .crayon-sy {
160
+ color: #333 !important;
161
+ }
162
+ .crayon-theme-powershell-ise .crayon-pre .crayon-n {
163
+ color: #666 !important;
164
+ font-style: italic !important;
165
+ }
166
+ .crayon-theme-powershell-ise .crayon-pre .crayon-f {
167
+ color: #ffffff !important;
168
+ }
169
+ .crayon-theme-powershell-ise .crayon-pre .crayon-h {
170
+ color: #006fe0 !important;
171
+ }
172
+ .crayon-theme-powershell-ise .crayon-pre {
173
+ color: #800080 !important;
174
+ }
themes/pspad/pspad.css ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Pspad
3
+ Description: Version: 1.0
4
+ Author: Robert Faßl
5
+ URL: http://www.robertfassl.de
6
+ */
7
+ .crayon-theme-pspad {
8
+ border-width: 1px !important;
9
+ text-shadow: none !important;
10
+ background: #fdfdfd !important;
11
+ border-color: #ddd !important;
12
+ border-style: solid !important;
13
+ }
14
+ .crayon-theme-pspad-inline {
15
+ border-width: 1px !important;
16
+ border-color: #ddd !important;
17
+ background: #f9f9f9 !important;
18
+ border-style: solid !important;
19
+ }
20
+ .crayon-theme-pspad .crayon-table .crayon-nums {
21
+ background: #fdfdfd !important;
22
+ color: #d4d4d4 !important;
23
+ }
24
+ .crayon-theme-pspad *::selection {
25
+ background: transparent !important;
26
+ }
27
+ .crayon-theme-pspad .crayon-code *::selection {
28
+ background: #ddeeff !important;
29
+ color: #316ba5 !important;
30
+ }
31
+ .crayon-theme-pspad .crayon-striped-line {
32
+ background: #f5f5f5 !important;
33
+ }
34
+ .crayon-theme-pspad .crayon-striped-num {
35
+ background: #fafafa !important;
36
+ color: #d4d4d4 !important;
37
+ }
38
+ .crayon-theme-pspad .crayon-marked-line {
39
+ border-width: 1px !important;
40
+ border-color: #f9f9f9 !important;
41
+ background: #f0f0f0 !important;
42
+ }
43
+ .crayon-theme-pspad .crayon-marked-num {
44
+ color: #d4d4d4 !important;
45
+ background: #f0f0f0 !important;
46
+ border-width: 1px !important;
47
+ border-color: #f9f9f9 !important;
48
+ }
49
+ .crayon-theme-pspad .crayon-marked-line.crayon-striped-line {
50
+ background: #ececec !important;
51
+ }
52
+ .crayon-theme-pspad .crayon-marked-num.crayon-striped-num {
53
+ background: #ececec !important;
54
+ color: #d4d4d4 !important;
55
+ }
56
+ .crayon-theme-pspad .crayon-marked-line.crayon-top {
57
+ border-top-style: solid !important;
58
+ }
59
+ .crayon-theme-pspad .crayon-marked-num.crayon-top {
60
+ border-top-style: solid !important;
61
+ }
62
+ .crayon-theme-pspad .crayon-marked-line.crayon-bottom {
63
+ border-bottom-style: solid !important;
64
+ }
65
+ .crayon-theme-pspad .crayon-marked-num.crayon-bottom {
66
+ border-bottom-style: solid !important;
67
+ }
68
+ .crayon-theme-pspad .crayon-info {
69
+ background: #faf9d7 !important;
70
+ border-bottom-width: 1px !important;
71
+ border-bottom-color: #b1af5e !important;
72
+ border-bottom-style: solid !important;
73
+ color: #7e7d34 !important;
74
+ }
75
+ .crayon-theme-pspad .crayon-toolbar {
76
+ background: #eeeeee !important;
77
+ border-bottom-width: 1px !important;
78
+ border-bottom-color: #dddddd !important;
79
+ border-bottom-style: solid !important;
80
+ }
81
+ .crayon-theme-pspad .crayon-toolbar > div {
82
+ float: left !important;
83
+ }
84
+ .crayon-theme-pspad .crayon-toolbar .crayon-tools {
85
+ float: right !important;
86
+ }
87
+ .crayon-theme-pspad .crayon-title {
88
+ color: #999999 !important;
89
+ }
90
+ .crayon-theme-pspad .crayon-language {
91
+ color: #999 !important;
92
+ }
93
+ .crayon-theme-pspad a.crayon-button {
94
+ background-color: transparent !important;
95
+ }
96
+ .crayon-theme-pspad a.crayon-button:hover {
97
+ background-color: #dddddd !important;
98
+ color: #666;
99
+ }
100
+ .crayon-theme-pspad a.crayon-button.crayon-pressed:hover {
101
+ background-color: #eeeeee !important;
102
+ color: #666;
103
+ }
104
+ .crayon-theme-pspad a.crayon-button.crayon-pressed {
105
+ background-color: #dddddd !important;
106
+ color: #FFF;
107
+ }
108
+ .crayon-theme-pspad a.crayon-button.crayon-pressed:active {
109
+ background-color: #dddddd !important;
110
+ color: #FFF;
111
+ }
112
+ .crayon-theme-pspad a.crayon-button:active {
113
+ background-color: #dddddd !important;
114
+ color: #FFF;
115
+ }
116
+ .crayon-theme-pspad .crayon-pre .crayon-c {
117
+ color: #808080 !important;
118
+ }
119
+ .crayon-theme-pspad .crayon-pre .crayon-s {
120
+ color: #008000 !important;
121
+ }
122
+ .crayon-theme-pspad .crayon-pre .crayon-p {
123
+ color: #ff0000 !important;
124
+ }
125
+ .crayon-theme-pspad .crayon-pre .crayon-ta {
126
+ color: #000000 !important;
127
+ }
128
+ .crayon-theme-pspad .crayon-pre .crayon-k {
129
+ color: #000000 !important;
130
+ }
131
+ .crayon-theme-pspad .crayon-pre .crayon-st {
132
+ color: #000000 !important;
133
+ }
134
+ .crayon-theme-pspad .crayon-pre .crayon-r {
135
+ color: #ff0000 !important;
136
+ }
137
+ .crayon-theme-pspad .crayon-pre .crayon-t {
138
+ color: #000000 !important;
139
+ }
140
+ .crayon-theme-pspad .crayon-pre .crayon-m {
141
+ color: #000000 !important;
142
+ }
143
+ .crayon-theme-pspad .crayon-pre .crayon-i {
144
+ color: #222222 !important;
145
+ }
146
+ .crayon-theme-pspad .crayon-pre .crayon-e {
147
+ color: #000000 !important;
148
+ }
149
+ .crayon-theme-pspad .crayon-pre .crayon-v {
150
+ color: #0000ff !important;
151
+ }
152
+ .crayon-theme-pspad .crayon-pre .crayon-cn {
153
+ color: #222222 !important;
154
+ }
155
+ .crayon-theme-pspad .crayon-pre .crayon-o {
156
+ color: #222222 !important;
157
+ }
158
+ .crayon-theme-pspad .crayon-pre .crayon-sy {
159
+ color: #333 !important;
160
+ }
161
+ .crayon-theme-pspad .crayon-pre .crayon-n {
162
+ color: #666 !important;
163
+ font-style: italic !important;
164
+ }
165
+ .crayon-theme-pspad .crayon-pre .crayon-f {
166
+ color: #ff0000 !important;
167
+ }
168
+ .crayon-theme-pspad .crayon-pre .crayon-h {
169
+ color: #000000 !important;
170
+ }
171
+ .crayon-theme-pspad .crayon-pre {
172
+ color: #ffffff !important;
173
+ }
174
+ .crayon-theme-pspad .crayon-button {
175
+ }
themes/shell-default/shell-default.css ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Shell Default
3
+ Description: Based on Tomorrow-Theme by ChrisKempson
4
+ Version: 1.1
5
+ Author: AmFearLiath
6
+ URL: http://amfearliath.tk
7
+ */
8
+ .crayon-theme-shell-default {
9
+ border-width: 1px !important;
10
+ border-color: #000000 !important;
11
+ border-style: solid !important;
12
+ text-shadow: none !important;
13
+ background: #272727 !important;
14
+ }
15
+ .crayon-theme-shell-default-inline {
16
+ border-width: 1px !important;
17
+ border-color: #000000 !important;
18
+ border-style: solid !important;
19
+ background: #000103 !important;
20
+ }
21
+ .crayon-theme-shell-default .crayon-table .crayon-nums {
22
+ background: #000000 !important;
23
+ color: #898989 !important;
24
+ border-right-width: 1px !important;
25
+ }
26
+ .crayon-theme-shell-default *::selection {
27
+ background: transparent !important;
28
+ }
29
+ .crayon-theme-shell-default .crayon-code *::selection {
30
+ background: #ddeeff !important;
31
+ color: #316ba5 !important;
32
+ }
33
+ .crayon-theme-shell-default .crayon-striped-line {
34
+ background: #000000 !important;
35
+ }
36
+ .crayon-theme-shell-default .crayon-striped-num {
37
+ background: #1d1d1d !important;
38
+ color: #979797 !important;
39
+ }
40
+ .crayon-theme-shell-default .crayon-marked-line {
41
+ background: #3b3b3b !important;
42
+ border-width: 1px !important;
43
+ border-color: #3a3a47 !important;
44
+ }
45
+ .crayon-theme-shell-default .crayon-marked-num {
46
+ color: #9e9e9e !important;
47
+ background: #010000 !important;
48
+ border-width: 1px !important;
49
+ border-color: #595959 !important;
50
+ }
51
+ .crayon-theme-shell-default .crayon-marked-line.crayon-striped-line {
52
+ background: #000000 !important;
53
+ }
54
+ .crayon-theme-shell-default .crayon-marked-num.crayon-striped-num {
55
+ background: #3b3b3b !important;
56
+ color: #9e9e9e !important;
57
+ }
58
+ .crayon-theme-shell-default .crayon-marked-line.crayon-top {
59
+ border-top-style: solid !important;
60
+ }
61
+ .crayon-theme-shell-default .crayon-marked-num.crayon-top {
62
+ border-top-style: solid !important;
63
+ }
64
+ .crayon-theme-shell-default .crayon-marked-line.crayon-bottom {
65
+ border-bottom-style: solid !important;
66
+ }
67
+ .crayon-theme-shell-default .crayon-marked-num.crayon-bottom {
68
+ border-bottom-style: solid !important;
69
+ }
70
+ .crayon-theme-shell-default .crayon-info {
71
+ background: #faf9d7 !important;
72
+ border-bottom-width: 1px !important;
73
+ border-bottom-color: #b1af5e !important;
74
+ border-bottom-style: solid !important;
75
+ color: #7e7d34 !important;
76
+ }
77
+ .crayon-theme-shell-default .crayon-toolbar {
78
+ background: #8d8c8c !important;
79
+ border-bottom-width: 1px !important;
80
+ border-bottom-color: #2e2e2e !important;
81
+ border-bottom-style: solid !important;
82
+ }
83
+ .crayon-theme-shell-default .crayon-toolbar > div {
84
+ float: left !important;
85
+ }
86
+ .crayon-theme-shell-default .crayon-toolbar .crayon-tools {
87
+ float: right !important;
88
+ }
89
+ .crayon-theme-shell-default .crayon-title {
90
+ color: #2a2a2a !important;
91
+ }
92
+ .crayon-theme-shell-default .crayon-language {
93
+ color: #494949 !important;
94
+ }
95
+ .crayon-theme-shell-default .crayon-button {
96
+ }
97
+ .crayon-theme-shell-default .crayon-button:hover {
98
+ background-color: #bcbcbc !important;
99
+ color: #666;
100
+ }
101
+ .crayon-theme-shell-default .crayon-button.crayon-pressed:hover {
102
+ background-color: #bcbcbc !important;
103
+ color: #666;
104
+ }
105
+ .crayon-theme-shell-default .crayon-button.crayon-pressed {
106
+ background-color: #626262 !important;
107
+ color: #FFF;
108
+ }
109
+ .crayon-theme-shell-default .crayon-button.crayon-pressed:active {
110
+ background-color: #626262 !important;
111
+ color: #FFF;
112
+ }
113
+ .crayon-theme-shell-default .crayon-button:active {
114
+ background-color: #bcbcbc !important;
115
+ color: #FFF;
116
+ }
117
+ .crayon-theme-shell-default .crayon-pre .crayon-c {
118
+ color: #ff8c00 !important;
119
+ }
120
+ .crayon-theme-shell-default .crayon-pre .crayon-s {
121
+ color: #b2af75 !important;
122
+ }
123
+ .crayon-theme-shell-default .crayon-pre .crayon-p {
124
+ color: #b85c00 !important;
125
+ }
126
+ .crayon-theme-shell-default .crayon-pre .crayon-ta {
127
+ color: #e79663 !important;
128
+ }
129
+ .crayon-theme-shell-default .crayon-pre .crayon-k {
130
+ color: #dc2f2f !important;
131
+ }
132
+ .crayon-theme-shell-default .crayon-pre .crayon-st {
133
+ color: #0185d7 !important;
134
+ }
135
+ .crayon-theme-shell-default .crayon-pre .crayon-r {
136
+ color: #92afc1 !important;
137
+ }
138
+ .crayon-theme-shell-default .crayon-pre .crayon-t {
139
+ color: #bba7c5 !important;
140
+ }
141
+ .crayon-theme-shell-default .crayon-pre .crayon-m {
142
+ color: #bba7c5 !important;
143
+ }
144
+ .crayon-theme-shell-default .crayon-pre .crayon-i {
145
+ color: #c7c7c7 !important;
146
+ }
147
+ .crayon-theme-shell-default .crayon-pre .crayon-e {
148
+ color: #c29734 !important;
149
+ }
150
+ .crayon-theme-shell-default .crayon-pre .crayon-v {
151
+ color: #abfc04 !important;
152
+ }
153
+ .crayon-theme-shell-default .crayon-pre .crayon-cn {
154
+ color: #eb5b04 !important;
155
+ }
156
+ .crayon-theme-shell-default .crayon-pre .crayon-o {
157
+ color: #ffd700 !important;
158
+ }
159
+ .crayon-theme-shell-default .crayon-pre .crayon-sy {
160
+ color: #c9d2d1 !important;
161
+ }
162
+ .crayon-theme-shell-default .crayon-pre .crayon-n {
163
+ color: #fffff0 !important;
164
+ font-style: italic !important;
165
+ }
166
+ .crayon-theme-shell-default .crayon-pre .crayon-f {
167
+ color: #999 !important;
168
+ }
169
+ .crayon-theme-shell-default .crayon-pre .crayon-h {
170
+ color: #006fe0 !important;
171
+ }
172
+ .crayon-theme-shell-default .crayon-pre {
173
+ color: #ffffff !important;
174
+ }
themes/sublime-text/sublime-text.css ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Sublime Text
3
+ Description: Clean, crisp and colorful.
4
+ Version: 1.1
5
+ Author: khosite
6
+ URL: http://khosite.com/
7
+ */
8
+ .crayon-theme-sublime-text {
9
+ border-width: 1px !important;
10
+ border-color: #999 !important;
11
+ border-style: solid !important;
12
+ text-shadow: none !important;
13
+ background: #272822 !important;
14
+ }
15
+ .crayon-theme-sublime-text-inline {
16
+ border-width: 1px !important;
17
+ border-color: #ddd !important;
18
+ border-style: solid !important;
19
+ background: #fafafa !important;
20
+ }
21
+ .crayon-theme-sublime-text .crayon-table .crayon-nums {
22
+ background: #272822 !important;
23
+ color: #868686 !important;
24
+ }
25
+ .crayon-theme-sublime-text *::selection {
26
+ background: transparent !important;
27
+ }
28
+ .crayon-theme-sublime-text .crayon-code *::selection {
29
+ background: #ddeeff !important;
30
+ color: #316ba5 !important;
31
+ }
32
+ .crayon-theme-sublime-text .crayon-striped-line {
33
+ background: #272822 !important;
34
+ }
35
+ .crayon-theme-sublime-text .crayon-striped-num {
36
+ background: #32322a !important;
37
+ color: #868686 !important;
38
+ }
39
+ .crayon-theme-sublime-text .crayon-marked-line {
40
+ background: #272822 !important;
41
+ border-width: 1px !important;
42
+ border-color: #272822 !important;
43
+ }
44
+ .crayon-theme-sublime-text .crayon-marked-num {
45
+ color: #868686 !important;
46
+ background: #272822 !important;
47
+ border-width: 1px !important;
48
+ border-color: #272822 !important;
49
+ }
50
+ .crayon-theme-sublime-text .crayon-marked-line.crayon-striped-line {
51
+ background: #272822 !important;
52
+ }
53
+ .crayon-theme-sublime-text .crayon-marked-num.crayon-striped-num {
54
+ background: #272822 !important;
55
+ color: #868686 !important;
56
+ }
57
+ .crayon-theme-sublime-text .crayon-marked-line.crayon-top {
58
+ border-top-style: solid !important;
59
+ }
60
+ .crayon-theme-sublime-text .crayon-marked-num.crayon-top {
61
+ border-top-style: solid !important;
62
+ }
63
+ .crayon-theme-sublime-text .crayon-marked-line.crayon-bottom {
64
+ border-bottom-style: solid !important;
65
+ }
66
+ .crayon-theme-sublime-text .crayon-marked-num.crayon-bottom {
67
+ border-bottom-style: solid !important;
68
+ }
69
+ .crayon-theme-sublime-text .crayon-info {
70
+ background: #272822 !important;
71
+ border-bottom-width: 1px !important;
72
+ border-bottom-color: #e6db5d !important;
73
+ border-bottom-style: solid !important;
74
+ color: #e6db5d !important;
75
+ }
76
+ .crayon-theme-sublime-text .crayon-toolbar {
77
+ background: #DDD !important;
78
+ border-bottom-width: 1px !important;
79
+ border-bottom-color: #BBB !important;
80
+ border-bottom-style: solid !important;
81
+ }
82
+ .crayon-theme-sublime-text .crayon-toolbar > div {
83
+ float: left !important;
84
+ }
85
+ .crayon-theme-sublime-text .crayon-toolbar .crayon-tools {
86
+ float: right !important;
87
+ }
88
+ .crayon-theme-sublime-text .crayon-title {
89
+ color: #333 !important;
90
+ }
91
+ .crayon-theme-sublime-text .crayon-language {
92
+ color: #999 !important;
93
+ }
94
+ .crayon-theme-sublime-text .crayon-button {
95
+ background-color: #DDD !important;
96
+ }
97
+ .crayon-theme-sublime-text .crayon-button:hover {
98
+ background-color: #EEE !important;
99
+ color: #666;
100
+ }
101
+ .crayon-theme-sublime-text .crayon-button.crayon-pressed:hover {
102
+ background-color: #EEE !important;
103
+ color: #666;
104
+ }
105
+ .crayon-theme-sublime-text .crayon-button.crayon-pressed {
106
+ background-color: #BCBCBC !important;
107
+ color: #FFF;
108
+ }
109
+ .crayon-theme-sublime-text .crayon-button.crayon-pressed:active {
110
+ background-color: #BCBCBC !important;
111
+ color: #FFF;
112
+ }
113
+ .crayon-theme-sublime-text .crayon-button:active {
114
+ background-color: #BCBCBC !important;
115
+ color: #FFF;
116
+ }
117
+ .crayon-theme-sublime-text .crayon-pre .crayon-c {
118
+ color: #75715e !important;
119
+ }
120
+ .crayon-theme-sublime-text .crayon-pre .crayon-s {
121
+ color: #e6db5d !important;
122
+ }
123
+ .crayon-theme-sublime-text .crayon-pre .crayon-p {
124
+ color: #b85c00 !important;
125
+ }
126
+ .crayon-theme-sublime-text .crayon-pre .crayon-ta {
127
+ color: #f8f8f2 !important;
128
+ }
129
+ .crayon-theme-sublime-text .crayon-pre .crayon-k {
130
+ color: #66d9ef !important;
131
+ }
132
+ .crayon-theme-sublime-text .crayon-pre .crayon-st {
133
+ color: #66d9ef !important;
134
+ }
135
+ .crayon-theme-sublime-text .crayon-pre .crayon-r {
136
+ color: #66d9ef !important;
137
+ }
138
+ .crayon-theme-sublime-text .crayon-pre .crayon-t {
139
+ color: #a6e22d !important;
140
+ }
141
+ .crayon-theme-sublime-text .crayon-pre .crayon-m {
142
+ color: #66d9ef !important;
143
+ }
144
+ .crayon-theme-sublime-text .crayon-pre .crayon-i {
145
+ color: #f8f8f2 !important;
146
+ }
147
+ .crayon-theme-sublime-text .crayon-pre .crayon-e {
148
+ color: #f92650 !important;
149
+ }
150
+ .crayon-theme-sublime-text .crayon-pre .crayon-v {
151
+ color: #f8f8f2 !important;
152
+ }
153
+ .crayon-theme-sublime-text .crayon-pre .crayon-cn {
154
+ color: #ae81ff !important;
155
+ }
156
+ .crayon-theme-sublime-text .crayon-pre .crayon-o {
157
+ color: #f8f8f2 !important;
158
+ }
159
+ .crayon-theme-sublime-text .crayon-pre .crayon-sy {
160
+ color: #f8f8f2 !important;
161
+ }
162
+ .crayon-theme-sublime-text .crayon-pre .crayon-n {
163
+ color: #666 !important;
164
+ font-style: italic !important;
165
+ }
166
+ .crayon-theme-sublime-text .crayon-pre .crayon-f {
167
+ color: #999 !important;
168
+ }
169
+ .crayon-theme-sublime-text .crayon-pre .crayon-h {
170
+ color: #006fe0 !important;
171
+ }
172
+ .crayon-theme-sublime-text .crayon-pre {
173
+ color: #f8f8f2 !important;
174
+ }
themes/visual-assist/visual-assist.css ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Name: Visual Assist
3
+ Description:
4
+ Version: 1.0
5
+ Author: Brady Reuter
6
+ URL:
7
+ */
8
+ .crayon-theme-visual-assist {
9
+ border-width: 1px !important;
10
+ border-color: #303030 !important;
11
+ text-shadow: none !important;
12
+ background: #303030 !important;
13
+ }
14
+ .crayon-theme-visual-assist-inline {
15
+ border-width: 1px !important;
16
+ border-color: #000000 !important;
17
+ background: #303030 !important;
18
+ }
19
+ .crayon-theme-visual-assist .crayon-table .crayon-nums {
20
+ background: #303030 !important;
21
+ color: #c2c2c2 !important;
22
+ border-right-width: 1px !important;
23
+ border-right-color: #8c8d8f !important;
24
+ border-right-style: solid !important;
25
+ }
26
+ .crayon-theme-visual-assist *::selection {
27
+ background: transparent !important;
28
+ }
29
+ .crayon-theme-visual-assist .crayon-code *::selection {
30
+ background: #ddeeff !important;
31
+ color: #316ba5 !important;
32
+ }
33
+ .crayon-theme-visual-assist .crayon-striped-line {
34
+ background: #353535 !important;
35
+ }
36
+ .crayon-theme-visual-assist .crayon-striped-num {
37
+ background: #353535 !important;
38
+ color: #c2c2c2 !important;
39
+ }
40
+ .crayon-theme-visual-assist .crayon-marked-line {
41
+ background: #323232 !important;
42
+ border-width: 1px !important;
43
+ border-color: #595959 !important;
44
+ }
45
+ .crayon-theme-visual-assist .crayon-marked-num {
46
+ color: #ffffff !important;
47
+ background: #363636 !important;
48
+ border-width: 1px !important;
49
+ border-color: #595959 !important;
50
+ }
51
+ .crayon-theme-visual-assist .crayon-marked-line.crayon-striped-line {
52
+ background: #343941 !important;
53
+ }
54
+ .crayon-theme-visual-assist .crayon-marked-num.crayon-striped-num {
55
+ background: #222222 !important;
56
+ color: #ffffff !important;
57
+ }
58
+ .crayon-theme-visual-assist .crayon-marked-line.crayon-top {
59
+ }
60
+ .crayon-theme-visual-assist .crayon-marked-num.crayon-top {
61
+ }
62
+ .crayon-theme-visual-assist .crayon-marked-line.crayon-bottom {
63
+ }
64
+ .crayon-theme-visual-assist .crayon-marked-num.crayon-bottom {
65
+ }
66
+ .crayon-theme-visual-assist .crayon-info {
67
+ background: #333333 !important;
68
+ border-bottom-width: 1px !important;
69
+ border-bottom-color: #b1af5e !important;
70
+ color: #eeeeee !important;
71
+ border-bottom-style: solid !important;
72
+ }
73
+ .crayon-theme-visual-assist .crayon-toolbar {
74
+ background: #2a2a2a !important;
75
+ border-bottom-width: 1px !important;
76
+ border-bottom-color: #2e2e2e !important;
77
+ border-bottom-style: solid !important;
78
+ }
79
+ .crayon-theme-visual-assist .crayon-toolbar > div {
80
+ float: left !important;
81
+ }
82
+ .crayon-theme-visual-assist .crayon-toolbar .crayon-tools {
83
+ float: right !important;
84
+ }
85
+ .crayon-theme-visual-assist .crayon-title {
86
+ color: #d3d3d3 !important;
87
+ }
88
+ .crayon-theme-visual-assist .crayon-language {
89
+ color: #d3d3d3 !important;
90
+ }
91
+ .crayon-theme-visual-assist .crayon-button {
92
+ }
93
+ .crayon-theme-visual-assist .crayon-button:hover {
94
+ background-color: #d3d3d3 !important;
95
+ color: #666;
96
+ }
97
+ .crayon-theme-visual-assist .crayon-button.crayon-pressed:hover {
98
+ background-color: #bcbcbc !important;
99
+ color: #666;
100
+ }
101
+ .crayon-theme-visual-assist .crayon-button.crayon-pressed {
102
+ background-color: #626262 !important;
103
+ color: #FFF;
104
+ }
105
+ .crayon-theme-visual-assist .crayon-button.crayon-pressed:active {
106
+ background-color: #626262 !important;
107
+ color: #FFF;
108
+ }
109
+ .crayon-theme-visual-assist .crayon-button:active {
110
+ background-color: #bcbcbc !important;
111
+ color: #FFF;
112
+ }
113
+ .crayon-theme-visual-assist .crayon-pre .crayon-c {
114
+ color: #57A64A !important;
115
+ font-style: italic !important;
116
+ }
117
+ .crayon-theme-visual-assist .crayon-pre .crayon-s {
118
+ color: #D69D85 !important;
119
+ }
120
+ .crayon-theme-visual-assist .crayon-pre .crayon-p {
121
+ color: #9B9B8B !important;
122
+ }
123
+ .crayon-theme-visual-assist .crayon-pre .crayon-ta {
124
+ color: #d35a5a !important;
125
+ }
126
+ .crayon-theme-visual-assist .crayon-pre .crayon-k {
127
+ color: #569CD6 !important;
128
+ }
129
+ .crayon-theme-visual-assist .crayon-pre .crayon-st {
130
+ color: #20b0da !important;
131
+ }
132
+ .crayon-theme-visual-assist .crayon-pre .crayon-r {
133
+ color: #f4bb15 !important;
134
+ }
135
+ .crayon-theme-visual-assist .crayon-pre .crayon-t {
136
+ color: #f4bb15 !important;
137
+ }
138
+ .crayon-theme-visual-assist .crayon-pre .crayon-m {
139
+ color: #569CD6 !important;
140
+ }
141
+ .crayon-theme-visual-assist .crayon-pre .crayon-i {
142
+ color: #dcdcdc !important;
143
+ }
144
+ .crayon-theme-visual-assist .crayon-pre .crayon-e {
145
+ color: #ff8000 !important;
146
+ }
147
+ .crayon-theme-visual-assist .crayon-pre .crayon-v {
148
+ color: #bdb76b !important;
149
+ }
150
+ .crayon-theme-visual-assist .crayon-pre .crayon-cn {
151
+ color: #e7a37a !important;
152
+ }
153
+ .crayon-theme-visual-assist .crayon-pre .crayon-o {
154
+ color: #DADADA !important;
155
+ }
156
+ .crayon-theme-visual-assist .crayon-pre .crayon-sy {
157
+ color: #D8D8D8 !important;
158
+ }
159
+ .crayon-theme-visual-assist .crayon-pre .crayon-n {
160
+ color: #666 !important;
161
+ font-style: italic !important;
162
+ }
163
+ .crayon-theme-visual-assist .crayon-pre .crayon-f {
164
+ color: #999999 !important;
165
+ }
166
+ .crayon-theme-visual-assist .crayon-pre .crayon-h {
167
+ color: #006fe0 !important;
168
+ }
169
+ .crayon-theme-visual-assist .crayon-pre {
170
+ color: #ffffff !important;
171
+ }
172
+ .crayon-theme-visual-assist {
173
+ background: #323232 !important;
174
+ }
trans/crayon-syntax-highlighter-fa_IR.mo ADDED
Binary file
trans/crayon-syntax-highlighter-fa_IR.po ADDED
@@ -0,0 +1,1322 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "Language: fa_IR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=1; plural=0;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
17
+ "crayon__;crayon_n;crayon_e\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Textdomain-Support: yes\n"
20
+ "X-Generator: Poedit 1.5.4\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 "Press %s to Copy, %s to Paste"
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 ""
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
+ #, fuzzy
502
+ msgid "State"
503
+ msgstr "ثابت"
504
+
505
+ #: ../crayon_settings_wp.class.php:841
506
+ msgid ""
507
+ "Languages that have the same extension as their name don't need to "
508
+ "explicitly map extensions."
509
+ msgstr ""
510
+
511
+ #: ../crayon_settings_wp.class.php:843
512
+ msgid "No languages could be found."
513
+ msgstr "هیچ زبانی یافت نشد."
514
+
515
+ #: ../crayon_settings_wp.class.php:850
516
+ msgid "Show Crayon Posts"
517
+ msgstr "نمایش کد های موجود در مطالب"
518
+
519
+ #: ../crayon_settings_wp.class.php:851
520
+ msgid "Refresh"
521
+ msgstr "بارگذاری مجدد"
522
+
523
+ # @ crayon-syntax-highlighter
524
+ #: ../crayon_settings_wp.class.php:877
525
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:193
526
+ #: ../util/theme-editor/theme_editor.php:314
527
+ msgid "Title"
528
+ msgstr "عنوان"
529
+
530
+ #: ../crayon_settings_wp.class.php:877
531
+ msgid "Posted"
532
+ msgstr "ارسال شده در"
533
+
534
+ #: ../crayon_settings_wp.class.php:877
535
+ msgid "Modifed"
536
+ msgstr "آخرین ویرایش در"
537
+
538
+ # @ crayon-syntax-highlighter
539
+ #: ../crayon_settings_wp.class.php:877
540
+ msgid "Contains Legacy Tags?"
541
+ msgstr ""
542
+
543
+ #: ../crayon_settings_wp.class.php:992
544
+ msgid "Edit"
545
+ msgstr "ویرایش"
546
+
547
+ #: ../crayon_settings_wp.class.php:992
548
+ #: ../util/theme-editor/theme_editor.php:199
549
+ msgid "Duplicate"
550
+ msgstr "کپی کردن"
551
+
552
+ #: ../crayon_settings_wp.class.php:992
553
+ msgid "Submit"
554
+ msgstr "ارسال"
555
+
556
+ #: ../crayon_settings_wp.class.php:993
557
+ #: ../util/theme-editor/theme_editor.php:196
558
+ msgid "Delete"
559
+ msgstr "حذف"
560
+
561
+ # @ crayon-syntax-highlighter
562
+ #: ../crayon_settings_wp.class.php:995
563
+ msgid "Loading..."
564
+ msgstr "در حال بارگذاری ..."
565
+
566
+ #: ../crayon_settings_wp.class.php:997
567
+ msgid "Duplicate a Stock Theme into a User Theme to allow editing."
568
+ msgstr ""
569
+ "برای ویرایش قالب شاخص ، آن را به عنوان قالب تعریف شده توسط کاربر کپی کنید ."
570
+
571
+ # @ crayon-syntax-highlighter
572
+ #: ../crayon_settings_wp.class.php:1008
573
+ #, php-format
574
+ msgid ""
575
+ "Change the %1$sfallback language%2$s to change the sample code or %3$schange "
576
+ "it manually%4$s. Lines 5-7 are marked."
577
+ msgstr ""
578
+ "%1$sزبان پیشفرض%2$s را برای تغییر زبان نمونه کد تغییر دهید یا %3$sآن را دستی "
579
+ "تغییر دهید %4$s . خطوط 5-7 علامت گذاری شده اند ."
580
+
581
+ # @ crayon-syntax-highlighter
582
+ #: ../crayon_settings_wp.class.php:1015
583
+ msgid "Enable Live Preview"
584
+ msgstr "فعال بودن پیشنمایش زنده"
585
+
586
+ # @ crayon-syntax-highlighter
587
+ #: ../crayon_settings_wp.class.php:1017
588
+ msgid "Enqueue themes in the header (more efficient)."
589
+ msgstr "قرار دادن قالب در نوبت در هدر (کارآمد تر)"
590
+
591
+ # @ crayon-syntax-highlighter
592
+ #: ../crayon_settings_wp.class.php:1020
593
+ #, php-format
594
+ msgid "The selected theme with id %s could not be loaded"
595
+ msgstr "قالب انتخاب شده با نام %s نمیتواند بارگذاری شود "
596
+
597
+ # @ crayon-syntax-highlighter
598
+ #: ../crayon_settings_wp.class.php:1035
599
+ msgid "Custom Font Size"
600
+ msgstr "استفاده از سایز فونت دلخواه"
601
+
602
+ # @ crayon-syntax-highlighter
603
+ #: ../crayon_settings_wp.class.php:1037
604
+ msgid "Line Height"
605
+ msgstr "ارتفاع خطوط"
606
+
607
+ # @ crayon-syntax-highlighter
608
+ #: ../crayon_settings_wp.class.php:1042
609
+ #, php-format
610
+ msgid "The selected font with id %s could not be loaded"
611
+ msgstr "فونت انتخاب شده با نام %s نمیتواند بارگذاری شود "
612
+
613
+ # @ crayon-syntax-highlighter
614
+ #: ../crayon_settings_wp.class.php:1048
615
+ msgid "Enqueue fonts in the header (more efficient)."
616
+ msgstr "قرار دادن فونت در نوبت در هدر (کارآمد تر)"
617
+
618
+ # @ crayon-syntax-highlighter
619
+ #: ../crayon_settings_wp.class.php:1053
620
+ msgid "Enable plain code view and display"
621
+ msgstr "فعال کردن نمایش ساده کد هنگام :"
622
+
623
+ # @ crayon-syntax-highlighter
624
+ #: ../crayon_settings_wp.class.php:1056
625
+ msgid "Enable plain code toggling"
626
+ msgstr "فعال بودن کلید نمایش ساده/هایلایت "
627
+
628
+ # @ crayon-syntax-highlighter
629
+ #: ../crayon_settings_wp.class.php:1057
630
+ msgid "Show the plain code by default"
631
+ msgstr "نمایش ساده کد ها (بدون هایلایت) بصورت پیشفرض"
632
+
633
+ # @ crayon-syntax-highlighter
634
+ #: ../crayon_settings_wp.class.php:1058
635
+ msgid "Enable code copy/paste"
636
+ msgstr "فعال بودن کپی/پیست کردن کد ها"
637
+
638
+ # @ crayon-syntax-highlighter
639
+ #: ../crayon_settings_wp.class.php:1060
640
+ msgid "Enable opening code in a window"
641
+ msgstr "فعال بودن باز شدن در پنجره جدید"
642
+
643
+ # @ crayon-syntax-highlighter
644
+ #: ../crayon_settings_wp.class.php:1061
645
+ msgid "Always display scrollbars"
646
+ msgstr "همیشه اسکرول بار نمایش داده شود"
647
+
648
+ #: ../crayon_settings_wp.class.php:1062
649
+ msgid "Minimize code"
650
+ msgstr "کمینه کردن کد"
651
+
652
+ #: ../crayon_settings_wp.class.php:1063
653
+ msgid "Expand code beyond page borders on mouseover"
654
+ msgstr ""
655
+
656
+ #: ../crayon_settings_wp.class.php:1064
657
+ msgid "Enable code expanding toggling when possible"
658
+ msgstr ""
659
+
660
+ # @ crayon-syntax-highlighter
661
+ #: ../crayon_settings_wp.class.php:1067
662
+ msgid "Decode HTML entities in code"
663
+ msgstr "رمز گشایی عناصر html در کد ها"
664
+
665
+ # @ crayon-syntax-highlighter
666
+ #: ../crayon_settings_wp.class.php:1069
667
+ msgid "Decode HTML entities in attributes"
668
+ msgstr "رمز گشایی عناصر html در صفات (attributes)"
669
+
670
+ # @ crayon-syntax-highlighter
671
+ #: ../crayon_settings_wp.class.php:1071
672
+ msgid "Remove whitespace surrounding the shortcode content"
673
+ msgstr ""
674
+
675
+ #: ../crayon_settings_wp.class.php:1073
676
+ msgid "Remove &lt;code&gt; tags surrounding the shortcode content"
677
+ msgstr ""
678
+
679
+ # @ crayon-syntax-highlighter
680
+ #: ../crayon_settings_wp.class.php:1074
681
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
682
+ msgstr "اجازه برجسته کردن چند زبان در یک کد با استفاده از تگ ها"
683
+
684
+ # @ crayon-syntax-highlighter
685
+ #: ../crayon_settings_wp.class.php:1076
686
+ msgid "Show Mixed Language Icon (+)"
687
+ msgstr ""
688
+
689
+ # @ crayon-syntax-highlighter
690
+ #: ../crayon_settings_wp.class.php:1078
691
+ msgid "Tab size in spaces"
692
+ msgstr ""
693
+
694
+ #: ../crayon_settings_wp.class.php:1080
695
+ msgid "Blank lines before code:"
696
+ msgstr "خط سفید قبل از کد:"
697
+
698
+ #: ../crayon_settings_wp.class.php:1082
699
+ msgid "Blank lines after code:"
700
+ msgstr "خط سفید بعد از کد:"
701
+
702
+ # @ crayon-syntax-highlighter
703
+ #: ../crayon_settings_wp.class.php:1087
704
+ msgid "Capture Inline Tags"
705
+ msgstr ""
706
+
707
+ # @ crayon-syntax-highlighter
708
+ #: ../crayon_settings_wp.class.php:1088
709
+ msgid "Wrap Inline Tags"
710
+ msgstr ""
711
+
712
+ # @ crayon-syntax-highlighter
713
+ #: ../crayon_settings_wp.class.php:1089
714
+ msgid "Capture &lt;code&gt; as"
715
+ msgstr ""
716
+
717
+ # @ crayon-syntax-highlighter
718
+ #: ../crayon_settings_wp.class.php:1093
719
+ msgid "Capture `backquotes` as &lt;code&gt;"
720
+ msgstr ""
721
+
722
+ # @ crayon-syntax-highlighter
723
+ #: ../crayon_settings_wp.class.php:1094
724
+ msgid "Capture &lt;pre&gt; tags as Crayons"
725
+ msgstr ""
726
+
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
+
734
+ # @ crayon-syntax-highlighter
735
+ #: ../crayon_settings_wp.class.php:1097
736
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
737
+ msgstr ""
738
+ "در نظر گرفتن شورتکات های [php][/php] به عنوان کد (فعال بودن [php][/php] )"
739
+
740
+ # @ crayon-syntax-highlighter
741
+ #: ../crayon_settings_wp.class.php:1098
742
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
743
+ msgstr ""
744
+
745
+ # @ crayon-syntax-highlighter
746
+ #: ../crayon_settings_wp.class.php:1099
747
+ msgid "Enable [plain][/plain] tag."
748
+ msgstr ""
749
+
750
+ # @ crayon-syntax-highlighter
751
+ #: ../crayon_settings_wp.class.php:1104
752
+ msgid ""
753
+ "When loading local files and a relative path is given for the URL, use the "
754
+ "absolute path"
755
+ msgstr ""
756
+ "زمانی که یک فایل یا مسیر نسبی میخواهد لود شود از مسیر ثابت زیر استفاده کن"
757
+
758
+ # @ crayon-syntax-highlighter
759
+ #: ../crayon_settings_wp.class.php:1107
760
+ msgid "Followed by your relative URL."
761
+ msgstr "به دنبال آدرس سایت خودتان مسیر نسبی را وارد کنید."
762
+
763
+ #: ../crayon_settings_wp.class.php:1114
764
+ msgid "Convert Legacy Tags"
765
+ msgstr ""
766
+
767
+ #: ../crayon_settings_wp.class.php:1117
768
+ msgid "No Legacy Tags Found"
769
+ msgstr ""
770
+
771
+ #: ../crayon_settings_wp.class.php:1121
772
+ msgid "Encode"
773
+ msgstr ""
774
+
775
+ # @ crayon-syntax-highlighter
776
+ #: ../crayon_settings_wp.class.php:1123
777
+ #, php-format
778
+ msgid ""
779
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
780
+ "attribute"
781
+ msgstr ""
782
+
783
+ #: ../crayon_settings_wp.class.php:1126
784
+ msgid ""
785
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
786
+ "bbPress)"
787
+ msgstr ""
788
+
789
+ #: ../crayon_settings_wp.class.php:1127
790
+ msgid "Display Tag Editor settings on the frontend"
791
+ msgstr ""
792
+
793
+ # @ crayon-syntax-highlighter
794
+ #: ../crayon_settings_wp.class.php:1131
795
+ msgid "Clear the cache used to store remote code requests"
796
+ msgstr ""
797
+
798
+ # @ crayon-syntax-highlighter
799
+ #: ../crayon_settings_wp.class.php:1133
800
+ msgid "Clear Now"
801
+ msgstr "اکنون پاک کن"
802
+
803
+ # @ crayon-syntax-highlighter
804
+ #: ../crayon_settings_wp.class.php:1134
805
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
806
+ msgstr ""
807
+ "هنگامی که افزونه نیاز به شیوه نامه (CSS) داشت آن را لود کن (توصیه می شود)"
808
+
809
+ # @ crayon-syntax-highlighter
810
+ #: ../crayon_settings_wp.class.php:1135
811
+ msgid "Disable enqueuing for page templates that may contain The Loop."
812
+ msgstr ""
813
+
814
+ # @ crayon-syntax-highlighter
815
+ #: ../crayon_settings_wp.class.php:1136
816
+ msgid "Allow Crayons inside comments"
817
+ msgstr "اجازه دادن به افزونه برای هایلایت کد های موجود در نظرات"
818
+
819
+ #: ../crayon_settings_wp.class.php:1137
820
+ msgid "Remove Crayons from excerpts"
821
+ msgstr ""
822
+
823
+ # @ crayon-syntax-highlighter
824
+ #: ../crayon_settings_wp.class.php:1138
825
+ msgid "Load Crayons only from the main Wordpress query"
826
+ msgstr ""
827
+
828
+ # @ crayon-syntax-highlighter
829
+ #: ../crayon_settings_wp.class.php:1139
830
+ msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
831
+ msgstr ""
832
+
833
+ # @ crayon-syntax-highlighter
834
+ #: ../crayon_settings_wp.class.php:1140
835
+ msgid "Disable animations"
836
+ msgstr ""
837
+
838
+ # @ crayon-syntax-highlighter
839
+ #: ../crayon_settings_wp.class.php:1141
840
+ msgid "Disable runtime stats"
841
+ msgstr ""
842
+
843
+ # @ crayon-syntax-highlighter
844
+ #: ../crayon_settings_wp.class.php:1147
845
+ msgid "Log errors for individual Crayons"
846
+ msgstr ""
847
+
848
+ # @ crayon-syntax-highlighter
849
+ #: ../crayon_settings_wp.class.php:1148
850
+ msgid "Log system-wide errors"
851
+ msgstr ""
852
+
853
+ # @ crayon-syntax-highlighter
854
+ #: ../crayon_settings_wp.class.php:1149
855
+ msgid "Display custom message for errors"
856
+ msgstr "نمایش پیام دلخواه برای خطاها"
857
+
858
+ # @ crayon-syntax-highlighter
859
+ #: ../crayon_settings_wp.class.php:1161
860
+ msgid "Show Log"
861
+ msgstr "نمایش لاگ"
862
+
863
+ # @ crayon-syntax-highlighter
864
+ #: ../crayon_settings_wp.class.php:1161
865
+ msgid "Hide Log"
866
+ msgstr "مخفی کردن لاگ"
867
+
868
+ # @ crayon-syntax-highlighter
869
+ #: ../crayon_settings_wp.class.php:1163
870
+ msgid "Clear Log"
871
+ msgstr "پاکسازی لاگ"
872
+
873
+ # @ crayon-syntax-highlighter
874
+ #: ../crayon_settings_wp.class.php:1164
875
+ msgid "Email Admin"
876
+ msgstr "ایمیل به مدیر"
877
+
878
+ # @ crayon-syntax-highlighter
879
+ #: ../crayon_settings_wp.class.php:1166
880
+ msgid "Email Developer"
881
+ msgstr "ایمیل به توسعه دهنده"
882
+
883
+ # @ crayon-syntax-highlighter
884
+ #: ../crayon_settings_wp.class.php:1168
885
+ msgid "The log is currently empty."
886
+ msgstr "لاگ خالی می باشد ."
887
+
888
+ # @ crayon-syntax-highlighter
889
+ #: ../crayon_settings_wp.class.php:1170
890
+ msgid "The log file exists and is writable."
891
+ msgstr "فایل لاگ موجود و قابل نوشتن است ."
892
+
893
+ # @ crayon-syntax-highlighter
894
+ #: ../crayon_settings_wp.class.php:1170
895
+ msgid "The log file exists and is not writable."
896
+ msgstr "فایل لاگ موجود و غیر قابل نوشتن است ."
897
+
898
+ # @ crayon-syntax-highlighter
899
+ #: ../crayon_settings_wp.class.php:1172
900
+ msgid "The log file does not exist and is not writable."
901
+ msgstr "فایل لاگ موجود و قابل نوشتن نیست ."
902
+
903
+ # @ crayon-syntax-highlighter
904
+ #: ../crayon_settings_wp.class.php:1184
905
+ msgid "Developer"
906
+ msgstr "توسعه دهنده"
907
+
908
+ # @ crayon-syntax-highlighter
909
+ #: ../crayon_settings_wp.class.php:1185
910
+ msgid "Translators"
911
+ msgstr "مترجم"
912
+
913
+ # @ crayon-syntax-highlighter
914
+ #: ../crayon_settings_wp.class.php:1236
915
+ msgid "?"
916
+ msgstr "?"
917
+
918
+ # @ crayon-syntax-highlighter
919
+ #: ../crayon_settings_wp.class.php:1243
920
+ #: ../util/theme-editor/theme_editor.php:336
921
+ msgid "Theme Editor"
922
+ msgstr "ویرایشگر قالب"
923
+
924
+ # @ crayon-syntax-highlighter
925
+ #: ../crayon_settings_wp.class.php:1244
926
+ msgid "Donate"
927
+ msgstr "کمک مالی"
928
+
929
+ # @ crayon-syntax-highlighter
930
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:65
931
+ msgid "Add Crayon Code"
932
+ msgstr "افزودن کد برنامه نویسی"
933
+
934
+ # @ crayon-syntax-highlighter
935
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:66
936
+ msgid "Edit Crayon Code"
937
+ msgstr "ویرایش کد برنامه نویسی"
938
+
939
+ # @ crayon-syntax-highlighter
940
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:67
941
+ msgid "Add"
942
+ msgstr "افزودن"
943
+
944
+ # @ crayon-syntax-highlighter
945
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:68
946
+ #: ../util/theme-editor/theme_editor.php:352
947
+ msgid "Save"
948
+ msgstr "ذخیره"
949
+
950
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:184
951
+ msgid "OK"
952
+ msgstr "تایید"
953
+
954
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:186
955
+ msgid "Cancel"
956
+ msgstr "انصراف"
957
+
958
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:195
959
+ msgid "A short description"
960
+ msgstr "یک توضیح کوتاه"
961
+
962
+ # @ crayon-syntax-highlighter
963
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:197
964
+ #: ../util/theme-editor/theme_editor.php:318
965
+ msgid "Inline"
966
+ msgstr "درون یک خط"
967
+
968
+ # @ crayon-syntax-highlighter
969
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:199
970
+ msgid "Don't Highlight"
971
+ msgstr "هایلایت نباشد"
972
+
973
+ # @ crayon-syntax-highlighter
974
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:204
975
+ #: ../util/theme-editor/theme_editor.php:322
976
+ msgid "Language"
977
+ msgstr "زبان"
978
+
979
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:207
980
+ msgid "Line Range"
981
+ msgstr "محدوده نمایش خطوط"
982
+
983
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:208
984
+ msgid "(e.g. 3-5 or 3)"
985
+ msgstr "(برای مثال 3-5 یا 3)"
986
+
987
+ # @ crayon-syntax-highlighter
988
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:209
989
+ msgid "Marked Lines"
990
+ msgstr "خطوط علامت گذاری شده"
991
+
992
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:210
993
+ msgid "(e.g. 1,2,3-5)"
994
+ msgstr "(برای مثال 1,2,3-5)"
995
+
996
+ # @ crayon-syntax-highlighter
997
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:219
998
+ msgid "Clear"
999
+ msgstr "پاکسازی"
1000
+
1001
+ # @ crayon-syntax-highlighter
1002
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:223
1003
+ msgid "Paste your code here, or type it in manually."
1004
+ msgstr "کد خود را اینجا کپی کنید یا آن را بطور دستی اینجا تایپ کنید."
1005
+
1006
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:227
1007
+ msgid "URL"
1008
+ msgstr "آدرس"
1009
+
1010
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:229
1011
+ msgid "Relative local path or absolute URL"
1012
+ msgstr "نمایش سورس این آدرس اینترنتی"
1013
+
1014
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:232
1015
+ msgid ""
1016
+ "If the URL fails to load, the code above will be shown instead. If no code "
1017
+ "exists, an error is shown."
1018
+ msgstr ""
1019
+ "اگر مشکلی در لود کردن سرور آدرس اینترنتی پیش بیاید ، کد بالا نمایش داده می "
1020
+ "شود . اگر کد بالا موجود نباشد یک خطا نمایش داده می شود ."
1021
+
1022
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:234
1023
+ #, php-format
1024
+ msgid ""
1025
+ "If a relative local path is given it will be appended to %s - which is "
1026
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
1027
+ msgstr ""
1028
+ "اگر از یک مسیر نسبی یا فایل محلی استفاده شد آن به %s اضافه می شود - میتوانید "
1029
+ "این مسیر ثابت را از %sافزونه &gt; تنظیمات &gt; فایل ها%s تغییر دهید."
1030
+
1031
+ # @ crayon-syntax-highlighter
1032
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:261
1033
+ msgid "Change the following settings to override their global values."
1034
+ msgstr "تغییر تنظیمات زیر به معنی نادیده گرفتن تنظیمات کلی می باشد ."
1035
+
1036
+ # @ crayon-syntax-highlighter
1037
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:263
1038
+ msgid "Only changes (shown yellow) are applied."
1039
+ msgstr "تنها تغییرات مشخص شده (زرد رنگ) استفاده شده است . "
1040
+
1041
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:265
1042
+ #, php-format
1043
+ msgid ""
1044
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
1045
+ "affect overridden settings."
1046
+ msgstr ""
1047
+ "تغییراتی که در آینده در %sافزونه &gt; تنظیمات%s انجام می دهید تاثیری روی "
1048
+ "این تنظیمات نمی گذارد. "
1049
+
1050
+ #: ../util/theme-editor/theme_editor.php:192
1051
+ msgid "User-Defined Theme"
1052
+ msgstr "قالب تعریف شده توسط کاربر "
1053
+
1054
+ # @ crayon-syntax-highlighter
1055
+ #: ../util/theme-editor/theme_editor.php:193
1056
+ msgid "Stock Theme"
1057
+ msgstr "قالب شاخص"
1058
+
1059
+ #: ../util/theme-editor/theme_editor.php:194
1060
+ msgid "Success!"
1061
+ msgstr "با موفقیت انجام شد!"
1062
+
1063
+ #: ../util/theme-editor/theme_editor.php:195
1064
+ msgid "Failed!"
1065
+ msgstr "ناموفق!"
1066
+
1067
+ #: ../util/theme-editor/theme_editor.php:197
1068
+ #, php-format
1069
+ msgid "Are you sure you want to delete the \"%s\" theme?"
1070
+ msgstr "آیا شما مطمئن هستید که میخواهید قالب \"%s\" را حذف کنید؟"
1071
+
1072
+ #: ../util/theme-editor/theme_editor.php:198
1073
+ msgid "Delete failed!"
1074
+ msgstr "حذف ناموفق بود!"
1075
+
1076
+ #: ../util/theme-editor/theme_editor.php:200
1077
+ msgid "New Name"
1078
+ msgstr "نام جدید"
1079
+
1080
+ #: ../util/theme-editor/theme_editor.php:201
1081
+ msgid "Duplicate failed!"
1082
+ msgstr "کپی ناموفق بود!"
1083
+
1084
+ #: ../util/theme-editor/theme_editor.php:202
1085
+ msgid "Please check the log for details."
1086
+ msgstr "لطفا برای مشاهده جزئیات لاگ ها را بررسی کنید ."
1087
+
1088
+ #: ../util/theme-editor/theme_editor.php:203
1089
+ msgid "Are you sure you want to discard all changes?"
1090
+ msgstr "آیا شما مطمئن هستید که میخواهید تمام تغییرات را مجددا بارگذاری کنید ؟"
1091
+
1092
+ #: ../util/theme-editor/theme_editor.php:204
1093
+ #, php-format
1094
+ msgid "Editing Theme: %s"
1095
+ msgstr "در حال ویرایش قالب: %s"
1096
+
1097
+ #: ../util/theme-editor/theme_editor.php:205
1098
+ #, php-format
1099
+ msgid "Creating Theme: %s"
1100
+ msgstr "ساخت قالب : %s"
1101
+
1102
+ #: ../util/theme-editor/theme_editor.php:206
1103
+ msgid "Submit Your Theme"
1104
+ msgstr "ثبت قالب شما"
1105
+
1106
+ #: ../util/theme-editor/theme_editor.php:207
1107
+ msgid ""
1108
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
1109
+ "email me your theme - make sure it's considerably different from the stock "
1110
+ "themes :)"
1111
+ msgstr ""
1112
+ "ثبت کردن قالب ساخته شده توسط کاربر برای گنجاندن به عنوان یک قالب شاخص در "
1113
+ "افزونه! این قالب برای من ایمیل می شود - مطمئن شوید که بطور قابل توجهی متفاوت "
1114
+ "از قالب های شاخص باشد ."
1115
+
1116
+ #: ../util/theme-editor/theme_editor.php:208
1117
+ msgid "Message"
1118
+ msgstr "پیام"
1119
+
1120
+ #: ../util/theme-editor/theme_editor.php:209
1121
+ msgid "Please include this theme in Crayon!"
1122
+ msgstr "Please include this theme in Crayon!"
1123
+
1124
+ # @ crayon-syntax-highlighter
1125
+ #: ../util/theme-editor/theme_editor.php:210
1126
+ msgid "Submit was successful."
1127
+ msgstr "ثبت با موفقیت انجام شد."
1128
+
1129
+ #: ../util/theme-editor/theme_editor.php:211
1130
+ msgid "Submit failed!"
1131
+ msgstr "ثبت ناموفق بود!"
1132
+
1133
+ #: ../util/theme-editor/theme_editor.php:294
1134
+ msgid "Information"
1135
+ msgstr "اطلاعات"
1136
+
1137
+ # @ crayon-syntax-highlighter
1138
+ #: ../util/theme-editor/theme_editor.php:295
1139
+ msgid "Highlighting"
1140
+ msgstr "برجسته کردن"
1141
+
1142
+ #: ../util/theme-editor/theme_editor.php:296
1143
+ msgid "Frame"
1144
+ msgstr "قاب"
1145
+
1146
+ # @ crayon-syntax-highlighter
1147
+ #: ../util/theme-editor/theme_editor.php:298
1148
+ msgid "Line Numbers"
1149
+ msgstr "شماره خطوط"
1150
+
1151
+ #: ../util/theme-editor/theme_editor.php:301
1152
+ msgid "Background"
1153
+ msgstr "پس زمینه"
1154
+
1155
+ #: ../util/theme-editor/theme_editor.php:302
1156
+ msgid "Text"
1157
+ msgstr "متن"
1158
+
1159
+ #: ../util/theme-editor/theme_editor.php:303
1160
+ msgid "Border"
1161
+ msgstr "حاشیه"
1162
+
1163
+ #: ../util/theme-editor/theme_editor.php:304
1164
+ msgid "Top Border"
1165
+ msgstr "حاشیه بالا"
1166
+
1167
+ # @ crayon-syntax-highlighter
1168
+ #: ../util/theme-editor/theme_editor.php:305
1169
+ msgid "Bottom Border"
1170
+ msgstr "حاشیه پایین"
1171
+
1172
+ #: ../util/theme-editor/theme_editor.php:306
1173
+ msgid "Right Border"
1174
+ msgstr "حاشیه سمت راست"
1175
+
1176
+ #: ../util/theme-editor/theme_editor.php:308
1177
+ msgid "Hover"
1178
+ msgstr ""
1179
+
1180
+ #: ../util/theme-editor/theme_editor.php:309
1181
+ msgid "Active"
1182
+ msgstr ""
1183
+
1184
+ #: ../util/theme-editor/theme_editor.php:310
1185
+ msgid "Pressed"
1186
+ msgstr ""
1187
+
1188
+ #: ../util/theme-editor/theme_editor.php:311
1189
+ msgid "Pressed & Hover"
1190
+ msgstr ""
1191
+
1192
+ #: ../util/theme-editor/theme_editor.php:312
1193
+ msgid "Pressed & Active"
1194
+ msgstr ""
1195
+
1196
+ #: ../util/theme-editor/theme_editor.php:315
1197
+ msgid "Buttons"
1198
+ msgstr ""
1199
+
1200
+ #: ../util/theme-editor/theme_editor.php:317
1201
+ msgid "Normal"
1202
+ msgstr "عادی"
1203
+
1204
+ #: ../util/theme-editor/theme_editor.php:319
1205
+ msgid "Striped"
1206
+ msgstr ""
1207
+
1208
+ # @ crayon-syntax-highlighter
1209
+ #: ../util/theme-editor/theme_editor.php:320
1210
+ msgid "Marked"
1211
+ msgstr "علامت گذاری شده"
1212
+
1213
+ #: ../util/theme-editor/theme_editor.php:321
1214
+ msgid "Striped & Marked"
1215
+ msgstr ""
1216
+
1217
+ # @ crayon-syntax-highlighter
1218
+ #: ../util/theme-editor/theme_editor.php:351
1219
+ msgid "Back To Settings"
1220
+ msgstr "بازگشت به تنظیمات"
1221
+
1222
+ #: ../util/theme-editor/theme_editor.php:390
1223
+ msgid "Comment"
1224
+ msgstr "توضیح"
1225
+
1226
+ #: ../util/theme-editor/theme_editor.php:391
1227
+ msgid "String"
1228
+ msgstr "رشته"
1229
+
1230
+ #: ../util/theme-editor/theme_editor.php:392
1231
+ msgid "Preprocessor"
1232
+ msgstr ""
1233
+
1234
+ # @ crayon-syntax-highlighter
1235
+ #: ../util/theme-editor/theme_editor.php:393
1236
+ msgid "Tag"
1237
+ msgstr "تگ"
1238
+
1239
+ #: ../util/theme-editor/theme_editor.php:394
1240
+ msgid "Keyword"
1241
+ msgstr "کلمات کلیدی"
1242
+
1243
+ #: ../util/theme-editor/theme_editor.php:395
1244
+ msgid "Statement"
1245
+ msgstr ""
1246
+
1247
+ #: ../util/theme-editor/theme_editor.php:396
1248
+ msgid "Reserved"
1249
+ msgstr ""
1250
+
1251
+ #: ../util/theme-editor/theme_editor.php:397
1252
+ msgid "Type"
1253
+ msgstr ""
1254
+
1255
+ #: ../util/theme-editor/theme_editor.php:398
1256
+ msgid "Modifier"
1257
+ msgstr ""
1258
+
1259
+ #: ../util/theme-editor/theme_editor.php:399
1260
+ msgid "Identifier"
1261
+ msgstr ""
1262
+
1263
+ #: ../util/theme-editor/theme_editor.php:400
1264
+ msgid "Entity"
1265
+ msgstr ""
1266
+
1267
+ #: ../util/theme-editor/theme_editor.php:401
1268
+ msgid "Variable"
1269
+ msgstr ""
1270
+
1271
+ #: ../util/theme-editor/theme_editor.php:402
1272
+ msgid "Constant"
1273
+ msgstr ""
1274
+
1275
+ #: ../util/theme-editor/theme_editor.php:403
1276
+ msgid "Operator"
1277
+ msgstr "جداکننده"
1278
+
1279
+ #: ../util/theme-editor/theme_editor.php:404
1280
+ msgid "Symbol"
1281
+ msgstr ""
1282
+
1283
+ #: ../util/theme-editor/theme_editor.php:405
1284
+ msgid "Notation"
1285
+ msgstr ""
1286
+
1287
+ #: ../util/theme-editor/theme_editor.php:406
1288
+ msgid "Faded"
1289
+ msgstr ""
1290
+
1291
+ #: ../util/theme-editor/theme_editor.php:407
1292
+ msgid "HTML"
1293
+ msgstr "HTML"
1294
+
1295
+ #: ../util/theme-editor/theme_editor.php:408
1296
+ msgid "Unhighlighted"
1297
+ msgstr "برجسته نشده است"
1298
+
1299
+ #: ../util/theme-editor/theme_editor.php:542
1300
+ msgid "(Used for Copy/Paste)"
1301
+ msgstr "(استفاده شده برای کپی / چسباندن)"
1302
+
1303
+ #~ msgid "Parsed With Errors"
1304
+ #~ msgstr "پردازش شده همراه با خطا"
1305
+
1306
+ #~ msgid "Successfully Parsed"
1307
+ #~ msgstr "با موفقیت پردازش شده است"
1308
+
1309
+ #~ msgid "Not Parsed"
1310
+ #~ msgstr "پردازش نشده"
1311
+
1312
+ #~ msgid "Undetermined"
1313
+ #~ msgstr "نا معین"
1314
+
1315
+ #~ msgid "Description"
1316
+ #~ msgstr "توضیحات"
1317
+
1318
+ #~ msgid "Author"
1319
+ #~ msgstr "سازنده"
1320
+
1321
+ #~ msgid "Add More"
1322
+ #~ msgstr "افزودن بیشتر"
trans/crayon-syntax-highlighter-fi.mo ADDED
Binary file
trans/crayon-syntax-highlighter-fi.po ADDED
@@ -0,0 +1,1399 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Crayon Syntax Highlighter v2.4.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-10 17:11+1000\n"
6
+ "PO-Revision-Date: 2014-06-23 23:31+0200\n"
7
+ "Last-Translator: Antti Vähälummukka <ana@tietomyrsky.com>\n"
8
+ "Language-Team: Tietomyrsky <ana@tietomyrsky.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-Generator: Poedit 1.6.5\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_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-Textdomain-Support: yes\n"
19
+ "Language: fi\n"
20
+ "X-Poedit-SearchPath-0: ..\n"
21
+
22
+ # @ crayon-syntax-highlighter
23
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
24
+ msgid "Max"
25
+ msgstr "Maksimi"
26
+
27
+ # @ crayon-syntax-highlighter
28
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
29
+ msgid "Min"
30
+ msgstr "Minimi"
31
+
32
+ # @ crayon-syntax-highlighter
33
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
34
+ msgid "Static"
35
+ msgstr "Staattinen"
36
+
37
+ # @ crayon-syntax-highlighter
38
+ #: crayon_settings.class.php:166 crayon_settings.class.php:170
39
+ #: crayon_settings_wp.class.php:774 crayon_settings_wp.class.php:783
40
+ #: crayon_settings_wp.class.php:1059 crayon_settings_wp.class.php:1061
41
+ msgid "Pixels"
42
+ msgstr "pikseliä"
43
+
44
+ # @ crayon-syntax-highlighter
45
+ #: crayon_settings.class.php:166 crayon_settings.class.php:170
46
+ msgid "Percent"
47
+ msgstr "Prosenttia"
48
+
49
+ # @ crayon-syntax-highlighter
50
+ #: crayon_settings.class.php:179
51
+ msgid "None"
52
+ msgstr "Ei mitään"
53
+
54
+ # @ crayon-syntax-highlighter
55
+ #: crayon_settings.class.php:179
56
+ msgid "Left"
57
+ msgstr "Vasen"
58
+
59
+ # @ crayon-syntax-highlighter
60
+ #: crayon_settings.class.php:179
61
+ msgid "Center"
62
+ msgstr "Keski"
63
+
64
+ # @ crayon-syntax-highlighter
65
+ #: crayon_settings.class.php:179
66
+ msgid "Right"
67
+ msgstr "Oikea"
68
+
69
+ # @ crayon-syntax-highlighter
70
+ #: crayon_settings.class.php:181 crayon_settings.class.php:206
71
+ msgid "On MouseOver"
72
+ msgstr "Hiiren ollessa alueen päällä"
73
+
74
+ # @ crayon-syntax-highlighter
75
+ #: crayon_settings.class.php:181 crayon_settings.class.php:187
76
+ msgid "Always"
77
+ msgstr "Aina"
78
+
79
+ # @ crayon-syntax-highlighter
80
+ #: crayon_settings.class.php:181 crayon_settings.class.php:187
81
+ msgid "Never"
82
+ msgstr "Ei koskaan"
83
+
84
+ # @ crayon-syntax-highlighter
85
+ #: crayon_settings.class.php:187
86
+ msgid "When Found"
87
+ msgstr "Jos löytyy"
88
+
89
+ # @ crayon-syntax-highlighter
90
+ #: crayon_settings.class.php:206
91
+ msgid "On Double Click"
92
+ msgstr "Kaksoisklikkauksella"
93
+
94
+ # @ crayon-syntax-highlighter
95
+ #: crayon_settings.class.php:206
96
+ msgid "On Single Click"
97
+ msgstr "Yhdellä klikkauksella"
98
+
99
+ # @ crayon-syntax-highlighter
100
+ #: crayon_settings.class.php:213
101
+ msgid "An error has occurred. Please try again later."
102
+ msgstr "Tapahtui virhe. Koeta myöhemmin uudellee."
103
+
104
+ # @ crayon-syntax-highlighter
105
+ #: crayon_settings_wp.class.php:53 crayon_settings_wp.class.php:210
106
+ #: crayon_settings_wp.class.php:1258
107
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:252
108
+ msgid "Settings"
109
+ msgstr "Asetukset"
110
+
111
+ # @ crayon-syntax-highlighter
112
+ #: crayon_settings_wp.class.php:193
113
+ msgid "You do not have sufficient permissions to access this page."
114
+ msgstr "Oikeutesi eivät riitä tämän sivun katselemiseen."
115
+
116
+ # @ crayon-syntax-highlighter
117
+ #: crayon_settings_wp.class.php:225
118
+ msgid "Save Changes"
119
+ msgstr "Tallenna muutiokset"
120
+
121
+ # @ crayon-syntax-highlighter
122
+ #: crayon_settings_wp.class.php:233
123
+ msgid "Reset Settings"
124
+ msgstr "Palauta oletukset"
125
+
126
+ # @ crayon-syntax-highlighter
127
+ #: crayon_settings_wp.class.php:751
128
+ msgid "Height"
129
+ msgstr "Korkeus"
130
+
131
+ # @ crayon-syntax-highlighter
132
+ #: crayon_settings_wp.class.php:757
133
+ msgid "Width"
134
+ msgstr "Leveys"
135
+
136
+ # @ crayon-syntax-highlighter
137
+ #: crayon_settings_wp.class.php:763
138
+ msgid "Top Margin"
139
+ msgstr "Ylämariginaali"
140
+
141
+ # @ crayon-syntax-highlighter
142
+ #: crayon_settings_wp.class.php:764
143
+ msgid "Bottom Margin"
144
+ msgstr "Alamariginaali"
145
+
146
+ # @ crayon-syntax-highlighter
147
+ #: crayon_settings_wp.class.php:765 crayon_settings_wp.class.php:770
148
+ msgid "Left Margin"
149
+ msgstr "Vasen mariginaali"
150
+
151
+ # @ crayon-syntax-highlighter
152
+ #: crayon_settings_wp.class.php:766 crayon_settings_wp.class.php:770
153
+ msgid "Right Margin"
154
+ msgstr "Oikea mariginaali"
155
+
156
+ # @ crayon-syntax-highlighter
157
+ #: crayon_settings_wp.class.php:776
158
+ msgid "Horizontal Alignment"
159
+ msgstr "Vaaka-asettelu"
160
+
161
+ # @ crayon-syntax-highlighter
162
+ #: crayon_settings_wp.class.php:779
163
+ msgid "Allow floating elements to surround Crayon"
164
+ msgstr "Salli elementtien kiertää Crayon"
165
+
166
+ # @ crayon-syntax-highlighter
167
+ #: crayon_settings_wp.class.php:789
168
+ msgid "Display the Toolbar"
169
+ msgstr "Näytä työkalupalkki"
170
+
171
+ # @ crayon-syntax-highlighter
172
+ #: crayon_settings_wp.class.php:792
173
+ msgid "Overlay the toolbar on code rather than push it down when possible"
174
+ msgstr "Näytä kiinteä työkalupalkki"
175
+
176
+ # @ crayon-syntax-highlighter
177
+ #: crayon_settings_wp.class.php:793
178
+ msgid "Toggle the toolbar on single click when it is overlayed"
179
+ msgstr ""
180
+ "Näytä tai piilota työkalupalkki yhdellä klikkauksella jos se on koodin päällä"
181
+
182
+ # @ crayon-syntax-highlighter
183
+ #: crayon_settings_wp.class.php:794
184
+ msgid "Delay hiding the toolbar on MouseOut"
185
+ msgstr "Työkalupalkin piilotusviive hiiren poistuessa alueelta"
186
+
187
+ # @ crayon-syntax-highlighter
188
+ #: crayon_settings_wp.class.php:796
189
+ msgid "Display the title when provided"
190
+ msgstr "Näytä otsikko"
191
+
192
+ # @ crayon-syntax-highlighter
193
+ #: crayon_settings_wp.class.php:797
194
+ msgid "Display the language"
195
+ msgstr "Näytä kieli"
196
+
197
+ # @ crayon-syntax-highlighter
198
+ #: crayon_settings_wp.class.php:804
199
+ msgid "Display striped code lines"
200
+ msgstr "Käytä riveillä vuorottelevaa taustaa"
201
+
202
+ # @ crayon-syntax-highlighter
203
+ #: crayon_settings_wp.class.php:805
204
+ msgid "Enable line marking for important lines"
205
+ msgstr "Salli tärkeiden rivien merkintä"
206
+
207
+ # @ crayon-syntax-highlighter
208
+ #: crayon_settings_wp.class.php:807
209
+ msgid "Display line numbers by default"
210
+ msgstr "Näytä rivinumerot"
211
+
212
+ # @ crayon-syntax-highlighter
213
+ #: crayon_settings_wp.class.php:808
214
+ msgid "Enable line number toggling"
215
+ msgstr "Salli rivinumeroiden kytkeminen päälle ja pois"
216
+
217
+ # @ crayon-syntax-highlighter
218
+ #: crayon_settings_wp.class.php:811
219
+ msgid "Start line numbers from"
220
+ msgstr "Aloita rivien numerointi numerosta"
221
+
222
+ # @ crayon-syntax-highlighter
223
+ #: crayon_settings_wp.class.php:822
224
+ msgid "When no language is provided, use the fallback"
225
+ msgstr "Käytä oletusarvoa jos kieltä ei ole määritetty"
226
+
227
+ # @ crayon-syntax-highlighter
228
+ #: crayon_settings_wp.class.php:829
229
+ msgid "Parsing was successful"
230
+ msgstr "Jäsentely onnistui"
231
+
232
+ # @ crayon-syntax-highlighter
233
+ #: crayon_settings_wp.class.php:829
234
+ msgid "Parsing was unsuccessful"
235
+ msgstr "Jäsentely epäonnistui"
236
+
237
+ # @ crayon-syntax-highlighter
238
+ #: crayon_settings_wp.class.php:835
239
+ #, php-format
240
+ msgid "The selected language with id %s could not be loaded"
241
+ msgstr "Valittua kiletä (%s) ei voitu ladata"
242
+
243
+ # @ crayon-syntax-highlighter
244
+ #: crayon_settings_wp.class.php:838
245
+ msgid "Show Languages"
246
+ msgstr "Näytä kielet"
247
+
248
+ # @ crayon-syntax-highlighter
249
+ #: crayon_settings_wp.class.php:1038
250
+ msgid "Enable Live Preview"
251
+ msgstr "Käytä elävää esikatselua"
252
+
253
+ # @ crayon-syntax-highlighter
254
+ #: crayon_settings_wp.class.php:1043
255
+ #, php-format
256
+ msgid "The selected theme with id %s could not be loaded"
257
+ msgstr "Valittua teemaa (%s) ei voitu ladata"
258
+
259
+ # @ crayon-syntax-highlighter
260
+ #: crayon_settings_wp.class.php:1057
261
+ msgid "Custom Font Size"
262
+ msgstr "Mukautettu kirjasinkoko"
263
+
264
+ # @ crayon-syntax-highlighter
265
+ #: crayon_settings_wp.class.php:1064
266
+ #, php-format
267
+ msgid "The selected font with id %s could not be loaded"
268
+ msgstr "Valittua kirjasinta (%s) ei voitu ladata"
269
+
270
+ # @ crayon-syntax-highlighter
271
+ #: crayon_settings_wp.class.php:1075
272
+ msgid "Enable plain code view and display"
273
+ msgstr "Salli formatoimattoman koodin näyttäminen"
274
+
275
+ # @ crayon-syntax-highlighter
276
+ #: crayon_settings_wp.class.php:1080
277
+ msgid "Enable code copy/paste"
278
+ msgstr "Salli koodin leikkaaminen ja liimaaminen"
279
+
280
+ # @ crayon-syntax-highlighter
281
+ #: crayon_settings_wp.class.php:1082
282
+ msgid "Enable opening code in a window"
283
+ msgstr "Salli koodin avaaminen ikkunassa"
284
+
285
+ # @ crayon-syntax-highlighter
286
+ #: crayon_settings_wp.class.php:1100
287
+ msgid "Tab size in spaces"
288
+ msgstr "Sarkainta vastaava välilyöntien määrä"
289
+
290
+ # @ crayon-syntax-highlighter
291
+ #: crayon_settings_wp.class.php:1093
292
+ msgid "Remove whitespace surrounding the shortcode content"
293
+ msgstr "Poista whitespace-merkit lyhytkoodien ympäriltä"
294
+
295
+ # @ crayon-syntax-highlighter
296
+ #: crayon_settings_wp.class.php:1126
297
+ msgid ""
298
+ "When loading local files and a relative path is given for the URL, use the "
299
+ "absolute path"
300
+ msgstr "Käytä paikallisten URL:ien sijaan absoluuttista URL:ää"
301
+
302
+ # @ crayon-syntax-highlighter
303
+ #: crayon_settings_wp.class.php:1153
304
+ msgid "Clear the cache used to store remote code requests"
305
+ msgstr "Tyhjennä ulkopuolisten koodien välimuisti"
306
+
307
+ # @ crayon-syntax-highlighter
308
+ #: crayon_settings_wp.class.php:1155
309
+ msgid "Clear Now"
310
+ msgstr "Tyhjennä nyt"
311
+
312
+ # @ crayon-syntax-highlighter
313
+ #: crayon_settings_wp.class.php:1161
314
+ msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
315
+ msgstr "Estä hiirieleet kosketusnäytöllä"
316
+
317
+ # @ crayon-syntax-highlighter
318
+ #: crayon_settings_wp.class.php:1162
319
+ msgid "Disable animations"
320
+ msgstr "Estä animaatiot"
321
+
322
+ # @ crayon-syntax-highlighter
323
+ #: crayon_settings_wp.class.php:1163
324
+ msgid "Disable runtime stats"
325
+ msgstr "Estä ajonaikaiset tilastot"
326
+
327
+ # @ crayon-syntax-highlighter
328
+ #: crayon_settings_wp.class.php:1169
329
+ msgid "Log errors for individual Crayons"
330
+ msgstr "Kirjoita erillisten Crayonien virheet lokiin"
331
+
332
+ # @ crayon-syntax-highlighter
333
+ #: crayon_settings_wp.class.php:1170
334
+ msgid "Log system-wide errors"
335
+ msgstr "Kirjoita järjestelmänlaajuiset virheet lokiin"
336
+
337
+ # @ crayon-syntax-highlighter
338
+ #: crayon_settings_wp.class.php:1171
339
+ msgid "Display custom message for errors"
340
+ msgstr "Näytä mukautettu virheilmoitus"
341
+
342
+ # @ crayon-syntax-highlighter
343
+ #: crayon_settings_wp.class.php:1183
344
+ msgid "Show Log"
345
+ msgstr "Näytä loki"
346
+
347
+ # @ crayon-syntax-highlighter
348
+ #: crayon_settings_wp.class.php:1185
349
+ msgid "Clear Log"
350
+ msgstr "Tyhjennä loki"
351
+
352
+ # @ crayon-syntax-highlighter
353
+ #: crayon_settings_wp.class.php:1186
354
+ msgid "Email Admin"
355
+ msgstr "Lähetä sähköpostia ylläpitäjälle"
356
+
357
+ # @ crayon-syntax-highlighter
358
+ #: crayon_settings_wp.class.php:1188
359
+ msgid "Email Developer"
360
+ msgstr "Lähetä sähköpostia kehittäjälle"
361
+
362
+ # @ crayon-syntax-highlighter
363
+ #: crayon_settings_wp.class.php:1204
364
+ msgid "Version"
365
+ msgstr "Versio"
366
+
367
+ # @ crayon-syntax-highlighter
368
+ #: crayon_settings_wp.class.php:1206
369
+ msgid "Developer"
370
+ msgstr "Kehittäjä"
371
+
372
+ # @ crayon-syntax-highlighter
373
+ #: crayon_settings.class.php:151
374
+ msgid "Hourly"
375
+ msgstr "Tunneittain"
376
+
377
+ # @ crayon-syntax-highlighter
378
+ #: crayon_settings.class.php:151
379
+ msgid "Daily"
380
+ msgstr "Päivittäin"
381
+
382
+ # @ crayon-syntax-highlighter
383
+ #: crayon_settings.class.php:152
384
+ msgid "Weekly"
385
+ msgstr "Viikoittain"
386
+
387
+ # @ crayon-syntax-highlighter
388
+ #: crayon_settings.class.php:152
389
+ msgid "Monthly"
390
+ msgstr "Kuukausittain"
391
+
392
+ # @ crayon-syntax-highlighter
393
+ #: crayon_settings.class.php:153
394
+ msgid "Immediately"
395
+ msgstr "Heti"
396
+
397
+ # @ crayon-syntax-highlighter
398
+ #: crayon_settings_wp.class.php:1156
399
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
400
+ msgstr "Yritä ladata Crayonin tyylitiedosto ja JavaScripti vain tarvittaessa"
401
+
402
+ # @ crayon-syntax-highlighter
403
+ #: crayon_settings_wp.class.php:1129
404
+ msgid "Followed by your relative URL."
405
+ msgstr "Liitä perään suhteellinen URL."
406
+
407
+ # @ crayon-syntax-highlighter
408
+ #: crayon_settings_wp.class.php:1190
409
+ msgid "The log is currently empty."
410
+ msgstr "Loki on tyhjä."
411
+
412
+ # @ crayon-syntax-highlighter
413
+ #: crayon_settings_wp.class.php:1192
414
+ msgid "The log file exists and is writable."
415
+ msgstr "Loki on olemassa ja siihen voi kirjoittaa."
416
+
417
+ # @ crayon-syntax-highlighter
418
+ #: crayon_settings_wp.class.php:1192
419
+ msgid "The log file exists and is not writable."
420
+ msgstr "Loki on olemassa mutta siihen ei voi kirjoittaa."
421
+
422
+ # @ crayon-syntax-highlighter
423
+ #: crayon_settings_wp.class.php:1194
424
+ msgid "The log file does not exist and is not writable."
425
+ msgstr "Lokia ei ole olemassa eikä siihen voi kirjoittaa."
426
+
427
+ # @ crayon-syntax-highlighter
428
+ #: crayon_settings_wp.class.php:828
429
+ #, php-format
430
+ msgid "%d language has been detected."
431
+ msgid_plural "%d languages have been detected."
432
+ msgstr[0] "%d kieli havaittut."
433
+ msgstr[1] "%d kieltä havaittu."
434
+
435
+ # @ crayon-syntax-highlighter
436
+ #: crayon_settings_wp.class.php:1116
437
+ msgid "Capture &lt;pre&gt; tags as Crayons"
438
+ msgstr "Käsittele &lt;pre&gt; tägit samoin kuin Crayonit"
439
+
440
+ # @ crayon-syntax-highlighter
441
+ #: crayon_settings_wp.class.php:1098
442
+ msgid "Show Mixed Language Icon (+)"
443
+ msgstr "Näytä useamman kielen ikoni (+)"
444
+
445
+ # @ crayon-syntax-highlighter
446
+ #: crayon_settings_wp.class.php:1096
447
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
448
+ msgstr "Salli useamman kielen korostus käyttäen erottimia ja tägejä."
449
+
450
+ # @ crayon-syntax-highlighter
451
+ #: crayon_settings_wp.class.php:1119
452
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
453
+ msgstr "Käsittele minitägit, kuten [php][/php], samoin kuin Crayonit"
454
+
455
+ # @ crayon-syntax-highlighter
456
+ #: crayon_settings_wp.class.php:1121
457
+ msgid "Enable [plain][/plain] tag."
458
+ msgstr "Salli [plain][/plain] tägit."
459
+
460
+ # @ crayon-syntax-highlighter
461
+ #: crayon_settings.class.php:206
462
+ msgid "Disable Mouse Events"
463
+ msgstr "Estä hiiritapahtumat"
464
+
465
+ # @ crayon-syntax-highlighter
466
+ #: crayon_settings_wp.class.php:1078
467
+ msgid "Enable plain code toggling"
468
+ msgstr "Salli formatoimattoman koodin näyttäminen ja piilotus"
469
+
470
+ # @ crayon-syntax-highlighter
471
+ #: crayon_settings_wp.class.php:1079
472
+ msgid "Show the plain code by default"
473
+ msgstr "Näytä oletusarvoisesti formatoimaton koodi"
474
+
475
+ # @ crayon-syntax-highlighter
476
+ #. translators: plugin header field 'Name'
477
+ #: crayon_wp.class.php:0
478
+ msgid "Crayon Syntax Highlighter"
479
+ msgstr ""
480
+
481
+ # @ crayon-syntax-highlighter
482
+ #. translators: plugin header field 'AuthorURI'
483
+ #: crayon_wp.class.php:0
484
+ msgid "http://aramk.com/"
485
+ msgstr ""
486
+
487
+ # @ crayon-syntax-highlighter
488
+ #. translators: plugin header field 'Author'
489
+ #: crayon_wp.class.php:0
490
+ msgid "Aram Kocharyan"
491
+ msgstr ""
492
+
493
+ # @ crayon-syntax-highlighter
494
+ #. translators: plugin header field 'Description'
495
+ #: crayon_wp.class.php:0
496
+ msgid ""
497
+ "Supports multiple languages, themes, highlighting from a URL, local file or "
498
+ "post text."
499
+ msgstr ""
500
+ "Tukee useita kieliä, teemoja, koodin hakemista URL-osoitteen avulla, "
501
+ "paikallisia tiedostoja ja julkaisun sisäistä koodia."
502
+
503
+ # @ crayon-syntax-highlighter
504
+ #: crayon_settings_wp.class.php:1260
505
+ msgid "Donate"
506
+ msgstr "Lahjoita"
507
+
508
+ # @ crayon-syntax-highlighter
509
+ #: crayon_settings_wp.class.php:491
510
+ msgid "General"
511
+ msgstr "Yleinen"
512
+
513
+ # @ crayon-syntax-highlighter
514
+ #: crayon_settings_wp.class.php:492
515
+ msgid "Theme"
516
+ msgstr "Teema"
517
+
518
+ # @ crayon-syntax-highlighter
519
+ #: crayon_settings_wp.class.php:493
520
+ msgid "Font"
521
+ msgstr "Kirjasin"
522
+
523
+ # @ crayon-syntax-highlighter
524
+ #: crayon_settings_wp.class.php:494
525
+ msgid "Metrics"
526
+ msgstr "Asettelu"
527
+
528
+ # @ crayon-syntax-highlighter
529
+ #: crayon_settings_wp.class.php:495 util/theme-editor/theme_editor.php:299
530
+ msgid "Toolbar"
531
+ msgstr "Työkalupalkki"
532
+
533
+ # @ crayon-syntax-highlighter
534
+ #: crayon_settings_wp.class.php:496 util/theme-editor/theme_editor.php:297
535
+ msgid "Lines"
536
+ msgstr "Rivit"
537
+
538
+ # @ crayon-syntax-highlighter
539
+ #: crayon_settings_wp.class.php:497
540
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:212
541
+ msgid "Code"
542
+ msgstr "Koodi"
543
+
544
+ # @ crayon-syntax-highlighter
545
+ #: crayon_settings_wp.class.php:499
546
+ msgid "Languages"
547
+ msgstr "Kielet"
548
+
549
+ # @ crayon-syntax-highlighter
550
+ #: crayon_settings_wp.class.php:500
551
+ msgid "Files"
552
+ msgstr "Tiedostot"
553
+
554
+ # @ crayon-syntax-highlighter
555
+ #: crayon_settings_wp.class.php:503
556
+ msgid "Misc"
557
+ msgstr "Muut"
558
+
559
+ # @ crayon-syntax-highlighter
560
+ #: crayon_settings_wp.class.php:506
561
+ msgid "Debug"
562
+ msgstr "Virheenjäljitys"
563
+
564
+ # @ crayon-syntax-highlighter
565
+ #: crayon_settings_wp.class.php:507
566
+ msgid "Errors"
567
+ msgstr "Virheet"
568
+
569
+ # @ crayon-syntax-highlighter
570
+ #: crayon_settings_wp.class.php:508
571
+ msgid "Log"
572
+ msgstr "Loki"
573
+
574
+ # @ crayon-syntax-highlighter
575
+ #: crayon_settings_wp.class.php:511
576
+ msgid "About"
577
+ msgstr "Ohjelmasta"
578
+
579
+ # @ crayon-syntax-highlighter
580
+ #: crayon_settings_wp.class.php:1040
581
+ msgid "Enqueue themes in the header (more efficient)."
582
+ msgstr "Sisällytä teemat header:iin (tehokkuussyistä)."
583
+
584
+ # @ crayon-syntax-highlighter
585
+ #: crayon_settings_wp.class.php:1070
586
+ msgid "Enqueue fonts in the header (more efficient)."
587
+ msgstr "Sisällytä kirjasimet header:iin (tehokkuussyistä)."
588
+
589
+ # @ crayon-syntax-highlighter
590
+ #: crayon_settings_wp.class.php:1018
591
+ msgid "Loading..."
592
+ msgstr "Ladataan..."
593
+
594
+ # @ crayon-syntax-highlighter
595
+ #: crayon_settings_wp.class.php:1259 util/theme-editor/theme_editor.php:336
596
+ msgid "Theme Editor"
597
+ msgstr "Teeman muokkain"
598
+
599
+ # @ crayon-syntax-highlighter
600
+ #: crayon_settings_wp.class.php:1083
601
+ msgid "Always display scrollbars"
602
+ msgstr "Näytä vierityspalkit aina"
603
+
604
+ # @ crayon-syntax-highlighter
605
+ #: crayon_settings_wp.class.php:1157
606
+ msgid "Disable enqueuing for page templates that may contain The Loop."
607
+ msgstr "Estä silmukan sisältävien teemojen sisällyttäminen."
608
+
609
+ # @ crayon-syntax-highlighter
610
+ #: crayon_settings_wp.class.php:1160
611
+ msgid "Load Crayons only from the main Wordpress query"
612
+ msgstr "Lataa Crayonit vain pääwordpressin kyselyistä"
613
+
614
+ # @ crayon-syntax-highlighter
615
+ #: util/theme-editor/theme_editor.php:351
616
+ msgid "Back To Settings"
617
+ msgstr "Takaisin asetuksiin"
618
+
619
+ # @ crayon-syntax-highlighter
620
+ #: crayon_settings_wp.class.php:1207
621
+ msgid "Translators"
622
+ msgstr "Kääntäjät"
623
+
624
+ # @ crayon-syntax-highlighter
625
+ #: crayon_formatter.class.php:290
626
+ msgid "Toggle Plain Code"
627
+ msgstr "Näytä tai piilota formatoimaton koodi"
628
+
629
+ # @ crayon-syntax-highlighter
630
+ #: crayon_formatter.class.php:306
631
+ msgid "Open Code In New Window"
632
+ msgstr "Avaa koodi uudessa ikkunassa"
633
+
634
+ # @ crayon-syntax-highlighter
635
+ #: crayon_formatter.class.php:286
636
+ msgid "Toggle Line Numbers"
637
+ msgstr "Rivinumerot päälle tai pois päältä"
638
+
639
+ # @ crayon-syntax-highlighter
640
+ #: crayon_formatter.class.php:333
641
+ msgid "Contains Mixed Languages"
642
+ msgstr "Sisältää useita kieliä"
643
+
644
+ # @ crayon-syntax-highlighter
645
+ #: crayon_settings_wp.class.php:1183
646
+ msgid "Hide Log"
647
+ msgstr "Piilota loki"
648
+
649
+ # @ crayon-syntax-highlighter
650
+ #: crayon_settings_wp.class.php:136
651
+ #, php-format
652
+ msgid "Press %s to Copy, %s to Paste"
653
+ msgstr "%s kopio, %s liittää"
654
+
655
+ # @ crayon-syntax-highlighter
656
+ #: crayon_settings_wp.class.php:498
657
+ msgid "Tags"
658
+ msgstr "Tägit"
659
+
660
+ # @ crayon-syntax-highlighter
661
+ #: crayon_settings_wp.class.php:781
662
+ msgid "Inline Margin"
663
+ msgstr "Inline mariginaali"
664
+
665
+ # @ crayon-syntax-highlighter
666
+ #: crayon_settings_wp.class.php:1120
667
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
668
+ msgstr "Tulkitse inline-tägit kuten {php} {/php} myös lauseiden sisällä"
669
+
670
+ # @ crayon-syntax-highlighter
671
+ #: crayon_settings_wp.class.php:1115
672
+ msgid "Capture `backquotes` as &lt;code&gt;"
673
+ msgstr "Tulkitse `taakse kallistuvat heittomerkit` samoin kuin &lt;code&gt;"
674
+
675
+ # @ crayon-syntax-highlighter
676
+ #: crayon_settings_wp.class.php:1158
677
+ msgid "Allow Crayons inside comments"
678
+ msgstr "Salli Crayonit kommenttien sisällä"
679
+
680
+ # @ crayon-syntax-highlighter
681
+ #: crayon_settings_wp.class.php:1110
682
+ msgid "Wrap Inline Tags"
683
+ msgstr "Rivitä inline tägit"
684
+
685
+ # @ crayon-syntax-highlighter
686
+ #: crayon_settings_wp.class.php:502
687
+ msgid "Tag Editor"
688
+ msgstr "Tägimuokkain"
689
+
690
+ # @ crayon-syntax-highlighter
691
+ #: crayon_settings_wp.class.php:1252
692
+ msgid "?"
693
+ msgstr ""
694
+
695
+ # @ crayon-syntax-highlighter
696
+ #: crayon_settings_wp.class.php:1089
697
+ msgid "Decode HTML entities in code"
698
+ msgstr "Tulkitse HTML koodin sisällä"
699
+
700
+ # @ crayon-syntax-highlighter
701
+ #: crayon_settings_wp.class.php:1091
702
+ msgid "Decode HTML entities in attributes"
703
+ msgstr "Tulkitse HTML attribuuttien sisällä"
704
+
705
+ # @ crayon-syntax-highlighter
706
+ #: crayon_settings_wp.class.php:1145
707
+ #, php-format
708
+ msgid ""
709
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
710
+ "attribute"
711
+ msgstr ""
712
+ "Käytä %s-merkkiä erottamaan nimiä ja arvoja &lt;pre&gt; luokan attribuuteissa"
713
+
714
+ # @ crayon-syntax-highlighter
715
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:62
716
+ msgid "Add Crayon Code"
717
+ msgstr "Lisää Crayon koodi"
718
+
719
+ # @ crayon-syntax-highlighter
720
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:63
721
+ msgid "Edit Crayon Code"
722
+ msgstr "Muokkaa Crayonin koodia"
723
+
724
+ # @ crayon-syntax-highlighter
725
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:64
726
+ msgid "Add"
727
+ msgstr "Lisää"
728
+
729
+ # @ crayon-syntax-highlighter
730
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:65
731
+ #: util/theme-editor/theme_editor.php:352
732
+ msgid "Save"
733
+ msgstr "Tallenna"
734
+
735
+ # @ crayon-syntax-highlighter
736
+ #: crayon_settings_wp.class.php:900
737
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:189
738
+ #: util/theme-editor/theme_editor.php:314
739
+ msgid "Title"
740
+ msgstr "Otsikko"
741
+
742
+ # @ crayon-syntax-highlighter
743
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:191
744
+ msgid "A short description"
745
+ msgstr "Lyhyt kuvaus"
746
+
747
+ # @ crayon-syntax-highlighter
748
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:193
749
+ #: util/theme-editor/theme_editor.php:318
750
+ msgid "Inline"
751
+ msgstr ""
752
+
753
+ # @ crayon-syntax-highlighter
754
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:200
755
+ #: util/theme-editor/theme_editor.php:322
756
+ msgid "Language"
757
+ msgstr "Kieli"
758
+
759
+ # @ crayon-syntax-highlighter
760
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:205
761
+ msgid "Marked Lines"
762
+ msgstr "Korostetut rivit"
763
+
764
+ # @ crayon-syntax-highlighter
765
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:206
766
+ msgid "(e.g. 1,2,3-5)"
767
+ msgstr "(esim. 1,2,3-5)"
768
+
769
+ # @ crayon-syntax-highlighter
770
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:215
771
+ msgid "Clear"
772
+ msgstr "Tyhjennä"
773
+
774
+ # @ crayon-syntax-highlighter
775
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:219
776
+ msgid "Paste your code here, or type it in manually."
777
+ msgstr "Liitä tai kirjoita koodi tähän."
778
+
779
+ # @ crayon-syntax-highlighter
780
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:223
781
+ msgid "URL"
782
+ msgstr "URL"
783
+
784
+ # @ crayon-syntax-highlighter
785
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:225
786
+ msgid "Relative local path or absolute URL"
787
+ msgstr "Suhteellinen polku tai absoluuttinen URL"
788
+
789
+ # @ crayon-syntax-highlighter
790
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:228
791
+ msgid ""
792
+ "If the URL fails to load, the code above will be shown instead. If no code "
793
+ "exists, an error is shown."
794
+ msgstr ""
795
+ "Jos URL ei lataannu näytetään ylläoleva koodi. Jos mitään koodia ei ole "
796
+ "näytetään virheilmoitus."
797
+
798
+ # @ crayon-syntax-highlighter
799
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:230
800
+ #, php-format
801
+ msgid ""
802
+ "If a relative local path is given it will be appended to %s - which is "
803
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
804
+ msgstr ""
805
+ "Annettuun suhteelliseen polkuun lisätään eteen %s, se on määritetty %sCrayon "
806
+ "&gt; Asetukset &gt; Tiedostot%s."
807
+
808
+ # @ crayon-syntax-highlighter
809
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:257
810
+ msgid "Change the following settings to override their global values."
811
+ msgstr "Seuraavilla asetuksilla voit poiketa oletusarvoista."
812
+
813
+ # @ crayon-syntax-highlighter
814
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:259
815
+ msgid "Only changes (shown yellow) are applied."
816
+ msgstr "Oletusarvoista poikkeavat muutokset näytetään keltaisina."
817
+
818
+ # @ crayon-syntax-highlighter
819
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:261
820
+ #, php-format
821
+ msgid ""
822
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
823
+ "affect overridden settings."
824
+ msgstr ""
825
+ "Tulevat muutokset globaaleihin asetuksiin (%sCrayon &gt; Asetukset%s) eivät "
826
+ "vaikuta näihin muutoksiin."
827
+
828
+ # @ crayon-syntax-highlighter
829
+ #: crayon_settings_wp.class.php:1159
830
+ msgid "Remove Crayons from excerpts"
831
+ msgstr "Poista Crayonit leikkeistä"
832
+
833
+ # @ crayon-syntax-highlighter
834
+ #: crayon_formatter.class.php:294
835
+ msgid "Toggle Line Wrap"
836
+ msgstr "Rivitys päälle tai pois päältä"
837
+
838
+ # @ crayon-syntax-highlighter
839
+ #: crayon_settings_wp.class.php:501
840
+ msgid "Posts"
841
+ msgstr "Julkaisut"
842
+
843
+ # @ crayon-syntax-highlighter
844
+ #: crayon_settings_wp.class.php:806
845
+ msgid "Enable line ranges for showing only parts of code"
846
+ msgstr "Salli rivialueet jotka näyttävät vain osan koodista"
847
+
848
+ # @ crayon-syntax-highlighter
849
+ #: crayon_settings_wp.class.php:809
850
+ msgid "Wrap lines by default"
851
+ msgstr "Rivitä oletuksena"
852
+
853
+ # @ crayon-syntax-highlighter
854
+ #: crayon_settings_wp.class.php:810
855
+ msgid "Enable line wrap toggling"
856
+ msgstr "Salli rivityksen päälle ja pois päältä kytkeminen"
857
+
858
+ # @ crayon-syntax-highlighter
859
+ #: crayon_settings_wp.class.php:874
860
+ msgid "Show Crayon Posts"
861
+ msgstr "Näytä Crayon-julkaisut"
862
+
863
+ # @ crayon-syntax-highlighter
864
+ #: crayon_settings_wp.class.php:1015
865
+ msgid "Edit"
866
+ msgstr "Muokkaa"
867
+
868
+ # @ crayon-syntax-highlighter
869
+ #: crayon_settings_wp.class.php:1102
870
+ msgid "Blank lines before code:"
871
+ msgstr "Tyhjiä rivejä ennen koodia:"
872
+
873
+ # @ crayon-syntax-highlighter
874
+ #: crayon_settings_wp.class.php:1104
875
+ msgid "Blank lines after code:"
876
+ msgstr "Tyhjiä rivejä koodin jälkeen:"
877
+
878
+ # @ crayon-syntax-highlighter
879
+ #: crayon_settings_wp.class.php:1136
880
+ msgid "Convert Legacy Tags"
881
+ msgstr "Muunna käytöstä poistuvat tägit"
882
+
883
+ # @ crayon-syntax-highlighter
884
+ #: crayon_settings_wp.class.php:1139
885
+ msgid "No Legacy Tags Found"
886
+ msgstr "Käytöstä poistuvia tägejä ei löytynyt"
887
+
888
+ # @ crayon-syntax-highlighter
889
+ #: crayon_settings_wp.class.php:1149
890
+ msgid "Display Tag Editor settings on the frontend"
891
+ msgstr "Näytä tägimuokkaimen asetukset pääpalvelussa (frontend)"
892
+
893
+ # @ crayon-syntax-highlighter
894
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:195
895
+ msgid "Don't Highlight"
896
+ msgstr "Älä korosta"
897
+
898
+ # @ crayon-syntax-highlighter
899
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:203
900
+ msgid "Line Range"
901
+ msgstr "Rivialue"
902
+
903
+ # @ crayon-syntax-highlighter
904
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:204
905
+ msgid "(e.g. 3-5 or 3)"
906
+ msgstr "(esim. 3 tai 3-5)"
907
+
908
+ # @ crayon-syntax-highlighter
909
+ #: crayon_formatter.class.php:298 crayon_formatter.class.php:302
910
+ msgid "Expand Code"
911
+ msgstr "Laajenna koodi"
912
+
913
+ # @ crayon-syntax-highlighter
914
+ #: crayon_settings.class.php:229
915
+ msgid "Inline Tag"
916
+ msgstr "Inline-tägi"
917
+
918
+ # @ crayon-syntax-highlighter
919
+ #: crayon_settings.class.php:229
920
+ msgid "Block Tag"
921
+ msgstr "Lohkotägi"
922
+
923
+ # @ crayon-syntax-highlighter
924
+ #: crayon_settings_wp.class.php:137
925
+ msgid "Click To Expand Code"
926
+ msgstr "Laajenna koodi klikkaamalla"
927
+
928
+ # @ crayon-syntax-highlighter
929
+ #: crayon_settings_wp.class.php:179
930
+ msgid "Prompt"
931
+ msgstr "Kehote"
932
+
933
+ # @ crayon-syntax-highlighter
934
+ #: crayon_settings_wp.class.php:180
935
+ msgid "Value"
936
+ msgstr "Arvo"
937
+
938
+ # @ crayon-syntax-highlighter
939
+ #: crayon_settings_wp.class.php:181
940
+ msgid "Alert"
941
+ msgstr "Varoitus"
942
+
943
+ # @ crayon-syntax-highlighter
944
+ #: crayon_settings_wp.class.php:182 crayon_settings_wp.class.php:920
945
+ msgid "No"
946
+ msgstr "Ei"
947
+
948
+ # @ crayon-syntax-highlighter
949
+ #: crayon_settings_wp.class.php:183 crayon_settings_wp.class.php:920
950
+ msgid "Yes"
951
+ msgstr "Kyllä"
952
+
953
+ # @ crayon-syntax-highlighter
954
+ #: crayon_settings_wp.class.php:184
955
+ msgid "Confirm"
956
+ msgstr "Vahvista"
957
+
958
+ # @ crayon-syntax-highlighter
959
+ #: crayon_settings_wp.class.php:185
960
+ msgid "Change Code"
961
+ msgstr "Korvaa koodi"
962
+
963
+ # @ crayon-syntax-highlighter
964
+ #: crayon_settings_wp.class.php:875
965
+ msgid "Refresh"
966
+ msgstr "Virkistä"
967
+
968
+ # @ crayon-syntax-highlighter
969
+ #: crayon_settings_wp.class.php:900
970
+ msgid "ID"
971
+ msgstr ""
972
+
973
+ # @ crayon-syntax-highlighter
974
+ #: crayon_settings_wp.class.php:900
975
+ msgid "Posted"
976
+ msgstr "Julkaistu"
977
+
978
+ # @ crayon-syntax-highlighter
979
+ #: crayon_settings_wp.class.php:900
980
+ msgid "Modifed"
981
+ msgstr "Muokattu"
982
+
983
+ # @ crayon-syntax-highlighter
984
+ #: crayon_settings_wp.class.php:900
985
+ msgid "Contains Legacy Tags?"
986
+ msgstr "Onko poistuvia tägejä?"
987
+
988
+ # @ crayon-syntax-highlighter
989
+ #: crayon_settings_wp.class.php:1015 util/theme-editor/theme_editor.php:199
990
+ msgid "Duplicate"
991
+ msgstr "Tee kopio"
992
+
993
+ # @ crayon-syntax-highlighter
994
+ #: crayon_settings_wp.class.php:1015
995
+ msgid "Submit"
996
+ msgstr "Lähetä"
997
+
998
+ # @ crayon-syntax-highlighter
999
+ #: crayon_settings_wp.class.php:1016 util/theme-editor/theme_editor.php:196
1000
+ msgid "Delete"
1001
+ msgstr "Poista"
1002
+
1003
+ # @ crayon-syntax-highlighter
1004
+ #: crayon_settings_wp.class.php:1020
1005
+ msgid "Duplicate a Stock Theme into a User Theme to allow editing."
1006
+ msgstr "Tee teemasta kopio jota voit muokata."
1007
+
1008
+ # @ crayon-syntax-highlighter
1009
+ #: crayon_settings_wp.class.php:1031
1010
+ #, php-format
1011
+ msgid ""
1012
+ "Change the %1$sfallback language%2$s to change the sample code or %3$schange "
1013
+ "it manually%4$s. Lines 5-7 are marked."
1014
+ msgstr ""
1015
+ "Vaihtamalla %1$soletuskielen%2$s esimerkin koodi muuttuu. Voit myös "
1016
+ "%3$smuuttaa sitä käsin%4$s. Esimerkissä rivit 5-7 ovat korostettuja."
1017
+
1018
+ # @ crayon-syntax-highlighter
1019
+ #: crayon_settings_wp.class.php:1055
1020
+ msgid "Add More"
1021
+ msgstr "Lisää enemmän"
1022
+
1023
+ # @ crayon-syntax-highlighter
1024
+ #: crayon_settings_wp.class.php:1059
1025
+ msgid "Line Height"
1026
+ msgstr "rivin korkeus"
1027
+
1028
+ # @ crayon-syntax-highlighter
1029
+ #: crayon_settings_wp.class.php:1084
1030
+ msgid "Minimize code"
1031
+ msgstr "Minimoi koodi"
1032
+
1033
+ # @ crayon-syntax-highlighter
1034
+ #: crayon_settings_wp.class.php:1085
1035
+ msgid "Expand code beyond page borders on mouseover"
1036
+ msgstr "Salli rivien jatkua alueen yli reunan kun hiiri on alueen päällä"
1037
+
1038
+ # @ crayon-syntax-highlighter
1039
+ #: crayon_settings_wp.class.php:1086
1040
+ msgid "Enable code expanding toggling when possible"
1041
+ msgstr "Salli koodin laajennus ja pienennys kun se on mahdollista"
1042
+
1043
+ # @ crayon-syntax-highlighter
1044
+ #: crayon_settings_wp.class.php:1095
1045
+ msgid "Remove &lt;code&gt; tags surrounding the shortcode content"
1046
+ msgstr "Poista &lt;code&gt; tägit lyhytkoodien sisällön ympäriltä"
1047
+
1048
+ # @ crayon-syntax-highlighter
1049
+ #: crayon_settings_wp.class.php:1109
1050
+ msgid "Capture Inline Tags"
1051
+ msgstr "Käsittele inline-tägit"
1052
+
1053
+ # @ crayon-syntax-highlighter
1054
+ #: crayon_settings_wp.class.php:1111
1055
+ msgid "Capture &lt;code&gt; as"
1056
+ msgstr "Käsittele &lt;code&gt;-tägit kuten"
1057
+
1058
+ # @ crayon-syntax-highlighter
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 "
1066
+ "%stägimuokkainta%s ja muunna poistuvat tägit."
1067
+
1068
+ # @ crayon-syntax-highlighter
1069
+ #: crayon_settings_wp.class.php:1143
1070
+ msgid "Encode"
1071
+ msgstr ""
1072
+
1073
+ # @ crayon-syntax-highlighter
1074
+ #: crayon_settings_wp.class.php:1148
1075
+ msgid ""
1076
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
1077
+ "bbPress)"
1078
+ msgstr "Näytä tägieditori kaikissa TinyMCE:n ilmentymissä (esim. bbPressissä)"
1079
+
1080
+ # @ crayon-syntax-highlighter
1081
+ #. translators: plugin header field 'PluginURI'
1082
+ #: crayon_wp.class.php:0
1083
+ msgid "https://github.com/aramkocharyan/crayon-syntax-highlighter"
1084
+ msgstr ""
1085
+
1086
+ # @ crayon-syntax-highlighter
1087
+ #. translators: plugin header field 'Version'
1088
+ #: crayon_wp.class.php:0
1089
+ msgid "2.4.0"
1090
+ msgstr ""
1091
+
1092
+ # @ crayon-syntax-highlighter
1093
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:180
1094
+ msgid "OK"
1095
+ msgstr "OK"
1096
+
1097
+ # @ crayon-syntax-highlighter
1098
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:182
1099
+ msgid "Cancel"
1100
+ msgstr "Peruuta"
1101
+
1102
+ # @ crayon-syntax-highlighter
1103
+ #: util/theme-editor/theme_editor.php:192
1104
+ msgid "User-Defined Theme"
1105
+ msgstr "Käyttäjän muokkaama teema"
1106
+
1107
+ # @ crayon-syntax-highlighter
1108
+ #: util/theme-editor/theme_editor.php:193
1109
+ msgid "Stock Theme"
1110
+ msgstr "Jakelun mukana tuleva teema"
1111
+
1112
+ # @ crayon-syntax-highlighter
1113
+ #: util/theme-editor/theme_editor.php:194
1114
+ msgid "Success!"
1115
+ msgstr "Onnistui!"
1116
+
1117
+ # @ crayon-syntax-highlighter
1118
+ #: util/theme-editor/theme_editor.php:195
1119
+ msgid "Failed!"
1120
+ msgstr "Epäonnistui!"
1121
+
1122
+ # @ crayon-syntax-highlighter
1123
+ #: util/theme-editor/theme_editor.php:197
1124
+ #, php-format
1125
+ msgid "Are you sure you want to delete the \"%s\" theme?"
1126
+ msgstr "Haluatko varmasti poistaa teeman \"%s\"?"
1127
+
1128
+ # @ crayon-syntax-highlighter
1129
+ #: util/theme-editor/theme_editor.php:198
1130
+ msgid "Delete failed!"
1131
+ msgstr "Poisto epäonnistui!"
1132
+
1133
+ # @ crayon-syntax-highlighter
1134
+ #: util/theme-editor/theme_editor.php:200
1135
+ msgid "New Name"
1136
+ msgstr "Uusi nimi"
1137
+
1138
+ # @ crayon-syntax-highlighter
1139
+ #: util/theme-editor/theme_editor.php:201
1140
+ msgid "Duplicate failed!"
1141
+ msgstr "Kopiointi epäonnistui!"
1142
+
1143
+ # @ crayon-syntax-highlighter
1144
+ #: util/theme-editor/theme_editor.php:202
1145
+ msgid "Please check the log for details."
1146
+ msgstr "Katso yksityiskohdat lokista."
1147
+
1148
+ # @ crayon-syntax-highlighter
1149
+ #: util/theme-editor/theme_editor.php:203
1150
+ msgid "Are you sure you want to discard all changes?"
1151
+ msgstr "Haluatko varmasti hylätä kaikki muutokset?"
1152
+
1153
+ # @ crayon-syntax-highlighter
1154
+ #: util/theme-editor/theme_editor.php:204
1155
+ #, php-format
1156
+ msgid "Editing Theme: %s"
1157
+ msgstr "Muokataan teemaa: %s"
1158
+
1159
+ # @ crayon-syntax-highlighter
1160
+ #: util/theme-editor/theme_editor.php:205
1161
+ #, php-format
1162
+ msgid "Creating Theme: %s"
1163
+ msgstr "Luodaan teema: %s"
1164
+
1165
+ # @ crayon-syntax-highlighter
1166
+ #: util/theme-editor/theme_editor.php:206
1167
+ msgid "Submit Your Theme"
1168
+ msgstr "Tallenna teema"
1169
+
1170
+ # @ crayon-syntax-highlighter
1171
+ #: util/theme-editor/theme_editor.php:207
1172
+ msgid ""
1173
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
1174
+ "email me your theme - make sure it's considerably different from the stock "
1175
+ "themes :)"
1176
+ msgstr ""
1177
+ "Lähetä muokkaamasi teema Crayonille lisättäväksi jakeluun. Teema lähetetään "
1178
+ "minulle sähköpostitse - varmista, että teemasi poikkeaa riittävästi jakelun "
1179
+ "teemoista."
1180
+
1181
+ # @ crayon-syntax-highlighter
1182
+ #: util/theme-editor/theme_editor.php:208
1183
+ msgid "Message"
1184
+ msgstr "Viesti"
1185
+
1186
+ # @ crayon-syntax-highlighter
1187
+ #: util/theme-editor/theme_editor.php:209
1188
+ msgid "Please include this theme in Crayon!"
1189
+ msgstr ""
1190
+
1191
+ # @ crayon-syntax-highlighter
1192
+ #: util/theme-editor/theme_editor.php:210
1193
+ msgid "Submit was successful."
1194
+ msgstr "Lähetys onnistui."
1195
+
1196
+ # @ crayon-syntax-highlighter
1197
+ #: util/theme-editor/theme_editor.php:211
1198
+ msgid "Submit failed!"
1199
+ msgstr "Lähetys epäonnistui!"
1200
+
1201
+ # @ crayon-syntax-highlighter
1202
+ #: util/theme-editor/theme_editor.php:294
1203
+ msgid "Information"
1204
+ msgstr "Tietoa"
1205
+
1206
+ # @ crayon-syntax-highlighter
1207
+ #: util/theme-editor/theme_editor.php:295
1208
+ msgid "Highlighting"
1209
+ msgstr "Korostus"
1210
+
1211
+ # @ crayon-syntax-highlighter
1212
+ #: util/theme-editor/theme_editor.php:296
1213
+ msgid "Frame"
1214
+ msgstr "Kehys"
1215
+
1216
+ # @ crayon-syntax-highlighter
1217
+ #: util/theme-editor/theme_editor.php:298
1218
+ msgid "Line Numbers"
1219
+ msgstr "Rivinumerot"
1220
+
1221
+ # @ crayon-syntax-highlighter
1222
+ #: util/theme-editor/theme_editor.php:301
1223
+ msgid "Background"
1224
+ msgstr "Tausta"
1225
+
1226
+ # @ crayon-syntax-highlighter
1227
+ #: util/theme-editor/theme_editor.php:302
1228
+ msgid "Text"
1229
+ msgstr "Teksti"
1230
+
1231
+ # @ crayon-syntax-highlighter
1232
+ #: util/theme-editor/theme_editor.php:303
1233
+ msgid "Border"
1234
+ msgstr "Reuna"
1235
+
1236
+ # @ crayon-syntax-highlighter
1237
+ #: util/theme-editor/theme_editor.php:304
1238
+ msgid "Top Border"
1239
+ msgstr "Yläreuna"
1240
+
1241
+ # @ crayon-syntax-highlighter
1242
+ #: util/theme-editor/theme_editor.php:305
1243
+ msgid "Bottom Border"
1244
+ msgstr "Alareuna"
1245
+
1246
+ # @ crayon-syntax-highlighter
1247
+ #: util/theme-editor/theme_editor.php:306
1248
+ msgid "Right Border"
1249
+ msgstr "Oikea reuna"
1250
+
1251
+ # @ crayon-syntax-highlighter
1252
+ #: util/theme-editor/theme_editor.php:308
1253
+ msgid "Hover"
1254
+ msgstr "Leijutus"
1255
+
1256
+ # @ crayon-syntax-highlighter
1257
+ #: util/theme-editor/theme_editor.php:309
1258
+ msgid "Active"
1259
+ msgstr "Aktiivinen"
1260
+
1261
+ # @ crayon-syntax-highlighter
1262
+ #: util/theme-editor/theme_editor.php:310
1263
+ msgid "Pressed"
1264
+ msgstr "Painettu"
1265
+
1266
+ # @ crayon-syntax-highlighter
1267
+ #: util/theme-editor/theme_editor.php:311
1268
+ msgid "Pressed & Hover"
1269
+ msgstr "Painettu ja leijutus"
1270
+
1271
+ # @ crayon-syntax-highlighter
1272
+ #: util/theme-editor/theme_editor.php:312
1273
+ msgid "Pressed & Active"
1274
+ msgstr "Painettu ja aktiivinen"
1275
+
1276
+ # @ crayon-syntax-highlighter
1277
+ #: util/theme-editor/theme_editor.php:315
1278
+ msgid "Buttons"
1279
+ msgstr "Napit"
1280
+
1281
+ # @ crayon-syntax-highlighter
1282
+ #: util/theme-editor/theme_editor.php:317
1283
+ msgid "Normal"
1284
+ msgstr "Normaali"
1285
+
1286
+ # @ crayon-syntax-highlighter
1287
+ #: util/theme-editor/theme_editor.php:319
1288
+ msgid "Striped"
1289
+ msgstr "Raidallinen"
1290
+
1291
+ # @ crayon-syntax-highlighter
1292
+ #: util/theme-editor/theme_editor.php:320
1293
+ msgid "Marked"
1294
+ msgstr "Merkitty"
1295
+
1296
+ # @ crayon-syntax-highlighter
1297
+ #: util/theme-editor/theme_editor.php:321
1298
+ msgid "Striped & Marked"
1299
+ msgstr "Raidallinen & merkitty"
1300
+
1301
+ # @ crayon-syntax-highlighter
1302
+ #: util/theme-editor/theme_editor.php:390
1303
+ msgid "Comment"
1304
+ msgstr ""
1305
+
1306
+ # @ crayon-syntax-highlighter
1307
+ #: util/theme-editor/theme_editor.php:391
1308
+ msgid "String"
1309
+ msgstr ""
1310
+
1311
+ # @ crayon-syntax-highlighter
1312
+ #: util/theme-editor/theme_editor.php:392
1313
+ msgid "Preprocessor"
1314
+ msgstr ""
1315
+
1316
+ # @ crayon-syntax-highlighter
1317
+ #: util/theme-editor/theme_editor.php:393
1318
+ msgid "Tag"
1319
+ msgstr ""
1320
+
1321
+ # @ crayon-syntax-highlighter
1322
+ #: util/theme-editor/theme_editor.php:394
1323
+ msgid "Keyword"
1324
+ msgstr ""
1325
+
1326
+ # @ crayon-syntax-highlighter
1327
+ #: util/theme-editor/theme_editor.php:395
1328
+ msgid "Statement"
1329
+ msgstr ""
1330
+
1331
+ # @ crayon-syntax-highlighter
1332
+ #: util/theme-editor/theme_editor.php:396
1333
+ msgid "Reserved"
1334
+ msgstr ""
1335
+
1336
+ # @ crayon-syntax-highlighter
1337
+ #: util/theme-editor/theme_editor.php:397
1338
+ msgid "Type"
1339
+ msgstr ""
1340
+
1341
+ # @ crayon-syntax-highlighter
1342
+ #: util/theme-editor/theme_editor.php:398
1343
+ msgid "Modifier"
1344
+ msgstr ""
1345
+
1346
+ # @ crayon-syntax-highlighter
1347
+ #: util/theme-editor/theme_editor.php:399
1348
+ msgid "Identifier"
1349
+ msgstr ""
1350
+
1351
+ # @ crayon-syntax-highlighter
1352
+ #: util/theme-editor/theme_editor.php:400
1353
+ msgid "Entity"
1354
+ msgstr ""
1355
+
1356
+ # @ crayon-syntax-highlighter
1357
+ #: util/theme-editor/theme_editor.php:401
1358
+ msgid "Variable"
1359
+ msgstr ""
1360
+
1361
+ # @ crayon-syntax-highlighter
1362
+ #: util/theme-editor/theme_editor.php:402
1363
+ msgid "Constant"
1364
+ msgstr ""
1365
+
1366
+ # @ crayon-syntax-highlighter
1367
+ #: util/theme-editor/theme_editor.php:403
1368
+ msgid "Operator"
1369
+ msgstr ""
1370
+
1371
+ # @ crayon-syntax-highlighter
1372
+ #: util/theme-editor/theme_editor.php:404
1373
+ msgid "Symbol"
1374
+ msgstr ""
1375
+
1376
+ # @ crayon-syntax-highlighter
1377
+ #: util/theme-editor/theme_editor.php:405
1378
+ msgid "Notation"
1379
+ msgstr ""
1380
+
1381
+ # @ crayon-syntax-highlighter
1382
+ #: util/theme-editor/theme_editor.php:406
1383
+ msgid "Faded"
1384
+ msgstr ""
1385
+
1386
+ # @ crayon-syntax-highlighter
1387
+ #: util/theme-editor/theme_editor.php:407
1388
+ msgid "HTML"
1389
+ msgstr ""
1390
+
1391
+ # @ crayon-syntax-highlighter
1392
+ #: util/theme-editor/theme_editor.php:408
1393
+ msgid "Unhighlighted"
1394
+ msgstr ""
1395
+
1396
+ # @ crayon-syntax-highlighter
1397
+ #: util/theme-editor/theme_editor.php:542
1398
+ msgid "(Used for Copy/Paste)"
1399
+ msgstr ""
trans/crayon-syntax-highlighter-ko_KR.mo ADDED
Binary file
trans/crayon-syntax-highlighter-ko_KR.po ADDED
@@ -0,0 +1,1364 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Crayon Syntax Highlighter v2.4.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-11 22:35+0900\n"
6
+ "PO-Revision-Date: 2014-04-12 01:05+0900\n"
7
+ "Last-Translator: dokenzy <dokenzy@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: ko_KR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.6.4\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
18
+ "crayon__;crayon_n;crayon_e\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Textdomain-Support: yes\n"
21
+ "X-Poedit-SearchPath-0: ..\n"
22
+
23
+ # @ crayon-syntax-highlighter
24
+ #: ../crayon_formatter.class.php:286
25
+ msgid "Toggle Line Numbers"
26
+ msgstr "줄 번호 토글"
27
+
28
+ # @ crayon-syntax-highlighter
29
+ #: ../crayon_formatter.class.php:290
30
+ msgid "Toggle Plain Code"
31
+ msgstr "일반 코드 토글"
32
+
33
+ # @ crayon-syntax-highlighter
34
+ #: ../crayon_formatter.class.php:294
35
+ msgid "Toggle Line Wrap"
36
+ msgstr "줄 바꿈 토글"
37
+
38
+ # @ crayon-syntax-highlighter
39
+ #: ../crayon_formatter.class.php:298
40
+ msgid "Expand Code"
41
+ msgstr "코드를 펼쳐서 보기"
42
+
43
+ #: ../crayon_formatter.class.php:302
44
+ msgid "Copy"
45
+ msgstr "복사"
46
+
47
+ # @ crayon-syntax-highlighter
48
+ #: ../crayon_formatter.class.php:306
49
+ msgid "Open Code In New Window"
50
+ msgstr "새 창에서 보기"
51
+
52
+ # @ crayon-syntax-highlighter
53
+ #: ../crayon_formatter.class.php:323
54
+ msgid "Contains Mixed Languages"
55
+ msgstr "Contains Mixed Languages"
56
+
57
+ # @ crayon-syntax-highlighter
58
+ #: ../crayon_settings.class.php:151
59
+ msgid "Hourly"
60
+ msgstr "매시간"
61
+
62
+ # @ crayon-syntax-highlighter
63
+ #: ../crayon_settings.class.php:151
64
+ msgid "Daily"
65
+ msgstr "매일"
66
+
67
+ # @ crayon-syntax-highlighter
68
+ #: ../crayon_settings.class.php:152
69
+ msgid "Weekly"
70
+ msgstr "매주"
71
+
72
+ # @ crayon-syntax-highlighter
73
+ #: ../crayon_settings.class.php:152
74
+ msgid "Monthly"
75
+ msgstr "매월"
76
+
77
+ # @ crayon-syntax-highlighter
78
+ #: ../crayon_settings.class.php:153
79
+ msgid "Immediately"
80
+ msgstr "즉시"
81
+
82
+ # @ crayon-syntax-highlighter
83
+ #: ../crayon_settings.class.php:164 ../crayon_settings.class.php:168
84
+ msgid "Max"
85
+ msgstr "최대"
86
+
87
+ # @ crayon-syntax-highlighter
88
+ #: ../crayon_settings.class.php:164 ../crayon_settings.class.php:168
89
+ msgid "Min"
90
+ msgstr "최소"
91
+
92
+ # @ crayon-syntax-highlighter
93
+ #: ../crayon_settings.class.php:164 ../crayon_settings.class.php:168
94
+ msgid "Static"
95
+ msgstr "고정"
96
+
97
+ # @ crayon-syntax-highlighter
98
+ #: ../crayon_settings.class.php:166 ../crayon_settings.class.php:170
99
+ #: ../crayon_settings_wp.class.php:774 ../crayon_settings_wp.class.php:783
100
+ #: ../crayon_settings_wp.class.php:1062 ../crayon_settings_wp.class.php:1064
101
+ msgid "Pixels"
102
+ msgstr "픽셀"
103
+
104
+ # @ crayon-syntax-highlighter
105
+ #: ../crayon_settings.class.php:166 ../crayon_settings.class.php:170
106
+ msgid "Percent"
107
+ msgstr "퍼센트"
108
+
109
+ # @ crayon-syntax-highlighter
110
+ #: ../crayon_settings.class.php:179
111
+ msgid "None"
112
+ msgstr "없음"
113
+
114
+ # @ crayon-syntax-highlighter
115
+ #: ../crayon_settings.class.php:179
116
+ msgid "Left"
117
+ msgstr "왼쪽"
118
+
119
+ # @ crayon-syntax-highlighter
120
+ #: ../crayon_settings.class.php:179
121
+ msgid "Center"
122
+ msgstr "가운데"
123
+
124
+ # @ crayon-syntax-highlighter
125
+ #: ../crayon_settings.class.php:179
126
+ msgid "Right"
127
+ msgstr "오른쪽"
128
+
129
+ # @ crayon-syntax-highlighter
130
+ #: ../crayon_settings.class.php:181 ../crayon_settings.class.php:206
131
+ msgid "On MouseOver"
132
+ msgstr "마우스오버하면"
133
+
134
+ # @ crayon-syntax-highlighter
135
+ #: ../crayon_settings.class.php:181 ../crayon_settings.class.php:187
136
+ msgid "Always"
137
+ msgstr "항상표시"
138
+
139
+ # @ crayon-syntax-highlighter
140
+ #: ../crayon_settings.class.php:181 ../crayon_settings.class.php:187
141
+ msgid "Never"
142
+ msgstr "표시하지 않음"
143
+
144
+ # @ crayon-syntax-highlighter
145
+ #: ../crayon_settings.class.php:187
146
+ msgid "When Found"
147
+ msgstr "언어가 있으면"
148
+
149
+ # @ crayon-syntax-highlighter
150
+ #: ../crayon_settings.class.php:206
151
+ msgid "On Double Click"
152
+ msgstr "더블클릭하면"
153
+
154
+ # @ crayon-syntax-highlighter
155
+ #: ../crayon_settings.class.php:206
156
+ msgid "On Single Click"
157
+ msgstr "마우스클릭하면"
158
+
159
+ # @ crayon-syntax-highlighter
160
+ #: ../crayon_settings.class.php:206
161
+ msgid "Disable Mouse Events"
162
+ msgstr "마우스 이벤트 막기"
163
+
164
+ # @ crayon-syntax-highlighter
165
+ #: ../crayon_settings.class.php:213
166
+ msgid "An error has occurred. Please try again later."
167
+ msgstr "오류가 발생했습니다. 나중에 다시 해보세요."
168
+
169
+ # @ crayon-syntax-highlighter
170
+ #: ../crayon_settings.class.php:229
171
+ msgid "Inline Tag"
172
+ msgstr "인라인 태그"
173
+
174
+ # @ crayon-syntax-highlighter
175
+ #: ../crayon_settings.class.php:229
176
+ msgid "Block Tag"
177
+ msgstr "블록 태그"
178
+
179
+ # @ crayon-syntax-highlighter
180
+ #: ../crayon_settings_wp.class.php:53 ../crayon_settings_wp.class.php:210
181
+ #: ../crayon_settings_wp.class.php:1263
182
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:252
183
+ msgid "Settings"
184
+ msgstr "설정"
185
+
186
+ # @ crayon-syntax-highlighter
187
+ #: ../crayon_settings_wp.class.php:136
188
+ #, php-format
189
+ msgid "Press %s to Copy, %s to Paste"
190
+ msgstr "%s로 복사, %s로 붙여넣기"
191
+
192
+ # @ crayon-syntax-highlighter
193
+ #: ../crayon_settings_wp.class.php:137
194
+ msgid "Click To Expand Code"
195
+ msgstr "Click To Expand Code"
196
+
197
+ # @ crayon-syntax-highlighter
198
+ #: ../crayon_settings_wp.class.php:179
199
+ msgid "Prompt"
200
+ msgstr "Prompt"
201
+
202
+ # @ crayon-syntax-highlighter
203
+ #: ../crayon_settings_wp.class.php:180
204
+ msgid "Value"
205
+ msgstr "값"
206
+
207
+ # @ crayon-syntax-highlighter
208
+ #: ../crayon_settings_wp.class.php:181
209
+ msgid "Alert"
210
+ msgstr "주의"
211
+
212
+ # @ crayon-syntax-highlighter
213
+ #: ../crayon_settings_wp.class.php:182 ../crayon_settings_wp.class.php:922
214
+ msgid "No"
215
+ msgstr "아니요"
216
+
217
+ # @ crayon-syntax-highlighter
218
+ #: ../crayon_settings_wp.class.php:183 ../crayon_settings_wp.class.php:922
219
+ msgid "Yes"
220
+ msgstr "예"
221
+
222
+ # @ crayon-syntax-highlighter
223
+ #: ../crayon_settings_wp.class.php:184
224
+ msgid "Confirm"
225
+ msgstr "Confirm"
226
+
227
+ # @ crayon-syntax-highlighter
228
+ #: ../crayon_settings_wp.class.php:185
229
+ msgid "Change Code"
230
+ msgstr "Change Code"
231
+
232
+ # @ crayon-syntax-highlighter
233
+ #: ../crayon_settings_wp.class.php:193
234
+ msgid "You do not have sufficient permissions to access this page."
235
+ msgstr "이 페이지에 접근할 수 있는 권한이 없습니다."
236
+
237
+ # @ crayon-syntax-highlighter
238
+ #: ../crayon_settings_wp.class.php:225
239
+ msgid "Save Changes"
240
+ msgstr "저장"
241
+
242
+ # @ crayon-syntax-highlighter
243
+ #: ../crayon_settings_wp.class.php:233
244
+ msgid "Reset Settings"
245
+ msgstr "재설정"
246
+
247
+ # @ crayon-syntax-highlighter
248
+ #: ../crayon_settings_wp.class.php:491
249
+ msgid "General"
250
+ msgstr "일반"
251
+
252
+ # @ crayon-syntax-highlighter
253
+ #: ../crayon_settings_wp.class.php:492
254
+ msgid "Theme"
255
+ msgstr "테마"
256
+
257
+ # @ crayon-syntax-highlighter
258
+ #: ../crayon_settings_wp.class.php:493
259
+ msgid "Font"
260
+ msgstr "글꼴"
261
+
262
+ # @ crayon-syntax-highlighter
263
+ #: ../crayon_settings_wp.class.php:494
264
+ msgid "Metrics"
265
+ msgstr "크기"
266
+
267
+ # @ crayon-syntax-highlighter
268
+ #: ../crayon_settings_wp.class.php:495
269
+ #: ../util/theme-editor/theme_editor.php:299
270
+ msgid "Toolbar"
271
+ msgstr "툴바"
272
+
273
+ # @ crayon-syntax-highlighter
274
+ #: ../crayon_settings_wp.class.php:496
275
+ #: ../util/theme-editor/theme_editor.php:297
276
+ msgid "Lines"
277
+ msgstr "줄"
278
+
279
+ # @ crayon-syntax-highlighter
280
+ #: ../crayon_settings_wp.class.php:497
281
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:212
282
+ msgid "Code"
283
+ msgstr "코드"
284
+
285
+ # @ crayon-syntax-highlighter
286
+ #: ../crayon_settings_wp.class.php:498
287
+ msgid "Tags"
288
+ msgstr "태그"
289
+
290
+ # @ crayon-syntax-highlighter
291
+ #: ../crayon_settings_wp.class.php:499
292
+ msgid "Languages"
293
+ msgstr "언어"
294
+
295
+ # @ crayon-syntax-highlighter
296
+ #: ../crayon_settings_wp.class.php:500
297
+ msgid "Files"
298
+ msgstr "파일"
299
+
300
+ # @ crayon-syntax-highlighter
301
+ #: ../crayon_settings_wp.class.php:501
302
+ msgid "Posts"
303
+ msgstr "글"
304
+
305
+ # @ crayon-syntax-highlighter
306
+ #: ../crayon_settings_wp.class.php:502
307
+ msgid "Tag Editor"
308
+ msgstr "태그 편집기"
309
+
310
+ # @ crayon-syntax-highlighter
311
+ #: ../crayon_settings_wp.class.php:503
312
+ msgid "Misc"
313
+ msgstr "기타"
314
+
315
+ # @ crayon-syntax-highlighter
316
+ #: ../crayon_settings_wp.class.php:506
317
+ msgid "Debug"
318
+ msgstr "디버그"
319
+
320
+ # @ crayon-syntax-highlighter
321
+ #: ../crayon_settings_wp.class.php:507
322
+ msgid "Errors"
323
+ msgstr "오류"
324
+
325
+ # @ crayon-syntax-highlighter
326
+ #: ../crayon_settings_wp.class.php:508
327
+ msgid "Log"
328
+ msgstr "로그"
329
+
330
+ # @ crayon-syntax-highlighter
331
+ #: ../crayon_settings_wp.class.php:511
332
+ msgid "About"
333
+ msgstr "Crayon에 대해"
334
+
335
+ # @ crayon-syntax-highlighter
336
+ #: ../crayon_settings_wp.class.php:751
337
+ msgid "Height"
338
+ msgstr "높이"
339
+
340
+ # @ crayon-syntax-highlighter
341
+ #: ../crayon_settings_wp.class.php:757
342
+ msgid "Width"
343
+ msgstr "너비"
344
+
345
+ # @ crayon-syntax-highlighter
346
+ #: ../crayon_settings_wp.class.php:763
347
+ msgid "Top Margin"
348
+ msgstr "윗쪽 여백"
349
+
350
+ # @ crayon-syntax-highlighter
351
+ #: ../crayon_settings_wp.class.php:764
352
+ msgid "Bottom Margin"
353
+ msgstr "아랫쪽 여백"
354
+
355
+ # @ crayon-syntax-highlighter
356
+ #: ../crayon_settings_wp.class.php:765 ../crayon_settings_wp.class.php:770
357
+ msgid "Left Margin"
358
+ msgstr "왼쪽 여백"
359
+
360
+ # @ crayon-syntax-highlighter
361
+ #: ../crayon_settings_wp.class.php:766 ../crayon_settings_wp.class.php:770
362
+ msgid "Right Margin"
363
+ msgstr "오른쪽 여백"
364
+
365
+ # @ crayon-syntax-highlighter
366
+ #: ../crayon_settings_wp.class.php:776
367
+ msgid "Horizontal Alignment"
368
+ msgstr "수평 정렬"
369
+
370
+ # @ crayon-syntax-highlighter
371
+ #: ../crayon_settings_wp.class.php:779
372
+ msgid "Allow floating elements to surround Crayon"
373
+ msgstr "Crayon 주변에 요소를 플로팅하는 것 허용"
374
+
375
+ # @ crayon-syntax-highlighter
376
+ #: ../crayon_settings_wp.class.php:781
377
+ msgid "Inline Margin"
378
+ msgstr "인라인 여백"
379
+
380
+ # @ crayon-syntax-highlighter
381
+ #: ../crayon_settings_wp.class.php:789
382
+ msgid "Display the Toolbar"
383
+ msgstr "툴바 보이기"
384
+
385
+ # @ crayon-syntax-highlighter
386
+ #: ../crayon_settings_wp.class.php:792
387
+ msgid "Overlay the toolbar on code rather than push it down when possible"
388
+ msgstr "Overlay the toolbar on code rather than push it down when possible"
389
+
390
+ # @ crayon-syntax-highlighter
391
+ #: ../crayon_settings_wp.class.php:793
392
+ msgid "Toggle the toolbar on single click when it is overlayed"
393
+ msgstr "오버레이됐을 때 클릭해서 툴바 토글"
394
+
395
+ # @ crayon-syntax-highlighter
396
+ #: ../crayon_settings_wp.class.php:794
397
+ msgid "Delay hiding the toolbar on MouseOut"
398
+ msgstr "마우스아웃될 때 툴바 천천히 숨기기"
399
+
400
+ # @ crayon-syntax-highlighter
401
+ #: ../crayon_settings_wp.class.php:796
402
+ msgid "Display the title when provided"
403
+ msgstr "제목이 있으면 보이기"
404
+
405
+ # @ crayon-syntax-highlighter
406
+ #: ../crayon_settings_wp.class.php:797
407
+ msgid "Display the language"
408
+ msgstr "언어 보이기"
409
+
410
+ # @ crayon-syntax-highlighter
411
+ #: ../crayon_settings_wp.class.php:804
412
+ msgid "Display striped code lines"
413
+ msgstr "줄 무늬 보이기"
414
+
415
+ # @ crayon-syntax-highlighter
416
+ #: ../crayon_settings_wp.class.php:805
417
+ msgid "Enable line marking for important lines"
418
+ msgstr "줄 강조 표시"
419
+
420
+ # @ crayon-syntax-highlighter
421
+ #: ../crayon_settings_wp.class.php:806
422
+ msgid "Enable line ranges for showing only parts of code"
423
+ msgstr "줄 범위에 해당하는 코드만 보여주기"
424
+
425
+ # @ crayon-syntax-highlighter
426
+ #: ../crayon_settings_wp.class.php:807
427
+ msgid "Display line numbers by default"
428
+ msgstr "기본적으로 줄번호를 보이기"
429
+
430
+ # @ crayon-syntax-highlighter
431
+ #: ../crayon_settings_wp.class.php:808
432
+ msgid "Enable line number toggling"
433
+ msgstr "줄 번호를 토글 할 수 있게 하기"
434
+
435
+ # @ crayon-syntax-highlighter
436
+ #: ../crayon_settings_wp.class.php:809
437
+ msgid "Wrap lines by default"
438
+ msgstr "기본적으로 줄바꿈하기"
439
+
440
+ # @ crayon-syntax-highlighter
441
+ #: ../crayon_settings_wp.class.php:810
442
+ msgid "Enable line wrap toggling"
443
+ msgstr "줄 바꿈 토글 허용"
444
+
445
+ # @ crayon-syntax-highlighter
446
+ #: ../crayon_settings_wp.class.php:811
447
+ msgid "Start line numbers from"
448
+ msgstr "시작하는 줄번호 지정"
449
+
450
+ # @ crayon-syntax-highlighter
451
+ #: ../crayon_settings_wp.class.php:822
452
+ msgid "When no language is provided, use the fallback"
453
+ msgstr "언어가 정해지지 않으면 이 언어로 설정"
454
+
455
+ # @ crayon-syntax-highlighter
456
+ #: ../crayon_settings_wp.class.php:828
457
+ #, php-format
458
+ msgid "%d language has been detected."
459
+ msgstr "%d개의 언어가 발견되었습니다."
460
+
461
+ # @ crayon-syntax-highlighter
462
+ #: ../crayon_settings_wp.class.php:829
463
+ msgid "Parsing was successful"
464
+ msgstr "파싱을 성공했습니다."
465
+
466
+ # @ crayon-syntax-highlighter
467
+ #: ../crayon_settings_wp.class.php:829
468
+ msgid "Parsing was unsuccessful"
469
+ msgstr "파싱을 실패했습니다."
470
+
471
+ # @ crayon-syntax-highlighter
472
+ #: ../crayon_settings_wp.class.php:835
473
+ #, php-format
474
+ msgid "The selected language with id %s could not be loaded"
475
+ msgstr "선택한 폰트 ID %s를 가져올 수 없습니다."
476
+
477
+ # @ crayon-syntax-highlighter
478
+ #: ../crayon_settings_wp.class.php:838
479
+ msgid "Show Languages"
480
+ msgstr "언어 보이기"
481
+
482
+ # @ crayon-syntax-highlighter
483
+ #: ../crayon_settings_wp.class.php:875
484
+ msgid "Show Crayon Posts"
485
+ msgstr "Crayon이 있는 글 보기"
486
+
487
+ # @ crayon-syntax-highlighter
488
+ #: ../crayon_settings_wp.class.php:876
489
+ msgid "Refresh"
490
+ msgstr "새로고침"
491
+
492
+ # @ crayon-syntax-highlighter
493
+ #: ../crayon_settings_wp.class.php:902
494
+ msgid "ID"
495
+ msgstr "ID"
496
+
497
+ # @ crayon-syntax-highlighter
498
+ #: ../crayon_settings_wp.class.php:902
499
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:189
500
+ #: ../util/theme-editor/theme_editor.php:314
501
+ msgid "Title"
502
+ msgstr "제목"
503
+
504
+ # @ crayon-syntax-highlighter
505
+ #: ../crayon_settings_wp.class.php:902
506
+ msgid "Posted"
507
+ msgstr "작성시간"
508
+
509
+ # @ crayon-syntax-highlighter
510
+ #: ../crayon_settings_wp.class.php:902
511
+ msgid "Modifed"
512
+ msgstr "고친 시간"
513
+
514
+ # @ crayon-syntax-highlighter
515
+ #: ../crayon_settings_wp.class.php:902
516
+ msgid "Contains Legacy Tags?"
517
+ msgstr "Contains Legacy Tags?"
518
+
519
+ # @ crayon-syntax-highlighter
520
+ #: ../crayon_settings_wp.class.php:1017
521
+ msgid "Edit"
522
+ msgstr "편집"
523
+
524
+ # @ crayon-syntax-highlighter
525
+ #: ../crayon_settings_wp.class.php:1017
526
+ #: ../util/theme-editor/theme_editor.php:199
527
+ msgid "Duplicate"
528
+ msgstr "복제"
529
+
530
+ # @ crayon-syntax-highlighter
531
+ #: ../crayon_settings_wp.class.php:1017
532
+ msgid "Submit"
533
+ msgstr "전송"
534
+
535
+ # @ crayon-syntax-highlighter
536
+ #: ../crayon_settings_wp.class.php:1018
537
+ #: ../util/theme-editor/theme_editor.php:196
538
+ msgid "Delete"
539
+ msgstr "삭제"
540
+
541
+ # @ crayon-syntax-highlighter
542
+ #: ../crayon_settings_wp.class.php:1020
543
+ msgid "Loading..."
544
+ msgstr "로딩..."
545
+
546
+ # @ crayon-syntax-highlighter
547
+ #: ../crayon_settings_wp.class.php:1022
548
+ msgid "Duplicate a Stock Theme into a User Theme to allow editing."
549
+ msgstr "갖고 있는 테마를 편집 권한이 있는 테마로 복제하기."
550
+
551
+ # @ crayon-syntax-highlighter
552
+ #: ../crayon_settings_wp.class.php:1033
553
+ #, php-format
554
+ msgid ""
555
+ "Change the %1$sfallback language%2$s to change the sample code or %3$schange "
556
+ "it manually%4$s. Lines 5-7 are marked."
557
+ msgstr ""
558
+ "Change the %1$sfallback language%2$s to change the sample code or %3$schange "
559
+ "it manually%4$s. Lines 5-7 are marked."
560
+
561
+ # @ crayon-syntax-highlighter
562
+ #: ../crayon_settings_wp.class.php:1040
563
+ msgid "Enable Live Preview"
564
+ msgstr "바로보기 켜기"
565
+
566
+ # @ crayon-syntax-highlighter
567
+ #: ../crayon_settings_wp.class.php:1042
568
+ msgid "Enqueue themes in the header (more efficient)."
569
+ msgstr "Enqueue themes in the header (more efficient)."
570
+
571
+ # @ crayon-syntax-highlighter
572
+ #: ../crayon_settings_wp.class.php:1045
573
+ #, php-format
574
+ msgid "The selected theme with id %s could not be loaded"
575
+ msgstr "선택한 id%s 테마를 가져올 수 없습니다."
576
+
577
+ # @ crayon-syntax-highlighter
578
+ #: ../crayon_settings_wp.class.php:1060
579
+ msgid "Custom Font Size"
580
+ msgstr "폰트 크기 지정"
581
+
582
+ # @ crayon-syntax-highlighter
583
+ #: ../crayon_settings_wp.class.php:1062
584
+ msgid "Line Height"
585
+ msgstr "줄 간격"
586
+
587
+ # @ crayon-syntax-highlighter
588
+ #: ../crayon_settings_wp.class.php:1067
589
+ #, php-format
590
+ msgid "The selected font with id %s could not be loaded"
591
+ msgstr "선택한 폰트 ID %s를 가져올 수 없습니다."
592
+
593
+ # @ crayon-syntax-highlighter
594
+ #: ../crayon_settings_wp.class.php:1073
595
+ msgid "Enqueue fonts in the header (more efficient)."
596
+ msgstr "Enqueue fonts in the header (more efficient)."
597
+
598
+ # @ crayon-syntax-highlighter
599
+ #: ../crayon_settings_wp.class.php:1078
600
+ msgid "Enable plain code view and display"
601
+ msgstr "일반 코드로 보여주기"
602
+
603
+ # @ crayon-syntax-highlighter
604
+ #: ../crayon_settings_wp.class.php:1081
605
+ msgid "Enable plain code toggling"
606
+ msgstr "일반 코드 토글 허용"
607
+
608
+ # @ crayon-syntax-highlighter
609
+ #: ../crayon_settings_wp.class.php:1082
610
+ msgid "Show the plain code by default"
611
+ msgstr "기본적으로 일반 코드로 보이기"
612
+
613
+ # @ crayon-syntax-highlighter
614
+ #: ../crayon_settings_wp.class.php:1083
615
+ msgid "Enable code copy/paste"
616
+ msgstr "코드 복사/붙여넣기 허용"
617
+
618
+ # @ crayon-syntax-highlighter
619
+ #: ../crayon_settings_wp.class.php:1085
620
+ msgid "Enable opening code in a window"
621
+ msgstr "새 창에서 코드열기 허용"
622
+
623
+ # @ crayon-syntax-highlighter
624
+ #: ../crayon_settings_wp.class.php:1086
625
+ msgid "Always display scrollbars"
626
+ msgstr "스크롤바를 항상 표시"
627
+
628
+ # @ crayon-syntax-highlighter
629
+ #: ../crayon_settings_wp.class.php:1087
630
+ msgid "Minimize code"
631
+ msgstr "코드 숨기기"
632
+
633
+ # @ crayon-syntax-highlighter
634
+ #: ../crayon_settings_wp.class.php:1088
635
+ msgid "Expand code beyond page borders on mouseover"
636
+ msgstr "마우스오버시 페이지 경계를 넘어 코드 확장하기"
637
+
638
+ # @ crayon-syntax-highlighter
639
+ #: ../crayon_settings_wp.class.php:1089
640
+ msgid "Enable code expanding toggling when possible"
641
+ msgstr "코드를 확장할 수 있으면 토글 허용"
642
+
643
+ # @ crayon-syntax-highlighter
644
+ #: ../crayon_settings_wp.class.php:1092
645
+ msgid "Decode HTML entities in code"
646
+ msgstr "Decode HTML entities in code"
647
+
648
+ # @ crayon-syntax-highlighter
649
+ #: ../crayon_settings_wp.class.php:1094
650
+ msgid "Decode HTML entities in attributes"
651
+ msgstr "Decode HTML entities in attributes"
652
+
653
+ # @ crayon-syntax-highlighter
654
+ #: ../crayon_settings_wp.class.php:1096
655
+ msgid "Remove whitespace surrounding the shortcode content"
656
+ msgstr "인라인 코드 주위의 공백 제거"
657
+
658
+ # @ crayon-syntax-highlighter
659
+ #: ../crayon_settings_wp.class.php:1098
660
+ msgid "Remove &lt;code&gt; tags surrounding the shortcode content"
661
+ msgstr "인라인 코드 주위의 &lt;code&gt; 태그 제거"
662
+
663
+ # @ crayon-syntax-highlighter
664
+ #: ../crayon_settings_wp.class.php:1099
665
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
666
+ msgstr "구분기호와 태그로 여러 언어 강조"
667
+
668
+ # @ crayon-syntax-highlighter
669
+ #: ../crayon_settings_wp.class.php:1101
670
+ msgid "Show Mixed Language Icon (+)"
671
+ msgstr "여러 언어 아이콘 보이기 (+)"
672
+
673
+ # @ crayon-syntax-highlighter
674
+ #: ../crayon_settings_wp.class.php:1103
675
+ msgid "Tab size in spaces"
676
+ msgstr "탭 크기"
677
+
678
+ # @ crayon-syntax-highlighter
679
+ #: ../crayon_settings_wp.class.php:1105
680
+ msgid "Blank lines before code:"
681
+ msgstr "코드 앞에 빈 줄 넣기"
682
+
683
+ # @ crayon-syntax-highlighter
684
+ #: ../crayon_settings_wp.class.php:1107
685
+ msgid "Blank lines after code:"
686
+ msgstr "코드 뒤에 빈 줄 넣기"
687
+
688
+ # @ crayon-syntax-highlighter
689
+ #: ../crayon_settings_wp.class.php:1112
690
+ msgid "Capture Inline Tags"
691
+ msgstr "Capture Inline Tags"
692
+
693
+ # @ crayon-syntax-highlighter
694
+ #: ../crayon_settings_wp.class.php:1113
695
+ msgid "Wrap Inline Tags"
696
+ msgstr "인라인 태그 줄바꿈"
697
+
698
+ # @ crayon-syntax-highlighter
699
+ #: ../crayon_settings_wp.class.php:1114
700
+ msgid "Capture &lt;code&gt; as"
701
+ msgstr "Capture &lt;code&gt; as"
702
+
703
+ # @ crayon-syntax-highlighter
704
+ #: ../crayon_settings_wp.class.php:1118
705
+ msgid "Capture `backquotes` as &lt;code&gt;"
706
+ msgstr "Capture `backquotes` as &lt;code&gt;"
707
+
708
+ # @ crayon-syntax-highlighter
709
+ #: ../crayon_settings_wp.class.php:1119
710
+ msgid "Capture &lt;pre&gt; tags as Crayons"
711
+ msgstr "Capture &lt;pre&gt; tags as Crayons"
712
+
713
+ # @ 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 %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
724
+ #: ../crayon_settings_wp.class.php:1122
725
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
726
+ msgstr "Capture Mini Tags like [php][/php] as Crayons."
727
+
728
+ # @ crayon-syntax-highlighter
729
+ #: ../crayon_settings_wp.class.php:1123
730
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
731
+ msgstr "Capture Inline Tags like {php}{/php} inside sentences."
732
+
733
+ # @ crayon-syntax-highlighter
734
+ #: ../crayon_settings_wp.class.php:1124
735
+ msgid "Enable [plain][/plain] tag."
736
+ msgstr "Enable [plain][/plain] tag."
737
+
738
+ # @ crayon-syntax-highlighter
739
+ #: ../crayon_settings_wp.class.php:1129
740
+ msgid ""
741
+ "When loading local files and a relative path is given for the URL, use the "
742
+ "absolute path"
743
+ msgstr "로컬 파일을 로딩하거나 URL을 상대주소로 입력했을 때 절대 경로 사용"
744
+
745
+ # @ crayon-syntax-highlighter
746
+ #: ../crayon_settings_wp.class.php:1132
747
+ msgid "Followed by your relative URL."
748
+ msgstr "상대 URL 따르기"
749
+
750
+ # @ crayon-syntax-highlighter
751
+ #: ../crayon_settings_wp.class.php:1139
752
+ msgid "Convert Legacy Tags"
753
+ msgstr "레거시 태그로 변환"
754
+
755
+ # @ crayon-syntax-highlighter
756
+ #: ../crayon_settings_wp.class.php:1142
757
+ msgid "No Legacy Tags Found"
758
+ msgstr "No Legacy Tags Found"
759
+
760
+ # @ crayon-syntax-highlighter
761
+ #: ../crayon_settings_wp.class.php:1146
762
+ msgid "Encode"
763
+ msgstr "Encode"
764
+
765
+ # @ crayon-syntax-highlighter
766
+ #: ../crayon_settings_wp.class.php:1148
767
+ #, php-format
768
+ msgid ""
769
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
770
+ "attribute"
771
+ msgstr ""
772
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
773
+ "attribute"
774
+
775
+ # @ crayon-syntax-highlighter
776
+ #: ../crayon_settings_wp.class.php:1151
777
+ msgid ""
778
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
779
+ "bbPress)"
780
+ msgstr ""
781
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
782
+ "bbPress)"
783
+
784
+ # @ crayon-syntax-highlighter
785
+ #: ../crayon_settings_wp.class.php:1152
786
+ msgid "Display Tag Editor settings on the frontend"
787
+ msgstr "Display Tag Editor settings on the frontend"
788
+
789
+ # @ crayon-syntax-highlighter
790
+ #: ../crayon_settings_wp.class.php:1156
791
+ msgid "Clear the cache used to store remote code requests"
792
+ msgstr "외부에서 요청한 코드를 저장하기 위해 사용한 캐시 지우기"
793
+
794
+ # @ crayon-syntax-highlighter
795
+ #: ../crayon_settings_wp.class.php:1158
796
+ msgid "Clear Now"
797
+ msgstr "지금 지우기"
798
+
799
+ # @ crayon-syntax-highlighter
800
+ #: ../crayon_settings_wp.class.php:1159
801
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
802
+ msgstr "필요할 때만 Crayon의 CSS와 자바스크립트를 읽도록 함"
803
+
804
+ # @ crayon-syntax-highlighter
805
+ #: ../crayon_settings_wp.class.php:1160
806
+ msgid "Disable enqueuing for page templates that may contain The Loop."
807
+ msgstr "Disable enqueuing for page templates that may contain The Loop."
808
+
809
+ # @ crayon-syntax-highlighter
810
+ #: ../crayon_settings_wp.class.php:1161
811
+ msgid "Allow Crayons inside comments"
812
+ msgstr "Allow Crayons inside comments"
813
+
814
+ # @ crayon-syntax-highlighter
815
+ #: ../crayon_settings_wp.class.php:1162
816
+ msgid "Remove Crayons from excerpts"
817
+ msgstr "Remove Crayons from excerpts"
818
+
819
+ # @ crayon-syntax-highlighter
820
+ #: ../crayon_settings_wp.class.php:1163
821
+ msgid "Load Crayons only from the main Wordpress query"
822
+ msgstr "주 워드프레스 요청에 대해서만 Crayons 불러오기"
823
+
824
+ # @ crayon-syntax-highlighter
825
+ #: ../crayon_settings_wp.class.php:1164
826
+ msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
827
+ msgstr "터치스크린 장치에서 마우스 제스처 비활성화(예: 마우스오버)"
828
+
829
+ # @ crayon-syntax-highlighter
830
+ #: ../crayon_settings_wp.class.php:1165
831
+ msgid "Disable animations"
832
+ msgstr "애니메이션효과 비활성화"
833
+
834
+ # @ crayon-syntax-highlighter
835
+ #: ../crayon_settings_wp.class.php:1166
836
+ msgid "Disable runtime stats"
837
+ msgstr "런타임 통계 비활성화"
838
+
839
+ # @ crayon-syntax-highlighter
840
+ #: ../crayon_settings_wp.class.php:1172
841
+ msgid "Log errors for individual Crayons"
842
+ msgstr "각 Crayon 오류마다 로그 남기기"
843
+
844
+ # @ crayon-syntax-highlighter
845
+ #: ../crayon_settings_wp.class.php:1173
846
+ msgid "Log system-wide errors"
847
+ msgstr "시스템 전체 오류 로그남기기"
848
+
849
+ # @ crayon-syntax-highlighter
850
+ #: ../crayon_settings_wp.class.php:1174
851
+ msgid "Display custom message for errors"
852
+ msgstr "사용자 지정 오류 표시"
853
+
854
+ # @ crayon-syntax-highlighter
855
+ #: ../crayon_settings_wp.class.php:1186
856
+ msgid "Show Log"
857
+ msgstr "로그 보이기"
858
+
859
+ # @ crayon-syntax-highlighter
860
+ #: ../crayon_settings_wp.class.php:1186
861
+ msgid "Hide Log"
862
+ msgstr "로그 숨기기"
863
+
864
+ # @ crayon-syntax-highlighter
865
+ #: ../crayon_settings_wp.class.php:1188
866
+ msgid "Clear Log"
867
+ msgstr "로그 지우기"
868
+
869
+ # @ crayon-syntax-highlighter
870
+ #: ../crayon_settings_wp.class.php:1189
871
+ msgid "Email Admin"
872
+ msgstr "관리자에게 이메일 보내기"
873
+
874
+ # @ crayon-syntax-highlighter
875
+ #: ../crayon_settings_wp.class.php:1191
876
+ msgid "Email Developer"
877
+ msgstr "개발자에게 이메일 보내기"
878
+
879
+ # @ crayon-syntax-highlighter
880
+ #: ../crayon_settings_wp.class.php:1193
881
+ msgid "The log is currently empty."
882
+ msgstr "로그가 현재 비어있습니다."
883
+
884
+ # @ crayon-syntax-highlighter
885
+ #: ../crayon_settings_wp.class.php:1195
886
+ msgid "The log file exists and is writable."
887
+ msgstr "로그 파일이 있고 쓸 수 있습니다."
888
+
889
+ # @ crayon-syntax-highlighter
890
+ #: ../crayon_settings_wp.class.php:1195
891
+ msgid "The log file exists and is not writable."
892
+ msgstr "로그 파일은 있지만 쓸 수는 없습니다."
893
+
894
+ # @ crayon-syntax-highlighter
895
+ #: ../crayon_settings_wp.class.php:1197
896
+ msgid "The log file does not exist and is not writable."
897
+ msgstr "로그 파일도 없고 쓸 수도 없습니다."
898
+
899
+ # @ crayon-syntax-highlighter
900
+ #: ../crayon_settings_wp.class.php:1207
901
+ msgid "Version"
902
+ msgstr "버전"
903
+
904
+ # @ crayon-syntax-highlighter
905
+ #: ../crayon_settings_wp.class.php:1209
906
+ msgid "Developer"
907
+ msgstr "개발자"
908
+
909
+ # @ crayon-syntax-highlighter
910
+ #: ../crayon_settings_wp.class.php:1210
911
+ msgid "Translators"
912
+ msgstr "번역한 사람"
913
+
914
+ # @ crayon-syntax-highlighter
915
+ #: ../crayon_settings_wp.class.php:1257
916
+ msgid "?"
917
+ msgstr "?"
918
+
919
+ # @ crayon-syntax-highlighter
920
+ #: ../crayon_settings_wp.class.php:1264
921
+ #: ../util/theme-editor/theme_editor.php:336
922
+ msgid "Theme Editor"
923
+ msgstr "테마 편집기"
924
+
925
+ # @ crayon-syntax-highlighter
926
+ #: ../crayon_settings_wp.class.php:1265
927
+ msgid "Donate"
928
+ msgstr "기부"
929
+
930
+ # @ crayon-syntax-highlighter
931
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:62
932
+ msgid "Add Crayon Code"
933
+ msgstr "크래용 코드 추가"
934
+
935
+ # @ crayon-syntax-highlighter
936
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:63
937
+ msgid "Edit Crayon Code"
938
+ msgstr "코드 편집"
939
+
940
+ # @ crayon-syntax-highlighter
941
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:64
942
+ msgid "Add"
943
+ msgstr "추가"
944
+
945
+ # @ crayon-syntax-highlighter
946
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:65
947
+ #: ../util/theme-editor/theme_editor.php:352
948
+ msgid "Save"
949
+ msgstr "저장"
950
+
951
+ # @ crayon-syntax-highlighter
952
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:180
953
+ msgid "OK"
954
+ msgstr "확인"
955
+
956
+ # @ crayon-syntax-highlighter
957
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:182
958
+ msgid "Cancel"
959
+ msgstr "취소"
960
+
961
+ # @ crayon-syntax-highlighter
962
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:191
963
+ msgid "A short description"
964
+ msgstr "간단한 설명"
965
+
966
+ # @ crayon-syntax-highlighter
967
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:193
968
+ #: ../util/theme-editor/theme_editor.php:318
969
+ msgid "Inline"
970
+ msgstr "인라인"
971
+
972
+ # @ crayon-syntax-highlighter
973
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:195
974
+ msgid "Don't Highlight"
975
+ msgstr "문법 강조 안하기"
976
+
977
+ # @ crayon-syntax-highlighter
978
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:200
979
+ #: ../util/theme-editor/theme_editor.php:322
980
+ msgid "Language"
981
+ msgstr "언어"
982
+
983
+ # @ crayon-syntax-highlighter
984
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:203
985
+ msgid "Line Range"
986
+ msgstr "줄 범위"
987
+
988
+ # @ crayon-syntax-highlighter
989
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:204
990
+ msgid "(e.g. 3-5 or 3)"
991
+ msgstr "(예. 3-5 또는 3)"
992
+
993
+ # @ crayon-syntax-highlighter
994
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:205
995
+ msgid "Marked Lines"
996
+ msgstr "줄 강조"
997
+
998
+ # @ crayon-syntax-highlighter
999
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:206
1000
+ msgid "(e.g. 1,2,3-5)"
1001
+ msgstr "(예. 1,2,3-5)"
1002
+
1003
+ # @ crayon-syntax-highlighter
1004
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:215
1005
+ msgid "Clear"
1006
+ msgstr "지우기"
1007
+
1008
+ # @ crayon-syntax-highlighter
1009
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:219
1010
+ msgid "Paste your code here, or type it in manually."
1011
+ msgstr "여기에 코드를 붙여넣거나 직접 입력하세요."
1012
+
1013
+ # @ crayon-syntax-highlighter
1014
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:223
1015
+ msgid "URL"
1016
+ msgstr "URL"
1017
+
1018
+ # @ crayon-syntax-highlighter
1019
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:225
1020
+ msgid "Relative local path or absolute URL"
1021
+ msgstr "상대 로컬 경로나 절대 URL"
1022
+
1023
+ # @ crayon-syntax-highlighter
1024
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:228
1025
+ msgid ""
1026
+ "If the URL fails to load, the code above will be shown instead. If no code "
1027
+ "exists, an error is shown."
1028
+ msgstr ""
1029
+ "If the URL fails to load, the code above will be shown instead. If no code "
1030
+ "exists, an error is shown."
1031
+
1032
+ # @ crayon-syntax-highlighter
1033
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:230
1034
+ #, php-format
1035
+ msgid ""
1036
+ "If a relative local path is given it will be appended to %s - which is "
1037
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
1038
+ msgstr ""
1039
+ "If a relative local path is given it will be appended to %s - which is "
1040
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
1041
+
1042
+ # @ crayon-syntax-highlighter
1043
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:257
1044
+ msgid "Change the following settings to override their global values."
1045
+ msgstr "Change the following settings to override their global values."
1046
+
1047
+ # @ crayon-syntax-highlighter
1048
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:259
1049
+ msgid "Only changes (shown yellow) are applied."
1050
+ msgstr "Only changes (shown yellow) are applied."
1051
+
1052
+ # @ crayon-syntax-highlighter
1053
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:261
1054
+ #, php-format
1055
+ msgid ""
1056
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
1057
+ "affect overridden settings."
1058
+ msgstr ""
1059
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
1060
+ "affect overridden settings."
1061
+
1062
+ # @ crayon-syntax-highlighter
1063
+ #: ../util/theme-editor/theme_editor.php:192
1064
+ msgid "User-Defined Theme"
1065
+ msgstr "사용자 정의 테마"
1066
+
1067
+ # @ crayon-syntax-highlighter
1068
+ #: ../util/theme-editor/theme_editor.php:193
1069
+ msgid "Stock Theme"
1070
+ msgstr "Stock Theme"
1071
+
1072
+ # @ crayon-syntax-highlighter
1073
+ #: ../util/theme-editor/theme_editor.php:194
1074
+ msgid "Success!"
1075
+ msgstr "성공!"
1076
+
1077
+ # @ crayon-syntax-highlighter
1078
+ #: ../util/theme-editor/theme_editor.php:195
1079
+ msgid "Failed!"
1080
+ msgstr "실패!"
1081
+
1082
+ # @ crayon-syntax-highlighter
1083
+ #: ../util/theme-editor/theme_editor.php:197
1084
+ #, php-format
1085
+ msgid "Are you sure you want to delete the \"%s\" theme?"
1086
+ msgstr "\"%s\" 테마를 정말로 지울까요?"
1087
+
1088
+ # @ crayon-syntax-highlighter
1089
+ #: ../util/theme-editor/theme_editor.php:198
1090
+ msgid "Delete failed!"
1091
+ msgstr "삭제 실패!"
1092
+
1093
+ # @ crayon-syntax-highlighter
1094
+ #: ../util/theme-editor/theme_editor.php:200
1095
+ msgid "New Name"
1096
+ msgstr "새 이름"
1097
+
1098
+ # @ crayon-syntax-highlighter
1099
+ #: ../util/theme-editor/theme_editor.php:201
1100
+ msgid "Duplicate failed!"
1101
+ msgstr "복제 실패!"
1102
+
1103
+ # @ crayon-syntax-highlighter
1104
+ #: ../util/theme-editor/theme_editor.php:202
1105
+ msgid "Please check the log for details."
1106
+ msgstr "자세한 건 로그를 확인하세요."
1107
+
1108
+ # @ crayon-syntax-highlighter
1109
+ #: ../util/theme-editor/theme_editor.php:203
1110
+ msgid "Are you sure you want to discard all changes?"
1111
+ msgstr "바꾼 것을 전부 취소할까요?"
1112
+
1113
+ # @ crayon-syntax-highlighter
1114
+ #: ../util/theme-editor/theme_editor.php:204
1115
+ #, php-format
1116
+ msgid "Editing Theme: %s"
1117
+ msgstr "테마 수정: %s"
1118
+
1119
+ # @ crayon-syntax-highlighter
1120
+ #: ../util/theme-editor/theme_editor.php:205
1121
+ #, php-format
1122
+ msgid "Creating Theme: %s"
1123
+ msgstr "새 테마 만들기: %s"
1124
+
1125
+ # @ crayon-syntax-highlighter
1126
+ #: ../util/theme-editor/theme_editor.php:206
1127
+ msgid "Submit Your Theme"
1128
+ msgstr "테마 전송하기"
1129
+
1130
+ # @ crayon-syntax-highlighter
1131
+ #: ../util/theme-editor/theme_editor.php:207
1132
+ msgid ""
1133
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
1134
+ "email me your theme - make sure it's considerably different from the stock "
1135
+ "themes :)"
1136
+ msgstr ""
1137
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
1138
+ "email me your theme - make sure it's considerably different from the stock "
1139
+ "themes :)"
1140
+
1141
+ # @ crayon-syntax-highlighter
1142
+ #: ../util/theme-editor/theme_editor.php:208
1143
+ msgid "Message"
1144
+ msgstr "메시지"
1145
+
1146
+ # @ crayon-syntax-highlighter
1147
+ #: ../util/theme-editor/theme_editor.php:209
1148
+ msgid "Please include this theme in Crayon!"
1149
+ msgstr "Crayon에 이 테마를 추가해 주세요!"
1150
+
1151
+ # @ crayon-syntax-highlighter
1152
+ #: ../util/theme-editor/theme_editor.php:210
1153
+ msgid "Submit was successful."
1154
+ msgstr "전송 성공."
1155
+
1156
+ # @ crayon-syntax-highlighter
1157
+ #: ../util/theme-editor/theme_editor.php:211
1158
+ msgid "Submit failed!"
1159
+ msgstr "전송 실패!"
1160
+
1161
+ # @ crayon-syntax-highlighter
1162
+ #: ../util/theme-editor/theme_editor.php:294
1163
+ msgid "Information"
1164
+ msgstr "정보"
1165
+
1166
+ # @ crayon-syntax-highlighter
1167
+ #: ../util/theme-editor/theme_editor.php:295
1168
+ msgid "Highlighting"
1169
+ msgstr "하이라이팅"
1170
+
1171
+ # @ crayon-syntax-highlighter
1172
+ #: ../util/theme-editor/theme_editor.php:296
1173
+ msgid "Frame"
1174
+ msgstr "프레임"
1175
+
1176
+ # @ crayon-syntax-highlighter
1177
+ #: ../util/theme-editor/theme_editor.php:298
1178
+ msgid "Line Numbers"
1179
+ msgstr "줄 번호"
1180
+
1181
+ # @ crayon-syntax-highlighter
1182
+ #: ../util/theme-editor/theme_editor.php:301
1183
+ msgid "Background"
1184
+ msgstr "배경"
1185
+
1186
+ # @ crayon-syntax-highlighter
1187
+ #: ../util/theme-editor/theme_editor.php:302
1188
+ msgid "Text"
1189
+ msgstr "텍스트"
1190
+
1191
+ # @ crayon-syntax-highlighter
1192
+ #: ../util/theme-editor/theme_editor.php:303
1193
+ msgid "Border"
1194
+ msgstr "Border"
1195
+
1196
+ # @ crayon-syntax-highlighter
1197
+ #: ../util/theme-editor/theme_editor.php:304
1198
+ msgid "Top Border"
1199
+ msgstr "Top Border"
1200
+
1201
+ # @ crayon-syntax-highlighter
1202
+ #: ../util/theme-editor/theme_editor.php:305
1203
+ msgid "Bottom Border"
1204
+ msgstr "Bottom Border"
1205
+
1206
+ # @ crayon-syntax-highlighter
1207
+ #: ../util/theme-editor/theme_editor.php:306
1208
+ msgid "Right Border"
1209
+ msgstr "Right Border"
1210
+
1211
+ # @ crayon-syntax-highlighter
1212
+ #: ../util/theme-editor/theme_editor.php:308
1213
+ msgid "Hover"
1214
+ msgstr "Hover"
1215
+
1216
+ # @ crayon-syntax-highlighter
1217
+ #: ../util/theme-editor/theme_editor.php:309
1218
+ msgid "Active"
1219
+ msgstr "Active"
1220
+
1221
+ # @ crayon-syntax-highlighter
1222
+ #: ../util/theme-editor/theme_editor.php:310
1223
+ msgid "Pressed"
1224
+ msgstr "Pressed"
1225
+
1226
+ # @ crayon-syntax-highlighter
1227
+ #: ../util/theme-editor/theme_editor.php:311
1228
+ msgid "Pressed & Hover"
1229
+ msgstr "Pressed & Hover"
1230
+
1231
+ # @ crayon-syntax-highlighter
1232
+ #: ../util/theme-editor/theme_editor.php:312
1233
+ msgid "Pressed & Active"
1234
+ msgstr "Pressed & Active"
1235
+
1236
+ # @ crayon-syntax-highlighter
1237
+ #: ../util/theme-editor/theme_editor.php:315
1238
+ msgid "Buttons"
1239
+ msgstr "버튼"
1240
+
1241
+ # @ crayon-syntax-highlighter
1242
+ #: ../util/theme-editor/theme_editor.php:317
1243
+ msgid "Normal"
1244
+ msgstr "Normal"
1245
+
1246
+ # @ crayon-syntax-highlighter
1247
+ #: ../util/theme-editor/theme_editor.php:319
1248
+ msgid "Striped"
1249
+ msgstr "Striped"
1250
+
1251
+ # @ crayon-syntax-highlighter
1252
+ #: ../util/theme-editor/theme_editor.php:320
1253
+ msgid "Marked"
1254
+ msgstr "강조"
1255
+
1256
+ # @ crayon-syntax-highlighter
1257
+ #: ../util/theme-editor/theme_editor.php:321
1258
+ msgid "Striped & Marked"
1259
+ msgstr "Striped & Marked"
1260
+
1261
+ # @ crayon-syntax-highlighter
1262
+ #: ../util/theme-editor/theme_editor.php:351
1263
+ msgid "Back To Settings"
1264
+ msgstr "Back To Settings"
1265
+
1266
+ # @ crayon-syntax-highlighter
1267
+ #: ../util/theme-editor/theme_editor.php:390
1268
+ msgid "Comment"
1269
+ msgstr "코멘트"
1270
+
1271
+ # @ crayon-syntax-highlighter
1272
+ #: ../util/theme-editor/theme_editor.php:391
1273
+ msgid "String"
1274
+ msgstr "String"
1275
+
1276
+ # @ crayon-syntax-highlighter
1277
+ #: ../util/theme-editor/theme_editor.php:392
1278
+ msgid "Preprocessor"
1279
+ msgstr "전처리기"
1280
+
1281
+ # @ crayon-syntax-highlighter
1282
+ #: ../util/theme-editor/theme_editor.php:393
1283
+ msgid "Tag"
1284
+ msgstr "태그"
1285
+
1286
+ # @ crayon-syntax-highlighter
1287
+ #: ../util/theme-editor/theme_editor.php:394
1288
+ msgid "Keyword"
1289
+ msgstr "키워드"
1290
+
1291
+ # @ crayon-syntax-highlighter
1292
+ #: ../util/theme-editor/theme_editor.php:395
1293
+ msgid "Statement"
1294
+ msgstr "Statement"
1295
+
1296
+ # @ crayon-syntax-highlighter
1297
+ #: ../util/theme-editor/theme_editor.php:396
1298
+ msgid "Reserved"
1299
+ msgstr "Reserved"
1300
+
1301
+ # @ crayon-syntax-highlighter
1302
+ #: ../util/theme-editor/theme_editor.php:397
1303
+ msgid "Type"
1304
+ msgstr "타입"
1305
+
1306
+ # @ crayon-syntax-highlighter
1307
+ #: ../util/theme-editor/theme_editor.php:398
1308
+ msgid "Modifier"
1309
+ msgstr "Modifier"
1310
+
1311
+ # @ crayon-syntax-highlighter
1312
+ #: ../util/theme-editor/theme_editor.php:399
1313
+ msgid "Identifier"
1314
+ msgstr "Identifier"
1315
+
1316
+ # @ crayon-syntax-highlighter
1317
+ #: ../util/theme-editor/theme_editor.php:400
1318
+ msgid "Entity"
1319
+ msgstr "엔티티"
1320
+
1321
+ # @ crayon-syntax-highlighter
1322
+ #: ../util/theme-editor/theme_editor.php:401
1323
+ msgid "Variable"
1324
+ msgstr "변수"
1325
+
1326
+ # @ crayon-syntax-highlighter
1327
+ #: ../util/theme-editor/theme_editor.php:402
1328
+ msgid "Constant"
1329
+ msgstr "상수"
1330
+
1331
+ # @ crayon-syntax-highlighter
1332
+ #: ../util/theme-editor/theme_editor.php:403
1333
+ msgid "Operator"
1334
+ msgstr "연산자"
1335
+
1336
+ # @ crayon-syntax-highlighter
1337
+ #: ../util/theme-editor/theme_editor.php:404
1338
+ msgid "Symbol"
1339
+ msgstr "심볼"
1340
+
1341
+ # @ crayon-syntax-highlighter
1342
+ #: ../util/theme-editor/theme_editor.php:405
1343
+ msgid "Notation"
1344
+ msgstr "Notation"
1345
+
1346
+ # @ crayon-syntax-highlighter
1347
+ #: ../util/theme-editor/theme_editor.php:406
1348
+ msgid "Faded"
1349
+ msgstr "Faded"
1350
+
1351
+ # @ crayon-syntax-highlighter
1352
+ #: ../util/theme-editor/theme_editor.php:407
1353
+ msgid "HTML"
1354
+ msgstr "HTML"
1355
+
1356
+ # @ crayon-syntax-highlighter
1357
+ #: ../util/theme-editor/theme_editor.php:408
1358
+ msgid "Unhighlighted"
1359
+ msgstr "Unhighlighted"
1360
+
1361
+ # @ crayon-syntax-highlighter
1362
+ #: ../util/theme-editor/theme_editor.php:542
1363
+ msgid "(Used for Copy/Paste)"
1364
+ msgstr "(Uporabljeno za kopiraj/prilepi)"
trans/crayon-syntax-highlighter-sl_SI.mo ADDED
Binary file
trans/crayon-syntax-highlighter-sl_SI.po ADDED
@@ -0,0 +1,1406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Crayon Syntax Highlighter v2.4.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-10 17:11+1000\n"
6
+ "PO-Revision-Date: 2013-11-11 12:39+1000\n"
7
+ "Last-Translator: \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=2; plural=n != 1;\n"
13
+ "X-Generator: Poedit 1.5.4\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
17
+ "crayon__;crayon_n;crayon_e\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Textdomain-Support: yes\n"
20
+ "X-Poedit-SearchPath-0: ..\n"
21
+
22
+ # @ crayon-syntax-highlighter
23
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
24
+ msgid "Max"
25
+ msgstr "Največ"
26
+
27
+ # @ crayon-syntax-highlighter
28
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
29
+ msgid "Min"
30
+ msgstr "Najmanj"
31
+
32
+ # @ crayon-syntax-highlighter
33
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
34
+ msgid "Static"
35
+ msgstr "Statično"
36
+
37
+ # @ crayon-syntax-highlighter
38
+ #: crayon_settings.class.php:166 crayon_settings.class.php:170
39
+ #: crayon_settings_wp.class.php:774 crayon_settings_wp.class.php:783
40
+ #: crayon_settings_wp.class.php:1059 crayon_settings_wp.class.php:1061
41
+ msgid "Pixels"
42
+ msgstr "slikovnih točk"
43
+
44
+ # @ crayon-syntax-highlighter
45
+ #: crayon_settings.class.php:166 crayon_settings.class.php:170
46
+ msgid "Percent"
47
+ msgstr "Odstotek"
48
+
49
+ # @ crayon-syntax-highlighter
50
+ #: crayon_settings.class.php:179
51
+ msgid "None"
52
+ msgstr "Nič"
53
+
54
+ # @ crayon-syntax-highlighter
55
+ #: crayon_settings.class.php:179
56
+ msgid "Left"
57
+ msgstr "Levo"
58
+
59
+ # @ crayon-syntax-highlighter
60
+ #: crayon_settings.class.php:179
61
+ msgid "Center"
62
+ msgstr "Sredina"
63
+
64
+ # @ crayon-syntax-highlighter
65
+ #: crayon_settings.class.php:179
66
+ msgid "Right"
67
+ msgstr "Desno"
68
+
69
+ # @ crayon-syntax-highlighter
70
+ #: crayon_settings.class.php:181 crayon_settings.class.php:206
71
+ msgid "On MouseOver"
72
+ msgstr "Ob lebdenju miške"
73
+
74
+ # @ crayon-syntax-highlighter
75
+ #: crayon_settings.class.php:181 crayon_settings.class.php:187
76
+ msgid "Always"
77
+ msgstr "Vedno"
78
+
79
+ # @ crayon-syntax-highlighter
80
+ #: crayon_settings.class.php:181 crayon_settings.class.php:187
81
+ msgid "Never"
82
+ msgstr "Nikoli"
83
+
84
+ # @ crayon-syntax-highlighter
85
+ #: crayon_settings.class.php:187
86
+ msgid "When Found"
87
+ msgstr "Po najdbi"
88
+
89
+ # @ crayon-syntax-highlighter
90
+ #: crayon_settings.class.php:206
91
+ msgid "On Double Click"
92
+ msgstr "Ob dvokliku"
93
+
94
+ # @ crayon-syntax-highlighter
95
+ #: crayon_settings.class.php:206
96
+ msgid "On Single Click"
97
+ msgstr "Ob kliku"
98
+
99
+ # @ crayon-syntax-highlighter
100
+ #: crayon_settings.class.php:213
101
+ msgid "An error has occurred. Please try again later."
102
+ msgstr "Zgodila se je napaka. Prosim poskusite kasneje."
103
+
104
+ # @ crayon-syntax-highlighter
105
+ #: crayon_settings_wp.class.php:53 crayon_settings_wp.class.php:210
106
+ #: crayon_settings_wp.class.php:1258
107
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:252
108
+ msgid "Settings"
109
+ msgstr "Nastavitve"
110
+
111
+ # @ crayon-syntax-highlighter
112
+ #: crayon_settings_wp.class.php:193
113
+ msgid "You do not have sufficient permissions to access this page."
114
+ msgstr "Nimate ustreznih pravic za dostop do te strani."
115
+
116
+ # @ crayon-syntax-highlighter
117
+ #: crayon_settings_wp.class.php:225
118
+ msgid "Save Changes"
119
+ msgstr "Shrani spremembe"
120
+
121
+ # @ crayon-syntax-highlighter
122
+ #: crayon_settings_wp.class.php:233
123
+ msgid "Reset Settings"
124
+ msgstr "Ponastavi nastavitve"
125
+
126
+ # @ crayon-syntax-highlighter
127
+ #: crayon_settings_wp.class.php:751
128
+ msgid "Height"
129
+ msgstr "Višina"
130
+
131
+ # @ crayon-syntax-highlighter
132
+ #: crayon_settings_wp.class.php:757
133
+ msgid "Width"
134
+ msgstr "Širina"
135
+
136
+ # @ crayon-syntax-highlighter
137
+ #: crayon_settings_wp.class.php:763
138
+ msgid "Top Margin"
139
+ msgstr "Zgornji odmik"
140
+
141
+ # @ crayon-syntax-highlighter
142
+ #: crayon_settings_wp.class.php:764
143
+ msgid "Bottom Margin"
144
+ msgstr "Spodnji odmik"
145
+
146
+ # @ crayon-syntax-highlighter
147
+ #: crayon_settings_wp.class.php:765 crayon_settings_wp.class.php:770
148
+ msgid "Left Margin"
149
+ msgstr "Levi odmik"
150
+
151
+ # @ crayon-syntax-highlighter
152
+ #: crayon_settings_wp.class.php:766 crayon_settings_wp.class.php:770
153
+ msgid "Right Margin"
154
+ msgstr "Desni odmik"
155
+
156
+ # @ crayon-syntax-highlighter
157
+ #: crayon_settings_wp.class.php:776
158
+ msgid "Horizontal Alignment"
159
+ msgstr "Vodoravna postavitev"
160
+
161
+ # @ crayon-syntax-highlighter
162
+ #: crayon_settings_wp.class.php:779
163
+ msgid "Allow floating elements to surround Crayon"
164
+ msgstr "Dovoli lebdenje elementov v prostoru Crayon"
165
+
166
+ # @ crayon-syntax-highlighter
167
+ #: crayon_settings_wp.class.php:789
168
+ msgid "Display the Toolbar"
169
+ msgstr "Prikaži orodno vrstico"
170
+
171
+ # @ crayon-syntax-highlighter
172
+ #: crayon_settings_wp.class.php:792
173
+ msgid "Overlay the toolbar on code rather than push it down when possible"
174
+ msgstr ""
175
+ "Prekrij kodo z orodno vrstico namesto spreminjanja višine, ko je to mogoče"
176
+
177
+ # @ crayon-syntax-highlighter
178
+ #: crayon_settings_wp.class.php:793
179
+ msgid "Toggle the toolbar on single click when it is overlayed"
180
+ msgstr "Ob prekrivanju prikaži/skrij orodno vrstico s klikom"
181
+
182
+ # @ crayon-syntax-highlighter
183
+ #: crayon_settings_wp.class.php:794
184
+ msgid "Delay hiding the toolbar on MouseOut"
185
+ msgstr "Zamakni skrivanje orodne vrstice, ko miška odide iz območja"
186
+
187
+ # @ crayon-syntax-highlighter
188
+ #: crayon_settings_wp.class.php:796
189
+ msgid "Display the title when provided"
190
+ msgstr "Prikaži naslov, kadar je ta podan"
191
+
192
+ # @ crayon-syntax-highlighter
193
+ #: crayon_settings_wp.class.php:797
194
+ msgid "Display the language"
195
+ msgstr "Prikaži jezik"
196
+
197
+ # @ crayon-syntax-highlighter
198
+ #: crayon_settings_wp.class.php:804
199
+ msgid "Display striped code lines"
200
+ msgstr "Prikaži črte v vrsticah kode"
201
+
202
+ # @ crayon-syntax-highlighter
203
+ #: crayon_settings_wp.class.php:805
204
+ msgid "Enable line marking for important lines"
205
+ msgstr "Omogoči posebno označevanje kode za pomembne vrstice"
206
+
207
+ # @ crayon-syntax-highlighter
208
+ #: crayon_settings_wp.class.php:807
209
+ msgid "Display line numbers by default"
210
+ msgstr "Privzeto prikaži številke vrstic"
211
+
212
+ # @ crayon-syntax-highlighter
213
+ #: crayon_settings_wp.class.php:808
214
+ msgid "Enable line number toggling"
215
+ msgstr "Omogoči preklapljanje številke vrstice"
216
+
217
+ # @ crayon-syntax-highlighter
218
+ #: crayon_settings_wp.class.php:811
219
+ msgid "Start line numbers from"
220
+ msgstr "Prikaži številke vrstic od"
221
+
222
+ # @ crayon-syntax-highlighter
223
+ #: crayon_settings_wp.class.php:822
224
+ msgid "When no language is provided, use the fallback"
225
+ msgstr "Ko ni izbranega jezika uporabi alternativnega"
226
+
227
+ # @ crayon-syntax-highlighter
228
+ #: crayon_settings_wp.class.php:829
229
+ msgid "Parsing was successful"
230
+ msgstr "Razčlenjevanje je bilo uspešno"
231
+
232
+ # @ crayon-syntax-highlighter
233
+ #: crayon_settings_wp.class.php:829
234
+ msgid "Parsing was unsuccessful"
235
+ msgstr "Razčlenjevanje je bilo neuspešno"
236
+
237
+ # @ crayon-syntax-highlighter
238
+ #: crayon_settings_wp.class.php:835
239
+ #, php-format
240
+ msgid "The selected language with id %s could not be loaded"
241
+ msgstr "Izbran jezik z id %s ne more biti naložen"
242
+
243
+ # @ crayon-syntax-highlighter
244
+ #: crayon_settings_wp.class.php:838
245
+ msgid "Show Languages"
246
+ msgstr "Prikaži jezike"
247
+
248
+ # @ crayon-syntax-highlighter
249
+ #: crayon_settings_wp.class.php:1038
250
+ msgid "Enable Live Preview"
251
+ msgstr "Omogoči neposreden prikaz"
252
+
253
+ # @ crayon-syntax-highlighter
254
+ #: crayon_settings_wp.class.php:1043
255
+ #, php-format
256
+ msgid "The selected theme with id %s could not be loaded"
257
+ msgstr "Izbrana tema z id %s ne more biti naložena"
258
+
259
+ # @ crayon-syntax-highlighter
260
+ #: crayon_settings_wp.class.php:1057
261
+ msgid "Custom Font Size"
262
+ msgstr "Poljubna velikost pisave"
263
+
264
+ # @ crayon-syntax-highlighter
265
+ #: crayon_settings_wp.class.php:1064
266
+ #, php-format
267
+ msgid "The selected font with id %s could not be loaded"
268
+ msgstr "Izbrana pisava z id %s ne more biti naložena"
269
+
270
+ # @ crayon-syntax-highlighter
271
+ #: crayon_settings_wp.class.php:1075
272
+ msgid "Enable plain code view and display"
273
+ msgstr "Omogoči prikaz in pogled gole kode"
274
+
275
+ # @ crayon-syntax-highlighter
276
+ #: crayon_settings_wp.class.php:1080
277
+ msgid "Enable code copy/paste"
278
+ msgstr "Omogoči kopiranje/prilepitev kode"
279
+
280
+ # @ crayon-syntax-highlighter
281
+ #: crayon_settings_wp.class.php:1082
282
+ msgid "Enable opening code in a window"
283
+ msgstr "Omogoči odpiranje kode v oknu"
284
+
285
+ # @ crayon-syntax-highlighter
286
+ #: crayon_settings_wp.class.php:1100
287
+ msgid "Tab size in spaces"
288
+ msgstr "Velikost tabulatorja v presledkih"
289
+
290
+ # @ crayon-syntax-highlighter
291
+ #: crayon_settings_wp.class.php:1093
292
+ msgid "Remove whitespace surrounding the shortcode content"
293
+ msgstr "Odstrani prazen prostor okrog vsebine kratke kode"
294
+
295
+ # @ crayon-syntax-highlighter
296
+ #: crayon_settings_wp.class.php:1126
297
+ msgid ""
298
+ "When loading local files and a relative path is given for the URL, use the "
299
+ "absolute path"
300
+ msgstr ""
301
+ "Ob nalaganju lokalnih datotek in relativnih poti, ki podane kot URL, uporabi "
302
+ "absolutno pot"
303
+
304
+ # @ crayon-syntax-highlighter
305
+ #: crayon_settings_wp.class.php:1153
306
+ msgid "Clear the cache used to store remote code requests"
307
+ msgstr "Pobriši pomnilnik, ki se uporablja za shranjevanje oddaljene kode"
308
+
309
+ # @ crayon-syntax-highlighter
310
+ #: crayon_settings_wp.class.php:1155
311
+ msgid "Clear Now"
312
+ msgstr "Pobriši sedaj"
313
+
314
+ # @ crayon-syntax-highlighter
315
+ #: crayon_settings_wp.class.php:1161
316
+ msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
317
+ msgstr ""
318
+ "Onemogoči kretnje miške za naprave z zaslonom na dotik (kot je naprimer "
319
+ "prehod miške čez neko območje)"
320
+
321
+ # @ crayon-syntax-highlighter
322
+ #: crayon_settings_wp.class.php:1162
323
+ msgid "Disable animations"
324
+ msgstr "Onemogoči animacije"
325
+
326
+ # @ crayon-syntax-highlighter
327
+ #: crayon_settings_wp.class.php:1163
328
+ msgid "Disable runtime stats"
329
+ msgstr "Onemogoči statistiko izvajanja"
330
+
331
+ # @ crayon-syntax-highlighter
332
+ #: crayon_settings_wp.class.php:1169
333
+ msgid "Log errors for individual Crayons"
334
+ msgstr "Shrani napake kot individualne Crayone"
335
+
336
+ # @ crayon-syntax-highlighter
337
+ #: crayon_settings_wp.class.php:1170
338
+ msgid "Log system-wide errors"
339
+ msgstr "Shrani napake celotnega sistema"
340
+
341
+ # @ crayon-syntax-highlighter
342
+ #: crayon_settings_wp.class.php:1171
343
+ msgid "Display custom message for errors"
344
+ msgstr "Prikaži poljubno sporočilo za napake"
345
+
346
+ # @ crayon-syntax-highlighter
347
+ #: crayon_settings_wp.class.php:1183
348
+ msgid "Show Log"
349
+ msgstr "Prikaži dnevnik"
350
+
351
+ # @ crayon-syntax-highlighter
352
+ #: crayon_settings_wp.class.php:1185
353
+ msgid "Clear Log"
354
+ msgstr "Pobriši dnevnik"
355
+
356
+ # @ crayon-syntax-highlighter
357
+ #: crayon_settings_wp.class.php:1186
358
+ msgid "Email Admin"
359
+ msgstr "Pošlji sporočilo skrbniku"
360
+
361
+ # @ crayon-syntax-highlighter
362
+ #: crayon_settings_wp.class.php:1188
363
+ msgid "Email Developer"
364
+ msgstr "Pošlji sporočilo razvijalcu"
365
+
366
+ # @ crayon-syntax-highlighter
367
+ #: crayon_settings_wp.class.php:1204
368
+ msgid "Version"
369
+ msgstr "Različica"
370
+
371
+ # @ crayon-syntax-highlighter
372
+ #: crayon_settings_wp.class.php:1206
373
+ msgid "Developer"
374
+ msgstr "Razvijalec"
375
+
376
+ # @ crayon-syntax-highlighter
377
+ #: crayon_settings.class.php:151
378
+ msgid "Hourly"
379
+ msgstr "Urno"
380
+
381
+ # @ crayon-syntax-highlighter
382
+ #: crayon_settings.class.php:151
383
+ msgid "Daily"
384
+ msgstr "Dnevno"
385
+
386
+ # @ crayon-syntax-highlighter
387
+ #: crayon_settings.class.php:152
388
+ msgid "Weekly"
389
+ msgstr "Tedensko"
390
+
391
+ # @ crayon-syntax-highlighter
392
+ #: crayon_settings.class.php:152
393
+ msgid "Monthly"
394
+ msgstr "Mesečno"
395
+
396
+ # @ crayon-syntax-highlighter
397
+ #: crayon_settings.class.php:153
398
+ msgid "Immediately"
399
+ msgstr "Takoj"
400
+
401
+ # @ crayon-syntax-highlighter
402
+ #: crayon_settings_wp.class.php:1156
403
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
404
+ msgstr "Naloži Crayonov CSS in Javascript le takrat, ko je to potrebno"
405
+
406
+ # @ crayon-syntax-highlighter
407
+ #: crayon_settings_wp.class.php:1129
408
+ msgid "Followed by your relative URL."
409
+ msgstr "Sledi tvojemu relativnemu URL."
410
+
411
+ # @ crayon-syntax-highlighter
412
+ #: crayon_settings_wp.class.php:1190
413
+ msgid "The log is currently empty."
414
+ msgstr "Dnevnik je trenutno prazen."
415
+
416
+ # @ crayon-syntax-highlighter
417
+ #: crayon_settings_wp.class.php:1192
418
+ msgid "The log file exists and is writable."
419
+ msgstr "Datoteka dnevnika obstaja in je zapisljiva."
420
+
421
+ # @ crayon-syntax-highlighter
422
+ #: crayon_settings_wp.class.php:1192
423
+ msgid "The log file exists and is not writable."
424
+ msgstr "Datoteka dnevnika obstaja, vendar ni zapisljiva."
425
+
426
+ # @ crayon-syntax-highlighter
427
+ #: crayon_settings_wp.class.php:1194
428
+ msgid "The log file does not exist and is not writable."
429
+ msgstr "Datoteka dnevnika ne obstaja in ni zapisljiva."
430
+
431
+ # @ crayon-syntax-highlighter
432
+ #: crayon_settings_wp.class.php:828
433
+ #, php-format
434
+ msgid "%d language has been detected."
435
+ msgid_plural "%d languages have been detected."
436
+ msgstr[0] "%d je bil zaznan."
437
+ msgstr[1] "%d je bilo zaznanih."
438
+
439
+ # @ crayon-syntax-highlighter
440
+ #: crayon_settings_wp.class.php:1116
441
+ msgid "Capture &lt;pre&gt; tags as Crayons"
442
+ msgstr "Prikaži &lt;pre&gt; značke kot Crayone"
443
+
444
+ # @ crayon-syntax-highlighter
445
+ #: crayon_settings_wp.class.php:1098
446
+ msgid "Show Mixed Language Icon (+)"
447
+ msgstr "Prikaži ikono več različnih jezikov (+)"
448
+
449
+ # @ crayon-syntax-highlighter
450
+ #: crayon_settings_wp.class.php:1096
451
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
452
+ msgstr "Omogoči različno označevanje večih jezikov z ločili in značkami."
453
+
454
+ # @ crayon-syntax-highlighter
455
+ #: crayon_settings_wp.class.php:1119
456
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
457
+ msgstr "Prikaži manjše značke kot so [php][/php] kot Crayone."
458
+
459
+ # @ crayon-syntax-highlighter
460
+ #: crayon_settings_wp.class.php:1121
461
+ msgid "Enable [plain][/plain] tag."
462
+ msgstr "Omogoči značko [plain][/plain]."
463
+
464
+ # @ crayon-syntax-highlighter
465
+ #: crayon_settings.class.php:206
466
+ msgid "Disable Mouse Events"
467
+ msgstr "Onemogoči miškine dogodke"
468
+
469
+ # @ crayon-syntax-highlighter
470
+ #: crayon_settings_wp.class.php:1078
471
+ msgid "Enable plain code toggling"
472
+ msgstr "Omogoči preklapljanje gole kode"
473
+
474
+ # @ crayon-syntax-highlighter
475
+ #: crayon_settings_wp.class.php:1079
476
+ msgid "Show the plain code by default"
477
+ msgstr "Privzeto prikaži golo kodo"
478
+
479
+ # @ crayon-syntax-highlighter
480
+ #. translators: plugin header field 'Name'
481
+ #: crayon_wp.class.php:0
482
+ msgid "Crayon Syntax Highlighter"
483
+ msgstr "Crayon Syntax Highlighter"
484
+
485
+ # @ crayon-syntax-highlighter
486
+ #. translators: plugin header field 'AuthorURI'
487
+ #: crayon_wp.class.php:0
488
+ msgid "http://aramk.com/"
489
+ msgstr "http://aramk.com/"
490
+
491
+ # @ crayon-syntax-highlighter
492
+ #. translators: plugin header field 'Author'
493
+ #: crayon_wp.class.php:0
494
+ msgid "Aram Kocharyan"
495
+ msgstr "Aram Kocharyan"
496
+
497
+ # @ crayon-syntax-highlighter
498
+ #. translators: plugin header field 'Description'
499
+ #: crayon_wp.class.php:0
500
+ msgid ""
501
+ "Supports multiple languages, themes, highlighting from a URL, local file or "
502
+ "post text."
503
+ msgstr ""
504
+ "Podpira več jezikov, tem, označevanje iz URL, lokalne datoteke ali besedila "
505
+ "prispevka."
506
+
507
+ # @ crayon-syntax-highlighter
508
+ #: crayon_settings_wp.class.php:1260
509
+ msgid "Donate"
510
+ msgstr "Doniraj"
511
+
512
+ # @ crayon-syntax-highlighter
513
+ #: crayon_settings_wp.class.php:491
514
+ msgid "General"
515
+ msgstr "Splošno"
516
+
517
+ # @ crayon-syntax-highlighter
518
+ #: crayon_settings_wp.class.php:492
519
+ msgid "Theme"
520
+ msgstr "Oblika"
521
+
522
+ # @ crayon-syntax-highlighter
523
+ #: crayon_settings_wp.class.php:493
524
+ msgid "Font"
525
+ msgstr "Pisava"
526
+
527
+ # @ crayon-syntax-highlighter
528
+ #: crayon_settings_wp.class.php:494
529
+ msgid "Metrics"
530
+ msgstr "Mere"
531
+
532
+ # @ crayon-syntax-highlighter
533
+ #: crayon_settings_wp.class.php:495 util/theme-editor/theme_editor.php:299
534
+ msgid "Toolbar"
535
+ msgstr "Orodna vrstica"
536
+
537
+ # @ crayon-syntax-highlighter
538
+ #: crayon_settings_wp.class.php:496 util/theme-editor/theme_editor.php:297
539
+ msgid "Lines"
540
+ msgstr "Vrstice"
541
+
542
+ # @ crayon-syntax-highlighter
543
+ #: crayon_settings_wp.class.php:497
544
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:212
545
+ msgid "Code"
546
+ msgstr "Koda"
547
+
548
+ # @ crayon-syntax-highlighter
549
+ #: crayon_settings_wp.class.php:499
550
+ msgid "Languages"
551
+ msgstr "Jeziki"
552
+
553
+ # @ crayon-syntax-highlighter
554
+ #: crayon_settings_wp.class.php:500
555
+ msgid "Files"
556
+ msgstr "Datoteke"
557
+
558
+ # @ crayon-syntax-highlighter
559
+ #: crayon_settings_wp.class.php:503
560
+ msgid "Misc"
561
+ msgstr "Različno"
562
+
563
+ # @ crayon-syntax-highlighter
564
+ #: crayon_settings_wp.class.php:506
565
+ msgid "Debug"
566
+ msgstr "Razhroščevanje"
567
+
568
+ # @ crayon-syntax-highlighter
569
+ #: crayon_settings_wp.class.php:507
570
+ msgid "Errors"
571
+ msgstr "Napake"
572
+
573
+ # @ crayon-syntax-highlighter
574
+ #: crayon_settings_wp.class.php:508
575
+ msgid "Log"
576
+ msgstr "Dnevnik"
577
+
578
+ # @ crayon-syntax-highlighter
579
+ #: crayon_settings_wp.class.php:511
580
+ msgid "About"
581
+ msgstr "O"
582
+
583
+ # @ crayon-syntax-highlighter
584
+ #: crayon_settings_wp.class.php:1040
585
+ msgid "Enqueue themes in the header (more efficient)."
586
+ msgstr "Dodaj teme v glavo (bolj učinkovito)."
587
+
588
+ # @ crayon-syntax-highlighter
589
+ #: crayon_settings_wp.class.php:1070
590
+ msgid "Enqueue fonts in the header (more efficient)."
591
+ msgstr "Dodaj pisave v glavo (bolj učinkovito)."
592
+
593
+ # @ crayon-syntax-highlighter
594
+ #: crayon_settings_wp.class.php:1018
595
+ msgid "Loading..."
596
+ msgstr "Nalagam..."
597
+
598
+ # @ crayon-syntax-highlighter
599
+ #: crayon_settings_wp.class.php:1259 util/theme-editor/theme_editor.php:336
600
+ msgid "Theme Editor"
601
+ msgstr "Urejanje tem"
602
+
603
+ # @ crayon-syntax-highlighter
604
+ #: crayon_settings_wp.class.php:1083
605
+ msgid "Always display scrollbars"
606
+ msgstr "Vedno prikaži drsnike"
607
+
608
+ # @ crayon-syntax-highlighter
609
+ #: crayon_settings_wp.class.php:1157
610
+ msgid "Disable enqueuing for page templates that may contain The Loop."
611
+ msgstr "Onemogoči dodajanje oblik v predloge strani, ki vsebujejo zanke."
612
+
613
+ # @ crayon-syntax-highlighter
614
+ #: crayon_settings_wp.class.php:1160
615
+ msgid "Load Crayons only from the main Wordpress query"
616
+ msgstr "Naloži Crayone le iz glavnih WordPress poizvedb"
617
+
618
+ # @ crayon-syntax-highlighter
619
+ #: util/theme-editor/theme_editor.php:351
620
+ msgid "Back To Settings"
621
+ msgstr "Nazaj na nastavitve"
622
+
623
+ # @ crayon-syntax-highlighter
624
+ #: crayon_settings_wp.class.php:1207
625
+ msgid "Translators"
626
+ msgstr "Prevajalci"
627
+
628
+ # @ crayon-syntax-highlighter
629
+ #: crayon_formatter.class.php:290
630
+ msgid "Toggle Plain Code"
631
+ msgstr "Preklopi na golo kodo"
632
+
633
+ # @ crayon-syntax-highlighter
634
+ #: crayon_formatter.class.php:306
635
+ msgid "Open Code In New Window"
636
+ msgstr "Odpri kodo v novem oknu"
637
+
638
+ # @ crayon-syntax-highlighter
639
+ #: crayon_formatter.class.php:286
640
+ msgid "Toggle Line Numbers"
641
+ msgstr "Prikaži številke vrstic"
642
+
643
+ # @ crayon-syntax-highlighter
644
+ #: crayon_formatter.class.php:333
645
+ msgid "Contains Mixed Languages"
646
+ msgstr "Vsebuje različne jezike"
647
+
648
+ # @ crayon-syntax-highlighter
649
+ #: crayon_settings_wp.class.php:1183
650
+ msgid "Hide Log"
651
+ msgstr "Skrij dnevnik"
652
+
653
+ # @ crayon-syntax-highlighter
654
+ #: crayon_settings_wp.class.php:136
655
+ #, php-format
656
+ msgid "Press %s to Copy, %s to Paste"
657
+ msgstr "Pritisni %s za kopiranje in %s za prilepitev"
658
+
659
+ # @ crayon-syntax-highlighter
660
+ #: crayon_settings_wp.class.php:498
661
+ msgid "Tags"
662
+ msgstr "Značke"
663
+
664
+ # @ crayon-syntax-highlighter
665
+ #: crayon_settings_wp.class.php:781
666
+ msgid "Inline Margin"
667
+ msgstr "Odmik v vrstici"
668
+
669
+ # @ crayon-syntax-highlighter
670
+ #: crayon_settings_wp.class.php:1120
671
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
672
+ msgstr "Prikaži vrstične značke kot {php} {/php} znotraj stavkov."
673
+
674
+ # @ crayon-syntax-highlighter
675
+ #: crayon_settings_wp.class.php:1115
676
+ msgid "Capture `backquotes` as &lt;code&gt;"
677
+ msgstr "Prikaži `apostrofe` kot as &lt;code&gt;"
678
+
679
+ # @ crayon-syntax-highlighter
680
+ #: crayon_settings_wp.class.php:1158
681
+ msgid "Allow Crayons inside comments"
682
+ msgstr "Omogoči Crayone znotraj komentarjev"
683
+
684
+ # @ crayon-syntax-highlighter
685
+ #: crayon_settings_wp.class.php:1110
686
+ msgid "Wrap Inline Tags"
687
+ msgstr "Ovij značke znotraj vrstice"
688
+
689
+ # @ crayon-syntax-highlighter
690
+ #: crayon_settings_wp.class.php:502
691
+ msgid "Tag Editor"
692
+ msgstr "Urejevalnik značk"
693
+
694
+ # @ crayon-syntax-highlighter
695
+ #: crayon_settings_wp.class.php:1252
696
+ msgid "?"
697
+ msgstr "?"
698
+
699
+ # @ crayon-syntax-highlighter
700
+ #: crayon_settings_wp.class.php:1089
701
+ msgid "Decode HTML entities in code"
702
+ msgstr "Dekodiraj HTML značke v kodi"
703
+
704
+ # @ crayon-syntax-highlighter
705
+ #: crayon_settings_wp.class.php:1091
706
+ msgid "Decode HTML entities in attributes"
707
+ msgstr "Dekodiraj HTML značke v atributih"
708
+
709
+ # @ crayon-syntax-highlighter
710
+ #: crayon_settings_wp.class.php:1145
711
+ #, php-format
712
+ msgid ""
713
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
714
+ "attribute"
715
+ msgstr ""
716
+ "Uporabi %s za ločevanje imen nastavitev od vrednosti v &lt;pre&gt; razredu "
717
+ "atributa"
718
+
719
+ # @ crayon-syntax-highlighter
720
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:62
721
+ msgid "Add Crayon Code"
722
+ msgstr "Dodaj Crayon kodo"
723
+
724
+ # @ crayon-syntax-highlighter
725
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:63
726
+ msgid "Edit Crayon Code"
727
+ msgstr "Uredi Crayon kodo"
728
+
729
+ # @ crayon-syntax-highlighter
730
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:64
731
+ msgid "Add"
732
+ msgstr "Dodaj"
733
+
734
+ # @ crayon-syntax-highlighter
735
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:65
736
+ #: util/theme-editor/theme_editor.php:352
737
+ msgid "Save"
738
+ msgstr "Shrani"
739
+
740
+ # @ crayon-syntax-highlighter
741
+ #: crayon_settings_wp.class.php:900
742
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:189
743
+ #: util/theme-editor/theme_editor.php:314
744
+ msgid "Title"
745
+ msgstr "Naslov"
746
+
747
+ # @ crayon-syntax-highlighter
748
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:191
749
+ msgid "A short description"
750
+ msgstr "Kratek opis"
751
+
752
+ # @ crayon-syntax-highlighter
753
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:193
754
+ #: util/theme-editor/theme_editor.php:318
755
+ msgid "Inline"
756
+ msgstr "V vrstici"
757
+
758
+ # @ crayon-syntax-highlighter
759
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:200
760
+ #: util/theme-editor/theme_editor.php:322
761
+ msgid "Language"
762
+ msgstr "Jezik"
763
+
764
+ # @ crayon-syntax-highlighter
765
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:205
766
+ msgid "Marked Lines"
767
+ msgstr "Označene vrstice"
768
+
769
+ # @ crayon-syntax-highlighter
770
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:206
771
+ msgid "(e.g. 1,2,3-5)"
772
+ msgstr "(kot 1,2,3-5)"
773
+
774
+ # @ crayon-syntax-highlighter
775
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:215
776
+ msgid "Clear"
777
+ msgstr "Počisti"
778
+
779
+ # @ crayon-syntax-highlighter
780
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:219
781
+ msgid "Paste your code here, or type it in manually."
782
+ msgstr "Tukaj prilepite vašo kodo ali pa jo napišite ročno."
783
+
784
+ # @ crayon-syntax-highlighter
785
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:223
786
+ msgid "URL"
787
+ msgstr "URL"
788
+
789
+ # @ crayon-syntax-highlighter
790
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:225
791
+ msgid "Relative local path or absolute URL"
792
+ msgstr "Relativna lokalna pot ali absolutni URL"
793
+
794
+ # @ crayon-syntax-highlighter
795
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:228
796
+ msgid ""
797
+ "If the URL fails to load, the code above will be shown instead. If no code "
798
+ "exists, an error is shown."
799
+ msgstr ""
800
+ "Če nalaganje preko URL spodleti, bo prikazana spodnja koda. Če ta ne "
801
+ "obstaja, bo prikazana napaka."
802
+
803
+ # @ crayon-syntax-highlighter
804
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:230
805
+ #, php-format
806
+ msgid ""
807
+ "If a relative local path is given it will be appended to %s - which is "
808
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
809
+ msgstr ""
810
+ "Če je podana relativna lokalna pot, bo dodana v %s - ta je definirana v "
811
+ "%sCrayon &gt; Nastavitve &gt; Datoteke%s."
812
+
813
+ # @ crayon-syntax-highlighter
814
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:257
815
+ msgid "Change the following settings to override their global values."
816
+ msgstr "Spremeni naslednje nastavitve za prepis globalnih vrednosti."
817
+
818
+ # @ crayon-syntax-highlighter
819
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:259
820
+ msgid "Only changes (shown yellow) are applied."
821
+ msgstr "Uveljavljene so samo spremembe (prikazano z rumeno)."
822
+
823
+ # @ crayon-syntax-highlighter
824
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:261
825
+ #, php-format
826
+ msgid ""
827
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
828
+ "affect overridden settings."
829
+ msgstr ""
830
+ "Spremembe v prihodnosti v globalnih nastavitvah v %sCrayon &gt; Nastavitve%s "
831
+ "ne bodo vplivale na prepisane nastavitve."
832
+
833
+ # @ crayon-syntax-highlighter
834
+ #: crayon_settings_wp.class.php:1159
835
+ msgid "Remove Crayons from excerpts"
836
+ msgstr "Odstrani Crayone iz povzetkov"
837
+
838
+ # @ crayon-syntax-highlighter
839
+ #: crayon_formatter.class.php:294
840
+ msgid "Toggle Line Wrap"
841
+ msgstr "Preklopi ovijanje vrstic"
842
+
843
+ # @ crayon-syntax-highlighter
844
+ #: crayon_settings_wp.class.php:501
845
+ msgid "Posts"
846
+ msgstr "Prispevki"
847
+
848
+ # @ crayon-syntax-highlighter
849
+ #: crayon_settings_wp.class.php:806
850
+ msgid "Enable line ranges for showing only parts of code"
851
+ msgstr "Omogoči razpone vrstic za prikaz le nekaterih delov kode"
852
+
853
+ # @ crayon-syntax-highlighter
854
+ #: crayon_settings_wp.class.php:809
855
+ msgid "Wrap lines by default"
856
+ msgstr "Privzeto ovij vrstice"
857
+
858
+ # @ crayon-syntax-highlighter
859
+ #: crayon_settings_wp.class.php:810
860
+ msgid "Enable line wrap toggling"
861
+ msgstr "Omogoči preklapljanje ovijanja vrstic"
862
+
863
+ # @ crayon-syntax-highlighter
864
+ #: crayon_settings_wp.class.php:874
865
+ msgid "Show Crayon Posts"
866
+ msgstr "Prikaži Crayon prispevke"
867
+
868
+ # @ crayon-syntax-highlighter
869
+ #: crayon_settings_wp.class.php:1015
870
+ msgid "Edit"
871
+ msgstr "Uredi"
872
+
873
+ # @ crayon-syntax-highlighter
874
+ #: crayon_settings_wp.class.php:1102
875
+ msgid "Blank lines before code:"
876
+ msgstr "Praznih vrstic pred kodo:"
877
+
878
+ # @ crayon-syntax-highlighter
879
+ #: crayon_settings_wp.class.php:1104
880
+ msgid "Blank lines after code:"
881
+ msgstr "Praznih vrstic po kodi:"
882
+
883
+ # @ crayon-syntax-highlighter
884
+ #: crayon_settings_wp.class.php:1136
885
+ msgid "Convert Legacy Tags"
886
+ msgstr "Pretvori opuščene značke"
887
+
888
+ # @ crayon-syntax-highlighter
889
+ #: crayon_settings_wp.class.php:1139
890
+ msgid "No Legacy Tags Found"
891
+ msgstr "Ni najdenih opuščenih značk"
892
+
893
+ # @ crayon-syntax-highlighter
894
+ #: crayon_settings_wp.class.php:1149
895
+ msgid "Display Tag Editor settings on the frontend"
896
+ msgstr "Prikaži nastavitve urejevalnika značk v ospredju"
897
+
898
+ # @ crayon-syntax-highlighter
899
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:195
900
+ msgid "Don't Highlight"
901
+ msgstr "Ne poudarjaj"
902
+
903
+ # @ crayon-syntax-highlighter
904
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:203
905
+ msgid "Line Range"
906
+ msgstr "Razpon vrstic"
907
+
908
+ # @ crayon-syntax-highlighter
909
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:204
910
+ msgid "(e.g. 3-5 or 3)"
911
+ msgstr "(kot 3-5 ali 3)"
912
+
913
+ # @ crayon-syntax-highlighter
914
+ #: crayon_formatter.class.php:298 crayon_formatter.class.php:302
915
+ msgid "Expand Code"
916
+ msgstr "Razširi kodo"
917
+
918
+ # @ crayon-syntax-highlighter
919
+ #: crayon_settings.class.php:229
920
+ msgid "Inline Tag"
921
+ msgstr "Značka v vrstici"
922
+
923
+ # @ crayon-syntax-highlighter
924
+ #: crayon_settings.class.php:229
925
+ msgid "Block Tag"
926
+ msgstr "Značka v bloku"
927
+
928
+ # @ crayon-syntax-highlighter
929
+ #: crayon_settings_wp.class.php:137
930
+ msgid "Click To Expand Code"
931
+ msgstr "Kliknite za razširitev kode"
932
+
933
+ # @ crayon-syntax-highlighter
934
+ #: crayon_settings_wp.class.php:179
935
+ msgid "Prompt"
936
+ msgstr "Poziv"
937
+
938
+ # @ crayon-syntax-highlighter
939
+ #: crayon_settings_wp.class.php:180
940
+ msgid "Value"
941
+ msgstr "Vrednost"
942
+
943
+ # @ crayon-syntax-highlighter
944
+ #: crayon_settings_wp.class.php:181
945
+ msgid "Alert"
946
+ msgstr "Opozorilo"
947
+
948
+ # @ crayon-syntax-highlighter
949
+ #: crayon_settings_wp.class.php:182 crayon_settings_wp.class.php:920
950
+ msgid "No"
951
+ msgstr "Ne"
952
+
953
+ # @ crayon-syntax-highlighter
954
+ #: crayon_settings_wp.class.php:183 crayon_settings_wp.class.php:920
955
+ msgid "Yes"
956
+ msgstr "Da"
957
+
958
+ # @ crayon-syntax-highlighter
959
+ #: crayon_settings_wp.class.php:184
960
+ msgid "Confirm"
961
+ msgstr "Potrdi"
962
+
963
+ # @ crayon-syntax-highlighter
964
+ #: crayon_settings_wp.class.php:185
965
+ msgid "Change Code"
966
+ msgstr "Uredi kodo"
967
+
968
+ # @ crayon-syntax-highlighter
969
+ #: crayon_settings_wp.class.php:875
970
+ msgid "Refresh"
971
+ msgstr "Osveži"
972
+
973
+ # @ crayon-syntax-highlighter
974
+ #: crayon_settings_wp.class.php:900
975
+ msgid "ID"
976
+ msgstr "ID"
977
+
978
+ # @ crayon-syntax-highlighter
979
+ #: crayon_settings_wp.class.php:900
980
+ msgid "Posted"
981
+ msgstr "Objavljeno"
982
+
983
+ # @ crayon-syntax-highlighter
984
+ #: crayon_settings_wp.class.php:900
985
+ msgid "Modifed"
986
+ msgstr "Urejeno"
987
+
988
+ # @ crayon-syntax-highlighter
989
+ #: crayon_settings_wp.class.php:900
990
+ msgid "Contains Legacy Tags?"
991
+ msgstr "Vsebuje opuščene značke?"
992
+
993
+ # @ crayon-syntax-highlighter
994
+ #: crayon_settings_wp.class.php:1015 util/theme-editor/theme_editor.php:199
995
+ msgid "Duplicate"
996
+ msgstr "Podvoji"
997
+
998
+ # @ crayon-syntax-highlighter
999
+ #: crayon_settings_wp.class.php:1015
1000
+ msgid "Submit"
1001
+ msgstr "Objavi"
1002
+
1003
+ # @ crayon-syntax-highlighter
1004
+ #: crayon_settings_wp.class.php:1016 util/theme-editor/theme_editor.php:196
1005
+ msgid "Delete"
1006
+ msgstr "Izbriši"
1007
+
1008
+ # @ crayon-syntax-highlighter
1009
+ #: crayon_settings_wp.class.php:1020
1010
+ msgid "Duplicate a Stock Theme into a User Theme to allow editing."
1011
+ msgstr "Za omogočanje urejanja podvoji privzeto temo v uporabniško temo."
1012
+
1013
+ # @ crayon-syntax-highlighter
1014
+ #: crayon_settings_wp.class.php:1031
1015
+ #, php-format
1016
+ msgid ""
1017
+ "Change the %1$sfallback language%2$s to change the sample code or %3$schange "
1018
+ "it manually%4$s. Lines 5-7 are marked."
1019
+ msgstr ""
1020
+ "Uredi %1$salternativni jezik%2$s za urejanje poljubne kode ali jo %3$suredi "
1021
+ "ročno%4$s. Vrstice od 5 do 7 so označene."
1022
+
1023
+ # @ crayon-syntax-highlighter
1024
+ #: crayon_settings_wp.class.php:1055
1025
+ msgid "Add More"
1026
+ msgstr "Dodaj več"
1027
+
1028
+ # @ crayon-syntax-highlighter
1029
+ #: crayon_settings_wp.class.php:1059
1030
+ msgid "Line Height"
1031
+ msgstr "Velikost višine"
1032
+
1033
+ # @ crayon-syntax-highlighter
1034
+ #: crayon_settings_wp.class.php:1084
1035
+ msgid "Minimize code"
1036
+ msgstr "Minimiziraj kodo"
1037
+
1038
+ # @ crayon-syntax-highlighter
1039
+ #: crayon_settings_wp.class.php:1085
1040
+ msgid "Expand code beyond page borders on mouseover"
1041
+ msgstr "Ob lebdenju z miško razširi kodo po celotni strani"
1042
+
1043
+ # @ crayon-syntax-highlighter
1044
+ #: crayon_settings_wp.class.php:1086
1045
+ msgid "Enable code expanding toggling when possible"
1046
+ msgstr "Omogoči preklop razširanja kode, ko je to mogoče"
1047
+
1048
+ # @ crayon-syntax-highlighter
1049
+ #: crayon_settings_wp.class.php:1095
1050
+ msgid "Remove &lt;code&gt; tags surrounding the shortcode content"
1051
+ msgstr "Odstrani &lt;code&gt; značke okrog vsebine kratkih kod"
1052
+
1053
+ # @ crayon-syntax-highlighter
1054
+ #: crayon_settings_wp.class.php:1109
1055
+ msgid "Capture Inline Tags"
1056
+ msgstr "Prikaži značke v vrstici"
1057
+
1058
+ # @ crayon-syntax-highlighter
1059
+ #: crayon_settings_wp.class.php:1111
1060
+ msgid "Capture &lt;code&gt; as"
1061
+ msgstr "Prikaži &lt;code&gt; kot"
1062
+
1063
+ # @ crayon-syntax-highlighter
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 "
1071
+ "%szastarela%s! Uporabi %sUrejevalnik značk%s za pretovrbo opuščenih značk."
1072
+
1073
+ # @ crayon-syntax-highlighter
1074
+ #: crayon_settings_wp.class.php:1143
1075
+ msgid "Encode"
1076
+ msgstr "Kodiranje"
1077
+
1078
+ # @ crayon-syntax-highlighter
1079
+ #: crayon_settings_wp.class.php:1148
1080
+ msgid ""
1081
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
1082
+ "bbPress)"
1083
+ msgstr ""
1084
+ "Prikaži urejevalnik značk v kateremkoli primerku TinyMCE v ospredju (kot je "
1085
+ "bbPress)"
1086
+
1087
+ # @ crayon-syntax-highlighter
1088
+ #. translators: plugin header field 'PluginURI'
1089
+ #: crayon_wp.class.php:0
1090
+ msgid "https://github.com/aramkocharyan/crayon-syntax-highlighter"
1091
+ msgstr "https://github.com/aramkocharyan/crayon-syntax-highlighter"
1092
+
1093
+ # @ crayon-syntax-highlighter
1094
+ #. translators: plugin header field 'Version'
1095
+ #: crayon_wp.class.php:0
1096
+ msgid "2.4.0"
1097
+ msgstr "2.4.0"
1098
+
1099
+ # @ crayon-syntax-highlighter
1100
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:180
1101
+ msgid "OK"
1102
+ msgstr "V redu"
1103
+
1104
+ # @ crayon-syntax-highlighter
1105
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:182
1106
+ msgid "Cancel"
1107
+ msgstr "Prekliči"
1108
+
1109
+ # @ crayon-syntax-highlighter
1110
+ #: util/theme-editor/theme_editor.php:192
1111
+ msgid "User-Defined Theme"
1112
+ msgstr "Uporabniško nastavljena tema"
1113
+
1114
+ # @ crayon-syntax-highlighter
1115
+ #: util/theme-editor/theme_editor.php:193
1116
+ msgid "Stock Theme"
1117
+ msgstr "Privzeta tema"
1118
+
1119
+ # @ crayon-syntax-highlighter
1120
+ #: util/theme-editor/theme_editor.php:194
1121
+ msgid "Success!"
1122
+ msgstr "Uspeh!"
1123
+
1124
+ # @ crayon-syntax-highlighter
1125
+ #: util/theme-editor/theme_editor.php:195
1126
+ msgid "Failed!"
1127
+ msgstr "Napaka!"
1128
+
1129
+ # @ crayon-syntax-highlighter
1130
+ #: util/theme-editor/theme_editor.php:197
1131
+ #, php-format
1132
+ msgid "Are you sure you want to delete the \"%s\" theme?"
1133
+ msgstr "Ali ste prepričani, da želite izbrisati \"%s\" temo?"
1134
+
1135
+ # @ crayon-syntax-highlighter
1136
+ #: util/theme-editor/theme_editor.php:198
1137
+ msgid "Delete failed!"
1138
+ msgstr "Izbris neuspešen!"
1139
+
1140
+ # @ crayon-syntax-highlighter
1141
+ #: util/theme-editor/theme_editor.php:200
1142
+ msgid "New Name"
1143
+ msgstr "Novo ime"
1144
+
1145
+ # @ crayon-syntax-highlighter
1146
+ #: util/theme-editor/theme_editor.php:201
1147
+ msgid "Duplicate failed!"
1148
+ msgstr "Podvajanje neuspešno!"
1149
+
1150
+ # @ crayon-syntax-highlighter
1151
+ #: util/theme-editor/theme_editor.php:202
1152
+ msgid "Please check the log for details."
1153
+ msgstr "Za podrobnosti prosim preverite dnevnik."
1154
+
1155
+ # @ crayon-syntax-highlighter
1156
+ #: util/theme-editor/theme_editor.php:203
1157
+ msgid "Are you sure you want to discard all changes?"
1158
+ msgstr "Ali ste prepričani, da želite preklicati vse spremembe?"
1159
+
1160
+ # @ crayon-syntax-highlighter
1161
+ #: util/theme-editor/theme_editor.php:204
1162
+ #, php-format
1163
+ msgid "Editing Theme: %s"
1164
+ msgstr "Urejanje teme: %s"
1165
+
1166
+ # @ crayon-syntax-highlighter
1167
+ #: util/theme-editor/theme_editor.php:205
1168
+ #, php-format
1169
+ msgid "Creating Theme: %s"
1170
+ msgstr "Ustvarjanje teme: %s"
1171
+
1172
+ # @ crayon-syntax-highlighter
1173
+ #: util/theme-editor/theme_editor.php:206
1174
+ msgid "Submit Your Theme"
1175
+ msgstr "Objavite vašo temo"
1176
+
1177
+ # @ crayon-syntax-highlighter
1178
+ #: util/theme-editor/theme_editor.php:207
1179
+ msgid ""
1180
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
1181
+ "email me your theme - make sure it's considerably different from the stock "
1182
+ "themes :)"
1183
+ msgstr ""
1184
+ "Objavite vašo uporabniško temo za vključitev kot privzeto temo v Crayonu! To "
1185
+ "mi bo poslalo vašo temo preko e-pošte - prepričajte še, da bo precej "
1186
+ "drugačna od privzetih tem :)"
1187
+
1188
+ # @ crayon-syntax-highlighter
1189
+ #: util/theme-editor/theme_editor.php:208
1190
+ msgid "Message"
1191
+ msgstr "Sporočilo"
1192
+
1193
+ # @ crayon-syntax-highlighter
1194
+ #: util/theme-editor/theme_editor.php:209
1195
+ msgid "Please include this theme in Crayon!"
1196
+ msgstr "Prosim vključite to temo v Crayon!"
1197
+
1198
+ # @ crayon-syntax-highlighter
1199
+ #: util/theme-editor/theme_editor.php:210
1200
+ msgid "Submit was successful."
1201
+ msgstr "Objava je bila uspešna."
1202
+
1203
+ # @ crayon-syntax-highlighter
1204
+ #: util/theme-editor/theme_editor.php:211
1205
+ msgid "Submit failed!"
1206
+ msgstr "Objava je bila neuspešna!"
1207
+
1208
+ # @ crayon-syntax-highlighter
1209
+ #: util/theme-editor/theme_editor.php:294
1210
+ msgid "Information"
1211
+ msgstr "Informacija"
1212
+
1213
+ # @ crayon-syntax-highlighter
1214
+ #: util/theme-editor/theme_editor.php:295
1215
+ msgid "Highlighting"
1216
+ msgstr "Označevanje"
1217
+
1218
+ # @ crayon-syntax-highlighter
1219
+ #: util/theme-editor/theme_editor.php:296
1220
+ msgid "Frame"
1221
+ msgstr "Okvir"
1222
+
1223
+ # @ crayon-syntax-highlighter
1224
+ #: util/theme-editor/theme_editor.php:298
1225
+ msgid "Line Numbers"
1226
+ msgstr "Številke vrstic"
1227
+
1228
+ # @ crayon-syntax-highlighter
1229
+ #: util/theme-editor/theme_editor.php:301
1230
+ msgid "Background"
1231
+ msgstr "Ozadje"
1232
+
1233
+ # @ crayon-syntax-highlighter
1234
+ #: util/theme-editor/theme_editor.php:302
1235
+ msgid "Text"
1236
+ msgstr "Besedilo"
1237
+
1238
+ # @ crayon-syntax-highlighter
1239
+ #: util/theme-editor/theme_editor.php:303
1240
+ msgid "Border"
1241
+ msgstr "Obroba"
1242
+
1243
+ # @ crayon-syntax-highlighter
1244
+ #: util/theme-editor/theme_editor.php:304
1245
+ msgid "Top Border"
1246
+ msgstr "Zgornja obroba"
1247
+
1248
+ # @ crayon-syntax-highlighter
1249
+ #: util/theme-editor/theme_editor.php:305
1250
+ msgid "Bottom Border"
1251
+ msgstr "Spodnja obroba"
1252
+
1253
+ # @ crayon-syntax-highlighter
1254
+ #: util/theme-editor/theme_editor.php:306
1255
+ msgid "Right Border"
1256
+ msgstr "Desna obroba"
1257
+
1258
+ # @ crayon-syntax-highlighter
1259
+ #: util/theme-editor/theme_editor.php:308
1260
+ msgid "Hover"
1261
+ msgstr "Lebdenje"
1262
+
1263
+ # @ crayon-syntax-highlighter
1264
+ #: util/theme-editor/theme_editor.php:309
1265
+ msgid "Active"
1266
+ msgstr "Aktivno"
1267
+
1268
+ # @ crayon-syntax-highlighter
1269
+ #: util/theme-editor/theme_editor.php:310
1270
+ msgid "Pressed"
1271
+ msgstr "Pritisnjeno"
1272
+
1273
+ # @ crayon-syntax-highlighter
1274
+ #: util/theme-editor/theme_editor.php:311
1275
+ msgid "Pressed & Hover"
1276
+ msgstr "Pritisnjeno & lebdenje"
1277
+
1278
+ # @ crayon-syntax-highlighter
1279
+ #: util/theme-editor/theme_editor.php:312
1280
+ msgid "Pressed & Active"
1281
+ msgstr "Pritisnjeno & aktivno"
1282
+
1283
+ # @ crayon-syntax-highlighter
1284
+ #: util/theme-editor/theme_editor.php:315
1285
+ msgid "Buttons"
1286
+ msgstr "Gumbi"
1287
+
1288
+ # @ crayon-syntax-highlighter
1289
+ #: util/theme-editor/theme_editor.php:317
1290
+ msgid "Normal"
1291
+ msgstr "Navadno"
1292
+
1293
+ # @ crayon-syntax-highlighter
1294
+ #: util/theme-editor/theme_editor.php:319
1295
+ msgid "Striped"
1296
+ msgstr "Črtasto"
1297
+
1298
+ # @ crayon-syntax-highlighter
1299
+ #: util/theme-editor/theme_editor.php:320
1300
+ msgid "Marked"
1301
+ msgstr "Označeno"
1302
+
1303
+ # @ crayon-syntax-highlighter
1304
+ #: util/theme-editor/theme_editor.php:321
1305
+ msgid "Striped & Marked"
1306
+ msgstr "Črtasto & označeno"
1307
+
1308
+ # @ crayon-syntax-highlighter
1309
+ #: util/theme-editor/theme_editor.php:390
1310
+ msgid "Comment"
1311
+ msgstr "Komentar"
1312
+
1313
+ # @ crayon-syntax-highlighter
1314
+ #: util/theme-editor/theme_editor.php:391
1315
+ msgid "String"
1316
+ msgstr "Stavek"
1317
+
1318
+ # @ crayon-syntax-highlighter
1319
+ #: util/theme-editor/theme_editor.php:392
1320
+ msgid "Preprocessor"
1321
+ msgstr "Preprocesor"
1322
+
1323
+ # @ crayon-syntax-highlighter
1324
+ #: util/theme-editor/theme_editor.php:393
1325
+ msgid "Tag"
1326
+ msgstr "Značka"
1327
+
1328
+ # @ crayon-syntax-highlighter
1329
+ #: util/theme-editor/theme_editor.php:394
1330
+ msgid "Keyword"
1331
+ msgstr "Ključna beseda"
1332
+
1333
+ # @ crayon-syntax-highlighter
1334
+ #: util/theme-editor/theme_editor.php:395
1335
+ msgid "Statement"
1336
+ msgstr "Trditev"
1337
+
1338
+ # @ crayon-syntax-highlighter
1339
+ #: util/theme-editor/theme_editor.php:396
1340
+ msgid "Reserved"
1341
+ msgstr "Zasedeno"
1342
+
1343
+ # @ crayon-syntax-highlighter
1344
+ #: util/theme-editor/theme_editor.php:397
1345
+ msgid "Type"
1346
+ msgstr "Tip"
1347
+
1348
+ # @ crayon-syntax-highlighter
1349
+ #: util/theme-editor/theme_editor.php:398
1350
+ msgid "Modifier"
1351
+ msgstr "Modifikator"
1352
+
1353
+ # @ crayon-syntax-highlighter
1354
+ #: util/theme-editor/theme_editor.php:399
1355
+ msgid "Identifier"
1356
+ msgstr "Identifikator"
1357
+
1358
+ # @ crayon-syntax-highlighter
1359
+ #: util/theme-editor/theme_editor.php:400
1360
+ msgid "Entity"
1361
+ msgstr "Entiteta"
1362
+
1363
+ # @ crayon-syntax-highlighter
1364
+ #: util/theme-editor/theme_editor.php:401
1365
+ msgid "Variable"
1366
+ msgstr "Spremenljivka"
1367
+
1368
+ # @ crayon-syntax-highlighter
1369
+ #: util/theme-editor/theme_editor.php:402
1370
+ msgid "Constant"
1371
+ msgstr "Konstanta"
1372
+
1373
+ # @ crayon-syntax-highlighter
1374
+ #: util/theme-editor/theme_editor.php:403
1375
+ msgid "Operator"
1376
+ msgstr "Operator"
1377
+
1378
+ # @ crayon-syntax-highlighter
1379
+ #: util/theme-editor/theme_editor.php:404
1380
+ msgid "Symbol"
1381
+ msgstr "Simbol"
1382
+
1383
+ # @ crayon-syntax-highlighter
1384
+ #: util/theme-editor/theme_editor.php:405
1385
+ msgid "Notation"
1386
+ msgstr "Notacija"
1387
+
1388
+ # @ crayon-syntax-highlighter
1389
+ #: util/theme-editor/theme_editor.php:406
1390
+ msgid "Faded"
1391
+ msgstr "Prehodno"
1392
+
1393
+ # @ crayon-syntax-highlighter
1394
+ #: util/theme-editor/theme_editor.php:407
1395
+ msgid "HTML"
1396
+ msgstr "HTML"
1397
+
1398
+ # @ crayon-syntax-highlighter
1399
+ #: util/theme-editor/theme_editor.php:408
1400
+ msgid "Unhighlighted"
1401
+ msgstr "Neosvetljeno"
1402
+
1403
+ # @ crayon-syntax-highlighter
1404
+ #: util/theme-editor/theme_editor.php:542
1405
+ msgid "(Used for Copy/Paste)"
1406
+ msgstr "(Uporabljeno za kopiraj/prilepi)"
trans/crayon-syntax-highlighter-uk_UA.mo ADDED
Binary file
trans/crayon-syntax-highlighter-uk_UA.po ADDED
@@ -0,0 +1,1128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: crayon-syntax-highlighter\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-05-23 23:09+1000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \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=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.5.4\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPath-1: ..\n"
22
+
23
+ # @ crayon-syntax-highlighte
24
+ #: ../crayon_formatter.class.php:286
25
+ msgid "Toggle Line Numbers"
26
+ msgstr "Переключити номери рядків"
27
+
28
+ #: ../crayon_formatter.class.php:290
29
+ msgid "Toggle Plain Code"
30
+ msgstr "Переключити на звичайний код"
31
+
32
+ #: ../crayon_formatter.class.php:294
33
+ msgid "Toggle Line Wrap"
34
+ msgstr "Переключити лінію обгортки"
35
+
36
+ #: ../crayon_formatter.class.php:298 ../crayon_formatter.class.php:302
37
+ #, fuzzy
38
+ msgid "Expand Code"
39
+ msgstr "Розгорнути код"
40
+
41
+ #: ../crayon_formatter.class.php:306
42
+ msgid "Open Code In New Window"
43
+ msgstr "Відкрити код відкриється в новому вікні"
44
+
45
+ #: ../crayon_formatter.class.php:333
46
+ msgid "Contains Mixed Languages"
47
+ msgstr "Містить змішані мови"
48
+
49
+ #: ../crayon_settings.class.php:150
50
+ msgid "Hourly"
51
+ msgstr "Щогодини"
52
+
53
+ #: ../crayon_settings.class.php:150
54
+ msgid "Daily"
55
+ msgstr "Щодня"
56
+
57
+ #: ../crayon_settings.class.php:151
58
+ msgid "Weekly"
59
+ msgstr "Щотижня"
60
+
61
+ #: ../crayon_settings.class.php:151
62
+ msgid "Monthly"
63
+ msgstr "Щомісяця"
64
+
65
+ #: ../crayon_settings.class.php:152
66
+ msgid "Immediately"
67
+ msgstr "Негайно"
68
+
69
+ #: ../crayon_settings.class.php:163 ../crayon_settings.class.php:167
70
+ msgid "Max"
71
+ msgstr "Макс"
72
+
73
+ #: ../crayon_settings.class.php:163 ../crayon_settings.class.php:167
74
+ msgid "Min"
75
+ msgstr "Мін"
76
+
77
+ #: ../crayon_settings.class.php:163 ../crayon_settings.class.php:167
78
+ msgid "Static"
79
+ msgstr "Статичний"
80
+
81
+ #: ../crayon_settings.class.php:165 ../crayon_settings.class.php:169
82
+ #: ../crayon_settings_wp.class.php:774 ../crayon_settings_wp.class.php:783
83
+ #: ../crayon_settings_wp.class.php:1059 ../crayon_settings_wp.class.php:1061
84
+ msgid "Pixels"
85
+ msgstr "Пікселі"
86
+
87
+ #: ../crayon_settings.class.php:165 ../crayon_settings.class.php:169
88
+ msgid "Percent"
89
+ msgstr "Відсоток"
90
+
91
+ #: ../crayon_settings.class.php:178
92
+ msgid "None"
93
+ msgstr "Жоден"
94
+
95
+ #: ../crayon_settings.class.php:178
96
+ msgid "Left"
97
+ msgstr "Зліва"
98
+
99
+ #: ../crayon_settings.class.php:178
100
+ msgid "Center"
101
+ msgstr "Центр"
102
+
103
+ #: ../crayon_settings.class.php:178
104
+ msgid "Right"
105
+ msgstr "Зправо"
106
+
107
+ #: ../crayon_settings.class.php:180 ../crayon_settings.class.php:204
108
+ msgid "On MouseOver"
109
+ msgstr "При наведенні курсору миші"
110
+
111
+ #: ../crayon_settings.class.php:180 ../crayon_settings.class.php:186
112
+ msgid "Always"
113
+ msgstr "Завжди"
114
+
115
+ #: ../crayon_settings.class.php:180 ../crayon_settings.class.php:186
116
+ msgid "Never"
117
+ msgstr "Ніколи"
118
+
119
+ #: ../crayon_settings.class.php:186
120
+ msgid "When Found"
121
+ msgstr "коли знайдені"
122
+
123
+ #: ../crayon_settings.class.php:204
124
+ msgid "On Double Click"
125
+ msgstr "При подвійному кліці"
126
+
127
+ #: ../crayon_settings.class.php:204
128
+ msgid "On Single Click"
129
+ msgstr "На один клік"
130
+
131
+ #: ../crayon_settings.class.php:204
132
+ msgid "Disable Mouse Events"
133
+ msgstr "Відключення події миші"
134
+
135
+ #: ../crayon_settings.class.php:211
136
+ msgid "An error has occurred. Please try again later."
137
+ msgstr "Сталася помилка. Будь ласка, спробуйте пізніше."
138
+
139
+ #: ../crayon_settings.class.php:227
140
+ #, fuzzy
141
+ msgid "Inline Tag"
142
+ msgstr "Інлайн тегів"
143
+
144
+ #: ../crayon_settings.class.php:227
145
+ msgid "Block Tag"
146
+ msgstr "Блок тегів"
147
+
148
+ #: ../crayon_settings_wp.class.php:53 ../crayon_settings_wp.class.php:210
149
+ #: ../crayon_settings_wp.class.php:1255
150
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:254
151
+ msgid "Settings"
152
+ msgstr "Налаштування"
153
+
154
+ #: ../crayon_settings_wp.class.php:136
155
+ #, php-format
156
+ msgid "Press %s to Copy, %s to Paste"
157
+ msgstr "Натиснути %s щоб копіювати, %s щоб вставити"
158
+
159
+ #: ../crayon_settings_wp.class.php:137
160
+ msgid "Click To Expand Code"
161
+ msgstr "Натисніть, щоб збільшити код"
162
+
163
+ #: ../crayon_settings_wp.class.php:179
164
+ msgid "Prompt"
165
+ msgstr "Підказка"
166
+
167
+ #: ../crayon_settings_wp.class.php:180
168
+ msgid "Value"
169
+ msgstr "Значення"
170
+
171
+ #: ../crayon_settings_wp.class.php:181
172
+ msgid "Alert"
173
+ msgstr "Тривога"
174
+
175
+ #: ../crayon_settings_wp.class.php:182 ../crayon_settings_wp.class.php:920
176
+ msgid "No"
177
+ msgstr "Ні"
178
+
179
+ #: ../crayon_settings_wp.class.php:183 ../crayon_settings_wp.class.php:920
180
+ msgid "Yes"
181
+ msgstr "Так"
182
+
183
+ #: ../crayon_settings_wp.class.php:184
184
+ msgid "Confirm"
185
+ msgstr "Підтверджувати"
186
+
187
+ #: ../crayon_settings_wp.class.php:185
188
+ #, fuzzy
189
+ msgid "Change Code"
190
+ msgstr "Змінити код"
191
+
192
+ #: ../crayon_settings_wp.class.php:193
193
+ msgid "You do not have sufficient permissions to access this page."
194
+ msgstr "Ви не маєте достатньо прав для доступу до цієї сторінки."
195
+
196
+ #: ../crayon_settings_wp.class.php:225
197
+ msgid "Save Changes"
198
+ msgstr "Зберегти зміни"
199
+
200
+ #: ../crayon_settings_wp.class.php:233
201
+ msgid "Reset Settings"
202
+ msgstr "Скидання налаштувань"
203
+
204
+ #: ../crayon_settings_wp.class.php:491
205
+ msgid "General"
206
+ msgstr "Загальний"
207
+
208
+ #: ../crayon_settings_wp.class.php:492
209
+ msgid "Theme"
210
+ msgstr "Тема"
211
+
212
+ #: ../crayon_settings_wp.class.php:493
213
+ msgid "Font"
214
+ msgstr "Шрифт"
215
+
216
+ #: ../crayon_settings_wp.class.php:494
217
+ msgid "Metrics"
218
+ msgstr "Метрика"
219
+
220
+ #: ../crayon_settings_wp.class.php:495
221
+ #: ../util/theme-editor/theme_editor.php:299
222
+ msgid "Toolbar"
223
+ msgstr "Панель інструментів"
224
+
225
+ #: ../crayon_settings_wp.class.php:496
226
+ #: ../util/theme-editor/theme_editor.php:297
227
+ msgid "Lines"
228
+ msgstr "Лінії"
229
+
230
+ #: ../crayon_settings_wp.class.php:497
231
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:214
232
+ msgid "Code"
233
+ msgstr "Код"
234
+
235
+ #: ../crayon_settings_wp.class.php:498
236
+ msgid "Tags"
237
+ msgstr "Мітки"
238
+
239
+ #: ../crayon_settings_wp.class.php:499
240
+ msgid "Languages"
241
+ msgstr "Мови"
242
+
243
+ #: ../crayon_settings_wp.class.php:500
244
+ msgid "Files"
245
+ msgstr "Файли"
246
+
247
+ #: ../crayon_settings_wp.class.php:501
248
+ msgid "Posts"
249
+ msgstr "Повідомленя"
250
+
251
+ #: ../crayon_settings_wp.class.php:502
252
+ msgid "Tag Editor"
253
+ msgstr "Редактор тегів"
254
+
255
+ #: ../crayon_settings_wp.class.php:503
256
+ msgid "Misc"
257
+ msgstr "Різне"
258
+
259
+ #: ../crayon_settings_wp.class.php:506
260
+ msgid "Debug"
261
+ msgstr "Налагоджувати"
262
+
263
+ #: ../crayon_settings_wp.class.php:507
264
+ msgid "Errors"
265
+ msgstr "Помилки"
266
+
267
+ #: ../crayon_settings_wp.class.php:508
268
+ msgid "Log"
269
+ msgstr "Вхід"
270
+
271
+ #: ../crayon_settings_wp.class.php:511
272
+ msgid "About"
273
+ msgstr "Про"
274
+
275
+ #: ../crayon_settings_wp.class.php:751
276
+ msgid "Height"
277
+ msgstr "Висота"
278
+
279
+ #: ../crayon_settings_wp.class.php:757
280
+ msgid "Width"
281
+ msgstr "Ширина"
282
+
283
+ #: ../crayon_settings_wp.class.php:763
284
+ msgid "Top Margin"
285
+ msgstr "Верхнє поле"
286
+
287
+ #: ../crayon_settings_wp.class.php:764
288
+ msgid "Bottom Margin"
289
+ msgstr "Нижнє поле"
290
+
291
+ #: ../crayon_settings_wp.class.php:765 ../crayon_settings_wp.class.php:770
292
+ msgid "Left Margin"
293
+ msgstr "Ліве поле"
294
+
295
+ #: ../crayon_settings_wp.class.php:766 ../crayon_settings_wp.class.php:770
296
+ msgid "Right Margin"
297
+ msgstr "Праве поле"
298
+
299
+ #: ../crayon_settings_wp.class.php:776
300
+ msgid "Horizontal Alignment"
301
+ msgstr "Горизонтальне вирівнювання"
302
+
303
+ #: ../crayon_settings_wp.class.php:779
304
+ msgid "Allow floating elements to surround Crayon"
305
+ msgstr "Дозволити плаваючі елементи, щоб оточити Crayon"
306
+
307
+ #: ../crayon_settings_wp.class.php:781
308
+ msgid "Inline Margin"
309
+ msgstr "Inline Margin"
310
+
311
+ #: ../crayon_settings_wp.class.php:789
312
+ msgid "Display the Toolbar"
313
+ msgstr "Відобразити панель інструментів"
314
+
315
+ #: ../crayon_settings_wp.class.php:792
316
+ msgid "Overlay the toolbar on code rather than push it down when possible"
317
+ msgstr ""
318
+ "Накладки панелі інструментів на коді, а не штовхати його вниз, коли це "
319
+ "можливо"
320
+
321
+ #: ../crayon_settings_wp.class.php:793
322
+ msgid "Toggle the toolbar on single click when it is overlayed"
323
+ msgstr "Переключіть панель інструментів в один клік, коли вона накладається"
324
+
325
+ #: ../crayon_settings_wp.class.php:794
326
+ msgid "Delay hiding the toolbar on MouseOut"
327
+ msgstr "Затримка для приховання панелі інструментів при наведені миші"
328
+
329
+ #: ../crayon_settings_wp.class.php:796
330
+ msgid "Display the title when provided"
331
+ msgstr "Відображення заголовка, коли це передбачено"
332
+
333
+ #: ../crayon_settings_wp.class.php:797
334
+ msgid "Display the language"
335
+ msgstr "Мова дисплея"
336
+
337
+ #: ../crayon_settings_wp.class.php:804
338
+ msgid "Display striped code lines"
339
+ msgstr "Відображення отриманого коду"
340
+
341
+ #: ../crayon_settings_wp.class.php:805
342
+ msgid "Enable line marking for important lines"
343
+ msgstr "Включити лінію розмітки для важливих ліній"
344
+
345
+ #: ../crayon_settings_wp.class.php:806
346
+ msgid "Enable line ranges for showing only parts of code"
347
+ msgstr "Включити діапазони лінії для показу тільки частини коду"
348
+
349
+ #: ../crayon_settings_wp.class.php:807
350
+ msgid "Display line numbers by default"
351
+ msgstr "Відображати номери рядків за замовчуванням"
352
+
353
+ #: ../crayon_settings_wp.class.php:808
354
+ msgid "Enable line number toggling"
355
+ msgstr "Включити перемикач номерів рядків"
356
+
357
+ #: ../crayon_settings_wp.class.php:809
358
+ msgid "Wrap lines by default"
359
+ msgstr "Перенесення рядків за замовчуванням"
360
+
361
+ #: ../crayon_settings_wp.class.php:810
362
+ msgid "Enable line wrap toggling"
363
+ msgstr "Включити лінії обтікання"
364
+
365
+ #: ../crayon_settings_wp.class.php:811
366
+ msgid "Start line numbers from"
367
+ msgstr "Почніть номери рядків з"
368
+
369
+ #: ../crayon_settings_wp.class.php:822
370
+ msgid "When no language is provided, use the fallback"
371
+ msgstr "Коли жодна мова не надається, використовуйте запасний варіант"
372
+
373
+ #: ../crayon_settings_wp.class.php:828
374
+ #, php-format
375
+ msgid "%d language has been detected."
376
+ msgstr "%d мова була видалена."
377
+
378
+ #: ../crayon_settings_wp.class.php:829
379
+ msgid "Parsing was successful"
380
+ msgstr "Розбір був успішним"
381
+
382
+ #: ../crayon_settings_wp.class.php:829
383
+ msgid "Parsing was unsuccessful"
384
+ msgstr "Розбір був невдалим"
385
+
386
+ #: ../crayon_settings_wp.class.php:835
387
+ #, php-format
388
+ msgid "The selected language with id %s could not be loaded"
389
+ msgstr "Вибрана мова з ідентифікатором %s не може бути завантажена"
390
+
391
+ #: ../crayon_settings_wp.class.php:838
392
+ msgid "Show Languages"
393
+ msgstr "Показати Мови"
394
+
395
+ #: ../crayon_settings_wp.class.php:874
396
+ msgid "Show Crayon Posts"
397
+ msgstr "Показати Crayon Повідомленя"
398
+
399
+ #: ../crayon_settings_wp.class.php:875
400
+ msgid "Refresh"
401
+ msgstr "Оновити"
402
+
403
+ #: ../crayon_settings_wp.class.php:900
404
+ msgid "ID"
405
+ msgstr "ID"
406
+
407
+ #: ../crayon_settings_wp.class.php:900
408
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:191
409
+ #: ../util/theme-editor/theme_editor.php:314
410
+ msgid "Title"
411
+ msgstr "Назва"
412
+
413
+ #: ../crayon_settings_wp.class.php:900
414
+ msgid "Posted"
415
+ msgstr "Додано"
416
+
417
+ #: ../crayon_settings_wp.class.php:900
418
+ msgid "Modifed"
419
+ msgstr "Модифіковано"
420
+
421
+ #: ../crayon_settings_wp.class.php:900
422
+ msgid "Contains Legacy Tags?"
423
+ msgstr "Містить застарілі теги?"
424
+
425
+ #: ../crayon_settings_wp.class.php:1015
426
+ msgid "Edit"
427
+ msgstr "Редагувати"
428
+
429
+ #: ../crayon_settings_wp.class.php:1015
430
+ #: ../util/theme-editor/theme_editor.php:199
431
+ msgid "Duplicate"
432
+ msgstr "Дублювати"
433
+
434
+ #: ../crayon_settings_wp.class.php:1015
435
+ msgid "Submit"
436
+ msgstr "Підтвердити"
437
+
438
+ #: ../crayon_settings_wp.class.php:1016
439
+ #: ../util/theme-editor/theme_editor.php:196
440
+ msgid "Delete"
441
+ msgstr "Видаляти"
442
+
443
+ #: ../crayon_settings_wp.class.php:1018
444
+ msgid "Loading..."
445
+ msgstr "Завантаження ..."
446
+
447
+ #: ../crayon_settings_wp.class.php:1020
448
+ msgid "Duplicate a Stock Theme into a User Theme to allow editing."
449
+ msgstr "Дублювання теми в тему користувача, це дозволить редагувати її."
450
+
451
+ #: ../crayon_settings_wp.class.php:1031
452
+ #, php-format
453
+ msgid ""
454
+ "Change the %1$s fallback language%2$s to change the sample code or "
455
+ "%3$schange it manually%4$s. Lines 5-7 are marked."
456
+ msgstr ""
457
+ "Змінити %1$s резервну мову %2$s, щоб змінити зразок коду або %3$s змінити "
458
+ "це&quot; &quot;вручну %4$s. Лінії 5-7 помічені"
459
+
460
+ #: ../crayon_settings_wp.class.php:1038
461
+ msgid "Enable Live Preview"
462
+ msgstr "Включити швидкий перегляд"
463
+
464
+ #: ../crayon_settings_wp.class.php:1040
465
+ msgid "Enqueue themes in the header (more efficient)."
466
+ msgstr "Ставити теми в заголовку (більше ефективно)."
467
+
468
+ #: ../crayon_settings_wp.class.php:1043
469
+ #, php-format
470
+ msgid "The selected theme with id %s could not be loaded"
471
+ msgstr "Обрана тема з ідентифікатором %s не може бути завантажена"
472
+
473
+ #: ../crayon_settings_wp.class.php:1055
474
+ msgid "Add More"
475
+ msgstr "Додати детальніше"
476
+
477
+ #: ../crayon_settings_wp.class.php:1057
478
+ msgid "Custom Font Size"
479
+ msgstr "Нестандартний розмір шрифту"
480
+
481
+ #: ../crayon_settings_wp.class.php:1059
482
+ #, fuzzy
483
+ msgid "Line Height"
484
+ msgstr "Висота лінії"
485
+
486
+ #: ../crayon_settings_wp.class.php:1064
487
+ #, php-format
488
+ msgid "The selected font with id %s could not be loaded"
489
+ msgstr "Обраний шрифт з ідентифікатором %s не може бути завантажений"
490
+
491
+ #: ../crayon_settings_wp.class.php:1070
492
+ msgid "Enqueue fonts in the header (more efficient)."
493
+ msgstr "Ставити шрифти в заголовку (більше ефективною)."
494
+
495
+ #: ../crayon_settings_wp.class.php:1075
496
+ msgid "Enable plain code view and display"
497
+ msgstr "Включити звичайний вид дисплея і коду"
498
+
499
+ #: ../crayon_settings_wp.class.php:1078
500
+ msgid "Enable plain code toggling"
501
+ msgstr "Переключити на простий код"
502
+
503
+ #: ../crayon_settings_wp.class.php:1079
504
+ msgid "Show the plain code by default"
505
+ msgstr "Показати простий код за замовчуванням"
506
+
507
+ #: ../crayon_settings_wp.class.php:1080
508
+ msgid "Enable code copy/paste"
509
+ msgstr "Включити код копіювання / вставки"
510
+
511
+ #: ../crayon_settings_wp.class.php:1082
512
+ msgid "Enable opening code in a window"
513
+ msgstr "Включити відкриття коду у вікні"
514
+
515
+ #: ../crayon_settings_wp.class.php:1083
516
+ msgid "Always display scrollbars"
517
+ msgstr "Завжди відображати смуги прокрутки"
518
+
519
+ #: ../crayon_settings_wp.class.php:1084
520
+ msgid "Minimize code"
521
+ msgstr "Згорнути код"
522
+
523
+ #: ../crayon_settings_wp.class.php:1085
524
+ msgid "Expand code beyond page borders on mouseover"
525
+ msgstr "Розгорнути код за межі рамки сторінки при наведенні курсору миші"
526
+
527
+ #: ../crayon_settings_wp.class.php:1086
528
+ msgid "Enable code expanding toggling when possible"
529
+ msgstr "Включити коду розширення перемиканням, коли це можливо"
530
+
531
+ #: ../crayon_settings_wp.class.php:1089
532
+ msgid "Decode HTML entities in code"
533
+ msgstr "Розшифруйте HTML сутності в коді"
534
+
535
+ #: ../crayon_settings_wp.class.php:1091
536
+ msgid "Decode HTML entities in attributes"
537
+ msgstr "Розшифруйте HTML сутності в атрибутах"
538
+
539
+ #: ../crayon_settings_wp.class.php:1093
540
+ msgid "Remove whitespace surrounding the shortcode content"
541
+ msgstr "Видалити прогалини навколо змісту шорткода"
542
+
543
+ #: ../crayon_settings_wp.class.php:1095
544
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
545
+ msgstr "Дозволити підсвічувати змішані мови з роздільниками і тегами."
546
+
547
+ #: ../crayon_settings_wp.class.php:1097
548
+ msgid "Show Mixed Language Icon (+)"
549
+ msgstr "Показати Змішана мовну іконку (+)"
550
+
551
+ #: ../crayon_settings_wp.class.php:1099
552
+ msgid "Tab size in spaces"
553
+ msgstr "Розмір табуляції ті пробілів"
554
+
555
+ #: ../crayon_settings_wp.class.php:1101
556
+ msgid "Blank lines before code:"
557
+ msgstr "Порожніх рядків до коду:"
558
+
559
+ #: ../crayon_settings_wp.class.php:1103
560
+ msgid "Blank lines after code:"
561
+ msgstr "Порожніх рядків після коду:"
562
+
563
+ #: ../crayon_settings_wp.class.php:1108
564
+ #, fuzzy
565
+ msgid "Capture Inline Tags"
566
+ msgstr "Захоплення вбудованих тегів"
567
+
568
+ #: ../crayon_settings_wp.class.php:1109
569
+ msgid "Wrap Inline Tags"
570
+ msgstr "Обгортка Інлайн тегів"
571
+
572
+ #: ../crayon_settings_wp.class.php:1110
573
+ #, fuzzy
574
+ msgid "Capture &lt;code&gt; as"
575
+ msgstr "Захоплення <code> як"
576
+
577
+ #: ../crayon_settings_wp.class.php:1114
578
+ msgid "Capture `backquotes` as &lt;code&gt;"
579
+ msgstr "Захоплення `зворотніх лапок` як <code>"
580
+
581
+ #: ../crayon_settings_wp.class.php:1115
582
+ msgid "Capture &lt;pre&gt; tags as Crayons"
583
+ msgstr "Захоплення <pre> тегів в Crayons"
584
+
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 "
592
+ "%s! Замість цього використовуйте&quot; &quot;%s редактор тегів %s замість і "
593
+ "конвертуйте застарілі признаки."
594
+
595
+ #: ../crayon_settings_wp.class.php:1118
596
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
597
+ msgstr "Захоплення міні тегу [php][/php] як Crayons."
598
+
599
+ #: ../crayon_settings_wp.class.php:1119
600
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
601
+ msgstr "Захоплення вбудованих тегів {php}{/php} всередині пропозицій."
602
+
603
+ #: ../crayon_settings_wp.class.php:1120
604
+ msgid "Enable [plain][/plain] tag."
605
+ msgstr "Включити [plain][/plain] тег."
606
+
607
+ #: ../crayon_settings_wp.class.php:1125
608
+ msgid ""
609
+ "When loading local files and a relative path is given for the URL, use the "
610
+ "absolute path"
611
+ msgstr ""
612
+ "При завантаженні локальних файлів і відносний шляхів використовуйте URL "
613
+ "з&quot; &quot;абсолютними шляхами"
614
+
615
+ #: ../crayon_settings_wp.class.php:1128
616
+ msgid "Followed by your relative URL."
617
+ msgstr "Слідом за вашою відносною URL."
618
+
619
+ #: ../crayon_settings_wp.class.php:1135
620
+ msgid "Convert Legacy Tags"
621
+ msgstr "Перетворення застарілих тегів"
622
+
623
+ #: ../crayon_settings_wp.class.php:1138
624
+ msgid "No Legacy Tags Found"
625
+ msgstr "Застарілі теги не знайдені"
626
+
627
+ #: ../crayon_settings_wp.class.php:1142
628
+ msgid "Encode"
629
+ msgstr "Кодувати"
630
+
631
+ #: ../crayon_settings_wp.class.php:1144
632
+ #, php-format
633
+ msgid ""
634
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
635
+ "attribute"
636
+ msgstr ""
637
+ "Використовуйте %s для розділення імен параметрів від значень в <pre> "
638
+ "атрибутів &quot; &quot;класу"
639
+
640
+ #: ../crayon_settings_wp.class.php:1147
641
+ msgid ""
642
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
643
+ "bbPress)"
644
+ msgstr ""
645
+ "Відображення редактору тегів в будь-яких випадках TinyMCE на зовнішньому "
646
+ "інтерфейсі (наприклад,&quot; &quot;bbPress)"
647
+
648
+ #: ../crayon_settings_wp.class.php:1148
649
+ msgid "Display Tag Editor settings on the frontend"
650
+ msgstr "Налаштування інтерфейсу редактора тегів"
651
+
652
+ #: ../crayon_settings_wp.class.php:1152
653
+ msgid "Clear the cache used to store remote code requests"
654
+ msgstr ""
655
+ "Очистити кеш який використовується для зберігання віддалених запитів коду"
656
+
657
+ #: ../crayon_settings_wp.class.php:1154
658
+ msgid "Clear Now"
659
+ msgstr "Очистити зараз"
660
+
661
+ #: ../crayon_settings_wp.class.php:1155
662
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
663
+ msgstr "Спроба завантажити CSS і JavaScript Crayon лише тоді, коли потрібно"
664
+
665
+ #: ../crayon_settings_wp.class.php:1156
666
+ msgid "Disable enqueuing for page templates that may contain The Loop."
667
+ msgstr ""
668
+ "Відключення поставок у чергу для шаблонів сторінок, які можуть містити "
669
+ "петлю."
670
+
671
+ #: ../crayon_settings_wp.class.php:1157
672
+ msgid "Allow Crayons inside comments"
673
+ msgstr "Дозволити Crayons всередині коментарів"
674
+
675
+ #: ../crayon_settings_wp.class.php:1158
676
+ msgid "Remove Crayons from excerpts"
677
+ msgstr "Видалити Crayons з уривків"
678
+
679
+ #: ../crayon_settings_wp.class.php:1159
680
+ msgid "Load Crayons only from the main Wordpress query"
681
+ msgstr "Завантажте Crayons тільки з головного Wordpress запиту"
682
+
683
+ #: ../crayon_settings_wp.class.php:1160
684
+ msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
685
+ msgstr ""
686
+ "Відключити жести миші для пристроїв з сенсорними екранами (наприклад "
687
+ "MouseOver)"
688
+
689
+ #: ../crayon_settings_wp.class.php:1161
690
+ msgid "Disable animations"
691
+ msgstr "Відключити анімацію"
692
+
693
+ #: ../crayon_settings_wp.class.php:1162
694
+ msgid "Disable runtime stats"
695
+ msgstr "Відключити статистику виконання"
696
+
697
+ #: ../crayon_settings_wp.class.php:1168
698
+ msgid "Log errors for individual Crayons"
699
+ msgstr "Вести лог помилок для окремих Crayons"
700
+
701
+ #: ../crayon_settings_wp.class.php:1169
702
+ msgid "Log system-wide errors"
703
+ msgstr "Вести лог загальносистемних помилок"
704
+
705
+ #: ../crayon_settings_wp.class.php:1170
706
+ msgid "Display custom message for errors"
707
+ msgstr "Показати користувачу повідомлення про наявність помилок"
708
+
709
+ #: ../crayon_settings_wp.class.php:1182
710
+ msgid "Show Log"
711
+ msgstr "Показати Лог"
712
+
713
+ #: ../crayon_settings_wp.class.php:1182
714
+ msgid "Hide Log"
715
+ msgstr "Приховати лог"
716
+
717
+ #: ../crayon_settings_wp.class.php:1184
718
+ msgid "Clear Log"
719
+ msgstr "Очистити журнал"
720
+
721
+ #: ../crayon_settings_wp.class.php:1185
722
+ msgid "Email Admin"
723
+ msgstr "E-mail Адміна"
724
+
725
+ #: ../crayon_settings_wp.class.php:1187
726
+ msgid "Email Developer"
727
+ msgstr "Написати розробнику"
728
+
729
+ #: ../crayon_settings_wp.class.php:1189
730
+ msgid "The log is currently empty."
731
+ msgstr "Журнал у даний час порожній."
732
+
733
+ #: ../crayon_settings_wp.class.php:1191
734
+ msgid "The log file exists and is writable."
735
+ msgstr "Файл журналу існує та доступний для запису."
736
+
737
+ #: ../crayon_settings_wp.class.php:1191
738
+ msgid "The log file exists and is not writable."
739
+ msgstr "Файл журналу існує і не доступний для запису."
740
+
741
+ #: ../crayon_settings_wp.class.php:1193
742
+ msgid "The log file does not exist and is not writable."
743
+ msgstr "Файл журналу не існує, і не доступний для запису."
744
+
745
+ #: ../crayon_settings_wp.class.php:1203
746
+ msgid "Version"
747
+ msgstr "Версія"
748
+
749
+ #: ../crayon_settings_wp.class.php:1205
750
+ msgid "Developer"
751
+ msgstr "Розробник"
752
+
753
+ #: ../crayon_settings_wp.class.php:1206
754
+ msgid "Translators"
755
+ msgstr "Перекладачі"
756
+
757
+ #: ../crayon_settings_wp.class.php:1249
758
+ msgid "?"
759
+ msgstr "?"
760
+
761
+ #: ../crayon_settings_wp.class.php:1256
762
+ #: ../util/theme-editor/theme_editor.php:336
763
+ msgid "Theme Editor"
764
+ msgstr "Тема редактора"
765
+
766
+ #: ../crayon_settings_wp.class.php:1257
767
+ msgid "Donate"
768
+ msgstr "Жертвувати"
769
+
770
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:62
771
+ msgid "Add Crayon Code"
772
+ msgstr "Додати Crayon код"
773
+
774
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:63
775
+ msgid "Edit Crayon Code"
776
+ msgstr "Редагувати Crayon код"
777
+
778
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:64
779
+ msgid "Add"
780
+ msgstr "Додати"
781
+
782
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:65
783
+ #: ../util/theme-editor/theme_editor.php:352
784
+ msgid "Save"
785
+ msgstr "Зберегти"
786
+
787
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:182
788
+ msgid "OK"
789
+ msgstr "Добре"
790
+
791
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:184
792
+ msgid "Cancel"
793
+ msgstr "Скасувати"
794
+
795
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:193
796
+ msgid "A short description"
797
+ msgstr "Короткий опис"
798
+
799
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:195
800
+ #: ../util/theme-editor/theme_editor.php:318
801
+ msgid "Inline"
802
+ msgstr "Інлайн"
803
+
804
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:197
805
+ msgid "Don't Highlight"
806
+ msgstr "Не виділено"
807
+
808
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:202
809
+ #: ../util/theme-editor/theme_editor.php:322
810
+ msgid "Language"
811
+ msgstr "Мова"
812
+
813
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:205
814
+ msgid "Line Range"
815
+ msgstr "Діапазон рядків"
816
+
817
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:206
818
+ msgid "(e.g. 3-5 or 3)"
819
+ msgstr "(Наприклад, 3-5 або 3)"
820
+
821
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:207
822
+ msgid "Marked Lines"
823
+ msgstr "Зазначені лінії"
824
+
825
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:208
826
+ msgid "(e.g. 1,2,3-5)"
827
+ msgstr "(Наприклад 1,2,3-5)"
828
+
829
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:217
830
+ msgid "Clear"
831
+ msgstr "Чисто"
832
+
833
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:221
834
+ msgid "Paste your code here, or type it in manually."
835
+ msgstr "Вставте тут код, або введіть його вручну."
836
+
837
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:225
838
+ msgid "URL"
839
+ msgstr "URL"
840
+
841
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:227
842
+ msgid "Relative local path or absolute URL"
843
+ msgstr "Відносний локальний шлях або абсолютний URL"
844
+
845
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:230
846
+ msgid ""
847
+ "If the URL fails to load, the code above will be shown instead. If no code "
848
+ "exists, an error is shown."
849
+ msgstr ""
850
+ "Якщо URL не вдається завантажити, наведений вище код буде показано замість "
851
+ "цього. Якщо код&quot; &quot;не існує, помилка показана"
852
+
853
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:232
854
+ #, php-format
855
+ msgid ""
856
+ "If a relative local path is given it will be appended to %s - which is "
857
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
858
+ msgstr ""
859
+ "Який відносний локальний шлях буде додано до %s - можно визначені у %sCrayon "
860
+ "&gt; Установки &gt; Файли%s"
861
+
862
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:259
863
+ msgid "Change the following settings to override their global values."
864
+ msgstr "Змініть наступні настройки, щоб перевизначити свої глобальні значення."
865
+
866
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:261
867
+ msgid "Only changes (shown yellow) are applied."
868
+ msgstr "Застосовуються тільки зміни (показані жовтим)."
869
+
870
+ #: ../util/tag-editor/crayon_tag_editor_wp.class.php:263
871
+ #, php-format
872
+ msgid ""
873
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
874
+ "affect overridden settings."
875
+ msgstr ""
876
+ "Майбутні зміни в глобальних налаштуваннях під %s Crayon> Налаштування %s "
877
+ "не&quot; &quot;впливає на перевизначені налаштування"
878
+
879
+ #: ../util/theme-editor/theme_editor.php:192
880
+ msgid "User-Defined Theme"
881
+ msgstr "Користувальницькі теми"
882
+
883
+ #: ../util/theme-editor/theme_editor.php:193
884
+ #, fuzzy
885
+ msgid "Stock Theme"
886
+ msgstr "Фото Стиль"
887
+
888
+ #: ../util/theme-editor/theme_editor.php:194
889
+ msgid "Success!"
890
+ msgstr "Успіх!"
891
+
892
+ #: ../util/theme-editor/theme_editor.php:195
893
+ msgid "Failed!"
894
+ msgstr "Не вдалося!"
895
+
896
+ #: ../util/theme-editor/theme_editor.php:197
897
+ #, php-format
898
+ msgid "Are you sure you want to delete the \"%s\" theme?"
899
+ msgstr "Ви впевнені, що хочете видалити \"%s\" тему?"
900
+
901
+ #: ../util/theme-editor/theme_editor.php:198
902
+ #, fuzzy
903
+ msgid "Delete failed!"
904
+ msgstr "Видалити не вдалося!"
905
+
906
+ #: ../util/theme-editor/theme_editor.php:200
907
+ msgid "New Name"
908
+ msgstr "Нове ім&#39;я"
909
+
910
+ #: ../util/theme-editor/theme_editor.php:201
911
+ #, fuzzy
912
+ msgid "Duplicate failed!"
913
+ msgstr "Скопіювати не вдалося!"
914
+
915
+ #: ../util/theme-editor/theme_editor.php:202
916
+ msgid "Please check the log for details."
917
+ msgstr "Будь ласка, перевірте журнал для деталей."
918
+
919
+ #: ../util/theme-editor/theme_editor.php:203
920
+ msgid "Are you sure you want to discard all changes?"
921
+ msgstr "Ви впевнені, що хочете скасувати всі зміни?"
922
+
923
+ #: ../util/theme-editor/theme_editor.php:204
924
+ #, fuzzy, php-format
925
+ msgid "Editing Theme: %s"
926
+ msgstr "Редагування теми: %s"
927
+
928
+ #: ../util/theme-editor/theme_editor.php:205
929
+ #, fuzzy, php-format
930
+ msgid "Creating Theme: %s"
931
+ msgstr "Створення теми: %s"
932
+
933
+ #: ../util/theme-editor/theme_editor.php:206
934
+ msgid "Submit Your Theme"
935
+ msgstr "Підвердіть вашу тему"
936
+
937
+ #: ../util/theme-editor/theme_editor.php:207
938
+ msgid ""
939
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
940
+ "email me your theme - make sure it's considerably different from the stock "
941
+ "themes :)"
942
+ msgstr ""
943
+ "Додайте користувача теми для включення в якості теми в Crayon! Надішліть "
944
+ "мені вашу тему - щоб переконайтися, що віна значно відрізняється від тих що "
945
+ "представлені :)"
946
+
947
+ #: ../util/theme-editor/theme_editor.php:208
948
+ msgid "Message"
949
+ msgstr "Повідомлення"
950
+
951
+ #: ../util/theme-editor/theme_editor.php:209
952
+ msgid "Please include this theme in Crayon!"
953
+ msgstr "Будь ласка, включіть цю тему в Crayon!"
954
+
955
+ #: ../util/theme-editor/theme_editor.php:210
956
+ #, fuzzy
957
+ msgid "Submit was successful."
958
+ msgstr "Підтверження успішно."
959
+
960
+ #: ../util/theme-editor/theme_editor.php:211
961
+ msgid "Submit failed!"
962
+ msgstr "Надіслати не вдалося!"
963
+
964
+ #: ../util/theme-editor/theme_editor.php:294
965
+ msgid "Information"
966
+ msgstr "Інформація"
967
+
968
+ #: ../util/theme-editor/theme_editor.php:295
969
+ #, fuzzy
970
+ msgid "Highlighting"
971
+ msgstr "Підкреслюючи"
972
+
973
+ #: ../util/theme-editor/theme_editor.php:296
974
+ msgid "Frame"
975
+ msgstr "Рамка"
976
+
977
+ #: ../util/theme-editor/theme_editor.php:298
978
+ #, fuzzy
979
+ msgid "Line Numbers"
980
+ msgstr "Номери рядків"
981
+
982
+ #: ../util/theme-editor/theme_editor.php:301
983
+ msgid "Background"
984
+ msgstr "Фон"
985
+
986
+ #: ../util/theme-editor/theme_editor.php:302
987
+ msgid "Text"
988
+ msgstr "Текст"
989
+
990
+ #: ../util/theme-editor/theme_editor.php:303
991
+ msgid "Border"
992
+ msgstr "Межа"
993
+
994
+ #: ../util/theme-editor/theme_editor.php:304
995
+ msgid "Top Border"
996
+ msgstr "Верхня межа"
997
+
998
+ #: ../util/theme-editor/theme_editor.php:305
999
+ #, fuzzy
1000
+ msgid "Bottom Border"
1001
+ msgstr "Нижня межа"
1002
+
1003
+ #: ../util/theme-editor/theme_editor.php:306
1004
+ msgid "Right Border"
1005
+ msgstr "Права межа"
1006
+
1007
+ #: ../util/theme-editor/theme_editor.php:308
1008
+ msgid "Hover"
1009
+ msgstr "Зависати"
1010
+
1011
+ #: ../util/theme-editor/theme_editor.php:309
1012
+ msgid "Active"
1013
+ msgstr "Активний"
1014
+
1015
+ #: ../util/theme-editor/theme_editor.php:310
1016
+ msgid "Pressed"
1017
+ msgstr "Натиснутий"
1018
+
1019
+ #: ../util/theme-editor/theme_editor.php:311
1020
+ msgid "Pressed & Hover"
1021
+ msgstr "Натиснутий & Зависший"
1022
+
1023
+ #: ../util/theme-editor/theme_editor.php:312
1024
+ msgid "Pressed & Active"
1025
+ msgstr "Натиснутий & Активний"
1026
+
1027
+ #: ../util/theme-editor/theme_editor.php:315
1028
+ msgid "Buttons"
1029
+ msgstr "Кнопки"
1030
+
1031
+ #: ../util/theme-editor/theme_editor.php:317
1032
+ msgid "Normal"
1033
+ msgstr "Нормальний"
1034
+
1035
+ #: ../util/theme-editor/theme_editor.php:319
1036
+ msgid "Striped"
1037
+ msgstr "Смугастий"
1038
+
1039
+ #: ../util/theme-editor/theme_editor.php:320
1040
+ #, fuzzy
1041
+ msgid "Marked"
1042
+ msgstr "З позначкою"
1043
+
1044
+ #: ../util/theme-editor/theme_editor.php:321
1045
+ msgid "Striped & Marked"
1046
+ msgstr "Смугастий & Помічений"
1047
+
1048
+ #: ../util/theme-editor/theme_editor.php:351
1049
+ msgid "Back To Settings"
1050
+ msgstr "Повернутися до налаштувань"
1051
+
1052
+ #: ../util/theme-editor/theme_editor.php:390
1053
+ msgid "Comment"
1054
+ msgstr "Коментар"
1055
+
1056
+ #: ../util/theme-editor/theme_editor.php:391
1057
+ msgid "String"
1058
+ msgstr "Рядок"
1059
+
1060
+ #: ../util/theme-editor/theme_editor.php:392
1061
+ msgid "Preprocessor"
1062
+ msgstr "Препроцесор"
1063
+
1064
+ #: ../util/theme-editor/theme_editor.php:393
1065
+ #, fuzzy
1066
+ msgid "Tag"
1067
+ msgstr "Тег"
1068
+
1069
+ #: ../util/theme-editor/theme_editor.php:394
1070
+ msgid "Keyword"
1071
+ msgstr "Ключове слово"
1072
+
1073
+ #: ../util/theme-editor/theme_editor.php:395
1074
+ msgid "Statement"
1075
+ msgstr "Заява"
1076
+
1077
+ #: ../util/theme-editor/theme_editor.php:396
1078
+ msgid "Reserved"
1079
+ msgstr "Зарезервований"
1080
+
1081
+ #: ../util/theme-editor/theme_editor.php:397
1082
+ msgid "Type"
1083
+ msgstr "Тип"
1084
+
1085
+ #: ../util/theme-editor/theme_editor.php:398
1086
+ #, fuzzy
1087
+ msgid "Modifier"
1088
+ msgstr "Модифікатор"
1089
+
1090
+ #: ../util/theme-editor/theme_editor.php:399
1091
+ msgid "Identifier"
1092
+ msgstr "Ідентифікатор"
1093
+
1094
+ #: ../util/theme-editor/theme_editor.php:400
1095
+ msgid "Entity"
1096
+ msgstr "Організація"
1097
+
1098
+ #: ../util/theme-editor/theme_editor.php:401
1099
+ msgid "Variable"
1100
+ msgstr "Мінлива"
1101
+
1102
+ #: ../util/theme-editor/theme_editor.php:402
1103
+ msgid "Constant"
1104
+ msgstr "Постійна"
1105
+
1106
+ #: ../util/theme-editor/theme_editor.php:403
1107
+ msgid "Operator"
1108
+ msgstr "Оператор"
1109
+
1110
+ #: ../util/theme-editor/theme_editor.php:404
1111
+ msgid "Symbol"
1112
+ msgstr "Символ"
1113
+
1114
+ #: ../util/theme-editor/theme_editor.php:405
1115
+ msgid "Notation"
1116
+ msgstr "Позначення"
1117
+
1118
+ #: ../util/theme-editor/theme_editor.php:406
1119
+ msgid "Faded"
1120
+ msgstr "Зів&#39;ялі"
1121
+
1122
+ #: ../util/theme-editor/theme_editor.php:407
1123
+ msgid "HTML"
1124
+ msgstr "HTML"
1125
+
1126
+ #: ../util/theme-editor/theme_editor.php:540
1127
+ msgid "(Used for Copy/Paste)"
1128
+ msgstr "(Використовується для Copy / Paste)"
trans/crayon-syntax-highlighter-zh_CN.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-zh_CN.po CHANGED
@@ -1,2393 +1,1380 @@
1
- msgid ""
2
- msgstr ""
3
- <<<<<<< HEAD
4
- <<<<<<< HEAD
5
- "Project-Id-Version: Crayon Syntax Highlighter v2.0.2\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2013-01-04 18:27:03+0000\n"
9
- =======
10
- =======
11
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
12
- "Project-Id-Version: Crayon Syntax Highlighter v2.0.1\n"
13
- "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: \n"
15
- "PO-Revision-Date: 2013-01-01 15:31:12+0000\n"
16
- <<<<<<< HEAD
17
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
18
- =======
19
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
20
- "Last-Translator: admin <admin@neverno.me>\n"
21
- "Language-Team: \n"
22
- "MIME-Version: 1.0\n"
23
- "Content-Type: text/plain; charset=UTF-8\n"
24
- "Content-Transfer-Encoding: 8bit\n"
25
- "Plural-Forms: nplurals=2; plural=1;\n"
26
- "X-Poedit-Language: Chinese\n"
27
- "X-Poedit-Country: PEOPLE'S REPUBLIC OF CHINA\n"
28
- "X-Poedit-SourceCharset: utf-8\n"
29
- "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"
30
- "X-Poedit-Basepath: ../\n"
31
- "X-Poedit-Bookmarks: \n"
32
- "X-Poedit-SearchPath-0: .\n"
33
- "X-Textdomain-Support: yes"
34
-
35
- #: crayon_formatter.class.php:274
36
- #@ crayon-syntax-highlighter
37
- msgid "Toggle Plain Code"
38
- msgstr "纯文本显示代码"
39
-
40
- #: crayon_formatter.class.php:278
41
- #, php-format
42
- #@ crayon-syntax-highlighter
43
- msgid "Press %s to Copy, %s to Paste"
44
- msgstr "使用 %s 复制,使用 %s 粘贴。"
45
-
46
- #: crayon_formatter.class.php:278
47
- #@ crayon-syntax-highlighter
48
- msgid "Copy Plain Code"
49
- msgstr "复制代码"
50
-
51
- #: crayon_formatter.class.php:280
52
- #@ crayon-syntax-highlighter
53
- msgid "Open Code In New Window"
54
- msgstr "在新窗口中显示代码"
55
-
56
- #: crayon_formatter.class.php:282
57
- #@ crayon-syntax-highlighter
58
- msgid "Toggle Line Numbers"
59
- <<<<<<< HEAD
60
- <<<<<<< HEAD
61
- msgstr "切换显示行编号"
62
- =======
63
- msgstr "切换是否显示行编号"
64
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
65
- =======
66
- msgstr "切换是否显示行编号"
67
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
68
-
69
- #: crayon_formatter.class.php:285
70
- #@ crayon-syntax-highlighter
71
- msgid "Contains Mixed Languages"
72
- msgstr "含多种语言"
73
-
74
- #: crayon_settings.class.php:145
75
- #@ crayon-syntax-highlighter
76
- msgid "Hourly"
77
- msgstr "每小时"
78
-
79
- #: crayon_settings.class.php:145
80
- #@ crayon-syntax-highlighter
81
- msgid "Daily"
82
- msgstr "每天"
83
-
84
- #: crayon_settings.class.php:146
85
- #@ crayon-syntax-highlighter
86
- msgid "Weekly"
87
- msgstr "每周"
88
-
89
- #: crayon_settings.class.php:146
90
- #@ crayon-syntax-highlighter
91
- msgid "Monthly"
92
- msgstr "每月"
93
-
94
- #: crayon_settings.class.php:147
95
- #@ crayon-syntax-highlighter
96
- msgid "Immediately"
97
- msgstr "立刻"
98
-
99
- #: crayon_settings.class.php:157
100
- #: crayon_settings.class.php:161
101
- #@ crayon-syntax-highlighter
102
- msgid "Max"
103
- msgstr "最大"
104
-
105
- #: crayon_settings.class.php:157
106
- #: crayon_settings.class.php:161
107
- #@ crayon-syntax-highlighter
108
- msgid "Min"
109
- msgstr "最小"
110
-
111
- #: crayon_settings.class.php:157
112
- #: crayon_settings.class.php:161
113
- #@ crayon-syntax-highlighter
114
- msgid "Static"
115
- msgstr "指定"
116
-
117
- #: crayon_settings.class.php:159
118
- #: crayon_settings.class.php:163
119
- #: crayon_settings_wp.class.php:722
120
- #: crayon_settings_wp.class.php:731
121
- <<<<<<< HEAD
122
- <<<<<<< HEAD
123
- #: crayon_settings_wp.class.php:1005
124
- =======
125
- #: crayon_settings_wp.class.php:1004
126
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
127
- =======
128
- #: crayon_settings_wp.class.php:1004
129
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
130
- #@ crayon-syntax-highlighter
131
- msgid "Pixels"
132
- msgstr "px"
133
-
134
- #: crayon_settings.class.php:159
135
- #: crayon_settings.class.php:163
136
- #@ crayon-syntax-highlighter
137
- msgid "Percent"
138
- msgstr "%"
139
-
140
- #: crayon_settings.class.php:172
141
- #@ crayon-syntax-highlighter
142
- msgid "None"
143
- msgstr "从不"
144
-
145
- #: crayon_settings.class.php:172
146
- #@ crayon-syntax-highlighter
147
- msgid "Left"
148
- msgstr "左对齐"
149
-
150
- #: crayon_settings.class.php:172
151
- #@ crayon-syntax-highlighter
152
- msgid "Center"
153
- msgstr "居中"
154
-
155
- #: crayon_settings.class.php:172
156
- #@ crayon-syntax-highlighter
157
- msgid "Right"
158
- msgstr "右对齐"
159
-
160
- #: crayon_settings.class.php:174
161
- #: crayon_settings.class.php:198
162
- #@ crayon-syntax-highlighter
163
- msgid "On MouseOver"
164
- msgstr "鼠标经过"
165
-
166
- #: crayon_settings.class.php:174
167
- #: crayon_settings.class.php:180
168
- #@ crayon-syntax-highlighter
169
- msgid "Always"
170
- msgstr "始终显示"
171
-
172
- #: crayon_settings.class.php:174
173
- #: crayon_settings.class.php:180
174
- #@ crayon-syntax-highlighter
175
- msgid "Never"
176
- msgstr "从不显示"
177
-
178
- #: crayon_settings.class.php:180
179
- #@ crayon-syntax-highlighter
180
- msgid "When Found"
181
- <<<<<<< HEAD
182
- <<<<<<< HEAD
183
- msgstr "当有指定时"
184
- =======
185
- msgstr "当发现时"
186
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
187
- =======
188
- msgstr "当发现时"
189
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
190
-
191
- #: crayon_settings.class.php:198
192
- #@ crayon-syntax-highlighter
193
- msgid "On Double Click"
194
- msgstr "双击"
195
-
196
- #: crayon_settings.class.php:198
197
- #@ crayon-syntax-highlighter
198
- msgid "On Single Click"
199
- msgstr "单击"
200
-
201
- #: crayon_settings.class.php:198
202
- #@ crayon-syntax-highlighter
203
- msgid "Disable Mouse Events"
204
- msgstr "禁止鼠标行为"
205
-
206
- #: crayon_settings.class.php:205
207
- #@ crayon-syntax-highlighter
208
- msgid "An error has occurred. Please try again later."
209
- msgstr "发生错误,请稍后重试。"
210
-
211
- #: crayon_settings_wp.class.php:51
212
- #: crayon_settings_wp.class.php:189
213
- <<<<<<< HEAD
214
- <<<<<<< HEAD
215
- #: crayon_settings_wp.class.php:1195
216
- =======
217
- #: crayon_settings_wp.class.php:1194
218
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
219
- =======
220
- #: crayon_settings_wp.class.php:1194
221
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
222
- #: util/tag-editor/crayon_tag_editor_wp.class.php:245
223
- #@ crayon-syntax-highlighter
224
- msgid "Settings"
225
- msgstr "设置"
226
-
227
- #: crayon_settings_wp.class.php:171
228
- #@ crayon-syntax-highlighter
229
- msgid "You do not have sufficient permissions to access this page."
230
- msgstr "无权限访问此页面"
231
-
232
- #: crayon_settings_wp.class.php:204
233
- #@ crayon-syntax-highlighter
234
- msgid "Save Changes"
235
- msgstr "保存设置"
236
-
237
- #: crayon_settings_wp.class.php:211
238
- #@ crayon-syntax-highlighter
239
- msgid "Reset Settings"
240
- msgstr "初始化设置"
241
-
242
- #: crayon_settings_wp.class.php:458
243
- #@ crayon-syntax-highlighter
244
- msgid "General"
245
- msgstr "一般"
246
-
247
- #: crayon_settings_wp.class.php:459
248
- #@ crayon-syntax-highlighter
249
- msgid "Theme"
250
- msgstr "主题"
251
-
252
- #: crayon_settings_wp.class.php:460
253
- #@ crayon-syntax-highlighter
254
- msgid "Font"
255
- msgstr "字体"
256
-
257
- #: crayon_settings_wp.class.php:461
258
- #@ crayon-syntax-highlighter
259
- msgid "Metrics"
260
- msgstr "排版"
261
-
262
- #: crayon_settings_wp.class.php:462
263
- #: util/theme-editor/theme_editor.php:273
264
- #@ crayon-syntax-highlighter
265
- msgid "Toolbar"
266
- msgstr "工具栏"
267
-
268
- #: crayon_settings_wp.class.php:463
269
- #: util/theme-editor/theme_editor.php:271
270
- #@ crayon-syntax-highlighter
271
- msgid "Lines"
272
- msgstr ""
273
-
274
- #: crayon_settings_wp.class.php:464
275
- #: util/tag-editor/crayon_tag_editor_wp.class.php:205
276
- #@ crayon-syntax-highlighter
277
- msgid "Code"
278
- msgstr "代码"
279
-
280
- #: crayon_settings_wp.class.php:465
281
- #@ crayon-syntax-highlighter
282
- msgid "Tags"
283
- msgstr "标签"
284
-
285
- #: crayon_settings_wp.class.php:466
286
- #@ crayon-syntax-highlighter
287
- msgid "Languages"
288
- msgstr "语言"
289
-
290
- #: crayon_settings_wp.class.php:467
291
- #@ crayon-syntax-highlighter
292
- msgid "Files"
293
- msgstr "文件"
294
-
295
- #: crayon_settings_wp.class.php:469
296
- #@ crayon-syntax-highlighter
297
- msgid "Tag Editor"
298
- msgstr "标签编辑器"
299
-
300
- #: crayon_settings_wp.class.php:470
301
- #@ crayon-syntax-highlighter
302
- msgid "Misc"
303
- msgstr "其它"
304
-
305
- #: crayon_settings_wp.class.php:473
306
- #@ crayon-syntax-highlighter
307
- msgid "Debug"
308
- msgstr "调试"
309
-
310
- #: crayon_settings_wp.class.php:474
311
- #@ crayon-syntax-highlighter
312
- msgid "Errors"
313
- msgstr "错误"
314
-
315
- #: crayon_settings_wp.class.php:475
316
- #@ crayon-syntax-highlighter
317
- msgid "Log"
318
- msgstr "日志"
319
-
320
- #: crayon_settings_wp.class.php:478
321
- #@ crayon-syntax-highlighter
322
- msgid "About"
323
- msgstr "关于"
324
-
325
- #: crayon_settings_wp.class.php:699
326
- #@ crayon-syntax-highlighter
327
- msgid "Height"
328
- msgstr ""
329
-
330
- #: crayon_settings_wp.class.php:705
331
- #@ crayon-syntax-highlighter
332
- msgid "Width"
333
- msgstr ""
334
-
335
- #: crayon_settings_wp.class.php:711
336
- #@ crayon-syntax-highlighter
337
- msgid "Top Margin"
338
- msgstr "顶部外边距"
339
-
340
- #: crayon_settings_wp.class.php:712
341
- #@ crayon-syntax-highlighter
342
- msgid "Bottom Margin"
343
- msgstr "底部外边距"
344
-
345
- #: crayon_settings_wp.class.php:713
346
- #: crayon_settings_wp.class.php:718
347
- #@ crayon-syntax-highlighter
348
- msgid "Left Margin"
349
- msgstr "左外边距"
350
-
351
- #: crayon_settings_wp.class.php:714
352
- #: crayon_settings_wp.class.php:718
353
- #@ crayon-syntax-highlighter
354
- msgid "Right Margin"
355
- msgstr "右外边距"
356
-
357
- #: crayon_settings_wp.class.php:724
358
- #@ crayon-syntax-highlighter
359
- msgid "Horizontal Alignment"
360
- msgstr "对齐方式"
361
-
362
- #: crayon_settings_wp.class.php:727
363
- #@ crayon-syntax-highlighter
364
- msgid "Allow floating elements to surround Crayon"
365
- msgstr "允许插件代码周围使用浮动元素"
366
-
367
- #: crayon_settings_wp.class.php:729
368
- #@ crayon-syntax-highlighter
369
- msgid "Inline Margin"
370
- msgstr "行内间距"
371
-
372
- #: crayon_settings_wp.class.php:737
373
- #@ crayon-syntax-highlighter
374
- msgid "Display the Toolbar"
375
- msgstr "工具栏显示方式:"
376
-
377
- #: crayon_settings_wp.class.php:740
378
- #@ crayon-syntax-highlighter
379
- msgid "Overlay the toolbar on code rather than push it down when possible"
380
- <<<<<<< HEAD
381
- <<<<<<< HEAD
382
- msgstr "工具栏悬浮在代码上而不是把代码推下去"
383
- =======
384
- msgstr ""
385
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
386
- =======
387
- msgstr ""
388
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
389
-
390
- #: crayon_settings_wp.class.php:741
391
- #@ crayon-syntax-highlighter
392
- msgid "Toggle the toolbar on single click when it is overlayed"
393
- <<<<<<< HEAD
394
- <<<<<<< HEAD
395
- msgstr "当工具栏悬浮时单击隐藏工具栏"
396
- =======
397
- msgstr ""
398
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
399
- =======
400
- msgstr ""
401
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
402
-
403
- #: crayon_settings_wp.class.php:742
404
- #@ crayon-syntax-highlighter
405
- msgid "Delay hiding the toolbar on MouseOut"
406
- msgstr "工具栏消失附带延迟效果"
407
-
408
- #: crayon_settings_wp.class.php:744
409
- #@ crayon-syntax-highlighter
410
- msgid "Display the title when provided"
411
- msgstr "有标题则显示标题"
412
-
413
- #: crayon_settings_wp.class.php:745
414
- #@ crayon-syntax-highlighter
415
- msgid "Display the language"
416
- msgstr "显示语言方式:"
417
-
418
- #: crayon_settings_wp.class.php:752
419
- #@ crayon-syntax-highlighter
420
- msgid "Display striped code lines"
421
- msgstr "条纹显示代码"
422
-
423
- #: crayon_settings_wp.class.php:753
424
- #@ crayon-syntax-highlighter
425
- msgid "Enable line marking for important lines"
426
- msgstr "允许关键行高亮"
427
-
428
- #: crayon_settings_wp.class.php:755
429
- #@ crayon-syntax-highlighter
430
- msgid "Display line numbers by default"
431
- msgstr "默认显示行编号"
432
-
433
- #: crayon_settings_wp.class.php:756
434
- #@ crayon-syntax-highlighter
435
- msgid "Enable line number toggling"
436
- msgstr "允许切换显示行编号"
437
-
438
- #: crayon_settings_wp.class.php:759
439
- #@ crayon-syntax-highlighter
440
- msgid "Start line numbers from"
441
- msgstr "行编号始于"
442
-
443
- #: crayon_settings_wp.class.php:770
444
- #@ crayon-syntax-highlighter
445
- msgid "When no language is provided, use the fallback"
446
- <<<<<<< HEAD
447
- <<<<<<< HEAD
448
- msgstr "当没指定语言, 则默认语言为"
449
- =======
450
- msgstr "当没指定语言,则默认语言为"
451
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
452
- =======
453
- msgstr "当没指定语言,则默认语言为"
454
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
455
-
456
- #: crayon_settings_wp.class.php:776
457
- #, php-format
458
- #@ crayon-syntax-highlighter
459
- msgid "%d language has been detected."
460
- msgid_plural "%d languages have been detected."
461
- <<<<<<< HEAD
462
- <<<<<<< HEAD
463
- msgstr[0] "已支持 %d 种语言,"
464
- msgstr[1] "已支持 %d 种语言,"
465
- =======
466
- msgstr[0] "已支持 %d 种语言。"
467
- msgstr[1] "已支持 %d 种语言。"
468
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
469
- =======
470
- msgstr[0] "已支持 %d 种语言。"
471
- msgstr[1] "已支持 %d 种语言。"
472
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
473
-
474
- #: crayon_settings_wp.class.php:777
475
- #@ crayon-syntax-highlighter
476
- msgid "Parsing was successful"
477
- msgstr "加载完成"
478
-
479
- #: crayon_settings_wp.class.php:777
480
- #@ crayon-syntax-highlighter
481
- msgid "Parsing was unsuccessful"
482
- msgstr "加载失败"
483
-
484
- #: crayon_settings_wp.class.php:783
485
- #, php-format
486
- #@ crayon-syntax-highlighter
487
- msgid "The selected language with id %s could not be loaded"
488
- msgstr "ID为 %s 的语言加载失败"
489
-
490
- #: crayon_settings_wp.class.php:786
491
- #@ crayon-syntax-highlighter
492
- msgid "Show Languages"
493
- msgstr "显示全部语言"
494
-
495
- <<<<<<< HEAD
496
- <<<<<<< HEAD
497
- #: crayon_settings_wp.class.php:966
498
- #@ crayon-syntax-highlighter
499
- msgid "Loading..."
500
- msgstr "载入中"
501
-
502
- #: crayon_settings_wp.class.php:1196
503
- =======
504
- =======
505
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
506
- #: crayon_settings_wp.class.php:965
507
- #@ crayon-syntax-highlighter
508
- msgid "Loading..."
509
- msgstr "载入中..."
510
-
511
- #: crayon_settings_wp.class.php:1195
512
- <<<<<<< HEAD
513
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
514
- =======
515
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
516
- #: util/theme-editor/theme_editor.php:309
517
- #@ crayon-syntax-highlighter
518
- msgid "Theme Editor"
519
- msgstr "主题编辑器"
520
-
521
- <<<<<<< HEAD
522
- <<<<<<< HEAD
523
- #: crayon_settings_wp.class.php:986
524
- =======
525
- #: crayon_settings_wp.class.php:985
526
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
527
- =======
528
- #: crayon_settings_wp.class.php:985
529
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
530
- #@ crayon-syntax-highlighter
531
- msgid "Enable Live Preview"
532
- msgstr "允许即时预览"
533
-
534
- <<<<<<< HEAD
535
- <<<<<<< HEAD
536
- #: crayon_settings_wp.class.php:988
537
- =======
538
- #: crayon_settings_wp.class.php:987
539
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
540
- =======
541
- #: crayon_settings_wp.class.php:987
542
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
543
- #@ crayon-syntax-highlighter
544
- msgid "Enqueue themes in the header (more efficient)."
545
- msgstr "在头部就加载主题(推荐)"
546
-
547
- <<<<<<< HEAD
548
- <<<<<<< HEAD
549
- #: crayon_settings_wp.class.php:1189
550
- =======
551
- #: crayon_settings_wp.class.php:1188
552
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
553
- =======
554
- #: crayon_settings_wp.class.php:1188
555
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
556
- #@ crayon-syntax-highlighter
557
- msgid "?"
558
- msgstr "?"
559
-
560
- <<<<<<< HEAD
561
- <<<<<<< HEAD
562
- #: crayon_settings_wp.class.php:991
563
- =======
564
- #: crayon_settings_wp.class.php:990
565
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
566
- =======
567
- #: crayon_settings_wp.class.php:990
568
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
569
- #, php-format
570
- #@ crayon-syntax-highlighter
571
- msgid "The selected theme with id %s could not be loaded"
572
- msgstr "ID为 %s 的主题加载失败"
573
-
574
- <<<<<<< HEAD
575
- <<<<<<< HEAD
576
- #: crayon_settings_wp.class.php:1003
577
- =======
578
- #: crayon_settings_wp.class.php:1002
579
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
580
- =======
581
- #: crayon_settings_wp.class.php:1002
582
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
583
- #@ crayon-syntax-highlighter
584
- msgid "Custom Font Size"
585
- msgstr "字体大小"
586
-
587
- <<<<<<< HEAD
588
- <<<<<<< HEAD
589
- #: crayon_settings_wp.class.php:1008
590
- =======
591
- #: crayon_settings_wp.class.php:1007
592
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
593
- =======
594
- #: crayon_settings_wp.class.php:1007
595
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
596
- #, php-format
597
- #@ crayon-syntax-highlighter
598
- msgid "The selected font with id %s could not be loaded"
599
- msgstr "ID为 %s 的字体加载失败"
600
-
601
- <<<<<<< HEAD
602
- <<<<<<< HEAD
603
- #: crayon_settings_wp.class.php:1014
604
- =======
605
- #: crayon_settings_wp.class.php:1013
606
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
607
- =======
608
- #: crayon_settings_wp.class.php:1013
609
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
610
- #@ crayon-syntax-highlighter
611
- msgid "Enqueue fonts in the header (more efficient)."
612
- msgstr "在头部就加载字体(推荐)"
613
-
614
- <<<<<<< HEAD
615
- <<<<<<< HEAD
616
- #: crayon_settings_wp.class.php:1019
617
- =======
618
- #: crayon_settings_wp.class.php:1018
619
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
620
- =======
621
- #: crayon_settings_wp.class.php:1018
622
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
623
- #@ crayon-syntax-highlighter
624
- msgid "Enable plain code view and display"
625
- msgstr "允许纯文本显示代码且显示方式为"
626
-
627
- <<<<<<< HEAD
628
- <<<<<<< HEAD
629
- #: crayon_settings_wp.class.php:1022
630
- =======
631
- #: crayon_settings_wp.class.php:1021
632
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
633
- =======
634
- #: crayon_settings_wp.class.php:1021
635
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
636
- #@ crayon-syntax-highlighter
637
- msgid "Enable plain code toggling"
638
- msgstr "允许切换纯文本显示代码"
639
-
640
- <<<<<<< HEAD
641
- <<<<<<< HEAD
642
- #: crayon_settings_wp.class.php:1023
643
- =======
644
- #: crayon_settings_wp.class.php:1022
645
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
646
- =======
647
- #: crayon_settings_wp.class.php:1022
648
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
649
- #@ crayon-syntax-highlighter
650
- msgid "Show the plain code by default"
651
- msgstr "默认纯文本显示代码"
652
-
653
- <<<<<<< HEAD
654
- <<<<<<< HEAD
655
- #: crayon_settings_wp.class.php:1024
656
- =======
657
- #: crayon_settings_wp.class.php:1023
658
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
659
- =======
660
- #: crayon_settings_wp.class.php:1023
661
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
662
- #@ crayon-syntax-highlighter
663
- msgid "Enable code copy/paste"
664
- msgstr "允许代码复制/粘贴"
665
-
666
- <<<<<<< HEAD
667
- <<<<<<< HEAD
668
- #: crayon_settings_wp.class.php:1026
669
- =======
670
- #: crayon_settings_wp.class.php:1025
671
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
672
- =======
673
- #: crayon_settings_wp.class.php:1025
674
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
675
- #@ crayon-syntax-highlighter
676
- msgid "Enable opening code in a window"
677
- msgstr "允许新窗口显示代码"
678
-
679
- <<<<<<< HEAD
680
- <<<<<<< HEAD
681
- #: crayon_settings_wp.class.php:1027
682
- =======
683
- #: crayon_settings_wp.class.php:1026
684
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
685
- =======
686
- #: crayon_settings_wp.class.php:1026
687
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
688
- #@ crayon-syntax-highlighter
689
- msgid "Always display scrollbars"
690
- msgstr "总是显示滚动条"
691
-
692
- <<<<<<< HEAD
693
- <<<<<<< HEAD
694
- #: crayon_settings_wp.class.php:1042
695
- =======
696
- #: crayon_settings_wp.class.php:1041
697
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
698
- =======
699
- #: crayon_settings_wp.class.php:1041
700
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
701
- #@ crayon-syntax-highlighter
702
- msgid "Tab size in spaces"
703
- msgstr "Tab 等于几个空格"
704
-
705
- <<<<<<< HEAD
706
- <<<<<<< HEAD
707
- #: crayon_settings_wp.class.php:1032
708
- #@ crayon-syntax-highlighter
709
- msgid "Decode HTML entities in code"
710
- msgstr "在代码中进行 HTML 转义"
711
-
712
- #: crayon_settings_wp.class.php:1034
713
- #@ crayon-syntax-highlighter
714
- msgid "Decode HTML entities in attributes"
715
- msgstr "在属性中进行 HTML 转义"
716
-
717
- #: crayon_settings_wp.class.php:1036
718
- =======
719
- =======
720
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
721
- #: crayon_settings_wp.class.php:1031
722
- #@ crayon-syntax-highlighter
723
- msgid "Decode HTML entities in code"
724
- msgstr "在代码中进行 HTML 解码"
725
-
726
- #: crayon_settings_wp.class.php:1033
727
- #@ crayon-syntax-highlighter
728
- msgid "Decode HTML entities in attributes"
729
- msgstr "在属性中进行 HTML 解码"
730
-
731
- #: crayon_settings_wp.class.php:1035
732
- <<<<<<< HEAD
733
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
734
- =======
735
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
736
- #@ crayon-syntax-highlighter
737
- msgid "Remove whitespace surrounding the shortcode content"
738
- msgstr "删除短代码周围的空白"
739
-
740
- <<<<<<< HEAD
741
- <<<<<<< HEAD
742
- #: crayon_settings_wp.class.php:1038
743
- =======
744
- #: crayon_settings_wp.class.php:1037
745
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
746
- =======
747
- #: crayon_settings_wp.class.php:1037
748
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
749
- #@ crayon-syntax-highlighter
750
- msgid "Allow Mixed Language Highlighting with delimiters and tags."
751
- msgstr "允许多重语言高亮使用分隔符和标签"
752
-
753
- <<<<<<< HEAD
754
- <<<<<<< HEAD
755
- #: crayon_settings_wp.class.php:1040
756
- =======
757
- #: crayon_settings_wp.class.php:1039
758
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
759
- =======
760
- #: crayon_settings_wp.class.php:1039
761
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
762
- #@ crayon-syntax-highlighter
763
- msgid "Show Mixed Language Icon (+)"
764
- msgstr "显示多重语言图标 (+)"
765
-
766
- <<<<<<< HEAD
767
- <<<<<<< HEAD
768
- #: crayon_settings_wp.class.php:1052
769
- =======
770
- #: crayon_settings_wp.class.php:1051
771
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
772
- =======
773
- #: crayon_settings_wp.class.php:1051
774
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
775
- #@ crayon-syntax-highlighter
776
- msgid "Capture Mini Tags like [php][/php] as Crayons."
777
- msgstr "使用迷你标签(如[php][/php])"
778
-
779
- <<<<<<< HEAD
780
- <<<<<<< HEAD
781
- #: crayon_settings_wp.class.php:1053
782
- =======
783
- #: crayon_settings_wp.class.php:1052
784
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
785
- =======
786
- #: crayon_settings_wp.class.php:1052
787
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
788
- #@ crayon-syntax-highlighter
789
- msgid "Capture Inline Tags like {php}{/php} inside sentences."
790
- msgstr "捕获如{php}{/php}形式的行内标签"
791
-
792
- <<<<<<< HEAD
793
- <<<<<<< HEAD
794
- #: crayon_settings_wp.class.php:1054
795
- =======
796
- #: crayon_settings_wp.class.php:1053
797
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
798
- =======
799
- #: crayon_settings_wp.class.php:1053
800
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
801
- #@ crayon-syntax-highlighter
802
- msgid "Wrap Inline Tags"
803
- msgstr "行内标签自动换行"
804
-
805
- <<<<<<< HEAD
806
- <<<<<<< HEAD
807
- #: crayon_settings_wp.class.php:1055
808
- #@ crayon-syntax-highlighter
809
- msgid "Capture `backquotes` as &lt;code&gt;"
810
- msgstr "捕获 `反引号` 为 &lt;code&gt; 标签"
811
-
812
- #: crayon_settings_wp.class.php:1056
813
- #@ crayon-syntax-highlighter
814
- msgid "Capture &lt;pre&gt; tags as Crayons"
815
- msgstr "捕获 &lt;pre&gt; 标签为插件所用"
816
-
817
- #: crayon_settings_wp.class.php:1057
818
- =======
819
- =======
820
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
821
- #: crayon_settings_wp.class.php:1054
822
- #@ crayon-syntax-highlighter
823
- msgid "Capture `backquotes` as &lt;code&gt;"
824
- msgstr "把 `反引号` 绑定为 &lt;code&gt;"
825
-
826
- #: crayon_settings_wp.class.php:1055
827
- #@ crayon-syntax-highlighter
828
- msgid "Capture &lt;pre&gt; tags as Crayons"
829
- msgstr "指定 &lt;pre&gt; 为插件所有"
830
-
831
- #: crayon_settings_wp.class.php:1056
832
- <<<<<<< HEAD
833
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
834
- =======
835
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
836
- #@ crayon-syntax-highlighter
837
- msgid "Enable [plain][/plain] tag."
838
- msgstr "启用 [plain][/plain] 标签"
839
-
840
- <<<<<<< HEAD
841
- <<<<<<< HEAD
842
- #: crayon_settings_wp.class.php:1062
843
- =======
844
- #: crayon_settings_wp.class.php:1061
845
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
846
- =======
847
- #: crayon_settings_wp.class.php:1061
848
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
849
- #@ crayon-syntax-highlighter
850
- msgid "When loading local files and a relative path is given for the URL, use the absolute path"
851
- msgstr "当 URL 为相对路径,使用的绝对路径为"
852
-
853
- <<<<<<< HEAD
854
- <<<<<<< HEAD
855
- #: crayon_settings_wp.class.php:1065
856
- =======
857
- #: crayon_settings_wp.class.php:1064
858
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
859
- =======
860
- #: crayon_settings_wp.class.php:1064
861
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
862
- #@ crayon-syntax-highlighter
863
- msgid "Followed by your relative URL."
864
- msgstr "置于相对路径之前"
865
-
866
- <<<<<<< HEAD
867
- <<<<<<< HEAD
868
- #: crayon_settings_wp.class.php:1081
869
- =======
870
- #: crayon_settings_wp.class.php:1080
871
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
872
- =======
873
- #: crayon_settings_wp.class.php:1080
874
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
875
- #, php-format
876
- #@ crayon-syntax-highlighter
877
- msgid "Use %s to separate setting names from values in the &lt;pre&gt; class attribute"
878
- msgstr "&lt;pre&gt; 标签中使用 %s 分割每个属性与属性值。"
879
-
880
- <<<<<<< HEAD
881
- <<<<<<< HEAD
882
- #: crayon_settings_wp.class.php:1089
883
- =======
884
- #: crayon_settings_wp.class.php:1088
885
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
886
- =======
887
- #: crayon_settings_wp.class.php:1088
888
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
889
- #@ crayon-syntax-highlighter
890
- msgid "Clear the cache used to store remote code requests"
891
- msgstr "清理用于存储远程代码的缓存频率"
892
-
893
- <<<<<<< HEAD
894
- <<<<<<< HEAD
895
- #: crayon_settings_wp.class.php:1091
896
- =======
897
- #: crayon_settings_wp.class.php:1090
898
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
899
- =======
900
- #: crayon_settings_wp.class.php:1090
901
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
902
- #@ crayon-syntax-highlighter
903
- msgid "Clear Now"
904
- msgstr "立刻清理"
905
-
906
- <<<<<<< HEAD
907
- <<<<<<< HEAD
908
- #: crayon_settings_wp.class.php:1092
909
- =======
910
- #: crayon_settings_wp.class.php:1091
911
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
912
- =======
913
- #: crayon_settings_wp.class.php:1091
914
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
915
- #@ crayon-syntax-highlighter
916
- msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
917
- msgstr "按需加载插件的 CSS JavaScript"
918
-
919
- <<<<<<< HEAD
920
- <<<<<<< HEAD
921
- #: crayon_settings_wp.class.php:1093
922
- =======
923
- #: crayon_settings_wp.class.php:1092
924
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
925
- =======
926
- #: crayon_settings_wp.class.php:1092
927
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
928
- #@ crayon-syntax-highlighter
929
- msgid "Disable enqueuing for page templates that may contain The Loop."
930
- msgstr ""
931
-
932
- <<<<<<< HEAD
933
- <<<<<<< HEAD
934
- #: crayon_settings_wp.class.php:1094
935
- =======
936
- #: crayon_settings_wp.class.php:1093
937
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
938
- =======
939
- #: crayon_settings_wp.class.php:1093
940
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
941
- #@ crayon-syntax-highlighter
942
- msgid "Allow Crayons inside comments"
943
- msgstr "允许在评论中使用"
944
-
945
- <<<<<<< HEAD
946
- <<<<<<< HEAD
947
- #: crayon_settings_wp.class.php:1096
948
- =======
949
- #: crayon_settings_wp.class.php:1095
950
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
951
- =======
952
- #: crayon_settings_wp.class.php:1095
953
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
954
- #@ crayon-syntax-highlighter
955
- msgid "Load Crayons only from the main Wordpress query"
956
- msgstr ""
957
-
958
- <<<<<<< HEAD
959
- <<<<<<< HEAD
960
- #: crayon_settings_wp.class.php:1097
961
- #@ crayon-syntax-highlighter
962
- msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
963
- msgstr "触屏设备禁止鼠标行为(如鼠标经过)"
964
-
965
- #: crayon_settings_wp.class.php:1098
966
- =======
967
- =======
968
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
969
- #: crayon_settings_wp.class.php:1096
970
- #@ crayon-syntax-highlighter
971
- msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
972
- msgstr "使用触屏设备时禁止鼠标行为(如鼠标经过)"
973
-
974
- #: crayon_settings_wp.class.php:1097
975
- <<<<<<< HEAD
976
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
977
- =======
978
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
979
- #@ crayon-syntax-highlighter
980
- msgid "Disable animations"
981
- msgstr "禁止动画效果"
982
-
983
- <<<<<<< HEAD
984
- <<<<<<< HEAD
985
- #: crayon_settings_wp.class.php:1099
986
- #@ crayon-syntax-highlighter
987
- msgid "Disable runtime stats"
988
- msgstr ""
989
-
990
- #: crayon_settings_wp.class.php:1105
991
- #@ crayon-syntax-highlighter
992
- msgid "Log errors for individual Crayons"
993
- msgstr ""
994
-
995
- #: crayon_settings_wp.class.php:1106
996
- #@ crayon-syntax-highlighter
997
- msgid "Log system-wide errors"
998
- msgstr ""
999
-
1000
- #: crayon_settings_wp.class.php:1107
1001
- =======
1002
- =======
1003
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1004
- #: crayon_settings_wp.class.php:1098
1005
- #@ crayon-syntax-highlighter
1006
- msgid "Disable runtime stats"
1007
- msgstr "禁止运行时间统计"
1008
-
1009
- #: crayon_settings_wp.class.php:1104
1010
- #@ crayon-syntax-highlighter
1011
- msgid "Log errors for individual Crayons"
1012
- msgstr "使用独立的错误日志"
1013
-
1014
- #: crayon_settings_wp.class.php:1105
1015
- #@ crayon-syntax-highlighter
1016
- msgid "Log system-wide errors"
1017
- msgstr "启用系统错误日志"
1018
-
1019
- #: crayon_settings_wp.class.php:1106
1020
- <<<<<<< HEAD
1021
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1022
- =======
1023
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1024
- #@ crayon-syntax-highlighter
1025
- msgid "Display custom message for errors"
1026
- msgstr "自定义错误提示"
1027
-
1028
- <<<<<<< HEAD
1029
- <<<<<<< HEAD
1030
- #: crayon_settings_wp.class.php:1119
1031
- =======
1032
- #: crayon_settings_wp.class.php:1118
1033
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1034
- =======
1035
- #: crayon_settings_wp.class.php:1118
1036
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1037
- #@ crayon-syntax-highlighter
1038
- msgid "Show Log"
1039
- msgstr "显示日志"
1040
-
1041
- <<<<<<< HEAD
1042
- <<<<<<< HEAD
1043
- #: crayon_settings_wp.class.php:1119
1044
- =======
1045
- #: crayon_settings_wp.class.php:1118
1046
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1047
- =======
1048
- #: crayon_settings_wp.class.php:1118
1049
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1050
- #@ crayon-syntax-highlighter
1051
- msgid "Hide Log"
1052
- msgstr "隐藏日志"
1053
-
1054
- <<<<<<< HEAD
1055
- <<<<<<< HEAD
1056
- #: crayon_settings_wp.class.php:1121
1057
- =======
1058
- #: crayon_settings_wp.class.php:1120
1059
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1060
- =======
1061
- #: crayon_settings_wp.class.php:1120
1062
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1063
- #@ crayon-syntax-highlighter
1064
- msgid "Clear Log"
1065
- msgstr "清理日志"
1066
-
1067
- <<<<<<< HEAD
1068
- <<<<<<< HEAD
1069
- #: crayon_settings_wp.class.php:1122
1070
- =======
1071
- #: crayon_settings_wp.class.php:1121
1072
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1073
- =======
1074
- #: crayon_settings_wp.class.php:1121
1075
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1076
- #@ crayon-syntax-highlighter
1077
- msgid "Email Admin"
1078
- msgstr "发邮件给管理员"
1079
-
1080
- <<<<<<< HEAD
1081
- <<<<<<< HEAD
1082
- #: crayon_settings_wp.class.php:1124
1083
- =======
1084
- #: crayon_settings_wp.class.php:1123
1085
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1086
- =======
1087
- #: crayon_settings_wp.class.php:1123
1088
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1089
- #@ crayon-syntax-highlighter
1090
- msgid "Email Developer"
1091
- msgstr "发邮件给开发者"
1092
-
1093
- <<<<<<< HEAD
1094
- <<<<<<< HEAD
1095
- #: crayon_settings_wp.class.php:1126
1096
- =======
1097
- #: crayon_settings_wp.class.php:1125
1098
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1099
- =======
1100
- #: crayon_settings_wp.class.php:1125
1101
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1102
- #@ crayon-syntax-highlighter
1103
- msgid "The log is currently empty."
1104
- msgstr "日志为空,"
1105
-
1106
- <<<<<<< HEAD
1107
- <<<<<<< HEAD
1108
- #: crayon_settings_wp.class.php:1128
1109
- #@ crayon-syntax-highlighter
1110
- msgid "The log file exists and is writable."
1111
- msgstr "日志文件存在且可写。"
1112
-
1113
- #: crayon_settings_wp.class.php:1128
1114
- =======
1115
- =======
1116
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1117
- #: crayon_settings_wp.class.php:1127
1118
- #@ crayon-syntax-highlighter
1119
- msgid "The log file exists and is writable."
1120
- msgstr "日志文件存在并可写。"
1121
-
1122
- #: crayon_settings_wp.class.php:1127
1123
- <<<<<<< HEAD
1124
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1125
- =======
1126
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1127
- #@ crayon-syntax-highlighter
1128
- msgid "The log file exists and is not writable."
1129
- msgstr "日志文件存在但不可写。"
1130
-
1131
- <<<<<<< HEAD
1132
- <<<<<<< HEAD
1133
- #: crayon_settings_wp.class.php:1130
1134
- =======
1135
- #: crayon_settings_wp.class.php:1129
1136
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1137
- =======
1138
- #: crayon_settings_wp.class.php:1129
1139
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1140
- #@ crayon-syntax-highlighter
1141
- msgid "The log file does not exist and is not writable."
1142
- msgstr "日志文件不存在且不可写。"
1143
-
1144
- <<<<<<< HEAD
1145
- <<<<<<< HEAD
1146
- #: crayon_settings_wp.class.php:1140
1147
- =======
1148
- #: crayon_settings_wp.class.php:1139
1149
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1150
- =======
1151
- #: crayon_settings_wp.class.php:1139
1152
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1153
- #@ crayon-syntax-highlighter
1154
- msgid "Version"
1155
- msgstr "版本"
1156
-
1157
- <<<<<<< HEAD
1158
- <<<<<<< HEAD
1159
- #: crayon_settings_wp.class.php:1142
1160
- =======
1161
- #: crayon_settings_wp.class.php:1141
1162
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1163
- =======
1164
- #: crayon_settings_wp.class.php:1141
1165
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1166
- #@ crayon-syntax-highlighter
1167
- msgid "Developer"
1168
- msgstr "开发者"
1169
-
1170
- <<<<<<< HEAD
1171
- <<<<<<< HEAD
1172
- #: crayon_settings_wp.class.php:1143
1173
- =======
1174
- #: crayon_settings_wp.class.php:1142
1175
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1176
- =======
1177
- #: crayon_settings_wp.class.php:1142
1178
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1179
- #@ crayon-syntax-highlighter
1180
- msgid "Translators"
1181
- msgstr "翻译者"
1182
-
1183
- <<<<<<< HEAD
1184
- <<<<<<< HEAD
1185
- #: crayon_settings_wp.class.php:1179
1186
- #@ crayon-syntax-highlighter
1187
- msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
1188
- msgstr ""
1189
-
1190
- #: crayon_settings_wp.class.php:1197
1191
- =======
1192
- =======
1193
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1194
- #: crayon_settings_wp.class.php:1178
1195
- #@ crayon-syntax-highlighter
1196
- msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
1197
- msgstr "本插件是数月辛勤劳动的结果,为了让它不断的完善,如果你喜欢它,请告诉我!"
1198
-
1199
- #: crayon_settings_wp.class.php:1196
1200
- <<<<<<< HEAD
1201
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1202
- =======
1203
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1204
- #@ crayon-syntax-highlighter
1205
- msgid "Donate"
1206
- msgstr "捐助"
1207
-
1208
- #. translators: plugin header field 'Name'
1209
- #: crayon_wp.class.php:0
1210
- #@ crayon-syntax-highlighter
1211
- msgid "Crayon Syntax Highlighter"
1212
- msgstr ""
1213
-
1214
- #. translators: plugin header field 'PluginURI'
1215
- #: crayon_wp.class.php:0
1216
- #@ crayon-syntax-highlighter
1217
- msgid "http://aramk.com/projects/crayon-syntax-highlighter"
1218
- msgstr ""
1219
-
1220
- #. translators: plugin header field 'Description'
1221
- #: crayon_wp.class.php:0
1222
- #@ crayon-syntax-highlighter
1223
- msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
1224
- <<<<<<< HEAD
1225
- <<<<<<< HEAD
1226
- msgstr ""
1227
- =======
1228
- msgstr "支持多种和多重语言高亮,丰富的高亮主题;无论是本地还是远端的文件,或文本代码,都能一律高亮!"
1229
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1230
- =======
1231
- msgstr "支持多种和多重语言高亮,丰富的高亮主题;无论是本地还是远端的文件,或文本代码,都能一律高亮!"
1232
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1233
-
1234
- #. translators: plugin header field 'Author'
1235
- #: crayon_wp.class.php:0
1236
- #@ crayon-syntax-highlighter
1237
- msgid "Aram Kocharyan"
1238
- msgstr ""
1239
-
1240
- #. translators: plugin header field 'AuthorURI'
1241
- #: crayon_wp.class.php:0
1242
- #@ crayon-syntax-highlighter
1243
- msgid "http://aramk.com/"
1244
- msgstr ""
1245
-
1246
- #: util/tag-editor/crayon_tag_editor_wp.class.php:64
1247
- #@ crayon-syntax-highlighter
1248
- msgid "Add Crayon Code"
1249
- msgstr "插入代码高亮"
1250
-
1251
- #: util/tag-editor/crayon_tag_editor_wp.class.php:65
1252
- #@ crayon-syntax-highlighter
1253
- msgid "Edit Crayon Code"
1254
- msgstr "编辑代码高亮"
1255
-
1256
- #: util/tag-editor/crayon_tag_editor_wp.class.php:66
1257
- #@ crayon-syntax-highlighter
1258
- msgid "Add"
1259
- msgstr "插入"
1260
-
1261
- #: util/tag-editor/crayon_tag_editor_wp.class.php:67
1262
- #: util/theme-editor/theme_editor.php:325
1263
- #@ crayon-syntax-highlighter
1264
- msgid "Save"
1265
- msgstr "保存"
1266
-
1267
- #: crayon_settings_wp.class.php:848
1268
- #: util/tag-editor/crayon_tag_editor_wp.class.php:182
1269
- #: util/theme-editor/theme_editor.php:287
1270
- #@ crayon-syntax-highlighter
1271
- msgid "Title"
1272
- msgstr "标题"
1273
-
1274
- #: util/tag-editor/crayon_tag_editor_wp.class.php:184
1275
- #@ crayon-syntax-highlighter
1276
- msgid "A short description"
1277
- msgstr "一段简短的描述"
1278
-
1279
- #: util/tag-editor/crayon_tag_editor_wp.class.php:186
1280
- #: util/theme-editor/theme_editor.php:291
1281
- #@ crayon-syntax-highlighter
1282
- msgid "Inline"
1283
- msgstr "行内"
1284
-
1285
- #: util/tag-editor/crayon_tag_editor_wp.class.php:193
1286
- #: util/theme-editor/theme_editor.php:295
1287
- #@ crayon-syntax-highlighter
1288
- msgid "Language"
1289
- msgstr "语言"
1290
-
1291
- #: util/tag-editor/crayon_tag_editor_wp.class.php:198
1292
- #@ crayon-syntax-highlighter
1293
- msgid "Marked Lines"
1294
- msgstr "关键行"
1295
-
1296
- #: util/tag-editor/crayon_tag_editor_wp.class.php:199
1297
- #@ crayon-syntax-highlighter
1298
- msgid "(e.g. 1,2,3-5)"
1299
- msgstr "(如 1,2,3-5)"
1300
-
1301
- #: util/tag-editor/crayon_tag_editor_wp.class.php:208
1302
- #@ crayon-syntax-highlighter
1303
- msgid "Clear"
1304
- msgstr "清理"
1305
-
1306
- #: util/tag-editor/crayon_tag_editor_wp.class.php:212
1307
- #@ crayon-syntax-highlighter
1308
- msgid "Paste your code here, or type it in manually."
1309
- msgstr "粘贴代码到这里,或者手工输入。"
1310
-
1311
- #: util/tag-editor/crayon_tag_editor_wp.class.php:216
1312
- #@ crayon-syntax-highlighter
1313
- msgid "URL"
1314
- <<<<<<< HEAD
1315
- <<<<<<< HEAD
1316
- msgstr ""
1317
- =======
1318
- msgstr "URL"
1319
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1320
- =======
1321
- msgstr "URL"
1322
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1323
-
1324
- #: util/tag-editor/crayon_tag_editor_wp.class.php:218
1325
- #@ crayon-syntax-highlighter
1326
- msgid "Relative local path or absolute URL"
1327
- msgstr "相对路径或绝对路径 URL"
1328
-
1329
- #: util/tag-editor/crayon_tag_editor_wp.class.php:221
1330
- #@ crayon-syntax-highlighter
1331
- msgid "If the URL fails to load, the code above will be shown instead. If no code exists, an error is shown."
1332
- msgstr "如果 URL 不能加载,将会使用下面的代码代替显示,如果也没有代码,则显示错误提示。"
1333
-
1334
- #: util/tag-editor/crayon_tag_editor_wp.class.php:223
1335
- #, php-format
1336
- #@ crayon-syntax-highlighter
1337
- msgid "If a relative local path is given it will be appended to %s - which is defined in %sCrayon &gt; Settings &gt; Files%s."
1338
- msgstr "如果是相对路径,则前面的路径将是 %s (在 %sCrayon &gt; Settings &gt; Files%s 里面设置)"
1339
-
1340
- #: util/tag-editor/crayon_tag_editor_wp.class.php:250
1341
- #@ crayon-syntax-highlighter
1342
- msgid "Change the following settings to override their global values."
1343
- msgstr "以下设置优先级高于默认设置,"
1344
-
1345
- #: util/tag-editor/crayon_tag_editor_wp.class.php:252
1346
- #@ crayon-syntax-highlighter
1347
- msgid "Only changes (shown yellow) are applied."
1348
- msgstr "只有背景色为黄色的选项优先级会高于默认设置,"
1349
-
1350
- #: util/tag-editor/crayon_tag_editor_wp.class.php:254
1351
- #, php-format
1352
- #@ crayon-syntax-highlighter
1353
- msgid "Future changes to the global settings under %sCrayon &gt; Settings%s won't affect overridden settings."
1354
- msgstr "其它设置会沿用默认设置(%s点击前往设置%s)。"
1355
-
1356
- #: util/theme-editor/theme_editor.php:324
1357
- #@ crayon-syntax-highlighter
1358
- msgid "Back To Settings"
1359
- msgstr "返回设置"
1360
-
1361
- <<<<<<< HEAD
1362
- <<<<<<< HEAD
1363
- #: crayon_settings_wp.class.php:1095
1364
- =======
1365
- #: crayon_settings_wp.class.php:1094
1366
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1367
- =======
1368
- #: crayon_settings_wp.class.php:1094
1369
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1370
- #@ crayon-syntax-highlighter
1371
- msgid "Remove Crayons from excerpts"
1372
- msgstr "文章摘要不启用代码高亮"
1373
-
1374
- #: crayon_formatter.class.php:275
1375
- #@ crayon-syntax-highlighter
1376
- msgid "Toggle Line Wrap"
1377
- msgstr "切换自动换行"
1378
-
1379
- #: crayon_settings_wp.class.php:468
1380
- #@ crayon-syntax-highlighter
1381
- msgid "Posts"
1382
- msgstr "文章"
1383
-
1384
- #: crayon_settings_wp.class.php:754
1385
- #@ crayon-syntax-highlighter
1386
- msgid "Enable line ranges for showing only parts of code"
1387
- msgstr "开启 指定显示的行 功能"
1388
-
1389
- #: crayon_settings_wp.class.php:757
1390
- #@ crayon-syntax-highlighter
1391
- msgid "Wrap lines by default"
1392
- msgstr "默认自动换行"
1393
-
1394
- #: crayon_settings_wp.class.php:758
1395
- #@ crayon-syntax-highlighter
1396
- msgid "Enable line wrap toggling"
1397
- msgstr "允许切换自动换行"
1398
-
1399
- #: crayon_settings_wp.class.php:822
1400
- #@ crayon-syntax-highlighter
1401
- msgid "Show Crayon Posts"
1402
- msgstr "显示已使用代码高亮的文章"
1403
-
1404
- <<<<<<< HEAD
1405
- <<<<<<< HEAD
1406
- #: crayon_settings_wp.class.php:963
1407
- =======
1408
- #: crayon_settings_wp.class.php:962
1409
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1410
- =======
1411
- #: crayon_settings_wp.class.php:962
1412
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1413
- #@ crayon-syntax-highlighter
1414
- msgid "Edit"
1415
- msgstr "编辑"
1416
-
1417
- <<<<<<< HEAD
1418
- <<<<<<< HEAD
1419
- #: crayon_settings_wp.class.php:1044
1420
- =======
1421
- #: crayon_settings_wp.class.php:1043
1422
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1423
- =======
1424
- #: crayon_settings_wp.class.php:1043
1425
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1426
- #@ crayon-syntax-highlighter
1427
- msgid "Blank lines before code:"
1428
- msgstr "代码高亮前的空行数:"
1429
-
1430
- <<<<<<< HEAD
1431
- <<<<<<< HEAD
1432
- #: crayon_settings_wp.class.php:1046
1433
- =======
1434
- #: crayon_settings_wp.class.php:1045
1435
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1436
- =======
1437
- #: crayon_settings_wp.class.php:1045
1438
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1439
- #@ crayon-syntax-highlighter
1440
- msgid "Blank lines after code:"
1441
- msgstr "代码高亮后的空行数:"
1442
-
1443
- <<<<<<< HEAD
1444
- <<<<<<< HEAD
1445
- #: crayon_settings_wp.class.php:1072
1446
- #@ crayon-syntax-highlighter
1447
- msgid "Convert Legacy Tags"
1448
- msgstr "转换老式标签"
1449
-
1450
- #: crayon_settings_wp.class.php:1075
1451
- #@ crayon-syntax-highlighter
1452
- msgid "No Legacy Tags Found"
1453
- msgstr "暂无老式标签"
1454
-
1455
- #: crayon_settings_wp.class.php:1085
1456
- =======
1457
- =======
1458
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1459
- #: crayon_settings_wp.class.php:1071
1460
- #@ crayon-syntax-highlighter
1461
- msgid "Convert Legacy Tags"
1462
- msgstr "转换迷你标签"
1463
-
1464
- #: crayon_settings_wp.class.php:1074
1465
- #@ crayon-syntax-highlighter
1466
- msgid "No Legacy Tags Found"
1467
- msgstr "暂无迷你标签"
1468
-
1469
- #: crayon_settings_wp.class.php:1084
1470
- <<<<<<< HEAD
1471
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1472
- =======
1473
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1474
- #@ crayon-syntax-highlighter
1475
- msgid "Display Tag Editor settings on the frontend"
1476
- msgstr "在前端显示标签编辑器的设置"
1477
-
1478
- #: util/tag-editor/crayon_tag_editor_wp.class.php:188
1479
- #@ crayon-syntax-highlighter
1480
- msgid "Don't Highlight"
1481
- <<<<<<< HEAD
1482
- <<<<<<< HEAD
1483
- msgstr "禁止高亮"
1484
- =======
1485
- msgstr "取消高亮"
1486
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1487
- =======
1488
- msgstr "取消高亮"
1489
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1490
-
1491
- #: util/tag-editor/crayon_tag_editor_wp.class.php:196
1492
- #@ crayon-syntax-highlighter
1493
- msgid "Line Range"
1494
- msgstr "指定显示的行"
1495
-
1496
- #: util/tag-editor/crayon_tag_editor_wp.class.php:197
1497
- #@ crayon-syntax-highlighter
1498
- msgid "(e.g. 3-5 or 3)"
1499
- msgstr "(如 3-5 或 3)"
1500
-
1501
- #: crayon_formatter.class.php:276
1502
- #@ crayon-syntax-highlighter
1503
- msgid "Expand Code"
1504
- msgstr ""
1505
-
1506
- #: crayon_settings_wp.class.php:157
1507
- #@ crayon-syntax-highlighter
1508
- msgid "Prompt"
1509
- msgstr ""
1510
-
1511
- #: crayon_settings_wp.class.php:158
1512
- #@ crayon-syntax-highlighter
1513
- msgid "Value"
1514
- msgstr ""
1515
-
1516
- #: crayon_settings_wp.class.php:159
1517
- #@ crayon-syntax-highlighter
1518
- msgid "Alert"
1519
- msgstr ""
1520
-
1521
- #: crayon_settings_wp.class.php:160
1522
- #: crayon_settings_wp.class.php:868
1523
- #@ crayon-syntax-highlighter
1524
- msgid "No"
1525
- <<<<<<< HEAD
1526
- <<<<<<< HEAD
1527
- msgstr "取消"
1528
- =======
1529
- msgstr ""
1530
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1531
- =======
1532
- msgstr ""
1533
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1534
-
1535
- #: crayon_settings_wp.class.php:161
1536
- #: crayon_settings_wp.class.php:868
1537
- #@ crayon-syntax-highlighter
1538
- msgid "Yes"
1539
- <<<<<<< HEAD
1540
- <<<<<<< HEAD
1541
- msgstr "确认"
1542
- =======
1543
- msgstr ""
1544
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1545
- =======
1546
- msgstr ""
1547
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1548
-
1549
- #: crayon_settings_wp.class.php:162
1550
- #@ crayon-syntax-highlighter
1551
- msgid "Confirm"
1552
- <<<<<<< HEAD
1553
- <<<<<<< HEAD
1554
- msgstr "确认"
1555
- =======
1556
- msgstr ""
1557
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1558
- =======
1559
- msgstr ""
1560
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1561
-
1562
- #: crayon_settings_wp.class.php:163
1563
- #@ crayon-syntax-highlighter
1564
- msgid "Change Code"
1565
- <<<<<<< HEAD
1566
- <<<<<<< HEAD
1567
- msgstr "修改示例代码"
1568
- =======
1569
- msgstr ""
1570
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1571
- =======
1572
- msgstr ""
1573
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1574
-
1575
- #: crayon_settings_wp.class.php:823
1576
- #@ crayon-syntax-highlighter
1577
- msgid "Refresh"
1578
- msgstr "刷新"
1579
-
1580
- #: crayon_settings_wp.class.php:848
1581
- #@ crayon-syntax-highlighter
1582
- msgid "ID"
1583
- msgstr ""
1584
-
1585
- #: crayon_settings_wp.class.php:848
1586
- #@ crayon-syntax-highlighter
1587
- msgid "Posted"
1588
- <<<<<<< HEAD
1589
- <<<<<<< HEAD
1590
- msgstr "发表时间"
1591
- =======
1592
- msgstr ""
1593
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1594
- =======
1595
- msgstr ""
1596
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1597
-
1598
- #: crayon_settings_wp.class.php:848
1599
- #@ crayon-syntax-highlighter
1600
- msgid "Modifed"
1601
- <<<<<<< HEAD
1602
- <<<<<<< HEAD
1603
- msgstr "修改时间"
1604
- =======
1605
- msgstr ""
1606
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1607
- =======
1608
- msgstr ""
1609
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1610
-
1611
- #: crayon_settings_wp.class.php:848
1612
- #@ crayon-syntax-highlighter
1613
- msgid "Contains Legacy Tags?"
1614
- <<<<<<< HEAD
1615
- <<<<<<< HEAD
1616
- msgstr "是否存在老式标签"
1617
-
1618
- #: crayon_settings_wp.class.php:963
1619
- =======
1620
- msgstr ""
1621
-
1622
- #: crayon_settings_wp.class.php:962
1623
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1624
- =======
1625
- msgstr ""
1626
-
1627
- #: crayon_settings_wp.class.php:962
1628
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1629
- #: util/theme-editor/theme_editor.php:184
1630
- #@ crayon-syntax-highlighter
1631
- msgid "Duplicate"
1632
- msgstr "复制"
1633
-
1634
- <<<<<<< HEAD
1635
- <<<<<<< HEAD
1636
- #: crayon_settings_wp.class.php:963
1637
- =======
1638
- #: crayon_settings_wp.class.php:962
1639
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1640
- =======
1641
- #: crayon_settings_wp.class.php:962
1642
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1643
- #@ crayon-syntax-highlighter
1644
- msgid "Submit"
1645
- msgstr "提交"
1646
-
1647
- <<<<<<< HEAD
1648
- <<<<<<< HEAD
1649
- #: crayon_settings_wp.class.php:964
1650
- =======
1651
- #: crayon_settings_wp.class.php:963
1652
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1653
- =======
1654
- #: crayon_settings_wp.class.php:963
1655
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1656
- #: util/theme-editor/theme_editor.php:181
1657
- #@ crayon-syntax-highlighter
1658
- msgid "Delete"
1659
- msgstr "删除"
1660
-
1661
- <<<<<<< HEAD
1662
- <<<<<<< HEAD
1663
- #: crayon_settings_wp.class.php:968
1664
- #@ crayon-syntax-highlighter
1665
- msgid "Duplicate a Stock Theme into a User Theme to allow editing."
1666
- msgstr "编辑主题前必须复制一个预设主题为自定义主题"
1667
-
1668
- #: crayon_settings_wp.class.php:979
1669
- #, php-format
1670
- #@ crayon-syntax-highlighter
1671
- msgid "Change the %1$sfallback language%2$s to change the sample code or %3$schange it manually%4$s. Lines 5-7 are marked."
1672
- msgstr "%1$s修改默认语言%2$s 会显示不同的示例代码,您也可以 %3$s手动修改%4$s 示例代码;5-7 行为关键行。"
1673
-
1674
- #: crayon_settings_wp.class.php:1028
1675
- =======
1676
- =======
1677
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1678
- #: crayon_settings_wp.class.php:967
1679
- #@ crayon-syntax-highlighter
1680
- msgid "Duplicate a Stock Theme into a User Theme to allow editing."
1681
- msgstr ""
1682
-
1683
- #: crayon_settings_wp.class.php:978
1684
- #, php-format
1685
- #@ crayon-syntax-highlighter
1686
- msgid "Change the %1$sfallback language%2$s to change the sample code or %3$schange it manually%4$s. Lines 5-7 are marked."
1687
- msgstr ""
1688
-
1689
- #: crayon_settings_wp.class.php:1027
1690
- <<<<<<< HEAD
1691
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1692
- =======
1693
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1694
- #@ crayon-syntax-highlighter
1695
- msgid "Expand code beyond page borders on mouseover"
1696
- msgstr ""
1697
-
1698
- <<<<<<< HEAD
1699
- <<<<<<< HEAD
1700
- #: crayon_settings_wp.class.php:1029
1701
- =======
1702
- #: crayon_settings_wp.class.php:1028
1703
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1704
- =======
1705
- #: crayon_settings_wp.class.php:1028
1706
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1707
- #@ crayon-syntax-highlighter
1708
- msgid "Enable code expanding toggling when possible"
1709
- msgstr ""
1710
-
1711
- <<<<<<< HEAD
1712
- <<<<<<< HEAD
1713
- #: crayon_settings_wp.class.php:1051
1714
- #, php-format
1715
- #@ crayon-syntax-highlighter
1716
- msgid "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use the %sTag Editor%s instead and convert legacy tags."
1717
- msgstr "不建议再使用迷你标签以及行内标签!请使用 %s标签编辑器%s 代替且转换掉老式标签。"
1718
-
1719
- #: crayon_settings_wp.class.php:1079
1720
- #@ crayon-syntax-highlighter
1721
- msgid "Encode"
1722
- msgstr "HTML 转义"
1723
-
1724
- #: crayon_settings_wp.class.php:1084
1725
- #@ crayon-syntax-highlighter
1726
- msgid "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. bbPress)"
1727
- msgstr "在前端任何 TinyMCE 编辑器都显示标签编辑器(如 bbPress)"
1728
- =======
1729
- =======
1730
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1731
- #: crayon_settings_wp.class.php:1050
1732
- #, php-format
1733
- #@ crayon-syntax-highlighter
1734
- msgid "Using this markup for Mini Tags and Inline tags is now %sdepreciated%s! Use the %sTag Editor%s instead and convert legacy tags."
1735
- msgstr ""
1736
-
1737
- #: crayon_settings_wp.class.php:1078
1738
- #@ crayon-syntax-highlighter
1739
- msgid "Encode"
1740
- msgstr ""
1741
-
1742
- #: crayon_settings_wp.class.php:1083
1743
- #@ crayon-syntax-highlighter
1744
- msgid "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. bbPress)"
1745
- msgstr ""
1746
- <<<<<<< HEAD
1747
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1748
- =======
1749
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1750
-
1751
- #. translators: plugin header field 'Version'
1752
- #: crayon_wp.class.php:0
1753
- #@ crayon-syntax-highlighter
1754
- <<<<<<< HEAD
1755
- <<<<<<< HEAD
1756
- msgid "2.0.2"
1757
- =======
1758
- msgid "2.0.1"
1759
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1760
- =======
1761
- msgid "2.0.1"
1762
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1763
- msgstr ""
1764
-
1765
- #: util/tag-editor/crayon_tag_editor_wp.class.php:173
1766
- #@ crayon-syntax-highlighter
1767
- msgid "OK"
1768
- <<<<<<< HEAD
1769
- <<<<<<< HEAD
1770
- msgstr "确认"
1771
- =======
1772
- msgstr ""
1773
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1774
- =======
1775
- msgstr ""
1776
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1777
-
1778
- #: util/tag-editor/crayon_tag_editor_wp.class.php:175
1779
- #@ crayon-syntax-highlighter
1780
- msgid "Cancel"
1781
- <<<<<<< HEAD
1782
- <<<<<<< HEAD
1783
- msgstr "取消"
1784
- =======
1785
- msgstr ""
1786
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1787
- =======
1788
- msgstr ""
1789
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1790
-
1791
- #: util/theme-editor/theme_editor.php:177
1792
- #@ crayon-syntax-highlighter
1793
- msgid "User-Defined Theme"
1794
- <<<<<<< HEAD
1795
- <<<<<<< HEAD
1796
- msgstr "自定义主题"
1797
- =======
1798
- msgstr ""
1799
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1800
- =======
1801
- msgstr ""
1802
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1803
-
1804
- #: util/theme-editor/theme_editor.php:178
1805
- #@ crayon-syntax-highlighter
1806
- msgid "Stock Theme"
1807
- <<<<<<< HEAD
1808
- <<<<<<< HEAD
1809
- msgstr "预设主题"
1810
- =======
1811
- msgstr ""
1812
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1813
- =======
1814
- msgstr ""
1815
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1816
-
1817
- #: util/theme-editor/theme_editor.php:179
1818
- #@ crayon-syntax-highlighter
1819
- msgid "Success!"
1820
- <<<<<<< HEAD
1821
- <<<<<<< HEAD
1822
- msgstr "成功"
1823
- =======
1824
- msgstr ""
1825
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1826
- =======
1827
- msgstr ""
1828
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1829
-
1830
- #: util/theme-editor/theme_editor.php:180
1831
- #@ crayon-syntax-highlighter
1832
- msgid "Failed!"
1833
- <<<<<<< HEAD
1834
- <<<<<<< HEAD
1835
- msgstr "失败!"
1836
- =======
1837
- msgstr ""
1838
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1839
- =======
1840
- msgstr ""
1841
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1842
-
1843
- #: util/theme-editor/theme_editor.php:182
1844
- #, php-format
1845
- #@ crayon-syntax-highlighter
1846
- msgid "Are you sure you want to delete the \"%s\" theme?"
1847
- <<<<<<< HEAD
1848
- <<<<<<< HEAD
1849
- msgstr "确认删除 \"%s\" 主题?"
1850
- =======
1851
- msgstr ""
1852
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1853
- =======
1854
- msgstr ""
1855
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1856
-
1857
- #: util/theme-editor/theme_editor.php:183
1858
- #@ crayon-syntax-highlighter
1859
- msgid "Delete failed!"
1860
- <<<<<<< HEAD
1861
- <<<<<<< HEAD
1862
- msgstr "删除失败!"
1863
- =======
1864
- msgstr "删除失败"
1865
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1866
- =======
1867
- msgstr "删除失败"
1868
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1869
-
1870
- #: util/theme-editor/theme_editor.php:185
1871
- #@ crayon-syntax-highlighter
1872
- msgid "New Name"
1873
- <<<<<<< HEAD
1874
- <<<<<<< HEAD
1875
- msgstr "自定义主题名"
1876
- =======
1877
- msgstr ""
1878
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1879
- =======
1880
- msgstr ""
1881
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1882
-
1883
- #: util/theme-editor/theme_editor.php:186
1884
- #@ crayon-syntax-highlighter
1885
- msgid "Duplicate failed!"
1886
- <<<<<<< HEAD
1887
- <<<<<<< HEAD
1888
- msgstr "复制失败!"
1889
- =======
1890
- msgstr "复制失败"
1891
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1892
- =======
1893
- msgstr "复制失败"
1894
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1895
-
1896
- #: util/theme-editor/theme_editor.php:187
1897
- #@ crayon-syntax-highlighter
1898
- msgid "Please check the log for details."
1899
- <<<<<<< HEAD
1900
- <<<<<<< HEAD
1901
- msgstr "更多信息请查看日志。"
1902
- =======
1903
- msgstr ""
1904
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1905
- =======
1906
- msgstr ""
1907
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1908
-
1909
- #: util/theme-editor/theme_editor.php:188
1910
- #@ crayon-syntax-highlighter
1911
- msgid "Are you sure you want to discard all changes?"
1912
- <<<<<<< HEAD
1913
- <<<<<<< HEAD
1914
- msgstr "确认放弃所有的修改?"
1915
- =======
1916
- msgstr ""
1917
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1918
- =======
1919
- msgstr ""
1920
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1921
-
1922
- #: util/theme-editor/theme_editor.php:189
1923
- #, php-format
1924
- #@ crayon-syntax-highlighter
1925
- msgid "Editing Theme: %s"
1926
- <<<<<<< HEAD
1927
- <<<<<<< HEAD
1928
- msgstr "编辑中的主题:%s"
1929
- =======
1930
- msgstr ""
1931
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1932
- =======
1933
- msgstr ""
1934
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1935
-
1936
- #: util/theme-editor/theme_editor.php:190
1937
- #, php-format
1938
- #@ crayon-syntax-highlighter
1939
- msgid "Creating Theme: %s"
1940
- <<<<<<< HEAD
1941
- <<<<<<< HEAD
1942
- msgstr "创建中的主题:%s"
1943
- =======
1944
- msgstr ""
1945
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1946
- =======
1947
- msgstr ""
1948
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1949
-
1950
- #: util/theme-editor/theme_editor.php:191
1951
- #@ crayon-syntax-highlighter
1952
- msgid "Submit Your Theme"
1953
- msgstr "提交您的主题"
1954
-
1955
- #: util/theme-editor/theme_editor.php:192
1956
- #@ crayon-syntax-highlighter
1957
- msgid "Submit your User Theme for inclusion as a Stock Theme in Crayon!"
1958
- <<<<<<< HEAD
1959
- <<<<<<< HEAD
1960
- msgstr "提交您的主题使之成为预设主题!"
1961
- =======
1962
- msgstr ""
1963
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1964
- =======
1965
- msgstr ""
1966
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1967
-
1968
- #: util/theme-editor/theme_editor.php:193
1969
- #@ crayon-syntax-highlighter
1970
- msgid "Message"
1971
- <<<<<<< HEAD
1972
- <<<<<<< HEAD
1973
- msgstr "说明"
1974
- =======
1975
- msgstr ""
1976
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1977
- =======
1978
- msgstr ""
1979
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1980
-
1981
- #: util/theme-editor/theme_editor.php:194
1982
- #@ crayon-syntax-highlighter
1983
- msgid "Please include this theme in Crayon!"
1984
- <<<<<<< HEAD
1985
- <<<<<<< HEAD
1986
- msgstr "请求纳入预设主题!"
1987
- =======
1988
- msgstr ""
1989
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1990
- =======
1991
- msgstr ""
1992
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
1993
-
1994
- #: util/theme-editor/theme_editor.php:195
1995
- #@ crayon-syntax-highlighter
1996
- msgid "Submit was successful."
1997
- msgstr "提交成功"
1998
-
1999
- #: util/theme-editor/theme_editor.php:196
2000
- #@ crayon-syntax-highlighter
2001
- msgid "Submit failed!"
2002
- <<<<<<< HEAD
2003
- <<<<<<< HEAD
2004
- msgstr "提交失败!"
2005
- =======
2006
- msgstr "提交失败"
2007
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2008
- =======
2009
- msgstr "提交失败"
2010
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2011
-
2012
- #: util/theme-editor/theme_editor.php:268
2013
- #@ crayon-syntax-highlighter
2014
- msgid "Information"
2015
- <<<<<<< HEAD
2016
- <<<<<<< HEAD
2017
- msgstr "基本信息"
2018
- =======
2019
- msgstr ""
2020
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2021
- =======
2022
- msgstr ""
2023
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2024
-
2025
- #: util/theme-editor/theme_editor.php:269
2026
- #@ crayon-syntax-highlighter
2027
- msgid "Highlighting"
2028
- <<<<<<< HEAD
2029
- <<<<<<< HEAD
2030
- msgstr "代码高亮"
2031
- =======
2032
- msgstr ""
2033
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2034
- =======
2035
- msgstr ""
2036
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2037
-
2038
- #: util/theme-editor/theme_editor.php:270
2039
- #@ crayon-syntax-highlighter
2040
- msgid "Frame"
2041
- <<<<<<< HEAD
2042
- <<<<<<< HEAD
2043
- msgstr "边框"
2044
- =======
2045
- msgstr ""
2046
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2047
- =======
2048
- msgstr ""
2049
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2050
-
2051
- #: util/theme-editor/theme_editor.php:272
2052
- #@ crayon-syntax-highlighter
2053
- msgid "Line Numbers"
2054
- <<<<<<< HEAD
2055
- <<<<<<< HEAD
2056
- msgstr "行编号"
2057
- =======
2058
- msgstr ""
2059
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2060
- =======
2061
- msgstr ""
2062
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2063
-
2064
- #: util/theme-editor/theme_editor.php:275
2065
- #@ crayon-syntax-highlighter
2066
- msgid "Background"
2067
- <<<<<<< HEAD
2068
- <<<<<<< HEAD
2069
- msgstr "背景色"
2070
- =======
2071
- msgstr ""
2072
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2073
- =======
2074
- msgstr ""
2075
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2076
-
2077
- #: util/theme-editor/theme_editor.php:276
2078
- #@ crayon-syntax-highlighter
2079
- msgid "Text"
2080
- <<<<<<< HEAD
2081
- <<<<<<< HEAD
2082
- msgstr "文字"
2083
- =======
2084
- msgstr ""
2085
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2086
- =======
2087
- msgstr ""
2088
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2089
-
2090
- #: util/theme-editor/theme_editor.php:277
2091
- #@ crayon-syntax-highlighter
2092
- msgid "Border"
2093
- <<<<<<< HEAD
2094
- <<<<<<< HEAD
2095
- msgstr "边框"
2096
- =======
2097
- msgstr ""
2098
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2099
- =======
2100
- msgstr ""
2101
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2102
-
2103
- #: util/theme-editor/theme_editor.php:278
2104
- #@ crayon-syntax-highlighter
2105
- msgid "Top Border"
2106
- <<<<<<< HEAD
2107
- <<<<<<< HEAD
2108
- msgstr "顶部边框"
2109
- =======
2110
- msgstr ""
2111
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2112
- =======
2113
- msgstr ""
2114
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2115
-
2116
- #: util/theme-editor/theme_editor.php:279
2117
- #@ crayon-syntax-highlighter
2118
- msgid "Bottom Border"
2119
- <<<<<<< HEAD
2120
- <<<<<<< HEAD
2121
- msgstr "底部边框"
2122
- =======
2123
- msgstr ""
2124
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2125
- =======
2126
- msgstr ""
2127
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2128
-
2129
- #: util/theme-editor/theme_editor.php:281
2130
- #@ crayon-syntax-highlighter
2131
- msgid "Hover"
2132
- <<<<<<< HEAD
2133
- <<<<<<< HEAD
2134
- msgstr "悬停"
2135
- =======
2136
- msgstr ""
2137
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2138
- =======
2139
- msgstr ""
2140
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2141
-
2142
- #: util/theme-editor/theme_editor.php:282
2143
- #@ crayon-syntax-highlighter
2144
- msgid "Active"
2145
- <<<<<<< HEAD
2146
- <<<<<<< HEAD
2147
- msgstr "激活"
2148
- =======
2149
- msgstr ""
2150
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2151
- =======
2152
- msgstr ""
2153
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2154
-
2155
- #: util/theme-editor/theme_editor.php:283
2156
- #@ crayon-syntax-highlighter
2157
- msgid "Pressed"
2158
- <<<<<<< HEAD
2159
- <<<<<<< HEAD
2160
- msgstr "已访问"
2161
- =======
2162
- msgstr ""
2163
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2164
- =======
2165
- msgstr ""
2166
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2167
-
2168
- #: util/theme-editor/theme_editor.php:284
2169
- #@ crayon-syntax-highlighter
2170
- msgid "Pressed & Hover"
2171
- <<<<<<< HEAD
2172
- <<<<<<< HEAD
2173
- msgstr "已访问 & 悬停"
2174
- =======
2175
- msgstr ""
2176
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2177
- =======
2178
- msgstr ""
2179
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2180
-
2181
- #: util/theme-editor/theme_editor.php:285
2182
- #@ crayon-syntax-highlighter
2183
- msgid "Pressed & Active"
2184
- <<<<<<< HEAD
2185
- <<<<<<< HEAD
2186
- msgstr "已访问 & 激活"
2187
- =======
2188
- msgstr ""
2189
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2190
- =======
2191
- msgstr ""
2192
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2193
-
2194
- #: util/theme-editor/theme_editor.php:288
2195
- #@ crayon-syntax-highlighter
2196
- msgid "Buttons"
2197
- <<<<<<< HEAD
2198
- <<<<<<< HEAD
2199
- msgstr "按钮"
2200
- =======
2201
- msgstr ""
2202
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2203
- =======
2204
- msgstr ""
2205
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2206
-
2207
- #: util/theme-editor/theme_editor.php:290
2208
- #@ crayon-syntax-highlighter
2209
- msgid "Normal"
2210
- <<<<<<< HEAD
2211
- <<<<<<< HEAD
2212
- msgstr "一般"
2213
- =======
2214
- msgstr ""
2215
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2216
- =======
2217
- msgstr ""
2218
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2219
-
2220
- #: util/theme-editor/theme_editor.php:292
2221
- #@ crayon-syntax-highlighter
2222
- msgid "Striped"
2223
- <<<<<<< HEAD
2224
- <<<<<<< HEAD
2225
- msgstr "条纹"
2226
- =======
2227
- msgstr ""
2228
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2229
- =======
2230
- msgstr ""
2231
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2232
-
2233
- #: util/theme-editor/theme_editor.php:293
2234
- #@ crayon-syntax-highlighter
2235
- msgid "Marked"
2236
- <<<<<<< HEAD
2237
- <<<<<<< HEAD
2238
- msgstr "关键"
2239
- =======
2240
- msgstr ""
2241
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2242
- =======
2243
- msgstr ""
2244
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2245
-
2246
- #: util/theme-editor/theme_editor.php:294
2247
- #@ crayon-syntax-highlighter
2248
- msgid "Striped & Marked"
2249
- <<<<<<< HEAD
2250
- <<<<<<< HEAD
2251
- msgstr "条纹 & 关键"
2252
- =======
2253
- msgstr ""
2254
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2255
- =======
2256
- msgstr ""
2257
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2258
-
2259
- #: util/theme-editor/theme_editor.php:363
2260
- #@ crayon-syntax-highlighter
2261
- msgid "Comment"
2262
- <<<<<<< HEAD
2263
- <<<<<<< HEAD
2264
- msgstr "注释"
2265
- =======
2266
- msgstr ""
2267
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2268
- =======
2269
- msgstr ""
2270
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2271
-
2272
- #: util/theme-editor/theme_editor.php:364
2273
- #@ crayon-syntax-highlighter
2274
- msgid "String"
2275
- <<<<<<< HEAD
2276
- <<<<<<< HEAD
2277
- msgstr "字符串"
2278
- =======
2279
- msgstr ""
2280
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2281
- =======
2282
- msgstr ""
2283
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2284
-
2285
- #: util/theme-editor/theme_editor.php:365
2286
- #@ crayon-syntax-highlighter
2287
- msgid "Preprocessor"
2288
- msgstr ""
2289
-
2290
- #: util/theme-editor/theme_editor.php:366
2291
- #@ crayon-syntax-highlighter
2292
- msgid "Tag"
2293
- msgstr ""
2294
-
2295
- #: util/theme-editor/theme_editor.php:367
2296
- #@ crayon-syntax-highlighter
2297
- msgid "Keyword"
2298
- msgstr ""
2299
-
2300
- #: util/theme-editor/theme_editor.php:368
2301
- #@ crayon-syntax-highlighter
2302
- msgid "Statement"
2303
- msgstr ""
2304
-
2305
- #: util/theme-editor/theme_editor.php:369
2306
- #@ crayon-syntax-highlighter
2307
- msgid "Reserved"
2308
- <<<<<<< HEAD
2309
- <<<<<<< HEAD
2310
- msgstr "保留字"
2311
- =======
2312
- msgstr ""
2313
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2314
- =======
2315
- msgstr ""
2316
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2317
-
2318
- #: util/theme-editor/theme_editor.php:370
2319
- #@ crayon-syntax-highlighter
2320
- msgid "Type"
2321
- msgstr ""
2322
-
2323
- #: util/theme-editor/theme_editor.php:371
2324
- #@ crayon-syntax-highlighter
2325
- msgid "Modifier"
2326
- msgstr ""
2327
-
2328
- #: util/theme-editor/theme_editor.php:372
2329
- #@ crayon-syntax-highlighter
2330
- msgid "Identifier"
2331
- msgstr ""
2332
-
2333
- #: util/theme-editor/theme_editor.php:373
2334
- #@ crayon-syntax-highlighter
2335
- msgid "Entity"
2336
- msgstr ""
2337
-
2338
- #: util/theme-editor/theme_editor.php:374
2339
- #@ crayon-syntax-highlighter
2340
- msgid "Variable"
2341
- <<<<<<< HEAD
2342
- <<<<<<< HEAD
2343
- msgstr "变量"
2344
- =======
2345
- msgstr ""
2346
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2347
- =======
2348
- msgstr ""
2349
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2350
-
2351
- #: util/theme-editor/theme_editor.php:375
2352
- #@ crayon-syntax-highlighter
2353
- msgid "Constant"
2354
- msgstr ""
2355
-
2356
- #: util/theme-editor/theme_editor.php:376
2357
- #@ crayon-syntax-highlighter
2358
- msgid "Operator"
2359
- msgstr ""
2360
-
2361
- #: util/theme-editor/theme_editor.php:377
2362
- #@ crayon-syntax-highlighter
2363
- msgid "Symbol"
2364
- msgstr ""
2365
-
2366
- #: util/theme-editor/theme_editor.php:378
2367
- #@ crayon-syntax-highlighter
2368
- msgid "Notation"
2369
- msgstr ""
2370
-
2371
- #: util/theme-editor/theme_editor.php:379
2372
- #@ crayon-syntax-highlighter
2373
- msgid "Faded"
2374
- msgstr ""
2375
-
2376
- #: util/theme-editor/theme_editor.php:380
2377
- #@ crayon-syntax-highlighter
2378
- msgid "HTML"
2379
- msgstr ""
2380
-
2381
- #: util/theme-editor/theme_editor.php:507
2382
- #@ crayon-syntax-highlighter
2383
- msgid "(Used for Copy/Paste)"
2384
- <<<<<<< HEAD
2385
- <<<<<<< HEAD
2386
- msgstr "(复制/粘贴时的样式)"
2387
- =======
2388
- msgstr ""
2389
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2390
- =======
2391
- msgstr ""
2392
- >>>>>>> 58ce7ef27f5dc1ba9027605fd66be2f010743ffc
2393
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Crayon Syntax Highlighter v2.0.1\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-07-31 16:13+0100\n"
6
+ "PO-Revision-Date: 2014-07-31 16:46+0100\n"
7
+ "Last-Translator: admin <admin@neverno.me>\n"
8
+ "Language-Team: \n"
9
+ "Language: zh\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=1; plural=0;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
17
+ "crayon__;crayon_n;crayon_e\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Textdomain-Support: yes\n"
20
+ "X-Generator: Poedit 1.6.7\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+
23
+ # @ crayon-syntax-highlighter
24
+ #: crayon_formatter.class.php:286
25
+ msgid "Toggle Line Numbers"
26
+ msgstr "切换是否显示行编号"
27
+
28
+ # @ crayon-syntax-highlighter
29
+ #: crayon_formatter.class.php:290
30
+ msgid "Toggle Plain Code"
31
+ msgstr "纯文本显示代码"
32
+
33
+ # @ crayon-syntax-highlighter
34
+ #: crayon_formatter.class.php:294
35
+ msgid "Toggle Line Wrap"
36
+ msgstr "切换自动换行"
37
+
38
+ # @ crayon-syntax-highlighter
39
+ #: crayon_formatter.class.php:298
40
+ msgid "Expand Code"
41
+ msgstr "点击展开代码"
42
+
43
+ #: crayon_formatter.class.php:302
44
+ msgid "Copy"
45
+ msgstr "复制代码"
46
+
47
+ # @ crayon-syntax-highlighter
48
+ #: crayon_formatter.class.php:306
49
+ msgid "Open Code In New Window"
50
+ msgstr "在新窗口中显示代码"
51
+
52
+ # @ crayon-syntax-highlighter
53
+ #: crayon_formatter.class.php:323
54
+ msgid "Contains Mixed Languages"
55
+ msgstr "含多种语言"
56
+
57
+ # @ crayon-syntax-highlighter
58
+ #: crayon_settings.class.php:151
59
+ msgid "Hourly"
60
+ msgstr "每小时"
61
+
62
+ # @ crayon-syntax-highlighter
63
+ #: crayon_settings.class.php:151
64
+ msgid "Daily"
65
+ msgstr "每天"
66
+
67
+ # @ crayon-syntax-highlighter
68
+ #: crayon_settings.class.php:152
69
+ msgid "Weekly"
70
+ msgstr "每周"
71
+
72
+ # @ crayon-syntax-highlighter
73
+ #: crayon_settings.class.php:152
74
+ msgid "Monthly"
75
+ msgstr "每月"
76
+
77
+ # @ crayon-syntax-highlighter
78
+ #: crayon_settings.class.php:153
79
+ msgid "Immediately"
80
+ msgstr "立刻"
81
+
82
+ # @ crayon-syntax-highlighter
83
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
84
+ msgid "Max"
85
+ msgstr "最大"
86
+
87
+ # @ crayon-syntax-highlighter
88
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
89
+ msgid "Min"
90
+ msgstr "最小"
91
+
92
+ # @ crayon-syntax-highlighter
93
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
94
+ msgid "Static"
95
+ msgstr "指定"
96
+
97
+ # @ crayon-syntax-highlighter
98
+ #: crayon_settings.class.php:166 crayon_settings.class.php:170
99
+ #: crayon_settings_wp.class.php:749 crayon_settings_wp.class.php:758
100
+ #: crayon_settings_wp.class.php:1037 crayon_settings_wp.class.php:1039
101
+ msgid "Pixels"
102
+ msgstr "px"
103
+
104
+ # @ crayon-syntax-highlighter
105
+ #: crayon_settings.class.php:166 crayon_settings.class.php:170
106
+ msgid "Percent"
107
+ msgstr "%"
108
+
109
+ # @ crayon-syntax-highlighter
110
+ #: crayon_settings.class.php:179
111
+ msgid "None"
112
+ msgstr "从不"
113
+
114
+ # @ crayon-syntax-highlighter
115
+ #: crayon_settings.class.php:179
116
+ msgid "Left"
117
+ msgstr "左对齐"
118
+
119
+ # @ crayon-syntax-highlighter
120
+ #: crayon_settings.class.php:179
121
+ msgid "Center"
122
+ msgstr "居中"
123
+
124
+ # @ crayon-syntax-highlighter
125
+ #: crayon_settings.class.php:179
126
+ msgid "Right"
127
+ msgstr "右对齐"
128
+
129
+ # @ crayon-syntax-highlighter
130
+ #: crayon_settings.class.php:181 crayon_settings.class.php:206
131
+ msgid "On MouseOver"
132
+ msgstr "鼠标经过"
133
+
134
+ # @ crayon-syntax-highlighter
135
+ #: crayon_settings.class.php:181 crayon_settings.class.php:187
136
+ msgid "Always"
137
+ msgstr "始终显示"
138
+
139
+ # @ crayon-syntax-highlighter
140
+ #: crayon_settings.class.php:181 crayon_settings.class.php:187
141
+ msgid "Never"
142
+ msgstr "从不显示"
143
+
144
+ # @ crayon-syntax-highlighter
145
+ #: crayon_settings.class.php:187
146
+ msgid "When Found"
147
+ msgstr "当有指定时"
148
+
149
+ # @ crayon-syntax-highlighter
150
+ #: crayon_settings.class.php:206
151
+ msgid "On Double Click"
152
+ msgstr "双击"
153
+
154
+ # @ crayon-syntax-highlighter
155
+ #: crayon_settings.class.php:206
156
+ msgid "On Single Click"
157
+ msgstr "单击"
158
+
159
+ # @ crayon-syntax-highlighter
160
+ #: crayon_settings.class.php:206
161
+ msgid "Disable Mouse Events"
162
+ msgstr "禁止鼠标行为"
163
+
164
+ # @ crayon-syntax-highlighter
165
+ #: crayon_settings.class.php:213
166
+ msgid "An error has occurred. Please try again later."
167
+ msgstr "发生错误,请稍后重试。"
168
+
169
+ # @ crayon-syntax-highlighter
170
+ #: crayon_settings.class.php:229
171
+ msgid "Inline Tag"
172
+ msgstr "行内标签"
173
+
174
+ #: crayon_settings.class.php:229
175
+ msgid "Block Tag"
176
+ msgstr "块标签"
177
+
178
+ # @ crayon-syntax-highlighter
179
+ #: crayon_settings_wp.class.php:54 crayon_settings_wp.class.php:211
180
+ #: crayon_settings_wp.class.php:1242
181
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:256
182
+ msgid "Settings"
183
+ msgstr "设置"
184
+
185
+ # @ crayon-syntax-highlighter
186
+ #: crayon_settings_wp.class.php:137
187
+ #, php-format
188
+ msgid "Press %s to Copy, %s to Paste"
189
+ msgstr "使用 %s 复制,使用 %s 粘贴。"
190
+
191
+ #: crayon_settings_wp.class.php:138
192
+ msgid "Click To Expand Code"
193
+ msgstr "点击展开代码"
194
+
195
+ # @ crayon-syntax-highlighter
196
+ #: crayon_settings_wp.class.php:180
197
+ msgid "Prompt"
198
+ msgstr "提示"
199
+
200
+ # @ crayon-syntax-highlighter
201
+ #: crayon_settings_wp.class.php:181
202
+ msgid "Value"
203
+ msgstr ""
204
+
205
+ # @ crayon-syntax-highlighter
206
+ #: crayon_settings_wp.class.php:182
207
+ msgid "Alert"
208
+ msgstr "警告"
209
+
210
+ # @ crayon-syntax-highlighter
211
+ #: crayon_settings_wp.class.php:183 crayon_settings_wp.class.php:897
212
+ msgid "No"
213
+ msgstr "取消"
214
+
215
+ # @ crayon-syntax-highlighter
216
+ #: crayon_settings_wp.class.php:184 crayon_settings_wp.class.php:897
217
+ msgid "Yes"
218
+ msgstr "确认"
219
+
220
+ # @ crayon-syntax-highlighter
221
+ #: crayon_settings_wp.class.php:185
222
+ msgid "Confirm"
223
+ msgstr "确认"
224
+
225
+ # @ crayon-syntax-highlighter
226
+ #: crayon_settings_wp.class.php:186
227
+ msgid "Change Code"
228
+ msgstr "修改示例代码"
229
+
230
+ # @ crayon-syntax-highlighter
231
+ #: crayon_settings_wp.class.php:194
232
+ msgid "You do not have sufficient permissions to access this page."
233
+ msgstr "无权限访问此页面"
234
+
235
+ # @ crayon-syntax-highlighter
236
+ #: crayon_settings_wp.class.php:226
237
+ msgid "Save Changes"
238
+ msgstr "保存设置"
239
+
240
+ # @ crayon-syntax-highlighter
241
+ #: crayon_settings_wp.class.php:233
242
+ msgid "Reset Settings"
243
+ msgstr "初始化设置"
244
+
245
+ # @ crayon-syntax-highlighter
246
+ #: crayon_settings_wp.class.php:492
247
+ msgid "General"
248
+ msgstr "一般"
249
+
250
+ # @ crayon-syntax-highlighter
251
+ #: crayon_settings_wp.class.php:493
252
+ msgid "Theme"
253
+ msgstr "主题"
254
+
255
+ # @ crayon-syntax-highlighter
256
+ #: crayon_settings_wp.class.php:494
257
+ msgid "Font"
258
+ msgstr "字体"
259
+
260
+ # @ crayon-syntax-highlighter
261
+ #: crayon_settings_wp.class.php:495
262
+ msgid "Metrics"
263
+ msgstr "排版"
264
+
265
+ # @ crayon-syntax-highlighter
266
+ #: crayon_settings_wp.class.php:496 util/theme-editor/theme_editor.php:299
267
+ msgid "Toolbar"
268
+ msgstr "工具栏"
269
+
270
+ # @ crayon-syntax-highlighter
271
+ #: crayon_settings_wp.class.php:497 util/theme-editor/theme_editor.php:297
272
+ msgid "Lines"
273
+ msgstr "行"
274
+
275
+ # @ crayon-syntax-highlighter
276
+ #: crayon_settings_wp.class.php:498
277
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:216
278
+ msgid "Code"
279
+ msgstr "代码"
280
+
281
+ # @ crayon-syntax-highlighter
282
+ #: crayon_settings_wp.class.php:499
283
+ msgid "Tags"
284
+ msgstr "标签"
285
+
286
+ # @ crayon-syntax-highlighter
287
+ #: crayon_settings_wp.class.php:500
288
+ msgid "Languages"
289
+ msgstr "语言"
290
+
291
+ # @ crayon-syntax-highlighter
292
+ #: crayon_settings_wp.class.php:501
293
+ msgid "Files"
294
+ msgstr "文件"
295
+
296
+ # @ crayon-syntax-highlighter
297
+ #: crayon_settings_wp.class.php:502
298
+ msgid "Posts"
299
+ msgstr "文章"
300
+
301
+ # @ crayon-syntax-highlighter
302
+ #: crayon_settings_wp.class.php:503
303
+ msgid "Tag Editor"
304
+ msgstr "标签编辑器"
305
+
306
+ # @ crayon-syntax-highlighter
307
+ #: crayon_settings_wp.class.php:504
308
+ msgid "Misc"
309
+ msgstr "其它"
310
+
311
+ # @ crayon-syntax-highlighter
312
+ #: crayon_settings_wp.class.php:507
313
+ msgid "Debug"
314
+ msgstr "调试"
315
+
316
+ # @ crayon-syntax-highlighter
317
+ #: crayon_settings_wp.class.php:508
318
+ msgid "Errors"
319
+ msgstr "错误"
320
+
321
+ # @ crayon-syntax-highlighter
322
+ #: crayon_settings_wp.class.php:509
323
+ msgid "Log"
324
+ msgstr "日志"
325
+
326
+ # @ crayon-syntax-highlighter
327
+ #: crayon_settings_wp.class.php:512
328
+ msgid "About"
329
+ msgstr "关于"
330
+
331
+ # @ crayon-syntax-highlighter
332
+ #: crayon_settings_wp.class.php:726
333
+ msgid "Height"
334
+ msgstr "高"
335
+
336
+ # @ crayon-syntax-highlighter
337
+ #: crayon_settings_wp.class.php:732
338
+ msgid "Width"
339
+ msgstr "宽"
340
+
341
+ # @ crayon-syntax-highlighter
342
+ #: crayon_settings_wp.class.php:738
343
+ msgid "Top Margin"
344
+ msgstr "顶部外边距"
345
+
346
+ # @ crayon-syntax-highlighter
347
+ #: crayon_settings_wp.class.php:739
348
+ msgid "Bottom Margin"
349
+ msgstr "底部外边距"
350
+
351
+ # @ crayon-syntax-highlighter
352
+ #: crayon_settings_wp.class.php:740 crayon_settings_wp.class.php:745
353
+ msgid "Left Margin"
354
+ msgstr "左外边距"
355
+
356
+ # @ crayon-syntax-highlighter
357
+ #: crayon_settings_wp.class.php:741 crayon_settings_wp.class.php:745
358
+ msgid "Right Margin"
359
+ msgstr "右外边距"
360
+
361
+ # @ crayon-syntax-highlighter
362
+ #: crayon_settings_wp.class.php:751
363
+ msgid "Horizontal Alignment"
364
+ msgstr "对齐方式"
365
+
366
+ # @ crayon-syntax-highlighter
367
+ #: crayon_settings_wp.class.php:754
368
+ msgid "Allow floating elements to surround Crayon"
369
+ msgstr "允许插件代码周围使用浮动元素"
370
+
371
+ # @ crayon-syntax-highlighter
372
+ #: crayon_settings_wp.class.php:756
373
+ msgid "Inline Margin"
374
+ msgstr "行内间距"
375
+
376
+ # @ crayon-syntax-highlighter
377
+ #: crayon_settings_wp.class.php:764
378
+ msgid "Display the Toolbar"
379
+ msgstr "工具栏显示方式:"
380
+
381
+ # @ crayon-syntax-highlighter
382
+ #: crayon_settings_wp.class.php:767
383
+ msgid "Overlay the toolbar on code rather than push it down when possible"
384
+ msgstr "工具栏悬浮在代码上而不是把代码挤下去"
385
+
386
+ # @ crayon-syntax-highlighter
387
+ #: crayon_settings_wp.class.php:768
388
+ msgid "Toggle the toolbar on single click when it is overlayed"
389
+ msgstr "当工具栏悬浮时单击隐藏工具栏"
390
+
391
+ # @ crayon-syntax-highlighter
392
+ #: crayon_settings_wp.class.php:769
393
+ msgid "Delay hiding the toolbar on MouseOut"
394
+ msgstr "工具栏消失附带延迟效果"
395
+
396
+ # @ crayon-syntax-highlighter
397
+ #: crayon_settings_wp.class.php:771
398
+ msgid "Display the title when provided"
399
+ msgstr "有标题则显示标题"
400
+
401
+ # @ crayon-syntax-highlighter
402
+ #: crayon_settings_wp.class.php:772
403
+ msgid "Display the language"
404
+ msgstr "显示语言方式:"
405
+
406
+ # @ crayon-syntax-highlighter
407
+ #: crayon_settings_wp.class.php:779
408
+ msgid "Display striped code lines"
409
+ msgstr "条纹显示代码"
410
+
411
+ # @ crayon-syntax-highlighter
412
+ #: crayon_settings_wp.class.php:780
413
+ msgid "Enable line marking for important lines"
414
+ msgstr "允许关键行高亮"
415
+
416
+ # @ crayon-syntax-highlighter
417
+ #: crayon_settings_wp.class.php:781
418
+ msgid "Enable line ranges for showing only parts of code"
419
+ msgstr "开启 指定显示的行 功能"
420
+
421
+ # @ crayon-syntax-highlighter
422
+ #: crayon_settings_wp.class.php:782
423
+ msgid "Display line numbers by default"
424
+ msgstr "默认显示行编号"
425
+
426
+ # @ crayon-syntax-highlighter
427
+ #: crayon_settings_wp.class.php:783
428
+ msgid "Enable line number toggling"
429
+ msgstr "允许切换显示行编号"
430
+
431
+ # @ crayon-syntax-highlighter
432
+ #: crayon_settings_wp.class.php:784
433
+ msgid "Wrap lines by default"
434
+ msgstr "默认自动换行"
435
+
436
+ # @ crayon-syntax-highlighter
437
+ #: crayon_settings_wp.class.php:785
438
+ msgid "Enable line wrap toggling"
439
+ msgstr "允许切换自动换行"
440
+
441
+ # @ crayon-syntax-highlighter
442
+ #: crayon_settings_wp.class.php:786
443
+ msgid "Start line numbers from"
444
+ msgstr "行编号始于"
445
+
446
+ # @ crayon-syntax-highlighter
447
+ #: crayon_settings_wp.class.php:797
448
+ msgid "When no language is provided, use the fallback"
449
+ msgstr "当没指定语言, 则默认语言为"
450
+
451
+ # @ crayon-syntax-highlighter
452
+ #: crayon_settings_wp.class.php:803
453
+ #, php-format
454
+ msgid "%d language has been detected."
455
+ msgstr "已支持 %d 种语言,"
456
+
457
+ # @ crayon-syntax-highlighter
458
+ #: crayon_settings_wp.class.php:804
459
+ msgid "Parsing was successful"
460
+ msgstr "加载完成"
461
+
462
+ # @ crayon-syntax-highlighter
463
+ #: crayon_settings_wp.class.php:804
464
+ msgid "Parsing was unsuccessful"
465
+ msgstr "加载失败"
466
+
467
+ # @ crayon-syntax-highlighter
468
+ #: crayon_settings_wp.class.php:810
469
+ #, php-format
470
+ msgid "The selected language with id %s could not be loaded"
471
+ msgstr "ID为 %s 的语言加载失败"
472
+
473
+ # @ crayon-syntax-highlighter
474
+ #: crayon_settings_wp.class.php:813
475
+ msgid "Show Languages"
476
+ msgstr "显示全部语言"
477
+
478
+ #: crayon_settings_wp.class.php:815
479
+ msgid "No languages could be parsed."
480
+ msgstr "无法识别语言"
481
+
482
+ # @ crayon-syntax-highlighter
483
+ #: crayon_settings_wp.class.php:826 crayon_settings_wp.class.php:877
484
+ msgid "ID"
485
+ msgstr "ID"
486
+
487
+ # @ crayon-syntax-highlighter
488
+ #: crayon_settings_wp.class.php:826
489
+ msgid "Name"
490
+ msgstr "语言"
491
+
492
+ # @ crayon-syntax-highlighter
493
+ #: crayon_settings_wp.class.php:826 crayon_settings_wp.class.php:1182
494
+ msgid "Version"
495
+ msgstr "版本"
496
+
497
+ #: crayon_settings_wp.class.php:826
498
+ msgid "File Extensions"
499
+ msgstr "扩展名"
500
+
501
+ #: crayon_settings_wp.class.php:826
502
+ msgid "Aliases"
503
+ msgstr "别名"
504
+
505
+ # @ crayon-syntax-highlighter
506
+ #: crayon_settings_wp.class.php:826
507
+ msgid "State"
508
+ msgstr "状态"
509
+
510
+ #: crayon_settings_wp.class.php:841
511
+ msgid ""
512
+ "Languages that have the same extension as their name don't need to "
513
+ "explicitly map extensions."
514
+ msgstr ""
515
+
516
+ #: crayon_settings_wp.class.php:843
517
+ msgid "No languages could be found."
518
+ msgstr "没有找到任何语言"
519
+
520
+ # @ crayon-syntax-highlighter
521
+ #: crayon_settings_wp.class.php:850
522
+ msgid "Show Crayon Posts"
523
+ msgstr "显示已使用代码高亮的文章"
524
+
525
+ # @ crayon-syntax-highlighter
526
+ #: crayon_settings_wp.class.php:851
527
+ msgid "Refresh"
528
+ msgstr "刷新"
529
+
530
+ # @ crayon-syntax-highlighter
531
+ #: crayon_settings_wp.class.php:877
532
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:193
533
+ #: util/theme-editor/theme_editor.php:314
534
+ msgid "Title"
535
+ msgstr "标题"
536
+
537
+ # @ crayon-syntax-highlighter
538
+ #: crayon_settings_wp.class.php:877
539
+ msgid "Posted"
540
+ msgstr "发表时间"
541
+
542
+ # @ crayon-syntax-highlighter
543
+ #: crayon_settings_wp.class.php:877
544
+ msgid "Modifed"
545
+ msgstr "修改时间"
546
+
547
+ # @ crayon-syntax-highlighter
548
+ #: crayon_settings_wp.class.php:877
549
+ msgid "Contains Legacy Tags?"
550
+ msgstr "是否存在老式标签"
551
+
552
+ # @ crayon-syntax-highlighter
553
+ #: crayon_settings_wp.class.php:992
554
+ msgid "Edit"
555
+ msgstr "编辑"
556
+
557
+ # @ crayon-syntax-highlighter
558
+ #: crayon_settings_wp.class.php:992 util/theme-editor/theme_editor.php:199
559
+ msgid "Duplicate"
560
+ msgstr "复制"
561
+
562
+ # @ crayon-syntax-highlighter
563
+ #: crayon_settings_wp.class.php:992
564
+ msgid "Submit"
565
+ msgstr "提交"
566
+
567
+ # @ crayon-syntax-highlighter
568
+ #: crayon_settings_wp.class.php:993 util/theme-editor/theme_editor.php:196
569
+ msgid "Delete"
570
+ msgstr "删除"
571
+
572
+ # @ crayon-syntax-highlighter
573
+ #: crayon_settings_wp.class.php:995
574
+ msgid "Loading..."
575
+ msgstr "载入中"
576
+
577
+ # @ crayon-syntax-highlighter
578
+ #: crayon_settings_wp.class.php:997
579
+ msgid "Duplicate a Stock Theme into a User Theme to allow editing."
580
+ msgstr "编辑主题前必须复制一个预设主题为自定义主题"
581
+
582
+ # @ crayon-syntax-highlighter
583
+ #: crayon_settings_wp.class.php:1008
584
+ #, php-format
585
+ msgid ""
586
+ "Change the %1$sfallback language%2$s to change the sample code or %3$schange "
587
+ "it manually%4$s. Lines 5-7 are marked."
588
+ msgstr ""
589
+ "%1$s修改默认语言%2$s 会显示不同的示例代码,您也可以 %3$s手动修改%4$s 示例代"
590
+ "码;5-7 行为关键行。"
591
+
592
+ # @ crayon-syntax-highlighter
593
+ #: crayon_settings_wp.class.php:1015
594
+ msgid "Enable Live Preview"
595
+ msgstr "允许即时预览"
596
+
597
+ # @ crayon-syntax-highlighter
598
+ #: crayon_settings_wp.class.php:1017
599
+ msgid "Enqueue themes in the header (more efficient)."
600
+ msgstr "在头部就加载主题(推荐)"
601
+
602
+ # @ crayon-syntax-highlighter
603
+ #: crayon_settings_wp.class.php:1020
604
+ #, php-format
605
+ msgid "The selected theme with id %s could not be loaded"
606
+ msgstr "ID为 %s 的主题加载失败"
607
+
608
+ # @ crayon-syntax-highlighter
609
+ #: crayon_settings_wp.class.php:1035
610
+ msgid "Custom Font Size"
611
+ msgstr "字体大小"
612
+
613
+ # @ crayon-syntax-highlighter
614
+ #: crayon_settings_wp.class.php:1037
615
+ msgid "Line Height"
616
+ msgstr "行高"
617
+
618
+ # @ crayon-syntax-highlighter
619
+ #: crayon_settings_wp.class.php:1042
620
+ #, php-format
621
+ msgid "The selected font with id %s could not be loaded"
622
+ msgstr "ID为 %s 的字体加载失败"
623
+
624
+ # @ crayon-syntax-highlighter
625
+ #: crayon_settings_wp.class.php:1048
626
+ msgid "Enqueue fonts in the header (more efficient)."
627
+ msgstr "在头部就加载字体(推荐)"
628
+
629
+ # @ crayon-syntax-highlighter
630
+ #: crayon_settings_wp.class.php:1053
631
+ msgid "Enable plain code view and display"
632
+ msgstr "允许纯文本显示代码且显示方式为"
633
+
634
+ # @ crayon-syntax-highlighter
635
+ #: crayon_settings_wp.class.php:1056
636
+ msgid "Enable plain code toggling"
637
+ msgstr "允许切换纯文本显示代码"
638
+
639
+ # @ crayon-syntax-highlighter
640
+ #: crayon_settings_wp.class.php:1057
641
+ msgid "Show the plain code by default"
642
+ msgstr "默认纯文本显示代码"
643
+
644
+ # @ crayon-syntax-highlighter
645
+ #: crayon_settings_wp.class.php:1058
646
+ msgid "Enable code copy/paste"
647
+ msgstr "允许代码复制/粘贴"
648
+
649
+ # @ crayon-syntax-highlighter
650
+ #: crayon_settings_wp.class.php:1060
651
+ msgid "Enable opening code in a window"
652
+ msgstr "允许在新窗口中显示代码"
653
+
654
+ # @ crayon-syntax-highlighter
655
+ #: crayon_settings_wp.class.php:1061
656
+ msgid "Always display scrollbars"
657
+ msgstr "总是显示滚动条"
658
+
659
+ #: crayon_settings_wp.class.php:1062
660
+ msgid "Minimize code"
661
+ msgstr "最小化代码框"
662
+
663
+ # @ crayon-syntax-highlighter
664
+ #: crayon_settings_wp.class.php:1063
665
+ msgid "Expand code beyond page borders on mouseover"
666
+ msgstr "鼠标经过时,即使超出页面边界也展开代码"
667
+
668
+ # @ crayon-syntax-highlighter
669
+ #: crayon_settings_wp.class.php:1064
670
+ msgid "Enable code expanding toggling when possible"
671
+ msgstr "可能时允许代码折叠"
672
+
673
+ # @ crayon-syntax-highlighter
674
+ #: crayon_settings_wp.class.php:1067
675
+ msgid "Decode HTML entities in code"
676
+ msgstr "在代码中进行 HTML 转义"
677
+
678
+ # @ crayon-syntax-highlighter
679
+ #: crayon_settings_wp.class.php:1069
680
+ msgid "Decode HTML entities in attributes"
681
+ msgstr "在属性中进行 HTML 转义"
682
+
683
+ # @ crayon-syntax-highlighter
684
+ #: crayon_settings_wp.class.php:1071
685
+ msgid "Remove whitespace surrounding the shortcode content"
686
+ msgstr "删除短代码周围的空白"
687
+
688
+ # @ crayon-syntax-highlighter
689
+ #: crayon_settings_wp.class.php:1073
690
+ msgid "Remove &lt;code&gt; tags surrounding the shortcode content"
691
+ msgstr "删除短代码周围&lt;code&gt;标签"
692
+
693
+ # @ crayon-syntax-highlighter
694
+ #: crayon_settings_wp.class.php:1074
695
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
696
+ msgstr "允许多重语言高亮使用分隔符和标签"
697
+
698
+ # @ crayon-syntax-highlighter
699
+ #: crayon_settings_wp.class.php:1076
700
+ msgid "Show Mixed Language Icon (+)"
701
+ msgstr "显示多重语言图标 (+)"
702
+
703
+ # @ crayon-syntax-highlighter
704
+ #: crayon_settings_wp.class.php:1078
705
+ msgid "Tab size in spaces"
706
+ msgstr "Tab 等于几个空格"
707
+
708
+ # @ crayon-syntax-highlighter
709
+ #: crayon_settings_wp.class.php:1080
710
+ msgid "Blank lines before code:"
711
+ msgstr "代码高亮前的空行数:"
712
+
713
+ # @ crayon-syntax-highlighter
714
+ #: crayon_settings_wp.class.php:1082
715
+ msgid "Blank lines after code:"
716
+ msgstr "代码高亮后的空行数:"
717
+
718
+ # @ crayon-syntax-highlighter
719
+ #: crayon_settings_wp.class.php:1087
720
+ msgid "Capture Inline Tags"
721
+ msgstr "捕获行内标签"
722
+
723
+ # @ crayon-syntax-highlighter
724
+ #: crayon_settings_wp.class.php:1088
725
+ msgid "Wrap Inline Tags"
726
+ msgstr "行内标签自动换行"
727
+
728
+ # @ crayon-syntax-highlighter
729
+ #: crayon_settings_wp.class.php:1089
730
+ msgid "Capture &lt;code&gt; as"
731
+ msgstr "捕获 &lt;code&gt; 标签为插件所用"
732
+
733
+ # @ crayon-syntax-highlighter
734
+ #: crayon_settings_wp.class.php:1093
735
+ msgid "Capture `backquotes` as &lt;code&gt;"
736
+ msgstr "捕获 `反引号` 为 &lt;code&gt; 标签"
737
+
738
+ # @ crayon-syntax-highlighter
739
+ #: crayon_settings_wp.class.php:1094
740
+ msgid "Capture &lt;pre&gt; tags as Crayons"
741
+ msgstr "捕获 &lt;pre&gt; 标签为插件所用"
742
+
743
+ # @ crayon-syntax-highlighter
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 代替且转换掉老式"
751
+ "标签。"
752
+
753
+ # @ crayon-syntax-highlighter
754
+ #: crayon_settings_wp.class.php:1097
755
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
756
+ msgstr "使用迷你标签(如[php][/php])"
757
+
758
+ # @ crayon-syntax-highlighter
759
+ #: crayon_settings_wp.class.php:1098
760
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
761
+ msgstr "捕获如{php}{/php}形式的行内标签"
762
+
763
+ # @ crayon-syntax-highlighter
764
+ #: crayon_settings_wp.class.php:1099
765
+ msgid "Enable [plain][/plain] tag."
766
+ msgstr "启用 [plain][/plain] 标签"
767
+
768
+ # @ crayon-syntax-highlighter
769
+ #: crayon_settings_wp.class.php:1104
770
+ msgid ""
771
+ "When loading local files and a relative path is given for the URL, use the "
772
+ "absolute path"
773
+ msgstr "当 URL 为相对路径时,使用的绝对路径为"
774
+
775
+ # @ crayon-syntax-highlighter
776
+ #: crayon_settings_wp.class.php:1107
777
+ msgid "Followed by your relative URL."
778
+ msgstr "置于相对路径之前"
779
+
780
+ # @ crayon-syntax-highlighter
781
+ #: crayon_settings_wp.class.php:1114
782
+ msgid "Convert Legacy Tags"
783
+ msgstr "转换老式标签"
784
+
785
+ # @ crayon-syntax-highlighter
786
+ #: crayon_settings_wp.class.php:1117
787
+ msgid "No Legacy Tags Found"
788
+ msgstr "暂无老式标签"
789
+
790
+ # @ crayon-syntax-highlighter
791
+ #: crayon_settings_wp.class.php:1121
792
+ msgid "Encode"
793
+ msgstr "HTML 转义"
794
+
795
+ # @ crayon-syntax-highlighter
796
+ #: crayon_settings_wp.class.php:1123
797
+ #, php-format
798
+ msgid ""
799
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
800
+ "attribute"
801
+ msgstr "&lt;pre&gt; 标签中使用 %s 分割每个属性与属性值。"
802
+
803
+ # @ crayon-syntax-highlighter
804
+ #: crayon_settings_wp.class.php:1126
805
+ msgid ""
806
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
807
+ "bbPress)"
808
+ msgstr "在前端任何 TinyMCE 编辑器都显示标签编辑器(如 bbPress)"
809
+
810
+ # @ crayon-syntax-highlighter
811
+ #: crayon_settings_wp.class.php:1127
812
+ msgid "Display Tag Editor settings on the frontend"
813
+ msgstr "在前端显示标签编辑器的设置"
814
+
815
+ # @ crayon-syntax-highlighter
816
+ #: crayon_settings_wp.class.php:1131
817
+ msgid "Clear the cache used to store remote code requests"
818
+ msgstr "清理用于存储远程代码的缓存频率"
819
+
820
+ # @ crayon-syntax-highlighter
821
+ #: crayon_settings_wp.class.php:1133
822
+ msgid "Clear Now"
823
+ msgstr "立刻清理"
824
+
825
+ # @ crayon-syntax-highlighter
826
+ #: crayon_settings_wp.class.php:1134
827
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
828
+ msgstr "按需加载插件的 CSS JavaScript"
829
+
830
+ # @ crayon-syntax-highlighter
831
+ #: crayon_settings_wp.class.php:1135
832
+ msgid "Disable enqueuing for page templates that may contain The Loop."
833
+ msgstr "不将可能包含Wordpress主循环的页面模板加入队列"
834
+
835
+ # @ crayon-syntax-highlighter
836
+ #: crayon_settings_wp.class.php:1136
837
+ msgid "Allow Crayons inside comments"
838
+ msgstr "允许在评论中使用"
839
+
840
+ # @ crayon-syntax-highlighter
841
+ #: crayon_settings_wp.class.php:1137
842
+ msgid "Remove Crayons from excerpts"
843
+ msgstr "文章摘要不启用代码高亮"
844
+
845
+ # @ crayon-syntax-highlighter
846
+ #: crayon_settings_wp.class.php:1138
847
+ msgid "Load Crayons only from the main Wordpress query"
848
+ msgstr "只从Wordpress的主查询中加载Crayon"
849
+
850
+ # @ crayon-syntax-highlighter
851
+ #: crayon_settings_wp.class.php:1139
852
+ msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
853
+ msgstr "使用触屏设备时禁止鼠标行为(如鼠标经过)"
854
+
855
+ # @ crayon-syntax-highlighter
856
+ #: crayon_settings_wp.class.php:1140
857
+ msgid "Disable animations"
858
+ msgstr "禁止动画效果"
859
+
860
+ # @ crayon-syntax-highlighter
861
+ #: crayon_settings_wp.class.php:1141
862
+ msgid "Disable runtime stats"
863
+ msgstr "禁止运行时间统计"
864
+
865
+ # @ crayon-syntax-highlighter
866
+ #: crayon_settings_wp.class.php:1147
867
+ msgid "Log errors for individual Crayons"
868
+ msgstr "使用独立的错误日志"
869
+
870
+ # @ crayon-syntax-highlighter
871
+ #: crayon_settings_wp.class.php:1148
872
+ msgid "Log system-wide errors"
873
+ msgstr "启用系统错误日志"
874
+
875
+ # @ crayon-syntax-highlighter
876
+ #: crayon_settings_wp.class.php:1149
877
+ msgid "Display custom message for errors"
878
+ msgstr "自定义错误提示"
879
+
880
+ # @ crayon-syntax-highlighter
881
+ #: crayon_settings_wp.class.php:1161
882
+ msgid "Show Log"
883
+ msgstr "显示日志"
884
+
885
+ # @ crayon-syntax-highlighter
886
+ #: crayon_settings_wp.class.php:1161
887
+ msgid "Hide Log"
888
+ msgstr "隐藏日志"
889
+
890
+ # @ crayon-syntax-highlighter
891
+ #: crayon_settings_wp.class.php:1163
892
+ msgid "Clear Log"
893
+ msgstr "清理日志"
894
+
895
+ # @ crayon-syntax-highlighter
896
+ #: crayon_settings_wp.class.php:1164
897
+ msgid "Email Admin"
898
+ msgstr "发邮件给管理员"
899
+
900
+ # @ crayon-syntax-highlighter
901
+ #: crayon_settings_wp.class.php:1166
902
+ msgid "Email Developer"
903
+ msgstr "发邮件给开发者"
904
+
905
+ # @ crayon-syntax-highlighter
906
+ #: crayon_settings_wp.class.php:1168
907
+ msgid "The log is currently empty."
908
+ msgstr "日志为空,"
909
+
910
+ # @ crayon-syntax-highlighter
911
+ #: crayon_settings_wp.class.php:1170
912
+ msgid "The log file exists and is writable."
913
+ msgstr "日志文件存在且可写。"
914
+
915
+ # @ crayon-syntax-highlighter
916
+ #: crayon_settings_wp.class.php:1170
917
+ msgid "The log file exists and is not writable."
918
+ msgstr "日志文件存在但不可写。"
919
+
920
+ # @ crayon-syntax-highlighter
921
+ #: crayon_settings_wp.class.php:1172
922
+ msgid "The log file does not exist and is not writable."
923
+ msgstr "日志文件不存在且不可写。"
924
+
925
+ # @ crayon-syntax-highlighter
926
+ #: crayon_settings_wp.class.php:1184
927
+ msgid "Developer"
928
+ msgstr "开发者"
929
+
930
+ # @ crayon-syntax-highlighter
931
+ #: crayon_settings_wp.class.php:1185
932
+ msgid "Translators"
933
+ msgstr "翻译者"
934
+
935
+ # @ crayon-syntax-highlighter
936
+ #: crayon_settings_wp.class.php:1236
937
+ msgid "?"
938
+ msgstr "?"
939
+
940
+ # @ crayon-syntax-highlighter
941
+ #: crayon_settings_wp.class.php:1243 util/theme-editor/theme_editor.php:336
942
+ msgid "Theme Editor"
943
+ msgstr "主题编辑器"
944
+
945
+ # @ crayon-syntax-highlighter
946
+ #: crayon_settings_wp.class.php:1244
947
+ msgid "Donate"
948
+ msgstr "捐助"
949
+
950
+ # @ crayon-syntax-highlighter
951
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:65
952
+ msgid "Add Crayon Code"
953
+ msgstr "插入代码高亮"
954
+
955
+ # @ crayon-syntax-highlighter
956
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:66
957
+ msgid "Edit Crayon Code"
958
+ msgstr "编辑代码高亮"
959
+
960
+ # @ crayon-syntax-highlighter
961
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:67
962
+ msgid "Add"
963
+ msgstr "插入"
964
+
965
+ # @ crayon-syntax-highlighter
966
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:68
967
+ #: util/theme-editor/theme_editor.php:352
968
+ msgid "Save"
969
+ msgstr "保存"
970
+
971
+ # @ crayon-syntax-highlighter
972
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:184
973
+ msgid "OK"
974
+ msgstr "确认"
975
+
976
+ # @ crayon-syntax-highlighter
977
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:186
978
+ msgid "Cancel"
979
+ msgstr "取消"
980
+
981
+ # @ crayon-syntax-highlighter
982
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:195
983
+ msgid "A short description"
984
+ msgstr "一段简短的描述"
985
+
986
+ # @ crayon-syntax-highlighter
987
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:197
988
+ #: util/theme-editor/theme_editor.php:318
989
+ msgid "Inline"
990
+ msgstr "行内"
991
+
992
+ # @ crayon-syntax-highlighter
993
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:199
994
+ msgid "Don't Highlight"
995
+ msgstr "禁止高亮"
996
+
997
+ # @ crayon-syntax-highlighter
998
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:204
999
+ #: util/theme-editor/theme_editor.php:322
1000
+ msgid "Language"
1001
+ msgstr "语言"
1002
+
1003
+ # @ crayon-syntax-highlighter
1004
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:207
1005
+ msgid "Line Range"
1006
+ msgstr "指定显示的行"
1007
+
1008
+ # @ crayon-syntax-highlighter
1009
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:208
1010
+ msgid "(e.g. 3-5 or 3)"
1011
+ msgstr "(如 3-5 3)"
1012
+
1013
+ # @ crayon-syntax-highlighter
1014
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:209
1015
+ msgid "Marked Lines"
1016
+ msgstr "关键行"
1017
+
1018
+ # @ crayon-syntax-highlighter
1019
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:210
1020
+ msgid "(e.g. 1,2,3-5)"
1021
+ msgstr "(如 1,2,3-5)"
1022
+
1023
+ # @ crayon-syntax-highlighter
1024
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:219
1025
+ msgid "Clear"
1026
+ msgstr "清理"
1027
+
1028
+ # @ crayon-syntax-highlighter
1029
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:223
1030
+ msgid "Paste your code here, or type it in manually."
1031
+ msgstr "粘贴代码到这里,或者手工输入。"
1032
+
1033
+ # @ crayon-syntax-highlighter
1034
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:227
1035
+ msgid "URL"
1036
+ msgstr "URL"
1037
+
1038
+ # @ crayon-syntax-highlighter
1039
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:229
1040
+ msgid "Relative local path or absolute URL"
1041
+ msgstr "相对路径或绝对路径 URL"
1042
+
1043
+ # @ crayon-syntax-highlighter
1044
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:232
1045
+ msgid ""
1046
+ "If the URL fails to load, the code above will be shown instead. If no code "
1047
+ "exists, an error is shown."
1048
+ msgstr ""
1049
+ "如果 URL 不能加载,将会使用下面的代码代替显示,如果也没有代码,则显示错误提"
1050
+ "示。"
1051
+
1052
+ # @ crayon-syntax-highlighter
1053
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:234
1054
+ #, php-format
1055
+ msgid ""
1056
+ "If a relative local path is given it will be appended to %s - which is "
1057
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
1058
+ msgstr ""
1059
+ "如果是相对路径,则前面的路径将是 %s (在 %sCrayon &gt; Settings &gt; Files%s "
1060
+ "里面设置)"
1061
+
1062
+ # @ crayon-syntax-highlighter
1063
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:261
1064
+ msgid "Change the following settings to override their global values."
1065
+ msgstr "以下设置优先级高于默认设置,"
1066
+
1067
+ # @ crayon-syntax-highlighter
1068
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:263
1069
+ msgid "Only changes (shown yellow) are applied."
1070
+ msgstr "只有背景色为黄色的选项优先级会高于默认设置,"
1071
+
1072
+ # @ crayon-syntax-highlighter
1073
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:265
1074
+ #, php-format
1075
+ msgid ""
1076
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
1077
+ "affect overridden settings."
1078
+ msgstr "其它设置会沿用默认设置(%s点击前往设置%s)。"
1079
+
1080
+ # @ crayon-syntax-highlighter
1081
+ #: util/theme-editor/theme_editor.php:192
1082
+ msgid "User-Defined Theme"
1083
+ msgstr "自定义主题"
1084
+
1085
+ # @ crayon-syntax-highlighter
1086
+ #: util/theme-editor/theme_editor.php:193
1087
+ msgid "Stock Theme"
1088
+ msgstr "预设主题"
1089
+
1090
+ # @ crayon-syntax-highlighter
1091
+ #: util/theme-editor/theme_editor.php:194
1092
+ msgid "Success!"
1093
+ msgstr "成功"
1094
+
1095
+ # @ crayon-syntax-highlighter
1096
+ #: util/theme-editor/theme_editor.php:195
1097
+ msgid "Failed!"
1098
+ msgstr "失败!"
1099
+
1100
+ # @ crayon-syntax-highlighter
1101
+ #: util/theme-editor/theme_editor.php:197
1102
+ #, php-format
1103
+ msgid "Are you sure you want to delete the \"%s\" theme?"
1104
+ msgstr "确认删除 \"%s\" 主题?"
1105
+
1106
+ # @ crayon-syntax-highlighter
1107
+ #: util/theme-editor/theme_editor.php:198
1108
+ msgid "Delete failed!"
1109
+ msgstr "删除失败!"
1110
+
1111
+ # @ crayon-syntax-highlighter
1112
+ #: util/theme-editor/theme_editor.php:200
1113
+ msgid "New Name"
1114
+ msgstr "自定义主题名"
1115
+
1116
+ # @ crayon-syntax-highlighter
1117
+ #: util/theme-editor/theme_editor.php:201
1118
+ msgid "Duplicate failed!"
1119
+ msgstr "复制失败!"
1120
+
1121
+ # @ crayon-syntax-highlighter
1122
+ #: util/theme-editor/theme_editor.php:202
1123
+ msgid "Please check the log for details."
1124
+ msgstr "更多信息请查看日志。"
1125
+
1126
+ # @ crayon-syntax-highlighter
1127
+ #: util/theme-editor/theme_editor.php:203
1128
+ msgid "Are you sure you want to discard all changes?"
1129
+ msgstr "确认放弃所有的修改?"
1130
+
1131
+ # @ crayon-syntax-highlighter
1132
+ #: util/theme-editor/theme_editor.php:204
1133
+ #, php-format
1134
+ msgid "Editing Theme: %s"
1135
+ msgstr "编辑中的主题:%s"
1136
+
1137
+ # @ crayon-syntax-highlighter
1138
+ #: util/theme-editor/theme_editor.php:205
1139
+ #, php-format
1140
+ msgid "Creating Theme: %s"
1141
+ msgstr "创建中的主题:%s"
1142
+
1143
+ # @ crayon-syntax-highlighter
1144
+ #: util/theme-editor/theme_editor.php:206
1145
+ msgid "Submit Your Theme"
1146
+ msgstr "提交您的主题"
1147
+
1148
+ #: util/theme-editor/theme_editor.php:207
1149
+ msgid ""
1150
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
1151
+ "email me your theme - make sure it's considerably different from the stock "
1152
+ "themes :)"
1153
+ msgstr ""
1154
+ "把你的自定义主题加入Crayon官方主题中!这会给我发邮件,请确保你的主题和已有的不"
1155
+ "一样 :)"
1156
+
1157
+ # @ crayon-syntax-highlighter
1158
+ #: util/theme-editor/theme_editor.php:208
1159
+ msgid "Message"
1160
+ msgstr "说明"
1161
+
1162
+ # @ crayon-syntax-highlighter
1163
+ #: util/theme-editor/theme_editor.php:209
1164
+ msgid "Please include this theme in Crayon!"
1165
+ msgstr "请求纳入预设主题!"
1166
+
1167
+ # @ crayon-syntax-highlighter
1168
+ #: util/theme-editor/theme_editor.php:210
1169
+ msgid "Submit was successful."
1170
+ msgstr "提交成功"
1171
+
1172
+ # @ crayon-syntax-highlighter
1173
+ #: util/theme-editor/theme_editor.php:211
1174
+ msgid "Submit failed!"
1175
+ msgstr "提交失败!"
1176
+
1177
+ # @ crayon-syntax-highlighter
1178
+ #: util/theme-editor/theme_editor.php:294
1179
+ msgid "Information"
1180
+ msgstr "基本信息"
1181
+
1182
+ # @ crayon-syntax-highlighter
1183
+ #: util/theme-editor/theme_editor.php:295
1184
+ msgid "Highlighting"
1185
+ msgstr "代码高亮"
1186
+
1187
+ # @ crayon-syntax-highlighter
1188
+ #: util/theme-editor/theme_editor.php:296
1189
+ msgid "Frame"
1190
+ msgstr "边框"
1191
+
1192
+ # @ crayon-syntax-highlighter
1193
+ #: util/theme-editor/theme_editor.php:298
1194
+ msgid "Line Numbers"
1195
+ msgstr "行编号"
1196
+
1197
+ # @ crayon-syntax-highlighter
1198
+ #: util/theme-editor/theme_editor.php:301
1199
+ msgid "Background"
1200
+ msgstr "背景色"
1201
+
1202
+ # @ crayon-syntax-highlighter
1203
+ #: util/theme-editor/theme_editor.php:302
1204
+ msgid "Text"
1205
+ msgstr "文字"
1206
+
1207
+ # @ crayon-syntax-highlighter
1208
+ #: util/theme-editor/theme_editor.php:303
1209
+ msgid "Border"
1210
+ msgstr "边框"
1211
+
1212
+ # @ crayon-syntax-highlighter
1213
+ #: util/theme-editor/theme_editor.php:304
1214
+ msgid "Top Border"
1215
+ msgstr "顶部边框"
1216
+
1217
+ # @ crayon-syntax-highlighter
1218
+ #: util/theme-editor/theme_editor.php:305
1219
+ msgid "Bottom Border"
1220
+ msgstr "底部边框"
1221
+
1222
+ # @ crayon-syntax-highlighter
1223
+ #: util/theme-editor/theme_editor.php:306
1224
+ msgid "Right Border"
1225
+ msgstr "右边框"
1226
+
1227
+ # @ crayon-syntax-highlighter
1228
+ #: util/theme-editor/theme_editor.php:308
1229
+ msgid "Hover"
1230
+ msgstr "悬停"
1231
+
1232
+ # @ crayon-syntax-highlighter
1233
+ #: util/theme-editor/theme_editor.php:309
1234
+ msgid "Active"
1235
+ msgstr "激活"
1236
+
1237
+ # @ crayon-syntax-highlighter
1238
+ #: util/theme-editor/theme_editor.php:310
1239
+ msgid "Pressed"
1240
+ msgstr "已访问"
1241
+
1242
+ # @ crayon-syntax-highlighter
1243
+ #: util/theme-editor/theme_editor.php:311
1244
+ msgid "Pressed & Hover"
1245
+ msgstr "已访问 & 悬停"
1246
+
1247
+ # @ crayon-syntax-highlighter
1248
+ #: util/theme-editor/theme_editor.php:312
1249
+ msgid "Pressed & Active"
1250
+ msgstr "已访问 & 激活"
1251
+
1252
+ # @ crayon-syntax-highlighter
1253
+ #: util/theme-editor/theme_editor.php:315
1254
+ msgid "Buttons"
1255
+ msgstr "按钮"
1256
+
1257
+ # @ crayon-syntax-highlighter
1258
+ #: util/theme-editor/theme_editor.php:317
1259
+ msgid "Normal"
1260
+ msgstr "一般"
1261
+
1262
+ # @ crayon-syntax-highlighter
1263
+ #: util/theme-editor/theme_editor.php:319
1264
+ msgid "Striped"
1265
+ msgstr "条纹"
1266
+
1267
+ # @ crayon-syntax-highlighter
1268
+ #: util/theme-editor/theme_editor.php:320
1269
+ msgid "Marked"
1270
+ msgstr "关键"
1271
+
1272
+ # @ crayon-syntax-highlighter
1273
+ #: util/theme-editor/theme_editor.php:321
1274
+ msgid "Striped & Marked"
1275
+ msgstr "条纹 & 关键"
1276
+
1277
+ # @ crayon-syntax-highlighter
1278
+ #: util/theme-editor/theme_editor.php:351
1279
+ msgid "Back To Settings"
1280
+ msgstr "返回设置"
1281
+
1282
+ # @ crayon-syntax-highlighter
1283
+ #: util/theme-editor/theme_editor.php:390
1284
+ msgid "Comment"
1285
+ msgstr "注释"
1286
+
1287
+ # @ crayon-syntax-highlighter
1288
+ #: util/theme-editor/theme_editor.php:391
1289
+ msgid "String"
1290
+ msgstr "字符串"
1291
+
1292
+ # @ crayon-syntax-highlighter
1293
+ #: util/theme-editor/theme_editor.php:392
1294
+ msgid "Preprocessor"
1295
+ msgstr "预处理器"
1296
+
1297
+ # @ crayon-syntax-highlighter
1298
+ #: util/theme-editor/theme_editor.php:393
1299
+ msgid "Tag"
1300
+ msgstr "标签"
1301
+
1302
+ # @ crayon-syntax-highlighter
1303
+ #: util/theme-editor/theme_editor.php:394
1304
+ msgid "Keyword"
1305
+ msgstr "关键字"
1306
+
1307
+ # @ crayon-syntax-highlighter
1308
+ #: util/theme-editor/theme_editor.php:395
1309
+ msgid "Statement"
1310
+ msgstr "语句"
1311
+
1312
+ # @ crayon-syntax-highlighter
1313
+ #: util/theme-editor/theme_editor.php:396
1314
+ msgid "Reserved"
1315
+ msgstr "保留字"
1316
+
1317
+ # @ crayon-syntax-highlighter
1318
+ #: util/theme-editor/theme_editor.php:397
1319
+ msgid "Type"
1320
+ msgstr "类型"
1321
+
1322
+ # @ crayon-syntax-highlighter
1323
+ #: util/theme-editor/theme_editor.php:398
1324
+ msgid "Modifier"
1325
+ msgstr "修饰符"
1326
+
1327
+ # @ crayon-syntax-highlighter
1328
+ #: util/theme-editor/theme_editor.php:399
1329
+ msgid "Identifier"
1330
+ msgstr "标识"
1331
+
1332
+ # @ crayon-syntax-highlighter
1333
+ #: util/theme-editor/theme_editor.php:400
1334
+ msgid "Entity"
1335
+ msgstr "实例"
1336
+
1337
+ # @ crayon-syntax-highlighter
1338
+ #: util/theme-editor/theme_editor.php:401
1339
+ msgid "Variable"
1340
+ msgstr "变量"
1341
+
1342
+ # @ crayon-syntax-highlighter
1343
+ #: util/theme-editor/theme_editor.php:402
1344
+ msgid "Constant"
1345
+ msgstr "常量"
1346
+
1347
+ # @ crayon-syntax-highlighter
1348
+ #: util/theme-editor/theme_editor.php:403
1349
+ msgid "Operator"
1350
+ msgstr "操作符"
1351
+
1352
+ # @ crayon-syntax-highlighter
1353
+ #: util/theme-editor/theme_editor.php:404
1354
+ msgid "Symbol"
1355
+ msgstr "符号"
1356
+
1357
+ # @ crayon-syntax-highlighter
1358
+ #: util/theme-editor/theme_editor.php:405
1359
+ msgid "Notation"
1360
+ msgstr "记号"
1361
+
1362
+ # @ crayon-syntax-highlighter
1363
+ #: util/theme-editor/theme_editor.php:406
1364
+ msgid "Faded"
1365
+ msgstr "褪色"
1366
+
1367
+ # @ crayon-syntax-highlighter
1368
+ #: util/theme-editor/theme_editor.php:407
1369
+ msgid "HTML"
1370
+ msgstr "HTML"
1371
+
1372
+ # @ crayon-syntax-highlighter
1373
+ #: util/theme-editor/theme_editor.php:408
1374
+ msgid "Unhighlighted"
1375
+ msgstr "无高亮"
1376
+
1377
+ # @ crayon-syntax-highlighter
1378
+ #: util/theme-editor/theme_editor.php:542
1379
+ msgid "(Used for Copy/Paste)"
1380
+ msgstr "(复制/粘贴时的样式)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
trans/crayon-syntax-highlighter-zh_TW.mo ADDED
Binary file
trans/crayon-syntax-highlighter-zh_TW.po ADDED
@@ -0,0 +1,1380 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Crayon Syntax Highlighter v2.6.6\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-09-07 10:22+1000\n"
6
+ "PO-Revision-Date: 2014-09-07 10:22+1000\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Arefly <eflyjason@gmail.com>\n"
9
+ "Language: zh_TW\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=1; plural=0;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
17
+ "crayon__;crayon_n;crayon_e\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Textdomain-Support: yes\n"
20
+ "X-Generator: Poedit 1.5.4\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+
23
+ # @ crayon-syntax-highlighter
24
+ #: crayon_formatter.class.php:286
25
+ msgid "Toggle Line Numbers"
26
+ msgstr "切換是否顯示行編號"
27
+
28
+ # @ crayon-syntax-highlighter
29
+ #: crayon_formatter.class.php:290
30
+ msgid "Toggle Plain Code"
31
+ msgstr "純文本顯示代碼"
32
+
33
+ # @ crayon-syntax-highlighter
34
+ #: crayon_formatter.class.php:294
35
+ msgid "Toggle Line Wrap"
36
+ msgstr "切換自動換行"
37
+
38
+ # @ crayon-syntax-highlighter
39
+ #: crayon_formatter.class.php:298
40
+ msgid "Expand Code"
41
+ msgstr "點擊展開代碼"
42
+
43
+ #: crayon_formatter.class.php:302
44
+ msgid "Copy"
45
+ msgstr "拷貝代碼"
46
+
47
+ # @ crayon-syntax-highlighter
48
+ #: crayon_formatter.class.php:306
49
+ msgid "Open Code In New Window"
50
+ msgstr "在新窗口中顯示代碼"
51
+
52
+ # @ crayon-syntax-highlighter
53
+ #: crayon_formatter.class.php:323
54
+ msgid "Contains Mixed Languages"
55
+ msgstr "含多種語言"
56
+
57
+ # @ crayon-syntax-highlighter
58
+ #: crayon_settings.class.php:151
59
+ msgid "Hourly"
60
+ msgstr "每小時"
61
+
62
+ # @ crayon-syntax-highlighter
63
+ #: crayon_settings.class.php:151
64
+ msgid "Daily"
65
+ msgstr "每天"
66
+
67
+ # @ crayon-syntax-highlighter
68
+ #: crayon_settings.class.php:152
69
+ msgid "Weekly"
70
+ msgstr "每周"
71
+
72
+ # @ crayon-syntax-highlighter
73
+ #: crayon_settings.class.php:152
74
+ msgid "Monthly"
75
+ msgstr "每月"
76
+
77
+ # @ crayon-syntax-highlighter
78
+ #: crayon_settings.class.php:153
79
+ msgid "Immediately"
80
+ msgstr "立刻"
81
+
82
+ # @ crayon-syntax-highlighter
83
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
84
+ msgid "Max"
85
+ msgstr "最大"
86
+
87
+ # @ crayon-syntax-highlighter
88
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
89
+ msgid "Min"
90
+ msgstr "最小"
91
+
92
+ # @ crayon-syntax-highlighter
93
+ #: crayon_settings.class.php:164 crayon_settings.class.php:168
94
+ msgid "Static"
95
+ msgstr "指定"
96
+
97
+ # @ crayon-syntax-highlighter
98
+ #: crayon_settings.class.php:166 crayon_settings.class.php:170
99
+ #: crayon_settings_wp.class.php:749 crayon_settings_wp.class.php:758
100
+ #: crayon_settings_wp.class.php:1037 crayon_settings_wp.class.php:1039
101
+ msgid "Pixels"
102
+ msgstr "px"
103
+
104
+ # @ crayon-syntax-highlighter
105
+ #: crayon_settings.class.php:166 crayon_settings.class.php:170
106
+ msgid "Percent"
107
+ msgstr "%"
108
+
109
+ # @ crayon-syntax-highlighter
110
+ #: crayon_settings.class.php:179
111
+ msgid "None"
112
+ msgstr "從不"
113
+
114
+ # @ crayon-syntax-highlighter
115
+ #: crayon_settings.class.php:179
116
+ msgid "Left"
117
+ msgstr "左對齊"
118
+
119
+ # @ crayon-syntax-highlighter
120
+ #: crayon_settings.class.php:179
121
+ msgid "Center"
122
+ msgstr "居中"
123
+
124
+ # @ crayon-syntax-highlighter
125
+ #: crayon_settings.class.php:179
126
+ msgid "Right"
127
+ msgstr "右對齊"
128
+
129
+ # @ crayon-syntax-highlighter
130
+ #: crayon_settings.class.php:181 crayon_settings.class.php:206
131
+ msgid "On MouseOver"
132
+ msgstr "滑鼠經過"
133
+
134
+ # @ crayon-syntax-highlighter
135
+ #: crayon_settings.class.php:181 crayon_settings.class.php:187
136
+ msgid "Always"
137
+ msgstr "始終顯示"
138
+
139
+ # @ crayon-syntax-highlighter
140
+ #: crayon_settings.class.php:181 crayon_settings.class.php:187
141
+ msgid "Never"
142
+ msgstr "從不顯示"
143
+
144
+ # @ crayon-syntax-highlighter
145
+ #: crayon_settings.class.php:187
146
+ msgid "When Found"
147
+ msgstr "當有指定時"
148
+
149
+ # @ crayon-syntax-highlighter
150
+ #: crayon_settings.class.php:206
151
+ msgid "On Double Click"
152
+ msgstr "雙擊"
153
+
154
+ # @ crayon-syntax-highlighter
155
+ #: crayon_settings.class.php:206
156
+ msgid "On Single Click"
157
+ msgstr "單擊"
158
+
159
+ # @ crayon-syntax-highlighter
160
+ #: crayon_settings.class.php:206
161
+ msgid "Disable Mouse Events"
162
+ msgstr "禁止鼠標行為"
163
+
164
+ # @ crayon-syntax-highlighter
165
+ #: crayon_settings.class.php:213
166
+ msgid "An error has occurred. Please try again later."
167
+ msgstr "發生錯誤,請稍後重試。"
168
+
169
+ # @ crayon-syntax-highlighter
170
+ #: crayon_settings.class.php:229
171
+ msgid "Inline Tag"
172
+ msgstr "行內標簽"
173
+
174
+ #: crayon_settings.class.php:229
175
+ msgid "Block Tag"
176
+ msgstr "塊標簽"
177
+
178
+ # @ crayon-syntax-highlighter
179
+ #: crayon_settings_wp.class.php:54 crayon_settings_wp.class.php:211
180
+ #: crayon_settings_wp.class.php:1242
181
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:256
182
+ msgid "Settings"
183
+ msgstr "設置"
184
+
185
+ # @ crayon-syntax-highlighter
186
+ #: crayon_settings_wp.class.php:137
187
+ #, php-format
188
+ msgid "Press %s to Copy, %s to Paste"
189
+ msgstr "使用 %s 拷貝,使用 %s 粘貼。"
190
+
191
+ #: crayon_settings_wp.class.php:138
192
+ msgid "Click To Expand Code"
193
+ msgstr "點擊展開代碼"
194
+
195
+ # @ crayon-syntax-highlighter
196
+ #: crayon_settings_wp.class.php:180
197
+ msgid "Prompt"
198
+ msgstr "提示"
199
+
200
+ # @ crayon-syntax-highlighter
201
+ #: crayon_settings_wp.class.php:181
202
+ msgid "Value"
203
+ msgstr "值"
204
+
205
+ # @ crayon-syntax-highlighter
206
+ #: crayon_settings_wp.class.php:182
207
+ msgid "Alert"
208
+ msgstr "警告"
209
+
210
+ # @ crayon-syntax-highlighter
211
+ #: crayon_settings_wp.class.php:183 crayon_settings_wp.class.php:897
212
+ msgid "No"
213
+ msgstr "取消"
214
+
215
+ # @ crayon-syntax-highlighter
216
+ #: crayon_settings_wp.class.php:184 crayon_settings_wp.class.php:897
217
+ msgid "Yes"
218
+ msgstr "確認"
219
+
220
+ # @ crayon-syntax-highlighter
221
+ #: crayon_settings_wp.class.php:185
222
+ msgid "Confirm"
223
+ msgstr "確認"
224
+
225
+ # @ crayon-syntax-highlighter
226
+ #: crayon_settings_wp.class.php:186
227
+ msgid "Change Code"
228
+ msgstr "修改示例代碼"
229
+
230
+ # @ crayon-syntax-highlighter
231
+ #: crayon_settings_wp.class.php:194
232
+ msgid "You do not have sufficient permissions to access this page."
233
+ msgstr "無權限訪問此頁面"
234
+
235
+ # @ crayon-syntax-highlighter
236
+ #: crayon_settings_wp.class.php:226
237
+ msgid "Save Changes"
238
+ msgstr "保存設置"
239
+
240
+ # @ crayon-syntax-highlighter
241
+ #: crayon_settings_wp.class.php:233
242
+ msgid "Reset Settings"
243
+ msgstr "初始化設置"
244
+
245
+ # @ crayon-syntax-highlighter
246
+ #: crayon_settings_wp.class.php:492
247
+ msgid "General"
248
+ msgstr "一般"
249
+
250
+ # @ crayon-syntax-highlighter
251
+ #: crayon_settings_wp.class.php:493
252
+ msgid "Theme"
253
+ msgstr "主題"
254
+
255
+ # @ crayon-syntax-highlighter
256
+ #: crayon_settings_wp.class.php:494
257
+ msgid "Font"
258
+ msgstr "字體"
259
+
260
+ # @ crayon-syntax-highlighter
261
+ #: crayon_settings_wp.class.php:495
262
+ msgid "Metrics"
263
+ msgstr "排版"
264
+
265
+ # @ crayon-syntax-highlighter
266
+ #: crayon_settings_wp.class.php:496 util/theme-editor/theme_editor.php:296
267
+ msgid "Toolbar"
268
+ msgstr "工具欄"
269
+
270
+ # @ crayon-syntax-highlighter
271
+ #: crayon_settings_wp.class.php:497 util/theme-editor/theme_editor.php:294
272
+ msgid "Lines"
273
+ msgstr "行"
274
+
275
+ # @ crayon-syntax-highlighter
276
+ #: crayon_settings_wp.class.php:498
277
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:216
278
+ msgid "Code"
279
+ msgstr "代碼"
280
+
281
+ # @ crayon-syntax-highlighter
282
+ #: crayon_settings_wp.class.php:499
283
+ msgid "Tags"
284
+ msgstr "標簽"
285
+
286
+ # @ crayon-syntax-highlighter
287
+ #: crayon_settings_wp.class.php:500
288
+ msgid "Languages"
289
+ msgstr "語言"
290
+
291
+ # @ crayon-syntax-highlighter
292
+ #: crayon_settings_wp.class.php:501
293
+ msgid "Files"
294
+ msgstr "文件"
295
+
296
+ # @ crayon-syntax-highlighter
297
+ #: crayon_settings_wp.class.php:502
298
+ msgid "Posts"
299
+ msgstr "文章"
300
+
301
+ # @ crayon-syntax-highlighter
302
+ #: crayon_settings_wp.class.php:503
303
+ msgid "Tag Editor"
304
+ msgstr "標簽編輯器"
305
+
306
+ # @ crayon-syntax-highlighter
307
+ #: crayon_settings_wp.class.php:504
308
+ msgid "Misc"
309
+ msgstr "其它"
310
+
311
+ # @ crayon-syntax-highlighter
312
+ #: crayon_settings_wp.class.php:507
313
+ msgid "Debug"
314
+ msgstr "調試"
315
+
316
+ # @ crayon-syntax-highlighter
317
+ #: crayon_settings_wp.class.php:508
318
+ msgid "Errors"
319
+ msgstr "錯誤"
320
+
321
+ # @ crayon-syntax-highlighter
322
+ #: crayon_settings_wp.class.php:509
323
+ msgid "Log"
324
+ msgstr "日志"
325
+
326
+ # @ crayon-syntax-highlighter
327
+ #: crayon_settings_wp.class.php:512
328
+ msgid "About"
329
+ msgstr "關於"
330
+
331
+ # @ crayon-syntax-highlighter
332
+ #: crayon_settings_wp.class.php:726
333
+ msgid "Height"
334
+ msgstr "高"
335
+
336
+ # @ crayon-syntax-highlighter
337
+ #: crayon_settings_wp.class.php:732
338
+ msgid "Width"
339
+ msgstr "寬"
340
+
341
+ # @ crayon-syntax-highlighter
342
+ #: crayon_settings_wp.class.php:738
343
+ msgid "Top Margin"
344
+ msgstr "頂部外邊距"
345
+
346
+ # @ crayon-syntax-highlighter
347
+ #: crayon_settings_wp.class.php:739
348
+ msgid "Bottom Margin"
349
+ msgstr "底部外邊距"
350
+
351
+ # @ crayon-syntax-highlighter
352
+ #: crayon_settings_wp.class.php:740 crayon_settings_wp.class.php:745
353
+ msgid "Left Margin"
354
+ msgstr "左外邊距"
355
+
356
+ # @ crayon-syntax-highlighter
357
+ #: crayon_settings_wp.class.php:741 crayon_settings_wp.class.php:745
358
+ msgid "Right Margin"
359
+ msgstr "右外邊距"
360
+
361
+ # @ crayon-syntax-highlighter
362
+ #: crayon_settings_wp.class.php:751
363
+ msgid "Horizontal Alignment"
364
+ msgstr "對齊方式"
365
+
366
+ # @ crayon-syntax-highlighter
367
+ #: crayon_settings_wp.class.php:754
368
+ msgid "Allow floating elements to surround Crayon"
369
+ msgstr "允許外掛代碼周圍使用浮動元素"
370
+
371
+ # @ crayon-syntax-highlighter
372
+ #: crayon_settings_wp.class.php:756
373
+ msgid "Inline Margin"
374
+ msgstr "行內間距"
375
+
376
+ # @ crayon-syntax-highlighter
377
+ #: crayon_settings_wp.class.php:764
378
+ msgid "Display the Toolbar"
379
+ msgstr "工具欄顯示方式:"
380
+
381
+ # @ crayon-syntax-highlighter
382
+ #: crayon_settings_wp.class.php:767
383
+ msgid "Overlay the toolbar on code rather than push it down when possible"
384
+ msgstr "工具欄懸浮在代碼上而不是把代碼擠下去"
385
+
386
+ # @ crayon-syntax-highlighter
387
+ #: crayon_settings_wp.class.php:768
388
+ msgid "Toggle the toolbar on single click when it is overlayed"
389
+ msgstr "當工具欄懸浮時單擊隱藏工具欄"
390
+
391
+ # @ crayon-syntax-highlighter
392
+ #: crayon_settings_wp.class.php:769
393
+ msgid "Delay hiding the toolbar on MouseOut"
394
+ msgstr "工具欄消失附帶延遲效果"
395
+
396
+ # @ crayon-syntax-highlighter
397
+ #: crayon_settings_wp.class.php:771
398
+ msgid "Display the title when provided"
399
+ msgstr "有標題則顯示標題"
400
+
401
+ # @ crayon-syntax-highlighter
402
+ #: crayon_settings_wp.class.php:772
403
+ msgid "Display the language"
404
+ msgstr "顯示語言方式:"
405
+
406
+ # @ crayon-syntax-highlighter
407
+ #: crayon_settings_wp.class.php:779
408
+ msgid "Display striped code lines"
409
+ msgstr "條紋顯示代碼"
410
+
411
+ # @ crayon-syntax-highlighter
412
+ #: crayon_settings_wp.class.php:780
413
+ msgid "Enable line marking for important lines"
414
+ msgstr "允許關鍵行高亮"
415
+
416
+ # @ crayon-syntax-highlighter
417
+ #: crayon_settings_wp.class.php:781
418
+ msgid "Enable line ranges for showing only parts of code"
419
+ msgstr "開啟 指定顯示的行 功能"
420
+
421
+ # @ crayon-syntax-highlighter
422
+ #: crayon_settings_wp.class.php:782
423
+ msgid "Display line numbers by default"
424
+ msgstr "默認顯示行編號"
425
+
426
+ # @ crayon-syntax-highlighter
427
+ #: crayon_settings_wp.class.php:783
428
+ msgid "Enable line number toggling"
429
+ msgstr "允許切換顯示行編號"
430
+
431
+ # @ crayon-syntax-highlighter
432
+ #: crayon_settings_wp.class.php:784
433
+ msgid "Wrap lines by default"
434
+ msgstr "默認自動換行"
435
+
436
+ # @ crayon-syntax-highlighter
437
+ #: crayon_settings_wp.class.php:785
438
+ msgid "Enable line wrap toggling"
439
+ msgstr "允許切換自動換行"
440
+
441
+ # @ crayon-syntax-highlighter
442
+ #: crayon_settings_wp.class.php:786
443
+ msgid "Start line numbers from"
444
+ msgstr "行編號始於"
445
+
446
+ # @ crayon-syntax-highlighter
447
+ #: crayon_settings_wp.class.php:797
448
+ msgid "When no language is provided, use the fallback"
449
+ msgstr "當沒指定語言, 則默認語言為"
450
+
451
+ # @ crayon-syntax-highlighter
452
+ #: crayon_settings_wp.class.php:803
453
+ #, php-format
454
+ msgid "%d language has been detected."
455
+ msgstr "已支持 %d 種語言,"
456
+
457
+ # @ crayon-syntax-highlighter
458
+ #: crayon_settings_wp.class.php:804
459
+ msgid "Parsing was successful"
460
+ msgstr "加載完成"
461
+
462
+ # @ crayon-syntax-highlighter
463
+ #: crayon_settings_wp.class.php:804
464
+ msgid "Parsing was unsuccessful"
465
+ msgstr "加載失敗"
466
+
467
+ # @ crayon-syntax-highlighter
468
+ #: crayon_settings_wp.class.php:810
469
+ #, php-format
470
+ msgid "The selected language with id %s could not be loaded"
471
+ msgstr "ID為 %s 的語言加載失敗"
472
+
473
+ # @ crayon-syntax-highlighter
474
+ #: crayon_settings_wp.class.php:813
475
+ msgid "Show Languages"
476
+ msgstr "顯示全部語言"
477
+
478
+ #: crayon_settings_wp.class.php:815
479
+ msgid "No languages could be parsed."
480
+ msgstr "無法識別語言"
481
+
482
+ # @ crayon-syntax-highlighter
483
+ #: crayon_settings_wp.class.php:826 crayon_settings_wp.class.php:877
484
+ msgid "ID"
485
+ msgstr "ID"
486
+
487
+ # @ crayon-syntax-highlighter
488
+ #: crayon_settings_wp.class.php:826
489
+ msgid "Name"
490
+ msgstr "語言"
491
+
492
+ # @ crayon-syntax-highlighter
493
+ #: crayon_settings_wp.class.php:826 crayon_settings_wp.class.php:1182
494
+ msgid "Version"
495
+ msgstr "版本"
496
+
497
+ #: crayon_settings_wp.class.php:826
498
+ msgid "File Extensions"
499
+ msgstr "擴展名"
500
+
501
+ #: crayon_settings_wp.class.php:826
502
+ msgid "Aliases"
503
+ msgstr "別名"
504
+
505
+ # @ crayon-syntax-highlighter
506
+ #: crayon_settings_wp.class.php:826
507
+ msgid "State"
508
+ msgstr "狀態"
509
+
510
+ #: crayon_settings_wp.class.php:841
511
+ msgid ""
512
+ "Languages that have the same extension as their name don't need to "
513
+ "explicitly map extensions."
514
+ msgstr ""
515
+
516
+ #: crayon_settings_wp.class.php:843
517
+ msgid "No languages could be found."
518
+ msgstr "沒有找到任何語言"
519
+
520
+ # @ crayon-syntax-highlighter
521
+ #: crayon_settings_wp.class.php:850
522
+ msgid "Show Crayon Posts"
523
+ msgstr "顯示已使用代碼高亮的文章"
524
+
525
+ # @ crayon-syntax-highlighter
526
+ #: crayon_settings_wp.class.php:851
527
+ msgid "Refresh"
528
+ msgstr "重新整理"
529
+
530
+ # @ crayon-syntax-highlighter
531
+ #: crayon_settings_wp.class.php:877
532
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:193
533
+ #: util/theme-editor/theme_editor.php:311
534
+ msgid "Title"
535
+ msgstr "標題"
536
+
537
+ # @ crayon-syntax-highlighter
538
+ #: crayon_settings_wp.class.php:877
539
+ msgid "Posted"
540
+ msgstr "發表時間"
541
+
542
+ # @ crayon-syntax-highlighter
543
+ #: crayon_settings_wp.class.php:877
544
+ msgid "Modifed"
545
+ msgstr "修改時間"
546
+
547
+ # @ crayon-syntax-highlighter
548
+ #: crayon_settings_wp.class.php:877
549
+ msgid "Contains Legacy Tags?"
550
+ msgstr "是否存在老式標簽"
551
+
552
+ # @ crayon-syntax-highlighter
553
+ #: crayon_settings_wp.class.php:992
554
+ msgid "Edit"
555
+ msgstr "編輯"
556
+
557
+ # @ crayon-syntax-highlighter
558
+ #: crayon_settings_wp.class.php:992 util/theme-editor/theme_editor.php:199
559
+ msgid "Duplicate"
560
+ msgstr "拷貝"
561
+
562
+ # @ crayon-syntax-highlighter
563
+ #: crayon_settings_wp.class.php:992
564
+ msgid "Submit"
565
+ msgstr "提交"
566
+
567
+ # @ crayon-syntax-highlighter
568
+ #: crayon_settings_wp.class.php:993 util/theme-editor/theme_editor.php:196
569
+ msgid "Delete"
570
+ msgstr "刪除"
571
+
572
+ # @ crayon-syntax-highlighter
573
+ #: crayon_settings_wp.class.php:995
574
+ msgid "Loading..."
575
+ msgstr "載入中"
576
+
577
+ # @ crayon-syntax-highlighter
578
+ #: crayon_settings_wp.class.php:997
579
+ msgid "Duplicate a Stock Theme into a User Theme to allow editing."
580
+ msgstr "編輯主題前必須拷貝一個預設主題為自定義主題"
581
+
582
+ # @ crayon-syntax-highlighter
583
+ #: crayon_settings_wp.class.php:1008
584
+ #, php-format
585
+ msgid ""
586
+ "Change the %1$sfallback language%2$s to change the sample code or %3$schange "
587
+ "it manually%4$s. Lines 5-7 are marked."
588
+ msgstr ""
589
+ "%1$s修改默認語言%2$s 會顯示不同的示例代碼,您也可以 %3$s手動修改%4$s 示例代"
590
+ "碼;5-7 行為關鍵行。"
591
+
592
+ # @ crayon-syntax-highlighter
593
+ #: crayon_settings_wp.class.php:1015
594
+ msgid "Enable Live Preview"
595
+ msgstr "允許即時預覽"
596
+
597
+ # @ crayon-syntax-highlighter
598
+ #: crayon_settings_wp.class.php:1017
599
+ msgid "Enqueue themes in the header (more efficient)."
600
+ msgstr "在頭部就加載主題(推薦)"
601
+
602
+ # @ crayon-syntax-highlighter
603
+ #: crayon_settings_wp.class.php:1020
604
+ #, php-format
605
+ msgid "The selected theme with id %s could not be loaded"
606
+ msgstr "ID為 %s 的主題加載失敗"
607
+
608
+ # @ crayon-syntax-highlighter
609
+ #: crayon_settings_wp.class.php:1035
610
+ msgid "Custom Font Size"
611
+ msgstr "字體大小"
612
+
613
+ # @ crayon-syntax-highlighter
614
+ #: crayon_settings_wp.class.php:1037
615
+ msgid "Line Height"
616
+ msgstr "行高"
617
+
618
+ # @ crayon-syntax-highlighter
619
+ #: crayon_settings_wp.class.php:1042
620
+ #, php-format
621
+ msgid "The selected font with id %s could not be loaded"
622
+ msgstr "ID為 %s 的字體加載失敗"
623
+
624
+ # @ crayon-syntax-highlighter
625
+ #: crayon_settings_wp.class.php:1048
626
+ msgid "Enqueue fonts in the header (more efficient)."
627
+ msgstr "在頭部就加載字體(推薦)"
628
+
629
+ # @ crayon-syntax-highlighter
630
+ #: crayon_settings_wp.class.php:1053
631
+ msgid "Enable plain code view and display"
632
+ msgstr "允許純文本顯示代碼且顯示方式為"
633
+
634
+ # @ crayon-syntax-highlighter
635
+ #: crayon_settings_wp.class.php:1056
636
+ msgid "Enable plain code toggling"
637
+ msgstr "允許切換純文本顯示代碼"
638
+
639
+ # @ crayon-syntax-highlighter
640
+ #: crayon_settings_wp.class.php:1057
641
+ msgid "Show the plain code by default"
642
+ msgstr "默認純文本顯示代碼"
643
+
644
+ # @ crayon-syntax-highlighter
645
+ #: crayon_settings_wp.class.php:1058
646
+ msgid "Enable code copy/paste"
647
+ msgstr "允許代碼拷貝/粘貼"
648
+
649
+ # @ crayon-syntax-highlighter
650
+ #: crayon_settings_wp.class.php:1060
651
+ msgid "Enable opening code in a window"
652
+ msgstr "允許在新窗口中顯示代碼"
653
+
654
+ # @ crayon-syntax-highlighter
655
+ #: crayon_settings_wp.class.php:1061
656
+ msgid "Always display scrollbars"
657
+ msgstr "總是顯示滾動條"
658
+
659
+ #: crayon_settings_wp.class.php:1062
660
+ msgid "Minimize code"
661
+ msgstr "最小化代碼框"
662
+
663
+ # @ crayon-syntax-highlighter
664
+ #: crayon_settings_wp.class.php:1063
665
+ msgid "Expand code beyond page borders on mouseover"
666
+ msgstr "鼠標經過時,即使超出頁面邊界也展開代碼"
667
+
668
+ # @ crayon-syntax-highlighter
669
+ #: crayon_settings_wp.class.php:1064
670
+ msgid "Enable code expanding toggling when possible"
671
+ msgstr "可能時允許代碼折疊"
672
+
673
+ # @ crayon-syntax-highlighter
674
+ #: crayon_settings_wp.class.php:1067
675
+ msgid "Decode HTML entities in code"
676
+ msgstr "在代碼中進行 HTML 轉義"
677
+
678
+ # @ crayon-syntax-highlighter
679
+ #: crayon_settings_wp.class.php:1069
680
+ msgid "Decode HTML entities in attributes"
681
+ msgstr "在屬性中進行 HTML 轉義"
682
+
683
+ # @ crayon-syntax-highlighter
684
+ #: crayon_settings_wp.class.php:1071
685
+ msgid "Remove whitespace surrounding the shortcode content"
686
+ msgstr "刪除短代碼周圍的空白"
687
+
688
+ # @ crayon-syntax-highlighter
689
+ #: crayon_settings_wp.class.php:1073
690
+ msgid "Remove &lt;code&gt; tags surrounding the shortcode content"
691
+ msgstr "刪除短代碼周圍&lt;code&gt;標簽"
692
+
693
+ # @ crayon-syntax-highlighter
694
+ #: crayon_settings_wp.class.php:1074
695
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
696
+ msgstr "允許多重語言高亮使用分隔符和標簽"
697
+
698
+ # @ crayon-syntax-highlighter
699
+ #: crayon_settings_wp.class.php:1076
700
+ msgid "Show Mixed Language Icon (+)"
701
+ msgstr "顯示多重語言圖標 (+)"
702
+
703
+ # @ crayon-syntax-highlighter
704
+ #: crayon_settings_wp.class.php:1078
705
+ msgid "Tab size in spaces"
706
+ msgstr "Tab 等於幾個空格"
707
+
708
+ # @ crayon-syntax-highlighter
709
+ #: crayon_settings_wp.class.php:1080
710
+ msgid "Blank lines before code:"
711
+ msgstr "代碼高亮前的空行數:"
712
+
713
+ # @ crayon-syntax-highlighter
714
+ #: crayon_settings_wp.class.php:1082
715
+ msgid "Blank lines after code:"
716
+ msgstr "代碼高亮後的空行數:"
717
+
718
+ # @ crayon-syntax-highlighter
719
+ #: crayon_settings_wp.class.php:1087
720
+ msgid "Capture Inline Tags"
721
+ msgstr "捕獲行內標簽"
722
+
723
+ # @ crayon-syntax-highlighter
724
+ #: crayon_settings_wp.class.php:1088
725
+ msgid "Wrap Inline Tags"
726
+ msgstr "行內標簽自動換行"
727
+
728
+ # @ crayon-syntax-highlighter
729
+ #: crayon_settings_wp.class.php:1089
730
+ msgid "Capture &lt;code&gt; as"
731
+ msgstr "捕獲 &lt;code&gt; 標簽為插件所用"
732
+
733
+ # @ crayon-syntax-highlighter
734
+ #: crayon_settings_wp.class.php:1093
735
+ msgid "Capture `backquotes` as &lt;code&gt;"
736
+ msgstr "捕獲 `反引號` 為 &lt;code&gt; 標簽"
737
+
738
+ # @ crayon-syntax-highlighter
739
+ #: crayon_settings_wp.class.php:1094
740
+ msgid "Capture &lt;pre&gt; tags as Crayons"
741
+ msgstr "捕獲 &lt;pre&gt; 標簽為插件所用"
742
+
743
+ # @ crayon-syntax-highlighter
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 代替且轉換掉老式"
751
+ "標簽。"
752
+
753
+ # @ crayon-syntax-highlighter
754
+ #: crayon_settings_wp.class.php:1097
755
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
756
+ msgstr "使用迷你標簽(如[php][/php])"
757
+
758
+ # @ crayon-syntax-highlighter
759
+ #: crayon_settings_wp.class.php:1098
760
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
761
+ msgstr "捕獲如{php}{/php}形式的行內標簽"
762
+
763
+ # @ crayon-syntax-highlighter
764
+ #: crayon_settings_wp.class.php:1099
765
+ msgid "Enable [plain][/plain] tag."
766
+ msgstr "啟用 [plain][/plain] 標簽"
767
+
768
+ # @ crayon-syntax-highlighter
769
+ #: crayon_settings_wp.class.php:1104
770
+ msgid ""
771
+ "When loading local files and a relative path is given for the URL, use the "
772
+ "absolute path"
773
+ msgstr "當 URL 為相對路徑時,使用的絕對路徑為"
774
+
775
+ # @ crayon-syntax-highlighter
776
+ #: crayon_settings_wp.class.php:1107
777
+ msgid "Followed by your relative URL."
778
+ msgstr "置於相對路徑之前"
779
+
780
+ # @ crayon-syntax-highlighter
781
+ #: crayon_settings_wp.class.php:1114
782
+ msgid "Convert Legacy Tags"
783
+ msgstr "轉換老式標簽"
784
+
785
+ # @ crayon-syntax-highlighter
786
+ #: crayon_settings_wp.class.php:1117
787
+ msgid "No Legacy Tags Found"
788
+ msgstr "暫無老式標簽"
789
+
790
+ # @ crayon-syntax-highlighter
791
+ #: crayon_settings_wp.class.php:1121
792
+ msgid "Encode"
793
+ msgstr "HTML 轉義"
794
+
795
+ # @ crayon-syntax-highlighter
796
+ #: crayon_settings_wp.class.php:1123
797
+ #, php-format
798
+ msgid ""
799
+ "Use %s to separate setting names from values in the &lt;pre&gt; class "
800
+ "attribute"
801
+ msgstr "&lt;pre&gt; 標簽中使用 %s 分割每個屬性與屬性值。"
802
+
803
+ # @ crayon-syntax-highlighter
804
+ #: crayon_settings_wp.class.php:1126
805
+ msgid ""
806
+ "Display the Tag Editor in any TinyMCE instances on the frontend (e.g. "
807
+ "bbPress)"
808
+ msgstr "在前端任何 TinyMCE 編輯器都顯示標簽編輯器(如 bbPress)"
809
+
810
+ # @ crayon-syntax-highlighter
811
+ #: crayon_settings_wp.class.php:1127
812
+ msgid "Display Tag Editor settings on the frontend"
813
+ msgstr "在前端顯示標簽編輯器的設置"
814
+
815
+ # @ crayon-syntax-highlighter
816
+ #: crayon_settings_wp.class.php:1131
817
+ msgid "Clear the cache used to store remote code requests"
818
+ msgstr "清理用於存儲遠程代碼的緩存頻率"
819
+
820
+ # @ crayon-syntax-highlighter
821
+ #: crayon_settings_wp.class.php:1133
822
+ msgid "Clear Now"
823
+ msgstr "立刻清理"
824
+
825
+ # @ crayon-syntax-highlighter
826
+ #: crayon_settings_wp.class.php:1134
827
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
828
+ msgstr "按需加載插件的 CSS 與 JavaScript"
829
+
830
+ # @ crayon-syntax-highlighter
831
+ #: crayon_settings_wp.class.php:1135
832
+ msgid "Disable enqueuing for page templates that may contain The Loop."
833
+ msgstr "不將可能包含Wordpress主循環的頁面模板加入隊列"
834
+
835
+ # @ crayon-syntax-highlighter
836
+ #: crayon_settings_wp.class.php:1136
837
+ msgid "Allow Crayons inside comments"
838
+ msgstr "允許在評論中使用"
839
+
840
+ # @ crayon-syntax-highlighter
841
+ #: crayon_settings_wp.class.php:1137
842
+ msgid "Remove Crayons from excerpts"
843
+ msgstr "文章摘要不啟用代碼高亮"
844
+
845
+ # @ crayon-syntax-highlighter
846
+ #: crayon_settings_wp.class.php:1138
847
+ msgid "Load Crayons only from the main Wordpress query"
848
+ msgstr "只從Wordpress的主查詢中加載Crayon"
849
+
850
+ # @ crayon-syntax-highlighter
851
+ #: crayon_settings_wp.class.php:1139
852
+ msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
853
+ msgstr "使用觸屏設備時禁止鼠標行為(如鼠標經過)"
854
+
855
+ # @ crayon-syntax-highlighter
856
+ #: crayon_settings_wp.class.php:1140
857
+ msgid "Disable animations"
858
+ msgstr "禁止動畫效果"
859
+
860
+ # @ crayon-syntax-highlighter
861
+ #: crayon_settings_wp.class.php:1141
862
+ msgid "Disable runtime stats"
863
+ msgstr "禁止執行時間統計"
864
+
865
+ # @ crayon-syntax-highlighter
866
+ #: crayon_settings_wp.class.php:1147
867
+ msgid "Log errors for individual Crayons"
868
+ msgstr "使用獨立的錯誤日志"
869
+
870
+ # @ crayon-syntax-highlighter
871
+ #: crayon_settings_wp.class.php:1148
872
+ msgid "Log system-wide errors"
873
+ msgstr "啟用系統錯誤日志"
874
+
875
+ # @ crayon-syntax-highlighter
876
+ #: crayon_settings_wp.class.php:1149
877
+ msgid "Display custom message for errors"
878
+ msgstr "自定義錯誤提示"
879
+
880
+ # @ crayon-syntax-highlighter
881
+ #: crayon_settings_wp.class.php:1161
882
+ msgid "Show Log"
883
+ msgstr "顯示日志"
884
+
885
+ # @ crayon-syntax-highlighter
886
+ #: crayon_settings_wp.class.php:1161
887
+ msgid "Hide Log"
888
+ msgstr "隱藏日志"
889
+
890
+ # @ crayon-syntax-highlighter
891
+ #: crayon_settings_wp.class.php:1163
892
+ msgid "Clear Log"
893
+ msgstr "清理日志"
894
+
895
+ # @ crayon-syntax-highlighter
896
+ #: crayon_settings_wp.class.php:1164
897
+ msgid "Email Admin"
898
+ msgstr "發郵件給管理員"
899
+
900
+ # @ crayon-syntax-highlighter
901
+ #: crayon_settings_wp.class.php:1166
902
+ msgid "Email Developer"
903
+ msgstr "發郵件給開發者"
904
+
905
+ # @ crayon-syntax-highlighter
906
+ #: crayon_settings_wp.class.php:1168
907
+ msgid "The log is currently empty."
908
+ msgstr "日志為空,"
909
+
910
+ # @ crayon-syntax-highlighter
911
+ #: crayon_settings_wp.class.php:1170
912
+ msgid "The log file exists and is writable."
913
+ msgstr "日志文件存在且可寫。"
914
+
915
+ # @ crayon-syntax-highlighter
916
+ #: crayon_settings_wp.class.php:1170
917
+ msgid "The log file exists and is not writable."
918
+ msgstr "日志文件存在但不可寫。"
919
+
920
+ # @ crayon-syntax-highlighter
921
+ #: crayon_settings_wp.class.php:1172
922
+ msgid "The log file does not exist and is not writable."
923
+ msgstr "日志文件不存在且不可寫。"
924
+
925
+ # @ crayon-syntax-highlighter
926
+ #: crayon_settings_wp.class.php:1184
927
+ msgid "Developer"
928
+ msgstr "開發者"
929
+
930
+ # @ crayon-syntax-highlighter
931
+ #: crayon_settings_wp.class.php:1185
932
+ msgid "Translators"
933
+ msgstr "翻譯者"
934
+
935
+ # @ crayon-syntax-highlighter
936
+ #: crayon_settings_wp.class.php:1236
937
+ msgid "?"
938
+ msgstr "?"
939
+
940
+ # @ crayon-syntax-highlighter
941
+ #: crayon_settings_wp.class.php:1243 util/theme-editor/theme_editor.php:333
942
+ msgid "Theme Editor"
943
+ msgstr "主題編輯器"
944
+
945
+ # @ crayon-syntax-highlighter
946
+ #: crayon_settings_wp.class.php:1244
947
+ msgid "Donate"
948
+ msgstr "捐助"
949
+
950
+ # @ crayon-syntax-highlighter
951
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:65
952
+ msgid "Add Crayon Code"
953
+ msgstr "插入代碼高亮"
954
+
955
+ # @ crayon-syntax-highlighter
956
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:66
957
+ msgid "Edit Crayon Code"
958
+ msgstr "編輯代碼高亮"
959
+
960
+ # @ crayon-syntax-highlighter
961
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:67
962
+ msgid "Add"
963
+ msgstr "插入"
964
+
965
+ # @ crayon-syntax-highlighter
966
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:68
967
+ #: util/theme-editor/theme_editor.php:349
968
+ msgid "Save"
969
+ msgstr "保存"
970
+
971
+ # @ crayon-syntax-highlighter
972
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:184
973
+ msgid "OK"
974
+ msgstr "確認"
975
+
976
+ # @ crayon-syntax-highlighter
977
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:186
978
+ msgid "Cancel"
979
+ msgstr "取消"
980
+
981
+ # @ crayon-syntax-highlighter
982
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:195
983
+ msgid "A short description"
984
+ msgstr "一段簡短的描述"
985
+
986
+ # @ crayon-syntax-highlighter
987
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:197
988
+ #: util/theme-editor/theme_editor.php:315
989
+ msgid "Inline"
990
+ msgstr "行內"
991
+
992
+ # @ crayon-syntax-highlighter
993
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:199
994
+ msgid "Don't Highlight"
995
+ msgstr "禁止高亮"
996
+
997
+ # @ crayon-syntax-highlighter
998
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:204
999
+ #: util/theme-editor/theme_editor.php:319
1000
+ msgid "Language"
1001
+ msgstr "語言"
1002
+
1003
+ # @ crayon-syntax-highlighter
1004
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:207
1005
+ msgid "Line Range"
1006
+ msgstr "指定顯示的行"
1007
+
1008
+ # @ crayon-syntax-highlighter
1009
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:208
1010
+ msgid "(e.g. 3-5 or 3)"
1011
+ msgstr "(如 3-5 或 3)"
1012
+
1013
+ # @ crayon-syntax-highlighter
1014
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:209
1015
+ msgid "Marked Lines"
1016
+ msgstr "關鍵行"
1017
+
1018
+ # @ crayon-syntax-highlighter
1019
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:210
1020
+ msgid "(e.g. 1,2,3-5)"
1021
+ msgstr "(如 1,2,3-5)"
1022
+
1023
+ # @ crayon-syntax-highlighter
1024
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:219
1025
+ msgid "Clear"
1026
+ msgstr "清理"
1027
+
1028
+ # @ crayon-syntax-highlighter
1029
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:223
1030
+ msgid "Paste your code here, or type it in manually."
1031
+ msgstr "粘貼代碼到這裡,或者手工輸入。"
1032
+
1033
+ # @ crayon-syntax-highlighter
1034
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:227
1035
+ msgid "URL"
1036
+ msgstr "URL"
1037
+
1038
+ # @ crayon-syntax-highlighter
1039
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:229
1040
+ msgid "Relative local path or absolute URL"
1041
+ msgstr "相對路徑或絕對路徑 URL"
1042
+
1043
+ # @ crayon-syntax-highlighter
1044
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:232
1045
+ msgid ""
1046
+ "If the URL fails to load, the code above will be shown instead. If no code "
1047
+ "exists, an error is shown."
1048
+ msgstr ""
1049
+ "如果 URL 不能加載,將會使用下面的代碼代替顯示,如果也沒有代碼,則顯示錯誤提"
1050
+ "示。"
1051
+
1052
+ # @ crayon-syntax-highlighter
1053
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:234
1054
+ #, php-format
1055
+ msgid ""
1056
+ "If a relative local path is given it will be appended to %s - which is "
1057
+ "defined in %sCrayon &gt; Settings &gt; Files%s."
1058
+ msgstr ""
1059
+ "如果是相對路徑,則前面的路徑將是 %s (在 %sCrayon &gt; Settings &gt; Files%s "
1060
+ "裡面設置)"
1061
+
1062
+ # @ crayon-syntax-highlighter
1063
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:261
1064
+ msgid "Change the following settings to override their global values."
1065
+ msgstr "以下設置優先順序高於默認設置,"
1066
+
1067
+ # @ crayon-syntax-highlighter
1068
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:263
1069
+ msgid "Only changes (shown yellow) are applied."
1070
+ msgstr "只有背景色為黃色的選項優先級會高於默認設置,"
1071
+
1072
+ # @ crayon-syntax-highlighter
1073
+ #: util/tag-editor/crayon_tag_editor_wp.class.php:265
1074
+ #, php-format
1075
+ msgid ""
1076
+ "Future changes to the global settings under %sCrayon &gt; Settings%s won't "
1077
+ "affect overridden settings."
1078
+ msgstr "其它設置會沿用默認設置(%s點擊前往設置%s)。"
1079
+
1080
+ # @ crayon-syntax-highlighter
1081
+ #: util/theme-editor/theme_editor.php:192
1082
+ msgid "User-Defined Theme"
1083
+ msgstr "自定義主題"
1084
+
1085
+ # @ crayon-syntax-highlighter
1086
+ #: util/theme-editor/theme_editor.php:193
1087
+ msgid "Stock Theme"
1088
+ msgstr "預設主題"
1089
+
1090
+ # @ crayon-syntax-highlighter
1091
+ #: util/theme-editor/theme_editor.php:194
1092
+ msgid "Success!"
1093
+ msgstr "成功!"
1094
+
1095
+ # @ crayon-syntax-highlighter
1096
+ #: util/theme-editor/theme_editor.php:195
1097
+ msgid "Failed!"
1098
+ msgstr "失敗!"
1099
+
1100
+ # @ crayon-syntax-highlighter
1101
+ #: util/theme-editor/theme_editor.php:197
1102
+ #, php-format
1103
+ msgid "Are you sure you want to delete the \"%s\" theme?"
1104
+ msgstr "確認刪除「%s」主題?"
1105
+
1106
+ # @ crayon-syntax-highlighter
1107
+ #: util/theme-editor/theme_editor.php:198
1108
+ msgid "Delete failed!"
1109
+ msgstr "刪除失敗!"
1110
+
1111
+ # @ crayon-syntax-highlighter
1112
+ #: util/theme-editor/theme_editor.php:200
1113
+ msgid "New Name"
1114
+ msgstr "自定義主題名"
1115
+
1116
+ # @ crayon-syntax-highlighter
1117
+ #: util/theme-editor/theme_editor.php:201
1118
+ msgid "Duplicate failed!"
1119
+ msgstr "拷貝失敗!"
1120
+
1121
+ # @ crayon-syntax-highlighter
1122
+ #: util/theme-editor/theme_editor.php:202
1123
+ msgid "Please check the log for details."
1124
+ msgstr "更多信息請查看日志。"
1125
+
1126
+ # @ crayon-syntax-highlighter
1127
+ #: util/theme-editor/theme_editor.php:203
1128
+ msgid "Are you sure you want to discard all changes?"
1129
+ msgstr "確認放棄所有的修改?"
1130
+
1131
+ # @ crayon-syntax-highlighter
1132
+ #: util/theme-editor/theme_editor.php:204
1133
+ #, php-format
1134
+ msgid "Editing Theme: %s"
1135
+ msgstr "編輯中的主題:%s"
1136
+
1137
+ # @ crayon-syntax-highlighter
1138
+ #: util/theme-editor/theme_editor.php:205
1139
+ #, php-format
1140
+ msgid "Creating Theme: %s"
1141
+ msgstr "創建中的主題:%s"
1142
+
1143
+ # @ crayon-syntax-highlighter
1144
+ #: util/theme-editor/theme_editor.php:206
1145
+ msgid "Submit Your Theme"
1146
+ msgstr "提交您的主題"
1147
+
1148
+ #: util/theme-editor/theme_editor.php:207
1149
+ msgid ""
1150
+ "Submit your User Theme for inclusion as a Stock Theme in Crayon! This will "
1151
+ "email me your theme - make sure it's considerably different from the stock "
1152
+ "themes :)"
1153
+ msgstr ""
1154
+ "把你的自定義主題加入Crayon官方主題中!這會給我發郵件,請確保你的主題和已有的"
1155
+ "不一樣 :)"
1156
+
1157
+ # @ crayon-syntax-highlighter
1158
+ #: util/theme-editor/theme_editor.php:208
1159
+ msgid "Message"
1160
+ msgstr "說明"
1161
+
1162
+ # @ crayon-syntax-highlighter
1163
+ #: util/theme-editor/theme_editor.php:209
1164
+ msgid "Please include this theme in Crayon!"
1165
+ msgstr "請求納入預設主題!"
1166
+
1167
+ # @ crayon-syntax-highlighter
1168
+ #: util/theme-editor/theme_editor.php:210
1169
+ msgid "Submit was successful."
1170
+ msgstr "提交成功"
1171
+
1172
+ # @ crayon-syntax-highlighter
1173
+ #: util/theme-editor/theme_editor.php:211
1174
+ msgid "Submit failed!"
1175
+ msgstr "提交失敗!"
1176
+
1177
+ # @ crayon-syntax-highlighter
1178
+ #: util/theme-editor/theme_editor.php:291
1179
+ msgid "Information"
1180
+ msgstr "基本信息"
1181
+
1182
+ # @ crayon-syntax-highlighter
1183
+ #: util/theme-editor/theme_editor.php:292
1184
+ msgid "Highlighting"
1185
+ msgstr "代碼高亮"
1186
+
1187
+ # @ crayon-syntax-highlighter
1188
+ #: util/theme-editor/theme_editor.php:293
1189
+ msgid "Frame"
1190
+ msgstr "邊框"
1191
+
1192
+ # @ crayon-syntax-highlighter
1193
+ #: util/theme-editor/theme_editor.php:295
1194
+ msgid "Line Numbers"
1195
+ msgstr "行編號"
1196
+
1197
+ # @ crayon-syntax-highlighter
1198
+ #: util/theme-editor/theme_editor.php:298
1199
+ msgid "Background"
1200
+ msgstr "背景色"
1201
+
1202
+ # @ crayon-syntax-highlighter
1203
+ #: util/theme-editor/theme_editor.php:299
1204
+ msgid "Text"
1205
+ msgstr "文字"
1206
+
1207
+ # @ crayon-syntax-highlighter
1208
+ #: util/theme-editor/theme_editor.php:300
1209
+ msgid "Border"
1210
+ msgstr "邊框"
1211
+
1212
+ # @ crayon-syntax-highlighter
1213
+ #: util/theme-editor/theme_editor.php:301
1214
+ msgid "Top Border"
1215
+ msgstr "頂部邊框"
1216
+
1217
+ # @ crayon-syntax-highlighter
1218
+ #: util/theme-editor/theme_editor.php:302
1219
+ msgid "Bottom Border"
1220
+ msgstr "底部邊框"
1221
+
1222
+ # @ crayon-syntax-highlighter
1223
+ #: util/theme-editor/theme_editor.php:303
1224
+ msgid "Right Border"
1225
+ msgstr "右邊框"
1226
+
1227
+ # @ crayon-syntax-highlighter
1228
+ #: util/theme-editor/theme_editor.php:305
1229
+ msgid "Hover"
1230
+ msgstr "懸停"
1231
+
1232
+ # @ crayon-syntax-highlighter
1233
+ #: util/theme-editor/theme_editor.php:306
1234
+ msgid "Active"
1235
+ msgstr "激活"
1236
+
1237
+ # @ crayon-syntax-highlighter
1238
+ #: util/theme-editor/theme_editor.php:307
1239
+ msgid "Pressed"
1240
+ msgstr "已訪問"
1241
+
1242
+ # @ crayon-syntax-highlighter
1243
+ #: util/theme-editor/theme_editor.php:308
1244
+ msgid "Pressed & Hover"
1245
+ msgstr "已訪問 & 懸停"
1246
+
1247
+ # @ crayon-syntax-highlighter
1248
+ #: util/theme-editor/theme_editor.php:309
1249
+ msgid "Pressed & Active"
1250
+ msgstr "已訪問 & 激活"
1251
+
1252
+ # @ crayon-syntax-highlighter
1253
+ #: util/theme-editor/theme_editor.php:312
1254
+ msgid "Buttons"
1255
+ msgstr "按鈕"
1256
+
1257
+ # @ crayon-syntax-highlighter
1258
+ #: util/theme-editor/theme_editor.php:314
1259
+ msgid "Normal"
1260
+ msgstr "一般"
1261
+
1262
+ # @ crayon-syntax-highlighter
1263
+ #: util/theme-editor/theme_editor.php:316
1264
+ msgid "Striped"
1265
+ msgstr "條紋"
1266
+
1267
+ # @ crayon-syntax-highlighter
1268
+ #: util/theme-editor/theme_editor.php:317
1269
+ msgid "Marked"
1270
+ msgstr "關鍵"
1271
+
1272
+ # @ crayon-syntax-highlighter
1273
+ #: util/theme-editor/theme_editor.php:318
1274
+ msgid "Striped & Marked"
1275
+ msgstr "條紋 & 關鍵"
1276
+
1277
+ # @ crayon-syntax-highlighter
1278
+ #: util/theme-editor/theme_editor.php:348
1279
+ msgid "Back To Settings"
1280
+ msgstr "返回設置"
1281
+
1282
+ # @ crayon-syntax-highlighter
1283
+ #: util/theme-editor/theme_editor.php:387
1284
+ msgid "Comment"
1285
+ msgstr "注釋"
1286
+
1287
+ # @ crayon-syntax-highlighter
1288
+ #: util/theme-editor/theme_editor.php:388
1289
+ msgid "String"
1290
+ msgstr "字元串"
1291
+
1292
+ # @ crayon-syntax-highlighter
1293
+ #: util/theme-editor/theme_editor.php:389
1294
+ msgid "Preprocessor"
1295
+ msgstr "預處理器"
1296
+
1297
+ # @ crayon-syntax-highlighter
1298
+ #: util/theme-editor/theme_editor.php:390
1299
+ msgid "Tag"
1300
+ msgstr "標簽"
1301
+
1302
+ # @ crayon-syntax-highlighter
1303
+ #: util/theme-editor/theme_editor.php:391
1304
+ msgid "Keyword"
1305
+ msgstr "關鍵字"
1306
+
1307
+ # @ crayon-syntax-highlighter
1308
+ #: util/theme-editor/theme_editor.php:392
1309
+ msgid "Statement"
1310
+ msgstr "語句"
1311
+
1312
+ # @ crayon-syntax-highlighter
1313
+ #: util/theme-editor/theme_editor.php:393
1314
+ msgid "Reserved"
1315
+ msgstr "保留字"
1316
+
1317
+ # @ crayon-syntax-highlighter
1318
+ #: util/theme-editor/theme_editor.php:394
1319
+ msgid "Type"
1320
+ msgstr "類型"
1321
+
1322
+ # @ crayon-syntax-highlighter
1323
+ #: util/theme-editor/theme_editor.php:395
1324
+ msgid "Modifier"
1325
+ msgstr "修飾符"
1326
+
1327
+ # @ crayon-syntax-highlighter
1328
+ #: util/theme-editor/theme_editor.php:396
1329
+ msgid "Identifier"
1330
+ msgstr "標識"
1331
+
1332
+ # @ crayon-syntax-highlighter
1333
+ #: util/theme-editor/theme_editor.php:397
1334
+ msgid "Entity"
1335
+ msgstr "實例"
1336
+
1337
+ # @ crayon-syntax-highlighter
1338
+ #: util/theme-editor/theme_editor.php:398
1339
+ msgid "Variable"
1340
+ msgstr "變量"
1341
+
1342
+ # @ crayon-syntax-highlighter
1343
+ #: util/theme-editor/theme_editor.php:399
1344
+ msgid "Constant"
1345
+ msgstr "常量"
1346
+
1347
+ # @ crayon-syntax-highlighter
1348
+ #: util/theme-editor/theme_editor.php:400
1349
+ msgid "Operator"
1350
+ msgstr "操作符"
1351
+
1352
+ # @ crayon-syntax-highlighter
1353
+ #: util/theme-editor/theme_editor.php:401
1354
+ msgid "Symbol"
1355
+ msgstr "符號"
1356
+
1357
+ # @ crayon-syntax-highlighter
1358
+ #: util/theme-editor/theme_editor.php:402
1359
+ msgid "Notation"
1360
+ msgstr "記號"
1361
+
1362
+ # @ crayon-syntax-highlighter
1363
+ #: util/theme-editor/theme_editor.php:403
1364
+ msgid "Faded"
1365
+ msgstr "褪色"
1366
+
1367
+ # @ crayon-syntax-highlighter
1368
+ #: util/theme-editor/theme_editor.php:404
1369
+ msgid "HTML"
1370
+ msgstr "HTML"
1371
+
1372
+ # @ crayon-syntax-highlighter
1373
+ #: util/theme-editor/theme_editor.php:405
1374
+ msgid "Unhighlighted"
1375
+ msgstr "無高亮"
1376
+
1377
+ # @ crayon-syntax-highlighter
1378
+ #: util/theme-editor/theme_editor.php:539
1379
+ msgid "(Used for Copy/Paste)"
1380
+ msgstr "(拷貝/粘貼時的樣式)"
util/lines_to_array.rb ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env ruby
2
+ # Converts lines from a file into an array of strings.
3
+ if ARGV.size == 0
4
+ puts "lines_to_array.rb <file>"
5
+ else
6
+ lines = File.readlines(ARGV[0])
7
+ lines = lines.map do |line|
8
+ "'" + line.strip + "'"
9
+ end
10
+ puts '[' + lines.join(',') + ']'
11
+ end
util/lines_to_regex.rb ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env ruby
2
+ # Converts lines from a file into an alternation of regex.
3
+ if ARGV.size == 0
4
+ puts "lines_to_array.rb <file>"
5
+ else
6
+ lines = File.readlines(ARGV[0])
7
+ lines = lines.map do |line|
8
+ line.strip
9
+ end
10
+ puts '/\\b(' + lines.join('|') + ')\\b/'
11
+ end
util/sample/dws.txt ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ type
2
+ THelloWorld = class
3
+ procedure Put; // you can also implement out of line
4
+ begin
5
+ PrintLn('Hello, World!');
6
+ end
7
+ end;
8
+
9
+ var HelloWorld := new THelloWorld; // strong typing, inferred
10
+
11
+ HelloWorld.Put;
12
+
13
+ // no need to release objects thanks to automatic memory management
util/sample/ini.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ ; last modified 1 April 2001 by John Doe
2
+ [owner]
3
+ name=John Doe
4
+ organization=Acme Widgets Inc.
5
+
6
+ [database]
7
+ ; use IP address in case network name resolution is not working
8
+ server=192.0.2.62
9
+ port=143
10
+ file="payroll.dat"
util/sample/rust.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ /* The branches in this function exhibit Rust's optional implicit return
2
+ values, which can be utilized where a more "functional" style is preferred.
3
+ Unlike C++ and related languages, Rust's `if` construct is an expression
4
+ rather than a statement, and thus has a return value of its own. */
5
+ fn recursive_factorial(n: int) -> int {
6
+ if n <= 1 { 1 }
7
+ else { n * recursive_factorial(n-1) }
8
+ }
util/sample/swift.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ class Human {
2
+ var age = 0
3
+ func birthday() {
4
+ age++;
5
+ println('Happy Birthday!');
6
+ }
7
+ }
util/sample/zsh.txt ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ parse_options()
2
+ {
3
+ o_port=(-p 9999)
4
+ o_root=(-r WWW)
5
+ o_log=(-d ZWS.log)
6
+
7
+ zparseopts -K -- p:=o_port r:=o_root l:=o_log h=o_help
8
+ if [[ $? != 0 || "$o_help" != "" ]]; then
9
+ echo Usage: $(basename "$0") "[-p PORT] [-r DIRECTORY]"
10
+ exit 1
11
+ fi
12
+
13
+ port=$o_port[2]
14
+ root=$o_root[2]
15
+ log=$o_log[2]
16
+
17
+ if [[ $root[1] != '/' ]]; then root="$PWD/$root"; fi
18
+ }
19
+ # now use the function:
20
+ parse_options $*
util/tag-editor/crayon_tag_editor.js CHANGED
@@ -26,10 +26,31 @@
26
  // CSS
27
  var dialog, code, clear, submit, cancel;
28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  base.init = function () {
30
  s = CrayonTagEditorSettings;
31
  gs = CrayonSyntaxSettings;
32
  util = CrayonUtil;
 
 
33
  };
34
 
35
  base.bind = function (buttonCls) {
@@ -43,28 +64,8 @@
43
  var $wrapper = $('<a class="crayon-tag-editor-button-wrapper"></a>').attr('href', s.content_css);
44
  $button.after($wrapper);
45
  $wrapper.append($button);
46
-
47
- $wrapper.colorbox({
48
- inline: true,
49
- width: 690,
50
- height: '90%',
51
- closeButton: false,
52
- fixed: true,
53
- transition: 'none',
54
- className: 'crayon-colorbox',
55
- onOpen: function () {
56
- $(this.outer).prepend($(s.bar_content));
57
- },
58
- onComplete: function () {
59
- $(s.code_css).focus();
60
- },
61
- onCleanup: function () {
62
- $(s.bar).prepend($(s.bar_content));
63
- }
64
- });
65
  });
66
-
67
- base.loadDialog();
68
  };
69
 
70
  base.hide = function () {
@@ -73,11 +74,12 @@
73
  };
74
 
75
  // XXX Loads dialog contents
76
- base.loadDialog = function () {
77
  // Loaded once url is given
78
  if (!loaded) {
79
  loaded = true;
80
  } else {
 
81
  return;
82
  }
83
  // Load the editor content
@@ -175,11 +177,24 @@
175
  $(this).change(setting_change);
176
  $(this).keyup(setting_change);
177
  });
 
178
  });
179
  };
180
 
181
  // XXX Displays the dialog.
182
  base.showDialog = function (args) {
 
 
 
 
 
 
 
 
 
 
 
 
183
  args = $.extend({
184
  insert: null,
185
  edit: null,
26
  // CSS
27
  var dialog, code, clear, submit, cancel;
28
 
29
+ var colorboxSettings = {
30
+ inline: true,
31
+ width: 690,
32
+ height: '90%',
33
+ closeButton: false,
34
+ fixed: true,
35
+ transition: 'none',
36
+ className: 'crayon-colorbox',
37
+ onOpen: function () {
38
+ $(this.outer).prepend($(s.bar_content));
39
+ },
40
+ onComplete: function () {
41
+ $(s.code_css).focus();
42
+ },
43
+ onCleanup: function () {
44
+ $(s.bar).prepend($(s.bar_content));
45
+ }
46
+ };
47
+
48
  base.init = function () {
49
  s = CrayonTagEditorSettings;
50
  gs = CrayonSyntaxSettings;
51
  util = CrayonUtil;
52
+ // This allows us to call $.colorbox and reload without needing a button click.
53
+ colorboxSettings.href = s.content_css;
54
  };
55
 
56
  base.bind = function (buttonCls) {
64
  var $wrapper = $('<a class="crayon-tag-editor-button-wrapper"></a>').attr('href', s.content_css);
65
  $button.after($wrapper);
66
  $wrapper.append($button);
67
+ $wrapper.colorbox(colorboxSettings);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  });
 
 
69
  };
70
 
71
  base.hide = function () {
74
  };
75
 
76
  // XXX Loads dialog contents
77
+ base.loadDialog = function (callback) {
78
  // Loaded once url is given
79
  if (!loaded) {
80
  loaded = true;
81
  } else {
82
+ callback && callback();
83
  return;
84
  }
85
  // Load the editor content
177
  $(this).change(setting_change);
178
  $(this).keyup(setting_change);
179
  });
180
+ callback && callback();
181
  });
182
  };
183
 
184
  // XXX Displays the dialog.
185
  base.showDialog = function (args) {
186
+ var wasLoaded = loaded;
187
+ base.loadDialog(function () {
188
+ if (!wasLoaded) {
189
+ // Forcefully load the colorbox. Otherwise it populates the content after opening the window and
190
+ // never renders.
191
+ $.colorbox(colorboxSettings);
192
+ }
193
+ base._showDialog(args);
194
+ });
195
+ };
196
+
197
+ base._showDialog = function (args) {
198
  args = $.extend({
199
  insert: null,
200
  edit: null,
util/tag-editor/crayon_tag_editor_wp.class.php CHANGED
@@ -49,8 +49,10 @@ class CrayonTagEditorWP {
49
  'hl_css' => '#crayon-highlight',
50
  'switch_html' => '#content-html',
51
  'switch_tmce' => '#content-tmce',
 
52
  'tinymce_button' => 'a.mce_crayon_tinymce,.mce-i-crayon_tinymce',
53
  'tinymce_button_unique' => 'mce_crayon_tinymce',
 
54
  'submit_css' => '#crayon-te-ok',
55
  'cancel_css' => '#crayon-te-cancel',
56
  'content_css' => '#crayon-te-content',
@@ -120,7 +122,7 @@ class CrayonTagEditorWP {
120
  return $plugin_array;
121
  }
122
 
123
- // The remaining functions are for priting
124
 
125
  public static function select_resource($id, $resources, $current, $set_class = TRUE) {
126
  $id = CrayonSettings::PREFIX . $id;
49
  'hl_css' => '#crayon-highlight',
50
  'switch_html' => '#content-html',
51
  'switch_tmce' => '#content-tmce',
52
+ 'tinymce_button_generic' => '.mce-btn',
53
  'tinymce_button' => 'a.mce_crayon_tinymce,.mce-i-crayon_tinymce',
54
  'tinymce_button_unique' => 'mce_crayon_tinymce',
55
+ 'tinymce_highlight' => 'mce-active',
56
  'submit_css' => '#crayon-te-ok',
57
  'cancel_css' => '#crayon-te-cancel',
58
  'content_css' => '#crayon-te-content',
122
  return $plugin_array;
123
  }
124
 
125
+ // The remaining functions are for displayed output.
126
 
127
  public static function select_resource($id, $resources, $current, $set_class = TRUE) {
128
  $id = CrayonSettings::PREFIX . $id;
util/tag-editor/crayon_tinymce.js CHANGED
@@ -15,11 +15,7 @@
15
  // var wasHighlighted = false;
16
 
17
  base.setHighlight = function (highlight) {
18
- if (highlight) {
19
- $(s.tinymce_button).addClass('mce_crayon_tinymce_highlight');
20
- } else {
21
- $(s.tinymce_button).removeClass('mce_crayon_tinymce_highlight');
22
- }
23
  isHighlighted = highlight;
24
  };
25
 
@@ -40,10 +36,6 @@
40
  return false;
41
  };
42
 
43
- base.init = function (button) {
44
- // TODO
45
- };
46
-
47
  base.loadTinyMCE = function () {
48
  var version = parseInt(tinymce.majorVersion);
49
  if (!isNaN(version) && version <= 3) {
@@ -59,21 +51,14 @@
59
  tinymce.PluginManager.add(name, function (ed, url) {
60
  // TODO(aramk) This is called twice for some reason.
61
  ed.on('init', function () {
 
62
  if (isInit) {
63
  return;
64
  }
65
- ed.dom.loadCSS(url + '/crayon_te.css');
66
  $(s.tinymce_button).parent().addClass(s.tinymce_button_unique);
67
  CrayonTagEditor.bind('.' + s.tinymce_button_unique);
68
-
69
  // Remove all selected pre tags
70
- var content = $(ed.getContent());
71
- var wrapper = $('<div>');
72
- content.each(function () {
73
- $(this).removeClass(s.css_selected);
74
- wrapper.append($(this).clone());
75
- });
76
- ed.setContent(wrapper.html());
77
  isInit = true;
78
  });
79
 
15
  // var wasHighlighted = false;
16
 
17
  base.setHighlight = function (highlight) {
18
+ $(s.tinymce_button).closest(s.tinymce_button_generic).toggleClass(s.tinymce_highlight, highlight);
 
 
 
 
19
  isHighlighted = highlight;
20
  };
21
 
36
  return false;
37
  };
38
 
 
 
 
 
39
  base.loadTinyMCE = function () {
40
  var version = parseInt(tinymce.majorVersion);
41
  if (!isNaN(version) && version <= 3) {
51
  tinymce.PluginManager.add(name, function (ed, url) {
52
  // TODO(aramk) This is called twice for some reason.
53
  ed.on('init', function () {
54
+ ed.dom.loadCSS(url + '/crayon_te.css');
55
  if (isInit) {
56
  return;
57
  }
 
58
  $(s.tinymce_button).parent().addClass(s.tinymce_button_unique);
59
  CrayonTagEditor.bind('.' + s.tinymce_button_unique);
 
60
  // Remove all selected pre tags
61
+ $('.' + s.css_selected, ed.getContent()).removeClass(s.css_selected);
 
 
 
 
 
 
62
  isInit = true;
63
  });
64
 
util/theme-editor/theme_editor.php CHANGED
@@ -219,15 +219,12 @@ class CrayonThemeEditorWP {
219
  self::initSettings();
220
  $path = dirname(dirname(__FILE__));
221
 
222
- if (!CRAYON_MINIFY) {
223
- wp_enqueue_script('cssjson_js', plugins_url(CRAYON_CSSJSON_JS, $path), $CRAYON_VERSION);
224
- }
225
-
226
  wp_enqueue_script('jquery_colorpicker_js', plugins_url(CRAYON_JS_JQUERY_COLORPICKER, $path), array('jquery', 'jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-dialog', 'jquery-ui-position', 'jquery-ui-mouse', 'jquery-ui-slider', 'jquery-ui-droppable', 'jquery-ui-selectable', 'jquery-ui-resizable'), $CRAYON_VERSION);
227
  wp_enqueue_script('jquery_tinycolor_js', plugins_url(CRAYON_JS_TINYCOLOR, $path), array(), $CRAYON_VERSION);
228
 
229
  if (CRAYON_MINIFY) {
230
- wp_enqueue_script('crayon_theme_editor', plugins_url(CRAYON_THEME_EDITOR_JS, $path), array('jquery', 'crayon_js', 'crayon_admin_js', 'jquery_colorpicker_js', 'jquery_tinycolor_js'), $CRAYON_VERSION);
231
  } else {
232
  wp_enqueue_script('crayon_theme_editor', plugins_url(CRAYON_THEME_EDITOR_JS, $path), array('jquery', 'crayon_util_js', 'crayon_admin_js', 'cssjson_js', 'jquery_colorpicker_js', 'jquery_tinycolor_js'), $CRAYON_VERSION);
233
  }
@@ -675,7 +672,7 @@ class CrayonThemeEditorWP {
675
  echo -3;
676
  exit();
677
  }
678
-
679
  if ($oldPath == $newPath && $allow_edit === FALSE) {
680
  // Don't allow editing
681
  echo -4;
219
  self::initSettings();
220
  $path = dirname(dirname(__FILE__));
221
 
222
+ wp_enqueue_script('cssjson_js', plugins_url(CRAYON_CSSJSON_JS, $path), $CRAYON_VERSION);
 
 
 
223
  wp_enqueue_script('jquery_colorpicker_js', plugins_url(CRAYON_JS_JQUERY_COLORPICKER, $path), array('jquery', 'jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-dialog', 'jquery-ui-position', 'jquery-ui-mouse', 'jquery-ui-slider', 'jquery-ui-droppable', 'jquery-ui-selectable', 'jquery-ui-resizable'), $CRAYON_VERSION);
224
  wp_enqueue_script('jquery_tinycolor_js', plugins_url(CRAYON_JS_TINYCOLOR, $path), array(), $CRAYON_VERSION);
225
 
226
  if (CRAYON_MINIFY) {
227
+ wp_enqueue_script('crayon_theme_editor', plugins_url(CRAYON_THEME_EDITOR_JS, $path), array('jquery', 'crayon_js', 'crayon_admin_js', 'cssjson_js', 'jquery_colorpicker_js', 'jquery_tinycolor_js'), $CRAYON_VERSION);
228
  } else {
229
  wp_enqueue_script('crayon_theme_editor', plugins_url(CRAYON_THEME_EDITOR_JS, $path), array('jquery', 'crayon_util_js', 'crayon_admin_js', 'cssjson_js', 'jquery_colorpicker_js', 'jquery_tinycolor_js'), $CRAYON_VERSION);
230
  }
672
  echo -3;
673
  exit();
674
  }
675
+
676
  if ($oldPath == $newPath && $allow_edit === FALSE) {
677
  // Don't allow editing
678
  echo -4;