Crayon Syntax Highlighter - Version 1.8.3

Version Description

  • Added inline support for Crayons using the inline="true" attribute or even cooler with {php}...{/php} style tags.
  • backquotes become <code>
  • Added support for Crayons in comments!
  • Added Apache
  • Fixed a bug causing irregular formatting of Crayons by increasing the priority of the_content filter, thanks to http://joshmountain.com/
  • Added sample code for missing languages in Live Preview
Download this release

Release Info

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

Code changes from version 1.8.2 to 1.8.3

crayon_formatter.class.php CHANGED
@@ -24,7 +24,7 @@ class CrayonFormatter {
24
  private function __construct() {}
25
 
26
  /* Formats the code using the regex and stores the elements for later use. */
27
- public static function format_code($code, $language, $highlight = TRUE, $hl = NULL) {
28
  // Ensure the language is defined
29
  if ($language != NULL && $highlight) {
30
  /* Perform the replace on the code using the regex, pass the captured matches for
@@ -73,11 +73,73 @@ class CrayonFormatter {
73
 
74
  /* Prints the formatted code, option to override the line numbers with a custom string */
75
  public static function print_code($hl, $code, $line_numbers = TRUE, $print = TRUE) {
76
- if (get_class($hl) != CRAYON_HIGHLIGHTER) {
77
- return;
 
 
 
 
 
 
 
 
 
 
78
  }
79
 
80
- global $CRAYON_VERSION;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
 
82
  // Generate the code lines and separate each line as a div
83
  $print_code = '';
@@ -149,8 +211,6 @@ class CrayonFormatter {
149
  break;
150
  }
151
  }
152
- // Unique ID for this instance of Crayon
153
- $uid = 'crayon-' . $hl->id();
154
  // Disable functionality for errors
155
  $error = $hl->error();
156
  // Combined settings for code
@@ -241,7 +301,7 @@ class CrayonFormatter {
241
  }
242
 
243
  // Print strings
244
- $output = $main_style = $code_style = $font_style = '';
245
 
246
  // Line numbers visibility
247
  $num_vis = $num_settings = '';
@@ -251,42 +311,6 @@ class CrayonFormatter {
251
  $num_settings = ($hl->setting_val(CrayonSettings::NUMS) ? 'show' : 'hide');
252
  }
253
 
254
- // Print theme id
255
- // We make the assumption that the id is correct (checked in crayon_wp)
256
- $theme_id = $hl->setting_val(CrayonSettings::THEME);
257
- $theme_id_dashed = CrayonUtil::space_to_hyphen($theme_id);
258
-
259
- if (!$hl->setting_val(CrayonSettings::ENQUEUE_THEMES)) {
260
- $output .= CrayonResources::themes()->get_css($theme_id);
261
- }
262
-
263
- // Print theme id
264
- // We make the assumption that the id is correct (checked in crayon_wp)
265
- $font_id = $hl->setting_val(CrayonSettings::FONT);
266
- $font_id_dashed = CrayonUtil::space_to_hyphen($font_id);
267
-
268
- if (!$hl->setting_val(CrayonSettings::ENQUEUE_FONTS)) {
269
- $output .= CrayonResources::fonts()->get_css($font_id);
270
- }
271
-
272
- // Determine font size
273
- // TODO improve logic
274
- if ($hl->setting_val(CrayonSettings::FONT_SIZE_ENABLE)) {
275
- $font_size = $hl->setting_val(CrayonSettings::FONT_SIZE) . 'px !important;';
276
- $font_height = ($font_size + 4) . 'px !important;';
277
- $toolbar_height = ($font_size + 8) . 'px !important;';
278
- $font_style .= "#$uid * { font-size: $font_size line-height: $font_height}";
279
- $font_style .= "#$uid .crayon-toolbar, #$uid .crayon-toolbar * { height: $toolbar_height line-height: $toolbar_height }\n";
280
- $font_style .= "#$uid .crayon-num, #$uid .crayon-line, #$uid .crayon-toolbar a.crayon-button { height: $font_height }\n";
281
- } else {
282
- if (($font_size = CrayonGlobalSettings::get(CrayonSettings::FONT_SIZE)) !== FALSE) {
283
- $font_size = $font_size->def() . 'px !important;';
284
- $font_height = ($font_size + 4) . 'px !important;';
285
- // Correct font CSS for WP 3.3
286
- $font_style .= "#$uid .crayon-plain { font-size: $font_size line-height: $font_height}";
287
- }
288
- }
289
-
290
  // Determine scrollbar visibility
291
  $code_settings .= $hl->setting_val(CrayonSettings::SCROLL) && !$touch ? ' scroll-always' : ' scroll-mouseover';
292
 
@@ -351,8 +375,7 @@ class CrayonFormatter {
351
  // Determine if operating system is mac
352
  $crayon_os = CrayonUtil::is_mac() ? 'mac' : 'pc';
353
 
354
- // Produce style for individual crayon
355
- $output .= '<style type="text/css" media="all">'.$font_style.'</style>';
356
 
357
  // Produce output
358
  $output .= '
@@ -407,10 +430,7 @@ class CrayonFormatter {
407
 
408
  // Delimiters =============================================================
409
 
410
- public static function format_mixed_code($code, $language, $highlight = TRUE, $hl = NULL) {
411
- if (!$highlight) {
412
- return self::format_code($code, $language, $highlight, $hl);
413
- }
414
  self::$curr = $hl;
415
  self::$delim_pieces = array();
416
  // Remove crayon internal element from INPUT code
@@ -429,7 +449,7 @@ class CrayonFormatter {
429
  $internal_code = preg_replace_callback(self::$delim_regex, 'CrayonFormatter::delim_to_internal', $code);
430
 
431
  // Format with given language
432
- $formatted_code = CrayonFormatter::format_code($internal_code, $language, TRUE, $hl);
433
 
434
  // Replace internal elements with delimited pieces
435
  $formatted_code = preg_replace_callback('#\{\{crayon-internal:(\d+)\}\}#', 'CrayonFormatter::internal_to_code', $formatted_code);
24
  private function __construct() {}
25
 
26
  /* Formats the code using the regex and stores the elements for later use. */
27
+ public static function format_code($code, $language, $hl = NULL, $highlight = TRUE) {
28
  // Ensure the language is defined
29
  if ($language != NULL && $highlight) {
30
  /* Perform the replace on the code using the regex, pass the captured matches for
73
 
74
  /* Prints the formatted code, option to override the line numbers with a custom string */
75
  public static function print_code($hl, $code, $line_numbers = TRUE, $print = TRUE) {
76
+ global $CRAYON_VERSION;
77
+
78
+ // We can print either block or inline, inline is treated differently, factor out common stuff here
79
+ $output = '';
80
+ // Unique ID for this instance of Crayon
81
+ $uid = 'crayon-' . $hl->id();
82
+ // Print theme id
83
+ // We make the assumption that the id is correct (checked in crayon_wp)
84
+ $theme_id = $hl->setting_val(CrayonSettings::THEME);
85
+ $theme_id_dashed = CrayonUtil::space_to_hyphen($theme_id);
86
+ if (!$hl->setting_val(CrayonSettings::ENQUEUE_THEMES)) {
87
+ $output .= CrayonResources::themes()->get_css($theme_id);
88
  }
89
 
90
+ // Print font id
91
+ // We make the assumption that the id is correct (checked in crayon_wp)
92
+ $font_id = $hl->setting_val(CrayonSettings::FONT);
93
+ $font_id_dashed = CrayonUtil::space_to_hyphen($font_id);
94
+ if (!$hl->setting_val(CrayonSettings::ENQUEUE_FONTS)) {
95
+ $output .= CrayonResources::fonts()->get_css($font_id);
96
+ }
97
+
98
+ // Inline margin
99
+ if ($hl->is_inline()) {
100
+ $inline_margin = $hl->setting_val(CrayonSettings::INLINE_MARGIN) . 'px !important;';
101
+ $output .= '<style type="text/css" media="all">' . "#$uid { margin: 0 {$inline_margin} }</style>";
102
+ }
103
+
104
+ // Determine font size
105
+ // TODO improve logic
106
+ $font_style = '';
107
+ if ($hl->setting_val(CrayonSettings::FONT_SIZE_ENABLE)) {
108
+ $font_size = $hl->setting_val(CrayonSettings::FONT_SIZE) . 'px !important;';
109
+ $font_height = ($font_size + 4) . 'px !important;';
110
+ $toolbar_height = ($font_size + 8) . 'px !important;';
111
+ $font_style .= "#$uid * { font-size: $font_size line-height: $font_height }";
112
+ if ($hl->is_inline()) {
113
+ $font_style .= "#$uid { font-size: $font_size }\n";
114
+ } else {
115
+ $font_style .= "#$uid .crayon-toolbar, #$uid .crayon-toolbar * { height: $toolbar_height line-height: $toolbar_height }\n";
116
+ $font_style .= "#$uid .crayon-num, #$uid .crayon-line, #$uid .crayon-toolbar a.crayon-button { height: $font_height }\n";
117
+ }
118
+ } else if (!$hl->is_inline()) {
119
+ if (($font_size = CrayonGlobalSettings::get(CrayonSettings::FONT_SIZE)) !== FALSE) {
120
+ $font_size = $font_size->def() . 'px !important;';
121
+ $font_height = ($font_size + 4) . 'px !important;';
122
+ // Correct font CSS for WP 3.3
123
+ $font_style .= "#$uid .crayon-plain { font-size: $font_size line-height: $font_height }";
124
+ }
125
+ }
126
+
127
+ // Produce style for individual crayon
128
+ if (!empty($font_style)) {
129
+ $output .= '<style type="text/css" media="all">'.$font_style.'</style>';
130
+ }
131
+
132
+ // This will return from function with inline print
133
+ if ($hl->is_inline()) {
134
+ $wrap = !$hl->setting_val(CrayonSettings::INLINE_WRAP) ? 'crayon-syntax-inline-nowrap' : '';
135
+ $output .= '
136
+ <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.'">' .
137
+ '<span class="crayon-pre">' . $code . '</span>' .
138
+ '</span>';
139
+ return $output;
140
+ }
141
+
142
+ // Below code only for block (default) printing
143
 
144
  // Generate the code lines and separate each line as a div
145
  $print_code = '';
211
  break;
212
  }
213
  }
 
 
214
  // Disable functionality for errors
215
  $error = $hl->error();
216
  // Combined settings for code
301
  }
302
 
303
  // Print strings
304
+ $main_style = $code_style = '';
305
 
306
  // Line numbers visibility
307
  $num_vis = $num_settings = '';
311
  $num_settings = ($hl->setting_val(CrayonSettings::NUMS) ? 'show' : 'hide');
312
  }
313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  // Determine scrollbar visibility
315
  $code_settings .= $hl->setting_val(CrayonSettings::SCROLL) && !$touch ? ' scroll-always' : ' scroll-mouseover';
316
 
375
  // Determine if operating system is mac
376
  $crayon_os = CrayonUtil::is_mac() ? 'mac' : 'pc';
377
 
378
+
 
379
 
380
  // Produce output
381
  $output .= '
430
 
431
  // Delimiters =============================================================
432
 
433
+ public static function format_mixed_code($code, $language, $hl) {
 
 
 
434
  self::$curr = $hl;
435
  self::$delim_pieces = array();
436
  // Remove crayon internal element from INPUT code
449
  $internal_code = preg_replace_callback(self::$delim_regex, 'CrayonFormatter::delim_to_internal', $code);
450
 
451
  // Format with given language
452
+ $formatted_code = CrayonFormatter::format_code($internal_code, $language, $hl, TRUE);
453
 
454
  // Replace internal elements with delimited pieces
455
  $formatted_code = preg_replace_callback('#\{\{crayon-internal:(\d+)\}\}#', 'CrayonFormatter::internal_to_code', $formatted_code);
crayon_highlighter.class.php CHANGED
@@ -24,6 +24,9 @@ class CrayonHighlighter {
24
  private $runtime = array();
25
  // Whether the code is mixed
26
  private $is_mixed = FALSE;
 
 
 
27
 
28
  // Objects
29
  // Stores the CrayonLang being used
@@ -133,7 +136,7 @@ class CrayonHighlighter {
133
  }
134
 
135
  /* Central point of access for all other functions to update code. */
136
- public function process($highlight = TRUE) {
137
  $tmr = new CrayonTimer();
138
  $this->runtime = NULL;
139
  if ($this->needs_load) {
@@ -153,13 +156,21 @@ class CrayonHighlighter {
153
  try {
154
  // Parse before hand to read modes
155
  CrayonParser::parse($this->language->id());
 
 
 
 
 
 
 
 
156
  // Allow mixed if langauge supports it and setting is set
157
  if (!$this->setting_val(CrayonSettings::MIXED) || !$this->language->mode(CrayonParser::ALLOW_MIXED)) {
158
  // Format the code with the generated regex and elements
159
- $this->formatted_code = CrayonFormatter::format_code($this->code, $this->language, $highlight, $this);
160
  } else {
161
  // Format the code with Mixed Highlighting
162
- $this->formatted_code = CrayonFormatter::format_mixed_code($this->code, $this->language, $highlight, $this);
163
  }
164
  } catch (Exception $e) {
165
  $this->error($e->message());
@@ -178,8 +189,8 @@ class CrayonHighlighter {
178
 
179
  /* Sends the code to the formatter for printing. Apart from the getters and setters, this is
180
  the only other function accessible outside this class. $show_lines can also be a string. */
181
- function output($highlight = TRUE, $show_lines = TRUE, $print = TRUE) {
182
- $this->process($highlight);
183
  if (empty($this->error)) {
184
  // If no errors have occured, print the formatted code
185
  $ret = CrayonFormatter::print_code($this, $this->formatted_code, $show_lines, $print);
@@ -355,6 +366,14 @@ class CrayonHighlighter {
355
  return $this->runtime;
356
  }
357
 
 
 
 
 
 
 
 
 
358
  function is_mixed($mixed = NULL) {
359
  if ($mixed === NULL) {
360
  return $this->is_mixed;
@@ -362,5 +381,14 @@ class CrayonHighlighter {
362
  $this->is_mixed = $mixed;
363
  }
364
  }
 
 
 
 
 
 
 
 
 
365
  }
366
  ?>
24
  private $runtime = array();
25
  // Whether the code is mixed
26
  private $is_mixed = FALSE;
27
+ // Inline code on a single floating line
28
+ private $is_inline = FALSE;
29
+ private $is_highlighted = TRUE;
30
 
31
  // Objects
32
  // Stores the CrayonLang being used
136
  }
137
 
138
  /* Central point of access for all other functions to update code. */
139
+ public function process() {
140
  $tmr = new CrayonTimer();
141
  $this->runtime = NULL;
142
  if ($this->needs_load) {
156
  try {
157
  // Parse before hand to read modes
158
  CrayonParser::parse($this->language->id());
159
+ $code = $this->code;
160
+ // If inline, then combine lines into one
161
+ if ($this->is_inline) {
162
+ $code = preg_replace('#[\r\n]+#ms', '', $code);
163
+ if ($this->setting_val(CrayonSettings::TRIM_WHITESPACE)) {
164
+ $code = trim($code);
165
+ }
166
+ }
167
  // Allow mixed if langauge supports it and setting is set
168
  if (!$this->setting_val(CrayonSettings::MIXED) || !$this->language->mode(CrayonParser::ALLOW_MIXED)) {
169
  // Format the code with the generated regex and elements
170
+ $this->formatted_code = CrayonFormatter::format_code($code, $this->language, $this, $this->is_highlighted);
171
  } else {
172
  // Format the code with Mixed Highlighting
173
+ $this->formatted_code = CrayonFormatter::format_mixed_code($code, $this->language, $this);
174
  }
175
  } catch (Exception $e) {
176
  $this->error($e->message());
189
 
190
  /* Sends the code to the formatter for printing. Apart from the getters and setters, this is
191
  the only other function accessible outside this class. $show_lines can also be a string. */
192
+ function output($show_lines = TRUE, $print = TRUE) {
193
+ $this->process();
194
  if (empty($this->error)) {
195
  // If no errors have occured, print the formatted code
196
  $ret = CrayonFormatter::print_code($this, $this->formatted_code, $show_lines, $print);
366
  return $this->runtime;
367
  }
368
 
369
+ function is_highlighted($highlighted = NULL) {
370
+ if ($highlighted === NULL) {
371
+ return $this->is_highlighted;
372
+ } else {
373
+ $this->is_highlighted = $highlighted;
374
+ }
375
+ }
376
+
377
  function is_mixed($mixed = NULL) {
378
  if ($mixed === NULL) {
379
  return $this->is_mixed;
381
  $this->is_mixed = $mixed;
382
  }
383
  }
384
+
385
+ function is_inline($inline = NULL) {
386
+ if ($inline === NULL) {
387
+ return $this->is_inline;
388
+ } else {
389
+ $inline = CrayonUtil::str_to_bool($inline, FALSE);
390
+ $this->is_inline = $inline;
391
+ }
392
+ }
393
  }
394
  ?>
crayon_settings.class.php CHANGED
@@ -79,6 +79,11 @@ class CrayonSettings {
79
  const ENQUEUE_FONTS = 'enqueque-fonts';
80
  const MAIN_QUERY = 'main-query';
81
  const SAFE_ENQUEUE = 'safe-enqueue';
 
 
 
 
 
82
 
83
  private static $cache_array;
84
 
@@ -187,6 +192,11 @@ class CrayonSettings {
187
  new CrayonSetting(self::ENQUEUE_FONTS, TRUE),
188
  new CrayonSetting(self::MAIN_QUERY, FALSE),
189
  new CrayonSetting(self::SAFE_ENQUEUE, TRUE),
 
 
 
 
 
190
  );
191
 
192
  $this->set($settings);
79
  const ENQUEUE_FONTS = 'enqueque-fonts';
80
  const MAIN_QUERY = 'main-query';
81
  const SAFE_ENQUEUE = 'safe-enqueue';
82
+ const INLINE_TAG = 'inline-tag';
83
+ const INLINE_MARGIN = 'inline-margin';
84
+ const INLINE_WRAP = 'inline-wrap';
85
+ const BACKQUOTE = 'backquote';
86
+ const COMMENTS = 'comments';
87
 
88
  private static $cache_array;
89
 
192
  new CrayonSetting(self::ENQUEUE_FONTS, TRUE),
193
  new CrayonSetting(self::MAIN_QUERY, FALSE),
194
  new CrayonSetting(self::SAFE_ENQUEUE, TRUE),
195
+ new CrayonSetting(self::INLINE_TAG, TRUE),
196
+ new CrayonSetting(self::INLINE_MARGIN, 5),
197
+ new CrayonSetting(self::INLINE_WRAP, TRUE),
198
+ new CrayonSetting(self::BACKQUOTE, TRUE),
199
+ new CrayonSetting(self::COMMENTS, TRUE),
200
  );
201
 
202
  $this->set($settings);
crayon_settings_wp.class.php CHANGED
@@ -223,6 +223,7 @@ class CrayonSettingsWP {
223
  self::add_field(self::GENERAL, crayon__('Toolbar'), 'toolbar');
224
  self::add_field(self::GENERAL, crayon__('Lines'), 'lines');
225
  self::add_field(self::GENERAL, crayon__('Code'), 'code');
 
226
  self::add_field(self::GENERAL, crayon__('Languages'), 'langs');
227
  self::add_field(self::GENERAL, crayon__('Files'), 'files');
228
  self::add_field(self::GENERAL, crayon__('Misc'), 'misc');
@@ -434,13 +435,13 @@ class CrayonSettingsWP {
434
  }
435
 
436
  public static function metrics() {
437
- self::checkbox(array(CrayonSettings::HEIGHT_SET, '<span class="crayon-span-50">'.crayon__('Height').': </span>'), FALSE);
438
  self::dropdown(CrayonSettings::HEIGHT_MODE, FALSE);
439
  echo ' ';
440
  self::textbox(array('name' => CrayonSettings::HEIGHT, 'size' => 8));
441
  echo ' ';
442
  self::dropdown(CrayonSettings::HEIGHT_UNIT);
443
- self::checkbox(array(CrayonSettings::WIDTH_SET, '<span class="crayon-span-50">'.crayon__('Width').': </span>'), FALSE);
444
  self::dropdown(CrayonSettings::WIDTH_MODE, FALSE);
445
  echo ' ';
446
  self::textbox(array('name' => CrayonSettings::WIDTH, 'size' => 8));
@@ -457,17 +458,20 @@ class CrayonSettingsWP {
457
  self::checkbox(array($set, '<span class="crayon-span-110">' . $p . '</span>'), FALSE, $preview);
458
  echo ' ';
459
  self::textbox(array('name' => $margin, 'size' => 8, 'preview' => FALSE));
460
- echo '<span class="crayon-span-margin">Pixels</span>', CRAYON_BR;
461
  }
462
- echo '<span class="crayon-span" style="min-width: 135px;">'.crayon__('Horizontal Alignment').': </span>';
463
  self::dropdown(CrayonSettings::H_ALIGN);
464
  echo '<div id="crayon-float">';
465
  self::checkbox(array(CrayonSettings::FLOAT_ENABLE, crayon__('Allow floating elements to surround Crayon')), FALSE, FALSE);
466
  echo '</div>';
 
 
 
467
  }
468
 
469
  public static function toolbar() {
470
- echo crayon__('Display the Toolbar'), ': ';
471
  self::dropdown(CrayonSettings::TOOLBAR);
472
  echo '<div id="' . CrayonSettings::TOOLBAR_OVERLAY . '">';
473
  self::checkbox(array(CrayonSettings::TOOLBAR_OVERLAY, crayon__('Overlay the toolbar on code rather than push it down when possible')));
@@ -475,7 +479,7 @@ class CrayonSettingsWP {
475
  self::checkbox(array(CrayonSettings::TOOLBAR_DELAY, crayon__('Delay hiding the toolbar on MouseOut')));
476
  echo '</div>';
477
  self::checkbox(array(CrayonSettings::SHOW_TITLE, crayon__('Display the title when provided')));
478
- echo crayon__('Display the language'), ': ';
479
  self::dropdown(CrayonSettings::SHOW_LANG);
480
  }
481
 
@@ -484,7 +488,7 @@ class CrayonSettingsWP {
484
  self::checkbox(array(CrayonSettings::MARKING, crayon__('Enable line marking for important lines')));
485
  self::checkbox(array(CrayonSettings::NUMS, crayon__('Display line numbers by default')));
486
  self::checkbox(array(CrayonSettings::NUMS_TOGGLE, crayon__('Enable line number toggling')));
487
- echo crayon__('Start line numbers from'), ': ';
488
  self::textbox(array('name' => CrayonSettings::START_LINE, 'size' => 2, 'break' => TRUE));
489
  }
490
 
@@ -572,9 +576,9 @@ class CrayonSettingsWP {
572
  echo '<option value="', $font->id(), '" ', selected($db_font, $font->id()), '>', $title, '</option>';
573
  }
574
  echo '</select><span class="crayon-span-10"></span>';
575
- self::checkbox(array(CrayonSettings::FONT_SIZE_ENABLE, crayon__('Custom Font Size').': '), FALSE);
576
  self::textbox(array('name' => CrayonSettings::FONT_SIZE, 'size' => 2));
577
- echo '<span class="crayon-span-margin">Pixels</span></br>';
578
  if (/*$db_font != CrayonFonts::DEFAULT_FONT &&*/ (!CrayonResources::fonts()->is_loaded($db_font) || !CrayonResources::fonts()->exists($db_font))) {
579
  // Default font doesn't actually exist as a file, it means do not override default theme font
580
  echo '<span class="crayon-error">', sprintf(crayon__('The selected font with id %s could not be loaded'), '<strong>'.$db_font.'</strong>'), '. </span><br/>';
@@ -584,7 +588,7 @@ class CrayonSettingsWP {
584
  }
585
 
586
  public static function code() {
587
- self::checkbox(array(CrayonSettings::PLAIN, crayon__('Enable plain code view and display').': '), FALSE);
588
  self::dropdown(CrayonSettings::SHOW_PLAIN);
589
  echo '<span id="crayon-copy-check">';
590
  self::checkbox(array(CrayonSettings::PLAIN_TOGGLE, crayon__('Enable plain code toggling')));
@@ -596,12 +600,18 @@ class CrayonSettingsWP {
596
  echo crayon__('Tab size in spaces'),': ';
597
  self::textbox(array('name' => CrayonSettings::TAB_SIZE, 'size' => 2, 'break' => TRUE));
598
  self::checkbox(array(CrayonSettings::TRIM_WHITESPACE, crayon__('Remove whitespace surrounding the shortcode content')));
599
- self::checkbox(array(CrayonSettings::CAPTURE_PRE, crayon__('Capture &lt;pre&gt; tags as Crayons')));
600
- self::checkbox(array(CrayonSettings::CAPTURE_MINI_TAG, crayon__('Capture Mini Tags like [php][/php] as Crayons.') . ' <a href="http://bit.ly/rRZuzk" target="_blank">' . crayon__('Learn More') . '</a>'));
601
- self::checkbox(array(CrayonSettings::PLAIN_TAG, crayon__('Enable [plain][/plain] tag.') . ' <a href="http://bit.ly/rRZuzk" target="_blank">' . crayon__('Learn More') . '</a>'));
602
  self::checkbox(array(CrayonSettings::MIXED, crayon__('Allow Mixed Language Highlighting with delimiters and tags.') . ' <a href="http://bit.ly/ukwts2" target="_blank">' . crayon__('Learn More') . '</a>'));
603
  self::checkbox(array(CrayonSettings::SHOW_MIXED, crayon__('Show Mixed Language Icon (+)')));
604
  }
 
 
 
 
 
 
 
 
 
605
 
606
  public static function files() {
607
  echo '<a name="files"></a>';
@@ -617,6 +627,7 @@ class CrayonSettingsWP {
617
  echo '<input type="submit" id="crayon-cache-clear" name="crayon-cache-clear" class="button-secondary" value="', crayon__('Clear Now'), '" /><br/>';
618
  self::checkbox(array(CrayonSettings::EFFICIENT_ENQUEUE, crayon__('Attempt to load Crayon\'s CSS and JavaScript only when needed').'. <a href="http://ak.net84.net/?p=660" target="_blank">'.crayon__('Learn More').'</a>'));
619
  self::checkbox(array(CrayonSettings::SAFE_ENQUEUE, crayon__('Disable enqueuing for page templates that may contain The Loop.') . ' <a href="http://bit.ly/AcWRNY" target="_blank">' . crayon__('Learn More') . '</a>'));
 
620
  self::checkbox(array(CrayonSettings::MAIN_QUERY, crayon__('Load Crayons only from the main Wordpress query')));
621
  self::checkbox(array(CrayonSettings::TOUCHSCREEN, crayon__('Disable mouse gestures for touchscreen devices (eg. MouseOver)')));
622
  self::checkbox(array(CrayonSettings::DISABLE_ANIM, crayon__('Disable animations')));
223
  self::add_field(self::GENERAL, crayon__('Toolbar'), 'toolbar');
224
  self::add_field(self::GENERAL, crayon__('Lines'), 'lines');
225
  self::add_field(self::GENERAL, crayon__('Code'), 'code');
226
+ self::add_field(self::GENERAL, crayon__('Tags'), 'tags');
227
  self::add_field(self::GENERAL, crayon__('Languages'), 'langs');
228
  self::add_field(self::GENERAL, crayon__('Files'), 'files');
229
  self::add_field(self::GENERAL, crayon__('Misc'), 'misc');
435
  }
436
 
437
  public static function metrics() {
438
+ self::checkbox(array(CrayonSettings::HEIGHT_SET, '<span class="crayon-span-50">'.crayon__('Height').' </span>'), FALSE);
439
  self::dropdown(CrayonSettings::HEIGHT_MODE, FALSE);
440
  echo ' ';
441
  self::textbox(array('name' => CrayonSettings::HEIGHT, 'size' => 8));
442
  echo ' ';
443
  self::dropdown(CrayonSettings::HEIGHT_UNIT);
444
+ self::checkbox(array(CrayonSettings::WIDTH_SET, '<span class="crayon-span-50">'.crayon__('Width').' </span>'), FALSE);
445
  self::dropdown(CrayonSettings::WIDTH_MODE, FALSE);
446
  echo ' ';
447
  self::textbox(array('name' => CrayonSettings::WIDTH, 'size' => 8));
458
  self::checkbox(array($set, '<span class="crayon-span-110">' . $p . '</span>'), FALSE, $preview);
459
  echo ' ';
460
  self::textbox(array('name' => $margin, 'size' => 8, 'preview' => FALSE));
461
+ echo '<span class="crayon-span-margin">', crayon__('Pixels'), '</span>', CRAYON_BR;
462
  }
463
+ echo '<span class="crayon-span" style="min-width: 135px;">'.crayon__('Horizontal Alignment').' </span>';
464
  self::dropdown(CrayonSettings::H_ALIGN);
465
  echo '<div id="crayon-float">';
466
  self::checkbox(array(CrayonSettings::FLOAT_ENABLE, crayon__('Allow floating elements to surround Crayon')), FALSE, FALSE);
467
  echo '</div>';
468
+ echo '<span class="crayon-span-100">' . crayon__('Inline Margin') . '</span>';
469
+ self::textbox(array('name' => CrayonSettings::INLINE_MARGIN, 'size' => 2));
470
+ echo '<span class="crayon-span-margin">', crayon__('Pixels'), '</span>';
471
  }
472
 
473
  public static function toolbar() {
474
+ echo crayon__('Display the Toolbar'), ' ';
475
  self::dropdown(CrayonSettings::TOOLBAR);
476
  echo '<div id="' . CrayonSettings::TOOLBAR_OVERLAY . '">';
477
  self::checkbox(array(CrayonSettings::TOOLBAR_OVERLAY, crayon__('Overlay the toolbar on code rather than push it down when possible')));
479
  self::checkbox(array(CrayonSettings::TOOLBAR_DELAY, crayon__('Delay hiding the toolbar on MouseOut')));
480
  echo '</div>';
481
  self::checkbox(array(CrayonSettings::SHOW_TITLE, crayon__('Display the title when provided')));
482
+ echo crayon__('Display the language'), ' ';
483
  self::dropdown(CrayonSettings::SHOW_LANG);
484
  }
485
 
488
  self::checkbox(array(CrayonSettings::MARKING, crayon__('Enable line marking for important lines')));
489
  self::checkbox(array(CrayonSettings::NUMS, crayon__('Display line numbers by default')));
490
  self::checkbox(array(CrayonSettings::NUMS_TOGGLE, crayon__('Enable line number toggling')));
491
+ echo crayon__('Start line numbers from'), ' ';
492
  self::textbox(array('name' => CrayonSettings::START_LINE, 'size' => 2, 'break' => TRUE));
493
  }
494
 
576
  echo '<option value="', $font->id(), '" ', selected($db_font, $font->id()), '>', $title, '</option>';
577
  }
578
  echo '</select><span class="crayon-span-10"></span>';
579
+ self::checkbox(array(CrayonSettings::FONT_SIZE_ENABLE, crayon__('Custom Font Size').' '), FALSE);
580
  self::textbox(array('name' => CrayonSettings::FONT_SIZE, 'size' => 2));
581
+ echo '<span class="crayon-span-margin">', crayon__('Pixels'), '</span></br>';
582
  if (/*$db_font != CrayonFonts::DEFAULT_FONT &&*/ (!CrayonResources::fonts()->is_loaded($db_font) || !CrayonResources::fonts()->exists($db_font))) {
583
  // Default font doesn't actually exist as a file, it means do not override default theme font
584
  echo '<span class="crayon-error">', sprintf(crayon__('The selected font with id %s could not be loaded'), '<strong>'.$db_font.'</strong>'), '. </span><br/>';
588
  }
589
 
590
  public static function code() {
591
+ self::checkbox(array(CrayonSettings::PLAIN, crayon__('Enable plain code view and display').' '), FALSE);
592
  self::dropdown(CrayonSettings::SHOW_PLAIN);
593
  echo '<span id="crayon-copy-check">';
594
  self::checkbox(array(CrayonSettings::PLAIN_TOGGLE, crayon__('Enable plain code toggling')));
600
  echo crayon__('Tab size in spaces'),': ';
601
  self::textbox(array('name' => CrayonSettings::TAB_SIZE, 'size' => 2, 'break' => TRUE));
602
  self::checkbox(array(CrayonSettings::TRIM_WHITESPACE, crayon__('Remove whitespace surrounding the shortcode content')));
 
 
 
603
  self::checkbox(array(CrayonSettings::MIXED, crayon__('Allow Mixed Language Highlighting with delimiters and tags.') . ' <a href="http://bit.ly/ukwts2" target="_blank">' . crayon__('Learn More') . '</a>'));
604
  self::checkbox(array(CrayonSettings::SHOW_MIXED, crayon__('Show Mixed Language Icon (+)')));
605
  }
606
+
607
+ public static function tags() {
608
+ self::checkbox(array(CrayonSettings::CAPTURE_MINI_TAG, crayon__('Capture Mini Tags like [php][/php] as Crayons.') . ' <a href="http://bit.ly/rRZuzk" target="_blank">' . crayon__('Learn More') . '</a>'));
609
+ self::checkbox(array(CrayonSettings::INLINE_TAG, crayon__('Capture Inline Tags like {php}{/php} inside sentences.') . ' <a href="http://bit.ly/yFafFL" target="_blank">' . crayon__('Learn More') . '</a>'));
610
+ self::checkbox(array(CrayonSettings::INLINE_WRAP, crayon__('Wrap Inline Tags') . ' <a href="http://bit.ly/yFafFL" target="_blank">' . crayon__('Learn More') . '</a>'));
611
+ self::checkbox(array(CrayonSettings::BACKQUOTE, crayon__('Capture `backquotes` as &lt;code&gt;') . ' <a href="http://bit.ly/yFafFL" target="_blank">' . crayon__('Learn More') . '</a>'));
612
+ self::checkbox(array(CrayonSettings::CAPTURE_PRE, crayon__('Capture &lt;pre&gt; tags as Crayons') . ' <a href="http://bit.ly/rRZuzk" target="_blank">' . crayon__('Learn More') . '</a>'));
613
+ self::checkbox(array(CrayonSettings::PLAIN_TAG, crayon__('Enable [plain][/plain] tag.') . ' <a href="http://bit.ly/rRZuzk" target="_blank">' . crayon__('Learn More') . '</a>'));
614
+ }
615
 
616
  public static function files() {
617
  echo '<a name="files"></a>';
627
  echo '<input type="submit" id="crayon-cache-clear" name="crayon-cache-clear" class="button-secondary" value="', crayon__('Clear Now'), '" /><br/>';
628
  self::checkbox(array(CrayonSettings::EFFICIENT_ENQUEUE, crayon__('Attempt to load Crayon\'s CSS and JavaScript only when needed').'. <a href="http://ak.net84.net/?p=660" target="_blank">'.crayon__('Learn More').'</a>'));
629
  self::checkbox(array(CrayonSettings::SAFE_ENQUEUE, crayon__('Disable enqueuing for page templates that may contain The Loop.') . ' <a href="http://bit.ly/AcWRNY" target="_blank">' . crayon__('Learn More') . '</a>'));
630
+ self::checkbox(array(CrayonSettings::COMMENTS, crayon__('Allow Crayons inside comments')));
631
  self::checkbox(array(CrayonSettings::MAIN_QUERY, crayon__('Load Crayons only from the main Wordpress query')));
632
  self::checkbox(array(CrayonSettings::TOUCHSCREEN, crayon__('Disable mouse gestures for touchscreen devices (eg. MouseOver)')));
633
  self::checkbox(array(CrayonSettings::DISABLE_ANIM, crayon__('Disable animations')));
crayon_wp.class.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Crayon Syntax Highlighter
4
  Plugin URI: http://ak.net84.net/projects/crayon-syntax-highlighter
5
  Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
6
- Version: 1.8.2
7
  Author: Aram Kocharyan
8
  Author URI: http://ak.net84.net/
9
  Text Domain: crayon-syntax-highlighter
@@ -39,6 +39,10 @@ class CrayonWP {
39
 
40
  // Associative array, keys are post IDs as strings and values are number of crayons parsed as ints
41
  private static $post_queue = array();
 
 
 
 
42
  // Whether we are displaying an excerpt
43
  private static $is_excerpt = FALSE;
44
  // Whether we have added styles and scripts
@@ -51,7 +55,7 @@ class CrayonWP {
51
  private static $search_tags = array('[crayon', '<pre', '[plain');
52
  // String to store the regex for capturing mini tags
53
  private static $alias_regex = '';
54
- private static $is_mini_tag_init = FALSE;
55
 
56
  // Used to detect the shortcode
57
  const REGEX_CLOSED = '(?:\[crayon(?:-(\w+))?\b([^\]]*)/\])'; // [crayon atts="" /]
@@ -91,11 +95,11 @@ class CrayonWP {
91
  * Adds the actual Crayon instance, should only be called by add_shortcode()
92
  * $mode can be: 0 = return crayon content, 1 = return only code, 2 = return only plain code
93
  */
94
- private static function shortcode($atts, $content = NULL, $id = NULL, $mode = self::MODE_NORMAL) {
95
  CrayonLog::debug('shortcode');
96
 
97
  // Load attributes from shortcode
98
- $allowed_atts = array('url' => NULL, 'lang' => NULL, 'title' => NULL, 'mark' => NULL);
99
  $filtered_atts = shortcode_atts($allowed_atts, $atts);
100
  $filtered_atts['lang'] = strtolower($filtered_atts['lang']);
101
 
@@ -112,7 +116,7 @@ class CrayonWP {
112
  $extra_attr = array_diff_key($atts, $allowed_atts);
113
  $extra_attr = CrayonSettings::smart_settings($extra_attr);
114
  }
115
- $lang = $title = $mark = '';
116
  extract($filtered_atts);
117
 
118
  $crayon = self::instance($extra_attr, $id);
@@ -129,16 +133,12 @@ class CrayonWP {
129
  $crayon->language($lang);
130
  $crayon->title($title);
131
  $crayon->marked($mark);
 
132
 
133
  // Determine if we should highlight
134
  $highlight = array_key_exists('highlight', $atts) ? CrayonUtil::str_to_bool($atts['highlight'], FALSE) : TRUE;
135
-
136
- if ($mode === self::MODE_JUST_CODE || $mode === self::MODE_PLAIN_CODE) {
137
- $crayon->process($highlight && ($mode === self::MODE_JUST_CODE));
138
- return $crayon;
139
- } else {
140
- return $crayon->output($highlight, $nums = true, $print = false);
141
- }
142
  }
143
 
144
  /* Returns Crayon instance */
@@ -167,135 +167,191 @@ class CrayonWP {
167
  self::the_posts($posts);
168
  }
169
 
170
- /* Search for Crayons in posts and queue them for creation */
171
- public static function the_posts($posts) {
172
- CrayonLog::debug('the_posts');
173
 
174
- // Whether to enqueue syles/scripts
175
- $enqueue = FALSE;
176
- CrayonSettingsWP::load_settings(TRUE); // Load just the settings from db, for now
 
 
 
177
 
178
- self::init_mini_tags();
 
 
 
179
 
180
- // Search for shortcode in query
181
- foreach ($posts as $post) {
182
-
183
- // If we get query for a page, then that page might have a template and load more posts containing Crayons
184
- // By this state, we would be unable to enqueue anything (header already written).
185
- if (CrayonGlobalSettings::val(CrayonSettings::SAFE_ENQUEUE) && is_page($post->ID)) {
186
- CrayonGlobalSettings::set(CrayonSettings::ENQUEUE_THEMES, false);
187
- CrayonGlobalSettings::set(CrayonSettings::ENQUEUE_FONTS, false);
188
- }
189
-
190
- // To improve efficiency, avoid complicated regex with a simple check first
191
- if (CrayonUtil::strposa($post->post_content, self::$search_tags, TRUE) === FALSE) {
192
- continue;
193
- }
194
-
195
- // Convert <pre> tags to crayon tags, if needed
196
- if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_PRE)) {
197
- // XXX This will fail if <pre></pre> is used inside another <pre></pre>
198
- $post->post_content = preg_replace('#(?<!\$)<pre([^\>]*)>(.*?)</pre>(?!\$)#msi', '[crayon\1]\2[/crayon]', $post->post_content);
199
- }
200
-
201
- // Convert mini [php][/php] tags to crayon tags, if needed
202
- if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG)) {
203
- $post->post_content = preg_replace('#(?<!\$)\[('.self::$alias_regex.')([^\]]*)\](.*?)\[/(?:\1)\](?!\$)#msi', '[crayon lang="\1" \2]\3[/crayon]', $post->post_content);
204
- }
205
-
206
- // Convert [plain] tags into <pre><code></code></pre>, if needed
207
- if (CrayonGlobalSettings::val(CrayonSettings::PLAIN_TAG)) {
208
- $post->post_content = preg_replace_callback('#(?<!\$)\[plain\](.*?)\[/plain\]#msi', 'CrayonFormatter::plain_code', $post->post_content);
209
- }
 
 
 
 
 
 
 
 
 
210
 
211
- // Add IDs to the Crayons
212
- $post->post_content = preg_replace_callback(self::REGEX_ID, 'CrayonWP::add_crayon_id', $post->post_content);
 
 
 
 
213
 
214
- // Only include if a post exists with Crayon tag
215
- preg_match_all(self::regex(), $post->post_content, $matches);
216
 
217
- if ( count($matches[0]) != 0 ) {
218
- // Crayons found! Load settings first to ensure global settings loaded
219
- CrayonSettingsWP::load_settings();
220
-
221
- $full_matches = $matches[0];
222
- $closed_ids = $matches[1];
223
- $closed_atts = $matches[2];
224
- $open_ids = $matches[3];
225
- $open_atts = $matches[4];
226
- $contents = $matches[5];
227
 
228
- // Make sure we enqueue the styles/scripts
229
- $enqueue = TRUE;
230
 
231
- for ($i = 0; $i < count($full_matches); $i++) {
232
- // Get attributes
233
- if ( !empty($closed_atts[$i]) ) {
234
- $atts = $closed_atts[$i];
235
- } else if ( !empty($open_atts[$i]) ) {
236
- $atts = $open_atts[$i];
237
- } else {
238
- $atts = '';
239
- }
240
-
241
- // Capture attributes
242
- preg_match_all('#([^="\'\s]+)[\t ]*=[\t ]*("|\')(.*?)\2#', $atts, $att_matches);
243
-
244
- $atts_array = array();
245
- if ( count($att_matches[0]) != 0 ) {
246
- for ($j = 0; $j < count($att_matches[1]); $j++) {
247
- $atts_array[trim(strtolower($att_matches[1][$j]))] = trim($att_matches[3][$j]);
248
- }
249
  }
250
-
251
- // Capture theme
252
- $theme_id = array_key_exists(CrayonSettings::THEME, $atts_array) ? $atts_array[CrayonSettings::THEME] : '';
 
 
 
 
 
 
253
  $theme = CrayonResources::themes()->get($theme_id);
254
- // If theme not found, use fallbacks
255
  if (!$theme) {
256
- // Given theme is invalid, try global setting
257
- $theme_id = CrayonGlobalSettings::val(CrayonSettings::THEME);
258
- $theme = CrayonResources::themes()->get($theme_id);
259
- if (!$theme) {
260
- // Global setting is invalid, fall back to default
261
- $theme = CrayonResources::themes()->get_default();
262
- $theme_id = CrayonThemes::DEFAULT_THEME;
263
- }
264
  }
265
- // If theme is now valid, change the array
266
- if ($theme) {
267
- $atts_array[CrayonSettings::THEME] = $theme_id;
268
- $theme->used(TRUE);
269
- }
270
-
271
- // Capture font
272
- $font_id = array_key_exists(CrayonSettings::FONT, $atts_array) ? $atts_array[CrayonSettings::FONT] : '';
 
 
 
 
 
 
273
  $font = CrayonResources::fonts()->get($font_id);
274
- // If font not found, use fallbacks
275
  if (!$font) {
276
- // Given font is invalid, try global setting
277
- $font_id = CrayonGlobalSettings::val(CrayonSettings::FONT);
278
- $font = CrayonResources::fonts()->get($font_id);
279
- if (!$font) {
280
- // Global setting is invalid, fall back to default
281
- $font = CrayonResources::fonts()->get_default();
282
- $font_id = CrayonFonts::DEFAULT_FONT;
283
- }
284
- }
285
- // If font is now valid, change the array
286
- if ($font/* != NULL && $font_id != CrayonFonts::DEFAULT_FONT*/) {
287
- $atts_array[CrayonSettings::FONT] = $font_id;
288
- $font->used(TRUE);
289
  }
290
-
291
- // Add array of atts and content to post queue with key as post ID
292
- $id = !empty($open_ids[$i]) ? $open_ids[$i] : $closed_ids[$i];
293
- $code = self::crayon_remove_ignore($contents[$i]);
294
- self::$post_queue[strval($post->ID)][$id] = array('post_id'=>$post->ID, 'atts'=>$atts_array, 'code'=>$code);
295
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
296
  }
 
 
 
 
 
297
 
298
- $post->post_content = self::crayon_remove_ignore($post->post_content);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
  }
300
 
301
  if (!is_admin() && $enqueue && !self::$enqueued) {
@@ -325,12 +381,17 @@ class CrayonWP {
325
  self::$enqueued = TRUE;
326
  }
327
 
328
- private static function init_mini_tags() {
329
- if (!self::$is_mini_tag_init && CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG)) {
 
 
 
330
  $aliases = CrayonResources::langs()->ids_and_aliases();
331
  for ($i = 0; $i < count($aliases); $i++) {
332
  $alias = $aliases[$i];
 
333
  self::$search_tags[] = '[' . $alias;
 
334
 
335
  $alias_regex = CrayonUtil::esc_hash(CrayonUtil::esc_regex($alias));
336
  if ($i != count($aliases) - 1) {
@@ -338,7 +399,10 @@ class CrayonWP {
338
  }
339
  self::$alias_regex .= $alias_regex;
340
  }
341
- self::$is_mini_tag_init = TRUE;
 
 
 
342
  }
343
  }
344
 
@@ -360,27 +424,61 @@ class CrayonWP {
360
  if ( array_key_exists($post_id, self::$post_queue) ) {
361
  // XXX We want the plain post content, no formatting
362
  $the_content_original = $the_content;
 
 
 
363
  // Loop through Crayons
364
  $post_in_queue = self::$post_queue[$post_id];
365
  foreach ($post_in_queue as $id=>$v) {
366
  $atts = $v['atts'];
367
- $content = $v['code']; // The crayon we replace post content with
 
368
  if (is_feed()) {
369
  // Convert the plain code to entities and put in a <pre></pre> tag
370
- $crayon = self::shortcode($atts, $content, $id, self::MODE_PLAIN_CODE);
371
  $crayon_formatted = CrayonFormatter::plain_code($crayon->code());
372
  } else {
373
  // Apply shortcode to the content
374
- $crayon_formatted = self::shortcode($atts, $content, $id);
 
 
 
 
375
  }
376
- // Replacing may cause <p> tags to become disjoint with a <div> inside them, close and reopen them
377
- $the_content = preg_replace_callback('#' . self::REGEX_BETWEEN_PARAGRAPH_SIMPLE . '#msi', 'CrayonWP::add_paragraphs', $the_content);
378
  // Replace the code with the Crayon
379
  $the_content = CrayonUtil::preg_replace_escape_back(self::regex_with_id($id), $crayon_formatted, $the_content, 1, $count);
380
  }
381
  }
 
382
  return $the_content;
383
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
384
 
385
  public static function add_paragraphs($capture) {
386
  if (count($capture) != 4) {
@@ -434,10 +532,14 @@ class CrayonWP {
434
  if (CrayonGlobalSettings::val(CrayonSettings::PLAIN_TAG)) {
435
  $the_content = str_ireplace(array('$[plain', 'plain]$'), array('[plain', 'plain]'), $the_content);
436
  }
437
- if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG)) {
438
- self::init_mini_tags();
439
- $the_content = preg_replace('#\$\[('. self::$alias_regex .')#', '[$1', $the_content);
440
- $the_content = preg_replace('#('. self::$alias_regex .')\]\$#', '$1]', $the_content);
 
 
 
 
441
  }
442
  return $the_content;
443
  }
@@ -546,7 +648,13 @@ if (defined('ABSPATH')) {
546
  add_filter('the_posts', 'CrayonWP::the_posts');
547
  }
548
 
549
- add_filter('the_content', 'CrayonWP::the_content');
 
 
 
 
 
 
550
  add_filter('the_excerpt', 'CrayonWP::the_excerpt');
551
  add_action('template_redirect', 'CrayonWP::wp_head');
552
  }
3
  Plugin Name: Crayon Syntax Highlighter
4
  Plugin URI: http://ak.net84.net/projects/crayon-syntax-highlighter
5
  Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
6
+ Version: 1.8.3
7
  Author: Aram Kocharyan
8
  Author URI: http://ak.net84.net/
9
  Text Domain: crayon-syntax-highlighter
39
 
40
  // Associative array, keys are post IDs as strings and values are number of crayons parsed as ints
41
  private static $post_queue = array();
42
+ // Ditto for comments
43
+ private static $comment_queue = array();
44
+ private static $post_captures = array();
45
+ private static $comment_captures = array();
46
  // Whether we are displaying an excerpt
47
  private static $is_excerpt = FALSE;
48
  // Whether we have added styles and scripts
55
  private static $search_tags = array('[crayon', '<pre', '[plain');
56
  // String to store the regex for capturing mini tags
57
  private static $alias_regex = '';
58
+ private static $is_special_tag_init = FALSE;
59
 
60
  // Used to detect the shortcode
61
  const REGEX_CLOSED = '(?:\[crayon(?:-(\w+))?\b([^\]]*)/\])'; // [crayon atts="" /]
95
  * Adds the actual Crayon instance, should only be called by add_shortcode()
96
  * $mode can be: 0 = return crayon content, 1 = return only code, 2 = return only plain code
97
  */
98
+ private static function shortcode($atts, $content = NULL, $id = NULL) {
99
  CrayonLog::debug('shortcode');
100
 
101
  // Load attributes from shortcode
102
+ $allowed_atts = array('url' => NULL, 'lang' => NULL, 'title' => NULL, 'mark' => NULL, 'inline' => NULL);
103
  $filtered_atts = shortcode_atts($allowed_atts, $atts);
104
  $filtered_atts['lang'] = strtolower($filtered_atts['lang']);
105
 
116
  $extra_attr = array_diff_key($atts, $allowed_atts);
117
  $extra_attr = CrayonSettings::smart_settings($extra_attr);
118
  }
119
+ $lang = $title = $mark = $inline = '';
120
  extract($filtered_atts);
121
 
122
  $crayon = self::instance($extra_attr, $id);
133
  $crayon->language($lang);
134
  $crayon->title($title);
135
  $crayon->marked($mark);
136
+ $crayon->is_inline($inline);
137
 
138
  // Determine if we should highlight
139
  $highlight = array_key_exists('highlight', $atts) ? CrayonUtil::str_to_bool($atts['highlight'], FALSE) : TRUE;
140
+ $crayon->is_highlighted($highlight);
141
+ return $crayon;
 
 
 
 
 
142
  }
143
 
144
  /* Returns Crayon instance */
167
  self::the_posts($posts);
168
  }
169
 
170
+ public static function capture_crayons($wp_id, $wp_content) {
171
+ // Will contain captured crayons and altered $wp_content
172
+ $capture = array('capture' => array(), 'content' => $wp_content, 'has_captured' => FALSE);
173
 
174
+ // If we get query for a page, then that page might have a template and load more posts containing Crayons
175
+ // By this state, we would be unable to enqueue anything (header already written).
176
+ if (CrayonGlobalSettings::val(CrayonSettings::SAFE_ENQUEUE) && is_page($wp_id)) {
177
+ CrayonGlobalSettings::set(CrayonSettings::ENQUEUE_THEMES, false);
178
+ CrayonGlobalSettings::set(CrayonSettings::ENQUEUE_FONTS, false);
179
+ }
180
 
181
+ // To improve efficiency, avoid complicated regex with a simple check first
182
+ if (CrayonUtil::strposa($wp_content, self::$search_tags, TRUE) === FALSE) {
183
+ return $capture;
184
+ }
185
 
186
+ // Convert <pre> tags to crayon tags, if needed
187
+ if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_PRE)) {
188
+ // XXX This will fail if <pre></pre> is used inside another <pre></pre>
189
+ $wp_content = preg_replace('#(?<!\$)<pre([^\>]*)>(.*?)</pre>(?!\$)#msi', '[crayon\1]\2[/crayon]', $wp_content);
190
+ }
191
+
192
+ // Convert mini [php][/php] tags to crayon tags, if needed
193
+ if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG)) {
194
+ $wp_content = preg_replace('#(?<!\$)\[('.self::$alias_regex.')([^\]]*)\](.*?)\[/(?:\1)\](?!\$)#msi', '[crayon lang="\1" \2]\3[/crayon]', $wp_content);
195
+ }
196
+
197
+ // Convert inline {php}{/php} tags to crayon tags, if needed
198
+ if (CrayonGlobalSettings::val(CrayonSettings::INLINE_TAG)) {
199
+ $wp_content = preg_replace('#(?<!\$)\{('.self::$alias_regex.')([^\}]*)\}(.*?)\{/(?:\1)\}(?!\$)#msi', '[crayon lang="\1" inline="true" \2]\3[/crayon]', $wp_content);
200
+ }
201
+
202
+ // Convert [plain] tags into <pre><code></code></pre>, if needed
203
+ if (CrayonGlobalSettings::val(CrayonSettings::PLAIN_TAG)) {
204
+ $wp_content = preg_replace_callback('#(?<!\$)\[plain\](.*?)\[/plain\]#msi', 'CrayonFormatter::plain_code', $wp_content);
205
+ }
206
+
207
+ // Convert `` backquote tags into <code></code>, if needed
208
+ if (CrayonGlobalSettings::val(CrayonSettings::BACKQUOTE)) {
209
+ $wp_content = preg_replace('#(?<!\\\\)`(.*?)`#msi', '<code>\1</code>', $wp_content);
210
+ }
211
+
212
+ // Add IDs to the Crayons
213
+ $wp_content = preg_replace_callback(self::REGEX_ID, 'CrayonWP::add_crayon_id', $wp_content);
214
+
215
+ // Only include if a post exists with Crayon tag
216
+ preg_match_all(self::regex(), $wp_content, $matches);
217
+
218
+ // We need to escape ignored Crayons, since they won't be captured
219
+ $capture['content'] = self::crayon_remove_ignore($wp_content);
220
+
221
+ if ( count($matches[0]) != 0 ) {
222
+ // Crayons found! Load settings first to ensure global settings loaded
223
+ CrayonSettingsWP::load_settings();
224
+ $capture['has_captured'] = TRUE;
225
 
226
+ $full_matches = $matches[0];
227
+ $closed_ids = $matches[1];
228
+ $closed_atts = $matches[2];
229
+ $open_ids = $matches[3];
230
+ $open_atts = $matches[4];
231
+ $contents = $matches[5];
232
 
233
+ // Make sure we enqueue the styles/scripts
234
+ $enqueue = TRUE;
235
 
236
+ for ($i = 0; $i < count($full_matches); $i++) {
237
+ // Get attributes
238
+ if ( !empty($closed_atts[$i]) ) {
239
+ $atts = $closed_atts[$i];
240
+ } else if ( !empty($open_atts[$i]) ) {
241
+ $atts = $open_atts[$i];
242
+ } else {
243
+ $atts = '';
244
+ }
 
245
 
246
+ // Capture attributes
247
+ preg_match_all('#([^="\'\s]+)[\t ]*=[\t ]*("|\')(.*?)\2#', $atts, $att_matches);
248
 
249
+ $atts_array = array();
250
+ if ( count($att_matches[0]) != 0 ) {
251
+ for ($j = 0; $j < count($att_matches[1]); $j++) {
252
+ $atts_array[trim(strtolower($att_matches[1][$j]))] = trim($att_matches[3][$j]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  }
254
+ }
255
+
256
+ // Capture theme
257
+ $theme_id = array_key_exists(CrayonSettings::THEME, $atts_array) ? $atts_array[CrayonSettings::THEME] : '';
258
+ $theme = CrayonResources::themes()->get($theme_id);
259
+ // If theme not found, use fallbacks
260
+ if (!$theme) {
261
+ // Given theme is invalid, try global setting
262
+ $theme_id = CrayonGlobalSettings::val(CrayonSettings::THEME);
263
  $theme = CrayonResources::themes()->get($theme_id);
 
264
  if (!$theme) {
265
+ // Global setting is invalid, fall back to default
266
+ $theme = CrayonResources::themes()->get_default();
267
+ $theme_id = CrayonThemes::DEFAULT_THEME;
 
 
 
 
 
268
  }
269
+ }
270
+ // If theme is now valid, change the array
271
+ if ($theme) {
272
+ $atts_array[CrayonSettings::THEME] = $theme_id;
273
+ $theme->used(TRUE);
274
+ }
275
+
276
+ // Capture font
277
+ $font_id = array_key_exists(CrayonSettings::FONT, $atts_array) ? $atts_array[CrayonSettings::FONT] : '';
278
+ $font = CrayonResources::fonts()->get($font_id);
279
+ // If font not found, use fallbacks
280
+ if (!$font) {
281
+ // Given font is invalid, try global setting
282
+ $font_id = CrayonGlobalSettings::val(CrayonSettings::FONT);
283
  $font = CrayonResources::fonts()->get($font_id);
 
284
  if (!$font) {
285
+ // Global setting is invalid, fall back to default
286
+ $font = CrayonResources::fonts()->get_default();
287
+ $font_id = CrayonFonts::DEFAULT_FONT;
 
 
 
 
 
 
 
 
 
 
288
  }
 
 
 
 
 
289
  }
290
+ // If font is now valid, change the array
291
+ if ($font/* != NULL && $font_id != CrayonFonts::DEFAULT_FONT*/) {
292
+ $atts_array[CrayonSettings::FONT] = $font_id;
293
+ $font->used(TRUE);
294
+ }
295
+
296
+ // Add array of atts and content to post queue with key as post ID
297
+ $id = !empty($open_ids[$i]) ? $open_ids[$i] : $closed_ids[$i];
298
+ $code = self::crayon_remove_ignore($contents[$i]);
299
+ $capture['capture'][$id] = array('post_id'=>$wp_id, 'atts'=>$atts_array, 'code'=>$code);
300
+ }
301
+
302
+ }
303
+
304
+ return $capture;
305
+ }
306
+
307
+ /* Search for Crayons in posts and queue them for creation */
308
+ public static function the_posts($posts) {
309
+ CrayonLog::debug('the_posts');
310
+
311
+ // Whether to enqueue syles/scripts
312
+ $enqueue = FALSE;
313
+ CrayonSettingsWP::load_settings(TRUE); // Load just the settings from db, for now
314
+
315
+ self::init_special_tags();
316
+
317
+ // Search for shortcode in posts
318
+ foreach ($posts as $post) {
319
+ $id_str = strval($post->ID);
320
+ if ( isset(self::$post_queue[$id_str]) ) {
321
+ // Don't capture twice
322
+ continue;
323
+ }
324
+ // Capture post Crayons
325
+ $captures = self::capture_crayons($post->ID, $post->post_content);
326
+ self::$post_queue[$id_str] = array();
327
+ foreach ($captures['capture'] as $capture_id=>$capture_content) {
328
+ self::$post_queue[$id_str][$capture_id] = $capture_content;
329
  }
330
+ // TODO improve by using capture, but careful not to undo changes by other plugins
331
+ $post->post_content = $captures['content'];
332
+ if ($captures['has_captured'] === TRUE) {
333
+ self::$post_captures[$id_str] = $captures['content'];
334
+ }
335
 
336
+ // Search for shortcode in comments
337
+ if (CrayonGlobalSettings::val(CrayonSettings::COMMENTS)) {
338
+ $comments = get_comments(array('post_id' => $post->ID));
339
+ foreach ($comments as $comment) {
340
+ $id_str = strval($comment->comment_ID);
341
+ if ( isset(self::$comment_queue[$id_str]) ) {
342
+ // Don't capture twice
343
+ continue;
344
+ }
345
+ // Capture comment Crayons
346
+ $captures = self::capture_crayons($comment->comment_ID, $comment->comment_content);
347
+ self::$comment_captures[$id_str] = $captures['content'];
348
+ if ($captures['has_captured'] === TRUE) {
349
+ foreach ($captures['capture'] as $capture_id=>$capture_content) {
350
+ self::$comment_queue[$id_str][$capture_id] = $capture_content;
351
+ }
352
+ }
353
+ }
354
+ }
355
  }
356
 
357
  if (!is_admin() && $enqueue && !self::$enqueued) {
381
  self::$enqueued = TRUE;
382
  }
383
 
384
+ private static function init_special_tags() {
385
+ if (!self::$is_special_tag_init &&
386
+ ( CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG) ||
387
+ CrayonGlobalSettings::val(CrayonSettings::INLINE_TAG) )
388
+ ) {
389
  $aliases = CrayonResources::langs()->ids_and_aliases();
390
  for ($i = 0; $i < count($aliases); $i++) {
391
  $alias = $aliases[$i];
392
+ // Support for both block and inline tags
393
  self::$search_tags[] = '[' . $alias;
394
+ self::$search_tags[] = '{' . $alias;
395
 
396
  $alias_regex = CrayonUtil::esc_hash(CrayonUtil::esc_regex($alias));
397
  if ($i != count($aliases) - 1) {
399
  }
400
  self::$alias_regex .= $alias_regex;
401
  }
402
+ // Add plain and backquote
403
+ self::$search_tags[] = '[plain';
404
+ self::$search_tags[] = '`';
405
+ self::$is_special_tag_init = TRUE;
406
  }
407
  }
408
 
424
  if ( array_key_exists($post_id, self::$post_queue) ) {
425
  // XXX We want the plain post content, no formatting
426
  $the_content_original = $the_content;
427
+ // Replace with IDs now that we need to
428
+ // TODO may replace text changed by other plugins, so not using for now
429
+ // $the_content = self::$post_captures[$post_id];
430
  // Loop through Crayons
431
  $post_in_queue = self::$post_queue[$post_id];
432
  foreach ($post_in_queue as $id=>$v) {
433
  $atts = $v['atts'];
434
+ $content = $v['code']; // The code we replace post content with
435
+ $crayon = self::shortcode($atts, $content, $id);
436
  if (is_feed()) {
437
  // Convert the plain code to entities and put in a <pre></pre> tag
 
438
  $crayon_formatted = CrayonFormatter::plain_code($crayon->code());
439
  } else {
440
  // Apply shortcode to the content
441
+ $crayon_formatted = $crayon->output(TRUE, FALSE);
442
+ }
443
+ // Replacing may cause <p> tags to become disjoint with a <div> inside them, close and reopen them if needed
444
+ if (!$crayon->is_inline()) {
445
+ $the_content = preg_replace_callback('#' . self::REGEX_BETWEEN_PARAGRAPH_SIMPLE . '#msi', 'CrayonWP::add_paragraphs', $the_content);
446
  }
 
 
447
  // Replace the code with the Crayon
448
  $the_content = CrayonUtil::preg_replace_escape_back(self::regex_with_id($id), $crayon_formatted, $the_content, 1, $count);
449
  }
450
  }
451
+
452
  return $the_content;
453
  }
454
+
455
+ public static function comment_text($text) {
456
+ global $comment;
457
+ $comment_id = strval($comment->comment_ID);
458
+ // Find if this post has Crayons
459
+ if ( array_key_exists($comment_id, self::$comment_queue) ) {
460
+ // XXX We want the plain post content, no formatting
461
+ $the_content_original = $text;
462
+ // Loop through Crayons
463
+ $post_in_queue = self::$comment_queue[$comment_id];
464
+ // Replace with IDs now that we need to
465
+ $text = self::$comment_captures[$comment_id];
466
+
467
+ foreach ($post_in_queue as $id=>$v) {
468
+ $atts = $v['atts'];
469
+ $content = $v['code']; // The code we replace post content with
470
+ $crayon = self::shortcode($atts, $content, $id);
471
+ $crayon_formatted = $crayon->output(TRUE, FALSE);
472
+ // Replacing may cause <p> tags to become disjoint with a <div> inside them, close and reopen them if needed
473
+ if (!$crayon->is_inline()) {
474
+ $text = preg_replace_callback('#' . self::REGEX_BETWEEN_PARAGRAPH_SIMPLE . '#msi', 'CrayonWP::add_paragraphs', $text);
475
+ }
476
+ // Replace the code with the Crayon
477
+ $text = CrayonUtil::preg_replace_escape_back(self::regex_with_id($id), $crayon_formatted, $text, 1, $text);
478
+ }
479
+ }
480
+ return $text;
481
+ }
482
 
483
  public static function add_paragraphs($capture) {
484
  if (count($capture) != 4) {
532
  if (CrayonGlobalSettings::val(CrayonSettings::PLAIN_TAG)) {
533
  $the_content = str_ireplace(array('$[plain', 'plain]$'), array('[plain', 'plain]'), $the_content);
534
  }
535
+ if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG) ||
536
+ CrayonGlobalSettings::val(CrayonSettings::INLINE_TAG)) {
537
+ self::init_special_tags();
538
+ $the_content = preg_replace('#\$([\[\{])('. self::$alias_regex .')#', '$1$2', $the_content);
539
+ $the_content = preg_replace('#('. self::$alias_regex .')([\[\{])\$#', '$1$2', $the_content);
540
+ }
541
+ if (CrayonGlobalSettings::val(CrayonSettings::BACKQUOTE)) {
542
+ $the_content = str_ireplace('\\`', '`', $the_content);
543
  }
544
  return $the_content;
545
  }
648
  add_filter('the_posts', 'CrayonWP::the_posts');
649
  }
650
 
651
+ // XXX Some themes like to play with the content, make sure we replace after they're done
652
+ add_filter('the_content', 'CrayonWP::the_content', 100);
653
+
654
+ if (CrayonGlobalSettings::val(CrayonSettings::COMMENTS)) {
655
+ add_filter('comment_text', 'CrayonWP::comment_text', 100);
656
+ }
657
+
658
  add_filter('the_excerpt', 'CrayonWP::the_excerpt');
659
  add_action('template_redirect', 'CrayonWP::wp_head');
660
  }
css/style.css CHANGED
@@ -74,6 +74,10 @@ coloring etc.
74
  margin: 0px;
75
  }
76
 
 
 
 
 
77
  .crayon-syntax .crayon-table {
78
  border: none !important;
79
  background: none !important;
@@ -244,7 +248,18 @@ coloring etc.
244
  padding: 0 5px;
245
  }
246
 
 
 
 
 
 
 
 
 
 
 
247
  /* Default Font */
 
248
  .crayon-syntax * {
249
  font-family: Monaco, 'MonacoRegular', 'Courier New', monospace;
250
  font-size: 12px;
74
  margin: 0px;
75
  }
76
 
77
+ .crayon-syntax-inline {
78
+ margin: 0 5px;
79
+ }
80
+
81
  .crayon-syntax .crayon-table {
82
  border: none !important;
83
  background: none !important;
248
  padding: 0 5px;
249
  }
250
 
251
+ .crayon-syntax-inline .crayon-pre,
252
+ .crayon-syntax-inline pre {
253
+ white-space: normal;
254
+ }
255
+
256
+ .crayon-syntax-inline-nowrap .crayon-pre,
257
+ .crayon-syntax-inline-nowrap pre {
258
+ white-space: pre;
259
+ }
260
+
261
  /* Default Font */
262
+ .crayon-syntax,
263
  .crayon-syntax * {
264
  font-family: Monaco, 'MonacoRegular', 'Courier New', monospace;
265
  font-size: 12px;
js/crayon.js CHANGED
@@ -59,7 +59,7 @@ jQuery.fn.style = function(styleName, value, priority) {
59
  return;
60
  }
61
  // CSSStyleDeclaration
62
- var style = this.get(0).style;
63
  // Getter/Setter
64
  if (typeof styleName != 'undefined') {
65
  if (typeof value != 'undefined') {
59
  return;
60
  }
61
  // CSSStyleDeclaration
62
+ var style = node.style;
63
  // Getter/Setter
64
  if (typeof styleName != 'undefined') {
65
  if (typeof value != 'undefined') {
langs/apache/apache.txt ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### APACHE LANGUAGE ###
2
+
3
+ # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
+
5
+ NAME Apache
6
+ VERSION 1.8.3
7
+
8
+ COMMENT #.*?$
9
+ STRING (?default)
10
+
11
+ TAGNAME:RESERVED (?<=<)(\s*/\s*)?[^>\s]+
12
+ TAG_DELIM:RESERVED <|(/\s*)?>
13
+ TAG_ATTR:ENTITY [^<>\s]+(?=[^<>]*\s*>)
14
+
15
+ VARIABLE (^\s*\b\w+\b(?=\s*=))|(\$\w+\b)
16
+ SPECIAL:VARIABLE %\{[^\}]*\}
17
+ OPTION:VARIABLE -\w+
18
+ ARRAY:CONSTANT \[[^]]*\]
19
+ RESERVED ^\s*\b\w+\b
20
+ CONSTANT (?default)
21
+ TEXT:IDENTIFIER [\w-]+
22
+ OPERATOR (?default)
23
+ SYMBOL (?default)
readme.txt CHANGED
@@ -22,6 +22,9 @@ It also supports some neat features like:
22
  * Remote request caching
23
  * <a href="http://ak.net84.net/projects/mixed-language-highlighting-in-crayon/" target="_blank">Mixed Language Highlighting</a> in a single Crayon
24
  * <a href="http://ak.net84.net/projects/mini-tags-in-crayon/" target="_blank">Mini Tags</a> like [php][/php]
 
 
 
25
  * Plain Tag ([plain]...[/plain]) for quick &lt;pre&gt;&lt;code&gt;...&lt;/code&gt;&lt;/pre&gt;
26
  * &lt;pre&gt; tag support
27
  * Mobile/touchscreen device detection
@@ -45,6 +48,7 @@ See http://ak.net84.net/projects/crayon-language-file-specification/ to learn ho
45
 
46
  * Default Langauge (one size fits all, highlights generic code)
47
  * ActionScript
 
48
  * AutoIt
49
  * C
50
  * C#
@@ -90,12 +94,11 @@ These are helpful for discovering new features.
90
 
91
  * <a href="http://ak.net84.net/projects/mixed-language-highlighting-in-crayon/" target="_blank">Mixed Language Highlighting in Crayon</a>
92
  * <a href="http://ak.net84.net/projects/mini-tags-in-crayon/" target="_blank">Mini Tags And Plain Tags In Crayon</a>
 
93
  * <a href="http://ak.net84.net/projects/enqueuing-themes-and-fonts-in-crayon/" target="_blank">Enqueuing Themes and Fonts in Crayon</a>
94
 
95
  **Planned Features**
96
 
97
- * Highlighting in sentences
98
- * Highlighting in comments
99
  * Visual Editor Support
100
  * Theme Editor
101
 
@@ -134,6 +137,14 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
134
 
135
  == Changelog ==
136
 
 
 
 
 
 
 
 
 
137
  = 1.8.2 =
138
  * Added AutoIt and PowerShell
139
  * Fixed a bug causing single line comments on the last line without carriage return to be ignored.
22
  * Remote request caching
23
  * <a href="http://ak.net84.net/projects/mixed-language-highlighting-in-crayon/" target="_blank">Mixed Language Highlighting</a> in a single Crayon
24
  * <a href="http://ak.net84.net/projects/mini-tags-in-crayon/" target="_blank">Mini Tags</a> like [php][/php]
25
+ * <a href="http://bit.ly/yFafFL" target="_blank">Inline Tags</a> floating in sentences
26
+ * Crayons in comments
27
+ * `Backquotes` become &lt;code&gt;
28
  * Plain Tag ([plain]...[/plain]) for quick &lt;pre&gt;&lt;code&gt;...&lt;/code&gt;&lt;/pre&gt;
29
  * &lt;pre&gt; tag support
30
  * Mobile/touchscreen device detection
48
 
49
  * Default Langauge (one size fits all, highlights generic code)
50
  * ActionScript
51
+ * Apache
52
  * AutoIt
53
  * C
54
  * C#
94
 
95
  * <a href="http://ak.net84.net/projects/mixed-language-highlighting-in-crayon/" target="_blank">Mixed Language Highlighting in Crayon</a>
96
  * <a href="http://ak.net84.net/projects/mini-tags-in-crayon/" target="_blank">Mini Tags And Plain Tags In Crayon</a>
97
+ * <a href="http://ak.net84.net/crayon/inline-crayons/" target="_blank">Inline Tags</a>
98
  * <a href="http://ak.net84.net/projects/enqueuing-themes-and-fonts-in-crayon/" target="_blank">Enqueuing Themes and Fonts in Crayon</a>
99
 
100
  **Planned Features**
101
 
 
 
102
  * Visual Editor Support
103
  * Theme Editor
104
 
137
 
138
  == Changelog ==
139
 
140
+ = 1.8.3 =
141
+ * Added inline support for Crayons using the inline="true" attribute or even cooler with {php}...{/php} style tags.
142
+ * `backquotes` become &lt;code&gt;
143
+ * Added support for Crayons in comments!
144
+ * Added Apache
145
+ * Fixed a bug causing irregular formatting of Crayons by increasing the priority of the_content filter, thanks to http://joshmountain.com/
146
+ * Added sample code for missing languages in Live Preview
147
+
148
  = 1.8.2 =
149
  * Added AutoIt and PowerShell
150
  * Fixed a bug causing single line comments on the last line without carriage return to be ignored.
themes/classic/classic.css CHANGED
@@ -13,6 +13,12 @@ Author URI: http://ak.net84.net/
13
  background: #fdfdfd !important;
14
  }
15
 
 
 
 
 
 
 
16
  /* Line Numbers */
17
  .crayon-theme-classic .crayon-nums {
18
  background: #dfefff !important;
13
  background: #fdfdfd !important;
14
  }
15
 
16
+ /* Inline Style */
17
+ .crayon-theme-classic-inline {
18
+ border: 1px solid #ddd !important;
19
+ background: #fafafa !important;
20
+ }
21
+
22
  /* Line Numbers */
23
  .crayon-theme-classic .crayon-nums {
24
  background: #dfefff !important;
themes/epicgeeks/epicgeeks.css CHANGED
@@ -12,6 +12,12 @@ Author URI: http://epicgeeks.net/
12
  background: #ffffe1 !important;
13
  }
14
 
 
 
 
 
 
 
15
  .crayon-theme-epicgeeks .crayon-nums {
16
  background: #ffff9f !important;
17
  color: #333333 !important;
12
  background: #ffffe1 !important;
13
  }
14
 
15
+ /* Inline Style */
16
+ .crayon-theme-epicgeeks-inline {
17
+ border: 1px solid #e1e1e1 !important;
18
+ background: #ffffe1 !important;
19
+ }
20
+
21
  .crayon-theme-epicgeeks .crayon-nums {
22
  background: #ffff9f !important;
23
  color: #333333 !important;
themes/neon/neon.css CHANGED
@@ -14,6 +14,12 @@ Author URI: http://ak.net84.net/
14
  color: #fff;
15
  }
16
 
 
 
 
 
 
 
17
  .crayon-theme-neon span {
18
  color: #999 !important;
19
  }
14
  color: #fff;
15
  }
16
 
17
+ /* Inline Style */
18
+ .crayon-theme-neon-inline {
19
+ border: 1px solid #333 !important;
20
+ background: #4d4d4d !important;
21
+ }
22
+
23
  .crayon-theme-neon span {
24
  color: #999 !important;
25
  }
themes/twilight/twilight.css CHANGED
@@ -14,6 +14,12 @@ Author URI: http://ak.net84.net/
14
  color: #fff;
15
  }
16
 
 
 
 
 
 
 
17
  .crayon-theme-twilight span {
18
  color: #999 !important;
19
  }
14
  color: #fff;
15
  }
16
 
17
+ /* Inline Style */
18
+ .crayon-theme-twilight-inline {
19
+ border: 1px solid #333 !important;
20
+ background: #4d4d4d !important;
21
+ }
22
+
23
  .crayon-theme-twilight span {
24
  color: #999 !important;
25
  }
trans/crayon-syntax-highlighter-de_DE.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-de_DE.po CHANGED
@@ -19,97 +19,100 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: ..\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:130
23
- #: crayon_settings.class.php:134
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:130
29
- #: crayon_settings.class.php:134
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:130
35
- #: crayon_settings.class.php:134
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Fix"
39
 
40
- #: crayon_settings.class.php:132
41
- #: crayon_settings.class.php:136
 
 
 
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
- #: crayon_settings.class.php:132
47
- #: crayon_settings.class.php:136
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Prozent"
51
 
52
- #: crayon_settings.class.php:145
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Keine"
56
 
57
- #: crayon_settings.class.php:145
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Links"
61
 
62
- #: crayon_settings.class.php:145
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Mitte"
66
 
67
- #: crayon_settings.class.php:145
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Rechts"
71
 
72
- #: crayon_settings.class.php:147
73
- #: crayon_settings.class.php:169
74
  #@ crayon-syntax-highlighter
75
  msgid "On MouseOver"
76
  msgstr "Bei MouseOver"
77
 
78
- #: crayon_settings.class.php:147
79
- #: crayon_settings.class.php:153
80
  #@ crayon-syntax-highlighter
81
  msgid "Always"
82
  msgstr "Immer"
83
 
84
- #: crayon_settings.class.php:147
85
- #: crayon_settings.class.php:153
86
  #@ crayon-syntax-highlighter
87
  msgid "Never"
88
  msgstr "Nie"
89
 
90
- #: crayon_settings.class.php:153
91
  #@ crayon-syntax-highlighter
92
  msgid "When Found"
93
  msgstr "Wenn gefunden"
94
 
95
- #: crayon_settings.class.php:169
96
  #@ crayon-syntax-highlighter
97
  msgid "On Double Click"
98
  msgstr "Bei Doppelklick"
99
 
100
- #: crayon_settings.class.php:169
101
  #@ crayon-syntax-highlighter
102
  msgid "On Single Click"
103
  msgstr "Bei Mausklick"
104
 
105
- #: crayon_settings.class.php:177
106
  #@ crayon-syntax-highlighter
107
  msgid "An error has occurred. Please try again later."
108
  msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
109
 
110
  #: crayon_settings_wp.class.php:39
111
  #: crayon_settings_wp.class.php:82
112
- #: crayon_settings_wp.class.php:710
113
  #@ crayon-syntax-highlighter
114
  msgid "Settings"
115
  msgstr "Einstellungen"
@@ -129,323 +132,323 @@ msgstr "Änderungen speichern"
129
  msgid "Reset Settings"
130
  msgstr "Einstellungen zurücksetzen"
131
 
132
- #: crayon_settings_wp.class.php:437
133
  #@ crayon-syntax-highlighter
134
  msgid "Height"
135
  msgstr "Höhe"
136
 
137
- #: crayon_settings_wp.class.php:443
138
  #@ crayon-syntax-highlighter
139
  msgid "Width"
140
  msgstr "Breite"
141
 
142
- #: crayon_settings_wp.class.php:449
143
  #@ crayon-syntax-highlighter
144
  msgid "Top Margin"
145
  msgstr "Oberer Rand"
146
 
147
- #: crayon_settings_wp.class.php:450
148
  #@ crayon-syntax-highlighter
149
  msgid "Bottom Margin"
150
  msgstr "Unterer Rand"
151
 
152
- #: crayon_settings_wp.class.php:451
153
- #: crayon_settings_wp.class.php:456
154
  #@ crayon-syntax-highlighter
155
  msgid "Left Margin"
156
  msgstr "Linker Rand"
157
 
158
- #: crayon_settings_wp.class.php:452
159
- #: crayon_settings_wp.class.php:456
160
  #@ crayon-syntax-highlighter
161
  msgid "Right Margin"
162
  msgstr "Rechter Rand"
163
 
164
- #: crayon_settings_wp.class.php:462
165
  #@ crayon-syntax-highlighter
166
  msgid "Horizontal Alignment"
167
  msgstr "Horizontale Ausrichtung"
168
 
169
- #: crayon_settings_wp.class.php:465
170
  #@ crayon-syntax-highlighter
171
  msgid "Allow floating elements to surround Crayon"
172
  msgstr "Crayon in Floating Elemente einbetten"
173
 
174
- #: crayon_settings_wp.class.php:470
175
  #@ crayon-syntax-highlighter
176
  msgid "Display the Toolbar"
177
  msgstr "Symbolleiste anzeigen"
178
 
179
- #: crayon_settings_wp.class.php:473
180
  #@ crayon-syntax-highlighter
181
  msgid "Overlay the toolbar on code rather than push it down when possible"
182
  msgstr "Versuchen mit Symbolleiste Code zu überlagern statt zu verschieben"
183
 
184
- #: crayon_settings_wp.class.php:474
185
  #@ crayon-syntax-highlighter
186
  msgid "Toggle the toolbar on single click when it is overlayed"
187
  msgstr "Symbolleiste mit Klick umschalten wenn als Overlay"
188
 
189
- #: crayon_settings_wp.class.php:475
190
  #@ crayon-syntax-highlighter
191
  msgid "Delay hiding the toolbar on MouseOut"
192
  msgstr "Nach MouseOut Symbolleiste verzögert ausblenden"
193
 
194
- #: crayon_settings_wp.class.php:477
195
  #@ crayon-syntax-highlighter
196
  msgid "Display the title when provided"
197
  msgstr "Titel anzeigen wenn vorhanden"
198
 
199
- #: crayon_settings_wp.class.php:478
200
  #@ crayon-syntax-highlighter
201
  msgid "Display the language"
202
  msgstr "Anzeige der Sprache"
203
 
204
- #: crayon_settings_wp.class.php:483
205
  #@ crayon-syntax-highlighter
206
  msgid "Display striped code lines"
207
  msgstr "Anzeige gestreifte Codezeilen"
208
 
209
- #: crayon_settings_wp.class.php:484
210
  #@ crayon-syntax-highlighter
211
  msgid "Enable line marking for important lines"
212
  msgstr "wichtige Zeilen markieren"
213
 
214
- #: crayon_settings_wp.class.php:485
215
  #@ crayon-syntax-highlighter
216
  msgid "Display line numbers by default"
217
  msgstr "Zeilennummern standardmäßig anzeigen"
218
 
219
- #: crayon_settings_wp.class.php:486
220
  #@ crayon-syntax-highlighter
221
  msgid "Enable line number toggling"
222
  msgstr "Zeilennummern umschaltbar"
223
 
224
- #: crayon_settings_wp.class.php:487
225
  #@ crayon-syntax-highlighter
226
  msgid "Start line numbers from"
227
  msgstr "Erste Zeilennummer"
228
 
229
- #: crayon_settings_wp.class.php:497
230
  #@ crayon-syntax-highlighter
231
  msgid "When no language is provided, use the fallback"
232
  msgstr "Wenn keine Sprache festgelegt wird als Standard verwenden"
233
 
234
- #: crayon_settings_wp.class.php:505
235
  #@ crayon-syntax-highlighter
236
  msgid "Parsing was successful"
237
  msgstr "Laden erfolgreich"
238
 
239
- #: crayon_settings_wp.class.php:505
240
  #@ crayon-syntax-highlighter
241
  msgid "Parsing was unsuccessful"
242
  msgstr "Laden fehlgeschlagen"
243
 
244
- #: crayon_settings_wp.class.php:511
245
  #, php-format
246
  #@ crayon-syntax-highlighter
247
  msgid "The selected language with id %s could not be loaded"
248
  msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
249
 
250
- #: crayon_settings_wp.class.php:515
251
  #@ crayon-syntax-highlighter
252
  msgid "Show Languages"
253
  msgstr "Zeige Sprachen"
254
 
255
- #: crayon_settings_wp.class.php:552
256
  #@ crayon-syntax-highlighter
257
  msgid "Enable Live Preview"
258
  msgstr "Live-Vorschau aktivieren"
259
 
260
- #: crayon_settings_wp.class.php:557
261
  #, php-format
262
  #@ crayon-syntax-highlighter
263
  msgid "The selected theme with id %s could not be loaded"
264
  msgstr "Das gewählte Theme mit id %s konnte nicht geladen werden"
265
 
266
- #: crayon_settings_wp.class.php:575
267
  #@ crayon-syntax-highlighter
268
  msgid "Custom Font Size"
269
  msgstr "Benutzerdefinierte Schriftgröße"
270
 
271
- #: crayon_settings_wp.class.php:580
272
  #, php-format
273
  #@ crayon-syntax-highlighter
274
  msgid "The selected font with id %s could not be loaded"
275
  msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
276
 
277
- #: crayon_settings_wp.class.php:587
278
  #@ crayon-syntax-highlighter
279
  msgid "Enable plain code view and display"
280
  msgstr "Unformatierte Code-Ansicht ermöglichen"
281
 
282
- #: crayon_settings_wp.class.php:592
283
  #@ crayon-syntax-highlighter
284
  msgid "Enable code copy/paste"
285
  msgstr "Code kopieren/einfügen ermöglichen"
286
 
287
- #: crayon_settings_wp.class.php:594
288
  #@ crayon-syntax-highlighter
289
  msgid "Enable opening code in a window"
290
  msgstr "Code in neuem Fenster anzeigbar machen"
291
 
292
- #: crayon_settings_wp.class.php:596
293
  #@ crayon-syntax-highlighter
294
  msgid "Tab size in spaces"
295
  msgstr "Anzahl Leerzeichen für Tabulator"
296
 
297
- #: crayon_settings_wp.class.php:598
298
  #@ crayon-syntax-highlighter
299
  msgid "Remove whitespace surrounding the shortcode content"
300
  msgstr "Leerzeichen um den Shortcode Inhalt entfernen"
301
 
302
- #: crayon_settings_wp.class.php:608
303
  #@ crayon-syntax-highlighter
304
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
305
  msgstr "Wenn beim Laden von lokalen Dateien ein relativer Pfad für die URL angegeben ist den absoluten Pfad verwenden"
306
 
307
- #: crayon_settings_wp.class.php:615
308
  #@ crayon-syntax-highlighter
309
  msgid "Clear the cache used to store remote code requests"
310
  msgstr "Cache für Remote Code Requests leeren"
311
 
312
- #: crayon_settings_wp.class.php:617
313
  #@ crayon-syntax-highlighter
314
  msgid "Clear Now"
315
  msgstr "Jetzt löschen"
316
 
317
- #: crayon_settings_wp.class.php:621
318
  #@ crayon-syntax-highlighter
319
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
320
  msgstr "Deaktiviere Mausgesten für Touchscreen-Geräte (z.B. MouseOver)"
321
 
322
- #: crayon_settings_wp.class.php:622
323
  #@ crayon-syntax-highlighter
324
  msgid "Disable animations"
325
  msgstr "Deaktiviere Animationen"
326
 
327
- #: crayon_settings_wp.class.php:623
328
  #@ crayon-syntax-highlighter
329
  msgid "Disable runtime stats"
330
  msgstr "Deaktiviere Laufzeit Statistiken"
331
 
332
- #: crayon_settings_wp.class.php:630
333
  #@ crayon-syntax-highlighter
334
  msgid "Log errors for individual Crayons"
335
  msgstr "Protokolliere Fehler für individuelle Crayons"
336
 
337
- #: crayon_settings_wp.class.php:631
338
  #@ crayon-syntax-highlighter
339
  msgid "Log system-wide errors"
340
  msgstr "Protokolliere systemweite Fehler"
341
 
342
- #: crayon_settings_wp.class.php:632
343
  #@ crayon-syntax-highlighter
344
  msgid "Display custom message for errors"
345
  msgstr "Benutzerdefinierte Meldungen für Fehler anzeigen"
346
 
347
- #: crayon_settings_wp.class.php:644
348
  #@ crayon-syntax-highlighter
349
  msgid "Show Log"
350
  msgstr "Protokoll anzeigen"
351
 
352
- #: crayon_settings_wp.class.php:646
353
  #@ crayon-syntax-highlighter
354
  msgid "Clear Log"
355
  msgstr "Protokoll löschen"
356
 
357
- #: crayon_settings_wp.class.php:647
358
  #@ crayon-syntax-highlighter
359
  msgid "Email Admin"
360
  msgstr "E-Mail Admin"
361
 
362
- #: crayon_settings_wp.class.php:649
363
  #@ crayon-syntax-highlighter
364
  msgid "Email Developer"
365
  msgstr "E-Mail Entwickler"
366
 
367
- #: crayon_settings_wp.class.php:665
368
  #@ crayon-syntax-highlighter
369
  msgid "Version"
370
  msgstr "Version"
371
 
372
- #: crayon_settings_wp.class.php:667
373
  #@ crayon-syntax-highlighter
374
  msgid "Developer"
375
  msgstr "Entwickler"
376
 
377
- #: crayon_settings_wp.class.php:698
378
  #@ crayon-syntax-highlighter
379
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
380
  msgstr "Crayon ist das Ergebnis unzähliger Stunden harter Arbeit über viele Monate hinweg. Das Plugin wird laufend weiterentwickelt. Schreib mir wenn es Dir gefällt!"
381
 
382
- #: crayon_settings_wp.class.php:549
383
  #, php-format
384
  #@ crayon-syntax-highlighter
385
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
386
  msgstr "Ändern Sie die %1$sStandard Sprache%2$s um den Beispielcode zu ändern. Zeilen 5-7 sind markiert."
387
 
388
- #: crayon_settings.class.php:101
389
  #@ crayon-syntax-highlighter
390
  msgid "Hourly"
391
  msgstr "Stündlich"
392
 
393
- #: crayon_settings.class.php:101
394
  #@ crayon-syntax-highlighter
395
  msgid "Daily"
396
  msgstr "Täglich"
397
 
398
- #: crayon_settings.class.php:102
399
  #@ crayon-syntax-highlighter
400
  msgid "Weekly"
401
  msgstr "Wöchentlich"
402
 
403
- #: crayon_settings.class.php:102
404
  #@ crayon-syntax-highlighter
405
  msgid "Monthly"
406
  msgstr "Monatlich"
407
 
408
- #: crayon_settings.class.php:103
409
  #@ crayon-syntax-highlighter
410
  msgid "Immediately"
411
  msgstr "Sofort"
412
 
413
- #: crayon_settings_wp.class.php:423
414
  #@ crayon-syntax-highlighter
415
  msgid "Crayon Help"
416
  msgstr "Crayon Hilfe"
417
 
418
- #: crayon_settings_wp.class.php:618
419
  #@ crayon-syntax-highlighter
420
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
421
  msgstr "Versuchen Crayon CSS und JavaScript nur bei Bedarf zu laden"
422
 
423
- #: crayon_settings_wp.class.php:611
424
  #@ crayon-syntax-highlighter
425
  msgid "Followed by your relative URL."
426
  msgstr "Gefolgt von Ihrer relativen URL."
427
 
428
- #: crayon_settings_wp.class.php:651
429
  #@ crayon-syntax-highlighter
430
  msgid "The log is currently empty."
431
  msgstr "Das Protokoll ist derzeit leer."
432
 
433
- #: crayon_settings_wp.class.php:653
434
  #@ crayon-syntax-highlighter
435
  msgid "The log file exists and is writable."
436
  msgstr "Die Protokolldatei existiert und ist beschreibbar."
437
 
438
- #: crayon_settings_wp.class.php:653
439
  #@ crayon-syntax-highlighter
440
  msgid "The log file exists and is not writable."
441
  msgstr "Die Protokolldatei existiert und ist nicht beschreibbar."
442
 
443
- #: crayon_settings_wp.class.php:655
444
  #@ crayon-syntax-highlighter
445
  msgid "The log file does not exist and is not writable."
446
  msgstr "Die Protokolldatei existiert nicht und ist nicht schreibbar."
447
 
448
- #: crayon_settings_wp.class.php:504
449
  #, php-format
450
  #@ crayon-syntax-highlighter
451
  msgid "%d language has been detected."
@@ -453,53 +456,57 @@ msgid_plural "%d languages have been detected."
453
  msgstr[0] "%d Sprache wurde erkannt."
454
  msgstr[1] "%d Sprachen wurden erkannt."
455
 
456
- #: crayon_settings_wp.class.php:599
457
  #@ crayon-syntax-highlighter
458
  msgid "Capture &lt;pre&gt; tags as Crayons"
459
  msgstr "&lt;pre&gt; tags wie Crayons behandeln"
460
 
461
- #: crayon_settings_wp.class.php:554
462
- #: crayon_settings_wp.class.php:583
463
- #: crayon_settings_wp.class.php:600
464
- #: crayon_settings_wp.class.php:601
465
- #: crayon_settings_wp.class.php:602
466
- #: crayon_settings_wp.class.php:618
467
- #: crayon_settings_wp.class.php:619
 
 
 
 
468
  #@ crayon-syntax-highlighter
469
  msgid "Learn More"
470
  msgstr "Erfahren Sie mehr"
471
 
472
- #: crayon_settings_wp.class.php:603
473
  #@ crayon-syntax-highlighter
474
  msgid "Show Mixed Language Icon (+)"
475
  msgstr "Zeige gemischte Sprachen Symbol (+)"
476
 
477
- #: crayon_settings_wp.class.php:602
478
  #@ crayon-syntax-highlighter
479
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
480
  msgstr "Erlaube Hervorhebung gemischter Sprachen mit Trennzeichen und Tags."
481
 
482
- #: crayon_settings_wp.class.php:600
483
  #@ crayon-syntax-highlighter
484
  msgid "Capture Mini Tags like [php][/php] as Crayons."
485
  msgstr "Mini Tags wie [php][/php] als Crayons behandeln."
486
 
487
- #: crayon_settings_wp.class.php:601
488
  #@ crayon-syntax-highlighter
489
  msgid "Enable [plain][/plain] tag."
490
  msgstr "Aktiviere [plain][/plain] Tag."
491
 
492
- #: crayon_settings.class.php:169
493
  #@ crayon-syntax-highlighter
494
  msgid "Disable Mouse Events"
495
  msgstr "Mausereignisse deaktivieren"
496
 
497
- #: crayon_settings_wp.class.php:590
498
  #@ crayon-syntax-highlighter
499
  msgid "Enable plain code toggling"
500
  msgstr "Umschaltung auf unformatierte Anzeige ermöglichen"
501
 
502
- #: crayon_settings_wp.class.php:591
503
  #@ crayon-syntax-highlighter
504
  msgid "Show the plain code by default"
505
  msgstr "Unformatierten Code standardmäßig anzeigen"
@@ -534,7 +541,7 @@ msgstr ""
534
  msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
535
  msgstr "Unterstützt mehrere Sprachen und Themes. Hervorhebung von Code aus einer URL, lokalen Datei oder Artikeltext."
536
 
537
- #: crayon_settings_wp.class.php:714
538
  #@ crayon-syntax-highlighter
539
  msgid "Donate"
540
  msgstr "Spenden"
@@ -574,74 +581,74 @@ msgstr "Zeilen"
574
  msgid "Code"
575
  msgstr "Code"
576
 
577
- #: crayon_settings_wp.class.php:226
578
  #@ crayon-syntax-highlighter
579
  msgid "Languages"
580
  msgstr "Sprachen"
581
 
582
- #: crayon_settings_wp.class.php:227
583
  #@ crayon-syntax-highlighter
584
  msgid "Files"
585
  msgstr "Dateien"
586
 
587
- #: crayon_settings_wp.class.php:228
588
  #@ crayon-syntax-highlighter
589
  msgid "Misc"
590
  msgstr "Sonstiges"
591
 
592
- #: crayon_settings_wp.class.php:231
593
  #@ crayon-syntax-highlighter
594
  msgid "Debug"
595
  msgstr "Debuggen"
596
 
597
- #: crayon_settings_wp.class.php:232
598
  #@ crayon-syntax-highlighter
599
  msgid "Errors"
600
  msgstr "Fehler"
601
 
602
- #: crayon_settings_wp.class.php:233
603
  #@ crayon-syntax-highlighter
604
  msgid "Log"
605
  msgstr "Protokoll"
606
 
607
- #: crayon_settings_wp.class.php:236
608
  #@ crayon-syntax-highlighter
609
  msgid "About"
610
  msgstr "Über"
611
 
612
- #: crayon_settings_wp.class.php:554
613
  #@ crayon-syntax-highlighter
614
  msgid "Enqueue themes in the header (more efficient)."
615
  msgstr "Themes im Header laden (effizienter)."
616
 
617
- #: crayon_settings_wp.class.php:583
618
  #@ crayon-syntax-highlighter
619
  msgid "Enqueue fonts in the header (more efficient)."
620
  msgstr "Schriftarten im Header laden (effizienter)."
621
 
622
- #: crayon_settings_wp.class.php:545
623
  #@ crayon-syntax-highlighter
624
  msgid "Loading..."
625
  msgstr "Lade..."
626
 
627
- #: crayon_settings_wp.class.php:545
628
- #: crayon_settings_wp.class.php:712
629
  #: util/theme-editor/editor.php:14
630
  #@ crayon-syntax-highlighter
631
  msgid "Theme Editor"
632
  msgstr "Thema Editor"
633
 
634
- #: crayon_settings_wp.class.php:595
635
  #@ crayon-syntax-highlighter
636
  msgid "Always display scrollbars"
637
  msgstr "Immer Scrollbalken anzeigen"
638
 
639
- #: crayon_settings_wp.class.php:619
640
  #@ crayon-syntax-highlighter
641
  msgid "Disable enqueuing for page templates that may contain The Loop."
642
  msgstr "Deaktiviere Laden im Header für Themes die The Loop verwenden"
643
 
644
- #: crayon_settings_wp.class.php:620
645
  #@ crayon-syntax-highlighter
646
  msgid "Load Crayons only from the main Wordpress query"
647
  msgstr "Crayons nur aus der main Wordpress query laden"
@@ -651,50 +658,80 @@ msgstr "Crayons nur aus der main Wordpress query laden"
651
  msgid "Back To Settings"
652
  msgstr "Zurück zu Einstellungen"
653
 
654
- #: crayon_settings_wp.class.php:668
655
  #@ crayon-syntax-highlighter
656
  msgid "Translators"
657
  msgstr "Übersetzer"
658
 
659
- #: crayon_formatter.class.php:203
660
  #@ crayon-syntax-highlighter
661
  msgid "Toggle Plain Code"
662
  msgstr "Unformatierte Code-Ansicht"
663
 
664
- #: crayon_formatter.class.php:205
665
  #@ crayon-syntax-highlighter
666
  msgid "Copy Plain Code"
667
  msgstr "Unformatierten Code kopieren"
668
 
669
- #: crayon_formatter.class.php:211
670
  #@ crayon-syntax-highlighter
671
  msgid "Open Code In New Window"
672
  msgstr "Code in einem neuen Fenster anzeigen"
673
 
674
- #: crayon_formatter.class.php:214
675
  #@ crayon-syntax-highlighter
676
  msgid "Toggle Line Numbers"
677
  msgstr "Zeilennummern"
678
 
679
- #: crayon_formatter.class.php:221
680
  #@ crayon-syntax-highlighter
681
  msgid "Contains Mixed Languages"
682
  msgstr "Enthält verschiedene Sprachen"
683
 
684
- #: crayon_settings_wp.class.php:644
685
  #@ crayon-syntax-highlighter
686
  msgid "Hide Log"
687
  msgstr "Protokoll ausblenden"
688
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
689
  #. translators: plugin header field 'Version'
690
  #: crayon_wp.class.php:0
691
  #@ crayon-syntax-highlighter
692
- msgid "1.7.26"
693
  msgstr ""
694
 
695
- #: crayon_formatter.class.php:205
696
- #, php-format
697
  #@ crayon-syntax-highlighter
698
- msgid "Press %s to Copy, %s to Paste"
699
- msgstr "Drücken Sie %s zum Kopieren, %s zum Einfügen"
700
 
19
  "X-Poedit-SearchPath-0: ..\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:135
23
+ #: crayon_settings.class.php:139
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
+ #: crayon_settings.class.php:135
29
+ #: crayon_settings.class.php:139
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
+ #: crayon_settings.class.php:135
35
+ #: crayon_settings.class.php:139
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Fix"
39
 
40
+ #: crayon_settings.class.php:137
41
+ #: crayon_settings.class.php:141
42
+ #: crayon_settings_wp.class.php:461
43
+ #: crayon_settings_wp.class.php:470
44
+ #: crayon_settings_wp.class.php:581
45
  #@ crayon-syntax-highlighter
46
  msgid "Pixels"
47
  msgstr "Pixels"
48
 
49
+ #: crayon_settings.class.php:137
50
+ #: crayon_settings.class.php:141
51
  #@ crayon-syntax-highlighter
52
  msgid "Percent"
53
  msgstr "Prozent"
54
 
55
+ #: crayon_settings.class.php:150
56
  #@ crayon-syntax-highlighter
57
  msgid "None"
58
  msgstr "Keine"
59
 
60
+ #: crayon_settings.class.php:150
61
  #@ crayon-syntax-highlighter
62
  msgid "Left"
63
  msgstr "Links"
64
 
65
+ #: crayon_settings.class.php:150
66
  #@ crayon-syntax-highlighter
67
  msgid "Center"
68
  msgstr "Mitte"
69
 
70
+ #: crayon_settings.class.php:150
71
  #@ crayon-syntax-highlighter
72
  msgid "Right"
73
  msgstr "Rechts"
74
 
75
+ #: crayon_settings.class.php:152
76
+ #: crayon_settings.class.php:174
77
  #@ crayon-syntax-highlighter
78
  msgid "On MouseOver"
79
  msgstr "Bei MouseOver"
80
 
81
+ #: crayon_settings.class.php:152
82
+ #: crayon_settings.class.php:158
83
  #@ crayon-syntax-highlighter
84
  msgid "Always"
85
  msgstr "Immer"
86
 
87
+ #: crayon_settings.class.php:152
88
+ #: crayon_settings.class.php:158
89
  #@ crayon-syntax-highlighter
90
  msgid "Never"
91
  msgstr "Nie"
92
 
93
+ #: crayon_settings.class.php:158
94
  #@ crayon-syntax-highlighter
95
  msgid "When Found"
96
  msgstr "Wenn gefunden"
97
 
98
+ #: crayon_settings.class.php:174
99
  #@ crayon-syntax-highlighter
100
  msgid "On Double Click"
101
  msgstr "Bei Doppelklick"
102
 
103
+ #: crayon_settings.class.php:174
104
  #@ crayon-syntax-highlighter
105
  msgid "On Single Click"
106
  msgstr "Bei Mausklick"
107
 
108
+ #: crayon_settings.class.php:182
109
  #@ crayon-syntax-highlighter
110
  msgid "An error has occurred. Please try again later."
111
  msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
112
 
113
  #: crayon_settings_wp.class.php:39
114
  #: crayon_settings_wp.class.php:82
115
+ #: crayon_settings_wp.class.php:713
116
  #@ crayon-syntax-highlighter
117
  msgid "Settings"
118
  msgstr "Einstellungen"
132
  msgid "Reset Settings"
133
  msgstr "Einstellungen zurücksetzen"
134
 
135
+ #: crayon_settings_wp.class.php:438
136
  #@ crayon-syntax-highlighter
137
  msgid "Height"
138
  msgstr "Höhe"
139
 
140
+ #: crayon_settings_wp.class.php:444
141
  #@ crayon-syntax-highlighter
142
  msgid "Width"
143
  msgstr "Breite"
144
 
145
+ #: crayon_settings_wp.class.php:450
146
  #@ crayon-syntax-highlighter
147
  msgid "Top Margin"
148
  msgstr "Oberer Rand"
149
 
150
+ #: crayon_settings_wp.class.php:451
151
  #@ crayon-syntax-highlighter
152
  msgid "Bottom Margin"
153
  msgstr "Unterer Rand"
154
 
155
+ #: crayon_settings_wp.class.php:452
156
+ #: crayon_settings_wp.class.php:457
157
  #@ crayon-syntax-highlighter
158
  msgid "Left Margin"
159
  msgstr "Linker Rand"
160
 
161
+ #: crayon_settings_wp.class.php:453
162
+ #: crayon_settings_wp.class.php:457
163
  #@ crayon-syntax-highlighter
164
  msgid "Right Margin"
165
  msgstr "Rechter Rand"
166
 
167
+ #: crayon_settings_wp.class.php:463
168
  #@ crayon-syntax-highlighter
169
  msgid "Horizontal Alignment"
170
  msgstr "Horizontale Ausrichtung"
171
 
172
+ #: crayon_settings_wp.class.php:466
173
  #@ crayon-syntax-highlighter
174
  msgid "Allow floating elements to surround Crayon"
175
  msgstr "Crayon in Floating Elemente einbetten"
176
 
177
+ #: crayon_settings_wp.class.php:474
178
  #@ crayon-syntax-highlighter
179
  msgid "Display the Toolbar"
180
  msgstr "Symbolleiste anzeigen"
181
 
182
+ #: crayon_settings_wp.class.php:477
183
  #@ crayon-syntax-highlighter
184
  msgid "Overlay the toolbar on code rather than push it down when possible"
185
  msgstr "Versuchen mit Symbolleiste Code zu überlagern statt zu verschieben"
186
 
187
+ #: crayon_settings_wp.class.php:478
188
  #@ crayon-syntax-highlighter
189
  msgid "Toggle the toolbar on single click when it is overlayed"
190
  msgstr "Symbolleiste mit Klick umschalten wenn als Overlay"
191
 
192
+ #: crayon_settings_wp.class.php:479
193
  #@ crayon-syntax-highlighter
194
  msgid "Delay hiding the toolbar on MouseOut"
195
  msgstr "Nach MouseOut Symbolleiste verzögert ausblenden"
196
 
197
+ #: crayon_settings_wp.class.php:481
198
  #@ crayon-syntax-highlighter
199
  msgid "Display the title when provided"
200
  msgstr "Titel anzeigen wenn vorhanden"
201
 
202
+ #: crayon_settings_wp.class.php:482
203
  #@ crayon-syntax-highlighter
204
  msgid "Display the language"
205
  msgstr "Anzeige der Sprache"
206
 
207
+ #: crayon_settings_wp.class.php:487
208
  #@ crayon-syntax-highlighter
209
  msgid "Display striped code lines"
210
  msgstr "Anzeige gestreifte Codezeilen"
211
 
212
+ #: crayon_settings_wp.class.php:488
213
  #@ crayon-syntax-highlighter
214
  msgid "Enable line marking for important lines"
215
  msgstr "wichtige Zeilen markieren"
216
 
217
+ #: crayon_settings_wp.class.php:489
218
  #@ crayon-syntax-highlighter
219
  msgid "Display line numbers by default"
220
  msgstr "Zeilennummern standardmäßig anzeigen"
221
 
222
+ #: crayon_settings_wp.class.php:490
223
  #@ crayon-syntax-highlighter
224
  msgid "Enable line number toggling"
225
  msgstr "Zeilennummern umschaltbar"
226
 
227
+ #: crayon_settings_wp.class.php:491
228
  #@ crayon-syntax-highlighter
229
  msgid "Start line numbers from"
230
  msgstr "Erste Zeilennummer"
231
 
232
+ #: crayon_settings_wp.class.php:501
233
  #@ crayon-syntax-highlighter
234
  msgid "When no language is provided, use the fallback"
235
  msgstr "Wenn keine Sprache festgelegt wird als Standard verwenden"
236
 
237
+ #: crayon_settings_wp.class.php:509
238
  #@ crayon-syntax-highlighter
239
  msgid "Parsing was successful"
240
  msgstr "Laden erfolgreich"
241
 
242
+ #: crayon_settings_wp.class.php:509
243
  #@ crayon-syntax-highlighter
244
  msgid "Parsing was unsuccessful"
245
  msgstr "Laden fehlgeschlagen"
246
 
247
+ #: crayon_settings_wp.class.php:515
248
  #, php-format
249
  #@ crayon-syntax-highlighter
250
  msgid "The selected language with id %s could not be loaded"
251
  msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
252
 
253
+ #: crayon_settings_wp.class.php:519
254
  #@ crayon-syntax-highlighter
255
  msgid "Show Languages"
256
  msgstr "Zeige Sprachen"
257
 
258
+ #: crayon_settings_wp.class.php:556
259
  #@ crayon-syntax-highlighter
260
  msgid "Enable Live Preview"
261
  msgstr "Live-Vorschau aktivieren"
262
 
263
+ #: crayon_settings_wp.class.php:561
264
  #, php-format
265
  #@ crayon-syntax-highlighter
266
  msgid "The selected theme with id %s could not be loaded"
267
  msgstr "Das gewählte Theme mit id %s konnte nicht geladen werden"
268
 
269
+ #: crayon_settings_wp.class.php:579
270
  #@ crayon-syntax-highlighter
271
  msgid "Custom Font Size"
272
  msgstr "Benutzerdefinierte Schriftgröße"
273
 
274
+ #: crayon_settings_wp.class.php:584
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected font with id %s could not be loaded"
278
  msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
279
 
280
+ #: crayon_settings_wp.class.php:591
281
  #@ crayon-syntax-highlighter
282
  msgid "Enable plain code view and display"
283
  msgstr "Unformatierte Code-Ansicht ermöglichen"
284
 
285
+ #: crayon_settings_wp.class.php:596
286
  #@ crayon-syntax-highlighter
287
  msgid "Enable code copy/paste"
288
  msgstr "Code kopieren/einfügen ermöglichen"
289
 
290
+ #: crayon_settings_wp.class.php:598
291
  #@ crayon-syntax-highlighter
292
  msgid "Enable opening code in a window"
293
  msgstr "Code in neuem Fenster anzeigbar machen"
294
 
295
+ #: crayon_settings_wp.class.php:600
296
  #@ crayon-syntax-highlighter
297
  msgid "Tab size in spaces"
298
  msgstr "Anzahl Leerzeichen für Tabulator"
299
 
300
+ #: crayon_settings_wp.class.php:602
301
  #@ crayon-syntax-highlighter
302
  msgid "Remove whitespace surrounding the shortcode content"
303
  msgstr "Leerzeichen um den Shortcode Inhalt entfernen"
304
 
305
+ #: crayon_settings_wp.class.php:618
306
  #@ crayon-syntax-highlighter
307
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
308
  msgstr "Wenn beim Laden von lokalen Dateien ein relativer Pfad für die URL angegeben ist den absoluten Pfad verwenden"
309
 
310
+ #: crayon_settings_wp.class.php:625
311
  #@ crayon-syntax-highlighter
312
  msgid "Clear the cache used to store remote code requests"
313
  msgstr "Cache für Remote Code Requests leeren"
314
 
315
+ #: crayon_settings_wp.class.php:627
316
  #@ crayon-syntax-highlighter
317
  msgid "Clear Now"
318
  msgstr "Jetzt löschen"
319
 
320
+ #: crayon_settings_wp.class.php:632
321
  #@ crayon-syntax-highlighter
322
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
323
  msgstr "Deaktiviere Mausgesten für Touchscreen-Geräte (z.B. MouseOver)"
324
 
325
+ #: crayon_settings_wp.class.php:633
326
  #@ crayon-syntax-highlighter
327
  msgid "Disable animations"
328
  msgstr "Deaktiviere Animationen"
329
 
330
+ #: crayon_settings_wp.class.php:634
331
  #@ crayon-syntax-highlighter
332
  msgid "Disable runtime stats"
333
  msgstr "Deaktiviere Laufzeit Statistiken"
334
 
335
+ #: crayon_settings_wp.class.php:641
336
  #@ crayon-syntax-highlighter
337
  msgid "Log errors for individual Crayons"
338
  msgstr "Protokolliere Fehler für individuelle Crayons"
339
 
340
+ #: crayon_settings_wp.class.php:642
341
  #@ crayon-syntax-highlighter
342
  msgid "Log system-wide errors"
343
  msgstr "Protokolliere systemweite Fehler"
344
 
345
+ #: crayon_settings_wp.class.php:643
346
  #@ crayon-syntax-highlighter
347
  msgid "Display custom message for errors"
348
  msgstr "Benutzerdefinierte Meldungen für Fehler anzeigen"
349
 
350
+ #: crayon_settings_wp.class.php:655
351
  #@ crayon-syntax-highlighter
352
  msgid "Show Log"
353
  msgstr "Protokoll anzeigen"
354
 
355
+ #: crayon_settings_wp.class.php:657
356
  #@ crayon-syntax-highlighter
357
  msgid "Clear Log"
358
  msgstr "Protokoll löschen"
359
 
360
+ #: crayon_settings_wp.class.php:658
361
  #@ crayon-syntax-highlighter
362
  msgid "Email Admin"
363
  msgstr "E-Mail Admin"
364
 
365
+ #: crayon_settings_wp.class.php:660
366
  #@ crayon-syntax-highlighter
367
  msgid "Email Developer"
368
  msgstr "E-Mail Entwickler"
369
 
370
+ #: crayon_settings_wp.class.php:676
371
  #@ crayon-syntax-highlighter
372
  msgid "Version"
373
  msgstr "Version"
374
 
375
+ #: crayon_settings_wp.class.php:678
376
  #@ crayon-syntax-highlighter
377
  msgid "Developer"
378
  msgstr "Entwickler"
379
 
380
+ #: crayon_settings_wp.class.php:701
381
  #@ crayon-syntax-highlighter
382
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
383
  msgstr "Crayon ist das Ergebnis unzähliger Stunden harter Arbeit über viele Monate hinweg. Das Plugin wird laufend weiterentwickelt. Schreib mir wenn es Dir gefällt!"
384
 
385
+ #: crayon_settings_wp.class.php:553
386
  #, php-format
387
  #@ crayon-syntax-highlighter
388
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
389
  msgstr "Ändern Sie die %1$sStandard Sprache%2$s um den Beispielcode zu ändern. Zeilen 5-7 sind markiert."
390
 
391
+ #: crayon_settings.class.php:106
392
  #@ crayon-syntax-highlighter
393
  msgid "Hourly"
394
  msgstr "Stündlich"
395
 
396
+ #: crayon_settings.class.php:106
397
  #@ crayon-syntax-highlighter
398
  msgid "Daily"
399
  msgstr "Täglich"
400
 
401
+ #: crayon_settings.class.php:107
402
  #@ crayon-syntax-highlighter
403
  msgid "Weekly"
404
  msgstr "Wöchentlich"
405
 
406
+ #: crayon_settings.class.php:107
407
  #@ crayon-syntax-highlighter
408
  msgid "Monthly"
409
  msgstr "Monatlich"
410
 
411
+ #: crayon_settings.class.php:108
412
  #@ crayon-syntax-highlighter
413
  msgid "Immediately"
414
  msgstr "Sofort"
415
 
416
+ #: crayon_settings_wp.class.php:424
417
  #@ crayon-syntax-highlighter
418
  msgid "Crayon Help"
419
  msgstr "Crayon Hilfe"
420
 
421
+ #: crayon_settings_wp.class.php:628
422
  #@ crayon-syntax-highlighter
423
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
424
  msgstr "Versuchen Crayon CSS und JavaScript nur bei Bedarf zu laden"
425
 
426
+ #: crayon_settings_wp.class.php:621
427
  #@ crayon-syntax-highlighter
428
  msgid "Followed by your relative URL."
429
  msgstr "Gefolgt von Ihrer relativen URL."
430
 
431
+ #: crayon_settings_wp.class.php:662
432
  #@ crayon-syntax-highlighter
433
  msgid "The log is currently empty."
434
  msgstr "Das Protokoll ist derzeit leer."
435
 
436
+ #: crayon_settings_wp.class.php:664
437
  #@ crayon-syntax-highlighter
438
  msgid "The log file exists and is writable."
439
  msgstr "Die Protokolldatei existiert und ist beschreibbar."
440
 
441
+ #: crayon_settings_wp.class.php:664
442
  #@ crayon-syntax-highlighter
443
  msgid "The log file exists and is not writable."
444
  msgstr "Die Protokolldatei existiert und ist nicht beschreibbar."
445
 
446
+ #: crayon_settings_wp.class.php:666
447
  #@ crayon-syntax-highlighter
448
  msgid "The log file does not exist and is not writable."
449
  msgstr "Die Protokolldatei existiert nicht und ist nicht schreibbar."
450
 
451
+ #: crayon_settings_wp.class.php:508
452
  #, php-format
453
  #@ crayon-syntax-highlighter
454
  msgid "%d language has been detected."
456
  msgstr[0] "%d Sprache wurde erkannt."
457
  msgstr[1] "%d Sprachen wurden erkannt."
458
 
459
+ #: crayon_settings_wp.class.php:612
460
  #@ crayon-syntax-highlighter
461
  msgid "Capture &lt;pre&gt; tags as Crayons"
462
  msgstr "&lt;pre&gt; tags wie Crayons behandeln"
463
 
464
+ #: crayon_settings_wp.class.php:558
465
+ #: crayon_settings_wp.class.php:587
466
+ #: crayon_settings_wp.class.php:603
467
+ #: crayon_settings_wp.class.php:608
468
+ #: crayon_settings_wp.class.php:609
469
+ #: crayon_settings_wp.class.php:610
470
+ #: crayon_settings_wp.class.php:611
471
+ #: crayon_settings_wp.class.php:612
472
+ #: crayon_settings_wp.class.php:613
473
+ #: crayon_settings_wp.class.php:628
474
+ #: crayon_settings_wp.class.php:629
475
  #@ crayon-syntax-highlighter
476
  msgid "Learn More"
477
  msgstr "Erfahren Sie mehr"
478
 
479
+ #: crayon_settings_wp.class.php:604
480
  #@ crayon-syntax-highlighter
481
  msgid "Show Mixed Language Icon (+)"
482
  msgstr "Zeige gemischte Sprachen Symbol (+)"
483
 
484
+ #: crayon_settings_wp.class.php:603
485
  #@ crayon-syntax-highlighter
486
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
487
  msgstr "Erlaube Hervorhebung gemischter Sprachen mit Trennzeichen und Tags."
488
 
489
+ #: crayon_settings_wp.class.php:608
490
  #@ crayon-syntax-highlighter
491
  msgid "Capture Mini Tags like [php][/php] as Crayons."
492
  msgstr "Mini Tags wie [php][/php] als Crayons behandeln."
493
 
494
+ #: crayon_settings_wp.class.php:613
495
  #@ crayon-syntax-highlighter
496
  msgid "Enable [plain][/plain] tag."
497
  msgstr "Aktiviere [plain][/plain] Tag."
498
 
499
+ #: crayon_settings.class.php:174
500
  #@ crayon-syntax-highlighter
501
  msgid "Disable Mouse Events"
502
  msgstr "Mausereignisse deaktivieren"
503
 
504
+ #: crayon_settings_wp.class.php:594
505
  #@ crayon-syntax-highlighter
506
  msgid "Enable plain code toggling"
507
  msgstr "Umschaltung auf unformatierte Anzeige ermöglichen"
508
 
509
+ #: crayon_settings_wp.class.php:595
510
  #@ crayon-syntax-highlighter
511
  msgid "Show the plain code by default"
512
  msgstr "Unformatierten Code standardmäßig anzeigen"
541
  msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
542
  msgstr "Unterstützt mehrere Sprachen und Themes. Hervorhebung von Code aus einer URL, lokalen Datei oder Artikeltext."
543
 
544
+ #: crayon_settings_wp.class.php:717
545
  #@ crayon-syntax-highlighter
546
  msgid "Donate"
547
  msgstr "Spenden"
581
  msgid "Code"
582
  msgstr "Code"
583
 
584
+ #: crayon_settings_wp.class.php:227
585
  #@ crayon-syntax-highlighter
586
  msgid "Languages"
587
  msgstr "Sprachen"
588
 
589
+ #: crayon_settings_wp.class.php:228
590
  #@ crayon-syntax-highlighter
591
  msgid "Files"
592
  msgstr "Dateien"
593
 
594
+ #: crayon_settings_wp.class.php:229
595
  #@ crayon-syntax-highlighter
596
  msgid "Misc"
597
  msgstr "Sonstiges"
598
 
599
+ #: crayon_settings_wp.class.php:232
600
  #@ crayon-syntax-highlighter
601
  msgid "Debug"
602
  msgstr "Debuggen"
603
 
604
+ #: crayon_settings_wp.class.php:233
605
  #@ crayon-syntax-highlighter
606
  msgid "Errors"
607
  msgstr "Fehler"
608
 
609
+ #: crayon_settings_wp.class.php:234
610
  #@ crayon-syntax-highlighter
611
  msgid "Log"
612
  msgstr "Protokoll"
613
 
614
+ #: crayon_settings_wp.class.php:237
615
  #@ crayon-syntax-highlighter
616
  msgid "About"
617
  msgstr "Über"
618
 
619
+ #: crayon_settings_wp.class.php:558
620
  #@ crayon-syntax-highlighter
621
  msgid "Enqueue themes in the header (more efficient)."
622
  msgstr "Themes im Header laden (effizienter)."
623
 
624
+ #: crayon_settings_wp.class.php:587
625
  #@ crayon-syntax-highlighter
626
  msgid "Enqueue fonts in the header (more efficient)."
627
  msgstr "Schriftarten im Header laden (effizienter)."
628
 
629
+ #: crayon_settings_wp.class.php:549
630
  #@ crayon-syntax-highlighter
631
  msgid "Loading..."
632
  msgstr "Lade..."
633
 
634
+ #: crayon_settings_wp.class.php:549
635
+ #: crayon_settings_wp.class.php:715
636
  #: util/theme-editor/editor.php:14
637
  #@ crayon-syntax-highlighter
638
  msgid "Theme Editor"
639
  msgstr "Thema Editor"
640
 
641
+ #: crayon_settings_wp.class.php:599
642
  #@ crayon-syntax-highlighter
643
  msgid "Always display scrollbars"
644
  msgstr "Immer Scrollbalken anzeigen"
645
 
646
+ #: crayon_settings_wp.class.php:629
647
  #@ crayon-syntax-highlighter
648
  msgid "Disable enqueuing for page templates that may contain The Loop."
649
  msgstr "Deaktiviere Laden im Header für Themes die The Loop verwenden"
650
 
651
+ #: crayon_settings_wp.class.php:631
652
  #@ crayon-syntax-highlighter
653
  msgid "Load Crayons only from the main Wordpress query"
654
  msgstr "Crayons nur aus der main Wordpress query laden"
658
  msgid "Back To Settings"
659
  msgstr "Zurück zu Einstellungen"
660
 
661
+ #: crayon_settings_wp.class.php:679
662
  #@ crayon-syntax-highlighter
663
  msgid "Translators"
664
  msgstr "Übersetzer"
665
 
666
+ #: crayon_formatter.class.php:270
667
  #@ crayon-syntax-highlighter
668
  msgid "Toggle Plain Code"
669
  msgstr "Unformatierte Code-Ansicht"
670
 
671
+ #: crayon_formatter.class.php:272
672
  #@ crayon-syntax-highlighter
673
  msgid "Copy Plain Code"
674
  msgstr "Unformatierten Code kopieren"
675
 
676
+ #: crayon_formatter.class.php:278
677
  #@ crayon-syntax-highlighter
678
  msgid "Open Code In New Window"
679
  msgstr "Code in einem neuen Fenster anzeigen"
680
 
681
+ #: crayon_formatter.class.php:281
682
  #@ crayon-syntax-highlighter
683
  msgid "Toggle Line Numbers"
684
  msgstr "Zeilennummern"
685
 
686
+ #: crayon_formatter.class.php:288
687
  #@ crayon-syntax-highlighter
688
  msgid "Contains Mixed Languages"
689
  msgstr "Enthält verschiedene Sprachen"
690
 
691
+ #: crayon_settings_wp.class.php:655
692
  #@ crayon-syntax-highlighter
693
  msgid "Hide Log"
694
  msgstr "Protokoll ausblenden"
695
 
696
+ #: crayon_formatter.class.php:272
697
+ #, php-format
698
+ #@ crayon-syntax-highlighter
699
+ msgid "Press %s to Copy, %s to Paste"
700
+ msgstr "Drücken Sie %s zum Kopieren, %s zum Einfügen"
701
+
702
+ #: crayon_settings_wp.class.php:226
703
+ #@ crayon-syntax-highlighter
704
+ msgid "Tags"
705
+ msgstr "Tags"
706
+
707
+ #: crayon_settings_wp.class.php:468
708
+ #@ crayon-syntax-highlighter
709
+ msgid "Inline Margin"
710
+ msgstr "Inline Rand"
711
+
712
+ #: crayon_settings_wp.class.php:609
713
+ #@ crayon-syntax-highlighter
714
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
715
+ msgstr "Tags wie {php} {/php} innerhalb Sätzen erkennen."
716
+
717
+ #: crayon_settings_wp.class.php:611
718
+ #@ crayon-syntax-highlighter
719
+ msgid "Capture `backquotes` as &lt;code&gt;"
720
+ msgstr "`backquotes` als &lt;code&gt; behandeln"
721
+
722
+ #: crayon_settings_wp.class.php:630
723
+ #@ crayon-syntax-highlighter
724
+ msgid "Allow Crayons inside comments"
725
+ msgstr "Crayons innerhalb von Kommentaren erlauben"
726
+
727
  #. translators: plugin header field 'Version'
728
  #: crayon_wp.class.php:0
729
  #@ crayon-syntax-highlighter
730
+ msgid "1.8.2"
731
  msgstr ""
732
 
733
+ #: crayon_settings_wp.class.php:610
 
734
  #@ crayon-syntax-highlighter
735
+ msgid "Wrap Inline Tags"
736
+ msgstr "Inline-Tags umbrechen"
737
 
trans/crayon-syntax-highlighter-es_ES.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-es_ES.po CHANGED
@@ -19,97 +19,100 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:130
23
- #: crayon_settings.class.php:134
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:130
29
- #: crayon_settings.class.php:134
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:130
35
- #: crayon_settings.class.php:134
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Estático"
39
 
40
- #: crayon_settings.class.php:132
41
- #: crayon_settings.class.php:136
 
 
 
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Píxeles"
45
 
46
- #: crayon_settings.class.php:132
47
- #: crayon_settings.class.php:136
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Por ciento"
51
 
52
- #: crayon_settings.class.php:145
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Ninguno"
56
 
57
- #: crayon_settings.class.php:145
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Izquierda"
61
 
62
- #: crayon_settings.class.php:145
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centro"
66
 
67
- #: crayon_settings.class.php:145
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Derecho"
71
 
72
- #: crayon_settings.class.php:147
73
- #: crayon_settings.class.php:169
74
  #@ crayon-syntax-highlighter
75
  msgid "On MouseOver"
76
  msgstr "Se mueve el ratón"
77
 
78
- #: crayon_settings.class.php:147
79
- #: crayon_settings.class.php:153
80
  #@ crayon-syntax-highlighter
81
  msgid "Always"
82
  msgstr "Siempre"
83
 
84
- #: crayon_settings.class.php:147
85
- #: crayon_settings.class.php:153
86
  #@ crayon-syntax-highlighter
87
  msgid "Never"
88
  msgstr "Nunca"
89
 
90
- #: crayon_settings.class.php:153
91
  #@ crayon-syntax-highlighter
92
  msgid "When Found"
93
  msgstr "Cuando se encuentra"
94
 
95
- #: crayon_settings.class.php:169
96
  #@ crayon-syntax-highlighter
97
  msgid "On Double Click"
98
  msgstr "Haga doble click en"
99
 
100
- #: crayon_settings.class.php:169
101
  #@ crayon-syntax-highlighter
102
  msgid "On Single Click"
103
  msgstr "En solo clic"
104
 
105
- #: crayon_settings.class.php:177
106
  #@ crayon-syntax-highlighter
107
  msgid "An error has occurred. Please try again later."
108
  msgstr "Se produjo un error. Por favor, inténtelo de nuevo más tarde."
109
 
110
  #: crayon_settings_wp.class.php:39
111
  #: crayon_settings_wp.class.php:82
112
- #: crayon_settings_wp.class.php:710
113
  #@ crayon-syntax-highlighter
114
  msgid "Settings"
115
  msgstr "Configuración"
@@ -129,298 +132,298 @@ msgstr "Guardar cambios"
129
  msgid "Reset Settings"
130
  msgstr "Restablecer configuración"
131
 
132
- #: crayon_settings_wp.class.php:437
133
  #@ crayon-syntax-highlighter
134
  msgid "Height"
135
  msgstr "Altura"
136
 
137
- #: crayon_settings_wp.class.php:443
138
  #@ crayon-syntax-highlighter
139
  msgid "Width"
140
  msgstr "Ancho"
141
 
142
- #: crayon_settings_wp.class.php:449
143
  #@ crayon-syntax-highlighter
144
  msgid "Top Margin"
145
  msgstr "Margen superior"
146
 
147
- #: crayon_settings_wp.class.php:450
148
  #@ crayon-syntax-highlighter
149
  msgid "Bottom Margin"
150
  msgstr "Margen inferior"
151
 
152
- #: crayon_settings_wp.class.php:451
153
- #: crayon_settings_wp.class.php:456
154
  #@ crayon-syntax-highlighter
155
  msgid "Left Margin"
156
  msgstr "Margen Izquierda"
157
 
158
- #: crayon_settings_wp.class.php:452
159
- #: crayon_settings_wp.class.php:456
160
  #@ crayon-syntax-highlighter
161
  msgid "Right Margin"
162
  msgstr "Margen derecho"
163
 
164
- #: crayon_settings_wp.class.php:462
165
  #@ crayon-syntax-highlighter
166
  msgid "Horizontal Alignment"
167
  msgstr "La alineación horizontal"
168
 
169
- #: crayon_settings_wp.class.php:465
170
  #@ crayon-syntax-highlighter
171
  msgid "Allow floating elements to surround Crayon"
172
  msgstr "Permitir que los elementos flotantes que rodean Crayon"
173
 
174
- #: crayon_settings_wp.class.php:470
175
  #@ crayon-syntax-highlighter
176
  msgid "Display the Toolbar"
177
  msgstr "Mostrar la barra de herramientas"
178
 
179
- #: crayon_settings_wp.class.php:473
180
  #@ crayon-syntax-highlighter
181
  msgid "Overlay the toolbar on code rather than push it down when possible"
182
  msgstr "Superposición de la barra de herramientas de código en lugar de empujar hacia abajo cuando sea posible"
183
 
184
- #: crayon_settings_wp.class.php:474
185
  #@ crayon-syntax-highlighter
186
  msgid "Toggle the toolbar on single click when it is overlayed"
187
  msgstr "Activar o desactivar la barra de herramientas en un solo clic cuando se superpone"
188
 
189
- #: crayon_settings_wp.class.php:475
190
  #@ crayon-syntax-highlighter
191
  msgid "Delay hiding the toolbar on MouseOut"
192
  msgstr "Delay ocultar la barra de herramientas en MouseOut"
193
 
194
- #: crayon_settings_wp.class.php:477
195
  #@ crayon-syntax-highlighter
196
  msgid "Display the title when provided"
197
  msgstr "Mostrar el título cuando se proporcionan"
198
 
199
- #: crayon_settings_wp.class.php:478
200
  #@ crayon-syntax-highlighter
201
  msgid "Display the language"
202
  msgstr "Mostrar el lenguaje"
203
 
204
- #: crayon_settings_wp.class.php:483
205
  #@ crayon-syntax-highlighter
206
  msgid "Display striped code lines"
207
  msgstr "Mostrar las líneas de código de rayas"
208
 
209
- #: crayon_settings_wp.class.php:484
210
  #@ crayon-syntax-highlighter
211
  msgid "Enable line marking for important lines"
212
  msgstr "Activar la línea de marca para las líneas importantes"
213
 
214
- #: crayon_settings_wp.class.php:485
215
  #@ crayon-syntax-highlighter
216
  msgid "Display line numbers by default"
217
  msgstr "Mostrar números de línea por defecto"
218
 
219
- #: crayon_settings_wp.class.php:486
220
  #@ crayon-syntax-highlighter
221
  msgid "Enable line number toggling"
222
  msgstr "Permiten alternar la línea número"
223
 
224
- #: crayon_settings_wp.class.php:487
225
  #@ crayon-syntax-highlighter
226
  msgid "Start line numbers from"
227
  msgstr "Inicio de los números de línea"
228
 
229
- #: crayon_settings_wp.class.php:497
230
  #@ crayon-syntax-highlighter
231
  msgid "When no language is provided, use the fallback"
232
  msgstr "Cuando no se proporciona el lenguaje, el uso de la reserva"
233
 
234
- #: crayon_settings_wp.class.php:505
235
  #@ crayon-syntax-highlighter
236
  msgid "Parsing was successful"
237
  msgstr "El análisis se ha realizado correctamente"
238
 
239
- #: crayon_settings_wp.class.php:505
240
  #@ crayon-syntax-highlighter
241
  msgid "Parsing was unsuccessful"
242
  msgstr "El análisis no tuvo éxito"
243
 
244
- #: crayon_settings_wp.class.php:511
245
  #, php-format
246
  #@ crayon-syntax-highlighter
247
  msgid "The selected language with id %s could not be loaded"
248
  msgstr "El idioma seleccionado con el id %s no se pudo cargar"
249
 
250
- #: crayon_settings_wp.class.php:515
251
  #@ crayon-syntax-highlighter
252
  msgid "Show Languages"
253
  msgstr "Mostrar Idiomas"
254
 
255
- #: crayon_settings_wp.class.php:552
256
  #@ crayon-syntax-highlighter
257
  msgid "Enable Live Preview"
258
  msgstr "Activar vista previa dinámica"
259
 
260
- #: crayon_settings_wp.class.php:557
261
  #, php-format
262
  #@ crayon-syntax-highlighter
263
  msgid "The selected theme with id %s could not be loaded"
264
  msgstr "El tema seleccionado con el id %s no se pudo cargar"
265
 
266
- #: crayon_settings_wp.class.php:575
267
  #@ crayon-syntax-highlighter
268
  msgid "Custom Font Size"
269
  msgstr "Tamaño de fuente personalizado"
270
 
271
- #: crayon_settings_wp.class.php:580
272
  #, php-format
273
  #@ crayon-syntax-highlighter
274
  msgid "The selected font with id %s could not be loaded"
275
  msgstr "La fuente seleccionada con id %s no se pudo cargar"
276
 
277
- #: crayon_settings_wp.class.php:587
278
  #@ crayon-syntax-highlighter
279
  msgid "Enable plain code view and display"
280
  msgstr "Permiten ver el código normal y la pantalla"
281
 
282
- #: crayon_settings_wp.class.php:592
283
  #@ crayon-syntax-highlighter
284
  msgid "Enable code copy/paste"
285
  msgstr "Permiten copiar el código / pegar"
286
 
287
- #: crayon_settings_wp.class.php:594
288
  #@ crayon-syntax-highlighter
289
  msgid "Enable opening code in a window"
290
  msgstr "Permitir que el código de apertura de una ventana"
291
 
292
- #: crayon_settings_wp.class.php:596
293
  #@ crayon-syntax-highlighter
294
  msgid "Tab size in spaces"
295
  msgstr "Tab tamaño en espacios"
296
 
297
- #: crayon_settings_wp.class.php:598
298
  #@ crayon-syntax-highlighter
299
  msgid "Remove whitespace surrounding the shortcode content"
300
  msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
301
 
302
- #: crayon_settings_wp.class.php:608
303
  #@ crayon-syntax-highlighter
304
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
305
  msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
306
 
307
- #: crayon_settings_wp.class.php:615
308
  #@ crayon-syntax-highlighter
309
  msgid "Clear the cache used to store remote code requests"
310
  msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
311
 
312
- #: crayon_settings_wp.class.php:617
313
  #@ crayon-syntax-highlighter
314
  msgid "Clear Now"
315
  msgstr "Limpiar ahora"
316
 
317
- #: crayon_settings_wp.class.php:621
318
  #@ crayon-syntax-highlighter
319
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
320
  msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
321
 
322
- #: crayon_settings_wp.class.php:622
323
  #@ crayon-syntax-highlighter
324
  msgid "Disable animations"
325
  msgstr "Desactivar las animaciones"
326
 
327
- #: crayon_settings_wp.class.php:623
328
  #@ crayon-syntax-highlighter
329
  msgid "Disable runtime stats"
330
  msgstr "Desactivar tiempo de ejecución de las estadísticas"
331
 
332
- #: crayon_settings_wp.class.php:630
333
  #@ crayon-syntax-highlighter
334
  msgid "Log errors for individual Crayons"
335
  msgstr "Errores de registro para cada Crayon"
336
 
337
- #: crayon_settings_wp.class.php:631
338
  #@ crayon-syntax-highlighter
339
  msgid "Log system-wide errors"
340
  msgstr "Registro de todo el sistema de los errores"
341
 
342
- #: crayon_settings_wp.class.php:632
343
  #@ crayon-syntax-highlighter
344
  msgid "Display custom message for errors"
345
  msgstr "Mostrar mensajes personalizados para los errores"
346
 
347
- #: crayon_settings_wp.class.php:644
348
  #@ crayon-syntax-highlighter
349
  msgid "Show Log"
350
  msgstr "Mostrar Registro"
351
 
352
- #: crayon_settings_wp.class.php:646
353
  #@ crayon-syntax-highlighter
354
  msgid "Clear Log"
355
  msgstr "Borrar Registro"
356
 
357
- #: crayon_settings_wp.class.php:647
358
  #@ crayon-syntax-highlighter
359
  msgid "Email Admin"
360
  msgstr "Admin Email"
361
 
362
- #: crayon_settings_wp.class.php:649
363
  #@ crayon-syntax-highlighter
364
  msgid "Email Developer"
365
  msgstr "Correo electrónico del desarrollador"
366
 
367
- #: crayon_settings_wp.class.php:665
368
  #@ crayon-syntax-highlighter
369
  msgid "Version"
370
  msgstr "Versión"
371
 
372
- #: crayon_settings_wp.class.php:667
373
  #@ crayon-syntax-highlighter
374
  msgid "Developer"
375
  msgstr "Promotor"
376
 
377
- #: crayon_settings_wp.class.php:698
378
  #@ crayon-syntax-highlighter
379
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
380
  msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
381
 
382
- #: crayon_settings_wp.class.php:549
383
  #, php-format
384
  #@ crayon-syntax-highlighter
385
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
386
  msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
387
 
388
- #: crayon_settings.class.php:101
389
  #@ crayon-syntax-highlighter
390
  msgid "Hourly"
391
  msgstr "Cada hora"
392
 
393
- #: crayon_settings.class.php:101
394
  #@ crayon-syntax-highlighter
395
  msgid "Daily"
396
  msgstr "Diario"
397
 
398
- #: crayon_settings.class.php:102
399
  #@ crayon-syntax-highlighter
400
  msgid "Weekly"
401
  msgstr "Semanal"
402
 
403
- #: crayon_settings.class.php:102
404
  #@ crayon-syntax-highlighter
405
  msgid "Monthly"
406
  msgstr "Mensual"
407
 
408
- #: crayon_settings.class.php:103
409
  #@ crayon-syntax-highlighter
410
  msgid "Immediately"
411
  msgstr "Inmediatamente"
412
 
413
- #: crayon_settings_wp.class.php:423
414
  #@ crayon-syntax-highlighter
415
  msgid "Crayon Help"
416
  msgstr "Crayon Ayuda"
417
 
418
- #: crayon_settings_wp.class.php:618
419
  #@ crayon-syntax-highlighter
420
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
421
  msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
422
 
423
- #: crayon_settings_wp.class.php:504
424
  #, php-format
425
  #@ crayon-syntax-highlighter
426
  msgid "%d language has been detected."
@@ -428,78 +431,82 @@ msgid_plural "%d languages have been detected."
428
  msgstr[0] "%d lenguaje que se ha detectado."
429
  msgstr[1] "%d idiomas se han detectado."
430
 
431
- #: crayon_settings_wp.class.php:611
432
  #@ crayon-syntax-highlighter
433
  msgid "Followed by your relative URL."
434
  msgstr "Seguido de su dirección URL relativa\t."
435
 
436
- #: crayon_settings_wp.class.php:651
437
  #@ crayon-syntax-highlighter
438
  msgid "The log is currently empty."
439
  msgstr "El registro está actualmente vacía."
440
 
441
- #: crayon_settings_wp.class.php:653
442
  #@ crayon-syntax-highlighter
443
  msgid "The log file exists and is writable."
444
  msgstr "El archivo de registro existe y se puede escribir."
445
 
446
- #: crayon_settings_wp.class.php:653
447
  #@ crayon-syntax-highlighter
448
  msgid "The log file exists and is not writable."
449
  msgstr "El archivo de registro existe y no es modificable."
450
 
451
- #: crayon_settings_wp.class.php:655
452
  #@ crayon-syntax-highlighter
453
  msgid "The log file does not exist and is not writable."
454
  msgstr "El archivo de registro no existe y no es modificable."
455
 
456
- #: crayon_settings_wp.class.php:599
457
  #@ crayon-syntax-highlighter
458
  msgid "Capture &lt;pre&gt; tags as Crayons"
459
  msgstr "Captura de etiquetas &lt;pre&gt; como Crayons"
460
 
461
- #: crayon_settings_wp.class.php:554
462
- #: crayon_settings_wp.class.php:583
463
- #: crayon_settings_wp.class.php:600
464
- #: crayon_settings_wp.class.php:601
465
- #: crayon_settings_wp.class.php:602
466
- #: crayon_settings_wp.class.php:618
467
- #: crayon_settings_wp.class.php:619
 
 
 
 
468
  #@ crayon-syntax-highlighter
469
  msgid "Learn More"
470
  msgstr "Más información"
471
 
472
- #: crayon_settings_wp.class.php:603
473
  #@ crayon-syntax-highlighter
474
  msgid "Show Mixed Language Icon (+)"
475
  msgstr "Mostrar el icono del lenguaje mixto (+)"
476
 
477
- #: crayon_settings_wp.class.php:602
478
  #@ crayon-syntax-highlighter
479
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
480
  msgstr "Permiten destacar mixto del lenguaje con delimitadores y etiquetas."
481
 
482
- #: crayon_settings_wp.class.php:600
483
  #@ crayon-syntax-highlighter
484
  msgid "Capture Mini Tags like [php][/php] as Crayons."
485
  msgstr "Captura Tags Mini como [php][/php] como Crayons."
486
 
487
- #: crayon_settings_wp.class.php:601
488
  #@ crayon-syntax-highlighter
489
  msgid "Enable [plain][/plain] tag."
490
  msgstr "Activar etiqueta [plain][/plain]."
491
 
492
- #: crayon_settings.class.php:169
493
  #@ crayon-syntax-highlighter
494
  msgid "Disable Mouse Events"
495
  msgstr "Desactivar Los Eventos De Ratón"
496
 
497
- #: crayon_settings_wp.class.php:590
498
  #@ crayon-syntax-highlighter
499
  msgid "Enable plain code toggling"
500
  msgstr "Permiten alternar código normal"
501
 
502
- #: crayon_settings_wp.class.php:591
503
  #@ crayon-syntax-highlighter
504
  msgid "Show the plain code by default"
505
  msgstr "Mostrar el código sin formato por defecto"
@@ -534,7 +541,7 @@ msgstr ""
534
  msgid "http://ak.net84.net/"
535
  msgstr ""
536
 
537
- #: crayon_settings_wp.class.php:714
538
  #@ crayon-syntax-highlighter
539
  msgid "Donate"
540
  msgstr "Donar"
@@ -574,79 +581,79 @@ msgstr "Líneas"
574
  msgid "Code"
575
  msgstr "Código"
576
 
577
- #: crayon_settings_wp.class.php:226
578
  #@ crayon-syntax-highlighter
579
  msgid "Languages"
580
  msgstr "Idiomas"
581
 
582
- #: crayon_settings_wp.class.php:227
583
  #@ crayon-syntax-highlighter
584
  msgid "Files"
585
  msgstr "Archivos"
586
 
587
- #: crayon_settings_wp.class.php:228
588
  #@ crayon-syntax-highlighter
589
  msgid "Misc"
590
  msgstr "Misc"
591
 
592
- #: crayon_settings_wp.class.php:231
593
  #@ crayon-syntax-highlighter
594
  msgid "Debug"
595
  msgstr "Depurar"
596
 
597
- #: crayon_settings_wp.class.php:232
598
  #@ crayon-syntax-highlighter
599
  msgid "Errors"
600
  msgstr "Errores"
601
 
602
- #: crayon_settings_wp.class.php:233
603
  #@ crayon-syntax-highlighter
604
  msgid "Log"
605
  msgstr "Log"
606
 
607
- #: crayon_settings_wp.class.php:236
608
  #@ crayon-syntax-highlighter
609
  msgid "About"
610
  msgstr "Sobre"
611
 
612
- #: crayon_settings_wp.class.php:554
613
  #@ crayon-syntax-highlighter
614
  msgid "Enqueue themes in the header (more efficient)."
615
  msgstr "Enqueue temas en la cabecera (más eficiente)."
616
 
617
- #: crayon_settings_wp.class.php:583
618
  #@ crayon-syntax-highlighter
619
  msgid "Enqueue fonts in the header (more efficient)."
620
  msgstr "Enqueue fuentes en la cabecera (más eficiente)."
621
 
622
- #: crayon_settings_wp.class.php:545
623
  #@ crayon-syntax-highlighter
624
  msgid "Loading..."
625
  msgstr "De carga..."
626
 
627
- #: crayon_settings_wp.class.php:545
628
- #: crayon_settings_wp.class.php:712
629
  #: util/theme-editor/editor.php:14
630
  #@ crayon-syntax-highlighter
631
  msgid "Theme Editor"
632
  msgstr "Tema Editor"
633
 
634
- #: crayon_settings_wp.class.php:595
635
  #@ crayon-syntax-highlighter
636
  msgid "Always display scrollbars"
637
  msgstr "Siempre mostrar barras de desplazamiento"
638
 
639
- #: crayon_settings_wp.class.php:619
640
  #@ crayon-syntax-highlighter
641
  msgid "Disable enqueuing for page templates that may contain The Loop."
642
  msgstr "Desactivar enqueuing de las plantillas de página que puede contener el Loop."
643
 
644
- #: crayon_settings_wp.class.php:620
645
  #@ crayon-syntax-highlighter
646
  msgid "Load Crayons only from the main Wordpress query"
647
  msgstr "Lápices de colores única carga de la principal consulta de Wordpress"
648
 
649
- #: crayon_settings_wp.class.php:668
650
  #@ crayon-syntax-highlighter
651
  msgid "Translators"
652
  msgstr "Traductores"
@@ -656,45 +663,75 @@ msgstr "Traductores"
656
  msgid "Back To Settings"
657
  msgstr "Volver a la configuración"
658
 
659
- #: crayon_formatter.class.php:203
660
  #@ crayon-syntax-highlighter
661
  msgid "Toggle Plain Code"
662
  msgstr "Código normal cambiar"
663
 
664
- #: crayon_formatter.class.php:205
665
  #@ crayon-syntax-highlighter
666
  msgid "Copy Plain Code"
667
  msgstr "Copia simple código"
668
 
669
- #: crayon_formatter.class.php:211
670
  #@ crayon-syntax-highlighter
671
  msgid "Open Code In New Window"
672
  msgstr "Código abierto en una ventana nueva"
673
 
674
- #: crayon_formatter.class.php:214
675
  #@ crayon-syntax-highlighter
676
  msgid "Toggle Line Numbers"
677
  msgstr "Números de cambiar de línea"
678
 
679
- #: crayon_formatter.class.php:221
680
  #@ crayon-syntax-highlighter
681
  msgid "Contains Mixed Languages"
682
  msgstr "Contiene Idiomas mixtos"
683
 
684
- #: crayon_settings_wp.class.php:644
685
  #@ crayon-syntax-highlighter
686
  msgid "Hide Log"
687
  msgstr "Ocultar Conectarse"
688
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
689
  #. translators: plugin header field 'Version'
690
  #: crayon_wp.class.php:0
691
  #@ crayon-syntax-highlighter
692
- msgid "1.7.26"
693
  msgstr ""
694
 
695
- #: crayon_formatter.class.php:205
696
- #, php-format
697
  #@ crayon-syntax-highlighter
698
- msgid "Press %s to Copy, %s to Paste"
699
- msgstr "Prensa %s para copiar, pegar a %s"
700
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:135
23
+ #: crayon_settings.class.php:139
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
+ #: crayon_settings.class.php:135
29
+ #: crayon_settings.class.php:139
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
+ #: crayon_settings.class.php:135
35
+ #: crayon_settings.class.php:139
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Estático"
39
 
40
+ #: crayon_settings.class.php:137
41
+ #: crayon_settings.class.php:141
42
+ #: crayon_settings_wp.class.php:461
43
+ #: crayon_settings_wp.class.php:470
44
+ #: crayon_settings_wp.class.php:581
45
  #@ crayon-syntax-highlighter
46
  msgid "Pixels"
47
  msgstr "Píxeles"
48
 
49
+ #: crayon_settings.class.php:137
50
+ #: crayon_settings.class.php:141
51
  #@ crayon-syntax-highlighter
52
  msgid "Percent"
53
  msgstr "Por ciento"
54
 
55
+ #: crayon_settings.class.php:150
56
  #@ crayon-syntax-highlighter
57
  msgid "None"
58
  msgstr "Ninguno"
59
 
60
+ #: crayon_settings.class.php:150
61
  #@ crayon-syntax-highlighter
62
  msgid "Left"
63
  msgstr "Izquierda"
64
 
65
+ #: crayon_settings.class.php:150
66
  #@ crayon-syntax-highlighter
67
  msgid "Center"
68
  msgstr "Centro"
69
 
70
+ #: crayon_settings.class.php:150
71
  #@ crayon-syntax-highlighter
72
  msgid "Right"
73
  msgstr "Derecho"
74
 
75
+ #: crayon_settings.class.php:152
76
+ #: crayon_settings.class.php:174
77
  #@ crayon-syntax-highlighter
78
  msgid "On MouseOver"
79
  msgstr "Se mueve el ratón"
80
 
81
+ #: crayon_settings.class.php:152
82
+ #: crayon_settings.class.php:158
83
  #@ crayon-syntax-highlighter
84
  msgid "Always"
85
  msgstr "Siempre"
86
 
87
+ #: crayon_settings.class.php:152
88
+ #: crayon_settings.class.php:158
89
  #@ crayon-syntax-highlighter
90
  msgid "Never"
91
  msgstr "Nunca"
92
 
93
+ #: crayon_settings.class.php:158
94
  #@ crayon-syntax-highlighter
95
  msgid "When Found"
96
  msgstr "Cuando se encuentra"
97
 
98
+ #: crayon_settings.class.php:174
99
  #@ crayon-syntax-highlighter
100
  msgid "On Double Click"
101
  msgstr "Haga doble click en"
102
 
103
+ #: crayon_settings.class.php:174
104
  #@ crayon-syntax-highlighter
105
  msgid "On Single Click"
106
  msgstr "En solo clic"
107
 
108
+ #: crayon_settings.class.php:182
109
  #@ crayon-syntax-highlighter
110
  msgid "An error has occurred. Please try again later."
111
  msgstr "Se produjo un error. Por favor, inténtelo de nuevo más tarde."
112
 
113
  #: crayon_settings_wp.class.php:39
114
  #: crayon_settings_wp.class.php:82
115
+ #: crayon_settings_wp.class.php:713
116
  #@ crayon-syntax-highlighter
117
  msgid "Settings"
118
  msgstr "Configuración"
132
  msgid "Reset Settings"
133
  msgstr "Restablecer configuración"
134
 
135
+ #: crayon_settings_wp.class.php:438
136
  #@ crayon-syntax-highlighter
137
  msgid "Height"
138
  msgstr "Altura"
139
 
140
+ #: crayon_settings_wp.class.php:444
141
  #@ crayon-syntax-highlighter
142
  msgid "Width"
143
  msgstr "Ancho"
144
 
145
+ #: crayon_settings_wp.class.php:450
146
  #@ crayon-syntax-highlighter
147
  msgid "Top Margin"
148
  msgstr "Margen superior"
149
 
150
+ #: crayon_settings_wp.class.php:451
151
  #@ crayon-syntax-highlighter
152
  msgid "Bottom Margin"
153
  msgstr "Margen inferior"
154
 
155
+ #: crayon_settings_wp.class.php:452
156
+ #: crayon_settings_wp.class.php:457
157
  #@ crayon-syntax-highlighter
158
  msgid "Left Margin"
159
  msgstr "Margen Izquierda"
160
 
161
+ #: crayon_settings_wp.class.php:453
162
+ #: crayon_settings_wp.class.php:457
163
  #@ crayon-syntax-highlighter
164
  msgid "Right Margin"
165
  msgstr "Margen derecho"
166
 
167
+ #: crayon_settings_wp.class.php:463
168
  #@ crayon-syntax-highlighter
169
  msgid "Horizontal Alignment"
170
  msgstr "La alineación horizontal"
171
 
172
+ #: crayon_settings_wp.class.php:466
173
  #@ crayon-syntax-highlighter
174
  msgid "Allow floating elements to surround Crayon"
175
  msgstr "Permitir que los elementos flotantes que rodean Crayon"
176
 
177
+ #: crayon_settings_wp.class.php:474
178
  #@ crayon-syntax-highlighter
179
  msgid "Display the Toolbar"
180
  msgstr "Mostrar la barra de herramientas"
181
 
182
+ #: crayon_settings_wp.class.php:477
183
  #@ crayon-syntax-highlighter
184
  msgid "Overlay the toolbar on code rather than push it down when possible"
185
  msgstr "Superposición de la barra de herramientas de código en lugar de empujar hacia abajo cuando sea posible"
186
 
187
+ #: crayon_settings_wp.class.php:478
188
  #@ crayon-syntax-highlighter
189
  msgid "Toggle the toolbar on single click when it is overlayed"
190
  msgstr "Activar o desactivar la barra de herramientas en un solo clic cuando se superpone"
191
 
192
+ #: crayon_settings_wp.class.php:479
193
  #@ crayon-syntax-highlighter
194
  msgid "Delay hiding the toolbar on MouseOut"
195
  msgstr "Delay ocultar la barra de herramientas en MouseOut"
196
 
197
+ #: crayon_settings_wp.class.php:481
198
  #@ crayon-syntax-highlighter
199
  msgid "Display the title when provided"
200
  msgstr "Mostrar el título cuando se proporcionan"
201
 
202
+ #: crayon_settings_wp.class.php:482
203
  #@ crayon-syntax-highlighter
204
  msgid "Display the language"
205
  msgstr "Mostrar el lenguaje"
206
 
207
+ #: crayon_settings_wp.class.php:487
208
  #@ crayon-syntax-highlighter
209
  msgid "Display striped code lines"
210
  msgstr "Mostrar las líneas de código de rayas"
211
 
212
+ #: crayon_settings_wp.class.php:488
213
  #@ crayon-syntax-highlighter
214
  msgid "Enable line marking for important lines"
215
  msgstr "Activar la línea de marca para las líneas importantes"
216
 
217
+ #: crayon_settings_wp.class.php:489
218
  #@ crayon-syntax-highlighter
219
  msgid "Display line numbers by default"
220
  msgstr "Mostrar números de línea por defecto"
221
 
222
+ #: crayon_settings_wp.class.php:490
223
  #@ crayon-syntax-highlighter
224
  msgid "Enable line number toggling"
225
  msgstr "Permiten alternar la línea número"
226
 
227
+ #: crayon_settings_wp.class.php:491
228
  #@ crayon-syntax-highlighter
229
  msgid "Start line numbers from"
230
  msgstr "Inicio de los números de línea"
231
 
232
+ #: crayon_settings_wp.class.php:501
233
  #@ crayon-syntax-highlighter
234
  msgid "When no language is provided, use the fallback"
235
  msgstr "Cuando no se proporciona el lenguaje, el uso de la reserva"
236
 
237
+ #: crayon_settings_wp.class.php:509
238
  #@ crayon-syntax-highlighter
239
  msgid "Parsing was successful"
240
  msgstr "El análisis se ha realizado correctamente"
241
 
242
+ #: crayon_settings_wp.class.php:509
243
  #@ crayon-syntax-highlighter
244
  msgid "Parsing was unsuccessful"
245
  msgstr "El análisis no tuvo éxito"
246
 
247
+ #: crayon_settings_wp.class.php:515
248
  #, php-format
249
  #@ crayon-syntax-highlighter
250
  msgid "The selected language with id %s could not be loaded"
251
  msgstr "El idioma seleccionado con el id %s no se pudo cargar"
252
 
253
+ #: crayon_settings_wp.class.php:519
254
  #@ crayon-syntax-highlighter
255
  msgid "Show Languages"
256
  msgstr "Mostrar Idiomas"
257
 
258
+ #: crayon_settings_wp.class.php:556
259
  #@ crayon-syntax-highlighter
260
  msgid "Enable Live Preview"
261
  msgstr "Activar vista previa dinámica"
262
 
263
+ #: crayon_settings_wp.class.php:561
264
  #, php-format
265
  #@ crayon-syntax-highlighter
266
  msgid "The selected theme with id %s could not be loaded"
267
  msgstr "El tema seleccionado con el id %s no se pudo cargar"
268
 
269
+ #: crayon_settings_wp.class.php:579
270
  #@ crayon-syntax-highlighter
271
  msgid "Custom Font Size"
272
  msgstr "Tamaño de fuente personalizado"
273
 
274
+ #: crayon_settings_wp.class.php:584
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected font with id %s could not be loaded"
278
  msgstr "La fuente seleccionada con id %s no se pudo cargar"
279
 
280
+ #: crayon_settings_wp.class.php:591
281
  #@ crayon-syntax-highlighter
282
  msgid "Enable plain code view and display"
283
  msgstr "Permiten ver el código normal y la pantalla"
284
 
285
+ #: crayon_settings_wp.class.php:596
286
  #@ crayon-syntax-highlighter
287
  msgid "Enable code copy/paste"
288
  msgstr "Permiten copiar el código / pegar"
289
 
290
+ #: crayon_settings_wp.class.php:598
291
  #@ crayon-syntax-highlighter
292
  msgid "Enable opening code in a window"
293
  msgstr "Permitir que el código de apertura de una ventana"
294
 
295
+ #: crayon_settings_wp.class.php:600
296
  #@ crayon-syntax-highlighter
297
  msgid "Tab size in spaces"
298
  msgstr "Tab tamaño en espacios"
299
 
300
+ #: crayon_settings_wp.class.php:602
301
  #@ crayon-syntax-highlighter
302
  msgid "Remove whitespace surrounding the shortcode content"
303
  msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
304
 
305
+ #: crayon_settings_wp.class.php:618
306
  #@ crayon-syntax-highlighter
307
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
308
  msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
309
 
310
+ #: crayon_settings_wp.class.php:625
311
  #@ crayon-syntax-highlighter
312
  msgid "Clear the cache used to store remote code requests"
313
  msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
314
 
315
+ #: crayon_settings_wp.class.php:627
316
  #@ crayon-syntax-highlighter
317
  msgid "Clear Now"
318
  msgstr "Limpiar ahora"
319
 
320
+ #: crayon_settings_wp.class.php:632
321
  #@ crayon-syntax-highlighter
322
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
323
  msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
324
 
325
+ #: crayon_settings_wp.class.php:633
326
  #@ crayon-syntax-highlighter
327
  msgid "Disable animations"
328
  msgstr "Desactivar las animaciones"
329
 
330
+ #: crayon_settings_wp.class.php:634
331
  #@ crayon-syntax-highlighter
332
  msgid "Disable runtime stats"
333
  msgstr "Desactivar tiempo de ejecución de las estadísticas"
334
 
335
+ #: crayon_settings_wp.class.php:641
336
  #@ crayon-syntax-highlighter
337
  msgid "Log errors for individual Crayons"
338
  msgstr "Errores de registro para cada Crayon"
339
 
340
+ #: crayon_settings_wp.class.php:642
341
  #@ crayon-syntax-highlighter
342
  msgid "Log system-wide errors"
343
  msgstr "Registro de todo el sistema de los errores"
344
 
345
+ #: crayon_settings_wp.class.php:643
346
  #@ crayon-syntax-highlighter
347
  msgid "Display custom message for errors"
348
  msgstr "Mostrar mensajes personalizados para los errores"
349
 
350
+ #: crayon_settings_wp.class.php:655
351
  #@ crayon-syntax-highlighter
352
  msgid "Show Log"
353
  msgstr "Mostrar Registro"
354
 
355
+ #: crayon_settings_wp.class.php:657
356
  #@ crayon-syntax-highlighter
357
  msgid "Clear Log"
358
  msgstr "Borrar Registro"
359
 
360
+ #: crayon_settings_wp.class.php:658
361
  #@ crayon-syntax-highlighter
362
  msgid "Email Admin"
363
  msgstr "Admin Email"
364
 
365
+ #: crayon_settings_wp.class.php:660
366
  #@ crayon-syntax-highlighter
367
  msgid "Email Developer"
368
  msgstr "Correo electrónico del desarrollador"
369
 
370
+ #: crayon_settings_wp.class.php:676
371
  #@ crayon-syntax-highlighter
372
  msgid "Version"
373
  msgstr "Versión"
374
 
375
+ #: crayon_settings_wp.class.php:678
376
  #@ crayon-syntax-highlighter
377
  msgid "Developer"
378
  msgstr "Promotor"
379
 
380
+ #: crayon_settings_wp.class.php:701
381
  #@ crayon-syntax-highlighter
382
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
383
  msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
384
 
385
+ #: crayon_settings_wp.class.php:553
386
  #, php-format
387
  #@ crayon-syntax-highlighter
388
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
389
  msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
390
 
391
+ #: crayon_settings.class.php:106
392
  #@ crayon-syntax-highlighter
393
  msgid "Hourly"
394
  msgstr "Cada hora"
395
 
396
+ #: crayon_settings.class.php:106
397
  #@ crayon-syntax-highlighter
398
  msgid "Daily"
399
  msgstr "Diario"
400
 
401
+ #: crayon_settings.class.php:107
402
  #@ crayon-syntax-highlighter
403
  msgid "Weekly"
404
  msgstr "Semanal"
405
 
406
+ #: crayon_settings.class.php:107
407
  #@ crayon-syntax-highlighter
408
  msgid "Monthly"
409
  msgstr "Mensual"
410
 
411
+ #: crayon_settings.class.php:108
412
  #@ crayon-syntax-highlighter
413
  msgid "Immediately"
414
  msgstr "Inmediatamente"
415
 
416
+ #: crayon_settings_wp.class.php:424
417
  #@ crayon-syntax-highlighter
418
  msgid "Crayon Help"
419
  msgstr "Crayon Ayuda"
420
 
421
+ #: crayon_settings_wp.class.php:628
422
  #@ crayon-syntax-highlighter
423
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
424
  msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
425
 
426
+ #: crayon_settings_wp.class.php:508
427
  #, php-format
428
  #@ crayon-syntax-highlighter
429
  msgid "%d language has been detected."
431
  msgstr[0] "%d lenguaje que se ha detectado."
432
  msgstr[1] "%d idiomas se han detectado."
433
 
434
+ #: crayon_settings_wp.class.php:621
435
  #@ crayon-syntax-highlighter
436
  msgid "Followed by your relative URL."
437
  msgstr "Seguido de su dirección URL relativa\t."
438
 
439
+ #: crayon_settings_wp.class.php:662
440
  #@ crayon-syntax-highlighter
441
  msgid "The log is currently empty."
442
  msgstr "El registro está actualmente vacía."
443
 
444
+ #: crayon_settings_wp.class.php:664
445
  #@ crayon-syntax-highlighter
446
  msgid "The log file exists and is writable."
447
  msgstr "El archivo de registro existe y se puede escribir."
448
 
449
+ #: crayon_settings_wp.class.php:664
450
  #@ crayon-syntax-highlighter
451
  msgid "The log file exists and is not writable."
452
  msgstr "El archivo de registro existe y no es modificable."
453
 
454
+ #: crayon_settings_wp.class.php:666
455
  #@ crayon-syntax-highlighter
456
  msgid "The log file does not exist and is not writable."
457
  msgstr "El archivo de registro no existe y no es modificable."
458
 
459
+ #: crayon_settings_wp.class.php:612
460
  #@ crayon-syntax-highlighter
461
  msgid "Capture &lt;pre&gt; tags as Crayons"
462
  msgstr "Captura de etiquetas &lt;pre&gt; como Crayons"
463
 
464
+ #: crayon_settings_wp.class.php:558
465
+ #: crayon_settings_wp.class.php:587
466
+ #: crayon_settings_wp.class.php:603
467
+ #: crayon_settings_wp.class.php:608
468
+ #: crayon_settings_wp.class.php:609
469
+ #: crayon_settings_wp.class.php:610
470
+ #: crayon_settings_wp.class.php:611
471
+ #: crayon_settings_wp.class.php:612
472
+ #: crayon_settings_wp.class.php:613
473
+ #: crayon_settings_wp.class.php:628
474
+ #: crayon_settings_wp.class.php:629
475
  #@ crayon-syntax-highlighter
476
  msgid "Learn More"
477
  msgstr "Más información"
478
 
479
+ #: crayon_settings_wp.class.php:604
480
  #@ crayon-syntax-highlighter
481
  msgid "Show Mixed Language Icon (+)"
482
  msgstr "Mostrar el icono del lenguaje mixto (+)"
483
 
484
+ #: crayon_settings_wp.class.php:603
485
  #@ crayon-syntax-highlighter
486
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
487
  msgstr "Permiten destacar mixto del lenguaje con delimitadores y etiquetas."
488
 
489
+ #: crayon_settings_wp.class.php:608
490
  #@ crayon-syntax-highlighter
491
  msgid "Capture Mini Tags like [php][/php] as Crayons."
492
  msgstr "Captura Tags Mini como [php][/php] como Crayons."
493
 
494
+ #: crayon_settings_wp.class.php:613
495
  #@ crayon-syntax-highlighter
496
  msgid "Enable [plain][/plain] tag."
497
  msgstr "Activar etiqueta [plain][/plain]."
498
 
499
+ #: crayon_settings.class.php:174
500
  #@ crayon-syntax-highlighter
501
  msgid "Disable Mouse Events"
502
  msgstr "Desactivar Los Eventos De Ratón"
503
 
504
+ #: crayon_settings_wp.class.php:594
505
  #@ crayon-syntax-highlighter
506
  msgid "Enable plain code toggling"
507
  msgstr "Permiten alternar código normal"
508
 
509
+ #: crayon_settings_wp.class.php:595
510
  #@ crayon-syntax-highlighter
511
  msgid "Show the plain code by default"
512
  msgstr "Mostrar el código sin formato por defecto"
541
  msgid "http://ak.net84.net/"
542
  msgstr ""
543
 
544
+ #: crayon_settings_wp.class.php:717
545
  #@ crayon-syntax-highlighter
546
  msgid "Donate"
547
  msgstr "Donar"
581
  msgid "Code"
582
  msgstr "Código"
583
 
584
+ #: crayon_settings_wp.class.php:227
585
  #@ crayon-syntax-highlighter
586
  msgid "Languages"
587
  msgstr "Idiomas"
588
 
589
+ #: crayon_settings_wp.class.php:228
590
  #@ crayon-syntax-highlighter
591
  msgid "Files"
592
  msgstr "Archivos"
593
 
594
+ #: crayon_settings_wp.class.php:229
595
  #@ crayon-syntax-highlighter
596
  msgid "Misc"
597
  msgstr "Misc"
598
 
599
+ #: crayon_settings_wp.class.php:232
600
  #@ crayon-syntax-highlighter
601
  msgid "Debug"
602
  msgstr "Depurar"
603
 
604
+ #: crayon_settings_wp.class.php:233
605
  #@ crayon-syntax-highlighter
606
  msgid "Errors"
607
  msgstr "Errores"
608
 
609
+ #: crayon_settings_wp.class.php:234
610
  #@ crayon-syntax-highlighter
611
  msgid "Log"
612
  msgstr "Log"
613
 
614
+ #: crayon_settings_wp.class.php:237
615
  #@ crayon-syntax-highlighter
616
  msgid "About"
617
  msgstr "Sobre"
618
 
619
+ #: crayon_settings_wp.class.php:558
620
  #@ crayon-syntax-highlighter
621
  msgid "Enqueue themes in the header (more efficient)."
622
  msgstr "Enqueue temas en la cabecera (más eficiente)."
623
 
624
+ #: crayon_settings_wp.class.php:587
625
  #@ crayon-syntax-highlighter
626
  msgid "Enqueue fonts in the header (more efficient)."
627
  msgstr "Enqueue fuentes en la cabecera (más eficiente)."
628
 
629
+ #: crayon_settings_wp.class.php:549
630
  #@ crayon-syntax-highlighter
631
  msgid "Loading..."
632
  msgstr "De carga..."
633
 
634
+ #: crayon_settings_wp.class.php:549
635
+ #: crayon_settings_wp.class.php:715
636
  #: util/theme-editor/editor.php:14
637
  #@ crayon-syntax-highlighter
638
  msgid "Theme Editor"
639
  msgstr "Tema Editor"
640
 
641
+ #: crayon_settings_wp.class.php:599
642
  #@ crayon-syntax-highlighter
643
  msgid "Always display scrollbars"
644
  msgstr "Siempre mostrar barras de desplazamiento"
645
 
646
+ #: crayon_settings_wp.class.php:629
647
  #@ crayon-syntax-highlighter
648
  msgid "Disable enqueuing for page templates that may contain The Loop."
649
  msgstr "Desactivar enqueuing de las plantillas de página que puede contener el Loop."
650
 
651
+ #: crayon_settings_wp.class.php:631
652
  #@ crayon-syntax-highlighter
653
  msgid "Load Crayons only from the main Wordpress query"
654
  msgstr "Lápices de colores única carga de la principal consulta de Wordpress"
655
 
656
+ #: crayon_settings_wp.class.php:679
657
  #@ crayon-syntax-highlighter
658
  msgid "Translators"
659
  msgstr "Traductores"
663
  msgid "Back To Settings"
664
  msgstr "Volver a la configuración"
665
 
666
+ #: crayon_formatter.class.php:270
667
  #@ crayon-syntax-highlighter
668
  msgid "Toggle Plain Code"
669
  msgstr "Código normal cambiar"
670
 
671
+ #: crayon_formatter.class.php:272
672
  #@ crayon-syntax-highlighter
673
  msgid "Copy Plain Code"
674
  msgstr "Copia simple código"
675
 
676
+ #: crayon_formatter.class.php:278
677
  #@ crayon-syntax-highlighter
678
  msgid "Open Code In New Window"
679
  msgstr "Código abierto en una ventana nueva"
680
 
681
+ #: crayon_formatter.class.php:281
682
  #@ crayon-syntax-highlighter
683
  msgid "Toggle Line Numbers"
684
  msgstr "Números de cambiar de línea"
685
 
686
+ #: crayon_formatter.class.php:288
687
  #@ crayon-syntax-highlighter
688
  msgid "Contains Mixed Languages"
689
  msgstr "Contiene Idiomas mixtos"
690
 
691
+ #: crayon_settings_wp.class.php:655
692
  #@ crayon-syntax-highlighter
693
  msgid "Hide Log"
694
  msgstr "Ocultar Conectarse"
695
 
696
+ #: crayon_formatter.class.php:272
697
+ #, php-format
698
+ #@ crayon-syntax-highlighter
699
+ msgid "Press %s to Copy, %s to Paste"
700
+ msgstr "Prensa %s para copiar, pegar a %s"
701
+
702
+ #: crayon_settings_wp.class.php:226
703
+ #@ crayon-syntax-highlighter
704
+ msgid "Tags"
705
+ msgstr "Etiquetas"
706
+
707
+ #: crayon_settings_wp.class.php:468
708
+ #@ crayon-syntax-highlighter
709
+ msgid "Inline Margin"
710
+ msgstr "Margen en línea"
711
+
712
+ #: crayon_settings_wp.class.php:609
713
+ #@ crayon-syntax-highlighter
714
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
715
+ msgstr "Captura de etiquetas en línea, como {php} {/php} en el interior oraciones."
716
+
717
+ #: crayon_settings_wp.class.php:611
718
+ #@ crayon-syntax-highlighter
719
+ msgid "Capture `backquotes` as &lt;code&gt;"
720
+ msgstr "Captura `backquotes` como &lt;code&gt;"
721
+
722
+ #: crayon_settings_wp.class.php:630
723
+ #@ crayon-syntax-highlighter
724
+ msgid "Allow Crayons inside comments"
725
+ msgstr "Permitir Crayons dentro de los comentarios"
726
+
727
  #. translators: plugin header field 'Version'
728
  #: crayon_wp.class.php:0
729
  #@ crayon-syntax-highlighter
730
+ msgid "1.8.2"
731
  msgstr ""
732
 
733
+ #: crayon_settings_wp.class.php:610
 
734
  #@ crayon-syntax-highlighter
735
+ msgid "Wrap Inline Tags"
736
+ msgstr "Envuelva en Línea Tags"
737
 
trans/crayon-syntax-highlighter-fr_FR.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-fr_FR.po CHANGED
@@ -19,97 +19,100 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:130
23
- #: crayon_settings.class.php:134
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:130
29
- #: crayon_settings.class.php:134
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:130
35
- #: crayon_settings.class.php:134
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statique"
39
 
40
- #: crayon_settings.class.php:132
41
- #: crayon_settings.class.php:136
 
 
 
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
- #: crayon_settings.class.php:132
47
- #: crayon_settings.class.php:136
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Pour cent"
51
 
52
- #: crayon_settings.class.php:145
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Aucun"
56
 
57
- #: crayon_settings.class.php:145
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Gauche"
61
 
62
- #: crayon_settings.class.php:145
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centre"
66
 
67
- #: crayon_settings.class.php:145
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Droite"
71
 
72
- #: crayon_settings.class.php:147
73
- #: crayon_settings.class.php:169
74
  #@ crayon-syntax-highlighter
75
  msgid "On MouseOver"
76
  msgstr "Sur MouseOver"
77
 
78
- #: crayon_settings.class.php:147
79
- #: crayon_settings.class.php:153
80
  #@ crayon-syntax-highlighter
81
  msgid "Always"
82
  msgstr "Toujours"
83
 
84
- #: crayon_settings.class.php:147
85
- #: crayon_settings.class.php:153
86
  #@ crayon-syntax-highlighter
87
  msgid "Never"
88
  msgstr "Jamais"
89
 
90
- #: crayon_settings.class.php:153
91
  #@ crayon-syntax-highlighter
92
  msgid "When Found"
93
  msgstr "Une fois trouvé"
94
 
95
- #: crayon_settings.class.php:169
96
  #@ crayon-syntax-highlighter
97
  msgid "On Double Click"
98
  msgstr "Le double-clic"
99
 
100
- #: crayon_settings.class.php:169
101
  #@ crayon-syntax-highlighter
102
  msgid "On Single Click"
103
  msgstr "Le Single Cliquez"
104
 
105
- #: crayon_settings.class.php:177
106
  #@ crayon-syntax-highlighter
107
  msgid "An error has occurred. Please try again later."
108
  msgstr "Une erreur s'est produite. S'il vous plaît essayez de nouveau plus tard."
109
 
110
  #: crayon_settings_wp.class.php:39
111
  #: crayon_settings_wp.class.php:82
112
- #: crayon_settings_wp.class.php:710
113
  #@ crayon-syntax-highlighter
114
  msgid "Settings"
115
  msgstr "Réglages"
@@ -129,298 +132,298 @@ msgstr "Enregistrer les modifications"
129
  msgid "Reset Settings"
130
  msgstr "Réinitialiser les paramètres"
131
 
132
- #: crayon_settings_wp.class.php:437
133
  #@ crayon-syntax-highlighter
134
  msgid "Height"
135
  msgstr "Hauteur"
136
 
137
- #: crayon_settings_wp.class.php:443
138
  #@ crayon-syntax-highlighter
139
  msgid "Width"
140
  msgstr "Largeur"
141
 
142
- #: crayon_settings_wp.class.php:449
143
  #@ crayon-syntax-highlighter
144
  msgid "Top Margin"
145
  msgstr "Marge supérieure"
146
 
147
- #: crayon_settings_wp.class.php:450
148
  #@ crayon-syntax-highlighter
149
  msgid "Bottom Margin"
150
  msgstr "La marge du bas"
151
 
152
- #: crayon_settings_wp.class.php:451
153
- #: crayon_settings_wp.class.php:456
154
  #@ crayon-syntax-highlighter
155
  msgid "Left Margin"
156
  msgstr "Marge de gauche"
157
 
158
- #: crayon_settings_wp.class.php:452
159
- #: crayon_settings_wp.class.php:456
160
  #@ crayon-syntax-highlighter
161
  msgid "Right Margin"
162
  msgstr "Marge droite"
163
 
164
- #: crayon_settings_wp.class.php:462
165
  #@ crayon-syntax-highlighter
166
  msgid "Horizontal Alignment"
167
  msgstr "Alignement horizontal"
168
 
169
- #: crayon_settings_wp.class.php:465
170
  #@ crayon-syntax-highlighter
171
  msgid "Allow floating elements to surround Crayon"
172
  msgstr "Autoriser des éléments flottants pour encercler Crayon"
173
 
174
- #: crayon_settings_wp.class.php:470
175
  #@ crayon-syntax-highlighter
176
  msgid "Display the Toolbar"
177
  msgstr "Afficher la barre d'outils"
178
 
179
- #: crayon_settings_wp.class.php:473
180
  #@ crayon-syntax-highlighter
181
  msgid "Overlay the toolbar on code rather than push it down when possible"
182
  msgstr "Superposition de la barre d'outils sur le code plutôt que de le pousser vers le bas si possible"
183
 
184
- #: crayon_settings_wp.class.php:474
185
  #@ crayon-syntax-highlighter
186
  msgid "Toggle the toolbar on single click when it is overlayed"
187
  msgstr "Basculer la barre d'outils sur simple clic quand il est superposé"
188
 
189
- #: crayon_settings_wp.class.php:475
190
  #@ crayon-syntax-highlighter
191
  msgid "Delay hiding the toolbar on MouseOut"
192
  msgstr "Retard cacher la barre d'outils sur le MouseOut"
193
 
194
- #: crayon_settings_wp.class.php:477
195
  #@ crayon-syntax-highlighter
196
  msgid "Display the title when provided"
197
  msgstr "Afficher le titre lorsqu'il est fourni"
198
 
199
- #: crayon_settings_wp.class.php:478
200
  #@ crayon-syntax-highlighter
201
  msgid "Display the language"
202
  msgstr "Affichage de la langue"
203
 
204
- #: crayon_settings_wp.class.php:483
205
  #@ crayon-syntax-highlighter
206
  msgid "Display striped code lines"
207
  msgstr "Affichage des lignes de code rayée"
208
 
209
- #: crayon_settings_wp.class.php:484
210
  #@ crayon-syntax-highlighter
211
  msgid "Enable line marking for important lines"
212
  msgstr "Activer la ligne de marquage des lignes importantes"
213
 
214
- #: crayon_settings_wp.class.php:485
215
  #@ crayon-syntax-highlighter
216
  msgid "Display line numbers by default"
217
  msgstr "Afficher les numéros de ligne par défaut"
218
 
219
- #: crayon_settings_wp.class.php:486
220
  #@ crayon-syntax-highlighter
221
  msgid "Enable line number toggling"
222
  msgstr "Activer basculer le numéro de ligne"
223
 
224
- #: crayon_settings_wp.class.php:487
225
  #@ crayon-syntax-highlighter
226
  msgid "Start line numbers from"
227
  msgstr "Démarrer à partir des numéros de ligne"
228
 
229
- #: crayon_settings_wp.class.php:497
230
  #@ crayon-syntax-highlighter
231
  msgid "When no language is provided, use the fallback"
232
  msgstr "Lorsque aucune langue n'est fourni, utilisez le repli"
233
 
234
- #: crayon_settings_wp.class.php:505
235
  #@ crayon-syntax-highlighter
236
  msgid "Parsing was successful"
237
  msgstr "Parsing a réussi"
238
 
239
- #: crayon_settings_wp.class.php:505
240
  #@ crayon-syntax-highlighter
241
  msgid "Parsing was unsuccessful"
242
  msgstr "Parsing a échoué"
243
 
244
- #: crayon_settings_wp.class.php:511
245
  #, php-format
246
  #@ crayon-syntax-highlighter
247
  msgid "The selected language with id %s could not be loaded"
248
  msgstr "La langue sélectionnée avec id %s ne pouvait pas être chargé"
249
 
250
- #: crayon_settings_wp.class.php:515
251
  #@ crayon-syntax-highlighter
252
  msgid "Show Languages"
253
  msgstr "Voir langues"
254
 
255
- #: crayon_settings_wp.class.php:552
256
  #@ crayon-syntax-highlighter
257
  msgid "Enable Live Preview"
258
  msgstr "Activer l'aperçu en direct"
259
 
260
- #: crayon_settings_wp.class.php:557
261
  #, php-format
262
  #@ crayon-syntax-highlighter
263
  msgid "The selected theme with id %s could not be loaded"
264
  msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
265
 
266
- #: crayon_settings_wp.class.php:575
267
  #@ crayon-syntax-highlighter
268
  msgid "Custom Font Size"
269
  msgstr "Taille du texte personnalisé"
270
 
271
- #: crayon_settings_wp.class.php:580
272
  #, php-format
273
  #@ crayon-syntax-highlighter
274
  msgid "The selected font with id %s could not be loaded"
275
  msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
276
 
277
- #: crayon_settings_wp.class.php:587
278
  #@ crayon-syntax-highlighter
279
  msgid "Enable plain code view and display"
280
  msgstr "Activer le mode code clair et d'affichage"
281
 
282
- #: crayon_settings_wp.class.php:592
283
  #@ crayon-syntax-highlighter
284
  msgid "Enable code copy/paste"
285
  msgstr "Activer copiez le code/coller"
286
 
287
- #: crayon_settings_wp.class.php:594
288
  #@ crayon-syntax-highlighter
289
  msgid "Enable opening code in a window"
290
  msgstr "Activer code d'ouverture dans une fenêtre"
291
 
292
- #: crayon_settings_wp.class.php:596
293
  #@ crayon-syntax-highlighter
294
  msgid "Tab size in spaces"
295
  msgstr "Taille des tabulations dans les espaces"
296
 
297
- #: crayon_settings_wp.class.php:598
298
  #@ crayon-syntax-highlighter
299
  msgid "Remove whitespace surrounding the shortcode content"
300
  msgstr "Enlevez les espaces entourant le contenu shortcode"
301
 
302
- #: crayon_settings_wp.class.php:608
303
  #@ crayon-syntax-highlighter
304
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
305
  msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
306
 
307
- #: crayon_settings_wp.class.php:615
308
  #@ crayon-syntax-highlighter
309
  msgid "Clear the cache used to store remote code requests"
310
  msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
311
 
312
- #: crayon_settings_wp.class.php:617
313
  #@ crayon-syntax-highlighter
314
  msgid "Clear Now"
315
  msgstr "Effacer maintenant"
316
 
317
- #: crayon_settings_wp.class.php:621
318
  #@ crayon-syntax-highlighter
319
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
320
  msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
321
 
322
- #: crayon_settings_wp.class.php:622
323
  #@ crayon-syntax-highlighter
324
  msgid "Disable animations"
325
  msgstr "Désactiver les animations"
326
 
327
- #: crayon_settings_wp.class.php:623
328
  #@ crayon-syntax-highlighter
329
  msgid "Disable runtime stats"
330
  msgstr "Désactiver l'exécution stats"
331
 
332
- #: crayon_settings_wp.class.php:630
333
  #@ crayon-syntax-highlighter
334
  msgid "Log errors for individual Crayons"
335
  msgstr "Connexion pour les erreurs individuelles Crayons"
336
 
337
- #: crayon_settings_wp.class.php:631
338
  #@ crayon-syntax-highlighter
339
  msgid "Log system-wide errors"
340
  msgstr "Connexion échelle du système des erreurs"
341
 
342
- #: crayon_settings_wp.class.php:632
343
  #@ crayon-syntax-highlighter
344
  msgid "Display custom message for errors"
345
  msgstr "Afficher un message personnalisé pour les erreurs"
346
 
347
- #: crayon_settings_wp.class.php:644
348
  #@ crayon-syntax-highlighter
349
  msgid "Show Log"
350
  msgstr "Afficher le journal"
351
 
352
- #: crayon_settings_wp.class.php:646
353
  #@ crayon-syntax-highlighter
354
  msgid "Clear Log"
355
  msgstr "Effacer le journal"
356
 
357
- #: crayon_settings_wp.class.php:647
358
  #@ crayon-syntax-highlighter
359
  msgid "Email Admin"
360
  msgstr "Admin Email"
361
 
362
- #: crayon_settings_wp.class.php:649
363
  #@ crayon-syntax-highlighter
364
  msgid "Email Developer"
365
  msgstr "Développeur Email"
366
 
367
- #: crayon_settings_wp.class.php:665
368
  #@ crayon-syntax-highlighter
369
  msgid "Version"
370
  msgstr "Version"
371
 
372
- #: crayon_settings_wp.class.php:667
373
  #@ crayon-syntax-highlighter
374
  msgid "Developer"
375
  msgstr "Développeur"
376
 
377
- #: crayon_settings_wp.class.php:698
378
  #@ crayon-syntax-highlighter
379
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
380
  msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
381
 
382
- #: crayon_settings_wp.class.php:549
383
  #, php-format
384
  #@ crayon-syntax-highlighter
385
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
386
  msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
387
 
388
- #: crayon_settings.class.php:101
389
  #@ crayon-syntax-highlighter
390
  msgid "Hourly"
391
  msgstr "Horaires"
392
 
393
- #: crayon_settings.class.php:101
394
  #@ crayon-syntax-highlighter
395
  msgid "Daily"
396
  msgstr "Daily"
397
 
398
- #: crayon_settings.class.php:102
399
  #@ crayon-syntax-highlighter
400
  msgid "Weekly"
401
  msgstr "Hebdomadaire"
402
 
403
- #: crayon_settings.class.php:102
404
  #@ crayon-syntax-highlighter
405
  msgid "Monthly"
406
  msgstr "Mensuel"
407
 
408
- #: crayon_settings.class.php:103
409
  #@ crayon-syntax-highlighter
410
  msgid "Immediately"
411
  msgstr "Immédiatement"
412
 
413
- #: crayon_settings_wp.class.php:423
414
  #@ crayon-syntax-highlighter
415
  msgid "Crayon Help"
416
  msgstr "Aide Crayon"
417
 
418
- #: crayon_settings_wp.class.php:618
419
  #@ crayon-syntax-highlighter
420
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
421
  msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
422
 
423
- #: crayon_settings_wp.class.php:504
424
  #, php-format
425
  #@ crayon-syntax-highlighter
426
  msgid "%d language has been detected."
@@ -428,78 +431,82 @@ msgid_plural "%d languages have been detected."
428
  msgstr[0] "%d la langue a été détectée."
429
  msgstr[1] "%d langues ont été détectés."
430
 
431
- #: crayon_settings_wp.class.php:611
432
  #@ crayon-syntax-highlighter
433
  msgid "Followed by your relative URL."
434
  msgstr "Suivi de votre URL relative."
435
 
436
- #: crayon_settings_wp.class.php:651
437
  #@ crayon-syntax-highlighter
438
  msgid "The log is currently empty."
439
  msgstr "Le journal est actuellement vide."
440
 
441
- #: crayon_settings_wp.class.php:653
442
  #@ crayon-syntax-highlighter
443
  msgid "The log file exists and is writable."
444
  msgstr "Le fichier journal existe et est accessible en écriture."
445
 
446
- #: crayon_settings_wp.class.php:653
447
  #@ crayon-syntax-highlighter
448
  msgid "The log file exists and is not writable."
449
  msgstr "Le fichier journal existe et n'est pas accessible en écriture."
450
 
451
- #: crayon_settings_wp.class.php:655
452
  #@ crayon-syntax-highlighter
453
  msgid "The log file does not exist and is not writable."
454
  msgstr "Le fichier journal n'existe pas et n'est pas modifiable."
455
 
456
- #: crayon_settings_wp.class.php:599
457
  #@ crayon-syntax-highlighter
458
  msgid "Capture &lt;pre&gt; tags as Crayons"
459
  msgstr "Capturez balises &lt;pre&gt; que Crayons"
460
 
461
- #: crayon_settings_wp.class.php:554
462
- #: crayon_settings_wp.class.php:583
463
- #: crayon_settings_wp.class.php:600
464
- #: crayon_settings_wp.class.php:601
465
- #: crayon_settings_wp.class.php:602
466
- #: crayon_settings_wp.class.php:618
467
- #: crayon_settings_wp.class.php:619
 
 
 
 
468
  #@ crayon-syntax-highlighter
469
  msgid "Learn More"
470
  msgstr "En savoir plus"
471
 
472
- #: crayon_settings_wp.class.php:603
473
  #@ crayon-syntax-highlighter
474
  msgid "Show Mixed Language Icon (+)"
475
  msgstr "Afficher l'icône Langue mixte (+)"
476
 
477
- #: crayon_settings_wp.class.php:602
478
  #@ crayon-syntax-highlighter
479
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
480
  msgstr "Autoriser Soulignant langue mélangée avec des délimiteurs et des tags."
481
 
482
- #: crayon_settings_wp.class.php:600
483
  #@ crayon-syntax-highlighter
484
  msgid "Capture Mini Tags like [php][/php] as Crayons."
485
  msgstr "Capturez Balises Mini tels que [php][/php] Crayons."
486
 
487
- #: crayon_settings_wp.class.php:601
488
  #@ crayon-syntax-highlighter
489
  msgid "Enable [plain][/plain] tag."
490
  msgstr "Activer tag [plain][/plain]."
491
 
492
- #: crayon_settings.class.php:169
493
  #@ crayon-syntax-highlighter
494
  msgid "Disable Mouse Events"
495
  msgstr "Désactiver les événements souris"
496
 
497
- #: crayon_settings_wp.class.php:590
498
  #@ crayon-syntax-highlighter
499
  msgid "Enable plain code toggling"
500
  msgstr "Activer le code basculer plaine"
501
 
502
- #: crayon_settings_wp.class.php:591
503
  #@ crayon-syntax-highlighter
504
  msgid "Show the plain code by default"
505
  msgstr "Montrer le code brut par défaut"
@@ -534,7 +541,7 @@ msgstr ""
534
  msgid "http://ak.net84.net/"
535
  msgstr ""
536
 
537
- #: crayon_settings_wp.class.php:714
538
  #@ crayon-syntax-highlighter
539
  msgid "Donate"
540
  msgstr "Faire un don"
@@ -547,7 +554,7 @@ msgstr "Général"
547
  #: crayon_settings_wp.class.php:220
548
  #@ crayon-syntax-highlighter
549
  msgid "Theme"
550
- msgstr "Thème"
551
 
552
  #: crayon_settings_wp.class.php:221
553
  #@ crayon-syntax-highlighter
@@ -574,79 +581,79 @@ msgstr "Lignes"
574
  msgid "Code"
575
  msgstr "Code"
576
 
577
- #: crayon_settings_wp.class.php:226
578
  #@ crayon-syntax-highlighter
579
  msgid "Languages"
580
  msgstr "Langues"
581
 
582
- #: crayon_settings_wp.class.php:227
583
  #@ crayon-syntax-highlighter
584
  msgid "Files"
585
  msgstr "Fichiers"
586
 
587
- #: crayon_settings_wp.class.php:228
588
  #@ crayon-syntax-highlighter
589
  msgid "Misc"
590
  msgstr "Divers"
591
 
592
- #: crayon_settings_wp.class.php:231
593
  #@ crayon-syntax-highlighter
594
  msgid "Debug"
595
  msgstr "Débogage"
596
 
597
- #: crayon_settings_wp.class.php:232
598
  #@ crayon-syntax-highlighter
599
  msgid "Errors"
600
  msgstr "Erreurs"
601
 
602
- #: crayon_settings_wp.class.php:233
603
  #@ crayon-syntax-highlighter
604
  msgid "Log"
605
  msgstr "Connexion"
606
 
607
- #: crayon_settings_wp.class.php:236
608
  #@ crayon-syntax-highlighter
609
  msgid "About"
610
  msgstr "À propos"
611
 
612
- #: crayon_settings_wp.class.php:554
613
  #@ crayon-syntax-highlighter
614
  msgid "Enqueue themes in the header (more efficient)."
615
  msgstr "Enqueue thèmes dans l'en-tête (plus efficace)."
616
 
617
- #: crayon_settings_wp.class.php:583
618
  #@ crayon-syntax-highlighter
619
  msgid "Enqueue fonts in the header (more efficient)."
620
  msgstr "Enqueue polices de caractères dans l'en-tête (plus efficace)."
621
 
622
- #: crayon_settings_wp.class.php:545
623
  #@ crayon-syntax-highlighter
624
  msgid "Loading..."
625
  msgstr "Chargement..."
626
 
627
- #: crayon_settings_wp.class.php:545
628
- #: crayon_settings_wp.class.php:712
629
  #: util/theme-editor/editor.php:14
630
  #@ crayon-syntax-highlighter
631
  msgid "Theme Editor"
632
  msgstr "Éditeur de thème"
633
 
634
- #: crayon_settings_wp.class.php:595
635
  #@ crayon-syntax-highlighter
636
  msgid "Always display scrollbars"
637
  msgstr "Toujours afficher les barres de défilement"
638
 
639
- #: crayon_settings_wp.class.php:619
640
  #@ crayon-syntax-highlighter
641
  msgid "Disable enqueuing for page templates that may contain The Loop."
642
  msgstr "Désactiver enqueuing pour les modèles de page qui peut contenir la boucle."
643
 
644
- #: crayon_settings_wp.class.php:620
645
  #@ crayon-syntax-highlighter
646
  msgid "Load Crayons only from the main Wordpress query"
647
  msgstr "Crayons Charge seulement de la requête principale Wordpress"
648
 
649
- #: crayon_settings_wp.class.php:668
650
  #@ crayon-syntax-highlighter
651
  msgid "Translators"
652
  msgstr "Traducteurs"
@@ -656,45 +663,75 @@ msgstr "Traducteurs"
656
  msgid "Back To Settings"
657
  msgstr "Retour aux réglages"
658
 
659
- #: crayon_formatter.class.php:203
660
  #@ crayon-syntax-highlighter
661
  msgid "Toggle Plain Code"
662
  msgstr "Basculer code plaine"
663
 
664
- #: crayon_formatter.class.php:205
665
  #@ crayon-syntax-highlighter
666
  msgid "Copy Plain Code"
667
  msgstr "Copier le code ordinaire"
668
 
669
- #: crayon_formatter.class.php:211
670
  #@ crayon-syntax-highlighter
671
  msgid "Open Code In New Window"
672
  msgstr "Code dans la nouvelle fenêtre"
673
 
674
- #: crayon_formatter.class.php:214
675
  #@ crayon-syntax-highlighter
676
  msgid "Toggle Line Numbers"
677
  msgstr "Numéros de ligne Basculer"
678
 
679
- #: crayon_formatter.class.php:221
680
  #@ crayon-syntax-highlighter
681
  msgid "Contains Mixed Languages"
682
  msgstr "Contient un mélange de langues"
683
 
684
- #: crayon_settings_wp.class.php:644
685
  #@ crayon-syntax-highlighter
686
  msgid "Hide Log"
687
  msgstr "Cacher Connexion"
688
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
689
  #. translators: plugin header field 'Version'
690
  #: crayon_wp.class.php:0
691
  #@ crayon-syntax-highlighter
692
- msgid "1.7.26"
693
  msgstr ""
694
 
695
- #: crayon_formatter.class.php:205
696
- #, php-format
697
  #@ crayon-syntax-highlighter
698
- msgid "Press %s to Copy, %s to Paste"
699
- msgstr "Presse %s à Copier, Coller à %s"
700
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:135
23
+ #: crayon_settings.class.php:139
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
+ #: crayon_settings.class.php:135
29
+ #: crayon_settings.class.php:139
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
+ #: crayon_settings.class.php:135
35
+ #: crayon_settings.class.php:139
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statique"
39
 
40
+ #: crayon_settings.class.php:137
41
+ #: crayon_settings.class.php:141
42
+ #: crayon_settings_wp.class.php:461
43
+ #: crayon_settings_wp.class.php:470
44
+ #: crayon_settings_wp.class.php:581
45
  #@ crayon-syntax-highlighter
46
  msgid "Pixels"
47
  msgstr "Pixels"
48
 
49
+ #: crayon_settings.class.php:137
50
+ #: crayon_settings.class.php:141
51
  #@ crayon-syntax-highlighter
52
  msgid "Percent"
53
  msgstr "Pour cent"
54
 
55
+ #: crayon_settings.class.php:150
56
  #@ crayon-syntax-highlighter
57
  msgid "None"
58
  msgstr "Aucun"
59
 
60
+ #: crayon_settings.class.php:150
61
  #@ crayon-syntax-highlighter
62
  msgid "Left"
63
  msgstr "Gauche"
64
 
65
+ #: crayon_settings.class.php:150
66
  #@ crayon-syntax-highlighter
67
  msgid "Center"
68
  msgstr "Centre"
69
 
70
+ #: crayon_settings.class.php:150
71
  #@ crayon-syntax-highlighter
72
  msgid "Right"
73
  msgstr "Droite"
74
 
75
+ #: crayon_settings.class.php:152
76
+ #: crayon_settings.class.php:174
77
  #@ crayon-syntax-highlighter
78
  msgid "On MouseOver"
79
  msgstr "Sur MouseOver"
80
 
81
+ #: crayon_settings.class.php:152
82
+ #: crayon_settings.class.php:158
83
  #@ crayon-syntax-highlighter
84
  msgid "Always"
85
  msgstr "Toujours"
86
 
87
+ #: crayon_settings.class.php:152
88
+ #: crayon_settings.class.php:158
89
  #@ crayon-syntax-highlighter
90
  msgid "Never"
91
  msgstr "Jamais"
92
 
93
+ #: crayon_settings.class.php:158
94
  #@ crayon-syntax-highlighter
95
  msgid "When Found"
96
  msgstr "Une fois trouvé"
97
 
98
+ #: crayon_settings.class.php:174
99
  #@ crayon-syntax-highlighter
100
  msgid "On Double Click"
101
  msgstr "Le double-clic"
102
 
103
+ #: crayon_settings.class.php:174
104
  #@ crayon-syntax-highlighter
105
  msgid "On Single Click"
106
  msgstr "Le Single Cliquez"
107
 
108
+ #: crayon_settings.class.php:182
109
  #@ crayon-syntax-highlighter
110
  msgid "An error has occurred. Please try again later."
111
  msgstr "Une erreur s'est produite. S'il vous plaît essayez de nouveau plus tard."
112
 
113
  #: crayon_settings_wp.class.php:39
114
  #: crayon_settings_wp.class.php:82
115
+ #: crayon_settings_wp.class.php:713
116
  #@ crayon-syntax-highlighter
117
  msgid "Settings"
118
  msgstr "Réglages"
132
  msgid "Reset Settings"
133
  msgstr "Réinitialiser les paramètres"
134
 
135
+ #: crayon_settings_wp.class.php:438
136
  #@ crayon-syntax-highlighter
137
  msgid "Height"
138
  msgstr "Hauteur"
139
 
140
+ #: crayon_settings_wp.class.php:444
141
  #@ crayon-syntax-highlighter
142
  msgid "Width"
143
  msgstr "Largeur"
144
 
145
+ #: crayon_settings_wp.class.php:450
146
  #@ crayon-syntax-highlighter
147
  msgid "Top Margin"
148
  msgstr "Marge supérieure"
149
 
150
+ #: crayon_settings_wp.class.php:451
151
  #@ crayon-syntax-highlighter
152
  msgid "Bottom Margin"
153
  msgstr "La marge du bas"
154
 
155
+ #: crayon_settings_wp.class.php:452
156
+ #: crayon_settings_wp.class.php:457
157
  #@ crayon-syntax-highlighter
158
  msgid "Left Margin"
159
  msgstr "Marge de gauche"
160
 
161
+ #: crayon_settings_wp.class.php:453
162
+ #: crayon_settings_wp.class.php:457
163
  #@ crayon-syntax-highlighter
164
  msgid "Right Margin"
165
  msgstr "Marge droite"
166
 
167
+ #: crayon_settings_wp.class.php:463
168
  #@ crayon-syntax-highlighter
169
  msgid "Horizontal Alignment"
170
  msgstr "Alignement horizontal"
171
 
172
+ #: crayon_settings_wp.class.php:466
173
  #@ crayon-syntax-highlighter
174
  msgid "Allow floating elements to surround Crayon"
175
  msgstr "Autoriser des éléments flottants pour encercler Crayon"
176
 
177
+ #: crayon_settings_wp.class.php:474
178
  #@ crayon-syntax-highlighter
179
  msgid "Display the Toolbar"
180
  msgstr "Afficher la barre d'outils"
181
 
182
+ #: crayon_settings_wp.class.php:477
183
  #@ crayon-syntax-highlighter
184
  msgid "Overlay the toolbar on code rather than push it down when possible"
185
  msgstr "Superposition de la barre d'outils sur le code plutôt que de le pousser vers le bas si possible"
186
 
187
+ #: crayon_settings_wp.class.php:478
188
  #@ crayon-syntax-highlighter
189
  msgid "Toggle the toolbar on single click when it is overlayed"
190
  msgstr "Basculer la barre d'outils sur simple clic quand il est superposé"
191
 
192
+ #: crayon_settings_wp.class.php:479
193
  #@ crayon-syntax-highlighter
194
  msgid "Delay hiding the toolbar on MouseOut"
195
  msgstr "Retard cacher la barre d'outils sur le MouseOut"
196
 
197
+ #: crayon_settings_wp.class.php:481
198
  #@ crayon-syntax-highlighter
199
  msgid "Display the title when provided"
200
  msgstr "Afficher le titre lorsqu'il est fourni"
201
 
202
+ #: crayon_settings_wp.class.php:482
203
  #@ crayon-syntax-highlighter
204
  msgid "Display the language"
205
  msgstr "Affichage de la langue"
206
 
207
+ #: crayon_settings_wp.class.php:487
208
  #@ crayon-syntax-highlighter
209
  msgid "Display striped code lines"
210
  msgstr "Affichage des lignes de code rayée"
211
 
212
+ #: crayon_settings_wp.class.php:488
213
  #@ crayon-syntax-highlighter
214
  msgid "Enable line marking for important lines"
215
  msgstr "Activer la ligne de marquage des lignes importantes"
216
 
217
+ #: crayon_settings_wp.class.php:489
218
  #@ crayon-syntax-highlighter
219
  msgid "Display line numbers by default"
220
  msgstr "Afficher les numéros de ligne par défaut"
221
 
222
+ #: crayon_settings_wp.class.php:490
223
  #@ crayon-syntax-highlighter
224
  msgid "Enable line number toggling"
225
  msgstr "Activer basculer le numéro de ligne"
226
 
227
+ #: crayon_settings_wp.class.php:491
228
  #@ crayon-syntax-highlighter
229
  msgid "Start line numbers from"
230
  msgstr "Démarrer à partir des numéros de ligne"
231
 
232
+ #: crayon_settings_wp.class.php:501
233
  #@ crayon-syntax-highlighter
234
  msgid "When no language is provided, use the fallback"
235
  msgstr "Lorsque aucune langue n'est fourni, utilisez le repli"
236
 
237
+ #: crayon_settings_wp.class.php:509
238
  #@ crayon-syntax-highlighter
239
  msgid "Parsing was successful"
240
  msgstr "Parsing a réussi"
241
 
242
+ #: crayon_settings_wp.class.php:509
243
  #@ crayon-syntax-highlighter
244
  msgid "Parsing was unsuccessful"
245
  msgstr "Parsing a échoué"
246
 
247
+ #: crayon_settings_wp.class.php:515
248
  #, php-format
249
  #@ crayon-syntax-highlighter
250
  msgid "The selected language with id %s could not be loaded"
251
  msgstr "La langue sélectionnée avec id %s ne pouvait pas être chargé"
252
 
253
+ #: crayon_settings_wp.class.php:519
254
  #@ crayon-syntax-highlighter
255
  msgid "Show Languages"
256
  msgstr "Voir langues"
257
 
258
+ #: crayon_settings_wp.class.php:556
259
  #@ crayon-syntax-highlighter
260
  msgid "Enable Live Preview"
261
  msgstr "Activer l'aperçu en direct"
262
 
263
+ #: crayon_settings_wp.class.php:561
264
  #, php-format
265
  #@ crayon-syntax-highlighter
266
  msgid "The selected theme with id %s could not be loaded"
267
  msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
268
 
269
+ #: crayon_settings_wp.class.php:579
270
  #@ crayon-syntax-highlighter
271
  msgid "Custom Font Size"
272
  msgstr "Taille du texte personnalisé"
273
 
274
+ #: crayon_settings_wp.class.php:584
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected font with id %s could not be loaded"
278
  msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
279
 
280
+ #: crayon_settings_wp.class.php:591
281
  #@ crayon-syntax-highlighter
282
  msgid "Enable plain code view and display"
283
  msgstr "Activer le mode code clair et d'affichage"
284
 
285
+ #: crayon_settings_wp.class.php:596
286
  #@ crayon-syntax-highlighter
287
  msgid "Enable code copy/paste"
288
  msgstr "Activer copiez le code/coller"
289
 
290
+ #: crayon_settings_wp.class.php:598
291
  #@ crayon-syntax-highlighter
292
  msgid "Enable opening code in a window"
293
  msgstr "Activer code d'ouverture dans une fenêtre"
294
 
295
+ #: crayon_settings_wp.class.php:600
296
  #@ crayon-syntax-highlighter
297
  msgid "Tab size in spaces"
298
  msgstr "Taille des tabulations dans les espaces"
299
 
300
+ #: crayon_settings_wp.class.php:602
301
  #@ crayon-syntax-highlighter
302
  msgid "Remove whitespace surrounding the shortcode content"
303
  msgstr "Enlevez les espaces entourant le contenu shortcode"
304
 
305
+ #: crayon_settings_wp.class.php:618
306
  #@ crayon-syntax-highlighter
307
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
308
  msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
309
 
310
+ #: crayon_settings_wp.class.php:625
311
  #@ crayon-syntax-highlighter
312
  msgid "Clear the cache used to store remote code requests"
313
  msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
314
 
315
+ #: crayon_settings_wp.class.php:627
316
  #@ crayon-syntax-highlighter
317
  msgid "Clear Now"
318
  msgstr "Effacer maintenant"
319
 
320
+ #: crayon_settings_wp.class.php:632
321
  #@ crayon-syntax-highlighter
322
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
323
  msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
324
 
325
+ #: crayon_settings_wp.class.php:633
326
  #@ crayon-syntax-highlighter
327
  msgid "Disable animations"
328
  msgstr "Désactiver les animations"
329
 
330
+ #: crayon_settings_wp.class.php:634
331
  #@ crayon-syntax-highlighter
332
  msgid "Disable runtime stats"
333
  msgstr "Désactiver l'exécution stats"
334
 
335
+ #: crayon_settings_wp.class.php:641
336
  #@ crayon-syntax-highlighter
337
  msgid "Log errors for individual Crayons"
338
  msgstr "Connexion pour les erreurs individuelles Crayons"
339
 
340
+ #: crayon_settings_wp.class.php:642
341
  #@ crayon-syntax-highlighter
342
  msgid "Log system-wide errors"
343
  msgstr "Connexion échelle du système des erreurs"
344
 
345
+ #: crayon_settings_wp.class.php:643
346
  #@ crayon-syntax-highlighter
347
  msgid "Display custom message for errors"
348
  msgstr "Afficher un message personnalisé pour les erreurs"
349
 
350
+ #: crayon_settings_wp.class.php:655
351
  #@ crayon-syntax-highlighter
352
  msgid "Show Log"
353
  msgstr "Afficher le journal"
354
 
355
+ #: crayon_settings_wp.class.php:657
356
  #@ crayon-syntax-highlighter
357
  msgid "Clear Log"
358
  msgstr "Effacer le journal"
359
 
360
+ #: crayon_settings_wp.class.php:658
361
  #@ crayon-syntax-highlighter
362
  msgid "Email Admin"
363
  msgstr "Admin Email"
364
 
365
+ #: crayon_settings_wp.class.php:660
366
  #@ crayon-syntax-highlighter
367
  msgid "Email Developer"
368
  msgstr "Développeur Email"
369
 
370
+ #: crayon_settings_wp.class.php:676
371
  #@ crayon-syntax-highlighter
372
  msgid "Version"
373
  msgstr "Version"
374
 
375
+ #: crayon_settings_wp.class.php:678
376
  #@ crayon-syntax-highlighter
377
  msgid "Developer"
378
  msgstr "Développeur"
379
 
380
+ #: crayon_settings_wp.class.php:701
381
  #@ crayon-syntax-highlighter
382
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
383
  msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
384
 
385
+ #: crayon_settings_wp.class.php:553
386
  #, php-format
387
  #@ crayon-syntax-highlighter
388
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
389
  msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
390
 
391
+ #: crayon_settings.class.php:106
392
  #@ crayon-syntax-highlighter
393
  msgid "Hourly"
394
  msgstr "Horaires"
395
 
396
+ #: crayon_settings.class.php:106
397
  #@ crayon-syntax-highlighter
398
  msgid "Daily"
399
  msgstr "Daily"
400
 
401
+ #: crayon_settings.class.php:107
402
  #@ crayon-syntax-highlighter
403
  msgid "Weekly"
404
  msgstr "Hebdomadaire"
405
 
406
+ #: crayon_settings.class.php:107
407
  #@ crayon-syntax-highlighter
408
  msgid "Monthly"
409
  msgstr "Mensuel"
410
 
411
+ #: crayon_settings.class.php:108
412
  #@ crayon-syntax-highlighter
413
  msgid "Immediately"
414
  msgstr "Immédiatement"
415
 
416
+ #: crayon_settings_wp.class.php:424
417
  #@ crayon-syntax-highlighter
418
  msgid "Crayon Help"
419
  msgstr "Aide Crayon"
420
 
421
+ #: crayon_settings_wp.class.php:628
422
  #@ crayon-syntax-highlighter
423
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
424
  msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
425
 
426
+ #: crayon_settings_wp.class.php:508
427
  #, php-format
428
  #@ crayon-syntax-highlighter
429
  msgid "%d language has been detected."
431
  msgstr[0] "%d la langue a été détectée."
432
  msgstr[1] "%d langues ont été détectés."
433
 
434
+ #: crayon_settings_wp.class.php:621
435
  #@ crayon-syntax-highlighter
436
  msgid "Followed by your relative URL."
437
  msgstr "Suivi de votre URL relative."
438
 
439
+ #: crayon_settings_wp.class.php:662
440
  #@ crayon-syntax-highlighter
441
  msgid "The log is currently empty."
442
  msgstr "Le journal est actuellement vide."
443
 
444
+ #: crayon_settings_wp.class.php:664
445
  #@ crayon-syntax-highlighter
446
  msgid "The log file exists and is writable."
447
  msgstr "Le fichier journal existe et est accessible en écriture."
448
 
449
+ #: crayon_settings_wp.class.php:664
450
  #@ crayon-syntax-highlighter
451
  msgid "The log file exists and is not writable."
452
  msgstr "Le fichier journal existe et n'est pas accessible en écriture."
453
 
454
+ #: crayon_settings_wp.class.php:666
455
  #@ crayon-syntax-highlighter
456
  msgid "The log file does not exist and is not writable."
457
  msgstr "Le fichier journal n'existe pas et n'est pas modifiable."
458
 
459
+ #: crayon_settings_wp.class.php:612
460
  #@ crayon-syntax-highlighter
461
  msgid "Capture &lt;pre&gt; tags as Crayons"
462
  msgstr "Capturez balises &lt;pre&gt; que Crayons"
463
 
464
+ #: crayon_settings_wp.class.php:558
465
+ #: crayon_settings_wp.class.php:587
466
+ #: crayon_settings_wp.class.php:603
467
+ #: crayon_settings_wp.class.php:608
468
+ #: crayon_settings_wp.class.php:609
469
+ #: crayon_settings_wp.class.php:610
470
+ #: crayon_settings_wp.class.php:611
471
+ #: crayon_settings_wp.class.php:612
472
+ #: crayon_settings_wp.class.php:613
473
+ #: crayon_settings_wp.class.php:628
474
+ #: crayon_settings_wp.class.php:629
475
  #@ crayon-syntax-highlighter
476
  msgid "Learn More"
477
  msgstr "En savoir plus"
478
 
479
+ #: crayon_settings_wp.class.php:604
480
  #@ crayon-syntax-highlighter
481
  msgid "Show Mixed Language Icon (+)"
482
  msgstr "Afficher l'icône Langue mixte (+)"
483
 
484
+ #: crayon_settings_wp.class.php:603
485
  #@ crayon-syntax-highlighter
486
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
487
  msgstr "Autoriser Soulignant langue mélangée avec des délimiteurs et des tags."
488
 
489
+ #: crayon_settings_wp.class.php:608
490
  #@ crayon-syntax-highlighter
491
  msgid "Capture Mini Tags like [php][/php] as Crayons."
492
  msgstr "Capturez Balises Mini tels que [php][/php] Crayons."
493
 
494
+ #: crayon_settings_wp.class.php:613
495
  #@ crayon-syntax-highlighter
496
  msgid "Enable [plain][/plain] tag."
497
  msgstr "Activer tag [plain][/plain]."
498
 
499
+ #: crayon_settings.class.php:174
500
  #@ crayon-syntax-highlighter
501
  msgid "Disable Mouse Events"
502
  msgstr "Désactiver les événements souris"
503
 
504
+ #: crayon_settings_wp.class.php:594
505
  #@ crayon-syntax-highlighter
506
  msgid "Enable plain code toggling"
507
  msgstr "Activer le code basculer plaine"
508
 
509
+ #: crayon_settings_wp.class.php:595
510
  #@ crayon-syntax-highlighter
511
  msgid "Show the plain code by default"
512
  msgstr "Montrer le code brut par défaut"
541
  msgid "http://ak.net84.net/"
542
  msgstr ""
543
 
544
+ #: crayon_settings_wp.class.php:717
545
  #@ crayon-syntax-highlighter
546
  msgid "Donate"
547
  msgstr "Faire un don"
554
  #: crayon_settings_wp.class.php:220
555
  #@ crayon-syntax-highlighter
556
  msgid "Theme"
557
+ msgstr "Theme"
558
 
559
  #: crayon_settings_wp.class.php:221
560
  #@ crayon-syntax-highlighter
581
  msgid "Code"
582
  msgstr "Code"
583
 
584
+ #: crayon_settings_wp.class.php:227
585
  #@ crayon-syntax-highlighter
586
  msgid "Languages"
587
  msgstr "Langues"
588
 
589
+ #: crayon_settings_wp.class.php:228
590
  #@ crayon-syntax-highlighter
591
  msgid "Files"
592
  msgstr "Fichiers"
593
 
594
+ #: crayon_settings_wp.class.php:229
595
  #@ crayon-syntax-highlighter
596
  msgid "Misc"
597
  msgstr "Divers"
598
 
599
+ #: crayon_settings_wp.class.php:232
600
  #@ crayon-syntax-highlighter
601
  msgid "Debug"
602
  msgstr "Débogage"
603
 
604
+ #: crayon_settings_wp.class.php:233
605
  #@ crayon-syntax-highlighter
606
  msgid "Errors"
607
  msgstr "Erreurs"
608
 
609
+ #: crayon_settings_wp.class.php:234
610
  #@ crayon-syntax-highlighter
611
  msgid "Log"
612
  msgstr "Connexion"
613
 
614
+ #: crayon_settings_wp.class.php:237
615
  #@ crayon-syntax-highlighter
616
  msgid "About"
617
  msgstr "À propos"
618
 
619
+ #: crayon_settings_wp.class.php:558
620
  #@ crayon-syntax-highlighter
621
  msgid "Enqueue themes in the header (more efficient)."
622
  msgstr "Enqueue thèmes dans l'en-tête (plus efficace)."
623
 
624
+ #: crayon_settings_wp.class.php:587
625
  #@ crayon-syntax-highlighter
626
  msgid "Enqueue fonts in the header (more efficient)."
627
  msgstr "Enqueue polices de caractères dans l'en-tête (plus efficace)."
628
 
629
+ #: crayon_settings_wp.class.php:549
630
  #@ crayon-syntax-highlighter
631
  msgid "Loading..."
632
  msgstr "Chargement..."
633
 
634
+ #: crayon_settings_wp.class.php:549
635
+ #: crayon_settings_wp.class.php:715
636
  #: util/theme-editor/editor.php:14
637
  #@ crayon-syntax-highlighter
638
  msgid "Theme Editor"
639
  msgstr "Éditeur de thème"
640
 
641
+ #: crayon_settings_wp.class.php:599
642
  #@ crayon-syntax-highlighter
643
  msgid "Always display scrollbars"
644
  msgstr "Toujours afficher les barres de défilement"
645
 
646
+ #: crayon_settings_wp.class.php:629
647
  #@ crayon-syntax-highlighter
648
  msgid "Disable enqueuing for page templates that may contain The Loop."
649
  msgstr "Désactiver enqueuing pour les modèles de page qui peut contenir la boucle."
650
 
651
+ #: crayon_settings_wp.class.php:631
652
  #@ crayon-syntax-highlighter
653
  msgid "Load Crayons only from the main Wordpress query"
654
  msgstr "Crayons Charge seulement de la requête principale Wordpress"
655
 
656
+ #: crayon_settings_wp.class.php:679
657
  #@ crayon-syntax-highlighter
658
  msgid "Translators"
659
  msgstr "Traducteurs"
663
  msgid "Back To Settings"
664
  msgstr "Retour aux réglages"
665
 
666
+ #: crayon_formatter.class.php:270
667
  #@ crayon-syntax-highlighter
668
  msgid "Toggle Plain Code"
669
  msgstr "Basculer code plaine"
670
 
671
+ #: crayon_formatter.class.php:272
672
  #@ crayon-syntax-highlighter
673
  msgid "Copy Plain Code"
674
  msgstr "Copier le code ordinaire"
675
 
676
+ #: crayon_formatter.class.php:278
677
  #@ crayon-syntax-highlighter
678
  msgid "Open Code In New Window"
679
  msgstr "Code dans la nouvelle fenêtre"
680
 
681
+ #: crayon_formatter.class.php:281
682
  #@ crayon-syntax-highlighter
683
  msgid "Toggle Line Numbers"
684
  msgstr "Numéros de ligne Basculer"
685
 
686
+ #: crayon_formatter.class.php:288
687
  #@ crayon-syntax-highlighter
688
  msgid "Contains Mixed Languages"
689
  msgstr "Contient un mélange de langues"
690
 
691
+ #: crayon_settings_wp.class.php:655
692
  #@ crayon-syntax-highlighter
693
  msgid "Hide Log"
694
  msgstr "Cacher Connexion"
695
 
696
+ #: crayon_formatter.class.php:272
697
+ #, php-format
698
+ #@ crayon-syntax-highlighter
699
+ msgid "Press %s to Copy, %s to Paste"
700
+ msgstr "Presse %s à Copier, Coller à %s"
701
+
702
+ #: crayon_settings_wp.class.php:226
703
+ #@ crayon-syntax-highlighter
704
+ msgid "Tags"
705
+ msgstr "Mots-clés"
706
+
707
+ #: crayon_settings_wp.class.php:468
708
+ #@ crayon-syntax-highlighter
709
+ msgid "Inline Margin"
710
+ msgstr "Marge en ligne"
711
+
712
+ #: crayon_settings_wp.class.php:609
713
+ #@ crayon-syntax-highlighter
714
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
715
+ msgstr "Capturez Mots Inline comme {php} {/php} à l'intérieur des phrases."
716
+
717
+ #: crayon_settings_wp.class.php:611
718
+ #@ crayon-syntax-highlighter
719
+ msgid "Capture `backquotes` as &lt;code&gt;"
720
+ msgstr "Capturez `apostrophes inverses` as &lt;code&gt;"
721
+
722
+ #: crayon_settings_wp.class.php:630
723
+ #@ crayon-syntax-highlighter
724
+ msgid "Allow Crayons inside comments"
725
+ msgstr "Permettez-Crayons à l'intérieur de commentaires"
726
+
727
  #. translators: plugin header field 'Version'
728
  #: crayon_wp.class.php:0
729
  #@ crayon-syntax-highlighter
730
+ msgid "1.8.2"
731
  msgstr ""
732
 
733
+ #: crayon_settings_wp.class.php:610
 
734
  #@ crayon-syntax-highlighter
735
+ msgid "Wrap Inline Tags"
736
+ msgstr "Wrap Balises Inline"
737
 
trans/crayon-syntax-highlighter-it_IT.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-it_IT.po CHANGED
@@ -19,97 +19,100 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:130
23
- #: crayon_settings.class.php:134
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:130
29
- #: crayon_settings.class.php:134
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:130
35
- #: crayon_settings.class.php:134
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statico"
39
 
40
- #: crayon_settings.class.php:132
41
- #: crayon_settings.class.php:136
 
 
 
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
- #: crayon_settings.class.php:132
47
- #: crayon_settings.class.php:136
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Per cento"
51
 
52
- #: crayon_settings.class.php:145
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Nessuno"
56
 
57
- #: crayon_settings.class.php:145
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Sinistra"
61
 
62
- #: crayon_settings.class.php:145
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centro"
66
 
67
- #: crayon_settings.class.php:145
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Destra"
71
 
72
- #: crayon_settings.class.php:147
73
- #: crayon_settings.class.php:169
74
  #@ crayon-syntax-highlighter
75
  msgid "On MouseOver"
76
  msgstr "Al passaggio del mouse"
77
 
78
- #: crayon_settings.class.php:147
79
- #: crayon_settings.class.php:153
80
  #@ crayon-syntax-highlighter
81
  msgid "Always"
82
  msgstr "Sempre"
83
 
84
- #: crayon_settings.class.php:147
85
- #: crayon_settings.class.php:153
86
  #@ crayon-syntax-highlighter
87
  msgid "Never"
88
  msgstr "Mai"
89
 
90
- #: crayon_settings.class.php:153
91
  #@ crayon-syntax-highlighter
92
  msgid "When Found"
93
  msgstr "Quando Trovato"
94
 
95
- #: crayon_settings.class.php:169
96
  #@ crayon-syntax-highlighter
97
  msgid "On Double Click"
98
  msgstr "Su doppio click"
99
 
100
- #: crayon_settings.class.php:169
101
  #@ crayon-syntax-highlighter
102
  msgid "On Single Click"
103
  msgstr "Il singolo click"
104
 
105
- #: crayon_settings.class.php:177
106
  #@ crayon-syntax-highlighter
107
  msgid "An error has occurred. Please try again later."
108
  msgstr "È verificato un errore. Riprova più tardi."
109
 
110
  #: crayon_settings_wp.class.php:39
111
  #: crayon_settings_wp.class.php:82
112
- #: crayon_settings_wp.class.php:710
113
  #@ crayon-syntax-highlighter
114
  msgid "Settings"
115
  msgstr "Impostazioni"
@@ -129,298 +132,298 @@ msgstr "Salva le modifiche"
129
  msgid "Reset Settings"
130
  msgstr "Ripristina Impostazioni"
131
 
132
- #: crayon_settings_wp.class.php:437
133
  #@ crayon-syntax-highlighter
134
  msgid "Height"
135
  msgstr "Altezza"
136
 
137
- #: crayon_settings_wp.class.php:443
138
  #@ crayon-syntax-highlighter
139
  msgid "Width"
140
  msgstr "Larghezza"
141
 
142
- #: crayon_settings_wp.class.php:449
143
  #@ crayon-syntax-highlighter
144
  msgid "Top Margin"
145
  msgstr "Margine superiore"
146
 
147
- #: crayon_settings_wp.class.php:450
148
  #@ crayon-syntax-highlighter
149
  msgid "Bottom Margin"
150
  msgstr "Basso margine"
151
 
152
- #: crayon_settings_wp.class.php:451
153
- #: crayon_settings_wp.class.php:456
154
  #@ crayon-syntax-highlighter
155
  msgid "Left Margin"
156
  msgstr "Margine sinistro"
157
 
158
- #: crayon_settings_wp.class.php:452
159
- #: crayon_settings_wp.class.php:456
160
  #@ crayon-syntax-highlighter
161
  msgid "Right Margin"
162
  msgstr "Margine destro"
163
 
164
- #: crayon_settings_wp.class.php:462
165
  #@ crayon-syntax-highlighter
166
  msgid "Horizontal Alignment"
167
  msgstr "Allineamento orizzontale"
168
 
169
- #: crayon_settings_wp.class.php:465
170
  #@ crayon-syntax-highlighter
171
  msgid "Allow floating elements to surround Crayon"
172
  msgstr "Consentire agli elementi flottanti per circondare Crayon"
173
 
174
- #: crayon_settings_wp.class.php:470
175
  #@ crayon-syntax-highlighter
176
  msgid "Display the Toolbar"
177
  msgstr "Visualizzare la barra degli strumenti"
178
 
179
- #: crayon_settings_wp.class.php:473
180
  #@ crayon-syntax-highlighter
181
  msgid "Overlay the toolbar on code rather than push it down when possible"
182
  msgstr "Sovrapposizione della barra degli strumenti sul codice, piuttosto che spingere verso il basso quando è possibile"
183
 
184
- #: crayon_settings_wp.class.php:474
185
  #@ crayon-syntax-highlighter
186
  msgid "Toggle the toolbar on single click when it is overlayed"
187
  msgstr "Attivare o disattivare la barra degli strumenti sul singolo click quando è sovrapposto"
188
 
189
- #: crayon_settings_wp.class.php:475
190
  #@ crayon-syntax-highlighter
191
  msgid "Delay hiding the toolbar on MouseOut"
192
  msgstr "Ritardo nascondere la barra degli strumenti su MouseOut"
193
 
194
- #: crayon_settings_wp.class.php:477
195
  #@ crayon-syntax-highlighter
196
  msgid "Display the title when provided"
197
  msgstr "Visualizzare il titolo, ove previsto"
198
 
199
- #: crayon_settings_wp.class.php:478
200
  #@ crayon-syntax-highlighter
201
  msgid "Display the language"
202
  msgstr "Visualizzare la lingua"
203
 
204
- #: crayon_settings_wp.class.php:483
205
  #@ crayon-syntax-highlighter
206
  msgid "Display striped code lines"
207
  msgstr "Visualizzare le linee del codice a strisce"
208
 
209
- #: crayon_settings_wp.class.php:484
210
  #@ crayon-syntax-highlighter
211
  msgid "Enable line marking for important lines"
212
  msgstr "Abilita linea di marcatura per linee importanti"
213
 
214
- #: crayon_settings_wp.class.php:485
215
  #@ crayon-syntax-highlighter
216
  msgid "Display line numbers by default"
217
  msgstr "Visualizzare i numeri di linea di default"
218
 
219
- #: crayon_settings_wp.class.php:486
220
  #@ crayon-syntax-highlighter
221
  msgid "Enable line number toggling"
222
  msgstr "Abilita numero di commutazione linea"
223
 
224
- #: crayon_settings_wp.class.php:487
225
  #@ crayon-syntax-highlighter
226
  msgid "Start line numbers from"
227
  msgstr "Inizio numeri di riga da"
228
 
229
- #: crayon_settings_wp.class.php:497
230
  #@ crayon-syntax-highlighter
231
  msgid "When no language is provided, use the fallback"
232
  msgstr "Quando non è prevista la lingua, utilizzare il fallback"
233
 
234
- #: crayon_settings_wp.class.php:505
235
  #@ crayon-syntax-highlighter
236
  msgid "Parsing was successful"
237
  msgstr "L'analisi ha avuto successo"
238
 
239
- #: crayon_settings_wp.class.php:505
240
  #@ crayon-syntax-highlighter
241
  msgid "Parsing was unsuccessful"
242
  msgstr "L'analisi non ha avuto successo"
243
 
244
- #: crayon_settings_wp.class.php:511
245
  #, php-format
246
  #@ crayon-syntax-highlighter
247
  msgid "The selected language with id %s could not be loaded"
248
  msgstr "La lingua selezionata con id %s non può essere caricato"
249
 
250
- #: crayon_settings_wp.class.php:515
251
  #@ crayon-syntax-highlighter
252
  msgid "Show Languages"
253
  msgstr "Mostra Lingue"
254
 
255
- #: crayon_settings_wp.class.php:552
256
  #@ crayon-syntax-highlighter
257
  msgid "Enable Live Preview"
258
  msgstr "Attiva anteprima dal vivo"
259
 
260
- #: crayon_settings_wp.class.php:557
261
  #, php-format
262
  #@ crayon-syntax-highlighter
263
  msgid "The selected theme with id %s could not be loaded"
264
  msgstr "La tema selezionata con id %s non può essere caricato"
265
 
266
- #: crayon_settings_wp.class.php:575
267
  #@ crayon-syntax-highlighter
268
  msgid "Custom Font Size"
269
  msgstr "Dimensione del carattere personalizzati"
270
 
271
- #: crayon_settings_wp.class.php:580
272
  #, php-format
273
  #@ crayon-syntax-highlighter
274
  msgid "The selected font with id %s could not be loaded"
275
  msgstr "La font selezionata con id %s non può essere caricato"
276
 
277
- #: crayon_settings_wp.class.php:587
278
  #@ crayon-syntax-highlighter
279
  msgid "Enable plain code view and display"
280
  msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
281
 
282
- #: crayon_settings_wp.class.php:592
283
  #@ crayon-syntax-highlighter
284
  msgid "Enable code copy/paste"
285
  msgstr "Abilita copiare il codice/incolla"
286
 
287
- #: crayon_settings_wp.class.php:594
288
  #@ crayon-syntax-highlighter
289
  msgid "Enable opening code in a window"
290
  msgstr "Abilita il codice di apertura in una finestra"
291
 
292
- #: crayon_settings_wp.class.php:596
293
  #@ crayon-syntax-highlighter
294
  msgid "Tab size in spaces"
295
  msgstr "Dimensione tabulazione in spazi"
296
 
297
- #: crayon_settings_wp.class.php:598
298
  #@ crayon-syntax-highlighter
299
  msgid "Remove whitespace surrounding the shortcode content"
300
  msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
301
 
302
- #: crayon_settings_wp.class.php:608
303
  #@ crayon-syntax-highlighter
304
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
305
  msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
306
 
307
- #: crayon_settings_wp.class.php:615
308
  #@ crayon-syntax-highlighter
309
  msgid "Clear the cache used to store remote code requests"
310
  msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
311
 
312
- #: crayon_settings_wp.class.php:617
313
  #@ crayon-syntax-highlighter
314
  msgid "Clear Now"
315
  msgstr "Svuota adesso"
316
 
317
- #: crayon_settings_wp.class.php:621
318
  #@ crayon-syntax-highlighter
319
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
320
  msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
321
 
322
- #: crayon_settings_wp.class.php:622
323
  #@ crayon-syntax-highlighter
324
  msgid "Disable animations"
325
  msgstr "Disattivare le animazioni"
326
 
327
- #: crayon_settings_wp.class.php:623
328
  #@ crayon-syntax-highlighter
329
  msgid "Disable runtime stats"
330
  msgstr "Disabilitare runtime stats"
331
 
332
- #: crayon_settings_wp.class.php:630
333
  #@ crayon-syntax-highlighter
334
  msgid "Log errors for individual Crayons"
335
  msgstr "Errori nel registro di Crayons singoli"
336
 
337
- #: crayon_settings_wp.class.php:631
338
  #@ crayon-syntax-highlighter
339
  msgid "Log system-wide errors"
340
  msgstr "Log di sistema a livello di errori"
341
 
342
- #: crayon_settings_wp.class.php:632
343
  #@ crayon-syntax-highlighter
344
  msgid "Display custom message for errors"
345
  msgstr "Display messaggio personalizzato per gli errori"
346
 
347
- #: crayon_settings_wp.class.php:644
348
  #@ crayon-syntax-highlighter
349
  msgid "Show Log"
350
  msgstr "Mostra registro"
351
 
352
- #: crayon_settings_wp.class.php:646
353
  #@ crayon-syntax-highlighter
354
  msgid "Clear Log"
355
  msgstr "Cancella registro"
356
 
357
- #: crayon_settings_wp.class.php:647
358
  #@ crayon-syntax-highlighter
359
  msgid "Email Admin"
360
  msgstr "E-mail Admin"
361
 
362
- #: crayon_settings_wp.class.php:649
363
  #@ crayon-syntax-highlighter
364
  msgid "Email Developer"
365
  msgstr "Email Developer"
366
 
367
- #: crayon_settings_wp.class.php:665
368
  #@ crayon-syntax-highlighter
369
  msgid "Version"
370
  msgstr "Versione"
371
 
372
- #: crayon_settings_wp.class.php:667
373
  #@ crayon-syntax-highlighter
374
  msgid "Developer"
375
  msgstr "Sviluppatore"
376
 
377
- #: crayon_settings_wp.class.php:698
378
  #@ crayon-syntax-highlighter
379
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
380
  msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
381
 
382
- #: crayon_settings_wp.class.php:549
383
  #, php-format
384
  #@ crayon-syntax-highlighter
385
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
386
  msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
387
 
388
- #: crayon_settings.class.php:101
389
  #@ crayon-syntax-highlighter
390
  msgid "Hourly"
391
  msgstr "Ogni ora"
392
 
393
- #: crayon_settings.class.php:101
394
  #@ crayon-syntax-highlighter
395
  msgid "Daily"
396
  msgstr "Quotidiano"
397
 
398
- #: crayon_settings.class.php:102
399
  #@ crayon-syntax-highlighter
400
  msgid "Weekly"
401
  msgstr "Settimanale"
402
 
403
- #: crayon_settings.class.php:102
404
  #@ crayon-syntax-highlighter
405
  msgid "Monthly"
406
  msgstr "Mensile"
407
 
408
- #: crayon_settings.class.php:103
409
  #@ crayon-syntax-highlighter
410
  msgid "Immediately"
411
  msgstr "Immediatamente"
412
 
413
- #: crayon_settings_wp.class.php:423
414
  #@ crayon-syntax-highlighter
415
  msgid "Crayon Help"
416
  msgstr "Crayon Aiuto"
417
 
418
- #: crayon_settings_wp.class.php:618
419
  #@ crayon-syntax-highlighter
420
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
421
  msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
422
 
423
- #: crayon_settings_wp.class.php:504
424
  #, php-format
425
  #@ crayon-syntax-highlighter
426
  msgid "%d language has been detected."
@@ -428,78 +431,82 @@ msgid_plural "%d languages have been detected."
428
  msgstr[0] "%d lingua è stata rilevata."
429
  msgstr[1] "%d lingue sono state rilevate."
430
 
431
- #: crayon_settings_wp.class.php:611
432
  #@ crayon-syntax-highlighter
433
  msgid "Followed by your relative URL."
434
  msgstr "Seguito dal relativo URL."
435
 
436
- #: crayon_settings_wp.class.php:651
437
  #@ crayon-syntax-highlighter
438
  msgid "The log is currently empty."
439
  msgstr "Il registro è vuoto."
440
 
441
- #: crayon_settings_wp.class.php:653
442
  #@ crayon-syntax-highlighter
443
  msgid "The log file exists and is writable."
444
  msgstr "Il file di registro esiste ed è scrivibile."
445
 
446
- #: crayon_settings_wp.class.php:653
447
  #@ crayon-syntax-highlighter
448
  msgid "The log file exists and is not writable."
449
  msgstr "Il file di registro esiste e non è scrivibile."
450
 
451
- #: crayon_settings_wp.class.php:655
452
  #@ crayon-syntax-highlighter
453
  msgid "The log file does not exist and is not writable."
454
  msgstr "Il file di registro non esiste e non è scrivibile."
455
 
456
- #: crayon_settings_wp.class.php:599
457
  #@ crayon-syntax-highlighter
458
  msgid "Capture &lt;pre&gt; tags as Crayons"
459
  msgstr "Cattura tag &lt;pre&gt; come Crayons"
460
 
461
- #: crayon_settings_wp.class.php:554
462
- #: crayon_settings_wp.class.php:583
463
- #: crayon_settings_wp.class.php:600
464
- #: crayon_settings_wp.class.php:601
465
- #: crayon_settings_wp.class.php:602
466
- #: crayon_settings_wp.class.php:618
467
- #: crayon_settings_wp.class.php:619
 
 
 
 
468
  #@ crayon-syntax-highlighter
469
  msgid "Learn More"
470
  msgstr "Approfondisci"
471
 
472
- #: crayon_settings_wp.class.php:603
473
  #@ crayon-syntax-highlighter
474
  msgid "Show Mixed Language Icon (+)"
475
  msgstr "Mostra icona misto di lingua (+)"
476
 
477
- #: crayon_settings_wp.class.php:602
478
  #@ crayon-syntax-highlighter
479
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
480
  msgstr "Lasciare Evidenziando Lingua mista con delimitatori e tag."
481
 
482
- #: crayon_settings_wp.class.php:600
483
  #@ crayon-syntax-highlighter
484
  msgid "Capture Mini Tags like [php][/php] as Crayons."
485
  msgstr "Cattura Tags come Mini [php][/php] come Crayons."
486
 
487
- #: crayon_settings_wp.class.php:601
488
  #@ crayon-syntax-highlighter
489
  msgid "Enable [plain][/plain] tag."
490
  msgstr "Abilita tag [plain][/plain]."
491
 
492
- #: crayon_settings.class.php:169
493
  #@ crayon-syntax-highlighter
494
  msgid "Disable Mouse Events"
495
  msgstr "Disabilitare eventi di mouse"
496
 
497
- #: crayon_settings_wp.class.php:590
498
  #@ crayon-syntax-highlighter
499
  msgid "Enable plain code toggling"
500
  msgstr "Abilita commutazione del semplice codice"
501
 
502
- #: crayon_settings_wp.class.php:591
503
  #@ crayon-syntax-highlighter
504
  msgid "Show the plain code by default"
505
  msgstr "Mostrare il codice normale per impostazione predefinita"
@@ -534,7 +541,7 @@ msgstr ""
534
  msgid "http://ak.net84.net/"
535
  msgstr ""
536
 
537
- #: crayon_settings_wp.class.php:714
538
  #@ crayon-syntax-highlighter
539
  msgid "Donate"
540
  msgstr "Donare"
@@ -574,79 +581,79 @@ msgstr "Linee"
574
  msgid "Code"
575
  msgstr "Codice"
576
 
577
- #: crayon_settings_wp.class.php:226
578
  #@ crayon-syntax-highlighter
579
  msgid "Languages"
580
  msgstr "Lingue"
581
 
582
- #: crayon_settings_wp.class.php:227
583
  #@ crayon-syntax-highlighter
584
  msgid "Files"
585
  msgstr "File"
586
 
587
- #: crayon_settings_wp.class.php:228
588
  #@ crayon-syntax-highlighter
589
  msgid "Misc"
590
  msgstr "Varie"
591
 
592
- #: crayon_settings_wp.class.php:231
593
  #@ crayon-syntax-highlighter
594
  msgid "Debug"
595
  msgstr "Debug"
596
 
597
- #: crayon_settings_wp.class.php:232
598
  #@ crayon-syntax-highlighter
599
  msgid "Errors"
600
  msgstr "Errori"
601
 
602
- #: crayon_settings_wp.class.php:233
603
  #@ crayon-syntax-highlighter
604
  msgid "Log"
605
  msgstr "Log"
606
 
607
- #: crayon_settings_wp.class.php:236
608
  #@ crayon-syntax-highlighter
609
  msgid "About"
610
  msgstr "Circa"
611
 
612
- #: crayon_settings_wp.class.php:554
613
  #@ crayon-syntax-highlighter
614
  msgid "Enqueue themes in the header (more efficient)."
615
  msgstr "Accoda temi nell'intestazione (bassi consumi)."
616
 
617
- #: crayon_settings_wp.class.php:583
618
  #@ crayon-syntax-highlighter
619
  msgid "Enqueue fonts in the header (more efficient)."
620
  msgstr "Accoda i caratteri nell'intestazione (bassi consumi)."
621
 
622
- #: crayon_settings_wp.class.php:545
623
  #@ crayon-syntax-highlighter
624
  msgid "Loading..."
625
  msgstr "Caricamento..."
626
 
627
- #: crayon_settings_wp.class.php:545
628
- #: crayon_settings_wp.class.php:712
629
  #: util/theme-editor/editor.php:14
630
  #@ crayon-syntax-highlighter
631
  msgid "Theme Editor"
632
  msgstr "Tema Editore"
633
 
634
- #: crayon_settings_wp.class.php:595
635
  #@ crayon-syntax-highlighter
636
  msgid "Always display scrollbars"
637
  msgstr "Mostra sempre barre di scorrimento"
638
 
639
- #: crayon_settings_wp.class.php:619
640
  #@ crayon-syntax-highlighter
641
  msgid "Disable enqueuing for page templates that may contain The Loop."
642
  msgstr "Disabilitare Accodamento per i modelli di pagina che può contenere The Loop."
643
 
644
- #: crayon_settings_wp.class.php:620
645
  #@ crayon-syntax-highlighter
646
  msgid "Load Crayons only from the main Wordpress query"
647
  msgstr "Pastelli carico solo dalla query principale Wordpress"
648
 
649
- #: crayon_settings_wp.class.php:668
650
  #@ crayon-syntax-highlighter
651
  msgid "Translators"
652
  msgstr "Traduttori"
@@ -656,45 +663,75 @@ msgstr "Traduttori"
656
  msgid "Back To Settings"
657
  msgstr "Torna in Impostazioni"
658
 
659
- #: crayon_formatter.class.php:203
660
  #@ crayon-syntax-highlighter
661
  msgid "Toggle Plain Code"
662
  msgstr "Alterna Codice Pianura"
663
 
664
- #: crayon_formatter.class.php:205
665
  #@ crayon-syntax-highlighter
666
  msgid "Copy Plain Code"
667
  msgstr "Copia il codice di Pianura"
668
 
669
- #: crayon_formatter.class.php:211
670
  #@ crayon-syntax-highlighter
671
  msgid "Open Code In New Window"
672
  msgstr "Codice Apri in una nuova finestra"
673
 
674
- #: crayon_formatter.class.php:214
675
  #@ crayon-syntax-highlighter
676
  msgid "Toggle Line Numbers"
677
  msgstr "Numeri di riga passare"
678
 
679
- #: crayon_formatter.class.php:221
680
  #@ crayon-syntax-highlighter
681
  msgid "Contains Mixed Languages"
682
  msgstr "Contiene lingue miste"
683
 
684
- #: crayon_settings_wp.class.php:644
685
  #@ crayon-syntax-highlighter
686
  msgid "Hide Log"
687
  msgstr "Nascondi Log"
688
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
689
  #. translators: plugin header field 'Version'
690
  #: crayon_wp.class.php:0
691
  #@ crayon-syntax-highlighter
692
- msgid "1.7.26"
693
  msgstr ""
694
 
695
- #: crayon_formatter.class.php:205
696
- #, php-format
697
  #@ crayon-syntax-highlighter
698
- msgid "Press %s to Copy, %s to Paste"
699
- msgstr "Stampa %s per Copia, Incolla per %s"
700
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:135
23
+ #: crayon_settings.class.php:139
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
+ #: crayon_settings.class.php:135
29
+ #: crayon_settings.class.php:139
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
+ #: crayon_settings.class.php:135
35
+ #: crayon_settings.class.php:139
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statico"
39
 
40
+ #: crayon_settings.class.php:137
41
+ #: crayon_settings.class.php:141
42
+ #: crayon_settings_wp.class.php:461
43
+ #: crayon_settings_wp.class.php:470
44
+ #: crayon_settings_wp.class.php:581
45
  #@ crayon-syntax-highlighter
46
  msgid "Pixels"
47
  msgstr "Pixels"
48
 
49
+ #: crayon_settings.class.php:137
50
+ #: crayon_settings.class.php:141
51
  #@ crayon-syntax-highlighter
52
  msgid "Percent"
53
  msgstr "Per cento"
54
 
55
+ #: crayon_settings.class.php:150
56
  #@ crayon-syntax-highlighter
57
  msgid "None"
58
  msgstr "Nessuno"
59
 
60
+ #: crayon_settings.class.php:150
61
  #@ crayon-syntax-highlighter
62
  msgid "Left"
63
  msgstr "Sinistra"
64
 
65
+ #: crayon_settings.class.php:150
66
  #@ crayon-syntax-highlighter
67
  msgid "Center"
68
  msgstr "Centro"
69
 
70
+ #: crayon_settings.class.php:150
71
  #@ crayon-syntax-highlighter
72
  msgid "Right"
73
  msgstr "Destra"
74
 
75
+ #: crayon_settings.class.php:152
76
+ #: crayon_settings.class.php:174
77
  #@ crayon-syntax-highlighter
78
  msgid "On MouseOver"
79
  msgstr "Al passaggio del mouse"
80
 
81
+ #: crayon_settings.class.php:152
82
+ #: crayon_settings.class.php:158
83
  #@ crayon-syntax-highlighter
84
  msgid "Always"
85
  msgstr "Sempre"
86
 
87
+ #: crayon_settings.class.php:152
88
+ #: crayon_settings.class.php:158
89
  #@ crayon-syntax-highlighter
90
  msgid "Never"
91
  msgstr "Mai"
92
 
93
+ #: crayon_settings.class.php:158
94
  #@ crayon-syntax-highlighter
95
  msgid "When Found"
96
  msgstr "Quando Trovato"
97
 
98
+ #: crayon_settings.class.php:174
99
  #@ crayon-syntax-highlighter
100
  msgid "On Double Click"
101
  msgstr "Su doppio click"
102
 
103
+ #: crayon_settings.class.php:174
104
  #@ crayon-syntax-highlighter
105
  msgid "On Single Click"
106
  msgstr "Il singolo click"
107
 
108
+ #: crayon_settings.class.php:182
109
  #@ crayon-syntax-highlighter
110
  msgid "An error has occurred. Please try again later."
111
  msgstr "È verificato un errore. Riprova più tardi."
112
 
113
  #: crayon_settings_wp.class.php:39
114
  #: crayon_settings_wp.class.php:82
115
+ #: crayon_settings_wp.class.php:713
116
  #@ crayon-syntax-highlighter
117
  msgid "Settings"
118
  msgstr "Impostazioni"
132
  msgid "Reset Settings"
133
  msgstr "Ripristina Impostazioni"
134
 
135
+ #: crayon_settings_wp.class.php:438
136
  #@ crayon-syntax-highlighter
137
  msgid "Height"
138
  msgstr "Altezza"
139
 
140
+ #: crayon_settings_wp.class.php:444
141
  #@ crayon-syntax-highlighter
142
  msgid "Width"
143
  msgstr "Larghezza"
144
 
145
+ #: crayon_settings_wp.class.php:450
146
  #@ crayon-syntax-highlighter
147
  msgid "Top Margin"
148
  msgstr "Margine superiore"
149
 
150
+ #: crayon_settings_wp.class.php:451
151
  #@ crayon-syntax-highlighter
152
  msgid "Bottom Margin"
153
  msgstr "Basso margine"
154
 
155
+ #: crayon_settings_wp.class.php:452
156
+ #: crayon_settings_wp.class.php:457
157
  #@ crayon-syntax-highlighter
158
  msgid "Left Margin"
159
  msgstr "Margine sinistro"
160
 
161
+ #: crayon_settings_wp.class.php:453
162
+ #: crayon_settings_wp.class.php:457
163
  #@ crayon-syntax-highlighter
164
  msgid "Right Margin"
165
  msgstr "Margine destro"
166
 
167
+ #: crayon_settings_wp.class.php:463
168
  #@ crayon-syntax-highlighter
169
  msgid "Horizontal Alignment"
170
  msgstr "Allineamento orizzontale"
171
 
172
+ #: crayon_settings_wp.class.php:466
173
  #@ crayon-syntax-highlighter
174
  msgid "Allow floating elements to surround Crayon"
175
  msgstr "Consentire agli elementi flottanti per circondare Crayon"
176
 
177
+ #: crayon_settings_wp.class.php:474
178
  #@ crayon-syntax-highlighter
179
  msgid "Display the Toolbar"
180
  msgstr "Visualizzare la barra degli strumenti"
181
 
182
+ #: crayon_settings_wp.class.php:477
183
  #@ crayon-syntax-highlighter
184
  msgid "Overlay the toolbar on code rather than push it down when possible"
185
  msgstr "Sovrapposizione della barra degli strumenti sul codice, piuttosto che spingere verso il basso quando è possibile"
186
 
187
+ #: crayon_settings_wp.class.php:478
188
  #@ crayon-syntax-highlighter
189
  msgid "Toggle the toolbar on single click when it is overlayed"
190
  msgstr "Attivare o disattivare la barra degli strumenti sul singolo click quando è sovrapposto"
191
 
192
+ #: crayon_settings_wp.class.php:479
193
  #@ crayon-syntax-highlighter
194
  msgid "Delay hiding the toolbar on MouseOut"
195
  msgstr "Ritardo nascondere la barra degli strumenti su MouseOut"
196
 
197
+ #: crayon_settings_wp.class.php:481
198
  #@ crayon-syntax-highlighter
199
  msgid "Display the title when provided"
200
  msgstr "Visualizzare il titolo, ove previsto"
201
 
202
+ #: crayon_settings_wp.class.php:482
203
  #@ crayon-syntax-highlighter
204
  msgid "Display the language"
205
  msgstr "Visualizzare la lingua"
206
 
207
+ #: crayon_settings_wp.class.php:487
208
  #@ crayon-syntax-highlighter
209
  msgid "Display striped code lines"
210
  msgstr "Visualizzare le linee del codice a strisce"
211
 
212
+ #: crayon_settings_wp.class.php:488
213
  #@ crayon-syntax-highlighter
214
  msgid "Enable line marking for important lines"
215
  msgstr "Abilita linea di marcatura per linee importanti"
216
 
217
+ #: crayon_settings_wp.class.php:489
218
  #@ crayon-syntax-highlighter
219
  msgid "Display line numbers by default"
220
  msgstr "Visualizzare i numeri di linea di default"
221
 
222
+ #: crayon_settings_wp.class.php:490
223
  #@ crayon-syntax-highlighter
224
  msgid "Enable line number toggling"
225
  msgstr "Abilita numero di commutazione linea"
226
 
227
+ #: crayon_settings_wp.class.php:491
228
  #@ crayon-syntax-highlighter
229
  msgid "Start line numbers from"
230
  msgstr "Inizio numeri di riga da"
231
 
232
+ #: crayon_settings_wp.class.php:501
233
  #@ crayon-syntax-highlighter
234
  msgid "When no language is provided, use the fallback"
235
  msgstr "Quando non è prevista la lingua, utilizzare il fallback"
236
 
237
+ #: crayon_settings_wp.class.php:509
238
  #@ crayon-syntax-highlighter
239
  msgid "Parsing was successful"
240
  msgstr "L'analisi ha avuto successo"
241
 
242
+ #: crayon_settings_wp.class.php:509
243
  #@ crayon-syntax-highlighter
244
  msgid "Parsing was unsuccessful"
245
  msgstr "L'analisi non ha avuto successo"
246
 
247
+ #: crayon_settings_wp.class.php:515
248
  #, php-format
249
  #@ crayon-syntax-highlighter
250
  msgid "The selected language with id %s could not be loaded"
251
  msgstr "La lingua selezionata con id %s non può essere caricato"
252
 
253
+ #: crayon_settings_wp.class.php:519
254
  #@ crayon-syntax-highlighter
255
  msgid "Show Languages"
256
  msgstr "Mostra Lingue"
257
 
258
+ #: crayon_settings_wp.class.php:556
259
  #@ crayon-syntax-highlighter
260
  msgid "Enable Live Preview"
261
  msgstr "Attiva anteprima dal vivo"
262
 
263
+ #: crayon_settings_wp.class.php:561
264
  #, php-format
265
  #@ crayon-syntax-highlighter
266
  msgid "The selected theme with id %s could not be loaded"
267
  msgstr "La tema selezionata con id %s non può essere caricato"
268
 
269
+ #: crayon_settings_wp.class.php:579
270
  #@ crayon-syntax-highlighter
271
  msgid "Custom Font Size"
272
  msgstr "Dimensione del carattere personalizzati"
273
 
274
+ #: crayon_settings_wp.class.php:584
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected font with id %s could not be loaded"
278
  msgstr "La font selezionata con id %s non può essere caricato"
279
 
280
+ #: crayon_settings_wp.class.php:591
281
  #@ crayon-syntax-highlighter
282
  msgid "Enable plain code view and display"
283
  msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
284
 
285
+ #: crayon_settings_wp.class.php:596
286
  #@ crayon-syntax-highlighter
287
  msgid "Enable code copy/paste"
288
  msgstr "Abilita copiare il codice/incolla"
289
 
290
+ #: crayon_settings_wp.class.php:598
291
  #@ crayon-syntax-highlighter
292
  msgid "Enable opening code in a window"
293
  msgstr "Abilita il codice di apertura in una finestra"
294
 
295
+ #: crayon_settings_wp.class.php:600
296
  #@ crayon-syntax-highlighter
297
  msgid "Tab size in spaces"
298
  msgstr "Dimensione tabulazione in spazi"
299
 
300
+ #: crayon_settings_wp.class.php:602
301
  #@ crayon-syntax-highlighter
302
  msgid "Remove whitespace surrounding the shortcode content"
303
  msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
304
 
305
+ #: crayon_settings_wp.class.php:618
306
  #@ crayon-syntax-highlighter
307
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
308
  msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
309
 
310
+ #: crayon_settings_wp.class.php:625
311
  #@ crayon-syntax-highlighter
312
  msgid "Clear the cache used to store remote code requests"
313
  msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
314
 
315
+ #: crayon_settings_wp.class.php:627
316
  #@ crayon-syntax-highlighter
317
  msgid "Clear Now"
318
  msgstr "Svuota adesso"
319
 
320
+ #: crayon_settings_wp.class.php:632
321
  #@ crayon-syntax-highlighter
322
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
323
  msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
324
 
325
+ #: crayon_settings_wp.class.php:633
326
  #@ crayon-syntax-highlighter
327
  msgid "Disable animations"
328
  msgstr "Disattivare le animazioni"
329
 
330
+ #: crayon_settings_wp.class.php:634
331
  #@ crayon-syntax-highlighter
332
  msgid "Disable runtime stats"
333
  msgstr "Disabilitare runtime stats"
334
 
335
+ #: crayon_settings_wp.class.php:641
336
  #@ crayon-syntax-highlighter
337
  msgid "Log errors for individual Crayons"
338
  msgstr "Errori nel registro di Crayons singoli"
339
 
340
+ #: crayon_settings_wp.class.php:642
341
  #@ crayon-syntax-highlighter
342
  msgid "Log system-wide errors"
343
  msgstr "Log di sistema a livello di errori"
344
 
345
+ #: crayon_settings_wp.class.php:643
346
  #@ crayon-syntax-highlighter
347
  msgid "Display custom message for errors"
348
  msgstr "Display messaggio personalizzato per gli errori"
349
 
350
+ #: crayon_settings_wp.class.php:655
351
  #@ crayon-syntax-highlighter
352
  msgid "Show Log"
353
  msgstr "Mostra registro"
354
 
355
+ #: crayon_settings_wp.class.php:657
356
  #@ crayon-syntax-highlighter
357
  msgid "Clear Log"
358
  msgstr "Cancella registro"
359
 
360
+ #: crayon_settings_wp.class.php:658
361
  #@ crayon-syntax-highlighter
362
  msgid "Email Admin"
363
  msgstr "E-mail Admin"
364
 
365
+ #: crayon_settings_wp.class.php:660
366
  #@ crayon-syntax-highlighter
367
  msgid "Email Developer"
368
  msgstr "Email Developer"
369
 
370
+ #: crayon_settings_wp.class.php:676
371
  #@ crayon-syntax-highlighter
372
  msgid "Version"
373
  msgstr "Versione"
374
 
375
+ #: crayon_settings_wp.class.php:678
376
  #@ crayon-syntax-highlighter
377
  msgid "Developer"
378
  msgstr "Sviluppatore"
379
 
380
+ #: crayon_settings_wp.class.php:701
381
  #@ crayon-syntax-highlighter
382
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
383
  msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
384
 
385
+ #: crayon_settings_wp.class.php:553
386
  #, php-format
387
  #@ crayon-syntax-highlighter
388
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
389
  msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
390
 
391
+ #: crayon_settings.class.php:106
392
  #@ crayon-syntax-highlighter
393
  msgid "Hourly"
394
  msgstr "Ogni ora"
395
 
396
+ #: crayon_settings.class.php:106
397
  #@ crayon-syntax-highlighter
398
  msgid "Daily"
399
  msgstr "Quotidiano"
400
 
401
+ #: crayon_settings.class.php:107
402
  #@ crayon-syntax-highlighter
403
  msgid "Weekly"
404
  msgstr "Settimanale"
405
 
406
+ #: crayon_settings.class.php:107
407
  #@ crayon-syntax-highlighter
408
  msgid "Monthly"
409
  msgstr "Mensile"
410
 
411
+ #: crayon_settings.class.php:108
412
  #@ crayon-syntax-highlighter
413
  msgid "Immediately"
414
  msgstr "Immediatamente"
415
 
416
+ #: crayon_settings_wp.class.php:424
417
  #@ crayon-syntax-highlighter
418
  msgid "Crayon Help"
419
  msgstr "Crayon Aiuto"
420
 
421
+ #: crayon_settings_wp.class.php:628
422
  #@ crayon-syntax-highlighter
423
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
424
  msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
425
 
426
+ #: crayon_settings_wp.class.php:508
427
  #, php-format
428
  #@ crayon-syntax-highlighter
429
  msgid "%d language has been detected."
431
  msgstr[0] "%d lingua è stata rilevata."
432
  msgstr[1] "%d lingue sono state rilevate."
433
 
434
+ #: crayon_settings_wp.class.php:621
435
  #@ crayon-syntax-highlighter
436
  msgid "Followed by your relative URL."
437
  msgstr "Seguito dal relativo URL."
438
 
439
+ #: crayon_settings_wp.class.php:662
440
  #@ crayon-syntax-highlighter
441
  msgid "The log is currently empty."
442
  msgstr "Il registro è vuoto."
443
 
444
+ #: crayon_settings_wp.class.php:664
445
  #@ crayon-syntax-highlighter
446
  msgid "The log file exists and is writable."
447
  msgstr "Il file di registro esiste ed è scrivibile."
448
 
449
+ #: crayon_settings_wp.class.php:664
450
  #@ crayon-syntax-highlighter
451
  msgid "The log file exists and is not writable."
452
  msgstr "Il file di registro esiste e non è scrivibile."
453
 
454
+ #: crayon_settings_wp.class.php:666
455
  #@ crayon-syntax-highlighter
456
  msgid "The log file does not exist and is not writable."
457
  msgstr "Il file di registro non esiste e non è scrivibile."
458
 
459
+ #: crayon_settings_wp.class.php:612
460
  #@ crayon-syntax-highlighter
461
  msgid "Capture &lt;pre&gt; tags as Crayons"
462
  msgstr "Cattura tag &lt;pre&gt; come Crayons"
463
 
464
+ #: crayon_settings_wp.class.php:558
465
+ #: crayon_settings_wp.class.php:587
466
+ #: crayon_settings_wp.class.php:603
467
+ #: crayon_settings_wp.class.php:608
468
+ #: crayon_settings_wp.class.php:609
469
+ #: crayon_settings_wp.class.php:610
470
+ #: crayon_settings_wp.class.php:611
471
+ #: crayon_settings_wp.class.php:612
472
+ #: crayon_settings_wp.class.php:613
473
+ #: crayon_settings_wp.class.php:628
474
+ #: crayon_settings_wp.class.php:629
475
  #@ crayon-syntax-highlighter
476
  msgid "Learn More"
477
  msgstr "Approfondisci"
478
 
479
+ #: crayon_settings_wp.class.php:604
480
  #@ crayon-syntax-highlighter
481
  msgid "Show Mixed Language Icon (+)"
482
  msgstr "Mostra icona misto di lingua (+)"
483
 
484
+ #: crayon_settings_wp.class.php:603
485
  #@ crayon-syntax-highlighter
486
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
487
  msgstr "Lasciare Evidenziando Lingua mista con delimitatori e tag."
488
 
489
+ #: crayon_settings_wp.class.php:608
490
  #@ crayon-syntax-highlighter
491
  msgid "Capture Mini Tags like [php][/php] as Crayons."
492
  msgstr "Cattura Tags come Mini [php][/php] come Crayons."
493
 
494
+ #: crayon_settings_wp.class.php:613
495
  #@ crayon-syntax-highlighter
496
  msgid "Enable [plain][/plain] tag."
497
  msgstr "Abilita tag [plain][/plain]."
498
 
499
+ #: crayon_settings.class.php:174
500
  #@ crayon-syntax-highlighter
501
  msgid "Disable Mouse Events"
502
  msgstr "Disabilitare eventi di mouse"
503
 
504
+ #: crayon_settings_wp.class.php:594
505
  #@ crayon-syntax-highlighter
506
  msgid "Enable plain code toggling"
507
  msgstr "Abilita commutazione del semplice codice"
508
 
509
+ #: crayon_settings_wp.class.php:595
510
  #@ crayon-syntax-highlighter
511
  msgid "Show the plain code by default"
512
  msgstr "Mostrare il codice normale per impostazione predefinita"
541
  msgid "http://ak.net84.net/"
542
  msgstr ""
543
 
544
+ #: crayon_settings_wp.class.php:717
545
  #@ crayon-syntax-highlighter
546
  msgid "Donate"
547
  msgstr "Donare"
581
  msgid "Code"
582
  msgstr "Codice"
583
 
584
+ #: crayon_settings_wp.class.php:227
585
  #@ crayon-syntax-highlighter
586
  msgid "Languages"
587
  msgstr "Lingue"
588
 
589
+ #: crayon_settings_wp.class.php:228
590
  #@ crayon-syntax-highlighter
591
  msgid "Files"
592
  msgstr "File"
593
 
594
+ #: crayon_settings_wp.class.php:229
595
  #@ crayon-syntax-highlighter
596
  msgid "Misc"
597
  msgstr "Varie"
598
 
599
+ #: crayon_settings_wp.class.php:232
600
  #@ crayon-syntax-highlighter
601
  msgid "Debug"
602
  msgstr "Debug"
603
 
604
+ #: crayon_settings_wp.class.php:233
605
  #@ crayon-syntax-highlighter
606
  msgid "Errors"
607
  msgstr "Errori"
608
 
609
+ #: crayon_settings_wp.class.php:234
610
  #@ crayon-syntax-highlighter
611
  msgid "Log"
612
  msgstr "Log"
613
 
614
+ #: crayon_settings_wp.class.php:237
615
  #@ crayon-syntax-highlighter
616
  msgid "About"
617
  msgstr "Circa"
618
 
619
+ #: crayon_settings_wp.class.php:558
620
  #@ crayon-syntax-highlighter
621
  msgid "Enqueue themes in the header (more efficient)."
622
  msgstr "Accoda temi nell'intestazione (bassi consumi)."
623
 
624
+ #: crayon_settings_wp.class.php:587
625
  #@ crayon-syntax-highlighter
626
  msgid "Enqueue fonts in the header (more efficient)."
627
  msgstr "Accoda i caratteri nell'intestazione (bassi consumi)."
628
 
629
+ #: crayon_settings_wp.class.php:549
630
  #@ crayon-syntax-highlighter
631
  msgid "Loading..."
632
  msgstr "Caricamento..."
633
 
634
+ #: crayon_settings_wp.class.php:549
635
+ #: crayon_settings_wp.class.php:715
636
  #: util/theme-editor/editor.php:14
637
  #@ crayon-syntax-highlighter
638
  msgid "Theme Editor"
639
  msgstr "Tema Editore"
640
 
641
+ #: crayon_settings_wp.class.php:599
642
  #@ crayon-syntax-highlighter
643
  msgid "Always display scrollbars"
644
  msgstr "Mostra sempre barre di scorrimento"
645
 
646
+ #: crayon_settings_wp.class.php:629
647
  #@ crayon-syntax-highlighter
648
  msgid "Disable enqueuing for page templates that may contain The Loop."
649
  msgstr "Disabilitare Accodamento per i modelli di pagina che può contenere The Loop."
650
 
651
+ #: crayon_settings_wp.class.php:631
652
  #@ crayon-syntax-highlighter
653
  msgid "Load Crayons only from the main Wordpress query"
654
  msgstr "Pastelli carico solo dalla query principale Wordpress"
655
 
656
+ #: crayon_settings_wp.class.php:679
657
  #@ crayon-syntax-highlighter
658
  msgid "Translators"
659
  msgstr "Traduttori"
663
  msgid "Back To Settings"
664
  msgstr "Torna in Impostazioni"
665
 
666
+ #: crayon_formatter.class.php:270
667
  #@ crayon-syntax-highlighter
668
  msgid "Toggle Plain Code"
669
  msgstr "Alterna Codice Pianura"
670
 
671
+ #: crayon_formatter.class.php:272
672
  #@ crayon-syntax-highlighter
673
  msgid "Copy Plain Code"
674
  msgstr "Copia il codice di Pianura"
675
 
676
+ #: crayon_formatter.class.php:278
677
  #@ crayon-syntax-highlighter
678
  msgid "Open Code In New Window"
679
  msgstr "Codice Apri in una nuova finestra"
680
 
681
+ #: crayon_formatter.class.php:281
682
  #@ crayon-syntax-highlighter
683
  msgid "Toggle Line Numbers"
684
  msgstr "Numeri di riga passare"
685
 
686
+ #: crayon_formatter.class.php:288
687
  #@ crayon-syntax-highlighter
688
  msgid "Contains Mixed Languages"
689
  msgstr "Contiene lingue miste"
690
 
691
+ #: crayon_settings_wp.class.php:655
692
  #@ crayon-syntax-highlighter
693
  msgid "Hide Log"
694
  msgstr "Nascondi Log"
695
 
696
+ #: crayon_formatter.class.php:272
697
+ #, php-format
698
+ #@ crayon-syntax-highlighter
699
+ msgid "Press %s to Copy, %s to Paste"
700
+ msgstr "Stampa %s per Copia, Incolla per %s"
701
+
702
+ #: crayon_settings_wp.class.php:226
703
+ #@ crayon-syntax-highlighter
704
+ msgid "Tags"
705
+ msgstr "Tags"
706
+
707
+ #: crayon_settings_wp.class.php:468
708
+ #@ crayon-syntax-highlighter
709
+ msgid "Inline Margin"
710
+ msgstr "Margine Inline"
711
+
712
+ #: crayon_settings_wp.class.php:609
713
+ #@ crayon-syntax-highlighter
714
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
715
+ msgstr "Cattura Tags Inline come {php} {/php} all'interno di frasi."
716
+
717
+ #: crayon_settings_wp.class.php:611
718
+ #@ crayon-syntax-highlighter
719
+ msgid "Capture `backquotes` as &lt;code&gt;"
720
+ msgstr "Cattura `apici inversi` come &lt;code&gt;"
721
+
722
+ #: crayon_settings_wp.class.php:630
723
+ #@ crayon-syntax-highlighter
724
+ msgid "Allow Crayons inside comments"
725
+ msgstr "Consentire Crayons all'interno di commenti"
726
+
727
  #. translators: plugin header field 'Version'
728
  #: crayon_wp.class.php:0
729
  #@ crayon-syntax-highlighter
730
+ msgid "1.8.2"
731
  msgstr ""
732
 
733
+ #: crayon_settings_wp.class.php:610
 
734
  #@ crayon-syntax-highlighter
735
+ msgid "Wrap Inline Tags"
736
+ msgstr ""
737
 
trans/crayon-syntax-highlighter-ja.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-ja.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: Crayon Syntax Highlighter v1.6.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2012-02-07 20:00+0900\n"
7
- "Last-Translator: Mitsumi Kudo <kudo@3samurai.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -13,687 +13,725 @@ msgstr ""
13
  "X-Poedit-Language: Japanese\n"
14
  "X-Poedit-Country: JAPAN\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
- "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
 
21
  #@ crayon-syntax-highlighter
22
- #: crayon_settings.class.php:101
23
  msgid "Hourly"
24
  msgstr "毎時間"
25
 
 
26
  #@ crayon-syntax-highlighter
27
- #: crayon_settings.class.php:101
28
  msgid "Daily"
29
  msgstr "毎日"
30
 
 
31
  #@ crayon-syntax-highlighter
32
- #: crayon_settings.class.php:102
33
  msgid "Weekly"
34
  msgstr "毎週"
35
 
 
36
  #@ crayon-syntax-highlighter
37
- #: crayon_settings.class.php:102
38
  msgid "Monthly"
39
  msgstr "毎月"
40
 
 
41
  #@ crayon-syntax-highlighter
42
- #: crayon_settings.class.php:103
43
  msgid "Immediately"
44
  msgstr "直後に"
45
 
 
 
46
  #@ crayon-syntax-highlighter
47
- #: crayon_settings.class.php:130
48
- #: crayon_settings.class.php:134
49
  msgid "Max"
50
  msgstr "最大"
51
 
 
 
52
  #@ crayon-syntax-highlighter
53
- #: crayon_settings.class.php:130
54
- #: crayon_settings.class.php:134
55
  msgid "Min"
56
  msgstr "最小"
57
 
 
 
58
  #@ crayon-syntax-highlighter
59
- #: crayon_settings.class.php:130
60
- #: crayon_settings.class.php:134
61
  msgid "Static"
62
  msgstr "固定"
63
 
 
 
 
 
 
64
  #@ crayon-syntax-highlighter
65
- #: crayon_settings.class.php:132
66
- #: crayon_settings.class.php:136
67
  msgid "Pixels"
68
  msgstr "ピクセル"
69
 
 
 
70
  #@ crayon-syntax-highlighter
71
- #: crayon_settings.class.php:132
72
- #: crayon_settings.class.php:136
73
  msgid "Percent"
74
  msgstr "パーセント"
75
 
 
76
  #@ crayon-syntax-highlighter
77
- #: crayon_settings.class.php:145
78
  msgid "None"
79
  msgstr "なし"
80
 
 
81
  #@ crayon-syntax-highlighter
82
- #: crayon_settings.class.php:145
83
  msgid "Left"
84
  msgstr "左"
85
 
 
86
  #@ crayon-syntax-highlighter
87
- #: crayon_settings.class.php:145
88
  msgid "Center"
89
  msgstr "中央"
90
 
 
91
  #@ crayon-syntax-highlighter
92
- #: crayon_settings.class.php:145
93
  msgid "Right"
94
  msgstr "右"
95
 
 
 
96
  #@ crayon-syntax-highlighter
97
- #: crayon_settings.class.php:147
98
- #: crayon_settings.class.php:169
99
  msgid "On MouseOver"
100
  msgstr "マウスオーバー時"
101
 
 
 
102
  #@ crayon-syntax-highlighter
103
- #: crayon_settings.class.php:147
104
- #: crayon_settings.class.php:153
105
  msgid "Always"
106
  msgstr "常に表示"
107
 
 
 
108
  #@ crayon-syntax-highlighter
109
- #: crayon_settings.class.php:147
110
- #: crayon_settings.class.php:153
111
  msgid "Never"
112
  msgstr "表示しない"
113
 
 
114
  #@ crayon-syntax-highlighter
115
- #: crayon_settings.class.php:153
116
  msgid "When Found"
117
  msgstr "言語が判明した場合"
118
 
 
119
  #@ crayon-syntax-highlighter
120
- #: crayon_settings.class.php:169
121
  msgid "On Double Click"
122
  msgstr "ダブルクリック時"
123
 
 
124
  #@ crayon-syntax-highlighter
125
- #: crayon_settings.class.php:169
126
  msgid "On Single Click"
127
  msgstr "シングルクリック時"
128
 
 
129
  #@ crayon-syntax-highlighter
130
- #: crayon_settings.class.php:177
131
  msgid "An error has occurred. Please try again later."
132
  msgstr "エラーが発生しました。後でもう一度やり直してください。"
133
 
134
- #@ crayon-syntax-highlighter
135
  #: crayon_settings_wp.class.php:39
136
  #: crayon_settings_wp.class.php:82
137
- #: crayon_settings_wp.class.php:710
 
138
  msgid "Settings"
139
  msgstr "設定"
140
 
141
- #@ crayon-syntax-highlighter
142
  #: crayon_settings_wp.class.php:73
 
143
  msgid "You do not have sufficient permissions to access this page."
144
  msgstr "このページにアクセスするための十分な権限(パーミッション)がありません。"
145
 
146
- #@ crayon-syntax-highlighter
147
  #: crayon_settings_wp.class.php:94
 
148
  msgid "Save Changes"
149
  msgstr "変更を保存"
150
 
151
- #@ crayon-syntax-highlighter
152
  #: crayon_settings_wp.class.php:100
 
153
  msgid "Reset Settings"
154
  msgstr "リセット"
155
 
 
156
  #@ crayon-syntax-highlighter
157
- #: crayon_settings_wp.class.php:423
158
  msgid "Crayon Help"
159
  msgstr "Crayon ヘルプ"
160
 
 
161
  #@ crayon-syntax-highlighter
162
- #: crayon_settings_wp.class.php:437
163
  msgid "Height"
164
  msgstr "高さ"
165
 
 
166
  #@ crayon-syntax-highlighter
167
- #: crayon_settings_wp.class.php:443
168
  msgid "Width"
169
  msgstr "横幅"
170
 
 
171
  #@ crayon-syntax-highlighter
172
- #: crayon_settings_wp.class.php:449
173
  msgid "Top Margin"
174
  msgstr "上余白"
175
 
 
176
  #@ crayon-syntax-highlighter
177
- #: crayon_settings_wp.class.php:450
178
  msgid "Bottom Margin"
179
  msgstr "下余白"
180
 
 
 
181
  #@ crayon-syntax-highlighter
182
- #: crayon_settings_wp.class.php:451
183
- #: crayon_settings_wp.class.php:456
184
  msgid "Left Margin"
185
  msgstr "左余白"
186
 
 
 
187
  #@ crayon-syntax-highlighter
188
- #: crayon_settings_wp.class.php:452
189
- #: crayon_settings_wp.class.php:456
190
  msgid "Right Margin"
191
  msgstr "右余白"
192
 
 
193
  #@ crayon-syntax-highlighter
194
- #: crayon_settings_wp.class.php:462
195
  msgid "Horizontal Alignment"
196
  msgstr "回り込み"
197
 
 
198
  #@ crayon-syntax-highlighter
199
- #: crayon_settings_wp.class.php:465
200
  msgid "Allow floating elements to surround Crayon"
201
  msgstr "周りのfloat要素の回り込みを許可"
202
 
 
203
  #@ crayon-syntax-highlighter
204
- #: crayon_settings_wp.class.php:470
205
  msgid "Display the Toolbar"
206
  msgstr "ツールバーの表示"
207
 
 
208
  #@ crayon-syntax-highlighter
209
- #: crayon_settings_wp.class.php:473
210
  msgid "Overlay the toolbar on code rather than push it down when possible"
211
  msgstr "コードを押し下げるのではなく、コード上に重ねて表示"
212
 
 
213
  #@ crayon-syntax-highlighter
214
- #: crayon_settings_wp.class.php:474
215
  msgid "Toggle the toolbar on single click when it is overlayed"
216
  msgstr "重ねて表示の場合にシングルクリックでツールバーを切り替える"
217
 
 
218
  #@ crayon-syntax-highlighter
219
- #: crayon_settings_wp.class.php:475
220
  msgid "Delay hiding the toolbar on MouseOut"
221
  msgstr "マウスアウト時にツールバーを隠すのを遅らせる"
222
 
 
223
  #@ crayon-syntax-highlighter
224
- #: crayon_settings_wp.class.php:477
225
  msgid "Display the title when provided"
226
  msgstr "タイトルがある時は表示"
227
 
 
228
  #@ crayon-syntax-highlighter
229
- #: crayon_settings_wp.class.php:478
230
  msgid "Display the language"
231
  msgstr "ソース言語を表示"
232
 
 
233
  #@ crayon-syntax-highlighter
234
- #: crayon_settings_wp.class.php:483
235
  msgid "Display striped code lines"
236
  msgstr "コード行を縞模様で表示する"
237
 
 
238
  #@ crayon-syntax-highlighter
239
- #: crayon_settings_wp.class.php:484
240
  msgid "Enable line marking for important lines"
241
  msgstr "重要な行にマーキングを有効にする"
242
 
 
243
  #@ crayon-syntax-highlighter
244
- #: crayon_settings_wp.class.php:485
245
  msgid "Display line numbers by default"
246
  msgstr "デフォルトで行番号を表示"
247
 
 
248
  #@ crayon-syntax-highlighter
249
- #: crayon_settings_wp.class.php:486
250
  msgid "Enable line number toggling"
251
  msgstr "行番号の切り替えを有効にする"
252
 
 
253
  #@ crayon-syntax-highlighter
254
- #: crayon_settings_wp.class.php:487
255
  msgid "Start line numbers from"
256
  msgstr "行番号の開始数字"
257
 
 
258
  #@ crayon-syntax-highlighter
259
- #: crayon_settings_wp.class.php:497
260
  msgid "When no language is provided, use the fallback"
261
  msgstr "ソース言語が提供されていない場合は、代替えを使用します。"
262
 
 
263
  #@ crayon-syntax-highlighter
264
- #: crayon_settings_wp.class.php:505
265
  msgid "Parsing was successful"
266
  msgstr "解析が成功しました。"
267
 
 
268
  #@ crayon-syntax-highlighter
269
- #: crayon_settings_wp.class.php:505
270
  msgid "Parsing was unsuccessful"
271
  msgstr "解析に失敗しました。"
272
 
273
- #@ crayon-syntax-highlighter
274
- #: crayon_settings_wp.class.php:511
275
  #, php-format
 
276
  msgid "The selected language with id %s could not be loaded"
277
  msgstr "ID %s の選択したソース言語をロードできませんでした。"
278
 
 
279
  #@ crayon-syntax-highlighter
280
- #: crayon_settings_wp.class.php:515
281
  msgid "Show Languages"
282
  msgstr "ソース言語を表示する"
283
 
 
284
  #@ crayon-syntax-highlighter
285
- #: crayon_settings_wp.class.php:552
286
  msgid "Enable Live Preview"
287
  msgstr "リアルタイムのプレビューを有効にする"
288
 
289
- #@ crayon-syntax-highlighter
290
- #: crayon_settings_wp.class.php:557
291
  #, php-format
 
292
  msgid "The selected theme with id %s could not be loaded"
293
  msgstr "ID %sの選択したテーマをロードできませんでした。"
294
 
 
295
  #@ crayon-syntax-highlighter
296
- #: crayon_settings_wp.class.php:575
297
  msgid "Custom Font Size"
298
  msgstr "フォントサイズ指定"
299
 
300
- #@ crayon-syntax-highlighter
301
- #: crayon_settings_wp.class.php:580
302
  #, php-format
 
303
  msgid "The selected font with id %s could not be loaded"
304
  msgstr "ID %s の選択されたフォントをロードできませんでした。"
305
 
 
306
  #@ crayon-syntax-highlighter
307
- #: crayon_settings_wp.class.php:587
308
  msgid "Enable plain code view and display"
309
  msgstr "単純なコードビューを有効にする"
310
 
 
311
  #@ crayon-syntax-highlighter
312
- #: crayon_settings_wp.class.php:592
313
  msgid "Enable code copy/paste"
314
  msgstr "コードのコピー/貼り付けを有効にする"
315
 
 
316
  #@ crayon-syntax-highlighter
317
- #: crayon_settings_wp.class.php:594
318
  msgid "Enable opening code in a window"
319
  msgstr "新しいウインドウでコードを開くを有効にする"
320
 
 
321
  #@ crayon-syntax-highlighter
322
- #: crayon_settings_wp.class.php:596
323
  msgid "Tab size in spaces"
324
  msgstr "tab挿入の空白代替え数(単純コードビュー)"
325
 
 
326
  #@ crayon-syntax-highlighter
327
- #: crayon_settings_wp.class.php:598
328
  msgid "Remove whitespace surrounding the shortcode content"
329
  msgstr "ショートコードの内容を囲む空白の部分を削除します"
330
 
 
331
  #@ crayon-syntax-highlighter
332
- #: crayon_settings_wp.class.php:608
333
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
334
  msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
335
 
 
336
  #@ crayon-syntax-highlighter
337
- #: crayon_settings_wp.class.php:615
338
  msgid "Clear the cache used to store remote code requests"
339
  msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
340
 
 
341
  #@ crayon-syntax-highlighter
342
- #: crayon_settings_wp.class.php:617
343
  msgid "Clear Now"
344
  msgstr "今すぐクリア"
345
 
 
346
  #@ crayon-syntax-highlighter
347
- #: crayon_settings_wp.class.php:618
348
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
349
  msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
350
 
 
351
  #@ crayon-syntax-highlighter
352
- #: crayon_settings_wp.class.php:621
353
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
354
  msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
355
 
 
356
  #@ crayon-syntax-highlighter
357
- #: crayon_settings_wp.class.php:622
358
  msgid "Disable animations"
359
  msgstr "アニメーションを無効にする"
360
 
 
361
  #@ crayon-syntax-highlighter
362
- #: crayon_settings_wp.class.php:623
363
  msgid "Disable runtime stats"
364
  msgstr "プログラム実行時の統計を無効にする"
365
 
 
366
  #@ crayon-syntax-highlighter
367
- #: crayon_settings_wp.class.php:630
368
  msgid "Log errors for individual Crayons"
369
  msgstr "個々設置(Crayon)のエラーを記録"
370
 
 
371
  #@ crayon-syntax-highlighter
372
- #: crayon_settings_wp.class.php:631
373
  msgid "Log system-wide errors"
374
  msgstr "システム全体のエラーを記録"
375
 
 
376
  #@ crayon-syntax-highlighter
377
- #: crayon_settings_wp.class.php:632
378
  msgid "Display custom message for errors"
379
  msgstr "カスタムエラーメッセージを表示する"
380
 
 
381
  #@ crayon-syntax-highlighter
382
- #: crayon_settings_wp.class.php:644
383
  msgid "Show Log"
384
  msgstr "ログを見る"
385
 
 
386
  #@ crayon-syntax-highlighter
387
- #: crayon_settings_wp.class.php:646
388
  msgid "Clear Log"
389
  msgstr "ログをクリア"
390
 
 
391
  #@ crayon-syntax-highlighter
392
- #: crayon_settings_wp.class.php:647
393
  msgid "Email Admin"
394
  msgstr "管理者にEメールを送信"
395
 
 
396
  #@ crayon-syntax-highlighter
397
- #: crayon_settings_wp.class.php:649
398
  msgid "Email Developer"
399
  msgstr "開発者にEメールを送信"
400
 
 
401
  #@ crayon-syntax-highlighter
402
- #: crayon_settings_wp.class.php:665
403
  msgid "Version"
404
  msgstr "バージョン"
405
 
 
406
  #@ crayon-syntax-highlighter
407
- #: crayon_settings_wp.class.php:667
408
  msgid "Developer"
409
  msgstr "開発者"
410
 
 
411
  #@ crayon-syntax-highlighter
412
- #: crayon_settings_wp.class.php:698
413
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
414
  msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
415
 
416
- #@ crayon-syntax-highlighter
417
- #: crayon_settings_wp.class.php:549
418
  #, php-format
 
419
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
420
  msgstr "サンプルコードを変更するには、%1$sfallback language(代替え言語)%2$sを変更て下さい。5行目から7行目はマークされます。"
421
 
422
- #@ crayon-syntax-highlighter
423
- #: crayon_settings_wp.class.php:504
424
  #, php-format
 
425
  msgid "%d language has been detected."
426
  msgid_plural "%d languages have been detected."
427
  msgstr[0] "%dのソース言語が検出されてます。"
428
  msgstr[1] "%dのソース言語が検出されてます。"
429
 
 
430
  #@ crayon-syntax-highlighter
431
- #: crayon_settings_wp.class.php:599
432
  msgid "Capture &lt;pre&gt; tags as Crayons"
433
  msgstr "Crayonsとして&lt;pre&gt;タグをキャプチャ"
434
 
 
435
  #@ crayon-syntax-highlighter
436
- #: crayon_settings_wp.class.php:611
437
  msgid "Followed by your relative URL."
438
  msgstr "相対URLが続きます。"
439
 
 
440
  #@ crayon-syntax-highlighter
441
- #: crayon_settings_wp.class.php:651
442
  msgid "The log is currently empty."
443
  msgstr "ログは現在空です。"
444
 
 
445
  #@ crayon-syntax-highlighter
446
- #: crayon_settings_wp.class.php:653
447
  msgid "The log file exists and is writable."
448
  msgstr "ログファイルは存在し、書き込み可能です。"
449
 
 
450
  #@ crayon-syntax-highlighter
451
- #: crayon_settings_wp.class.php:653
452
  msgid "The log file exists and is not writable."
453
  msgstr "ログファイルは存在するが、書き込み可能ではありません。"
454
 
 
455
  #@ crayon-syntax-highlighter
456
- #: crayon_settings_wp.class.php:655
457
  msgid "The log file does not exist and is not writable."
458
  msgstr "ログファイルが存在しないので書き込むことが出来ません。"
459
 
 
 
 
 
 
 
 
 
 
 
 
460
  #@ crayon-syntax-highlighter
461
- #: crayon_settings_wp.class.php:554
462
- #: crayon_settings_wp.class.php:583
463
- #: crayon_settings_wp.class.php:600
464
- #: crayon_settings_wp.class.php:601
465
- #: crayon_settings_wp.class.php:602
466
- #: crayon_settings_wp.class.php:618
467
- #: crayon_settings_wp.class.php:619
468
  msgid "Learn More"
469
  msgstr "詳細はこちら"
470
 
 
471
  #@ crayon-syntax-highlighter
472
- #: crayon_settings_wp.class.php:603
473
  msgid "Show Mixed Language Icon (+)"
474
  msgstr "混合言語のアイコンを(+)を表示"
475
 
 
476
  #@ crayon-syntax-highlighter
477
- #: crayon_settings_wp.class.php:602
478
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
479
  msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
480
 
 
481
  #@ crayon-syntax-highlighter
482
- #: crayon_settings_wp.class.php:600
483
  msgid "Capture Mini Tags like [php][/php] as Crayons."
484
  msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
485
 
 
486
  #@ crayon-syntax-highlighter
487
- #: crayon_settings_wp.class.php:601
488
  msgid "Enable [plain][/plain] tag."
489
  msgstr "[plain][/plain]タグを有効にします。"
490
 
 
491
  #@ crayon-syntax-highlighter
492
- #: crayon_settings.class.php:169
493
  msgid "Disable Mouse Events"
494
  msgstr "マウスイベントを無効にする"
495
 
 
496
  #@ crayon-syntax-highlighter
497
- #: crayon_settings_wp.class.php:590
498
  msgid "Enable plain code toggling"
499
  msgstr "単純なコードの切り替えを有効にする"
500
 
 
501
  #@ crayon-syntax-highlighter
502
- #: crayon_settings_wp.class.php:591
503
  msgid "Show the plain code by default"
504
  msgstr "デフォルトでプレインコードを表示する"
505
 
506
- #@ crayon-syntax-highlighter
507
  #. translators: plugin header field 'Name'
508
  #: crayon_wp.class.php:0
 
509
  msgid "Crayon Syntax Highlighter"
510
  msgstr ""
511
 
512
- #@ crayon-syntax-highlighter
513
  #. translators: plugin header field 'PluginURI'
514
  #: crayon_wp.class.php:0
 
515
  msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
516
  msgstr ""
517
 
518
- #@ crayon-syntax-highlighter
519
  #. translators: plugin header field 'Description'
520
  #: crayon_wp.class.php:0
 
521
  msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
522
  msgstr "URL、ローカルファイルまたはポストのテキストからハイライト複数の言語、テーマを、サポートしています。"
523
 
524
- #@ crayon-syntax-highlighter
525
  #. translators: plugin header field 'Author'
526
  #: crayon_wp.class.php:0
 
527
  msgid "Aram Kocharyan"
528
  msgstr ""
529
 
530
- #@ crayon-syntax-highlighter
531
  #. translators: plugin header field 'AuthorURI'
532
  #: crayon_wp.class.php:0
 
533
  msgid "http://ak.net84.net/"
534
  msgstr ""
535
 
 
536
  #@ crayon-syntax-highlighter
537
- #: crayon_settings_wp.class.php:714
538
  msgid "Donate"
539
  msgstr "寄付する"
540
 
541
- #@ crayon-syntax-highlighter
542
  #: crayon_settings_wp.class.php:219
 
543
  msgid "General"
544
  msgstr "一般設定"
545
 
546
- #@ crayon-syntax-highlighter
547
  #: crayon_settings_wp.class.php:220
 
548
  msgid "Theme"
549
  msgstr "テーマ"
550
 
551
- #@ crayon-syntax-highlighter
552
  #: crayon_settings_wp.class.php:221
 
553
  msgid "Font"
554
  msgstr "フォント"
555
 
556
- #@ crayon-syntax-highlighter
557
  #: crayon_settings_wp.class.php:222
 
558
  msgid "Metrics"
559
  msgstr "サイズ"
560
 
561
- #@ crayon-syntax-highlighter
562
  #: crayon_settings_wp.class.php:223
 
563
  msgid "Toolbar"
564
  msgstr "ツールバー"
565
 
566
- #@ crayon-syntax-highlighter
567
  #: crayon_settings_wp.class.php:224
 
568
  msgid "Lines"
569
  msgstr "行"
570
 
571
- #@ crayon-syntax-highlighter
572
  #: crayon_settings_wp.class.php:225
 
573
  msgid "Code"
574
  msgstr "コード"
575
 
 
576
  #@ crayon-syntax-highlighter
577
- #: crayon_settings_wp.class.php:226
578
  msgid "Languages"
579
  msgstr "プログラム言語"
580
 
 
581
  #@ crayon-syntax-highlighter
582
- #: crayon_settings_wp.class.php:227
583
  msgid "Files"
584
  msgstr "読込ファイル"
585
 
 
586
  #@ crayon-syntax-highlighter
587
- #: crayon_settings_wp.class.php:228
588
  msgid "Misc"
589
  msgstr "その他"
590
 
 
591
  #@ crayon-syntax-highlighter
592
- #: crayon_settings_wp.class.php:231
593
  msgid "Debug"
594
  msgstr "デバッグ"
595
 
 
596
  #@ crayon-syntax-highlighter
597
- #: crayon_settings_wp.class.php:232
598
  msgid "Errors"
599
  msgstr "エラー"
600
 
 
601
  #@ crayon-syntax-highlighter
602
- #: crayon_settings_wp.class.php:233
603
  msgid "Log"
604
  msgstr "ログファイル"
605
 
 
606
  #@ crayon-syntax-highlighter
607
- #: crayon_settings_wp.class.php:236
608
  msgid "About"
609
  msgstr "Crayonについて"
610
 
 
611
  #@ crayon-syntax-highlighter
612
- #: crayon_settings_wp.class.php:554
613
  msgid "Enqueue themes in the header (more efficient)."
614
  msgstr "ヘッダー内のエンキューテーマ(より効率的)"
615
 
 
616
  #@ crayon-syntax-highlighter
617
- #: crayon_settings_wp.class.php:583
618
  msgid "Enqueue fonts in the header (more efficient)."
619
  msgstr "ヘッダー内のエンキューフォント(より効率的)"
620
 
 
621
  #@ crayon-syntax-highlighter
622
- #: crayon_settings_wp.class.php:545
623
  msgid "Loading..."
624
  msgstr "ロード中..."
625
 
626
- #@ crayon-syntax-highlighter
627
- #: crayon_settings_wp.class.php:545
628
- #: crayon_settings_wp.class.php:712
629
  #: util/theme-editor/editor.php:14
 
630
  msgid "Theme Editor"
631
  msgstr "テーマエディタ"
632
 
 
633
  #@ crayon-syntax-highlighter
634
- #: crayon_settings_wp.class.php:595
635
  msgid "Always display scrollbars"
636
  msgstr "常にスクロールバーを表示する"
637
 
 
638
  #@ crayon-syntax-highlighter
639
- #: crayon_settings_wp.class.php:619
640
  msgid "Disable enqueuing for page templates that may contain The Loop."
641
  msgstr "ループを含む可能性のあるページテンプレートのエンキューを無効にします。"
642
 
 
643
  #@ crayon-syntax-highlighter
644
- #: crayon_settings_wp.class.php:620
645
  msgid "Load Crayons only from the main Wordpress query"
646
  msgstr "唯一の主要なWordpressのクエリからロードクレヨン"
647
 
 
648
  #@ crayon-syntax-highlighter
649
- #: crayon_settings_wp.class.php:668
650
  msgid "Translators"
651
  msgstr "翻訳者"
652
 
653
- #@ crayon-syntax-highlighter
654
  #: util/theme-editor/editor.php:16
 
655
  msgid "Back To Settings"
656
  msgstr "設定を戻す"
657
 
 
658
  #@ crayon-syntax-highlighter
659
- #: crayon_formatter.class.php:203
660
  msgid "Toggle Plain Code"
661
  msgstr "ハイライト表示ON/OFF"
662
 
 
663
  #@ crayon-syntax-highlighter
664
- #: crayon_formatter.class.php:205
665
  msgid "Copy Plain Code"
666
  msgstr "コードをコピー"
667
 
 
668
  #@ crayon-syntax-highlighter
669
- #: crayon_formatter.class.php:211
670
  msgid "Open Code In New Window"
671
  msgstr "新しいウィンドウでコードを開く"
672
 
 
673
  #@ crayon-syntax-highlighter
674
- #: crayon_formatter.class.php:214
675
  msgid "Toggle Line Numbers"
676
  msgstr "行番号ON/OFF"
677
 
 
678
  #@ crayon-syntax-highlighter
679
- #: crayon_formatter.class.php:221
680
  msgid "Contains Mixed Languages"
681
  msgstr "言語が混在しています"
682
 
 
683
  #@ crayon-syntax-highlighter
684
- #: crayon_settings_wp.class.php:644
685
  msgid "Hide Log"
686
  msgstr "ログを隠す"
687
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
688
  #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
 
689
  #. translators: plugin header field 'Version'
690
  #: crayon_wp.class.php:0
691
- msgid "1.7.26"
 
692
  msgstr ""
693
 
 
694
  #@ crayon-syntax-highlighter
695
- #: crayon_formatter.class.php:205
696
- #, php-format
697
- msgid "Press %s to Copy, %s to Paste"
698
- msgstr "貼り付けにコピー、%sに%sを押して、"
699
 
3
  "Project-Id-Version: Crayon Syntax Highlighter v1.6.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2012-03-08 20:53+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"
13
  "X-Poedit-Language: Japanese\n"
14
  "X-Poedit-Country: JAPAN\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: ../\n"
18
+ "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:106
23
  #@ crayon-syntax-highlighter
 
24
  msgid "Hourly"
25
  msgstr "毎時間"
26
 
27
+ #: crayon_settings.class.php:106
28
  #@ crayon-syntax-highlighter
 
29
  msgid "Daily"
30
  msgstr "毎日"
31
 
32
+ #: crayon_settings.class.php:107
33
  #@ crayon-syntax-highlighter
 
34
  msgid "Weekly"
35
  msgstr "毎週"
36
 
37
+ #: crayon_settings.class.php:107
38
  #@ crayon-syntax-highlighter
 
39
  msgid "Monthly"
40
  msgstr "毎月"
41
 
42
+ #: crayon_settings.class.php:108
43
  #@ crayon-syntax-highlighter
 
44
  msgid "Immediately"
45
  msgstr "直後に"
46
 
47
+ #: crayon_settings.class.php:135
48
+ #: crayon_settings.class.php:139
49
  #@ crayon-syntax-highlighter
 
 
50
  msgid "Max"
51
  msgstr "最大"
52
 
53
+ #: crayon_settings.class.php:135
54
+ #: crayon_settings.class.php:139
55
  #@ crayon-syntax-highlighter
 
 
56
  msgid "Min"
57
  msgstr "最小"
58
 
59
+ #: crayon_settings.class.php:135
60
+ #: crayon_settings.class.php:139
61
  #@ crayon-syntax-highlighter
 
 
62
  msgid "Static"
63
  msgstr "固定"
64
 
65
+ #: crayon_settings.class.php:137
66
+ #: crayon_settings.class.php:141
67
+ #: crayon_settings_wp.class.php:461
68
+ #: crayon_settings_wp.class.php:470
69
+ #: crayon_settings_wp.class.php:581
70
  #@ crayon-syntax-highlighter
 
 
71
  msgid "Pixels"
72
  msgstr "ピクセル"
73
 
74
+ #: crayon_settings.class.php:137
75
+ #: crayon_settings.class.php:141
76
  #@ crayon-syntax-highlighter
 
 
77
  msgid "Percent"
78
  msgstr "パーセント"
79
 
80
+ #: crayon_settings.class.php:150
81
  #@ crayon-syntax-highlighter
 
82
  msgid "None"
83
  msgstr "なし"
84
 
85
+ #: crayon_settings.class.php:150
86
  #@ crayon-syntax-highlighter
 
87
  msgid "Left"
88
  msgstr "左"
89
 
90
+ #: crayon_settings.class.php:150
91
  #@ crayon-syntax-highlighter
 
92
  msgid "Center"
93
  msgstr "中央"
94
 
95
+ #: crayon_settings.class.php:150
96
  #@ crayon-syntax-highlighter
 
97
  msgid "Right"
98
  msgstr "右"
99
 
100
+ #: crayon_settings.class.php:152
101
+ #: crayon_settings.class.php:174
102
  #@ crayon-syntax-highlighter
 
 
103
  msgid "On MouseOver"
104
  msgstr "マウスオーバー時"
105
 
106
+ #: crayon_settings.class.php:152
107
+ #: crayon_settings.class.php:158
108
  #@ crayon-syntax-highlighter
 
 
109
  msgid "Always"
110
  msgstr "常に表示"
111
 
112
+ #: crayon_settings.class.php:152
113
+ #: crayon_settings.class.php:158
114
  #@ crayon-syntax-highlighter
 
 
115
  msgid "Never"
116
  msgstr "表示しない"
117
 
118
+ #: crayon_settings.class.php:158
119
  #@ crayon-syntax-highlighter
 
120
  msgid "When Found"
121
  msgstr "言語が判明した場合"
122
 
123
+ #: crayon_settings.class.php:174
124
  #@ crayon-syntax-highlighter
 
125
  msgid "On Double Click"
126
  msgstr "ダブルクリック時"
127
 
128
+ #: crayon_settings.class.php:174
129
  #@ crayon-syntax-highlighter
 
130
  msgid "On Single Click"
131
  msgstr "シングルクリック時"
132
 
133
+ #: crayon_settings.class.php:182
134
  #@ crayon-syntax-highlighter
 
135
  msgid "An error has occurred. Please try again later."
136
  msgstr "エラーが発生しました。後でもう一度やり直してください。"
137
 
 
138
  #: crayon_settings_wp.class.php:39
139
  #: crayon_settings_wp.class.php:82
140
+ #: crayon_settings_wp.class.php:713
141
+ #@ crayon-syntax-highlighter
142
  msgid "Settings"
143
  msgstr "設定"
144
 
 
145
  #: crayon_settings_wp.class.php:73
146
+ #@ crayon-syntax-highlighter
147
  msgid "You do not have sufficient permissions to access this page."
148
  msgstr "このページにアクセスするための十分な権限(パーミッション)がありません。"
149
 
 
150
  #: crayon_settings_wp.class.php:94
151
+ #@ crayon-syntax-highlighter
152
  msgid "Save Changes"
153
  msgstr "変更を保存"
154
 
 
155
  #: crayon_settings_wp.class.php:100
156
+ #@ crayon-syntax-highlighter
157
  msgid "Reset Settings"
158
  msgstr "リセット"
159
 
160
+ #: crayon_settings_wp.class.php:424
161
  #@ crayon-syntax-highlighter
 
162
  msgid "Crayon Help"
163
  msgstr "Crayon ヘルプ"
164
 
165
+ #: crayon_settings_wp.class.php:438
166
  #@ crayon-syntax-highlighter
 
167
  msgid "Height"
168
  msgstr "高さ"
169
 
170
+ #: crayon_settings_wp.class.php:444
171
  #@ crayon-syntax-highlighter
 
172
  msgid "Width"
173
  msgstr "横幅"
174
 
175
+ #: crayon_settings_wp.class.php:450
176
  #@ crayon-syntax-highlighter
 
177
  msgid "Top Margin"
178
  msgstr "上余白"
179
 
180
+ #: crayon_settings_wp.class.php:451
181
  #@ crayon-syntax-highlighter
 
182
  msgid "Bottom Margin"
183
  msgstr "下余白"
184
 
185
+ #: crayon_settings_wp.class.php:452
186
+ #: crayon_settings_wp.class.php:457
187
  #@ crayon-syntax-highlighter
 
 
188
  msgid "Left Margin"
189
  msgstr "左余白"
190
 
191
+ #: crayon_settings_wp.class.php:453
192
+ #: crayon_settings_wp.class.php:457
193
  #@ crayon-syntax-highlighter
 
 
194
  msgid "Right Margin"
195
  msgstr "右余白"
196
 
197
+ #: crayon_settings_wp.class.php:463
198
  #@ crayon-syntax-highlighter
 
199
  msgid "Horizontal Alignment"
200
  msgstr "回り込み"
201
 
202
+ #: crayon_settings_wp.class.php:466
203
  #@ crayon-syntax-highlighter
 
204
  msgid "Allow floating elements to surround Crayon"
205
  msgstr "周りのfloat要素の回り込みを許可"
206
 
207
+ #: crayon_settings_wp.class.php:474
208
  #@ crayon-syntax-highlighter
 
209
  msgid "Display the Toolbar"
210
  msgstr "ツールバーの表示"
211
 
212
+ #: crayon_settings_wp.class.php:477
213
  #@ crayon-syntax-highlighter
 
214
  msgid "Overlay the toolbar on code rather than push it down when possible"
215
  msgstr "コードを押し下げるのではなく、コード上に重ねて表示"
216
 
217
+ #: crayon_settings_wp.class.php:478
218
  #@ crayon-syntax-highlighter
 
219
  msgid "Toggle the toolbar on single click when it is overlayed"
220
  msgstr "重ねて表示の場合にシングルクリックでツールバーを切り替える"
221
 
222
+ #: crayon_settings_wp.class.php:479
223
  #@ crayon-syntax-highlighter
 
224
  msgid "Delay hiding the toolbar on MouseOut"
225
  msgstr "マウスアウト時にツールバーを隠すのを遅らせる"
226
 
227
+ #: crayon_settings_wp.class.php:481
228
  #@ crayon-syntax-highlighter
 
229
  msgid "Display the title when provided"
230
  msgstr "タイトルがある時は表示"
231
 
232
+ #: crayon_settings_wp.class.php:482
233
  #@ crayon-syntax-highlighter
 
234
  msgid "Display the language"
235
  msgstr "ソース言語を表示"
236
 
237
+ #: crayon_settings_wp.class.php:487
238
  #@ crayon-syntax-highlighter
 
239
  msgid "Display striped code lines"
240
  msgstr "コード行を縞模様で表示する"
241
 
242
+ #: crayon_settings_wp.class.php:488
243
  #@ crayon-syntax-highlighter
 
244
  msgid "Enable line marking for important lines"
245
  msgstr "重要な行にマーキングを有効にする"
246
 
247
+ #: crayon_settings_wp.class.php:489
248
  #@ crayon-syntax-highlighter
 
249
  msgid "Display line numbers by default"
250
  msgstr "デフォルトで行番号を表示"
251
 
252
+ #: crayon_settings_wp.class.php:490
253
  #@ crayon-syntax-highlighter
 
254
  msgid "Enable line number toggling"
255
  msgstr "行番号の切り替えを有効にする"
256
 
257
+ #: crayon_settings_wp.class.php:491
258
  #@ crayon-syntax-highlighter
 
259
  msgid "Start line numbers from"
260
  msgstr "行番号の開始数字"
261
 
262
+ #: crayon_settings_wp.class.php:501
263
  #@ crayon-syntax-highlighter
 
264
  msgid "When no language is provided, use the fallback"
265
  msgstr "ソース言語が提供されていない場合は、代替えを使用します。"
266
 
267
+ #: crayon_settings_wp.class.php:509
268
  #@ crayon-syntax-highlighter
 
269
  msgid "Parsing was successful"
270
  msgstr "解析が成功しました。"
271
 
272
+ #: crayon_settings_wp.class.php:509
273
  #@ crayon-syntax-highlighter
 
274
  msgid "Parsing was unsuccessful"
275
  msgstr "解析に失敗しました。"
276
 
277
+ #: crayon_settings_wp.class.php:515
 
278
  #, php-format
279
+ #@ crayon-syntax-highlighter
280
  msgid "The selected language with id %s could not be loaded"
281
  msgstr "ID %s の選択したソース言語をロードできませんでした。"
282
 
283
+ #: crayon_settings_wp.class.php:519
284
  #@ crayon-syntax-highlighter
 
285
  msgid "Show Languages"
286
  msgstr "ソース言語を表示する"
287
 
288
+ #: crayon_settings_wp.class.php:556
289
  #@ crayon-syntax-highlighter
 
290
  msgid "Enable Live Preview"
291
  msgstr "リアルタイムのプレビューを有効にする"
292
 
293
+ #: crayon_settings_wp.class.php:561
 
294
  #, php-format
295
+ #@ crayon-syntax-highlighter
296
  msgid "The selected theme with id %s could not be loaded"
297
  msgstr "ID %sの選択したテーマをロードできませんでした。"
298
 
299
+ #: crayon_settings_wp.class.php:579
300
  #@ crayon-syntax-highlighter
 
301
  msgid "Custom Font Size"
302
  msgstr "フォントサイズ指定"
303
 
304
+ #: crayon_settings_wp.class.php:584
 
305
  #, php-format
306
+ #@ crayon-syntax-highlighter
307
  msgid "The selected font with id %s could not be loaded"
308
  msgstr "ID %s の選択されたフォントをロードできませんでした。"
309
 
310
+ #: crayon_settings_wp.class.php:591
311
  #@ crayon-syntax-highlighter
 
312
  msgid "Enable plain code view and display"
313
  msgstr "単純なコードビューを有効にする"
314
 
315
+ #: crayon_settings_wp.class.php:596
316
  #@ crayon-syntax-highlighter
 
317
  msgid "Enable code copy/paste"
318
  msgstr "コードのコピー/貼り付けを有効にする"
319
 
320
+ #: crayon_settings_wp.class.php:598
321
  #@ crayon-syntax-highlighter
 
322
  msgid "Enable opening code in a window"
323
  msgstr "新しいウインドウでコードを開くを有効にする"
324
 
325
+ #: crayon_settings_wp.class.php:600
326
  #@ crayon-syntax-highlighter
 
327
  msgid "Tab size in spaces"
328
  msgstr "tab挿入の空白代替え数(単純コードビュー)"
329
 
330
+ #: crayon_settings_wp.class.php:602
331
  #@ crayon-syntax-highlighter
 
332
  msgid "Remove whitespace surrounding the shortcode content"
333
  msgstr "ショートコードの内容を囲む空白の部分を削除します"
334
 
335
+ #: crayon_settings_wp.class.php:618
336
  #@ crayon-syntax-highlighter
 
337
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
338
  msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
339
 
340
+ #: crayon_settings_wp.class.php:625
341
  #@ crayon-syntax-highlighter
 
342
  msgid "Clear the cache used to store remote code requests"
343
  msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
344
 
345
+ #: crayon_settings_wp.class.php:627
346
  #@ crayon-syntax-highlighter
 
347
  msgid "Clear Now"
348
  msgstr "今すぐクリア"
349
 
350
+ #: crayon_settings_wp.class.php:628
351
  #@ crayon-syntax-highlighter
 
352
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
353
  msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
354
 
355
+ #: crayon_settings_wp.class.php:632
356
  #@ crayon-syntax-highlighter
 
357
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
358
  msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
359
 
360
+ #: crayon_settings_wp.class.php:633
361
  #@ crayon-syntax-highlighter
 
362
  msgid "Disable animations"
363
  msgstr "アニメーションを無効にする"
364
 
365
+ #: crayon_settings_wp.class.php:634
366
  #@ crayon-syntax-highlighter
 
367
  msgid "Disable runtime stats"
368
  msgstr "プログラム実行時の統計を無効にする"
369
 
370
+ #: crayon_settings_wp.class.php:641
371
  #@ crayon-syntax-highlighter
 
372
  msgid "Log errors for individual Crayons"
373
  msgstr "個々設置(Crayon)のエラーを記録"
374
 
375
+ #: crayon_settings_wp.class.php:642
376
  #@ crayon-syntax-highlighter
 
377
  msgid "Log system-wide errors"
378
  msgstr "システム全体のエラーを記録"
379
 
380
+ #: crayon_settings_wp.class.php:643
381
  #@ crayon-syntax-highlighter
 
382
  msgid "Display custom message for errors"
383
  msgstr "カスタムエラーメッセージを表示する"
384
 
385
+ #: crayon_settings_wp.class.php:655
386
  #@ crayon-syntax-highlighter
 
387
  msgid "Show Log"
388
  msgstr "ログを見る"
389
 
390
+ #: crayon_settings_wp.class.php:657
391
  #@ crayon-syntax-highlighter
 
392
  msgid "Clear Log"
393
  msgstr "ログをクリア"
394
 
395
+ #: crayon_settings_wp.class.php:658
396
  #@ crayon-syntax-highlighter
 
397
  msgid "Email Admin"
398
  msgstr "管理者にEメールを送信"
399
 
400
+ #: crayon_settings_wp.class.php:660
401
  #@ crayon-syntax-highlighter
 
402
  msgid "Email Developer"
403
  msgstr "開発者にEメールを送信"
404
 
405
+ #: crayon_settings_wp.class.php:676
406
  #@ crayon-syntax-highlighter
 
407
  msgid "Version"
408
  msgstr "バージョン"
409
 
410
+ #: crayon_settings_wp.class.php:678
411
  #@ crayon-syntax-highlighter
 
412
  msgid "Developer"
413
  msgstr "開発者"
414
 
415
+ #: crayon_settings_wp.class.php:701
416
  #@ crayon-syntax-highlighter
 
417
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
418
  msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
419
 
420
+ #: crayon_settings_wp.class.php:553
 
421
  #, php-format
422
+ #@ crayon-syntax-highlighter
423
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
424
  msgstr "サンプルコードを変更するには、%1$sfallback language(代替え言語)%2$sを変更て下さい。5行目から7行目はマークされます。"
425
 
426
+ #: crayon_settings_wp.class.php:508
 
427
  #, php-format
428
+ #@ crayon-syntax-highlighter
429
  msgid "%d language has been detected."
430
  msgid_plural "%d languages have been detected."
431
  msgstr[0] "%dのソース言語が検出されてます。"
432
  msgstr[1] "%dのソース言語が検出されてます。"
433
 
434
+ #: crayon_settings_wp.class.php:612
435
  #@ crayon-syntax-highlighter
 
436
  msgid "Capture &lt;pre&gt; tags as Crayons"
437
  msgstr "Crayonsとして&lt;pre&gt;タグをキャプチャ"
438
 
439
+ #: crayon_settings_wp.class.php:621
440
  #@ crayon-syntax-highlighter
 
441
  msgid "Followed by your relative URL."
442
  msgstr "相対URLが続きます。"
443
 
444
+ #: crayon_settings_wp.class.php:662
445
  #@ crayon-syntax-highlighter
 
446
  msgid "The log is currently empty."
447
  msgstr "ログは現在空です。"
448
 
449
+ #: crayon_settings_wp.class.php:664
450
  #@ crayon-syntax-highlighter
 
451
  msgid "The log file exists and is writable."
452
  msgstr "ログファイルは存在し、書き込み可能です。"
453
 
454
+ #: crayon_settings_wp.class.php:664
455
  #@ crayon-syntax-highlighter
 
456
  msgid "The log file exists and is not writable."
457
  msgstr "ログファイルは存在するが、書き込み可能ではありません。"
458
 
459
+ #: crayon_settings_wp.class.php:666
460
  #@ crayon-syntax-highlighter
 
461
  msgid "The log file does not exist and is not writable."
462
  msgstr "ログファイルが存在しないので書き込むことが出来ません。"
463
 
464
+ #: crayon_settings_wp.class.php:558
465
+ #: crayon_settings_wp.class.php:587
466
+ #: crayon_settings_wp.class.php:603
467
+ #: crayon_settings_wp.class.php:608
468
+ #: crayon_settings_wp.class.php:609
469
+ #: crayon_settings_wp.class.php:610
470
+ #: crayon_settings_wp.class.php:611
471
+ #: crayon_settings_wp.class.php:612
472
+ #: crayon_settings_wp.class.php:613
473
+ #: crayon_settings_wp.class.php:628
474
+ #: crayon_settings_wp.class.php:629
475
  #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
476
  msgid "Learn More"
477
  msgstr "詳細はこちら"
478
 
479
+ #: crayon_settings_wp.class.php:604
480
  #@ crayon-syntax-highlighter
 
481
  msgid "Show Mixed Language Icon (+)"
482
  msgstr "混合言語のアイコンを(+)を表示"
483
 
484
+ #: crayon_settings_wp.class.php:603
485
  #@ crayon-syntax-highlighter
 
486
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
487
  msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
488
 
489
+ #: crayon_settings_wp.class.php:608
490
  #@ crayon-syntax-highlighter
 
491
  msgid "Capture Mini Tags like [php][/php] as Crayons."
492
  msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
493
 
494
+ #: crayon_settings_wp.class.php:613
495
  #@ crayon-syntax-highlighter
 
496
  msgid "Enable [plain][/plain] tag."
497
  msgstr "[plain][/plain]タグを有効にします。"
498
 
499
+ #: crayon_settings.class.php:174
500
  #@ crayon-syntax-highlighter
 
501
  msgid "Disable Mouse Events"
502
  msgstr "マウスイベントを無効にする"
503
 
504
+ #: crayon_settings_wp.class.php:594
505
  #@ crayon-syntax-highlighter
 
506
  msgid "Enable plain code toggling"
507
  msgstr "単純なコードの切り替えを有効にする"
508
 
509
+ #: crayon_settings_wp.class.php:595
510
  #@ crayon-syntax-highlighter
 
511
  msgid "Show the plain code by default"
512
  msgstr "デフォルトでプレインコードを表示する"
513
 
 
514
  #. translators: plugin header field 'Name'
515
  #: crayon_wp.class.php:0
516
+ #@ crayon-syntax-highlighter
517
  msgid "Crayon Syntax Highlighter"
518
  msgstr ""
519
 
 
520
  #. translators: plugin header field 'PluginURI'
521
  #: crayon_wp.class.php:0
522
+ #@ crayon-syntax-highlighter
523
  msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
524
  msgstr ""
525
 
 
526
  #. translators: plugin header field 'Description'
527
  #: crayon_wp.class.php:0
528
+ #@ crayon-syntax-highlighter
529
  msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
530
  msgstr "URL、ローカルファイルまたはポストのテキストからハイライト複数の言語、テーマを、サポートしています。"
531
 
 
532
  #. translators: plugin header field 'Author'
533
  #: crayon_wp.class.php:0
534
+ #@ crayon-syntax-highlighter
535
  msgid "Aram Kocharyan"
536
  msgstr ""
537
 
 
538
  #. translators: plugin header field 'AuthorURI'
539
  #: crayon_wp.class.php:0
540
+ #@ crayon-syntax-highlighter
541
  msgid "http://ak.net84.net/"
542
  msgstr ""
543
 
544
+ #: crayon_settings_wp.class.php:717
545
  #@ crayon-syntax-highlighter
 
546
  msgid "Donate"
547
  msgstr "寄付する"
548
 
 
549
  #: crayon_settings_wp.class.php:219
550
+ #@ crayon-syntax-highlighter
551
  msgid "General"
552
  msgstr "一般設定"
553
 
 
554
  #: crayon_settings_wp.class.php:220
555
+ #@ crayon-syntax-highlighter
556
  msgid "Theme"
557
  msgstr "テーマ"
558
 
 
559
  #: crayon_settings_wp.class.php:221
560
+ #@ crayon-syntax-highlighter
561
  msgid "Font"
562
  msgstr "フォント"
563
 
 
564
  #: crayon_settings_wp.class.php:222
565
+ #@ crayon-syntax-highlighter
566
  msgid "Metrics"
567
  msgstr "サイズ"
568
 
 
569
  #: crayon_settings_wp.class.php:223
570
+ #@ crayon-syntax-highlighter
571
  msgid "Toolbar"
572
  msgstr "ツールバー"
573
 
 
574
  #: crayon_settings_wp.class.php:224
575
+ #@ crayon-syntax-highlighter
576
  msgid "Lines"
577
  msgstr "行"
578
 
 
579
  #: crayon_settings_wp.class.php:225
580
+ #@ crayon-syntax-highlighter
581
  msgid "Code"
582
  msgstr "コード"
583
 
584
+ #: crayon_settings_wp.class.php:227
585
  #@ crayon-syntax-highlighter
 
586
  msgid "Languages"
587
  msgstr "プログラム言語"
588
 
589
+ #: crayon_settings_wp.class.php:228
590
  #@ crayon-syntax-highlighter
 
591
  msgid "Files"
592
  msgstr "読込ファイル"
593
 
594
+ #: crayon_settings_wp.class.php:229
595
  #@ crayon-syntax-highlighter
 
596
  msgid "Misc"
597
  msgstr "その他"
598
 
599
+ #: crayon_settings_wp.class.php:232
600
  #@ crayon-syntax-highlighter
 
601
  msgid "Debug"
602
  msgstr "デバッグ"
603
 
604
+ #: crayon_settings_wp.class.php:233
605
  #@ crayon-syntax-highlighter
 
606
  msgid "Errors"
607
  msgstr "エラー"
608
 
609
+ #: crayon_settings_wp.class.php:234
610
  #@ crayon-syntax-highlighter
 
611
  msgid "Log"
612
  msgstr "ログファイル"
613
 
614
+ #: crayon_settings_wp.class.php:237
615
  #@ crayon-syntax-highlighter
 
616
  msgid "About"
617
  msgstr "Crayonについて"
618
 
619
+ #: crayon_settings_wp.class.php:558
620
  #@ crayon-syntax-highlighter
 
621
  msgid "Enqueue themes in the header (more efficient)."
622
  msgstr "ヘッダー内のエンキューテーマ(より効率的)"
623
 
624
+ #: crayon_settings_wp.class.php:587
625
  #@ crayon-syntax-highlighter
 
626
  msgid "Enqueue fonts in the header (more efficient)."
627
  msgstr "ヘッダー内のエンキューフォント(より効率的)"
628
 
629
+ #: crayon_settings_wp.class.php:549
630
  #@ crayon-syntax-highlighter
 
631
  msgid "Loading..."
632
  msgstr "ロード中..."
633
 
634
+ #: crayon_settings_wp.class.php:549
635
+ #: crayon_settings_wp.class.php:715
 
636
  #: util/theme-editor/editor.php:14
637
+ #@ crayon-syntax-highlighter
638
  msgid "Theme Editor"
639
  msgstr "テーマエディタ"
640
 
641
+ #: crayon_settings_wp.class.php:599
642
  #@ crayon-syntax-highlighter
 
643
  msgid "Always display scrollbars"
644
  msgstr "常にスクロールバーを表示する"
645
 
646
+ #: crayon_settings_wp.class.php:629
647
  #@ crayon-syntax-highlighter
 
648
  msgid "Disable enqueuing for page templates that may contain The Loop."
649
  msgstr "ループを含む可能性のあるページテンプレートのエンキューを無効にします。"
650
 
651
+ #: crayon_settings_wp.class.php:631
652
  #@ crayon-syntax-highlighter
 
653
  msgid "Load Crayons only from the main Wordpress query"
654
  msgstr "唯一の主要なWordpressのクエリからロードクレヨン"
655
 
656
+ #: crayon_settings_wp.class.php:679
657
  #@ crayon-syntax-highlighter
 
658
  msgid "Translators"
659
  msgstr "翻訳者"
660
 
 
661
  #: util/theme-editor/editor.php:16
662
+ #@ crayon-syntax-highlighter
663
  msgid "Back To Settings"
664
  msgstr "設定を戻す"
665
 
666
+ #: crayon_formatter.class.php:270
667
  #@ crayon-syntax-highlighter
 
668
  msgid "Toggle Plain Code"
669
  msgstr "ハイライト表示ON/OFF"
670
 
671
+ #: crayon_formatter.class.php:272
672
  #@ crayon-syntax-highlighter
 
673
  msgid "Copy Plain Code"
674
  msgstr "コードをコピー"
675
 
676
+ #: crayon_formatter.class.php:278
677
  #@ crayon-syntax-highlighter
 
678
  msgid "Open Code In New Window"
679
  msgstr "新しいウィンドウでコードを開く"
680
 
681
+ #: crayon_formatter.class.php:281
682
  #@ crayon-syntax-highlighter
 
683
  msgid "Toggle Line Numbers"
684
  msgstr "行番号ON/OFF"
685
 
686
+ #: crayon_formatter.class.php:288
687
  #@ crayon-syntax-highlighter
 
688
  msgid "Contains Mixed Languages"
689
  msgstr "言語が混在しています"
690
 
691
+ #: crayon_settings_wp.class.php:655
692
  #@ crayon-syntax-highlighter
 
693
  msgid "Hide Log"
694
  msgstr "ログを隠す"
695
 
696
+ #: crayon_formatter.class.php:272
697
+ #, php-format
698
+ #@ crayon-syntax-highlighter
699
+ msgid "Press %s to Copy, %s to Paste"
700
+ msgstr "貼り付けにコピー、%sに%sを押して、"
701
+
702
+ #: crayon_settings_wp.class.php:226
703
+ #@ crayon-syntax-highlighter
704
+ msgid "Tags"
705
+ msgstr "タグ"
706
+
707
+ #: crayon_settings_wp.class.php:468
708
+ #@ crayon-syntax-highlighter
709
+ msgid "Inline Margin"
710
+ msgstr "インラインマージン"
711
+
712
+ #: crayon_settings_wp.class.php:609
713
+ #@ crayon-syntax-highlighter
714
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
715
+ msgstr "{php}{/php}文の内部でインラインタグをキャプチャします。"
716
+
717
+ #: crayon_settings_wp.class.php:611
718
  #@ crayon-syntax-highlighter
719
+ msgid "Capture `backquotes` as &lt;code&gt;"
720
+ msgstr "の&lt;code&gt;として `バッククォート`をキャプチャする"
721
+
722
+ #: crayon_settings_wp.class.php:630
723
+ #@ crayon-syntax-highlighter
724
+ msgid "Allow Crayons inside comments"
725
+ msgstr "コメント内のクレヨンを許可する"
726
+
727
  #. translators: plugin header field 'Version'
728
  #: crayon_wp.class.php:0
729
+ #@ crayon-syntax-highlighter
730
+ msgid "1.8.2"
731
  msgstr ""
732
 
733
+ #: crayon_settings_wp.class.php:610
734
  #@ crayon-syntax-highlighter
735
+ msgid "Wrap Inline Tags"
736
+ msgstr "ラップインラインタグ"
 
 
737
 
trans/crayon-syntax-highlighter-ru_RU.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-ru_RU.po CHANGED
@@ -1,697 +1,668 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Di_Skyer <diskyer@atlocal.net>\n"
8
- "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=3; plural=n != 1;\n"
 
 
13
  "X-Poedit-SourceCharset: utf-8\n"
14
- "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"
 
15
  "X-Textdomain-Support: yes\n"
16
  "X-Poedit-SearchPath-0: .\n"
 
17
 
18
- #@ crayon-syntax-highlighter
19
- #: crayon_settings.class.php:101
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "Hourly"
21
  msgstr "Каждый час"
22
 
23
- #@ crayon-syntax-highlighter
24
- #: crayon_settings.class.php:101
25
  msgid "Daily"
26
  msgstr "Ежедневно"
27
 
28
- #@ crayon-syntax-highlighter
29
- #: crayon_settings.class.php:102
30
  msgid "Weekly"
31
  msgstr "Еженедельно"
32
 
33
- #@ crayon-syntax-highlighter
34
- #: crayon_settings.class.php:102
35
  msgid "Monthly"
36
  msgstr "Ежемесячно"
37
 
38
- #@ crayon-syntax-highlighter
39
- #: crayon_settings.class.php:103
40
  msgid "Immediately"
41
  msgstr "Немедленно"
42
 
43
- #@ crayon-syntax-highlighter
44
- #: crayon_settings.class.php:130
45
- #: crayon_settings.class.php:134
46
  msgid "Max"
47
  msgstr "Максимум"
48
 
49
- #@ crayon-syntax-highlighter
50
- #: crayon_settings.class.php:130
51
- #: crayon_settings.class.php:134
52
  msgid "Min"
53
  msgstr "Минимум"
54
 
55
- #@ crayon-syntax-highlighter
56
- #: crayon_settings.class.php:130
57
- #: crayon_settings.class.php:134
58
  msgid "Static"
59
  msgstr "Фиксировано"
60
 
61
- #@ crayon-syntax-highlighter
62
- #: crayon_settings.class.php:132
63
- #: crayon_settings.class.php:136
 
 
 
64
  msgid "Pixels"
65
- msgstr "Пикселей"
66
 
67
- #@ crayon-syntax-highlighter
68
- #: crayon_settings.class.php:132
69
- #: crayon_settings.class.php:136
70
  msgid "Percent"
71
  msgstr "Процентов"
72
 
73
- #@ crayon-syntax-highlighter
74
- #: crayon_settings.class.php:145
75
  msgid "None"
76
  msgstr "Нет"
77
 
78
- #@ crayon-syntax-highlighter
79
- #: crayon_settings.class.php:145
80
  msgid "Left"
81
  msgstr "Влево"
82
 
83
- #@ crayon-syntax-highlighter
84
- #: crayon_settings.class.php:145
85
  msgid "Center"
86
  msgstr "По центру"
87
 
88
- #@ crayon-syntax-highlighter
89
- #: crayon_settings.class.php:145
90
  msgid "Right"
91
  msgstr "Вправо"
92
 
93
- #@ crayon-syntax-highlighter
94
- #: crayon_settings.class.php:147
95
- #: crayon_settings.class.php:169
96
  msgid "On MouseOver"
97
  msgstr "При наведении мыши"
98
 
99
- #@ crayon-syntax-highlighter
100
- #: crayon_settings.class.php:147
101
- #: crayon_settings.class.php:153
102
  msgid "Always"
103
  msgstr "Всегда"
104
 
105
- #@ crayon-syntax-highlighter
106
- #: crayon_settings.class.php:147
107
- #: crayon_settings.class.php:153
108
  msgid "Never"
109
  msgstr "Никогда"
110
 
111
- #@ crayon-syntax-highlighter
112
- #: crayon_settings.class.php:153
113
  msgid "When Found"
114
  msgstr "Если определён"
115
 
116
- #@ crayon-syntax-highlighter
117
- #: crayon_settings.class.php:169
118
  msgid "On Double Click"
119
  msgstr "При двойном клике"
120
 
121
- #@ crayon-syntax-highlighter
122
- #: crayon_settings.class.php:169
123
  msgid "On Single Click"
124
  msgstr "При клике"
125
 
126
- #@ crayon-syntax-highlighter
127
- #: crayon_settings.class.php:169
128
  msgid "Disable Mouse Events"
129
  msgstr "Запретить отслеживание событий мыши"
130
 
131
- #@ crayon-syntax-highlighter
132
- #: crayon_settings.class.php:177
133
  msgid "An error has occurred. Please try again later."
134
  msgstr "Произошла ошибка. Попробуйте ещё раз позднее."
135
 
136
- #@ crayon-syntax-highlighter
137
- #: crayon_settings_wp.class.php:39
138
- #: crayon_settings_wp.class.php:82
139
- #: crayon_settings_wp.class.php:710
140
  msgid "Settings"
141
  msgstr "Параметры"
142
 
143
- #@ crayon-syntax-highlighter
144
- #: crayon_settings_wp.class.php:73
145
  msgid "You do not have sufficient permissions to access this page."
146
  msgstr "У вас недостаточно прав для доступа к этой странице."
147
 
148
- #@ crayon-syntax-highlighter
149
- #: crayon_settings_wp.class.php:94
150
  msgid "Save Changes"
151
  msgstr "Сохранить параметры"
152
 
153
- #@ crayon-syntax-highlighter
154
- #: crayon_settings_wp.class.php:100
155
  msgid "Reset Settings"
156
  msgstr "Параметры по умолчанию"
157
 
158
- #@ crayon-syntax-highlighter
159
- #: crayon_settings_wp.class.php:219
160
  msgid "General"
161
  msgstr "Основные"
162
 
163
- #@ crayon-syntax-highlighter
164
- #: crayon_settings_wp.class.php:220
165
  msgid "Theme"
166
  msgstr "Тема"
167
 
168
- #@ crayon-syntax-highlighter
169
- #: crayon_settings_wp.class.php:221
170
  msgid "Font"
171
  msgstr "Шрифт"
172
 
173
- #@ crayon-syntax-highlighter
174
- #: crayon_settings_wp.class.php:222
175
  msgid "Metrics"
176
  msgstr "Метрики"
177
 
178
- #@ crayon-syntax-highlighter
179
- #: crayon_settings_wp.class.php:223
180
  msgid "Toolbar"
181
  msgstr "Панель инструментов"
182
 
183
- #@ crayon-syntax-highlighter
184
- #: crayon_settings_wp.class.php:224
185
  msgid "Lines"
186
  msgstr "Строки"
187
 
188
- #@ crayon-syntax-highlighter
189
- #: crayon_settings_wp.class.php:225
190
  msgid "Code"
191
  msgstr "Код"
192
 
193
- #@ crayon-syntax-highlighter
194
- #: crayon_settings_wp.class.php:226
 
 
 
 
195
  msgid "Languages"
196
  msgstr "Языки"
197
 
198
- #@ crayon-syntax-highlighter
199
- #: crayon_settings_wp.class.php:227
200
  msgid "Files"
201
  msgstr "Файлы"
202
 
203
- #@ crayon-syntax-highlighter
204
- #: crayon_settings_wp.class.php:228
205
  msgid "Misc"
206
  msgstr "Разное"
207
 
208
- #@ crayon-syntax-highlighter
209
- #: crayon_settings_wp.class.php:231
210
  msgid "Debug"
211
  msgstr "Отладка"
212
 
213
- #@ crayon-syntax-highlighter
214
- #: crayon_settings_wp.class.php:232
215
  msgid "Errors"
216
  msgstr "Ошибки"
217
 
218
- #@ crayon-syntax-highlighter
219
- #: crayon_settings_wp.class.php:233
220
  msgid "Log"
221
  msgstr "Журнал ошибок"
222
 
223
- #@ crayon-syntax-highlighter
224
- #: crayon_settings_wp.class.php:236
225
  msgid "About"
226
  msgstr "О плагине"
227
 
228
- #@ crayon-syntax-highlighter
229
- #: crayon_settings_wp.class.php:423
230
  msgid "Crayon Help"
231
  msgstr "Справка Crayon"
232
 
233
- #@ crayon-syntax-highlighter
234
- #: crayon_settings_wp.class.php:437
235
  msgid "Height"
236
  msgstr "Высота"
237
 
238
- #@ crayon-syntax-highlighter
239
- #: crayon_settings_wp.class.php:443
240
  msgid "Width"
241
  msgstr "Ширина"
242
 
243
- #@ crayon-syntax-highlighter
244
- #: crayon_settings_wp.class.php:449
245
  msgid "Top Margin"
246
  msgstr "Верхний отступ"
247
 
248
- #@ crayon-syntax-highlighter
249
- #: crayon_settings_wp.class.php:450
250
  msgid "Bottom Margin"
251
  msgstr "Нижний отступ"
252
 
253
- #@ crayon-syntax-highlighter
254
- #: crayon_settings_wp.class.php:451
255
- #: crayon_settings_wp.class.php:456
256
  msgid "Left Margin"
257
  msgstr "Левый отступ"
258
 
259
- #@ crayon-syntax-highlighter
260
- #: crayon_settings_wp.class.php:452
261
- #: crayon_settings_wp.class.php:456
262
  msgid "Right Margin"
263
  msgstr "Правый отступ"
264
 
265
- #@ crayon-syntax-highlighter
266
- #: crayon_settings_wp.class.php:462
267
  msgid "Horizontal Alignment"
268
  msgstr "Выравнивание по горизонтали"
269
 
270
- #@ crayon-syntax-highlighter
271
- #: crayon_settings_wp.class.php:465
272
  msgid "Allow floating elements to surround Crayon"
273
  msgstr "Разрешить плавающий режим"
274
 
275
- #@ crayon-syntax-highlighter
276
- #: crayon_settings_wp.class.php:470
 
 
 
 
 
277
  msgid "Display the Toolbar"
278
  msgstr "Показывать панель инструментов"
279
 
280
- #@ crayon-syntax-highlighter
281
- #: crayon_settings_wp.class.php:473
282
  msgid "Overlay the toolbar on code rather than push it down when possible"
283
  msgstr "Использовать, если возможно, наложение панели инструментов на панель кодов без смещения кодов вниз"
284
 
285
- #@ crayon-syntax-highlighter
286
- #: crayon_settings_wp.class.php:474
287
  msgid "Toggle the toolbar on single click when it is overlayed"
288
  msgstr "Показывать панель инструментов по клику, если она скрыта"
289
 
290
- #@ crayon-syntax-highlighter
291
- #: crayon_settings_wp.class.php:475
292
  msgid "Delay hiding the toolbar on MouseOut"
293
  msgstr "Задержка исчезания панели инструментов при уходе курсора мыши за пределы панели"
294
 
295
- #@ crayon-syntax-highlighter
296
- #: crayon_settings_wp.class.php:477
297
  msgid "Display the title when provided"
298
  msgstr "Показывать заголовок, если он задан"
299
 
300
- #@ crayon-syntax-highlighter
301
- #: crayon_settings_wp.class.php:478
302
  msgid "Display the language"
303
  msgstr "Показывать язык кода"
304
 
305
- #@ crayon-syntax-highlighter
306
- #: crayon_settings_wp.class.php:483
307
  msgid "Display striped code lines"
308
  msgstr "Использовать чередование цвета строк кода"
309
 
310
- #@ crayon-syntax-highlighter
311
- #: crayon_settings_wp.class.php:484
312
  msgid "Enable line marking for important lines"
313
  msgstr "Разрешить маркировку важных строк кода"
314
 
315
- #@ crayon-syntax-highlighter
316
- #: crayon_settings_wp.class.php:485
317
  msgid "Display line numbers by default"
318
  msgstr "Показывать нумерацию строк по умолчанию"
319
 
320
- #@ crayon-syntax-highlighter
321
- #: crayon_settings_wp.class.php:486
322
  msgid "Enable line number toggling"
323
  msgstr "Разрешить переключение нумерации строк"
324
 
325
- #@ crayon-syntax-highlighter
326
- #: crayon_settings_wp.class.php:487
327
  msgid "Start line numbers from"
328
  msgstr "Начинать нумерацию строк с"
329
 
330
- #@ crayon-syntax-highlighter
331
- #: crayon_settings_wp.class.php:497
332
  msgid "When no language is provided, use the fallback"
333
  msgstr "Если язык не поддерживается, использовать"
334
 
335
- #@ crayon-syntax-highlighter
336
- #: crayon_settings_wp.class.php:504
337
  #, php-format
338
  msgid "%d language has been detected."
339
- msgid_plural "%d languages has been detected."
340
  msgstr[0] "Обнаружен %d язык."
341
- msgstr[1] "Обнаружен %d языка."
342
  msgstr[2] "Обнаружено %d языков."
343
 
344
- #@ crayon-syntax-highlighter
345
- #: crayon_settings_wp.class.php:505
346
  msgid "Parsing was successful"
347
  msgstr "Разбор произведён успешно"
348
 
349
- #@ crayon-syntax-highlighter
350
- #: crayon_settings_wp.class.php:505
351
  msgid "Parsing was unsuccessful"
352
  msgstr "Разбор закончился неудачей"
353
 
354
- #@ crayon-syntax-highlighter
355
- #: crayon_settings_wp.class.php:511
356
  #, php-format
357
  msgid "The selected language with id %s could not be loaded"
358
  msgstr "Выбранный язык (ID %s) не загружен."
359
 
360
- #@ crayon-syntax-highlighter
361
- #: crayon_settings_wp.class.php:515
362
  msgid "Show Languages"
363
  msgstr "Показать языки"
364
 
365
- #@ crayon-syntax-highlighter
366
- #: crayon_settings_wp.class.php:552
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  msgid "Enable Live Preview"
368
  msgstr "Разрешить показ примера"
369
 
370
- #@ crayon-syntax-highlighter
371
- #: crayon_settings_wp.class.php:554
372
  msgid "Enqueue themes in the header (more efficient)."
373
  msgstr "Загружать темы в заголовке страницы (более эффективно)."
374
 
375
- #@ crayon-syntax-highlighter
376
- #: crayon_settings_wp.class.php:554
377
- #: crayon_settings_wp.class.php:583
378
- #: crayon_settings_wp.class.php:600
379
- #: crayon_settings_wp.class.php:601
380
- #: crayon_settings_wp.class.php:602
381
- #: crayon_settings_wp.class.php:618
382
- #: crayon_settings_wp.class.php:619
 
 
 
 
383
  msgid "Learn More"
384
  msgstr "Подробнее"
385
 
386
- #@ crayon-syntax-highlighter
387
- #: crayon_settings_wp.class.php:557
388
  #, php-format
389
  msgid "The selected theme with id %s could not be loaded"
390
  msgstr "Выбранная тема (ID %s) не загружена."
391
 
392
- #@ crayon-syntax-highlighter
393
- #: crayon_settings_wp.class.php:575
394
  msgid "Custom Font Size"
395
  msgstr "Пользовательский размер шрифта"
396
 
397
- #@ crayon-syntax-highlighter
398
- #: crayon_settings_wp.class.php:580
399
  #, php-format
400
  msgid "The selected font with id %s could not be loaded"
401
  msgstr "Выбранный шрифт (ID %s) не может быть загружен."
402
 
403
- #@ crayon-syntax-highlighter
404
- #: crayon_settings_wp.class.php:583
405
  msgid "Enqueue fonts in the header (more efficient)."
406
  msgstr "Загружать шрифты в заголовке страницы (более эффективно)."
407
 
408
- #@ crayon-syntax-highlighter
409
- #: crayon_settings_wp.class.php:587
410
  msgid "Enable plain code view and display"
411
  msgstr "Разрешить показ кода как обычного текста"
412
 
413
- #@ crayon-syntax-highlighter
414
- #: crayon_settings_wp.class.php:590
415
  msgid "Enable plain code toggling"
416
  msgstr "Разрешить переключение показа кода как простого текста"
417
 
418
- #@ crayon-syntax-highlighter
419
- #: crayon_settings_wp.class.php:591
420
  msgid "Show the plain code by default"
421
  msgstr "Показывать код как простой текст по умолчанию"
422
 
423
- #@ crayon-syntax-highlighter
424
- #: crayon_settings_wp.class.php:592
425
  msgid "Enable code copy/paste"
426
  msgstr "Разрешить копирование/вставку кода"
427
 
428
- #@ crayon-syntax-highlighter
429
- #: crayon_settings_wp.class.php:594
430
  msgid "Enable opening code in a window"
431
  msgstr "Разрешить показ кода в отдельном окне"
432
 
433
- #@ crayon-syntax-highlighter
434
- #: crayon_settings_wp.class.php:596
 
 
 
 
435
  msgid "Tab size in spaces"
436
  msgstr "Размер табуляций в пробелах"
437
 
438
- #@ crayon-syntax-highlighter
439
- #: crayon_settings_wp.class.php:598
440
  msgid "Remove whitespace surrounding the shortcode content"
441
  msgstr "Удалять пробелы окружающие контент короткого кода"
442
 
443
- #@ crayon-syntax-highlighter
444
- #: crayon_settings_wp.class.php:599
445
- msgid "Capture &lt;pre&gt; tags as Crayons"
446
- msgstr "Определять тег &lt;pre&gt; как код Crayon"
 
 
 
 
 
447
 
448
- #@ crayon-syntax-highlighter
449
- #: crayon_settings_wp.class.php:600
450
  msgid "Capture Mini Tags like [php][/php] as Crayons."
451
  msgstr "Обрабатывать мини-теги, например [php][/php], как теги Crayon."
452
 
453
- #@ crayon-syntax-highlighter
454
- #: crayon_settings_wp.class.php:601
455
- msgid "Enable [plain][/plain] tag."
456
- msgstr "Разрешить теги [plain][/plain]."
457
 
458
- #@ crayon-syntax-highlighter
459
- #: crayon_settings_wp.class.php:602
460
- msgid "Allow Mixed Language Highlighting with delimiters and tags."
461
- msgstr "Разрешить подсветку смешанных языков."
462
 
463
- #@ crayon-syntax-highlighter
464
- #: crayon_settings_wp.class.php:603
465
- msgid "Show Mixed Language Icon (+)"
466
- msgstr "Показывать иконку смешанных языков (+)"
 
 
 
 
 
 
 
 
467
 
468
- #@ crayon-syntax-highlighter
469
- #: crayon_settings_wp.class.php:608
470
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
471
  msgstr "При загрузке локальных файлов, относительный путь к файлу вычислять относительно этого URL"
472
 
473
- #@ crayon-syntax-highlighter
474
- #: crayon_settings_wp.class.php:611
475
  msgid "Followed by your relative URL."
476
  msgstr "Путь будет определён относительно заданного URL."
477
 
478
- #@ crayon-syntax-highlighter
479
- #: crayon_settings_wp.class.php:615
480
  msgid "Clear the cache used to store remote code requests"
481
  msgstr "Очищать кэш используемый для хранения кодов из внешних файлов"
482
 
483
- #@ crayon-syntax-highlighter
484
- #: crayon_settings_wp.class.php:617
485
  msgid "Clear Now"
486
  msgstr "Очистить сейчас"
487
 
488
- #@ crayon-syntax-highlighter
489
- #: crayon_settings_wp.class.php:618
490
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
491
  msgstr "Пытаться загружать таблицы стилей (CSS) и скрипты (Javascript) плагина только тогда, когда это нужно"
492
 
493
- #@ crayon-syntax-highlighter
494
- #: crayon_settings_wp.class.php:621
 
 
 
 
 
 
 
 
 
 
 
 
495
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
496
  msgstr "Отключить распознавание жестов мышью для сенсорных экранов (например Наведение Мыши)"
497
 
498
- #@ crayon-syntax-highlighter
499
- #: crayon_settings_wp.class.php:622
500
  msgid "Disable animations"
501
  msgstr "Запретить анимацию"
502
 
503
- #@ crayon-syntax-highlighter
504
- #: crayon_settings_wp.class.php:623
505
  msgid "Disable runtime stats"
506
  msgstr "Запретить статистику выполнения"
507
 
508
- #@ crayon-syntax-highlighter
509
- #: crayon_settings_wp.class.php:630
510
  msgid "Log errors for individual Crayons"
511
  msgstr "Журнал ошибок для каждого кода Crayon"
512
 
513
- #@ crayon-syntax-highlighter
514
- #: crayon_settings_wp.class.php:631
515
  msgid "Log system-wide errors"
516
  msgstr "Журнал ошибок для системно-независимых ошибок"
517
 
518
- #@ crayon-syntax-highlighter
519
- #: crayon_settings_wp.class.php:632
520
  msgid "Display custom message for errors"
521
  msgstr "Показывать свое сообщение об ошибках"
522
 
523
- #@ crayon-syntax-highlighter
524
- #: crayon_settings_wp.class.php:644
525
  msgid "Show Log"
526
  msgstr "Показать журнал ошибок"
527
 
528
- #@ crayon-syntax-highlighter
529
- #: crayon_settings_wp.class.php:646
 
 
 
 
530
  msgid "Clear Log"
531
  msgstr "Очистить журнал ошибок"
532
 
533
- #@ crayon-syntax-highlighter
534
- #: crayon_settings_wp.class.php:647
535
  msgid "Email Admin"
536
  msgstr "Сообщить администратору (e-mail)"
537
 
538
- #@ crayon-syntax-highlighter
539
- #: crayon_settings_wp.class.php:649
540
  msgid "Email Developer"
541
  msgstr "Сообщить разработчику (e-mail)"
542
 
543
- #@ crayon-syntax-highlighter
544
- #: crayon_settings_wp.class.php:651
545
  msgid "The log is currently empty."
546
  msgstr "Журнал ошибок пуст."
547
 
548
- #@ crayon-syntax-highlighter
549
- #: crayon_settings_wp.class.php:653
550
  msgid "The log file exists and is writable."
551
  msgstr "Файл журнала ошибок существует и в него могут заноситься записи."
552
 
553
- #@ crayon-syntax-highlighter
554
- #: crayon_settings_wp.class.php:653
555
  msgid "The log file exists and is not writable."
556
  msgstr "Файл журнала ошибок существует, но в него не могут заноситься записи."
557
 
558
- #@ crayon-syntax-highlighter
559
- #: crayon_settings_wp.class.php:655
560
  msgid "The log file does not exist and is not writable."
561
  msgstr "Файл журнала ошибок не существует и в него не могут заноситься записи."
562
 
563
- #@ crayon-syntax-highlighter
564
- #: crayon_settings_wp.class.php:665
565
  msgid "Version"
566
  msgstr "Версия"
567
 
568
- #@ crayon-syntax-highlighter
569
- #: crayon_settings_wp.class.php:667
570
  msgid "Developer"
571
  msgstr "Разработчик"
572
 
573
- #@ crayon-syntax-highlighter
574
- #: crayon_settings_wp.class.php:698
 
 
 
 
575
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
576
  msgstr "Результат бесчисленных часов тяжелой работы за многие месяцы. Это - текущий проект, поддержите мою мотивацию!"
577
 
578
- #@ crayon-syntax-highlighter
579
- #: crayon_settings_wp.class.php:714
580
  msgid "Donate"
581
- msgstr "Помощь автору"
582
-
583
- #@ crayon-syntax-highlighter
584
- #: crayon_settings_wp.class.php:549
585
- #, php-format
586
- msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
587
- msgstr "Измените %1$sязык подсветки%2$s, чтобы изменить пример кода. Строки 5-7 отмечены."
588
-
589
- #@ crayon-syntax-highlighter
590
- #. translators: plugin header field 'Name'
591
- #: crayon_wp.class.php:0
592
- msgid "Crayon Syntax Highlighter"
593
- msgstr ""
594
-
595
- #@ crayon-syntax-highlighter
596
- #. translators: plugin header field 'PluginURI'
597
- #: crayon_wp.class.php:0
598
- msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
599
- msgstr ""
600
 
601
- #@ crayon-syntax-highlighter
602
- #. translators: plugin header field 'Description'
603
- #: crayon_wp.class.php:0
604
- msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
605
- msgstr "Поддерживает различные языки, темы оформления, подсветку текста из URL, локального файла или текста поста."
606
-
607
- #@ crayon-syntax-highlighter
608
- #. translators: plugin header field 'Author'
609
- #: crayon_wp.class.php:0
610
- msgid "Aram Kocharyan"
611
- msgstr ""
612
-
613
- #@ crayon-syntax-highlighter
614
- #. translators: plugin header field 'AuthorURI'
615
- #: crayon_wp.class.php:0
616
- msgid "http://ak.net84.net/"
617
- msgstr ""
618
-
619
- #@ crayon-syntax-highlighter
620
- #: crayon_settings_wp.class.php:545
621
- msgid "Loading..."
622
- msgstr "Загрузка..."
623
-
624
- #@ crayon-syntax-highlighter
625
- #: crayon_settings_wp.class.php:545
626
- #: crayon_settings_wp.class.php:712
627
- #: util/theme-editor/editor.php:14
628
- msgid "Theme Editor"
629
- msgstr "Редактор тем"
630
-
631
- #@ crayon-syntax-highlighter
632
- #: crayon_settings_wp.class.php:595
633
- msgid "Always display scrollbars"
634
- msgstr "Всегда отображать полосы прокрутки"
635
-
636
- #@ crayon-syntax-highlighter
637
- #: crayon_settings_wp.class.php:619
638
- msgid "Disable enqueuing for page templates that may contain The Loop."
639
- msgstr "Отключить работу плагина для шаблонов страниц, которые могут содержать Loop."
640
-
641
- #@ crayon-syntax-highlighter
642
- #: crayon_settings_wp.class.php:620
643
- msgid "Load Crayons only from the main Wordpress query"
644
- msgstr "Загрузка Crayons только из основного запроса Wordpress"
645
-
646
- #@ crayon-syntax-highlighter
647
- #: crayon_settings_wp.class.php:668
648
- msgid "Translators"
649
- msgstr "Переводчики"
650
-
651
- #@ crayon-syntax-highlighter
652
- #: util/theme-editor/editor.php:16
653
  msgid "Back To Settings"
654
- msgstr "Вернуться к настройкам"
655
-
656
- #@ crayon-syntax-highlighter
657
- #: crayon_formatter.class.php:203
658
- msgid "Toggle Plain Code"
659
- msgstr "Включить либо Выключить подсветку синтаксиса текста"
660
-
661
- #@ crayon-syntax-highlighter
662
- #: crayon_formatter.class.php:205
663
- msgid "Copy Plain Code"
664
- msgstr "Скопировать текст"
665
-
666
- #@ crayon-syntax-highlighter
667
- #: crayon_formatter.class.php:211
668
- msgid "Open Code In New Window"
669
- msgstr "Открыть код в новом окне"
670
-
671
- #@ crayon-syntax-highlighter
672
- #: crayon_formatter.class.php:214
673
- msgid "Toggle Line Numbers"
674
- msgstr "Нумерация строк"
675
-
676
- #@ crayon-syntax-highlighter
677
- #: crayon_formatter.class.php:221
678
- msgid "Contains Mixed Languages"
679
- msgstr "Содержит Смешанные Языки"
680
-
681
- #@ crayon-syntax-highlighter
682
- #: crayon_settings_wp.class.php:644
683
- msgid "Hide Log"
684
- msgstr "Скрыть Вход"
685
-
686
- #@ crayon-syntax-highlighter
687
- #. translators: plugin header field 'Version'
688
- #: crayon_wp.class.php:0
689
- msgid "1.7.26"
690
- msgstr ""
691
-
692
- #@ crayon-syntax-highlighter
693
- #: crayon_formatter.class.php:205
694
- #, php-format
695
- msgid "Press %s to Copy, %s to Paste"
696
- msgstr "Нажмите %s что бы Копировать текст, Что бы вставить %s"
697
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Crayon Syntax Highlighter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-08 16:29+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: minimus <minimus@blogcoding.ru>\n"
8
+ "Language-Team: minimus <minimus@simplelib.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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
13
+ "X-Poedit-Language: Russian\n"
14
+ "X-Poedit-Country: BELARUS\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;crayon__;crayon_n:1,2;crayon_e;crayon_x\n"
17
+ "X-Poedit-Basepath: .\n"
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPath-1: ..\n"
21
 
22
+ #: ../crayon_formatter.class.php:270
23
+ msgid "Toggle Plain Code"
24
+ msgstr "Включить/Отключить подсветку кода"
25
+
26
+ #: ../crayon_formatter.class.php:272
27
+ #, php-format
28
+ msgid "Press %s to Copy, %s to Paste"
29
+ msgstr "Нажмите %s для копирования, %s для вставки"
30
+
31
+ #: ../crayon_formatter.class.php:272
32
+ msgid "Copy Plain Code"
33
+ msgstr "Копировать как текст"
34
+
35
+ # @ crayon-syntax-highlighter
36
+ #: ../crayon_formatter.class.php:278
37
+ msgid "Open Code In New Window"
38
+ msgstr "Показать код в новом окне"
39
+
40
+ #: ../crayon_formatter.class.php:281
41
+ msgid "Toggle Line Numbers"
42
+ msgstr "Включить/Отключить нумерацию строк"
43
+
44
+ # @ crayon-syntax-highlighter
45
+ #: ../crayon_formatter.class.php:288
46
+ msgid "Contains Mixed Languages"
47
+ msgstr "Содержит коды на разных языках"
48
+
49
+ # @ crayon-syntax-highlighter
50
+ #: ../crayon_settings.class.php:106
51
  msgid "Hourly"
52
  msgstr "Каждый час"
53
 
54
+ # @ crayon-syntax-highlighter
55
+ #: ../crayon_settings.class.php:106
56
  msgid "Daily"
57
  msgstr "Ежедневно"
58
 
59
+ # @ crayon-syntax-highlighter
60
+ #: ../crayon_settings.class.php:107
61
  msgid "Weekly"
62
  msgstr "Еженедельно"
63
 
64
+ # @ crayon-syntax-highlighter
65
+ #: ../crayon_settings.class.php:107
66
  msgid "Monthly"
67
  msgstr "Ежемесячно"
68
 
69
+ # @ crayon-syntax-highlighter
70
+ #: ../crayon_settings.class.php:108
71
  msgid "Immediately"
72
  msgstr "Немедленно"
73
 
74
+ # @ crayon-syntax-highlighter
75
+ #: ../crayon_settings.class.php:135
76
+ #: ../crayon_settings.class.php:139
77
  msgid "Max"
78
  msgstr "Максимум"
79
 
80
+ # @ crayon-syntax-highlighter
81
+ #: ../crayon_settings.class.php:135
82
+ #: ../crayon_settings.class.php:139
83
  msgid "Min"
84
  msgstr "Минимум"
85
 
86
+ # @ crayon-syntax-highlighter
87
+ #: ../crayon_settings.class.php:135
88
+ #: ../crayon_settings.class.php:139
89
  msgid "Static"
90
  msgstr "Фиксировано"
91
 
92
+ # @ crayon-syntax-highlighter
93
+ #: ../crayon_settings.class.php:137
94
+ #: ../crayon_settings.class.php:141
95
+ #: ../crayon_settings_wp.class.php:461
96
+ #: ../crayon_settings_wp.class.php:470
97
+ #: ../crayon_settings_wp.class.php:581
98
  msgid "Pixels"
99
+ msgstr "Пиксел"
100
 
101
+ # @ crayon-syntax-highlighter
102
+ #: ../crayon_settings.class.php:137
103
+ #: ../crayon_settings.class.php:141
104
  msgid "Percent"
105
  msgstr "Процентов"
106
 
107
+ # @ crayon-syntax-highlighter
108
+ #: ../crayon_settings.class.php:150
109
  msgid "None"
110
  msgstr "Нет"
111
 
112
+ # @ crayon-syntax-highlighter
113
+ #: ../crayon_settings.class.php:150
114
  msgid "Left"
115
  msgstr "Влево"
116
 
117
+ # @ crayon-syntax-highlighter
118
+ #: ../crayon_settings.class.php:150
119
  msgid "Center"
120
  msgstr "По центру"
121
 
122
+ # @ crayon-syntax-highlighter
123
+ #: ../crayon_settings.class.php:150
124
  msgid "Right"
125
  msgstr "Вправо"
126
 
127
+ # @ crayon-syntax-highlighter
128
+ #: ../crayon_settings.class.php:152
129
+ #: ../crayon_settings.class.php:174
130
  msgid "On MouseOver"
131
  msgstr "При наведении мыши"
132
 
133
+ # @ crayon-syntax-highlighter
134
+ #: ../crayon_settings.class.php:152
135
+ #: ../crayon_settings.class.php:158
136
  msgid "Always"
137
  msgstr "Всегда"
138
 
139
+ # @ crayon-syntax-highlighter
140
+ #: ../crayon_settings.class.php:152
141
+ #: ../crayon_settings.class.php:158
142
  msgid "Never"
143
  msgstr "Никогда"
144
 
145
+ # @ crayon-syntax-highlighter
146
+ #: ../crayon_settings.class.php:158
147
  msgid "When Found"
148
  msgstr "Если определён"
149
 
150
+ # @ crayon-syntax-highlighter
151
+ #: ../crayon_settings.class.php:174
152
  msgid "On Double Click"
153
  msgstr "При двойном клике"
154
 
155
+ # @ crayon-syntax-highlighter
156
+ #: ../crayon_settings.class.php:174
157
  msgid "On Single Click"
158
  msgstr "При клике"
159
 
160
+ # @ crayon-syntax-highlighter
161
+ #: ../crayon_settings.class.php:174
162
  msgid "Disable Mouse Events"
163
  msgstr "Запретить отслеживание событий мыши"
164
 
165
+ # @ crayon-syntax-highlighter
166
+ #: ../crayon_settings.class.php:182
167
  msgid "An error has occurred. Please try again later."
168
  msgstr "Произошла ошибка. Попробуйте ещё раз позднее."
169
 
170
+ # @ crayon-syntax-highlighter
171
+ #: ../crayon_settings_wp.class.php:39
172
+ #: ../crayon_settings_wp.class.php:82
173
+ #: ../crayon_settings_wp.class.php:713
174
  msgid "Settings"
175
  msgstr "Параметры"
176
 
177
+ # @ crayon-syntax-highlighter
178
+ #: ../crayon_settings_wp.class.php:73
179
  msgid "You do not have sufficient permissions to access this page."
180
  msgstr "У вас недостаточно прав для доступа к этой странице."
181
 
182
+ # @ crayon-syntax-highlighter
183
+ #: ../crayon_settings_wp.class.php:94
184
  msgid "Save Changes"
185
  msgstr "Сохранить параметры"
186
 
187
+ # @ crayon-syntax-highlighter
188
+ #: ../crayon_settings_wp.class.php:100
189
  msgid "Reset Settings"
190
  msgstr "Параметры по умолчанию"
191
 
192
+ # @ crayon-syntax-highlighter
193
+ #: ../crayon_settings_wp.class.php:219
194
  msgid "General"
195
  msgstr "Основные"
196
 
197
+ #: ../crayon_settings_wp.class.php:220
 
198
  msgid "Theme"
199
  msgstr "Тема"
200
 
201
+ #: ../crayon_settings_wp.class.php:221
 
202
  msgid "Font"
203
  msgstr "Шрифт"
204
 
205
+ #: ../crayon_settings_wp.class.php:222
 
206
  msgid "Metrics"
207
  msgstr "Метрики"
208
 
209
+ #: ../crayon_settings_wp.class.php:223
 
210
  msgid "Toolbar"
211
  msgstr "Панель инструментов"
212
 
213
+ #: ../crayon_settings_wp.class.php:224
 
214
  msgid "Lines"
215
  msgstr "Строки"
216
 
217
+ #: ../crayon_settings_wp.class.php:225
 
218
  msgid "Code"
219
  msgstr "Код"
220
 
221
+ #: ../crayon_settings_wp.class.php:226
222
+ msgid "Tags"
223
+ msgstr "Теги"
224
+
225
+ # @ crayon-syntax-highlighter
226
+ #: ../crayon_settings_wp.class.php:227
227
  msgid "Languages"
228
  msgstr "Языки"
229
 
230
+ #: ../crayon_settings_wp.class.php:228
 
231
  msgid "Files"
232
  msgstr "Файлы"
233
 
234
+ #: ../crayon_settings_wp.class.php:229
 
235
  msgid "Misc"
236
  msgstr "Разное"
237
 
238
+ #: ../crayon_settings_wp.class.php:232
 
239
  msgid "Debug"
240
  msgstr "Отладка"
241
 
242
+ #: ../crayon_settings_wp.class.php:233
 
243
  msgid "Errors"
244
  msgstr "Ошибки"
245
 
246
+ #: ../crayon_settings_wp.class.php:234
 
247
  msgid "Log"
248
  msgstr "Журнал ошибок"
249
 
250
+ #: ../crayon_settings_wp.class.php:237
 
251
  msgid "About"
252
  msgstr "О плагине"
253
 
254
+ # @ crayon-syntax-highlighter
255
+ #: ../crayon_settings_wp.class.php:424
256
  msgid "Crayon Help"
257
  msgstr "Справка Crayon"
258
 
259
+ # @ crayon-syntax-highlighter
260
+ #: ../crayon_settings_wp.class.php:438
261
  msgid "Height"
262
  msgstr "Высота"
263
 
264
+ # @ crayon-syntax-highlighter
265
+ #: ../crayon_settings_wp.class.php:444
266
  msgid "Width"
267
  msgstr "Ширина"
268
 
269
+ # @ crayon-syntax-highlighter
270
+ #: ../crayon_settings_wp.class.php:450
271
  msgid "Top Margin"
272
  msgstr "Верхний отступ"
273
 
274
+ # @ crayon-syntax-highlighter
275
+ #: ../crayon_settings_wp.class.php:451
276
  msgid "Bottom Margin"
277
  msgstr "Нижний отступ"
278
 
279
+ # @ crayon-syntax-highlighter
280
+ #: ../crayon_settings_wp.class.php:452
281
+ #: ../crayon_settings_wp.class.php:457
282
  msgid "Left Margin"
283
  msgstr "Левый отступ"
284
 
285
+ # @ crayon-syntax-highlighter
286
+ #: ../crayon_settings_wp.class.php:453
287
+ #: ../crayon_settings_wp.class.php:457
288
  msgid "Right Margin"
289
  msgstr "Правый отступ"
290
 
291
+ # @ crayon-syntax-highlighter
292
+ #: ../crayon_settings_wp.class.php:463
293
  msgid "Horizontal Alignment"
294
  msgstr "Выравнивание по горизонтали"
295
 
296
+ # @ crayon-syntax-highlighter
297
+ #: ../crayon_settings_wp.class.php:466
298
  msgid "Allow floating elements to surround Crayon"
299
  msgstr "Разрешить плавающий режим"
300
 
301
+ # @ crayon-syntax-highlighter
302
+ #: ../crayon_settings_wp.class.php:468
303
+ msgid "Inline Margin"
304
+ msgstr "Внутренний отступ"
305
+
306
+ # @ crayon-syntax-highlighter
307
+ #: ../crayon_settings_wp.class.php:474
308
  msgid "Display the Toolbar"
309
  msgstr "Показывать панель инструментов"
310
 
311
+ # @ crayon-syntax-highlighter
312
+ #: ../crayon_settings_wp.class.php:477
313
  msgid "Overlay the toolbar on code rather than push it down when possible"
314
  msgstr "Использовать, если возможно, наложение панели инструментов на панель кодов без смещения кодов вниз"
315
 
316
+ # @ crayon-syntax-highlighter
317
+ #: ../crayon_settings_wp.class.php:478
318
  msgid "Toggle the toolbar on single click when it is overlayed"
319
  msgstr "Показывать панель инструментов по клику, если она скрыта"
320
 
321
+ # @ crayon-syntax-highlighter
322
+ #: ../crayon_settings_wp.class.php:479
323
  msgid "Delay hiding the toolbar on MouseOut"
324
  msgstr "Задержка исчезания панели инструментов при уходе курсора мыши за пределы панели"
325
 
326
+ # @ crayon-syntax-highlighter
327
+ #: ../crayon_settings_wp.class.php:481
328
  msgid "Display the title when provided"
329
  msgstr "Показывать заголовок, если он задан"
330
 
331
+ # @ crayon-syntax-highlighter
332
+ #: ../crayon_settings_wp.class.php:482
333
  msgid "Display the language"
334
  msgstr "Показывать язык кода"
335
 
336
+ # @ crayon-syntax-highlighter
337
+ #: ../crayon_settings_wp.class.php:487
338
  msgid "Display striped code lines"
339
  msgstr "Использовать чередование цвета строк кода"
340
 
341
+ # @ crayon-syntax-highlighter
342
+ #: ../crayon_settings_wp.class.php:488
343
  msgid "Enable line marking for important lines"
344
  msgstr "Разрешить маркировку важных строк кода"
345
 
346
+ # @ crayon-syntax-highlighter
347
+ #: ../crayon_settings_wp.class.php:489
348
  msgid "Display line numbers by default"
349
  msgstr "Показывать нумерацию строк по умолчанию"
350
 
351
+ # @ crayon-syntax-highlighter
352
+ #: ../crayon_settings_wp.class.php:490
353
  msgid "Enable line number toggling"
354
  msgstr "Разрешить переключение нумерации строк"
355
 
356
+ # @ crayon-syntax-highlighter
357
+ #: ../crayon_settings_wp.class.php:491
358
  msgid "Start line numbers from"
359
  msgstr "Начинать нумерацию строк с"
360
 
361
+ # @ crayon-syntax-highlighter
362
+ #: ../crayon_settings_wp.class.php:501
363
  msgid "When no language is provided, use the fallback"
364
  msgstr "Если язык не поддерживается, использовать"
365
 
366
+ # @ crayon-syntax-highlighter
367
+ #: ../crayon_settings_wp.class.php:508
368
  #, php-format
369
  msgid "%d language has been detected."
370
+ msgid_plural "%d languages have been detected."
371
  msgstr[0] "Обнаружен %d язык."
372
+ msgstr[1] "Обнаружено %d языка."
373
  msgstr[2] "Обнаружено %d языков."
374
 
375
+ # @ crayon-syntax-highlighter
376
+ #: ../crayon_settings_wp.class.php:509
377
  msgid "Parsing was successful"
378
  msgstr "Разбор произведён успешно"
379
 
380
+ # @ crayon-syntax-highlighter
381
+ #: ../crayon_settings_wp.class.php:509
382
  msgid "Parsing was unsuccessful"
383
  msgstr "Разбор закончился неудачей"
384
 
385
+ # @ crayon-syntax-highlighter
386
+ #: ../crayon_settings_wp.class.php:515
387
  #, php-format
388
  msgid "The selected language with id %s could not be loaded"
389
  msgstr "Выбранный язык (ID %s) не загружен."
390
 
391
+ # @ crayon-syntax-highlighter
392
+ #: ../crayon_settings_wp.class.php:519
393
  msgid "Show Languages"
394
  msgstr "Показать языки"
395
 
396
+ #: ../crayon_settings_wp.class.php:549
397
+ msgid "Loading..."
398
+ msgstr "Загрузка ..."
399
+
400
+ #: ../crayon_settings_wp.class.php:549
401
+ #: ../crayon_settings_wp.class.php:715
402
+ msgid "Theme Editor"
403
+ msgstr "Редактор тем оформления"
404
+
405
+ # @ crayon-syntax-highlighter
406
+ #: ../crayon_settings_wp.class.php:553
407
+ #, php-format
408
+ msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
409
+ msgstr "Измените %1$sязык подсветки%2$s, чтобы изменить пример кода. Строки 5-7 отмечены."
410
+
411
+ # @ crayon-syntax-highlighter
412
+ #: ../crayon_settings_wp.class.php:556
413
  msgid "Enable Live Preview"
414
  msgstr "Разрешить показ примера"
415
 
416
+ #: ../crayon_settings_wp.class.php:558
 
417
  msgid "Enqueue themes in the header (more efficient)."
418
  msgstr "Загружать темы в заголовке страницы (более эффективно)."
419
 
420
+ # @ crayon-syntax-highlighter
421
+ #: ../crayon_settings_wp.class.php:558
422
+ #: ../crayon_settings_wp.class.php:587
423
+ #: ../crayon_settings_wp.class.php:603
424
+ #: ../crayon_settings_wp.class.php:608
425
+ #: ../crayon_settings_wp.class.php:609
426
+ #: ../crayon_settings_wp.class.php:610
427
+ #: ../crayon_settings_wp.class.php:611
428
+ #: ../crayon_settings_wp.class.php:612
429
+ #: ../crayon_settings_wp.class.php:613
430
+ #: ../crayon_settings_wp.class.php:628
431
+ #: ../crayon_settings_wp.class.php:629
432
  msgid "Learn More"
433
  msgstr "Подробнее"
434
 
435
+ # @ crayon-syntax-highlighter
436
+ #: ../crayon_settings_wp.class.php:561
437
  #, php-format
438
  msgid "The selected theme with id %s could not be loaded"
439
  msgstr "Выбранная тема (ID %s) не загружена."
440
 
441
+ # @ crayon-syntax-highlighter
442
+ #: ../crayon_settings_wp.class.php:579
443
  msgid "Custom Font Size"
444
  msgstr "Пользовательский размер шрифта"
445
 
446
+ # @ crayon-syntax-highlighter
447
+ #: ../crayon_settings_wp.class.php:584
448
  #, php-format
449
  msgid "The selected font with id %s could not be loaded"
450
  msgstr "Выбранный шрифт (ID %s) не может быть загружен."
451
 
452
+ #: ../crayon_settings_wp.class.php:587
 
453
  msgid "Enqueue fonts in the header (more efficient)."
454
  msgstr "Загружать шрифты в заголовке страницы (более эффективно)."
455
 
456
+ # @ crayon-syntax-highlighter
457
+ #: ../crayon_settings_wp.class.php:591
458
  msgid "Enable plain code view and display"
459
  msgstr "Разрешить показ кода как обычного текста"
460
 
461
+ # @ crayon-syntax-highlighter
462
+ #: ../crayon_settings_wp.class.php:594
463
  msgid "Enable plain code toggling"
464
  msgstr "Разрешить переключение показа кода как простого текста"
465
 
466
+ #: ../crayon_settings_wp.class.php:595
 
467
  msgid "Show the plain code by default"
468
  msgstr "Показывать код как простой текст по умолчанию"
469
 
470
+ # @ crayon-syntax-highlighter
471
+ #: ../crayon_settings_wp.class.php:596
472
  msgid "Enable code copy/paste"
473
  msgstr "Разрешить копирование/вставку кода"
474
 
475
+ # @ crayon-syntax-highlighter
476
+ #: ../crayon_settings_wp.class.php:598
477
  msgid "Enable opening code in a window"
478
  msgstr "Разрешить показ кода в отдельном окне"
479
 
480
+ #: ../crayon_settings_wp.class.php:599
481
+ msgid "Always display scrollbars"
482
+ msgstr "Всегда показывать полосы прокрутки"
483
+
484
+ # @ crayon-syntax-highlighter
485
+ #: ../crayon_settings_wp.class.php:600
486
  msgid "Tab size in spaces"
487
  msgstr "Размер табуляций в пробелах"
488
 
489
+ # @ crayon-syntax-highlighter
490
+ #: ../crayon_settings_wp.class.php:602
491
  msgid "Remove whitespace surrounding the shortcode content"
492
  msgstr "Удалять пробелы окружающие контент короткого кода"
493
 
494
+ # @ crayon-syntax-highlighter
495
+ #: ../crayon_settings_wp.class.php:603
496
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
497
+ msgstr "Разрешить подсветку смешанных языков."
498
+
499
+ # @ crayon-syntax-highlighter
500
+ #: ../crayon_settings_wp.class.php:604
501
+ msgid "Show Mixed Language Icon (+)"
502
+ msgstr "Показывать иконку смешанных языков (+)"
503
 
504
+ #: ../crayon_settings_wp.class.php:608
 
505
  msgid "Capture Mini Tags like [php][/php] as Crayons."
506
  msgstr "Обрабатывать мини-теги, например [php][/php], как теги Crayon."
507
 
508
+ #: ../crayon_settings_wp.class.php:609
509
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
510
+ msgstr "Обрабатывать строковые теги, такие как {php}{/php}, внутри предложения."
 
511
 
512
+ #: ../crayon_settings_wp.class.php:610
513
+ msgid "Wrap Inline Tags"
514
+ msgstr "Обрабатывать внутристроковые теги"
 
515
 
516
+ #: ../crayon_settings_wp.class.php:611
517
+ msgid "Capture `backquotes` as &lt;code&gt;"
518
+ msgstr "Обрабатывать символы `тильда` как &lt;code&gt;"
519
+
520
+ # @ crayon-syntax-highlighter
521
+ #: ../crayon_settings_wp.class.php:612
522
+ msgid "Capture &lt;pre&gt; tags as Crayons"
523
+ msgstr "Обрабатывать тег &lt;pre&gt; как код Crayon"
524
+
525
+ #: ../crayon_settings_wp.class.php:613
526
+ msgid "Enable [plain][/plain] tag."
527
+ msgstr "Разрешить теги [plain][/plain]."
528
 
529
+ # @ crayon-syntax-highlighter
530
+ #: ../crayon_settings_wp.class.php:618
531
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
532
  msgstr "При загрузке локальных файлов, относительный путь к файлу вычислять относительно этого URL"
533
 
534
+ # @ crayon-syntax-highlighter
535
+ #: ../crayon_settings_wp.class.php:621
536
  msgid "Followed by your relative URL."
537
  msgstr "Путь будет определён относительно заданного URL."
538
 
539
+ # @ crayon-syntax-highlighter
540
+ #: ../crayon_settings_wp.class.php:625
541
  msgid "Clear the cache used to store remote code requests"
542
  msgstr "Очищать кэш используемый для хранения кодов из внешних файлов"
543
 
544
+ # @ crayon-syntax-highlighter
545
+ #: ../crayon_settings_wp.class.php:627
546
  msgid "Clear Now"
547
  msgstr "Очистить сейчас"
548
 
549
+ # @ crayon-syntax-highlighter
550
+ #: ../crayon_settings_wp.class.php:628
551
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
552
  msgstr "Пытаться загружать таблицы стилей (CSS) и скрипты (Javascript) плагина только тогда, когда это нужно"
553
 
554
+ #: ../crayon_settings_wp.class.php:629
555
+ msgid "Disable enqueuing for page templates that may contain The Loop."
556
+ msgstr "Отключить обработку кодов для шаблонов страниц, которые могут содержать Loop."
557
+
558
+ #: ../crayon_settings_wp.class.php:630
559
+ msgid "Allow Crayons inside comments"
560
+ msgstr "Разрешить теги Crayon в комментариях"
561
+
562
+ #: ../crayon_settings_wp.class.php:631
563
+ msgid "Load Crayons only from the main Wordpress query"
564
+ msgstr "Загружать Crayon только в основных запросах Wordpress"
565
+
566
+ # @ crayon-syntax-highlighter
567
+ #: ../crayon_settings_wp.class.php:632
568
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
569
  msgstr "Отключить распознавание жестов мышью для сенсорных экранов (например Наведение Мыши)"
570
 
571
+ # @ crayon-syntax-highlighter
572
+ #: ../crayon_settings_wp.class.php:633
573
  msgid "Disable animations"
574
  msgstr "Запретить анимацию"
575
 
576
+ # @ crayon-syntax-highlighter
577
+ #: ../crayon_settings_wp.class.php:634
578
  msgid "Disable runtime stats"
579
  msgstr "Запретить статистику выполнения"
580
 
581
+ # @ crayon-syntax-highlighter
582
+ #: ../crayon_settings_wp.class.php:641
583
  msgid "Log errors for individual Crayons"
584
  msgstr "Журнал ошибок для каждого кода Crayon"
585
 
586
+ # @ crayon-syntax-highlighter
587
+ #: ../crayon_settings_wp.class.php:642
588
  msgid "Log system-wide errors"
589
  msgstr "Журнал ошибок для системно-независимых ошибок"
590
 
591
+ # @ crayon-syntax-highlighter
592
+ #: ../crayon_settings_wp.class.php:643
593
  msgid "Display custom message for errors"
594
  msgstr "Показывать свое сообщение об ошибках"
595
 
596
+ # @ crayon-syntax-highlighter
597
+ #: ../crayon_settings_wp.class.php:655
598
  msgid "Show Log"
599
  msgstr "Показать журнал ошибок"
600
 
601
+ #: ../crayon_settings_wp.class.php:655
602
+ msgid "Hide Log"
603
+ msgstr "Скрыть журнал"
604
+
605
+ # @ crayon-syntax-highlighter
606
+ #: ../crayon_settings_wp.class.php:657
607
  msgid "Clear Log"
608
  msgstr "Очистить журнал ошибок"
609
 
610
+ # @ crayon-syntax-highlighter
611
+ #: ../crayon_settings_wp.class.php:658
612
  msgid "Email Admin"
613
  msgstr "Сообщить администратору (e-mail)"
614
 
615
+ # @ crayon-syntax-highlighter
616
+ #: ../crayon_settings_wp.class.php:660
617
  msgid "Email Developer"
618
  msgstr "Сообщить разработчику (e-mail)"
619
 
620
+ # @ crayon-syntax-highlighter
621
+ #: ../crayon_settings_wp.class.php:662
622
  msgid "The log is currently empty."
623
  msgstr "Журнал ошибок пуст."
624
 
625
+ # @ crayon-syntax-highlighter
626
+ #: ../crayon_settings_wp.class.php:664
627
  msgid "The log file exists and is writable."
628
  msgstr "Файл журнала ошибок существует и в него могут заноситься записи."
629
 
630
+ # @ crayon-syntax-highlighter
631
+ #: ../crayon_settings_wp.class.php:664
632
  msgid "The log file exists and is not writable."
633
  msgstr "Файл журнала ошибок существует, но в него не могут заноситься записи."
634
 
635
+ # @ crayon-syntax-highlighter
636
+ #: ../crayon_settings_wp.class.php:666
637
  msgid "The log file does not exist and is not writable."
638
  msgstr "Файл журнала ошибок не существует и в него не могут заноситься записи."
639
 
640
+ # @ crayon-syntax-highlighter
641
+ #: ../crayon_settings_wp.class.php:676
642
  msgid "Version"
643
  msgstr "Версия"
644
 
645
+ # @ crayon-syntax-highlighter
646
+ #: ../crayon_settings_wp.class.php:678
647
  msgid "Developer"
648
  msgstr "Разработчик"
649
 
650
+ #: ../crayon_settings_wp.class.php:679
651
+ msgid "Translators"
652
+ msgstr "Переводчики"
653
+
654
+ # @ crayon-syntax-highlighter
655
+ #: ../crayon_settings_wp.class.php:701
656
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
657
  msgstr "Результат бесчисленных часов тяжелой работы за многие месяцы. Это - текущий проект, поддержите мою мотивацию!"
658
 
659
+ # @ crayon-syntax-highlighter
660
+ #: ../crayon_settings_wp.class.php:717
661
  msgid "Donate"
662
+ msgstr "Пожертвовать"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
663
 
664
+ # @ crayon-syntax-highlighter
665
+ #: ../util/theme-editor/editor.php:16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
  msgid "Back To Settings"
667
+ msgstr "Назад к параметрам"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
668
 
trans/crayon-syntax-highlighter-tr_TR.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-tr_TR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: crayon-syntax-highlighter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-12-10 17:11+1000\n"
6
- "PO-Revision-Date: 2012-02-03 05:58+0200\n"
7
  "Last-Translator: kazancexpert <kazancexpert@gmail.com>\n"
8
  "Language-Team: kazancexpert <kazancexpert@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -19,97 +19,100 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
  #@ crayon-syntax-highlighter
22
- #: crayon_settings.class.php:130
23
- #: crayon_settings.class.php:134
24
  msgid "Max"
25
  msgstr "Max"
26
 
27
  #@ crayon-syntax-highlighter
28
- #: crayon_settings.class.php:130
29
- #: crayon_settings.class.php:134
30
  msgid "Min"
31
  msgstr "Min"
32
 
33
  #@ crayon-syntax-highlighter
34
- #: crayon_settings.class.php:130
35
- #: crayon_settings.class.php:134
36
  msgid "Static"
37
  msgstr "Sabit"
38
 
39
  #@ crayon-syntax-highlighter
40
- #: crayon_settings.class.php:132
41
- #: crayon_settings.class.php:136
 
 
 
42
  msgid "Pixels"
43
  msgstr "Piksel"
44
 
45
  #@ crayon-syntax-highlighter
46
- #: crayon_settings.class.php:132
47
- #: crayon_settings.class.php:136
48
  msgid "Percent"
49
  msgstr "Yüzde"
50
 
51
  #@ crayon-syntax-highlighter
52
- #: crayon_settings.class.php:145
53
  msgid "None"
54
  msgstr "Yok"
55
 
56
  #@ crayon-syntax-highlighter
57
- #: crayon_settings.class.php:145
58
  msgid "Left"
59
  msgstr "Sol"
60
 
61
  #@ crayon-syntax-highlighter
62
- #: crayon_settings.class.php:145
63
  msgid "Center"
64
  msgstr "Merkez"
65
 
66
  #@ crayon-syntax-highlighter
67
- #: crayon_settings.class.php:145
68
  msgid "Right"
69
  msgstr "Sağ"
70
 
71
  #@ crayon-syntax-highlighter
72
- #: crayon_settings.class.php:147
73
- #: crayon_settings.class.php:169
74
  msgid "On MouseOver"
75
  msgstr "Fare Üstündeyken"
76
 
77
  #@ crayon-syntax-highlighter
78
- #: crayon_settings.class.php:147
79
- #: crayon_settings.class.php:153
80
  msgid "Always"
81
  msgstr "Herzaman"
82
 
83
  #@ crayon-syntax-highlighter
84
- #: crayon_settings.class.php:147
85
- #: crayon_settings.class.php:153
86
  msgid "Never"
87
  msgstr "Asla"
88
 
89
  #@ crayon-syntax-highlighter
90
- #: crayon_settings.class.php:153
91
  msgid "When Found"
92
  msgstr "Bulunduğunda"
93
 
94
  #@ crayon-syntax-highlighter
95
- #: crayon_settings.class.php:169
96
  msgid "On Double Click"
97
  msgstr "Çift Tık ile aç"
98
 
99
  #@ crayon-syntax-highlighter
100
- #: crayon_settings.class.php:169
101
  msgid "On Single Click"
102
  msgstr "Tek Tık ile aç"
103
 
104
  #@ crayon-syntax-highlighter
105
- #: crayon_settings.class.php:177
106
  msgid "An error has occurred. Please try again later."
107
  msgstr "Bir hata meydana geldi. Daha sonra tekrar deneyin."
108
 
109
  #@ crayon-syntax-highlighter
110
  #: crayon_settings_wp.class.php:39
111
  #: crayon_settings_wp.class.php:82
112
- #: crayon_settings_wp.class.php:710
113
  msgid "Settings"
114
  msgstr "Ayarlar"
115
 
@@ -129,323 +132,323 @@ msgid "Reset Settings"
129
  msgstr "Ayarları Sıfırla"
130
 
131
  #@ crayon-syntax-highlighter
132
- #: crayon_settings_wp.class.php:437
133
  msgid "Height"
134
  msgstr "Yükseklik"
135
 
136
  #@ crayon-syntax-highlighter
137
- #: crayon_settings_wp.class.php:443
138
  msgid "Width"
139
  msgstr "Genişlik"
140
 
141
  #@ crayon-syntax-highlighter
142
- #: crayon_settings_wp.class.php:449
143
  msgid "Top Margin"
144
  msgstr "Üst Boşluk"
145
 
146
  #@ crayon-syntax-highlighter
147
- #: crayon_settings_wp.class.php:450
148
  msgid "Bottom Margin"
149
  msgstr "Alt Boşluk"
150
 
151
  #@ crayon-syntax-highlighter
152
- #: crayon_settings_wp.class.php:451
153
- #: crayon_settings_wp.class.php:456
154
  msgid "Left Margin"
155
  msgstr "Sol Boşluk"
156
 
157
  #@ crayon-syntax-highlighter
158
- #: crayon_settings_wp.class.php:452
159
- #: crayon_settings_wp.class.php:456
160
  msgid "Right Margin"
161
  msgstr "Sağ Boşluk"
162
 
163
  #@ crayon-syntax-highlighter
164
- #: crayon_settings_wp.class.php:462
165
  msgid "Horizontal Alignment"
166
  msgstr "Yatay Hizalama"
167
 
168
  #@ crayon-syntax-highlighter
169
- #: crayon_settings_wp.class.php:465
170
  msgid "Allow floating elements to surround Crayon"
171
  msgstr "Geçişli elementleri Crayon çevrelemeye izin ver"
172
 
173
  #@ crayon-syntax-highlighter
174
- #: crayon_settings_wp.class.php:470
175
  msgid "Display the Toolbar"
176
  msgstr "Araç çubuğunu göster"
177
 
178
  #@ crayon-syntax-highlighter
179
- #: crayon_settings_wp.class.php:473
180
  msgid "Overlay the toolbar on code rather than push it down when possible"
181
  msgstr "Araç çubuğunu mümkünse kodları aşağı itmek yerine üstte göster"
182
 
183
  #@ crayon-syntax-highlighter
184
- #: crayon_settings_wp.class.php:474
185
  msgid "Toggle the toolbar on single click when it is overlayed"
186
  msgstr "Araç çubuğu üste çıktığında tek tıkla gizle"
187
 
188
  #@ crayon-syntax-highlighter
189
- #: crayon_settings_wp.class.php:475
190
  msgid "Delay hiding the toolbar on MouseOut"
191
  msgstr "Fare dışa çıktığında araç çubuğunu gizlemek için bekle"
192
 
193
  #@ crayon-syntax-highlighter
194
- #: crayon_settings_wp.class.php:477
195
  msgid "Display the title when provided"
196
  msgstr "Varsa başlığı görüntüle"
197
 
198
  #@ crayon-syntax-highlighter
199
- #: crayon_settings_wp.class.php:478
200
  msgid "Display the language"
201
  msgstr "Dilleri göster"
202
 
203
  #@ crayon-syntax-highlighter
204
- #: crayon_settings_wp.class.php:483
205
  msgid "Display striped code lines"
206
  msgstr "Şeritli kod satırını göster"
207
 
208
  #@ crayon-syntax-highlighter
209
- #: crayon_settings_wp.class.php:484
210
  msgid "Enable line marking for important lines"
211
  msgstr "Önemli satırlar için satır işaretleme etkin"
212
 
213
  #@ crayon-syntax-highlighter
214
- #: crayon_settings_wp.class.php:485
215
  msgid "Display line numbers by default"
216
  msgstr "Varsayılan olarak satır numaralarını göster"
217
 
218
  #@ crayon-syntax-highlighter
219
- #: crayon_settings_wp.class.php:486
220
  msgid "Enable line number toggling"
221
  msgstr "Satır numaraları geçişi etkin"
222
 
223
  #@ crayon-syntax-highlighter
224
- #: crayon_settings_wp.class.php:487
225
  msgid "Start line numbers from"
226
  msgstr "Satır numarasını buradan başlat"
227
 
228
  #@ crayon-syntax-highlighter
229
- #: crayon_settings_wp.class.php:497
230
  msgid "When no language is provided, use the fallback"
231
  msgstr "Belirlenmiş bir dil olmadığında son çareyi kullan"
232
 
233
  #@ crayon-syntax-highlighter
234
- #: crayon_settings_wp.class.php:505
235
  msgid "Parsing was successful"
236
  msgstr "Ayrıştırma başarılı"
237
 
238
  #@ crayon-syntax-highlighter
239
- #: crayon_settings_wp.class.php:505
240
  msgid "Parsing was unsuccessful"
241
  msgstr "Ayrıştırma başarılı değil"
242
 
243
  #@ crayon-syntax-highlighter
244
- #: crayon_settings_wp.class.php:511
245
  #, php-format
246
  msgid "The selected language with id %s could not be loaded"
247
  msgstr "ID %s ile seçilen dil yüklenemedi"
248
 
249
  #@ crayon-syntax-highlighter
250
- #: crayon_settings_wp.class.php:515
251
  msgid "Show Languages"
252
  msgstr "Dilleri Göster"
253
 
254
  #@ crayon-syntax-highlighter
255
- #: crayon_settings_wp.class.php:552
256
  msgid "Enable Live Preview"
257
  msgstr "Ön izleme etkin"
258
 
259
  #@ crayon-syntax-highlighter
260
- #: crayon_settings_wp.class.php:557
261
  #, php-format
262
  msgid "The selected theme with id %s could not be loaded"
263
  msgstr "ID %s ile seçilen tema yüklenemedi"
264
 
265
  #@ crayon-syntax-highlighter
266
- #: crayon_settings_wp.class.php:575
267
  msgid "Custom Font Size"
268
  msgstr "Kişisel Font Boyutu"
269
 
270
  #@ crayon-syntax-highlighter
271
- #: crayon_settings_wp.class.php:580
272
  #, php-format
273
  msgid "The selected font with id %s could not be loaded"
274
  msgstr "ID %s ile seçilen font yüklenemedi"
275
 
276
  #@ crayon-syntax-highlighter
277
- #: crayon_settings_wp.class.php:587
278
  msgid "Enable plain code view and display"
279
  msgstr "Düz kod görünümü ve görüntüleme etkin"
280
 
281
  #@ crayon-syntax-highlighter
282
- #: crayon_settings_wp.class.php:592
283
  msgid "Enable code copy/paste"
284
  msgstr "Kod kopyala/yapıştır etkin"
285
 
286
  #@ crayon-syntax-highlighter
287
- #: crayon_settings_wp.class.php:594
288
  msgid "Enable opening code in a window"
289
  msgstr "Kodları bir pencerede açma etkin"
290
 
291
  #@ crayon-syntax-highlighter
292
- #: crayon_settings_wp.class.php:596
293
  msgid "Tab size in spaces"
294
  msgstr "Boşluk sekme boyutu"
295
 
296
  #@ crayon-syntax-highlighter
297
- #: crayon_settings_wp.class.php:598
298
  msgid "Remove whitespace surrounding the shortcode content"
299
  msgstr "Kısakod içeriğini çevreleyen beyaz alanları kaldır"
300
 
301
  #@ crayon-syntax-highlighter
302
- #: crayon_settings_wp.class.php:608
303
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
304
  msgstr "Yerel dosyalar yüklendiği ve URL için bağlantılı yol verildiğinde, kesin yolu kullan"
305
 
306
  #@ crayon-syntax-highlighter
307
- #: crayon_settings_wp.class.php:615
308
  msgid "Clear the cache used to store remote code requests"
309
  msgstr "Uzak kod isteklerini depolamak için ön belleği temizle"
310
 
311
  #@ crayon-syntax-highlighter
312
- #: crayon_settings_wp.class.php:617
313
  msgid "Clear Now"
314
  msgstr "Şimdi Temizle"
315
 
316
  #@ crayon-syntax-highlighter
317
- #: crayon_settings_wp.class.php:621
318
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
319
  msgstr "Dokunmatik cihazlar için fare hareketlerini devre dışı bırak (örn. Fare Üzerinde)"
320
 
321
  #@ crayon-syntax-highlighter
322
- #: crayon_settings_wp.class.php:622
323
  msgid "Disable animations"
324
  msgstr "Animasyonlar devre dışı"
325
 
326
  #@ crayon-syntax-highlighter
327
- #: crayon_settings_wp.class.php:623
328
  msgid "Disable runtime stats"
329
  msgstr "İşlem istatistikleri devre dışı"
330
 
331
  #@ crayon-syntax-highlighter
332
- #: crayon_settings_wp.class.php:630
333
  msgid "Log errors for individual Crayons"
334
  msgstr "Özgün Crayons hataları günlükle"
335
 
336
  #@ crayon-syntax-highlighter
337
- #: crayon_settings_wp.class.php:631
338
  msgid "Log system-wide errors"
339
  msgstr "Sistem-geneli hataları günlükle"
340
 
341
  #@ crayon-syntax-highlighter
342
- #: crayon_settings_wp.class.php:632
343
  msgid "Display custom message for errors"
344
  msgstr "Hatalar için kişisel mesaj göster"
345
 
346
  #@ crayon-syntax-highlighter
347
- #: crayon_settings_wp.class.php:644
348
  msgid "Show Log"
349
  msgstr "Günlüğü Göster"
350
 
351
  #@ crayon-syntax-highlighter
352
- #: crayon_settings_wp.class.php:646
353
  msgid "Clear Log"
354
  msgstr "Günlüğü Temizle"
355
 
356
  #@ crayon-syntax-highlighter
357
- #: crayon_settings_wp.class.php:647
358
  msgid "Email Admin"
359
  msgstr "Yönetici E-Posta"
360
 
361
  #@ crayon-syntax-highlighter
362
- #: crayon_settings_wp.class.php:649
363
  msgid "Email Developer"
364
  msgstr "Geliştirici E-Posta"
365
 
366
  #@ crayon-syntax-highlighter
367
- #: crayon_settings_wp.class.php:665
368
  msgid "Version"
369
  msgstr "Sürüm"
370
 
371
  #@ crayon-syntax-highlighter
372
- #: crayon_settings_wp.class.php:667
373
  msgid "Developer"
374
  msgstr "Geliştirici"
375
 
376
  #@ crayon-syntax-highlighter
377
- #: crayon_settings_wp.class.php:698
378
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
379
  msgstr "Aylar boyu sıkı çalışma ve sayısız saatlerin sonucudur. Bu devam eden bir projedir, motivasyonumu arttırın!"
380
 
381
  #@ crayon-syntax-highlighter
382
- #: crayon_settings_wp.class.php:549
383
  #, php-format
384
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
385
  msgstr "Örnek kodu değiştirmek için %1$sSon çare dili%2$s değiştirin. 5-7 satırlar işaretli."
386
 
387
  #@ crayon-syntax-highlighter
388
- #: crayon_settings.class.php:101
389
  msgid "Hourly"
390
  msgstr "Saatlik"
391
 
392
  #@ crayon-syntax-highlighter
393
- #: crayon_settings.class.php:101
394
  msgid "Daily"
395
  msgstr "Günlük"
396
 
397
  #@ crayon-syntax-highlighter
398
- #: crayon_settings.class.php:102
399
  msgid "Weekly"
400
  msgstr "Haftalık"
401
 
402
  #@ crayon-syntax-highlighter
403
- #: crayon_settings.class.php:102
404
  msgid "Monthly"
405
  msgstr "Aylık"
406
 
407
  #@ crayon-syntax-highlighter
408
- #: crayon_settings.class.php:103
409
  msgid "Immediately"
410
  msgstr "Hemen"
411
 
412
  #@ crayon-syntax-highlighter
413
- #: crayon_settings_wp.class.php:423
414
  msgid "Crayon Help"
415
  msgstr "Crayon Yardım"
416
 
417
  #@ crayon-syntax-highlighter
418
- #: crayon_settings_wp.class.php:618
419
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
420
  msgstr "Sadece ihtiyaç olduğunda Crayon CSS ve JavaScript yüklemeyi dene"
421
 
422
  #@ crayon-syntax-highlighter
423
- #: crayon_settings_wp.class.php:611
424
  msgid "Followed by your relative URL."
425
  msgstr "Bağlantılı URL tarafından izlendi."
426
 
427
  #@ crayon-syntax-highlighter
428
- #: crayon_settings_wp.class.php:651
429
  msgid "The log is currently empty."
430
  msgstr "Günlük şu anda boş."
431
 
432
  #@ crayon-syntax-highlighter
433
- #: crayon_settings_wp.class.php:653
434
  msgid "The log file exists and is writable."
435
  msgstr "Günlük dosyası var ve yazılabilir."
436
 
437
  #@ crayon-syntax-highlighter
438
- #: crayon_settings_wp.class.php:653
439
  msgid "The log file exists and is not writable."
440
  msgstr "Günlük dosyası var ve yazılabilir değil."
441
 
442
  #@ crayon-syntax-highlighter
443
- #: crayon_settings_wp.class.php:655
444
  msgid "The log file does not exist and is not writable."
445
  msgstr "Günlük dosyası yok ve yazılabilir değil."
446
 
447
  #@ crayon-syntax-highlighter
448
- #: crayon_settings_wp.class.php:504
449
  #, php-format
450
  msgid "%d language has been detected."
451
  msgid_plural "%d languages have been detected."
@@ -453,53 +456,57 @@ msgstr[0] "%d dil tespit edildi."
453
  msgstr[1] "%d dil tespit edildi."
454
 
455
  #@ crayon-syntax-highlighter
456
- #: crayon_settings_wp.class.php:599
457
  msgid "Capture &lt;pre&gt; tags as Crayons"
458
  msgstr "&lt;pre&gt; etiketleri Crayons olarak yakala"
459
 
460
  #@ crayon-syntax-highlighter
461
- #: crayon_settings_wp.class.php:554
462
- #: crayon_settings_wp.class.php:583
463
- #: crayon_settings_wp.class.php:600
464
- #: crayon_settings_wp.class.php:601
465
- #: crayon_settings_wp.class.php:602
466
- #: crayon_settings_wp.class.php:618
467
- #: crayon_settings_wp.class.php:619
 
 
 
 
468
  msgid "Learn More"
469
  msgstr "Daha Fazla"
470
 
471
  #@ crayon-syntax-highlighter
472
- #: crayon_settings_wp.class.php:603
473
  msgid "Show Mixed Language Icon (+)"
474
  msgstr "Karışık Dil Simgesini Göster (+)"
475
 
476
  #@ crayon-syntax-highlighter
477
- #: crayon_settings_wp.class.php:602
478
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
479
  msgstr "Sınırlayıcılar ve etiketler ile Karışık Dil Vurgulamaya izin ver."
480
 
481
  #@ crayon-syntax-highlighter
482
- #: crayon_settings_wp.class.php:600
483
  msgid "Capture Mini Tags like [php][/php] as Crayons."
484
  msgstr "Crayons olarak [php][/php] gibi küçük etiketleri yakala."
485
 
486
  #@ crayon-syntax-highlighter
487
- #: crayon_settings_wp.class.php:601
488
  msgid "Enable [plain][/plain] tag."
489
  msgstr "[plain][/plain] etiketi etkin."
490
 
491
  #@ crayon-syntax-highlighter
492
- #: crayon_settings.class.php:169
493
  msgid "Disable Mouse Events"
494
  msgstr "Fare Etkinliği Devre Dışı"
495
 
496
  #@ crayon-syntax-highlighter
497
- #: crayon_settings_wp.class.php:590
498
  msgid "Enable plain code toggling"
499
  msgstr "Düz kod geçişi etkin"
500
 
501
  #@ crayon-syntax-highlighter
502
- #: crayon_settings_wp.class.php:591
503
  msgid "Show the plain code by default"
504
  msgstr "Düz kodu varsayılan olarak göster"
505
 
@@ -534,7 +541,7 @@ msgid "Supports multiple languages, themes, highlighting from a URL, local file
534
  msgstr "Çoklu dil, temalar, bir URL den vurgulama, yerel dosya veya yazı metnini destekler."
535
 
536
  #@ crayon-syntax-highlighter
537
- #: crayon_settings_wp.class.php:714
538
  msgid "Donate"
539
  msgstr "Bağış"
540
 
@@ -574,74 +581,74 @@ msgid "Code"
574
  msgstr "Kod"
575
 
576
  #@ crayon-syntax-highlighter
577
- #: crayon_settings_wp.class.php:226
578
  msgid "Languages"
579
  msgstr "Diller"
580
 
581
  #@ crayon-syntax-highlighter
582
- #: crayon_settings_wp.class.php:227
583
  msgid "Files"
584
  msgstr "Dosyalar"
585
 
586
  #@ crayon-syntax-highlighter
587
- #: crayon_settings_wp.class.php:228
588
  msgid "Misc"
589
  msgstr "Çeşitli"
590
 
591
  #@ crayon-syntax-highlighter
592
- #: crayon_settings_wp.class.php:231
593
  msgid "Debug"
594
  msgstr "Hata Ayıklama"
595
 
596
  #@ crayon-syntax-highlighter
597
- #: crayon_settings_wp.class.php:232
598
  msgid "Errors"
599
  msgstr "Hatalar"
600
 
601
  #@ crayon-syntax-highlighter
602
- #: crayon_settings_wp.class.php:233
603
  msgid "Log"
604
  msgstr "Günlük"
605
 
606
  #@ crayon-syntax-highlighter
607
- #: crayon_settings_wp.class.php:236
608
  msgid "About"
609
  msgstr "Hakkında"
610
 
611
  #@ crayon-syntax-highlighter
612
- #: crayon_settings_wp.class.php:554
613
  msgid "Enqueue themes in the header (more efficient)."
614
  msgstr "Temaları header içinde kuyrukla (daha etkin)."
615
 
616
  #@ crayon-syntax-highlighter
617
- #: crayon_settings_wp.class.php:583
618
  msgid "Enqueue fonts in the header (more efficient)."
619
  msgstr "Fontları header içinde kuyrukla (daha etkin)."
620
 
621
  #@ crayon-syntax-highlighter
622
- #: crayon_settings_wp.class.php:545
623
  msgid "Loading..."
624
  msgstr "Yükleniyor..."
625
 
626
  #@ crayon-syntax-highlighter
627
- #: crayon_settings_wp.class.php:545
628
- #: crayon_settings_wp.class.php:712
629
  #: util/theme-editor/editor.php:14
630
  msgid "Theme Editor"
631
  msgstr "Tema Düzenleyici"
632
 
633
  #@ crayon-syntax-highlighter
634
- #: crayon_settings_wp.class.php:595
635
  msgid "Always display scrollbars"
636
  msgstr "Kenar çubuğu her zaman göster"
637
 
638
  #@ crayon-syntax-highlighter
639
- #: crayon_settings_wp.class.php:619
640
  msgid "Disable enqueuing for page templates that may contain The Loop."
641
  msgstr "Döngü içeren sayfa şablonları için kuyruklama devre dışı."
642
 
643
  #@ crayon-syntax-highlighter
644
- #: crayon_settings_wp.class.php:620
645
  msgid "Load Crayons only from the main Wordpress query"
646
  msgstr "Sadece ana Wordpress sorgusundan Crayons yükle"
647
 
@@ -651,49 +658,79 @@ msgid "Back To Settings"
651
  msgstr "Ayarlara Geri Dön"
652
 
653
  #@ crayon-syntax-highlighter
654
- #: crayon_settings_wp.class.php:668
655
  msgid "Translators"
656
  msgstr "Çevirmenler"
657
 
658
  #@ crayon-syntax-highlighter
659
- #: crayon_formatter.class.php:203
660
  msgid "Toggle Plain Code"
661
  msgstr "Düz Koda Geç"
662
 
663
  #@ crayon-syntax-highlighter
664
- #: crayon_formatter.class.php:205
665
  msgid "Copy Plain Code"
666
  msgstr "Düz Kodu Kopyala"
667
 
668
  #@ crayon-syntax-highlighter
669
- #: crayon_formatter.class.php:211
670
  msgid "Open Code In New Window"
671
  msgstr "Kodu Yeni Pencerede Aç"
672
 
673
  #@ crayon-syntax-highlighter
674
- #: crayon_formatter.class.php:214
675
  msgid "Toggle Line Numbers"
676
  msgstr "Satır Numaralarına Geç"
677
 
678
  #@ crayon-syntax-highlighter
679
- #: crayon_formatter.class.php:221
680
  msgid "Contains Mixed Languages"
681
  msgstr "Karışık Diller içerir"
682
 
683
  #@ crayon-syntax-highlighter
684
- #: crayon_settings_wp.class.php:644
685
  msgid "Hide Log"
686
  msgstr "Günlüğü Gizle"
687
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
688
  #@ crayon-syntax-highlighter
689
  #. translators: plugin header field 'Version'
690
  #: crayon_wp.class.php:0
691
- msgid "1.7.26"
692
  msgstr ""
693
 
694
  #@ crayon-syntax-highlighter
695
- #: crayon_formatter.class.php:205
696
- #, php-format
697
- msgid "Press %s to Copy, %s to Paste"
698
- msgstr "%s ile Kopyala, %s ile Yapıştır"
699
 
3
  "Project-Id-Version: crayon-syntax-highlighter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-12-10 17:11+1000\n"
6
+ "PO-Revision-Date: 2012-03-08 14:02+0200\n"
7
  "Last-Translator: kazancexpert <kazancexpert@gmail.com>\n"
8
  "Language-Team: kazancexpert <kazancexpert@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
  #@ crayon-syntax-highlighter
22
+ #: crayon_settings.class.php:135
23
+ #: crayon_settings.class.php:139
24
  msgid "Max"
25
  msgstr "Max"
26
 
27
  #@ crayon-syntax-highlighter
28
+ #: crayon_settings.class.php:135
29
+ #: crayon_settings.class.php:139
30
  msgid "Min"
31
  msgstr "Min"
32
 
33
  #@ crayon-syntax-highlighter
34
+ #: crayon_settings.class.php:135
35
+ #: crayon_settings.class.php:139
36
  msgid "Static"
37
  msgstr "Sabit"
38
 
39
  #@ crayon-syntax-highlighter
40
+ #: crayon_settings.class.php:137
41
+ #: crayon_settings.class.php:141
42
+ #: crayon_settings_wp.class.php:461
43
+ #: crayon_settings_wp.class.php:470
44
+ #: crayon_settings_wp.class.php:581
45
  msgid "Pixels"
46
  msgstr "Piksel"
47
 
48
  #@ crayon-syntax-highlighter
49
+ #: crayon_settings.class.php:137
50
+ #: crayon_settings.class.php:141
51
  msgid "Percent"
52
  msgstr "Yüzde"
53
 
54
  #@ crayon-syntax-highlighter
55
+ #: crayon_settings.class.php:150
56
  msgid "None"
57
  msgstr "Yok"
58
 
59
  #@ crayon-syntax-highlighter
60
+ #: crayon_settings.class.php:150
61
  msgid "Left"
62
  msgstr "Sol"
63
 
64
  #@ crayon-syntax-highlighter
65
+ #: crayon_settings.class.php:150
66
  msgid "Center"
67
  msgstr "Merkez"
68
 
69
  #@ crayon-syntax-highlighter
70
+ #: crayon_settings.class.php:150
71
  msgid "Right"
72
  msgstr "Sağ"
73
 
74
  #@ crayon-syntax-highlighter
75
+ #: crayon_settings.class.php:152
76
+ #: crayon_settings.class.php:174
77
  msgid "On MouseOver"
78
  msgstr "Fare Üstündeyken"
79
 
80
  #@ crayon-syntax-highlighter
81
+ #: crayon_settings.class.php:152
82
+ #: crayon_settings.class.php:158
83
  msgid "Always"
84
  msgstr "Herzaman"
85
 
86
  #@ crayon-syntax-highlighter
87
+ #: crayon_settings.class.php:152
88
+ #: crayon_settings.class.php:158
89
  msgid "Never"
90
  msgstr "Asla"
91
 
92
  #@ crayon-syntax-highlighter
93
+ #: crayon_settings.class.php:158
94
  msgid "When Found"
95
  msgstr "Bulunduğunda"
96
 
97
  #@ crayon-syntax-highlighter
98
+ #: crayon_settings.class.php:174
99
  msgid "On Double Click"
100
  msgstr "Çift Tık ile aç"
101
 
102
  #@ crayon-syntax-highlighter
103
+ #: crayon_settings.class.php:174
104
  msgid "On Single Click"
105
  msgstr "Tek Tık ile aç"
106
 
107
  #@ crayon-syntax-highlighter
108
+ #: crayon_settings.class.php:182
109
  msgid "An error has occurred. Please try again later."
110
  msgstr "Bir hata meydana geldi. Daha sonra tekrar deneyin."
111
 
112
  #@ crayon-syntax-highlighter
113
  #: crayon_settings_wp.class.php:39
114
  #: crayon_settings_wp.class.php:82
115
+ #: crayon_settings_wp.class.php:713
116
  msgid "Settings"
117
  msgstr "Ayarlar"
118
 
132
  msgstr "Ayarları Sıfırla"
133
 
134
  #@ crayon-syntax-highlighter
135
+ #: crayon_settings_wp.class.php:438
136
  msgid "Height"
137
  msgstr "Yükseklik"
138
 
139
  #@ crayon-syntax-highlighter
140
+ #: crayon_settings_wp.class.php:444
141
  msgid "Width"
142
  msgstr "Genişlik"
143
 
144
  #@ crayon-syntax-highlighter
145
+ #: crayon_settings_wp.class.php:450
146
  msgid "Top Margin"
147
  msgstr "Üst Boşluk"
148
 
149
  #@ crayon-syntax-highlighter
150
+ #: crayon_settings_wp.class.php:451
151
  msgid "Bottom Margin"
152
  msgstr "Alt Boşluk"
153
 
154
  #@ crayon-syntax-highlighter
155
+ #: crayon_settings_wp.class.php:452
156
+ #: crayon_settings_wp.class.php:457
157
  msgid "Left Margin"
158
  msgstr "Sol Boşluk"
159
 
160
  #@ crayon-syntax-highlighter
161
+ #: crayon_settings_wp.class.php:453
162
+ #: crayon_settings_wp.class.php:457
163
  msgid "Right Margin"
164
  msgstr "Sağ Boşluk"
165
 
166
  #@ crayon-syntax-highlighter
167
+ #: crayon_settings_wp.class.php:463
168
  msgid "Horizontal Alignment"
169
  msgstr "Yatay Hizalama"
170
 
171
  #@ crayon-syntax-highlighter
172
+ #: crayon_settings_wp.class.php:466
173
  msgid "Allow floating elements to surround Crayon"
174
  msgstr "Geçişli elementleri Crayon çevrelemeye izin ver"
175
 
176
  #@ crayon-syntax-highlighter
177
+ #: crayon_settings_wp.class.php:474
178
  msgid "Display the Toolbar"
179
  msgstr "Araç çubuğunu göster"
180
 
181
  #@ crayon-syntax-highlighter
182
+ #: crayon_settings_wp.class.php:477
183
  msgid "Overlay the toolbar on code rather than push it down when possible"
184
  msgstr "Araç çubuğunu mümkünse kodları aşağı itmek yerine üstte göster"
185
 
186
  #@ crayon-syntax-highlighter
187
+ #: crayon_settings_wp.class.php:478
188
  msgid "Toggle the toolbar on single click when it is overlayed"
189
  msgstr "Araç çubuğu üste çıktığında tek tıkla gizle"
190
 
191
  #@ crayon-syntax-highlighter
192
+ #: crayon_settings_wp.class.php:479
193
  msgid "Delay hiding the toolbar on MouseOut"
194
  msgstr "Fare dışa çıktığında araç çubuğunu gizlemek için bekle"
195
 
196
  #@ crayon-syntax-highlighter
197
+ #: crayon_settings_wp.class.php:481
198
  msgid "Display the title when provided"
199
  msgstr "Varsa başlığı görüntüle"
200
 
201
  #@ crayon-syntax-highlighter
202
+ #: crayon_settings_wp.class.php:482
203
  msgid "Display the language"
204
  msgstr "Dilleri göster"
205
 
206
  #@ crayon-syntax-highlighter
207
+ #: crayon_settings_wp.class.php:487
208
  msgid "Display striped code lines"
209
  msgstr "Şeritli kod satırını göster"
210
 
211
  #@ crayon-syntax-highlighter
212
+ #: crayon_settings_wp.class.php:488
213
  msgid "Enable line marking for important lines"
214
  msgstr "Önemli satırlar için satır işaretleme etkin"
215
 
216
  #@ crayon-syntax-highlighter
217
+ #: crayon_settings_wp.class.php:489
218
  msgid "Display line numbers by default"
219
  msgstr "Varsayılan olarak satır numaralarını göster"
220
 
221
  #@ crayon-syntax-highlighter
222
+ #: crayon_settings_wp.class.php:490
223
  msgid "Enable line number toggling"
224
  msgstr "Satır numaraları geçişi etkin"
225
 
226
  #@ crayon-syntax-highlighter
227
+ #: crayon_settings_wp.class.php:491
228
  msgid "Start line numbers from"
229
  msgstr "Satır numarasını buradan başlat"
230
 
231
  #@ crayon-syntax-highlighter
232
+ #: crayon_settings_wp.class.php:501
233
  msgid "When no language is provided, use the fallback"
234
  msgstr "Belirlenmiş bir dil olmadığında son çareyi kullan"
235
 
236
  #@ crayon-syntax-highlighter
237
+ #: crayon_settings_wp.class.php:509
238
  msgid "Parsing was successful"
239
  msgstr "Ayrıştırma başarılı"
240
 
241
  #@ crayon-syntax-highlighter
242
+ #: crayon_settings_wp.class.php:509
243
  msgid "Parsing was unsuccessful"
244
  msgstr "Ayrıştırma başarılı değil"
245
 
246
  #@ crayon-syntax-highlighter
247
+ #: crayon_settings_wp.class.php:515
248
  #, php-format
249
  msgid "The selected language with id %s could not be loaded"
250
  msgstr "ID %s ile seçilen dil yüklenemedi"
251
 
252
  #@ crayon-syntax-highlighter
253
+ #: crayon_settings_wp.class.php:519
254
  msgid "Show Languages"
255
  msgstr "Dilleri Göster"
256
 
257
  #@ crayon-syntax-highlighter
258
+ #: crayon_settings_wp.class.php:556
259
  msgid "Enable Live Preview"
260
  msgstr "Ön izleme etkin"
261
 
262
  #@ crayon-syntax-highlighter
263
+ #: crayon_settings_wp.class.php:561
264
  #, php-format
265
  msgid "The selected theme with id %s could not be loaded"
266
  msgstr "ID %s ile seçilen tema yüklenemedi"
267
 
268
  #@ crayon-syntax-highlighter
269
+ #: crayon_settings_wp.class.php:579
270
  msgid "Custom Font Size"
271
  msgstr "Kişisel Font Boyutu"
272
 
273
  #@ crayon-syntax-highlighter
274
+ #: crayon_settings_wp.class.php:584
275
  #, php-format
276
  msgid "The selected font with id %s could not be loaded"
277
  msgstr "ID %s ile seçilen font yüklenemedi"
278
 
279
  #@ crayon-syntax-highlighter
280
+ #: crayon_settings_wp.class.php:591
281
  msgid "Enable plain code view and display"
282
  msgstr "Düz kod görünümü ve görüntüleme etkin"
283
 
284
  #@ crayon-syntax-highlighter
285
+ #: crayon_settings_wp.class.php:596
286
  msgid "Enable code copy/paste"
287
  msgstr "Kod kopyala/yapıştır etkin"
288
 
289
  #@ crayon-syntax-highlighter
290
+ #: crayon_settings_wp.class.php:598
291
  msgid "Enable opening code in a window"
292
  msgstr "Kodları bir pencerede açma etkin"
293
 
294
  #@ crayon-syntax-highlighter
295
+ #: crayon_settings_wp.class.php:600
296
  msgid "Tab size in spaces"
297
  msgstr "Boşluk sekme boyutu"
298
 
299
  #@ crayon-syntax-highlighter
300
+ #: crayon_settings_wp.class.php:602
301
  msgid "Remove whitespace surrounding the shortcode content"
302
  msgstr "Kısakod içeriğini çevreleyen beyaz alanları kaldır"
303
 
304
  #@ crayon-syntax-highlighter
305
+ #: crayon_settings_wp.class.php:618
306
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
307
  msgstr "Yerel dosyalar yüklendiği ve URL için bağlantılı yol verildiğinde, kesin yolu kullan"
308
 
309
  #@ crayon-syntax-highlighter
310
+ #: crayon_settings_wp.class.php:625
311
  msgid "Clear the cache used to store remote code requests"
312
  msgstr "Uzak kod isteklerini depolamak için ön belleği temizle"
313
 
314
  #@ crayon-syntax-highlighter
315
+ #: crayon_settings_wp.class.php:627
316
  msgid "Clear Now"
317
  msgstr "Şimdi Temizle"
318
 
319
  #@ crayon-syntax-highlighter
320
+ #: crayon_settings_wp.class.php:632
321
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
322
  msgstr "Dokunmatik cihazlar için fare hareketlerini devre dışı bırak (örn. Fare Üzerinde)"
323
 
324
  #@ crayon-syntax-highlighter
325
+ #: crayon_settings_wp.class.php:633
326
  msgid "Disable animations"
327
  msgstr "Animasyonlar devre dışı"
328
 
329
  #@ crayon-syntax-highlighter
330
+ #: crayon_settings_wp.class.php:634
331
  msgid "Disable runtime stats"
332
  msgstr "İşlem istatistikleri devre dışı"
333
 
334
  #@ crayon-syntax-highlighter
335
+ #: crayon_settings_wp.class.php:641
336
  msgid "Log errors for individual Crayons"
337
  msgstr "Özgün Crayons hataları günlükle"
338
 
339
  #@ crayon-syntax-highlighter
340
+ #: crayon_settings_wp.class.php:642
341
  msgid "Log system-wide errors"
342
  msgstr "Sistem-geneli hataları günlükle"
343
 
344
  #@ crayon-syntax-highlighter
345
+ #: crayon_settings_wp.class.php:643
346
  msgid "Display custom message for errors"
347
  msgstr "Hatalar için kişisel mesaj göster"
348
 
349
  #@ crayon-syntax-highlighter
350
+ #: crayon_settings_wp.class.php:655
351
  msgid "Show Log"
352
  msgstr "Günlüğü Göster"
353
 
354
  #@ crayon-syntax-highlighter
355
+ #: crayon_settings_wp.class.php:657
356
  msgid "Clear Log"
357
  msgstr "Günlüğü Temizle"
358
 
359
  #@ crayon-syntax-highlighter
360
+ #: crayon_settings_wp.class.php:658
361
  msgid "Email Admin"
362
  msgstr "Yönetici E-Posta"
363
 
364
  #@ crayon-syntax-highlighter
365
+ #: crayon_settings_wp.class.php:660
366
  msgid "Email Developer"
367
  msgstr "Geliştirici E-Posta"
368
 
369
  #@ crayon-syntax-highlighter
370
+ #: crayon_settings_wp.class.php:676
371
  msgid "Version"
372
  msgstr "Sürüm"
373
 
374
  #@ crayon-syntax-highlighter
375
+ #: crayon_settings_wp.class.php:678
376
  msgid "Developer"
377
  msgstr "Geliştirici"
378
 
379
  #@ crayon-syntax-highlighter
380
+ #: crayon_settings_wp.class.php:701
381
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
382
  msgstr "Aylar boyu sıkı çalışma ve sayısız saatlerin sonucudur. Bu devam eden bir projedir, motivasyonumu arttırın!"
383
 
384
  #@ crayon-syntax-highlighter
385
+ #: crayon_settings_wp.class.php:553
386
  #, php-format
387
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
388
  msgstr "Örnek kodu değiştirmek için %1$sSon çare dili%2$s değiştirin. 5-7 satırlar işaretli."
389
 
390
  #@ crayon-syntax-highlighter
391
+ #: crayon_settings.class.php:106
392
  msgid "Hourly"
393
  msgstr "Saatlik"
394
 
395
  #@ crayon-syntax-highlighter
396
+ #: crayon_settings.class.php:106
397
  msgid "Daily"
398
  msgstr "Günlük"
399
 
400
  #@ crayon-syntax-highlighter
401
+ #: crayon_settings.class.php:107
402
  msgid "Weekly"
403
  msgstr "Haftalık"
404
 
405
  #@ crayon-syntax-highlighter
406
+ #: crayon_settings.class.php:107
407
  msgid "Monthly"
408
  msgstr "Aylık"
409
 
410
  #@ crayon-syntax-highlighter
411
+ #: crayon_settings.class.php:108
412
  msgid "Immediately"
413
  msgstr "Hemen"
414
 
415
  #@ crayon-syntax-highlighter
416
+ #: crayon_settings_wp.class.php:424
417
  msgid "Crayon Help"
418
  msgstr "Crayon Yardım"
419
 
420
  #@ crayon-syntax-highlighter
421
+ #: crayon_settings_wp.class.php:628
422
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
423
  msgstr "Sadece ihtiyaç olduğunda Crayon CSS ve JavaScript yüklemeyi dene"
424
 
425
  #@ crayon-syntax-highlighter
426
+ #: crayon_settings_wp.class.php:621
427
  msgid "Followed by your relative URL."
428
  msgstr "Bağlantılı URL tarafından izlendi."
429
 
430
  #@ crayon-syntax-highlighter
431
+ #: crayon_settings_wp.class.php:662
432
  msgid "The log is currently empty."
433
  msgstr "Günlük şu anda boş."
434
 
435
  #@ crayon-syntax-highlighter
436
+ #: crayon_settings_wp.class.php:664
437
  msgid "The log file exists and is writable."
438
  msgstr "Günlük dosyası var ve yazılabilir."
439
 
440
  #@ crayon-syntax-highlighter
441
+ #: crayon_settings_wp.class.php:664
442
  msgid "The log file exists and is not writable."
443
  msgstr "Günlük dosyası var ve yazılabilir değil."
444
 
445
  #@ crayon-syntax-highlighter
446
+ #: crayon_settings_wp.class.php:666
447
  msgid "The log file does not exist and is not writable."
448
  msgstr "Günlük dosyası yok ve yazılabilir değil."
449
 
450
  #@ crayon-syntax-highlighter
451
+ #: crayon_settings_wp.class.php:508
452
  #, php-format
453
  msgid "%d language has been detected."
454
  msgid_plural "%d languages have been detected."
456
  msgstr[1] "%d dil tespit edildi."
457
 
458
  #@ crayon-syntax-highlighter
459
+ #: crayon_settings_wp.class.php:612
460
  msgid "Capture &lt;pre&gt; tags as Crayons"
461
  msgstr "&lt;pre&gt; etiketleri Crayons olarak yakala"
462
 
463
  #@ crayon-syntax-highlighter
464
+ #: crayon_settings_wp.class.php:558
465
+ #: crayon_settings_wp.class.php:587
466
+ #: crayon_settings_wp.class.php:603
467
+ #: crayon_settings_wp.class.php:608
468
+ #: crayon_settings_wp.class.php:609
469
+ #: crayon_settings_wp.class.php:610
470
+ #: crayon_settings_wp.class.php:611
471
+ #: crayon_settings_wp.class.php:612
472
+ #: crayon_settings_wp.class.php:613
473
+ #: crayon_settings_wp.class.php:628
474
+ #: crayon_settings_wp.class.php:629
475
  msgid "Learn More"
476
  msgstr "Daha Fazla"
477
 
478
  #@ crayon-syntax-highlighter
479
+ #: crayon_settings_wp.class.php:604
480
  msgid "Show Mixed Language Icon (+)"
481
  msgstr "Karışık Dil Simgesini Göster (+)"
482
 
483
  #@ crayon-syntax-highlighter
484
+ #: crayon_settings_wp.class.php:603
485
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
486
  msgstr "Sınırlayıcılar ve etiketler ile Karışık Dil Vurgulamaya izin ver."
487
 
488
  #@ crayon-syntax-highlighter
489
+ #: crayon_settings_wp.class.php:608
490
  msgid "Capture Mini Tags like [php][/php] as Crayons."
491
  msgstr "Crayons olarak [php][/php] gibi küçük etiketleri yakala."
492
 
493
  #@ crayon-syntax-highlighter
494
+ #: crayon_settings_wp.class.php:613
495
  msgid "Enable [plain][/plain] tag."
496
  msgstr "[plain][/plain] etiketi etkin."
497
 
498
  #@ crayon-syntax-highlighter
499
+ #: crayon_settings.class.php:174
500
  msgid "Disable Mouse Events"
501
  msgstr "Fare Etkinliği Devre Dışı"
502
 
503
  #@ crayon-syntax-highlighter
504
+ #: crayon_settings_wp.class.php:594
505
  msgid "Enable plain code toggling"
506
  msgstr "Düz kod geçişi etkin"
507
 
508
  #@ crayon-syntax-highlighter
509
+ #: crayon_settings_wp.class.php:595
510
  msgid "Show the plain code by default"
511
  msgstr "Düz kodu varsayılan olarak göster"
512
 
541
  msgstr "Çoklu dil, temalar, bir URL den vurgulama, yerel dosya veya yazı metnini destekler."
542
 
543
  #@ crayon-syntax-highlighter
544
+ #: crayon_settings_wp.class.php:717
545
  msgid "Donate"
546
  msgstr "Bağış"
547
 
581
  msgstr "Kod"
582
 
583
  #@ crayon-syntax-highlighter
584
+ #: crayon_settings_wp.class.php:227
585
  msgid "Languages"
586
  msgstr "Diller"
587
 
588
  #@ crayon-syntax-highlighter
589
+ #: crayon_settings_wp.class.php:228
590
  msgid "Files"
591
  msgstr "Dosyalar"
592
 
593
  #@ crayon-syntax-highlighter
594
+ #: crayon_settings_wp.class.php:229
595
  msgid "Misc"
596
  msgstr "Çeşitli"
597
 
598
  #@ crayon-syntax-highlighter
599
+ #: crayon_settings_wp.class.php:232
600
  msgid "Debug"
601
  msgstr "Hata Ayıklama"
602
 
603
  #@ crayon-syntax-highlighter
604
+ #: crayon_settings_wp.class.php:233
605
  msgid "Errors"
606
  msgstr "Hatalar"
607
 
608
  #@ crayon-syntax-highlighter
609
+ #: crayon_settings_wp.class.php:234
610
  msgid "Log"
611
  msgstr "Günlük"
612
 
613
  #@ crayon-syntax-highlighter
614
+ #: crayon_settings_wp.class.php:237
615
  msgid "About"
616
  msgstr "Hakkında"
617
 
618
  #@ crayon-syntax-highlighter
619
+ #: crayon_settings_wp.class.php:558
620
  msgid "Enqueue themes in the header (more efficient)."
621
  msgstr "Temaları header içinde kuyrukla (daha etkin)."
622
 
623
  #@ crayon-syntax-highlighter
624
+ #: crayon_settings_wp.class.php:587
625
  msgid "Enqueue fonts in the header (more efficient)."
626
  msgstr "Fontları header içinde kuyrukla (daha etkin)."
627
 
628
  #@ crayon-syntax-highlighter
629
+ #: crayon_settings_wp.class.php:549
630
  msgid "Loading..."
631
  msgstr "Yükleniyor..."
632
 
633
  #@ crayon-syntax-highlighter
634
+ #: crayon_settings_wp.class.php:549
635
+ #: crayon_settings_wp.class.php:715
636
  #: util/theme-editor/editor.php:14
637
  msgid "Theme Editor"
638
  msgstr "Tema Düzenleyici"
639
 
640
  #@ crayon-syntax-highlighter
641
+ #: crayon_settings_wp.class.php:599
642
  msgid "Always display scrollbars"
643
  msgstr "Kenar çubuğu her zaman göster"
644
 
645
  #@ crayon-syntax-highlighter
646
+ #: crayon_settings_wp.class.php:629
647
  msgid "Disable enqueuing for page templates that may contain The Loop."
648
  msgstr "Döngü içeren sayfa şablonları için kuyruklama devre dışı."
649
 
650
  #@ crayon-syntax-highlighter
651
+ #: crayon_settings_wp.class.php:631
652
  msgid "Load Crayons only from the main Wordpress query"
653
  msgstr "Sadece ana Wordpress sorgusundan Crayons yükle"
654
 
658
  msgstr "Ayarlara Geri Dön"
659
 
660
  #@ crayon-syntax-highlighter
661
+ #: crayon_settings_wp.class.php:679
662
  msgid "Translators"
663
  msgstr "Çevirmenler"
664
 
665
  #@ crayon-syntax-highlighter
666
+ #: crayon_formatter.class.php:270
667
  msgid "Toggle Plain Code"
668
  msgstr "Düz Koda Geç"
669
 
670
  #@ crayon-syntax-highlighter
671
+ #: crayon_formatter.class.php:272
672
  msgid "Copy Plain Code"
673
  msgstr "Düz Kodu Kopyala"
674
 
675
  #@ crayon-syntax-highlighter
676
+ #: crayon_formatter.class.php:278
677
  msgid "Open Code In New Window"
678
  msgstr "Kodu Yeni Pencerede Aç"
679
 
680
  #@ crayon-syntax-highlighter
681
+ #: crayon_formatter.class.php:281
682
  msgid "Toggle Line Numbers"
683
  msgstr "Satır Numaralarına Geç"
684
 
685
  #@ crayon-syntax-highlighter
686
+ #: crayon_formatter.class.php:288
687
  msgid "Contains Mixed Languages"
688
  msgstr "Karışık Diller içerir"
689
 
690
  #@ crayon-syntax-highlighter
691
+ #: crayon_settings_wp.class.php:655
692
  msgid "Hide Log"
693
  msgstr "Günlüğü Gizle"
694
 
695
+ #@ crayon-syntax-highlighter
696
+ #: crayon_formatter.class.php:272
697
+ #, php-format
698
+ msgid "Press %s to Copy, %s to Paste"
699
+ msgstr "%s ile Kopyala, %s ile Yapıştır"
700
+
701
+ #@ crayon-syntax-highlighter
702
+ #: crayon_settings_wp.class.php:226
703
+ msgid "Tags"
704
+ msgstr "Etiketler"
705
+
706
+ #@ crayon-syntax-highlighter
707
+ #: crayon_settings_wp.class.php:468
708
+ msgid "Inline Margin"
709
+ msgstr "Satıriçi Boşluk"
710
+
711
+ #@ crayon-syntax-highlighter
712
+ #: crayon_settings_wp.class.php:609
713
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
714
+ msgstr "Cümle içinde {php}{/php} gibi satıriçi etiketleri yakalayın."
715
+
716
+ #@ crayon-syntax-highlighter
717
+ #: crayon_settings_wp.class.php:611
718
+ msgid "Capture `backquotes` as &lt;code&gt;"
719
+ msgstr "&lt;code&gt; olarak `backquotes` yakalayın"
720
+
721
+ #@ crayon-syntax-highlighter
722
+ #: crayon_settings_wp.class.php:630
723
+ msgid "Allow Crayons inside comments"
724
+ msgstr "Yorum içinde Crayons izini verin"
725
+
726
  #@ crayon-syntax-highlighter
727
  #. translators: plugin header field 'Version'
728
  #: crayon_wp.class.php:0
729
+ msgid "1.8.2"
730
  msgstr ""
731
 
732
  #@ crayon-syntax-highlighter
733
+ #: crayon_settings_wp.class.php:610
734
+ msgid "Wrap Inline Tags"
735
+ msgstr "Wrap Inline Etiketler"
 
736
 
trans/crayon-syntax-highlighter-zh_CN.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-zh_CN.po CHANGED
@@ -13,687 +13,725 @@ msgstr ""
13
  "X-Poedit-Language: Chinese\n"
14
  "X-Poedit-Country: CHINA\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: .\n"
18
- "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: ..\n"
 
20
 
 
 
21
  #@ crayon-syntax-highlighter
22
- #: crayon_settings.class.php:130
23
- #: crayon_settings.class.php:134
24
  msgid "Max"
25
  msgstr "最大"
26
 
 
 
27
  #@ crayon-syntax-highlighter
28
- #: crayon_settings.class.php:130
29
- #: crayon_settings.class.php:134
30
  msgid "Min"
31
  msgstr "最小"
32
 
 
 
33
  #@ crayon-syntax-highlighter
34
- #: crayon_settings.class.php:130
35
- #: crayon_settings.class.php:134
36
  msgid "Static"
37
  msgstr "静态"
38
 
 
 
 
 
 
39
  #@ crayon-syntax-highlighter
40
- #: crayon_settings.class.php:132
41
- #: crayon_settings.class.php:136
42
  msgid "Pixels"
43
  msgstr "像素"
44
 
 
 
45
  #@ crayon-syntax-highlighter
46
- #: crayon_settings.class.php:132
47
- #: crayon_settings.class.php:136
48
  msgid "Percent"
49
  msgstr "百分比"
50
 
 
51
  #@ crayon-syntax-highlighter
52
- #: crayon_settings.class.php:145
53
  msgid "None"
54
  msgstr "无"
55
 
 
56
  #@ crayon-syntax-highlighter
57
- #: crayon_settings.class.php:145
58
  msgid "Left"
59
  msgstr "左"
60
 
 
61
  #@ crayon-syntax-highlighter
62
- #: crayon_settings.class.php:145
63
  msgid "Center"
64
  msgstr "中"
65
 
 
66
  #@ crayon-syntax-highlighter
67
- #: crayon_settings.class.php:145
68
  msgid "Right"
69
  msgstr "右"
70
 
 
 
71
  #@ crayon-syntax-highlighter
72
- #: crayon_settings.class.php:147
73
- #: crayon_settings.class.php:169
74
  msgid "On MouseOver"
75
  msgstr "鼠标悬浮"
76
 
 
 
77
  #@ crayon-syntax-highlighter
78
- #: crayon_settings.class.php:147
79
- #: crayon_settings.class.php:153
80
  msgid "Always"
81
  msgstr "始终"
82
 
 
 
83
  #@ crayon-syntax-highlighter
84
- #: crayon_settings.class.php:147
85
- #: crayon_settings.class.php:153
86
  msgid "Never"
87
  msgstr "从不"
88
 
 
89
  #@ crayon-syntax-highlighter
90
- #: crayon_settings.class.php:153
91
  msgid "When Found"
92
  msgstr "如果找到"
93
 
 
94
  #@ crayon-syntax-highlighter
95
- #: crayon_settings.class.php:169
96
  msgid "On Double Click"
97
  msgstr "鼠标双击"
98
 
 
99
  #@ crayon-syntax-highlighter
100
- #: crayon_settings.class.php:169
101
  msgid "On Single Click"
102
  msgstr "鼠标单击"
103
 
 
104
  #@ crayon-syntax-highlighter
105
- #: crayon_settings.class.php:177
106
  msgid "An error has occurred. Please try again later."
107
  msgstr "错误发生。请稍后再试。"
108
 
109
- #@ crayon-syntax-highlighter
110
  #: crayon_settings_wp.class.php:39
111
  #: crayon_settings_wp.class.php:82
112
- #: crayon_settings_wp.class.php:710
 
113
  msgid "Settings"
114
  msgstr "设置"
115
 
116
- #@ crayon-syntax-highlighter
117
  #: crayon_settings_wp.class.php:73
 
118
  msgid "You do not have sufficient permissions to access this page."
119
  msgstr "你没有足够的权限访问当前页面"
120
 
121
- #@ crayon-syntax-highlighter
122
  #: crayon_settings_wp.class.php:94
 
123
  msgid "Save Changes"
124
  msgstr "保存设置"
125
 
126
- #@ crayon-syntax-highlighter
127
  #: crayon_settings_wp.class.php:100
 
128
  msgid "Reset Settings"
129
  msgstr "回复初始设置"
130
 
 
131
  #@ crayon-syntax-highlighter
132
- #: crayon_settings_wp.class.php:437
133
  msgid "Height"
134
  msgstr "高度"
135
 
 
136
  #@ crayon-syntax-highlighter
137
- #: crayon_settings_wp.class.php:443
138
  msgid "Width"
139
  msgstr "宽度"
140
 
 
141
  #@ crayon-syntax-highlighter
142
- #: crayon_settings_wp.class.php:449
143
  msgid "Top Margin"
144
  msgstr "上边距"
145
 
 
146
  #@ crayon-syntax-highlighter
147
- #: crayon_settings_wp.class.php:450
148
  msgid "Bottom Margin"
149
  msgstr "下边距"
150
 
 
 
151
  #@ crayon-syntax-highlighter
152
- #: crayon_settings_wp.class.php:451
153
- #: crayon_settings_wp.class.php:456
154
  msgid "Left Margin"
155
  msgstr "左边距"
156
 
 
 
157
  #@ crayon-syntax-highlighter
158
- #: crayon_settings_wp.class.php:452
159
- #: crayon_settings_wp.class.php:456
160
  msgid "Right Margin"
161
  msgstr "右边距"
162
 
 
163
  #@ crayon-syntax-highlighter
164
- #: crayon_settings_wp.class.php:462
165
  msgid "Horizontal Alignment"
166
  msgstr "水平对齐"
167
 
 
168
  #@ crayon-syntax-highlighter
169
- #: crayon_settings_wp.class.php:465
170
  msgid "Allow floating elements to surround Crayon"
171
  msgstr "允许浮动元素(Floating Elements)环绕Crayon"
172
 
 
173
  #@ crayon-syntax-highlighter
174
- #: crayon_settings_wp.class.php:470
175
  msgid "Display the Toolbar"
176
  msgstr "显示工具栏"
177
 
 
178
  #@ crayon-syntax-highlighter
179
- #: crayon_settings_wp.class.php:473
180
  msgid "Overlay the toolbar on code rather than push it down when possible"
181
  msgstr "在可能的情况下覆盖工具栏上的代码,而不是将代码向下推"
182
 
 
183
  #@ crayon-syntax-highlighter
184
- #: crayon_settings_wp.class.php:474
185
  msgid "Toggle the toolbar on single click when it is overlayed"
186
  msgstr "当叠加时,使用鼠标单击来触发工具栏的切换"
187
 
 
188
  #@ crayon-syntax-highlighter
189
- #: crayon_settings_wp.class.php:475
190
  msgid "Delay hiding the toolbar on MouseOut"
191
  msgstr "当鼠标移出时延迟工具栏的隐藏"
192
 
 
193
  #@ crayon-syntax-highlighter
194
- #: crayon_settings_wp.class.php:477
195
  msgid "Display the title when provided"
196
  msgstr "显示被设置的标题"
197
 
 
198
  #@ crayon-syntax-highlighter
199
- #: crayon_settings_wp.class.php:478
200
  msgid "Display the language"
201
  msgstr "显示编程语言"
202
 
 
203
  #@ crayon-syntax-highlighter
204
- #: crayon_settings_wp.class.php:483
205
  msgid "Display striped code lines"
206
  msgstr "以条纹形式显示代码"
207
 
 
208
  #@ crayon-syntax-highlighter
209
- #: crayon_settings_wp.class.php:484
210
  msgid "Enable line marking for important lines"
211
  msgstr "标记重要的行"
212
 
 
213
  #@ crayon-syntax-highlighter
214
- #: crayon_settings_wp.class.php:485
215
  msgid "Display line numbers by default"
216
  msgstr "默认为每行编号"
217
 
 
218
  #@ crayon-syntax-highlighter
219
- #: crayon_settings_wp.class.php:486
220
  msgid "Enable line number toggling"
221
  msgstr "启用行数切换"
222
 
 
223
  #@ crayon-syntax-highlighter
224
- #: crayon_settings_wp.class.php:487
225
  msgid "Start line numbers from"
226
  msgstr "起始行数"
227
 
 
228
  #@ crayon-syntax-highlighter
229
- #: crayon_settings_wp.class.php:497
230
  msgid "When no language is provided, use the fallback"
231
  msgstr "当没有设置编程语言是,显示fallback language"
232
 
 
233
  #@ crayon-syntax-highlighter
234
- #: crayon_settings_wp.class.php:505
235
  msgid "Parsing was successful"
236
  msgstr "装载成功"
237
 
 
238
  #@ crayon-syntax-highlighter
239
- #: crayon_settings_wp.class.php:505
240
  msgid "Parsing was unsuccessful"
241
  msgstr "装载失败"
242
 
243
- #@ crayon-syntax-highlighter
244
- #: crayon_settings_wp.class.php:511
245
  #, php-format
 
246
  msgid "The selected language with id %s could not be loaded"
247
  msgstr "无法加载被选则的语言(ID:%s)"
248
 
 
249
  #@ crayon-syntax-highlighter
250
- #: crayon_settings_wp.class.php:515
251
  msgid "Show Languages"
252
  msgstr "显示编程语言"
253
 
 
254
  #@ crayon-syntax-highlighter
255
- #: crayon_settings_wp.class.php:552
256
  msgid "Enable Live Preview"
257
  msgstr "启用实时预览"
258
 
259
- #@ crayon-syntax-highlighter
260
- #: crayon_settings_wp.class.php:557
261
  #, php-format
 
262
  msgid "The selected theme with id %s could not be loaded"
263
  msgstr "无法加载被选则的主题(ID:%s)"
264
 
 
265
  #@ crayon-syntax-highlighter
266
- #: crayon_settings_wp.class.php:575
267
  msgid "Custom Font Size"
268
  msgstr "自定义字号"
269
 
270
- #@ crayon-syntax-highlighter
271
- #: crayon_settings_wp.class.php:580
272
  #, php-format
 
273
  msgid "The selected font with id %s could not be loaded"
274
  msgstr "无法加载被选则的字体(ID:%s)"
275
 
 
276
  #@ crayon-syntax-highlighter
277
- #: crayon_settings_wp.class.php:587
278
  msgid "Enable plain code view and display"
279
  msgstr "启用普通视图显示代码"
280
 
 
281
  #@ crayon-syntax-highlighter
282
- #: crayon_settings_wp.class.php:592
283
  msgid "Enable code copy/paste"
284
  msgstr "启用复制粘贴"
285
 
 
286
  #@ crayon-syntax-highlighter
287
- #: crayon_settings_wp.class.php:594
288
  msgid "Enable opening code in a window"
289
  msgstr "启用在新窗口中显示代码"
290
 
 
291
  #@ crayon-syntax-highlighter
292
- #: crayon_settings_wp.class.php:596
293
  msgid "Tab size in spaces"
294
  msgstr "空格数代替Tab"
295
 
 
296
  #@ crayon-syntax-highlighter
297
- #: crayon_settings_wp.class.php:598
298
  msgid "Remove whitespace surrounding the shortcode content"
299
  msgstr "删除短代码周围的Whitespace"
300
 
 
301
  #@ crayon-syntax-highlighter
302
- #: crayon_settings_wp.class.php:608
303
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
304
  msgstr "当加载本地文件时,使用绝对路径"
305
 
 
306
  #@ crayon-syntax-highlighter
307
- #: crayon_settings_wp.class.php:615
308
  msgid "Clear the cache used to store remote code requests"
309
  msgstr "清除用于远程存储代码的缓存"
310
 
 
311
  #@ crayon-syntax-highlighter
312
- #: crayon_settings_wp.class.php:617
313
  msgid "Clear Now"
314
  msgstr "现在清除"
315
 
 
316
  #@ crayon-syntax-highlighter
317
- #: crayon_settings_wp.class.php:621
318
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
319
  msgstr "为触屏设备停用鼠标手势(如MouseOver)"
320
 
 
321
  #@ crayon-syntax-highlighter
322
- #: crayon_settings_wp.class.php:622
323
  msgid "Disable animations"
324
  msgstr "禁用动画"
325
 
 
326
  #@ crayon-syntax-highlighter
327
- #: crayon_settings_wp.class.php:623
328
  msgid "Disable runtime stats"
329
  msgstr "禁用实时数据"
330
 
 
331
  #@ crayon-syntax-highlighter
332
- #: crayon_settings_wp.class.php:630
333
  msgid "Log errors for individual Crayons"
334
  msgstr "为独立的Crayon启用错误日志"
335
 
 
336
  #@ crayon-syntax-highlighter
337
- #: crayon_settings_wp.class.php:631
338
  msgid "Log system-wide errors"
339
  msgstr "启用系统日志"
340
 
 
341
  #@ crayon-syntax-highlighter
342
- #: crayon_settings_wp.class.php:632
343
  msgid "Display custom message for errors"
344
  msgstr "显示错误的个性化消息"
345
 
 
346
  #@ crayon-syntax-highlighter
347
- #: crayon_settings_wp.class.php:644
348
  msgid "Show Log"
349
  msgstr "显示日志"
350
 
 
351
  #@ crayon-syntax-highlighter
352
- #: crayon_settings_wp.class.php:646
353
  msgid "Clear Log"
354
  msgstr "清空日志"
355
 
 
356
  #@ crayon-syntax-highlighter
357
- #: crayon_settings_wp.class.php:647
358
  msgid "Email Admin"
359
  msgstr "Email 管理员"
360
 
 
361
  #@ crayon-syntax-highlighter
362
- #: crayon_settings_wp.class.php:649
363
  msgid "Email Developer"
364
  msgstr "E-Mail 开发者"
365
 
 
366
  #@ crayon-syntax-highlighter
367
- #: crayon_settings_wp.class.php:665
368
  msgid "Version"
369
  msgstr "Version"
370
 
 
371
  #@ crayon-syntax-highlighter
372
- #: crayon_settings_wp.class.php:667
373
  msgid "Developer"
374
  msgstr "开发者"
375
 
 
376
  #@ crayon-syntax-highlighter
377
- #: crayon_settings_wp.class.php:698
378
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
379
  msgstr "Crayon是数月辛勤劳动的结果,为了让它不断的完善,如果你喜欢它,请告诉我!"
380
 
381
- #@ crayon-syntax-highlighter
382
- #: crayon_settings_wp.class.php:549
383
  #, php-format
 
384
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
385
  msgstr "更改 %1$sfallback language%2$s 来更改示例. 5-7行是被标记的行"
386
 
 
387
  #@ crayon-syntax-highlighter
388
- #: crayon_settings.class.php:101
389
  msgid "Hourly"
390
  msgstr "每小时"
391
 
 
392
  #@ crayon-syntax-highlighter
393
- #: crayon_settings.class.php:101
394
  msgid "Daily"
395
  msgstr "每天"
396
 
 
397
  #@ crayon-syntax-highlighter
398
- #: crayon_settings.class.php:102
399
  msgid "Weekly"
400
  msgstr "每星期"
401
 
 
402
  #@ crayon-syntax-highlighter
403
- #: crayon_settings.class.php:102
404
  msgid "Monthly"
405
  msgstr "每月"
406
 
 
407
  #@ crayon-syntax-highlighter
408
- #: crayon_settings.class.php:103
409
  msgid "Immediately"
410
  msgstr "现在"
411
 
 
412
  #@ crayon-syntax-highlighter
413
- #: crayon_settings_wp.class.php:423
414
  msgid "Crayon Help"
415
  msgstr "Crayon 帮助"
416
 
 
417
  #@ crayon-syntax-highlighter
418
- #: crayon_settings_wp.class.php:618
419
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
420
  msgstr "仅在用到时才加载 Crayon 的 CSS 和 JavaScript "
421
 
 
422
  #@ crayon-syntax-highlighter
423
- #: crayon_settings_wp.class.php:611
424
  msgid "Followed by your relative URL."
425
  msgstr "跟随你的相对URL."
426
 
 
427
  #@ crayon-syntax-highlighter
428
- #: crayon_settings_wp.class.php:651
429
  msgid "The log is currently empty."
430
  msgstr "日志为空"
431
 
 
432
  #@ crayon-syntax-highlighter
433
- #: crayon_settings_wp.class.php:653
434
  msgid "The log file exists and is writable."
435
  msgstr "日志存在并且是可编辑状态"
436
 
 
437
  #@ crayon-syntax-highlighter
438
- #: crayon_settings_wp.class.php:653
439
  msgid "The log file exists and is not writable."
440
  msgstr "日志存在但无法编辑"
441
 
 
442
  #@ crayon-syntax-highlighter
443
- #: crayon_settings_wp.class.php:655
444
  msgid "The log file does not exist and is not writable."
445
  msgstr "日志不存在且无法编辑"
446
 
447
- #@ crayon-syntax-highlighter
448
- #: crayon_settings_wp.class.php:504
449
  #, php-format
 
450
  msgid "%d language has been detected."
451
  msgid_plural "%d languages have been detected."
452
  msgstr[0] "没有找到 %d 语言"
453
  msgstr[1] "没有找到 %d 相关的语言"
454
 
 
455
  #@ crayon-syntax-highlighter
456
- #: crayon_settings_wp.class.php:599
457
  msgid "Capture &lt;pre&gt; tags as Crayons"
458
  msgstr "用Crayon显示 &lt;pre&gt; 标签"
459
 
 
 
 
 
 
 
 
 
 
 
 
460
  #@ crayon-syntax-highlighter
461
- #: crayon_settings_wp.class.php:554
462
- #: crayon_settings_wp.class.php:583
463
- #: crayon_settings_wp.class.php:600
464
- #: crayon_settings_wp.class.php:601
465
- #: crayon_settings_wp.class.php:602
466
- #: crayon_settings_wp.class.php:618
467
- #: crayon_settings_wp.class.php:619
468
  msgid "Learn More"
469
  msgstr "了解更多"
470
 
 
471
  #@ crayon-syntax-highlighter
472
- #: crayon_settings_wp.class.php:603
473
  msgid "Show Mixed Language Icon (+)"
474
  msgstr "显示混合语言标识 (+)"
475
 
 
476
  #@ crayon-syntax-highlighter
477
- #: crayon_settings_wp.class.php:602
478
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
479
  msgstr "允许混合语言加亮用分隔符和标签"
480
 
 
481
  #@ crayon-syntax-highlighter
482
- #: crayon_settings_wp.class.php:600
483
  msgid "Capture Mini Tags like [php][/php] as Crayons."
484
  msgstr "使用 Crayons 显示类似 [php] [/php] 的迷你标签."
485
 
 
486
  #@ crayon-syntax-highlighter
487
- #: crayon_settings_wp.class.php:601
488
  msgid "Enable [plain][/plain] tag."
489
  msgstr "启用 [plain] [/plain] 标签."
490
 
 
491
  #@ crayon-syntax-highlighter
492
- #: crayon_settings.class.php:169
493
  msgid "Disable Mouse Events"
494
  msgstr "禁用鼠标事件"
495
 
 
496
  #@ crayon-syntax-highlighter
497
- #: crayon_settings_wp.class.php:590
498
  msgid "Enable plain code toggling"
499
  msgstr "启用纯文本切换"
500
 
 
501
  #@ crayon-syntax-highlighter
502
- #: crayon_settings_wp.class.php:591
503
  msgid "Show the plain code by default"
504
  msgstr "默认显示纯文本"
505
 
506
- #@ crayon-syntax-highlighter
507
  #. translators: plugin header field 'Name'
508
  #: crayon_wp.class.php:0
 
509
  msgid "Crayon Syntax Highlighter"
510
  msgstr ""
511
 
512
- #@ crayon-syntax-highlighter
513
  #. translators: plugin header field 'AuthorURI'
514
  #: crayon_wp.class.php:0
 
515
  msgid "http://ak.net84.net/"
516
  msgstr ""
517
 
518
- #@ crayon-syntax-highlighter
519
  #. translators: plugin header field 'Author'
520
  #: crayon_wp.class.php:0
 
521
  msgid "Aram Kocharyan"
522
  msgstr ""
523
 
524
- #@ crayon-syntax-highlighter
525
  #. translators: plugin header field 'PluginURI'
526
  #: crayon_wp.class.php:0
 
527
  msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
528
  msgstr ""
529
 
530
- #@ crayon-syntax-highlighter
531
  #. translators: plugin header field 'Description'
532
  #: crayon_wp.class.php:0
 
533
  msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
534
  msgstr "支持多重语言,主题,高亮来自于一个URL,本地文件或博客日志"
535
 
 
536
  #@ crayon-syntax-highlighter
537
- #: crayon_settings_wp.class.php:714
538
  msgid "Donate"
539
  msgstr "捐助"
540
 
541
- #@ crayon-syntax-highlighter
542
  #: crayon_settings_wp.class.php:219
 
543
  msgid "General"
544
  msgstr "常规"
545
 
546
- #@ crayon-syntax-highlighter
547
  #: crayon_settings_wp.class.php:220
 
548
  msgid "Theme"
549
  msgstr "主题"
550
 
551
- #@ crayon-syntax-highlighter
552
  #: crayon_settings_wp.class.php:221
 
553
  msgid "Font"
554
  msgstr "字体"
555
 
556
- #@ crayon-syntax-highlighter
557
  #: crayon_settings_wp.class.php:222
 
558
  msgid "Metrics"
559
  msgstr "排版"
560
 
561
- #@ crayon-syntax-highlighter
562
  #: crayon_settings_wp.class.php:223
 
563
  msgid "Toolbar"
564
  msgstr "工具栏"
565
 
566
- #@ crayon-syntax-highlighter
567
  #: crayon_settings_wp.class.php:224
 
568
  msgid "Lines"
569
  msgstr "行"
570
 
571
- #@ crayon-syntax-highlighter
572
  #: crayon_settings_wp.class.php:225
 
573
  msgid "Code"
574
  msgstr "代码"
575
 
 
576
  #@ crayon-syntax-highlighter
577
- #: crayon_settings_wp.class.php:226
578
  msgid "Languages"
579
  msgstr "语言"
580
 
 
581
  #@ crayon-syntax-highlighter
582
- #: crayon_settings_wp.class.php:227
583
  msgid "Files"
584
  msgstr "文件"
585
 
 
586
  #@ crayon-syntax-highlighter
587
- #: crayon_settings_wp.class.php:228
588
  msgid "Misc"
589
  msgstr "其他"
590
 
 
591
  #@ crayon-syntax-highlighter
592
- #: crayon_settings_wp.class.php:231
593
  msgid "Debug"
594
  msgstr "Debug"
595
 
 
596
  #@ crayon-syntax-highlighter
597
- #: crayon_settings_wp.class.php:232
598
  msgid "Errors"
599
  msgstr "错误"
600
 
 
601
  #@ crayon-syntax-highlighter
602
- #: crayon_settings_wp.class.php:233
603
  msgid "Log"
604
  msgstr "日志"
605
 
 
606
  #@ crayon-syntax-highlighter
607
- #: crayon_settings_wp.class.php:236
608
  msgid "About"
609
  msgstr "关于"
610
 
 
611
  #@ crayon-syntax-highlighter
612
- #: crayon_settings_wp.class.php:554
613
  msgid "Enqueue themes in the header (more efficient)."
614
  msgstr "主题在 header 里加载(更有效率)"
615
 
 
616
  #@ crayon-syntax-highlighter
617
- #: crayon_settings_wp.class.php:583
618
  msgid "Enqueue fonts in the header (more efficient)."
619
  msgstr "字体在 header 里加载(更有效率)"
620
 
 
621
  #@ crayon-syntax-highlighter
622
- #: crayon_settings_wp.class.php:545
623
  msgid "Loading..."
624
  msgstr "加载中。。。"
625
 
626
- #@ crayon-syntax-highlighter
627
- #: crayon_settings_wp.class.php:545
628
- #: crayon_settings_wp.class.php:712
629
  #: util/theme-editor/editor.php:14
 
630
  msgid "Theme Editor"
631
  msgstr "主题编辑器"
632
 
 
633
  #@ crayon-syntax-highlighter
634
- #: crayon_settings_wp.class.php:595
635
  msgid "Always display scrollbars"
636
  msgstr "总是显示滚动条"
637
 
 
638
  #@ crayon-syntax-highlighter
639
- #: crayon_settings_wp.class.php:619
640
  msgid "Disable enqueuing for page templates that may contain The Loop."
641
  msgstr "当可能造成循环时禁用加载页面模板"
642
 
 
643
  #@ crayon-syntax-highlighter
644
- #: crayon_settings_wp.class.php:620
645
  msgid "Load Crayons only from the main Wordpress query"
646
  msgstr "只有在主要 Wordpress 请求时在显示 Crayon"
647
 
648
- #@ crayon-syntax-highlighter
649
  #: util/theme-editor/editor.php:16
 
650
  msgid "Back To Settings"
651
  msgstr "回到设置"
652
 
 
653
  #@ crayon-syntax-highlighter
654
- #: crayon_settings_wp.class.php:668
655
  msgid "Translators"
656
  msgstr "翻译者"
657
 
 
658
  #@ crayon-syntax-highlighter
659
- #: crayon_formatter.class.php:203
660
  msgid "Toggle Plain Code"
661
  msgstr "切换时显示纯文本"
662
 
 
663
  #@ crayon-syntax-highlighter
664
- #: crayon_formatter.class.php:205
665
  msgid "Copy Plain Code"
666
  msgstr "复制纯文本"
667
 
 
668
  #@ crayon-syntax-highlighter
669
- #: crayon_formatter.class.php:211
670
  msgid "Open Code In New Window"
671
  msgstr "在新窗口中显示代码"
672
 
 
673
  #@ crayon-syntax-highlighter
674
- #: crayon_formatter.class.php:214
675
  msgid "Toggle Line Numbers"
676
  msgstr "编号开关"
677
 
 
678
  #@ crayon-syntax-highlighter
679
- #: crayon_formatter.class.php:221
680
  msgid "Contains Mixed Languages"
681
  msgstr "含有多种语言"
682
 
 
683
  #@ crayon-syntax-highlighter
684
- #: crayon_settings_wp.class.php:644
685
  msgid "Hide Log"
686
  msgstr "隐藏日志"
687
 
 
 
688
  #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
689
  #. translators: plugin header field 'Version'
690
  #: crayon_wp.class.php:0
691
- msgid "1.7.26"
 
692
  msgstr ""
693
 
 
694
  #@ crayon-syntax-highlighter
695
- #: crayon_formatter.class.php:205
696
- #, php-format
697
- msgid "Press %s to Copy, %s to Paste"
698
- msgstr "按下 %s 复制, %s 粘贴"
699
 
13
  "X-Poedit-Language: Chinese\n"
14
  "X-Poedit-Country: CHINA\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
+ "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:135
23
+ #: crayon_settings.class.php:139
24
  #@ crayon-syntax-highlighter
 
 
25
  msgid "Max"
26
  msgstr "最大"
27
 
28
+ #: crayon_settings.class.php:135
29
+ #: crayon_settings.class.php:139
30
  #@ crayon-syntax-highlighter
 
 
31
  msgid "Min"
32
  msgstr "最小"
33
 
34
+ #: crayon_settings.class.php:135
35
+ #: crayon_settings.class.php:139
36
  #@ crayon-syntax-highlighter
 
 
37
  msgid "Static"
38
  msgstr "静态"
39
 
40
+ #: crayon_settings.class.php:137
41
+ #: crayon_settings.class.php:141
42
+ #: crayon_settings_wp.class.php:461
43
+ #: crayon_settings_wp.class.php:470
44
+ #: crayon_settings_wp.class.php:581
45
  #@ crayon-syntax-highlighter
 
 
46
  msgid "Pixels"
47
  msgstr "像素"
48
 
49
+ #: crayon_settings.class.php:137
50
+ #: crayon_settings.class.php:141
51
  #@ crayon-syntax-highlighter
 
 
52
  msgid "Percent"
53
  msgstr "百分比"
54
 
55
+ #: crayon_settings.class.php:150
56
  #@ crayon-syntax-highlighter
 
57
  msgid "None"
58
  msgstr "无"
59
 
60
+ #: crayon_settings.class.php:150
61
  #@ crayon-syntax-highlighter
 
62
  msgid "Left"
63
  msgstr "左"
64
 
65
+ #: crayon_settings.class.php:150
66
  #@ crayon-syntax-highlighter
 
67
  msgid "Center"
68
  msgstr "中"
69
 
70
+ #: crayon_settings.class.php:150
71
  #@ crayon-syntax-highlighter
 
72
  msgid "Right"
73
  msgstr "右"
74
 
75
+ #: crayon_settings.class.php:152
76
+ #: crayon_settings.class.php:174
77
  #@ crayon-syntax-highlighter
 
 
78
  msgid "On MouseOver"
79
  msgstr "鼠标悬浮"
80
 
81
+ #: crayon_settings.class.php:152
82
+ #: crayon_settings.class.php:158
83
  #@ crayon-syntax-highlighter
 
 
84
  msgid "Always"
85
  msgstr "始终"
86
 
87
+ #: crayon_settings.class.php:152
88
+ #: crayon_settings.class.php:158
89
  #@ crayon-syntax-highlighter
 
 
90
  msgid "Never"
91
  msgstr "从不"
92
 
93
+ #: crayon_settings.class.php:158
94
  #@ crayon-syntax-highlighter
 
95
  msgid "When Found"
96
  msgstr "如果找到"
97
 
98
+ #: crayon_settings.class.php:174
99
  #@ crayon-syntax-highlighter
 
100
  msgid "On Double Click"
101
  msgstr "鼠标双击"
102
 
103
+ #: crayon_settings.class.php:174
104
  #@ crayon-syntax-highlighter
 
105
  msgid "On Single Click"
106
  msgstr "鼠标单击"
107
 
108
+ #: crayon_settings.class.php:182
109
  #@ crayon-syntax-highlighter
 
110
  msgid "An error has occurred. Please try again later."
111
  msgstr "错误发生。请稍后再试。"
112
 
 
113
  #: crayon_settings_wp.class.php:39
114
  #: crayon_settings_wp.class.php:82
115
+ #: crayon_settings_wp.class.php:713
116
+ #@ crayon-syntax-highlighter
117
  msgid "Settings"
118
  msgstr "设置"
119
 
 
120
  #: crayon_settings_wp.class.php:73
121
+ #@ crayon-syntax-highlighter
122
  msgid "You do not have sufficient permissions to access this page."
123
  msgstr "你没有足够的权限访问当前页面"
124
 
 
125
  #: crayon_settings_wp.class.php:94
126
+ #@ crayon-syntax-highlighter
127
  msgid "Save Changes"
128
  msgstr "保存设置"
129
 
 
130
  #: crayon_settings_wp.class.php:100
131
+ #@ crayon-syntax-highlighter
132
  msgid "Reset Settings"
133
  msgstr "回复初始设置"
134
 
135
+ #: crayon_settings_wp.class.php:438
136
  #@ crayon-syntax-highlighter
 
137
  msgid "Height"
138
  msgstr "高度"
139
 
140
+ #: crayon_settings_wp.class.php:444
141
  #@ crayon-syntax-highlighter
 
142
  msgid "Width"
143
  msgstr "宽度"
144
 
145
+ #: crayon_settings_wp.class.php:450
146
  #@ crayon-syntax-highlighter
 
147
  msgid "Top Margin"
148
  msgstr "上边距"
149
 
150
+ #: crayon_settings_wp.class.php:451
151
  #@ crayon-syntax-highlighter
 
152
  msgid "Bottom Margin"
153
  msgstr "下边距"
154
 
155
+ #: crayon_settings_wp.class.php:452
156
+ #: crayon_settings_wp.class.php:457
157
  #@ crayon-syntax-highlighter
 
 
158
  msgid "Left Margin"
159
  msgstr "左边距"
160
 
161
+ #: crayon_settings_wp.class.php:453
162
+ #: crayon_settings_wp.class.php:457
163
  #@ crayon-syntax-highlighter
 
 
164
  msgid "Right Margin"
165
  msgstr "右边距"
166
 
167
+ #: crayon_settings_wp.class.php:463
168
  #@ crayon-syntax-highlighter
 
169
  msgid "Horizontal Alignment"
170
  msgstr "水平对齐"
171
 
172
+ #: crayon_settings_wp.class.php:466
173
  #@ crayon-syntax-highlighter
 
174
  msgid "Allow floating elements to surround Crayon"
175
  msgstr "允许浮动元素(Floating Elements)环绕Crayon"
176
 
177
+ #: crayon_settings_wp.class.php:474
178
  #@ crayon-syntax-highlighter
 
179
  msgid "Display the Toolbar"
180
  msgstr "显示工具栏"
181
 
182
+ #: crayon_settings_wp.class.php:477
183
  #@ crayon-syntax-highlighter
 
184
  msgid "Overlay the toolbar on code rather than push it down when possible"
185
  msgstr "在可能的情况下覆盖工具栏上的代码,而不是将代码向下推"
186
 
187
+ #: crayon_settings_wp.class.php:478
188
  #@ crayon-syntax-highlighter
 
189
  msgid "Toggle the toolbar on single click when it is overlayed"
190
  msgstr "当叠加时,使用鼠标单击来触发工具栏的切换"
191
 
192
+ #: crayon_settings_wp.class.php:479
193
  #@ crayon-syntax-highlighter
 
194
  msgid "Delay hiding the toolbar on MouseOut"
195
  msgstr "当鼠标移出时延迟工具栏的隐藏"
196
 
197
+ #: crayon_settings_wp.class.php:481
198
  #@ crayon-syntax-highlighter
 
199
  msgid "Display the title when provided"
200
  msgstr "显示被设置的标题"
201
 
202
+ #: crayon_settings_wp.class.php:482
203
  #@ crayon-syntax-highlighter
 
204
  msgid "Display the language"
205
  msgstr "显示编程语言"
206
 
207
+ #: crayon_settings_wp.class.php:487
208
  #@ crayon-syntax-highlighter
 
209
  msgid "Display striped code lines"
210
  msgstr "以条纹形式显示代码"
211
 
212
+ #: crayon_settings_wp.class.php:488
213
  #@ crayon-syntax-highlighter
 
214
  msgid "Enable line marking for important lines"
215
  msgstr "标记重要的行"
216
 
217
+ #: crayon_settings_wp.class.php:489
218
  #@ crayon-syntax-highlighter
 
219
  msgid "Display line numbers by default"
220
  msgstr "默认为每行编号"
221
 
222
+ #: crayon_settings_wp.class.php:490
223
  #@ crayon-syntax-highlighter
 
224
  msgid "Enable line number toggling"
225
  msgstr "启用行数切换"
226
 
227
+ #: crayon_settings_wp.class.php:491
228
  #@ crayon-syntax-highlighter
 
229
  msgid "Start line numbers from"
230
  msgstr "起始行数"
231
 
232
+ #: crayon_settings_wp.class.php:501
233
  #@ crayon-syntax-highlighter
 
234
  msgid "When no language is provided, use the fallback"
235
  msgstr "当没有设置编程语言是,显示fallback language"
236
 
237
+ #: crayon_settings_wp.class.php:509
238
  #@ crayon-syntax-highlighter
 
239
  msgid "Parsing was successful"
240
  msgstr "装载成功"
241
 
242
+ #: crayon_settings_wp.class.php:509
243
  #@ crayon-syntax-highlighter
 
244
  msgid "Parsing was unsuccessful"
245
  msgstr "装载失败"
246
 
247
+ #: crayon_settings_wp.class.php:515
 
248
  #, php-format
249
+ #@ crayon-syntax-highlighter
250
  msgid "The selected language with id %s could not be loaded"
251
  msgstr "无法加载被选则的语言(ID:%s)"
252
 
253
+ #: crayon_settings_wp.class.php:519
254
  #@ crayon-syntax-highlighter
 
255
  msgid "Show Languages"
256
  msgstr "显示编程语言"
257
 
258
+ #: crayon_settings_wp.class.php:556
259
  #@ crayon-syntax-highlighter
 
260
  msgid "Enable Live Preview"
261
  msgstr "启用实时预览"
262
 
263
+ #: crayon_settings_wp.class.php:561
 
264
  #, php-format
265
+ #@ crayon-syntax-highlighter
266
  msgid "The selected theme with id %s could not be loaded"
267
  msgstr "无法加载被选则的主题(ID:%s)"
268
 
269
+ #: crayon_settings_wp.class.php:579
270
  #@ crayon-syntax-highlighter
 
271
  msgid "Custom Font Size"
272
  msgstr "自定义字号"
273
 
274
+ #: crayon_settings_wp.class.php:584
 
275
  #, php-format
276
+ #@ crayon-syntax-highlighter
277
  msgid "The selected font with id %s could not be loaded"
278
  msgstr "无法加载被选则的字体(ID:%s)"
279
 
280
+ #: crayon_settings_wp.class.php:591
281
  #@ crayon-syntax-highlighter
 
282
  msgid "Enable plain code view and display"
283
  msgstr "启用普通视图显示代码"
284
 
285
+ #: crayon_settings_wp.class.php:596
286
  #@ crayon-syntax-highlighter
 
287
  msgid "Enable code copy/paste"
288
  msgstr "启用复制粘贴"
289
 
290
+ #: crayon_settings_wp.class.php:598
291
  #@ crayon-syntax-highlighter
 
292
  msgid "Enable opening code in a window"
293
  msgstr "启用在新窗口中显示代码"
294
 
295
+ #: crayon_settings_wp.class.php:600
296
  #@ crayon-syntax-highlighter
 
297
  msgid "Tab size in spaces"
298
  msgstr "空格数代替Tab"
299
 
300
+ #: crayon_settings_wp.class.php:602
301
  #@ crayon-syntax-highlighter
 
302
  msgid "Remove whitespace surrounding the shortcode content"
303
  msgstr "删除短代码周围的Whitespace"
304
 
305
+ #: crayon_settings_wp.class.php:618
306
  #@ crayon-syntax-highlighter
 
307
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
308
  msgstr "当加载本地文件时,使用绝对路径"
309
 
310
+ #: crayon_settings_wp.class.php:625
311
  #@ crayon-syntax-highlighter
 
312
  msgid "Clear the cache used to store remote code requests"
313
  msgstr "清除用于远程存储代码的缓存"
314
 
315
+ #: crayon_settings_wp.class.php:627
316
  #@ crayon-syntax-highlighter
 
317
  msgid "Clear Now"
318
  msgstr "现在清除"
319
 
320
+ #: crayon_settings_wp.class.php:632
321
  #@ crayon-syntax-highlighter
 
322
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
323
  msgstr "为触屏设备停用鼠标手势(如MouseOver)"
324
 
325
+ #: crayon_settings_wp.class.php:633
326
  #@ crayon-syntax-highlighter
 
327
  msgid "Disable animations"
328
  msgstr "禁用动画"
329
 
330
+ #: crayon_settings_wp.class.php:634
331
  #@ crayon-syntax-highlighter
 
332
  msgid "Disable runtime stats"
333
  msgstr "禁用实时数据"
334
 
335
+ #: crayon_settings_wp.class.php:641
336
  #@ crayon-syntax-highlighter
 
337
  msgid "Log errors for individual Crayons"
338
  msgstr "为独立的Crayon启用错误日志"
339
 
340
+ #: crayon_settings_wp.class.php:642
341
  #@ crayon-syntax-highlighter
 
342
  msgid "Log system-wide errors"
343
  msgstr "启用系统日志"
344
 
345
+ #: crayon_settings_wp.class.php:643
346
  #@ crayon-syntax-highlighter
 
347
  msgid "Display custom message for errors"
348
  msgstr "显示错误的个性化消息"
349
 
350
+ #: crayon_settings_wp.class.php:655
351
  #@ crayon-syntax-highlighter
 
352
  msgid "Show Log"
353
  msgstr "显示日志"
354
 
355
+ #: crayon_settings_wp.class.php:657
356
  #@ crayon-syntax-highlighter
 
357
  msgid "Clear Log"
358
  msgstr "清空日志"
359
 
360
+ #: crayon_settings_wp.class.php:658
361
  #@ crayon-syntax-highlighter
 
362
  msgid "Email Admin"
363
  msgstr "Email 管理员"
364
 
365
+ #: crayon_settings_wp.class.php:660
366
  #@ crayon-syntax-highlighter
 
367
  msgid "Email Developer"
368
  msgstr "E-Mail 开发者"
369
 
370
+ #: crayon_settings_wp.class.php:676
371
  #@ crayon-syntax-highlighter
 
372
  msgid "Version"
373
  msgstr "Version"
374
 
375
+ #: crayon_settings_wp.class.php:678
376
  #@ crayon-syntax-highlighter
 
377
  msgid "Developer"
378
  msgstr "开发者"
379
 
380
+ #: crayon_settings_wp.class.php:701
381
  #@ crayon-syntax-highlighter
 
382
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
383
  msgstr "Crayon是数月辛勤劳动的结果,为了让它不断的完善,如果你喜欢它,请告诉我!"
384
 
385
+ #: crayon_settings_wp.class.php:553
 
386
  #, php-format
387
+ #@ crayon-syntax-highlighter
388
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
389
  msgstr "更改 %1$sfallback language%2$s 来更改示例. 5-7行是被标记的行"
390
 
391
+ #: crayon_settings.class.php:106
392
  #@ crayon-syntax-highlighter
 
393
  msgid "Hourly"
394
  msgstr "每小时"
395
 
396
+ #: crayon_settings.class.php:106
397
  #@ crayon-syntax-highlighter
 
398
  msgid "Daily"
399
  msgstr "每天"
400
 
401
+ #: crayon_settings.class.php:107
402
  #@ crayon-syntax-highlighter
 
403
  msgid "Weekly"
404
  msgstr "每星期"
405
 
406
+ #: crayon_settings.class.php:107
407
  #@ crayon-syntax-highlighter
 
408
  msgid "Monthly"
409
  msgstr "每月"
410
 
411
+ #: crayon_settings.class.php:108
412
  #@ crayon-syntax-highlighter
 
413
  msgid "Immediately"
414
  msgstr "现在"
415
 
416
+ #: crayon_settings_wp.class.php:424
417
  #@ crayon-syntax-highlighter
 
418
  msgid "Crayon Help"
419
  msgstr "Crayon 帮助"
420
 
421
+ #: crayon_settings_wp.class.php:628
422
  #@ crayon-syntax-highlighter
 
423
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
424
  msgstr "仅在用到时才加载 Crayon 的 CSS 和 JavaScript "
425
 
426
+ #: crayon_settings_wp.class.php:621
427
  #@ crayon-syntax-highlighter
 
428
  msgid "Followed by your relative URL."
429
  msgstr "跟随你的相对URL."
430
 
431
+ #: crayon_settings_wp.class.php:662
432
  #@ crayon-syntax-highlighter
 
433
  msgid "The log is currently empty."
434
  msgstr "日志为空"
435
 
436
+ #: crayon_settings_wp.class.php:664
437
  #@ crayon-syntax-highlighter
 
438
  msgid "The log file exists and is writable."
439
  msgstr "日志存在并且是可编辑状态"
440
 
441
+ #: crayon_settings_wp.class.php:664
442
  #@ crayon-syntax-highlighter
 
443
  msgid "The log file exists and is not writable."
444
  msgstr "日志存在但无法编辑"
445
 
446
+ #: crayon_settings_wp.class.php:666
447
  #@ crayon-syntax-highlighter
 
448
  msgid "The log file does not exist and is not writable."
449
  msgstr "日志不存在且无法编辑"
450
 
451
+ #: crayon_settings_wp.class.php:508
 
452
  #, php-format
453
+ #@ crayon-syntax-highlighter
454
  msgid "%d language has been detected."
455
  msgid_plural "%d languages have been detected."
456
  msgstr[0] "没有找到 %d 语言"
457
  msgstr[1] "没有找到 %d 相关的语言"
458
 
459
+ #: crayon_settings_wp.class.php:612
460
  #@ crayon-syntax-highlighter
 
461
  msgid "Capture &lt;pre&gt; tags as Crayons"
462
  msgstr "用Crayon显示 &lt;pre&gt; 标签"
463
 
464
+ #: crayon_settings_wp.class.php:558
465
+ #: crayon_settings_wp.class.php:587
466
+ #: crayon_settings_wp.class.php:603
467
+ #: crayon_settings_wp.class.php:608
468
+ #: crayon_settings_wp.class.php:609
469
+ #: crayon_settings_wp.class.php:610
470
+ #: crayon_settings_wp.class.php:611
471
+ #: crayon_settings_wp.class.php:612
472
+ #: crayon_settings_wp.class.php:613
473
+ #: crayon_settings_wp.class.php:628
474
+ #: crayon_settings_wp.class.php:629
475
  #@ crayon-syntax-highlighter
 
 
 
 
 
 
 
476
  msgid "Learn More"
477
  msgstr "了解更多"
478
 
479
+ #: crayon_settings_wp.class.php:604
480
  #@ crayon-syntax-highlighter
 
481
  msgid "Show Mixed Language Icon (+)"
482
  msgstr "显示混合语言标识 (+)"
483
 
484
+ #: crayon_settings_wp.class.php:603
485
  #@ crayon-syntax-highlighter
 
486
  msgid "Allow Mixed Language Highlighting with delimiters and tags."
487
  msgstr "允许混合语言加亮用分隔符和标签"
488
 
489
+ #: crayon_settings_wp.class.php:608
490
  #@ crayon-syntax-highlighter
 
491
  msgid "Capture Mini Tags like [php][/php] as Crayons."
492
  msgstr "使用 Crayons 显示类似 [php] [/php] 的迷你标签."
493
 
494
+ #: crayon_settings_wp.class.php:613
495
  #@ crayon-syntax-highlighter
 
496
  msgid "Enable [plain][/plain] tag."
497
  msgstr "启用 [plain] [/plain] 标签."
498
 
499
+ #: crayon_settings.class.php:174
500
  #@ crayon-syntax-highlighter
 
501
  msgid "Disable Mouse Events"
502
  msgstr "禁用鼠标事件"
503
 
504
+ #: crayon_settings_wp.class.php:594
505
  #@ crayon-syntax-highlighter
 
506
  msgid "Enable plain code toggling"
507
  msgstr "启用纯文本切换"
508
 
509
+ #: crayon_settings_wp.class.php:595
510
  #@ crayon-syntax-highlighter
 
511
  msgid "Show the plain code by default"
512
  msgstr "默认显示纯文本"
513
 
 
514
  #. translators: plugin header field 'Name'
515
  #: crayon_wp.class.php:0
516
+ #@ crayon-syntax-highlighter
517
  msgid "Crayon Syntax Highlighter"
518
  msgstr ""
519
 
 
520
  #. translators: plugin header field 'AuthorURI'
521
  #: crayon_wp.class.php:0
522
+ #@ crayon-syntax-highlighter
523
  msgid "http://ak.net84.net/"
524
  msgstr ""
525
 
 
526
  #. translators: plugin header field 'Author'
527
  #: crayon_wp.class.php:0
528
+ #@ crayon-syntax-highlighter
529
  msgid "Aram Kocharyan"
530
  msgstr ""
531
 
 
532
  #. translators: plugin header field 'PluginURI'
533
  #: crayon_wp.class.php:0
534
+ #@ crayon-syntax-highlighter
535
  msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
536
  msgstr ""
537
 
 
538
  #. translators: plugin header field 'Description'
539
  #: crayon_wp.class.php:0
540
+ #@ crayon-syntax-highlighter
541
  msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
542
  msgstr "支持多重语言,主题,高亮来自于一个URL,本地文件或博客日志"
543
 
544
+ #: crayon_settings_wp.class.php:717
545
  #@ crayon-syntax-highlighter
 
546
  msgid "Donate"
547
  msgstr "捐助"
548
 
 
549
  #: crayon_settings_wp.class.php:219
550
+ #@ crayon-syntax-highlighter
551
  msgid "General"
552
  msgstr "常规"
553
 
 
554
  #: crayon_settings_wp.class.php:220
555
+ #@ crayon-syntax-highlighter
556
  msgid "Theme"
557
  msgstr "主题"
558
 
 
559
  #: crayon_settings_wp.class.php:221
560
+ #@ crayon-syntax-highlighter
561
  msgid "Font"
562
  msgstr "字体"
563
 
 
564
  #: crayon_settings_wp.class.php:222
565
+ #@ crayon-syntax-highlighter
566
  msgid "Metrics"
567
  msgstr "排版"
568
 
 
569
  #: crayon_settings_wp.class.php:223
570
+ #@ crayon-syntax-highlighter
571
  msgid "Toolbar"
572
  msgstr "工具栏"
573
 
 
574
  #: crayon_settings_wp.class.php:224
575
+ #@ crayon-syntax-highlighter
576
  msgid "Lines"
577
  msgstr "行"
578
 
 
579
  #: crayon_settings_wp.class.php:225
580
+ #@ crayon-syntax-highlighter
581
  msgid "Code"
582
  msgstr "代码"
583
 
584
+ #: crayon_settings_wp.class.php:227
585
  #@ crayon-syntax-highlighter
 
586
  msgid "Languages"
587
  msgstr "语言"
588
 
589
+ #: crayon_settings_wp.class.php:228
590
  #@ crayon-syntax-highlighter
 
591
  msgid "Files"
592
  msgstr "文件"
593
 
594
+ #: crayon_settings_wp.class.php:229
595
  #@ crayon-syntax-highlighter
 
596
  msgid "Misc"
597
  msgstr "其他"
598
 
599
+ #: crayon_settings_wp.class.php:232
600
  #@ crayon-syntax-highlighter
 
601
  msgid "Debug"
602
  msgstr "Debug"
603
 
604
+ #: crayon_settings_wp.class.php:233
605
  #@ crayon-syntax-highlighter
 
606
  msgid "Errors"
607
  msgstr "错误"
608
 
609
+ #: crayon_settings_wp.class.php:234
610
  #@ crayon-syntax-highlighter
 
611
  msgid "Log"
612
  msgstr "日志"
613
 
614
+ #: crayon_settings_wp.class.php:237
615
  #@ crayon-syntax-highlighter
 
616
  msgid "About"
617
  msgstr "关于"
618
 
619
+ #: crayon_settings_wp.class.php:558
620
  #@ crayon-syntax-highlighter
 
621
  msgid "Enqueue themes in the header (more efficient)."
622
  msgstr "主题在 header 里加载(更有效率)"
623
 
624
+ #: crayon_settings_wp.class.php:587
625
  #@ crayon-syntax-highlighter
 
626
  msgid "Enqueue fonts in the header (more efficient)."
627
  msgstr "字体在 header 里加载(更有效率)"
628
 
629
+ #: crayon_settings_wp.class.php:549
630
  #@ crayon-syntax-highlighter
 
631
  msgid "Loading..."
632
  msgstr "加载中。。。"
633
 
634
+ #: crayon_settings_wp.class.php:549
635
+ #: crayon_settings_wp.class.php:715
 
636
  #: util/theme-editor/editor.php:14
637
+ #@ crayon-syntax-highlighter
638
  msgid "Theme Editor"
639
  msgstr "主题编辑器"
640
 
641
+ #: crayon_settings_wp.class.php:599
642
  #@ crayon-syntax-highlighter
 
643
  msgid "Always display scrollbars"
644
  msgstr "总是显示滚动条"
645
 
646
+ #: crayon_settings_wp.class.php:629
647
  #@ crayon-syntax-highlighter
 
648
  msgid "Disable enqueuing for page templates that may contain The Loop."
649
  msgstr "当可能造成循环时禁用加载页面模板"
650
 
651
+ #: crayon_settings_wp.class.php:631
652
  #@ crayon-syntax-highlighter
 
653
  msgid "Load Crayons only from the main Wordpress query"
654
  msgstr "只有在主要 Wordpress 请求时在显示 Crayon"
655
 
 
656
  #: util/theme-editor/editor.php:16
657
+ #@ crayon-syntax-highlighter
658
  msgid "Back To Settings"
659
  msgstr "回到设置"
660
 
661
+ #: crayon_settings_wp.class.php:679
662
  #@ crayon-syntax-highlighter
 
663
  msgid "Translators"
664
  msgstr "翻译者"
665
 
666
+ #: crayon_formatter.class.php:270
667
  #@ crayon-syntax-highlighter
 
668
  msgid "Toggle Plain Code"
669
  msgstr "切换时显示纯文本"
670
 
671
+ #: crayon_formatter.class.php:272
672
  #@ crayon-syntax-highlighter
 
673
  msgid "Copy Plain Code"
674
  msgstr "复制纯文本"
675
 
676
+ #: crayon_formatter.class.php:278
677
  #@ crayon-syntax-highlighter
 
678
  msgid "Open Code In New Window"
679
  msgstr "在新窗口中显示代码"
680
 
681
+ #: crayon_formatter.class.php:281
682
  #@ crayon-syntax-highlighter
 
683
  msgid "Toggle Line Numbers"
684
  msgstr "编号开关"
685
 
686
+ #: crayon_formatter.class.php:288
687
  #@ crayon-syntax-highlighter
 
688
  msgid "Contains Mixed Languages"
689
  msgstr "含有多种语言"
690
 
691
+ #: crayon_settings_wp.class.php:655
692
  #@ crayon-syntax-highlighter
 
693
  msgid "Hide Log"
694
  msgstr "隐藏日志"
695
 
696
+ #: crayon_formatter.class.php:272
697
+ #, php-format
698
  #@ crayon-syntax-highlighter
699
+ msgid "Press %s to Copy, %s to Paste"
700
+ msgstr "按下 %s 复制, %s 粘贴"
701
+
702
+ #: crayon_settings_wp.class.php:226
703
+ #@ crayon-syntax-highlighter
704
+ msgid "Tags"
705
+ msgstr "标签"
706
+
707
+ #: crayon_settings_wp.class.php:468
708
+ #@ crayon-syntax-highlighter
709
+ msgid "Inline Margin"
710
+ msgstr "内嵌保证金"
711
+
712
+ #: crayon_settings_wp.class.php:609
713
+ #@ crayon-syntax-highlighter
714
+ msgid "Capture Inline Tags like {php}{/php} inside sentences."
715
+ msgstr "捕捉内标签,如 {php}{/php} 里面的句子。"
716
+
717
+ #: crayon_settings_wp.class.php:611
718
+ #@ crayon-syntax-highlighter
719
+ msgid "Capture `backquotes` as &lt;code&gt;"
720
+ msgstr "为&lt;code&gt;捕捉`反引号`"
721
+
722
+ #: crayon_settings_wp.class.php:630
723
+ #@ crayon-syntax-highlighter
724
+ msgid "Allow Crayons inside comments"
725
+ msgstr "允许内部意见蜡笔"
726
+
727
  #. translators: plugin header field 'Version'
728
  #: crayon_wp.class.php:0
729
+ #@ crayon-syntax-highlighter
730
+ msgid "1.8.2"
731
  msgstr ""
732
 
733
+ #: crayon_settings_wp.class.php:610
734
  #@ crayon-syntax-highlighter
735
+ msgid "Wrap Inline Tags"
736
+ msgstr ""
 
 
737
 
util/sample/apache.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ RewriteEngine On
2
+ RewriteCond %{DOCUMENT_ROOT}/cache%{REQUEST_URI}.html -f
3
+ RewriteRule ^(.*)$ /cache/$1.html [QSA,L]
util/sample/html.txt DELETED
@@ -1,10 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Hello HTML</title>
5
- </head>
6
- <body class="hello">
7
- <!-- Howdy -->
8
- <p style="font-size: 12px;">Hello World!</p>
9
- </body>
10
- </html>
 
 
 
 
 
 
 
 
 
 
util/sample/lua.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ fibs = { 1, 1 } -- Initial values for fibs[1] and fibs[2].
2
+ setmetatable(fibs, {
3
+ __index = function(name, n) -- Call this function if fibs[n] does not exist.
4
+ name[n] = name[n - 1] + name[n - 2] -- Calculate and memoize fibs[n].
5
+ return name[n]
6
+ end
7
+ })
util/sample/yaml.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ ---
2
+ receipt: Oz-Ware Purchase Invoice
3
+ date: 2007-08-06
4
+ customer:
5
+ given: "Dorothy"
6
+ family: Gale
7
+ ...