Crayon Syntax Highlighter - Version 1.7.3

Version Description

  • Added Mini Tags and Plain Tags into Crayon. http://bit.ly/rRZuzk
  • Fixed a bug causing RSS feeds to contain malformed HTML of Crayons, now it shows plain code with correct indentations. Thanks to .
  • Updated help in Settings and http://ak.net84.net/projects/crayon-syntax-highlighter/
Download this release

Release Info

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

Code changes from version 1.6.5 to 1.7.3

crayon_formatter.class.php CHANGED
@@ -22,7 +22,7 @@ class CrayonFormatter {
22
  if ($language != NULL && $highlight) {
23
  /* Perform the replace on the code using the regex, pass the captured matches for
24
  formatting before they are replaced */
25
- try {
26
  // Match language regex
27
  $elements = $language->elements();
28
  $regex = $language->regex();
@@ -50,9 +50,14 @@ class CrayonFormatter {
50
  $captured_group_number = count($matches) - 2;
51
  if (array_key_exists($captured_group_number, self::$elements)) {
52
  $captured_element = self::$elements[$captured_group_number];
53
- // Separate lines and add css class.
54
- $css = $captured_element->css() . CrayonLangs::known_elements($captured_element->fallback());
55
- return self::split_lines($matches[0], $css);
 
 
 
 
 
56
  }
57
  }
58
 
@@ -203,7 +208,8 @@ class CrayonFormatter {
203
  /* The table is rendered invisible by CSS and enabled with JS when asked to. If JS
204
  is not enabled or fails, the toolbar won't work so there is no point to display it. */
205
 
206
- $buttons = $print_nums_button.$print_copy_button.$print_popup_button.$print_plain_button.$print_lang;
 
207
  $button_preload = '';
208
  foreach (array('nums', 'copy', 'popup', 'plain') as $name) {
209
  $button_preload .= '<a href="#" class="crayon-'.$name.'-button crayon-button crayon-pressed crayon-invisible"></a>';
@@ -414,19 +420,26 @@ class CrayonFormatter {
414
  $code = preg_replace('| |', '&nbsp;&nbsp;', $code);
415
  // Replace tabs with 4 spaces
416
  $code = preg_replace('|\t|', str_repeat('&nbsp;', CrayonGlobalSettings::val(CrayonSettings::TAB_SIZE)), $code);
417
- /* $code = preg_replace('|\t|', ' ', $code);
418
- // Add a line break for empty lines
419
- $code = preg_replace('|^$|m', ' ', $code); // CRAYON_BR ^\r$\n becomes ^\r<br/>\n
420
- // The last line can be entirely blank, without any \n, we need to make it render as a
421
- // blank line, just like in a text editor when you do a \n
422
- $code = preg_replace('|$\r?\n|', "\n ", $code);*/
423
  return $code;
424
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
425
 
426
  public static function split_lines($code, $class) {
427
  $code = self::clean_code($code);
428
- $code = preg_replace('|^|m', "<span class=\"$class\">", $code);
429
- $code = preg_replace('|$|m', "</span>", $code);
430
  return $code;
431
  }
432
 
22
  if ($language != NULL && $highlight) {
23
  /* Perform the replace on the code using the regex, pass the captured matches for
24
  formatting before they are replaced */
25
+ try {
26
  // Match language regex
27
  $elements = $language->elements();
28
  $regex = $language->regex();
50
  $captured_group_number = count($matches) - 2;
51
  if (array_key_exists($captured_group_number, self::$elements)) {
52
  $captured_element = self::$elements[$captured_group_number];
53
+ // Avoid capturing and formatting internal Crayon elements
54
+ if ($captured_element->name() == CrayonParser::CRAYON_ELEMENT) {
55
+ return $matches[0]; // Return as is
56
+ } else {
57
+ // Separate lines and add css class.
58
+ $css = $captured_element->css() . CrayonLangs::known_elements($captured_element->fallback());
59
+ return self::split_lines($matches[0], $css);
60
+ }
61
  }
62
  }
63
 
208
  /* The table is rendered invisible by CSS and enabled with JS when asked to. If JS
209
  is not enabled or fails, the toolbar won't work so there is no point to display it. */
210
 
211
+ $print_plus = $hl->is_mixed() && $hl->setting_val(CrayonSettings::SHOW_MIXED) ? '<span class="crayon-mixed-highlight" title="Contains Mixed Languages"></span>' : '';
212
+ $buttons = $print_plus.$print_nums_button.$print_copy_button.$print_popup_button.$print_plain_button.$print_lang;
213
  $button_preload = '';
214
  foreach (array('nums', 'copy', 'popup', 'plain') as $name) {
215
  $button_preload .= '<a href="#" class="crayon-'.$name.'-button crayon-button crayon-pressed crayon-invisible"></a>';
420
  $code = preg_replace('| |', '&nbsp;&nbsp;', $code);
421
  // Replace tabs with 4 spaces
422
  $code = preg_replace('|\t|', str_repeat('&nbsp;', CrayonGlobalSettings::val(CrayonSettings::TAB_SIZE)), $code);
 
 
 
 
 
 
423
  return $code;
424
  }
425
+
426
+ /* Converts the code to entities and wraps in a <pre><code></code></pre> */
427
+ public static function plain_code($code) {
428
+ if (is_array($code)) {
429
+ // When used as a preg_replace_callback
430
+ $code = $code[1];
431
+ }
432
+ $code = CrayonUtil::htmlentities($code);
433
+ if (CrayonGlobalSettings::val(CrayonSettings::TRIM_WHITESPACE)) {
434
+ $code = trim($code);
435
+ }
436
+ return '<pre><code>'.$code.'</code></pre>';
437
+ }
438
 
439
  public static function split_lines($code, $class) {
440
  $code = self::clean_code($code);
441
+ $code = preg_replace('|^|m', '<span class="'.$class.'">', $code);
442
+ $code = preg_replace('|$|m', '</span>', $code);
443
  return $code;
444
  }
445
 
crayon_highlighter.class.php CHANGED
@@ -23,6 +23,8 @@ class CrayonHighlighter {
23
  private $needs_format = TRUE;
24
  // Record the script run times
25
  private $runtime = array();
 
 
26
 
27
  // Objects
28
  // Stores the CrayonLang being used
@@ -130,7 +132,7 @@ class CrayonHighlighter {
130
  }
131
 
132
  /* Central point of access for all other functions to update code. */
133
- private function process($highlight = TRUE) {
134
  $tmr = new CrayonTimer();
135
  $this->runtime = NULL;
136
  if ($this->needs_load) {
@@ -158,8 +160,101 @@ class CrayonHighlighter {
158
  if ($this->needs_format) {
159
  $tmr->start();
160
  try {
161
- // Format the code with the generated regex and elements
162
- $this->formatted_code = CrayonFormatter::format_code($this->code, $this->language, $highlight, $this);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  } catch (Exception $e) {
164
  $this->error($e->message());
165
  return;
@@ -168,6 +263,12 @@ class CrayonHighlighter {
168
  $this->runtime[CRAYON_FORMAT_TIME] = $tmr->stop();
169
  }
170
  }
 
 
 
 
 
 
171
 
172
  /* Sends the code to the formatter for printing. Apart from the getters and setters, this is
173
  the only other function accessible outside this class. $show_lines can also be a string. */
@@ -340,5 +441,9 @@ class CrayonHighlighter {
340
  function runtime() {
341
  return $this->runtime;
342
  }
 
 
 
 
343
  }
344
  ?>
23
  private $needs_format = TRUE;
24
  // Record the script run times
25
  private $runtime = array();
26
+ // Whether the code is mixed
27
+ private $is_mixed = FALSE;
28
 
29
  // Objects
30
  // Stores the CrayonLang being used
132
  }
133
 
134
  /* Central point of access for all other functions to update code. */
135
+ public function process($highlight = TRUE) {
136
  $tmr = new CrayonTimer();
137
  $this->runtime = NULL;
138
  if ($this->needs_load) {
160
  if ($this->needs_format) {
161
  $tmr->start();
162
  try {
163
+
164
+ if (!$this->setting_val(CrayonSettings::MIXED)) {
165
+ // Format the code with the generated regex and elements
166
+ $this->formatted_code = CrayonFormatter::format_code($this->code, $this->language, $highlight, $this);
167
+ } else {
168
+
169
+ // Remove crayon internal element from input code
170
+ $this->code = preg_replace('#'.CrayonParser::CRAYON_ELEMENT_REGEX_CAPTURE.'#msi', '', $this->code);
171
+
172
+ /* Stores the pieces of code in different languages.
173
+ * Each element is array($start_index, $end_index, $code)
174
+ * More than one language can add matches, so we need to keep this array sorted by $start_index
175
+ * and also ensure there is no overlap between matches as we add more matches. We then use the indicies
176
+ * to concatenate the highlighted code and the code left over is used as glue between them.
177
+ */
178
+ $pieces = array();
179
+ $orignal_code = $this->code;
180
+ $delimiters = CrayonResources::langs()->delimiters();
181
+ $piece_id = 1;
182
+
183
+ // Find all delimiters in all languages
184
+ foreach ($delimiters as $lang_id=>$delim_regex) {
185
+ if ( ($lang = CrayonResources::langs()->get($lang_id)) === NULL ) {
186
+ continue;
187
+ }
188
+
189
+ // Get the regex and find matches
190
+ preg_match_all($delim_regex, $orignal_code, $delim_matches, PREG_OFFSET_CAPTURE);
191
+ $length_offset = 0;
192
+
193
+ // No instance of delimiter used
194
+ if (empty($delim_matches[0])) {
195
+ continue;
196
+ }
197
+
198
+ CrayonParser::parse($lang_id);
199
+ foreach ($delim_matches[0] as $match) {
200
+ $code = $match[0];
201
+
202
+ if (strlen($code) == 0) {
203
+ continue;
204
+ }
205
+
206
+ $start_index = $match[1] + $length_offset;
207
+ $length = strlen($code);
208
+ $end_index = $start_index + strlen($code)-1;
209
+
210
+ $formatted_code = CrayonFormatter::format_code($code, $lang, $highlight, $this);
211
+
212
+ $pieces[$piece_id] = $formatted_code;
213
+ $crayon_element = sprintf('{{crayon-internal:%d}}', $piece_id);
214
+
215
+ // Replace the code in the original code with the internal element for now
216
+ $orignal_code = substr_replace($orignal_code, $crayon_element, $start_index, $length);
217
+
218
+ // Replacing the code with the internal element will invalidate $match[1] index
219
+ $length_offset += strlen($crayon_element) - $length;
220
+ $piece_id++;
221
+ $this->is_mixed = TRUE;
222
+ }
223
+ }
224
+
225
+ // Format the non-delimited code under the given language
226
+ $orignal_code = CrayonFormatter::format_code($orignal_code, $this->language, $highlight, $this);
227
+
228
+ if ($this->is_mixed) {
229
+ preg_match_all('#'.CrayonParser::CRAYON_ELEMENT_REGEX_CAPTURE.'#msi', $orignal_code, $delim_matches, PREG_OFFSET_CAPTURE);
230
+
231
+ // Replace the crayon elements with the formatted code pieces
232
+ $length_offset = 0;
233
+ for ($i = 0; $i < count($delim_matches[0]); $i++) {
234
+ $crayon_element = $delim_matches[0][$i][0];
235
+ $start_index = $delim_matches[0][$i][1] + $length_offset;
236
+ $length = strlen($crayon_element);
237
+
238
+ $piece_id = intval($delim_matches[1][$i][0]);
239
+ if ($piece_id < 1 || !array_key_exists($piece_id, $pieces)) {
240
+ // Not a valid piece id
241
+ continue;
242
+ }
243
+
244
+ $formatted_code = $pieces[$piece_id];
245
+
246
+ // Replace the internal element in the formatted code with the formatted delimited formatted
247
+ $orignal_code = substr_replace($orignal_code, $formatted_code, $start_index, $length);
248
+
249
+ // Replacing will invalidate index
250
+ $length_offset += strlen($formatted_code) - $length;
251
+ }
252
+ }
253
+
254
+ // Apply the changes
255
+ $this->formatted_code = $orignal_code;
256
+ }
257
+
258
  } catch (Exception $e) {
259
  $this->error($e->message());
260
  return;
263
  $this->runtime[CRAYON_FORMAT_TIME] = $tmr->stop();
264
  }
265
  }
266
+
267
+ /* Used to format the glue in between code when finding mixed languages */
268
+ private function format_glue($glue, $highlight = TRUE) {
269
+ // TODO $highlight
270
+ return CrayonFormatter::format_code($glue, $this->language, $highlight, $this);
271
+ }
272
 
273
  /* Sends the code to the formatter for printing. Apart from the getters and setters, this is
274
  the only other function accessible outside this class. $show_lines can also be a string. */
441
  function runtime() {
442
  return $this->runtime;
443
  }
444
+
445
+ function is_mixed() {
446
+ return $this->is_mixed;
447
+ }
448
  }
449
  ?>
crayon_langs.class.php CHANGED
@@ -2,19 +2,30 @@
2
  require_once ('global.php');
3
  require_once (CRAYON_RESOURCE_PHP);
4
 
 
 
 
 
 
 
5
  /* Manages languages once they are loaded. The parser directly loads them, saves them here. */
6
  class CrayonLangs extends CrayonResourceCollection {
7
  // Properties and Constants ===============================================
8
  // CSS classes for known elements
9
  private static $known_elements = array('COMMENT' => 'c', 'STRING' => 's', 'KEYWORD' => 'k',
10
- 'STATEMENT' => 'st', 'RESERVED' => 'r', 'TYPE' => 't', 'MODIFIER' => 'm', 'IDENTIFIER' => 'i',
11
  'ENTITY' => 'e', 'VARIABLE' => 'v', 'CONSTANT' => 'cn', 'OPERATOR' => 'o', 'SYMBOL' => 'sy',
12
- 'NOTATION' => 'n', 'FADED' => 'f', CrayonParser::HTML_CHAR => 'h');
13
  const DEFAULT_LANG = 'default';
14
  const DEFAULT_LANG_NAME = 'Default';
15
 
16
- // Assoc. array of exts to lang id
17
- private static $exts = array();
 
 
 
 
 
18
 
19
  // Methods ================================================================
20
  public function __construct() {
@@ -32,6 +43,7 @@ class CrayonLangs extends CrayonResourceCollection {
32
  parent::load_process();
33
  $this->load_exts();
34
  $this->load_aliases();
 
35
  }
36
 
37
  // XXX Override
@@ -105,6 +117,20 @@ class CrayonLangs extends CrayonResourceCollection {
105
  }
106
  }
107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  // Used to load aliases and extensions to languages
109
  private function load_attr_file($path) {
110
  if ( ($lines = CrayonUtil::lines($path, 'lwc')) !== FALSE) {
@@ -113,7 +139,6 @@ class CrayonLangs extends CrayonResourceCollection {
113
  preg_match('#^[\t ]*([^\r\n\t ]+)[\t ]+([^\r\n]+)#', $line, $matches);
114
  if (count($matches) == 3 && $lang = $this->get($matches[1])) {
115
  // If the langauges of the attribute exists, return it in an array
116
- $matches[2] = str_replace('.', '', $matches[2]);
117
  // TODO merge instead of replace key?
118
  $attributes[$matches[1]] = explode(' ', $matches[2]);
119
  }
@@ -146,6 +171,60 @@ class CrayonLangs extends CrayonResourceCollection {
146
  }
147
  return FALSE;
148
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
 
150
  /* Return the array of valid elements or a particular element value */
151
  public static function known_elements($name = NULL) {
@@ -197,6 +276,7 @@ class CrayonLangs extends CrayonResourceCollection {
197
  class CrayonLang extends CrayonVersionResource {
198
  private $ext = array();
199
  private $aliases = array();
 
200
  // Associative array of CrayonElement objects
201
  private $elements = array();
202
  //private $regex = '';
@@ -219,6 +299,8 @@ class CrayonLang extends CrayonVersionResource {
219
  $this->ext($e);
220
  }
221
  } else if (is_string($ext) && !empty($ext) && !in_array($ext, $this->ext)) {
 
 
222
  $this->ext[] = $ext;
223
  }
224
  }
@@ -235,6 +317,7 @@ class CrayonLang extends CrayonVersionResource {
235
  $this->alias($a);
236
  }
237
  } else if (is_string($alias) && !empty($alias) && !in_array($alias, $this->aliases)) {
 
238
  $this->aliases[] = $alias;
239
  }
240
  }
@@ -242,6 +325,17 @@ class CrayonLang extends CrayonVersionResource {
242
  function has_alias($alias) {
243
  return is_string($alias) && in_array($alias, $this->aliases);
244
  }
 
 
 
 
 
 
 
 
 
 
 
245
 
246
  function regex($element = NULL) {
247
  if ($element == NULL) {
@@ -249,7 +343,7 @@ class CrayonLang extends CrayonVersionResource {
249
  foreach ($this->elements as $element) {
250
  $regexes[] = $element->regex();
251
  }
252
- return '#' . '(?:(' . implode(')|(', array_values($regexes)) . '))' . '#' .
253
  ($this->mode(CrayonParser::CASE_INSENSITIVE) ? 'i' : '') .
254
  ($this->mode(CrayonParser::MULTI_LINE) ? 'm' : '') .
255
  ($this->mode(CrayonParser::SINGLE_LINE) ? 's' : '');
2
  require_once ('global.php');
3
  require_once (CRAYON_RESOURCE_PHP);
4
 
5
+ class CrayonLangsResourceType {
6
+ const EXTENSION = 0;
7
+ const ALIAS = 1;
8
+ const DELIMITER = 2;
9
+ }
10
+
11
  /* Manages languages once they are loaded. The parser directly loads them, saves them here. */
12
  class CrayonLangs extends CrayonResourceCollection {
13
  // Properties and Constants ===============================================
14
  // CSS classes for known elements
15
  private static $known_elements = array('COMMENT' => 'c', 'STRING' => 's', 'KEYWORD' => 'k',
16
+ 'STATEMENT' => 'st', 'RESERVED' => 'r', 'TYPE' => 't', 'TAG' => 'ta', 'MODIFIER' => 'm', 'IDENTIFIER' => 'i',
17
  'ENTITY' => 'e', 'VARIABLE' => 'v', 'CONSTANT' => 'cn', 'OPERATOR' => 'o', 'SYMBOL' => 'sy',
18
+ 'NOTATION' => 'n', 'FADED' => 'f', CrayonParser::HTML_CHAR => 'h', CrayonParser::CRAYON_ELEMENT => 'crayon-internal-element');
19
  const DEFAULT_LANG = 'default';
20
  const DEFAULT_LANG_NAME = 'Default';
21
 
22
+ const RESOURCE_TYPE = 'CrayonLangsResourceType';
23
+
24
+ // Used to cache the objects, since they are unlikely to change during a single run
25
+ private static $resource_cache = array();
26
+ // private static $extensions = NULL;
27
+ // private static $aliases = NULL;
28
+ // private static $delimiters = NULL;
29
 
30
  // Methods ================================================================
31
  public function __construct() {
43
  parent::load_process();
44
  $this->load_exts();
45
  $this->load_aliases();
46
+ $this->load_delimiters(); // TODO check for setting?
47
  }
48
 
49
  // XXX Override
117
  }
118
  }
119
 
120
+ /* Load all extensions and add them into each language. */
121
+ private function load_delimiters() {
122
+ // Load only once
123
+ if (!$this->is_state_loading()) {
124
+ return;
125
+ }
126
+ if ( ($lang_delims = self::load_attr_file(CRAYON_LANG_DELIM)) !== FALSE ) {
127
+ foreach ($lang_delims as $lang_id=>$delims) {
128
+ $lang = $this->get($lang_id);
129
+ $lang->delimiter($delims);
130
+ }
131
+ }
132
+ }
133
+
134
  // Used to load aliases and extensions to languages
135
  private function load_attr_file($path) {
136
  if ( ($lines = CrayonUtil::lines($path, 'lwc')) !== FALSE) {
139
  preg_match('#^[\t ]*([^\r\n\t ]+)[\t ]+([^\r\n]+)#', $line, $matches);
140
  if (count($matches) == 3 && $lang = $this->get($matches[1])) {
141
  // If the langauges of the attribute exists, return it in an array
 
142
  // TODO merge instead of replace key?
143
  $attributes[$matches[1]] = explode(' ', $matches[2]);
144
  }
171
  }
172
  return FALSE;
173
  }
174
+
175
+ /* Fetches a resource. Type is an int from CrayonLangsResourceType. */
176
+ public function fetch($type, $reload = FALSE, $keep_empty_fetches = FALSE) {
177
+ $this->load();
178
+
179
+ if (!array_key_exists($type, self::$resource_cache) || $reload) {
180
+ $fetches = array();
181
+ foreach ($this->get() as $lang) {
182
+
183
+ switch ($type) {
184
+ case CrayonLangsResourceType::EXTENSION:
185
+ $fetch = $lang->ext();
186
+ break;
187
+ case CrayonLangsResourceType::ALIAS:
188
+ $fetch = $lang->alias();
189
+ break;
190
+ case CrayonLangsResourceType::DELIMITER:
191
+ $fetch = $lang->delimiter();
192
+ break;
193
+ default:
194
+ return FALSE;
195
+ }
196
+
197
+ if ( !empty($fetch) || $keep_empty_fetches ) {
198
+ $fetches[$lang->id()] = $fetch;
199
+ }
200
+ }
201
+ self::$resource_cache[$type] = $fetches;
202
+ }
203
+ return self::$resource_cache[$type];
204
+ }
205
+
206
+ public function extensions($reload = FALSE) {
207
+ return $this->fetch(CrayonLangsResourceType::EXTENSION, $reload);
208
+ }
209
+
210
+ public function aliases($reload = FALSE) {
211
+ return $this->fetch(CrayonLangsResourceType::ALIAS, $reload);
212
+ }
213
+
214
+ public function delimiters($reload = FALSE) {
215
+ return $this->fetch(CrayonLangsResourceType::DELIMITER, $reload);
216
+ }
217
+
218
+ public function ids_and_aliases($reload = FALSE) {
219
+ $fetch = $this->fetch(CrayonLangsResourceType::ALIAS, $reload, TRUE);
220
+ foreach ($fetch as $id=>$alias_array) {
221
+ $ids_and_aliases[] = $id;
222
+ foreach ($alias_array as $alias) {
223
+ $ids_and_aliases[] = $alias;
224
+ }
225
+ }
226
+ return $ids_and_aliases;
227
+ }
228
 
229
  /* Return the array of valid elements or a particular element value */
230
  public static function known_elements($name = NULL) {
276
  class CrayonLang extends CrayonVersionResource {
277
  private $ext = array();
278
  private $aliases = array();
279
+ private $delimiters = '';
280
  // Associative array of CrayonElement objects
281
  private $elements = array();
282
  //private $regex = '';
299
  $this->ext($e);
300
  }
301
  } else if (is_string($ext) && !empty($ext) && !in_array($ext, $this->ext)) {
302
+ $ext = strtolower($ext);
303
+ $ext = str_replace('.', '', $ext);
304
  $this->ext[] = $ext;
305
  }
306
  }
317
  $this->alias($a);
318
  }
319
  } else if (is_string($alias) && !empty($alias) && !in_array($alias, $this->aliases)) {
320
+ $alias = strtolower($alias);
321
  $this->aliases[] = $alias;
322
  }
323
  }
325
  function has_alias($alias) {
326
  return is_string($alias) && in_array($alias, $this->aliases);
327
  }
328
+
329
+ function delimiter($delim = NULL) {
330
+ if ($delim === NULL) {
331
+ return $this->delimiters;
332
+ // Convert to regex for capturing delimiters
333
+ } else if (is_string($delim) && !empty($delim)) {
334
+ $this->delimiters = '#(?:'.$delim.')#msi';
335
+ } else if (is_array($delim) && !empty($delim)) {
336
+ $this->delimiters = '#(?:'.implode(')|(?:', $delim).')#msi';
337
+ }
338
+ }
339
 
340
  function regex($element = NULL) {
341
  if ($element == NULL) {
343
  foreach ($this->elements as $element) {
344
  $regexes[] = $element->regex();
345
  }
346
+ return '#' . '(?:('. implode(')|(', array_values($regexes)) . '))' . '#' .
347
  ($this->mode(CrayonParser::CASE_INSENSITIVE) ? 'i' : '') .
348
  ($this->mode(CrayonParser::MULTI_LINE) ? 'm' : '') .
349
  ($this->mode(CrayonParser::SINGLE_LINE) ? 's' : '');
crayon_parser.class.php CHANGED
@@ -9,9 +9,12 @@ class CrayonParser {
9
  const CASE_INSENSITIVE = 'CASE_INSENSITIVE';
10
  const MULTI_LINE = 'MULTI_LINE';
11
  const SINGLE_LINE = 'SINGLE_LINE';
12
- const NO_END_TAG = '(?![^<]*>)';
13
  const HTML_CHAR = 'HTML_CHAR';
14
  const HTML_CHAR_REGEX = '<|>|(&([\w-]+);?)|[ \t]+';
 
 
 
15
 
16
  private static $modes = array(self::CASE_INSENSITIVE => TRUE, self::MULTI_LINE => TRUE, self::SINGLE_LINE => TRUE);
17
 
@@ -81,6 +84,10 @@ class CrayonParser {
81
  $file = preg_replace($mode_pattern, '', $file);
82
  }
83
 
 
 
 
 
84
  // Extract elements, classes and regex
85
  $pattern = '#^[ \t]*([\w:]+)[ \t]+(?:\[([\w\t ]*)\][ \t]+)?([^\r\n]+)[ \t]*#m';
86
  preg_match_all($pattern, $file, $matches);
9
  const CASE_INSENSITIVE = 'CASE_INSENSITIVE';
10
  const MULTI_LINE = 'MULTI_LINE';
11
  const SINGLE_LINE = 'SINGLE_LINE';
12
+ //const NO_END_TAG = '(?![^<]*>)'; // No longer used
13
  const HTML_CHAR = 'HTML_CHAR';
14
  const HTML_CHAR_REGEX = '<|>|(&([\w-]+);?)|[ \t]+';
15
+ const CRAYON_ELEMENT = 'CRAYON_ELEMENT';
16
+ const CRAYON_ELEMENT_REGEX = '\{\{crayon-internal:[^\}]*\}\}';
17
+ const CRAYON_ELEMENT_REGEX_CAPTURE = '\{\{crayon-internal:([^\}]*)\}\}';
18
 
19
  private static $modes = array(self::CASE_INSENSITIVE => TRUE, self::MULTI_LINE => TRUE, self::SINGLE_LINE => TRUE);
20
 
84
  $file = preg_replace($mode_pattern, '', $file);
85
  }
86
 
87
+ /* Add reserved Crayon element. This is used by Crayon internally. */
88
+ $crayon_element = new CrayonElement(self::CRAYON_ELEMENT, $path, self::CRAYON_ELEMENT_REGEX);
89
+ $lang->element(self::CRAYON_ELEMENT, $crayon_element);
90
+
91
  // Extract elements, classes and regex
92
  $pattern = '#^[ \t]*([\w:]+)[ \t]+(?:\[([\w\t ]*)\][ \t]+)?([^\r\n]+)[ \t]*#m';
93
  preg_match_all($pattern, $file, $matches);
crayon_settings.class.php CHANGED
@@ -68,7 +68,11 @@ class CrayonSettings {
68
  const HIDE_HELP = 'hide-help';
69
  const CACHE = 'cache';
70
  const EFFICIENT_ENQUEUE = 'efficient-enqueue';
71
- const CAPTURE_PRE = 'capture_pre';
 
 
 
 
72
 
73
  private static $cache_array;
74
 
@@ -164,6 +168,10 @@ class CrayonSettings {
164
  new CrayonSetting(self::CACHE, array_keys(self::$cache_array), 1),
165
  new CrayonSetting(self::EFFICIENT_ENQUEUE, FALSE),
166
  new CrayonSetting(self::CAPTURE_PRE, TRUE),
 
 
 
 
167
  );
168
 
169
  $this->set($settings);
68
  const HIDE_HELP = 'hide-help';
69
  const CACHE = 'cache';
70
  const EFFICIENT_ENQUEUE = 'efficient-enqueue';
71
+ const CAPTURE_PRE = 'capture-pre';
72
+ const CAPTURE_MINI_TAG= 'capture-mini-tag';
73
+ const MIXED = 'mixed';
74
+ const SHOW_MIXED = 'show_mixed';
75
+ const PLAIN_TAG = 'plain_tag';
76
 
77
  private static $cache_array;
78
 
168
  new CrayonSetting(self::CACHE, array_keys(self::$cache_array), 1),
169
  new CrayonSetting(self::EFFICIENT_ENQUEUE, FALSE),
170
  new CrayonSetting(self::CAPTURE_PRE, TRUE),
171
+ new CrayonSetting(self::CAPTURE_MINI_TAG, TRUE),
172
+ new CrayonSetting(self::MIXED, TRUE),
173
+ new CrayonSetting(self::SHOW_MIXED, TRUE),
174
+ new CrayonSetting(self::PLAIN_TAG, TRUE),
175
  );
176
 
177
  $this->set($settings);
crayon_settings_wp.class.php CHANGED
@@ -174,9 +174,6 @@ class CrayonSettingsWP {
174
  }
175
 
176
  public static function load_cache() {
177
- /*if (self::$cache !== NULL) {
178
- return;
179
- }*/
180
  // Load cache from db
181
  if (!(self::$cache = get_option(self::CACHE))) {
182
  self::$cache = array();
@@ -572,6 +569,10 @@ class CrayonSettingsWP {
572
  self::textbox(array('name' => CrayonSettings::TAB_SIZE, 'size' => 2, 'break' => TRUE));
573
  self::checkbox(array(CrayonSettings::TRIM_WHITESPACE, crayon__('Remove whitespace surrounding the shortcode content')));
574
  self::checkbox(array(CrayonSettings::CAPTURE_PRE, crayon__('Capture &lt;pre&gt; tags as Crayons')));
 
 
 
 
575
  }
576
 
577
  public static function files() {
@@ -634,14 +635,14 @@ class CrayonSettingsWP {
634
  $version = '<b>'.crayon__('Version').':</b> ' . $CRAYON_VERSION;
635
  $date = $CRAYON_DATE;
636
  $developer = '<b>'.crayon__('Developer').':</b> ' . $CRAYON_AUTHOR;
637
- $paypal = '<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
638
  <input type="hidden" name="cmd" value="_s-xclick">
639
  <input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHXwYJKoZIhvcNAQcEoIIHUDCCB0wCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYBzx2k2FfhgWOnPLgktcZq9vUt1J6sK3heoLAeCqacjL65PW0wv2LwPxPjZCcEe9J8OgNvO1HINX1rrFW6M56tA/qP8d6y57tIeJlp8hU2G7q6zyMiEGS28tc+L+BHKupOvNBfGIosprr/98/dAXALza9Fp3aqsWsnBPBGso/vi+zELMAkGBSsOAwIaBQAwgdwGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQILCwCkW/HPnKAgbiDiTfvLk2wi2cETsFcSPccmQ9Nb/2hmrER3fGshoIaSjW6W+luUbKy03WGHmeRPJM/3XsX1vqYTvY/Ox/8ICHXBvwOU+w2B5PYRetmelbd0jhZD3mlAxOWVwSyp3gN024Z0BMkW6mzfMvwRWaQij19OoM/zZvo66wMwyaoAqBmAlfDFMozIHC5vqY+WEHQJBMyWXfUDy2Woiu41FBzPSPaKRDJWL5yQ1aUD/LNx5GeSFUAuErQDHvHoIIDhzCCA4MwggLsoAMCAQICAQAwDQYJKoZIhvcNAQEFBQAwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMB4XDTA0MDIxMzEwMTMxNVoXDTM1MDIxMzEwMTMxNVowgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBR07d/ETMS1ycjtkpkvjXZe9k+6CieLuLsPumsJ7QC1odNz3sJiCbs2wC0nLE0uLGaEtXynIgRqIddYCHx88pb5HTXv4SZeuv0Rqq4+axW9PLAAATU8w04qqjaSXgbGLP3NmohqM6bV9kZZwZLR/klDaQGo1u9uDb9lr4Yn+rBQIDAQABo4HuMIHrMB0GA1UdDgQWBBSWn3y7xm8XvVk/UtcKG+wQ1mSUazCBuwYDVR0jBIGzMIGwgBSWn3y7xm8XvVk/UtcKG+wQ1mSUa6GBlKSBkTCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb22CAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQCBXzpWmoBa5e9fo6ujionW1hUhPkOBakTr3YCDjbYfvJEiv/2P+IobhOGJr85+XHhN0v4gUkEDI8r2/rNk1m0GA8HKddvTjyGw/XqXa+LSTlDYkqI8OwR8GEYj4efEtcRpRYBxV8KxAW93YDWzFGvruKnnLbDAF6VR5w/cCMn5hzGCAZowggGWAgEBMIGUMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTExMDI5MDYwMzMxWjAjBgkqhkiG9w0BCQQxFgQUDxRJGCn0/vBsWOG93mMXOqNDjigwDQYJKoZIhvcNAQEBBQAEgYCtuTjETQyWJK+nteR6FvEyb9rJSyOV5QHsg0S1my/0ZSDKwlebBDVksrPOtL4TiUCfvW5dzDANWuArIrNYe894NHA7Uj0nJDH2Rlw3e8Tyzb+beKu4Dgyv6GXR2UyJJV2doJzGp5WVQdOMxEfAKg6QUs4DzTr+DRF7f2BHwS1Dfw==-----END PKCS7-----
640
  ">
641
  <input type="image" src="https://www.paypalobjects.com/en_AU/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal � The safer, easier way to pay online.">
642
  <img alt="" border="0" src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" width="1" height="1">
643
  </form>
644
- ';
645
  $paypal = '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=AW99EMEPQ4CFE&lc=AU&item_name=Crayon%20Syntax%20Highlighter%20Donation&item_number=crayon%2ddonate&currency_code=AUD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted" target="_blank"><img src="'.plugins_url(CRAYON_DONATE_BUTTON, __FILE__).'"></a>
646
  ';
647
  $links = '<a id="twitter-icon" href="' . $CRAYON_TWITTER . '" target="_blank"></a>
174
  }
175
 
176
  public static function load_cache() {
 
 
 
177
  // Load cache from db
178
  if (!(self::$cache = get_option(self::CACHE))) {
179
  self::$cache = array();
569
  self::textbox(array('name' => CrayonSettings::TAB_SIZE, 'size' => 2, 'break' => TRUE));
570
  self::checkbox(array(CrayonSettings::TRIM_WHITESPACE, crayon__('Remove whitespace surrounding the shortcode content')));
571
  self::checkbox(array(CrayonSettings::CAPTURE_PRE, crayon__('Capture &lt;pre&gt; tags as Crayons')));
572
+ 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>'));
573
+ self::checkbox(array(CrayonSettings::PLAIN_TAG, crayon__('Enable [plain][/plain] tag.') . ' <a href="http://bit.ly/rRZuzk" target="_blank">' . crayon__('Learn More') . '</a>'));
574
+ 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>'));
575
+ self::checkbox(array(CrayonSettings::SHOW_MIXED, crayon__('Show Mixed Language Icon (+)')));
576
  }
577
 
578
  public static function files() {
635
  $version = '<b>'.crayon__('Version').':</b> ' . $CRAYON_VERSION;
636
  $date = $CRAYON_DATE;
637
  $developer = '<b>'.crayon__('Developer').':</b> ' . $CRAYON_AUTHOR;
638
+ /*$paypal = '<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
639
  <input type="hidden" name="cmd" value="_s-xclick">
640
  <input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHXwYJKoZIhvcNAQcEoIIHUDCCB0wCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYBzx2k2FfhgWOnPLgktcZq9vUt1J6sK3heoLAeCqacjL65PW0wv2LwPxPjZCcEe9J8OgNvO1HINX1rrFW6M56tA/qP8d6y57tIeJlp8hU2G7q6zyMiEGS28tc+L+BHKupOvNBfGIosprr/98/dAXALza9Fp3aqsWsnBPBGso/vi+zELMAkGBSsOAwIaBQAwgdwGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQILCwCkW/HPnKAgbiDiTfvLk2wi2cETsFcSPccmQ9Nb/2hmrER3fGshoIaSjW6W+luUbKy03WGHmeRPJM/3XsX1vqYTvY/Ox/8ICHXBvwOU+w2B5PYRetmelbd0jhZD3mlAxOWVwSyp3gN024Z0BMkW6mzfMvwRWaQij19OoM/zZvo66wMwyaoAqBmAlfDFMozIHC5vqY+WEHQJBMyWXfUDy2Woiu41FBzPSPaKRDJWL5yQ1aUD/LNx5GeSFUAuErQDHvHoIIDhzCCA4MwggLsoAMCAQICAQAwDQYJKoZIhvcNAQEFBQAwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMB4XDTA0MDIxMzEwMTMxNVoXDTM1MDIxMzEwMTMxNVowgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBR07d/ETMS1ycjtkpkvjXZe9k+6CieLuLsPumsJ7QC1odNz3sJiCbs2wC0nLE0uLGaEtXynIgRqIddYCHx88pb5HTXv4SZeuv0Rqq4+axW9PLAAATU8w04qqjaSXgbGLP3NmohqM6bV9kZZwZLR/klDaQGo1u9uDb9lr4Yn+rBQIDAQABo4HuMIHrMB0GA1UdDgQWBBSWn3y7xm8XvVk/UtcKG+wQ1mSUazCBuwYDVR0jBIGzMIGwgBSWn3y7xm8XvVk/UtcKG+wQ1mSUa6GBlKSBkTCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb22CAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQCBXzpWmoBa5e9fo6ujionW1hUhPkOBakTr3YCDjbYfvJEiv/2P+IobhOGJr85+XHhN0v4gUkEDI8r2/rNk1m0GA8HKddvTjyGw/XqXa+LSTlDYkqI8OwR8GEYj4efEtcRpRYBxV8KxAW93YDWzFGvruKnnLbDAF6VR5w/cCMn5hzGCAZowggGWAgEBMIGUMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTExMDI5MDYwMzMxWjAjBgkqhkiG9w0BCQQxFgQUDxRJGCn0/vBsWOG93mMXOqNDjigwDQYJKoZIhvcNAQEBBQAEgYCtuTjETQyWJK+nteR6FvEyb9rJSyOV5QHsg0S1my/0ZSDKwlebBDVksrPOtL4TiUCfvW5dzDANWuArIrNYe894NHA7Uj0nJDH2Rlw3e8Tyzb+beKu4Dgyv6GXR2UyJJV2doJzGp5WVQdOMxEfAKg6QUs4DzTr+DRF7f2BHwS1Dfw==-----END PKCS7-----
641
  ">
642
  <input type="image" src="https://www.paypalobjects.com/en_AU/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal � The safer, easier way to pay online.">
643
  <img alt="" border="0" src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" width="1" height="1">
644
  </form>
645
+ ';*/
646
  $paypal = '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=AW99EMEPQ4CFE&lc=AU&item_name=Crayon%20Syntax%20Highlighter%20Donation&item_number=crayon%2ddonate&currency_code=AUD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted" target="_blank"><img src="'.plugins_url(CRAYON_DONATE_BUTTON, __FILE__).'"></a>
647
  ';
648
  $links = '<a id="twitter-icon" href="' . $CRAYON_TWITTER . '" target="_blank"></a>
crayon_wp.class.php CHANGED
@@ -2,11 +2,12 @@
2
  /*
3
  Plugin Name: Crayon Syntax Highlighter
4
  Plugin URI: http://ak.net84.net/
5
- Description: Supports multiple languages, themes, highlighting from a URL, local file or post text. <a href="options-general.php?page=crayon_settings">View Settings.</a>
6
- Version: 1.6.5
7
  Author: Aram Kocharyan
8
  Author URI: http://ak.net84.net/
9
  Text Domain: crayon-syntax-highlighter
 
10
  License: GPL2
11
  Copyright 2011 Aram Kocharyan (email : akarmenia@gmail.com)
12
  This program is free software; you can redistribute it and/or modify
@@ -45,6 +46,11 @@ class CrayonWP {
45
  private static $wp_head = FALSE;
46
  // Used to keep Crayon IDs
47
  private static $next_id = 0;
 
 
 
 
 
48
 
49
  // Used to detect the shortcode
50
  const REGEX_CLOSED = '(?:\[crayon(?:-(\w+))?\b([^\]]*)/\])'; // [crayon atts="" /]
@@ -54,6 +60,8 @@ class CrayonWP {
54
  const REGEX_TAG_NO_CAPTURE = '(?:\[crayon\b[^\]]*\][\r\n]*?.*?[\r\n]*?\[/crayon\])';
55
 
56
  const REGEX_ID = '#(?<!\$)\[crayon#i';
 
 
57
 
58
  // Methods ================================================================
59
 
@@ -71,15 +79,11 @@ class CrayonWP {
71
  return '#(?<!\$)(?:'. self::REGEX_CLOSED_NO_CAPTURE .'|'. self::REGEX_TAG_NO_CAPTURE .')(?!\$)#s';
72
  }
73
 
74
- public static function regex_ignore() {
75
- // $[crayon ...] ... [/crayon]$
76
- return '#(?:\$('. self::REGEX_CLOSED_NO_CAPTURE .')\$?)|'. '(?:\$(\[crayon\b))|(?:(\[/crayon\])\$)' .'#s';
77
- }
78
-
79
  /**
80
  * Adds the actual Crayon instance, should only be called by add_shortcode()
 
81
  */
82
- private static function shortcode($atts, $content = NULL, $id = NULL) {
83
  // Lowercase attributes
84
  $lower_atts = array();
85
  foreach ($atts as $att=>$value) {
@@ -126,7 +130,12 @@ class CrayonWP {
126
  // Determine if we should highlight
127
  $highlight = array_key_exists('highlight', $atts) ? CrayonUtil::str_to_bool($atts['highlight'], FALSE) : TRUE;
128
 
129
- return $crayon->output($highlight, $nums = true, $print = false);
 
 
 
 
 
130
  }
131
 
132
  /* Returns Crayon instance */
@@ -149,24 +158,33 @@ class CrayonWP {
149
  public static function the_posts($posts) {
150
  // Whether to enqueue syles/scripts
151
  $enqueue = FALSE;
 
152
 
 
 
153
  // Search for shortcode in query
154
  foreach ($posts as $post) {
 
155
  // To improve efficiency, avoid complicated regex with a simple check first
156
- if (CrayonUtil::strposa($post->post_content, array('[crayon', '<pre'), TRUE) === FALSE) {
157
  continue;
158
  }
159
 
160
  // Convert <pre> tags to crayon tags, if needed
161
- CrayonSettingsWP::load_settings(TRUE); // Load just the settings from db, for now
162
  if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_PRE)) {
163
  // XXX This will fail if <pre></pre> is used inside another <pre></pre>
164
  $post->post_content = preg_replace('#(?<!\$)<pre([^\>]*)>(.*?)</pre>(?!\$)#msi', '[crayon\1]\2[/crayon]', $post->post_content);
165
  }
166
- // Remove any '$' in $<pre> ... </pre>$ tags that were ignored
167
- // XXX This will remove regardless of the CAPTURE_PRE setting
168
- $post->post_content = str_ireplace('$<pre', '<pre', $post->post_content);
169
- $post->post_content = str_ireplace('pre>$', 'pre>', $post->post_content);
 
 
 
 
 
 
170
 
171
  // Add IDs to the Crayons
172
  $post->post_content = preg_replace_callback(self::REGEX_ID, 'CrayonWP::add_crayon_id', $post->post_content);
@@ -209,9 +227,12 @@ class CrayonWP {
209
 
210
  // Add array of atts and content to post queue with key as post ID
211
  $id = !empty($open_ids[$i]) ? $open_ids[$i] : $closed_ids[$i];
212
- self::$post_queue[strval($post->ID)][$id] = array('post_id'=>$post->ID, 'atts'=>$atts_array, 'code'=>$contents[$i]);
 
213
  }
214
  }
 
 
215
  }
216
 
217
  if (!is_admin() && $enqueue && !self::$enqueued) {
@@ -238,6 +259,23 @@ class CrayonWP {
238
  self::$enqueued = TRUE;
239
  }
240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  // Add Crayon into the_content
242
  public static function the_content($the_content) {
243
  global $post;
@@ -248,7 +286,7 @@ class CrayonWP {
248
  // Remove Crayon from content if we are displaying an excerpt
249
  return preg_replace(self::regex_no_capture(), '', $the_content);
250
  }
251
-
252
  // Find if this post has Crayons
253
  if ( array_key_exists($post_id, self::$post_queue) ) {
254
  // XXX We want the plain post content, no formatting
@@ -257,17 +295,18 @@ class CrayonWP {
257
  $post_in_queue = self::$post_queue[$post_id];
258
  foreach ($post_in_queue as $id=>$v) {
259
  $atts = $v['atts'];
260
- $content = $v['code']; // The formatted crayon we replace post content with
261
- // Remove '$' from $[crayon]...[/crayon]$ contained within [crayon] tag content
262
- $content = self::crayon_remove_ignore($content);
263
- // Apply shortcode to the content
264
- $crayon = self::shortcode($atts, $content, $id);
265
- $the_content = CrayonUtil::preg_replace_escape_back(self::regex_with_id($id), $crayon, $the_content, 1, $count);
 
 
 
 
266
  }
267
  }
268
- // Remove '$' from $[crayon]...[/crayon]$ in post body
269
- // XXX Do this after applying shortcode to avoid matching
270
- $the_content = self::crayon_remove_ignore($the_content);
271
  return $the_content;
272
  }
273
 
@@ -279,11 +318,20 @@ class CrayonWP {
279
  return $the_excerpt;
280
  }
281
 
282
- // Check if the $[crayon]...[/crayon]$ notation has been used to ignore [crayon] tags within posts
283
  public static function crayon_remove_ignore($the_content) {
284
- $the_content = preg_replace('#\$('. self::REGEX_CLOSED_NO_CAPTURE .')\$?#', '$1', $the_content);
285
- $the_content = preg_replace('#\$(\[[\t ]*crayon\b)#', '$1', $the_content);
286
- $the_content = preg_replace('#(\[[\t ]*/[\t ]*crayon\b[^\]]*\])\$#', '$1', $the_content);
 
 
 
 
 
 
 
 
 
287
  return $the_content;
288
  }
289
 
@@ -312,7 +360,7 @@ class CrayonWP {
312
  }
313
 
314
  public static function load_textdomain() {
315
- load_plugin_textdomain('crayon-syntax-highlighter', false, CRAYON_DIR.CRAYON_TRANS_DIR);
316
  }
317
 
318
  public static function install() {
@@ -331,6 +379,7 @@ if (defined('ABSPATH')) {
331
  register_deactivation_hook(__FILE__, 'CrayonWP::uninstall');
332
 
333
  // Filters and Actions
 
334
  add_filter('the_posts', 'CrayonWP::the_posts');
335
  add_filter('the_content', 'CrayonWP::the_content');
336
  add_filter('the_excerpt', 'CrayonWP::the_excerpt');
2
  /*
3
  Plugin Name: Crayon Syntax Highlighter
4
  Plugin URI: http://ak.net84.net/
5
+ Description: Supports multiple languages, themes, highlighting from a URL, local file or post text. <a href="options-general.php?page=crayon_settings">View Settings</a>
6
+ Version: 1.7.3
7
  Author: Aram Kocharyan
8
  Author URI: http://ak.net84.net/
9
  Text Domain: crayon-syntax-highlighter
10
+ Domain Path: /trans/
11
  License: GPL2
12
  Copyright 2011 Aram Kocharyan (email : akarmenia@gmail.com)
13
  This program is free software; you can redistribute it and/or modify
46
  private static $wp_head = FALSE;
47
  // Used to keep Crayon IDs
48
  private static $next_id = 0;
49
+ // Array of tag search strings
50
+ private static $search_tags = array('[crayon', '<pre', '[plain');
51
+ // String to store the regex for capturing mini tags
52
+ private static $alias_regex = '';
53
+ private static $is_mini_tag_init = FALSE;
54
 
55
  // Used to detect the shortcode
56
  const REGEX_CLOSED = '(?:\[crayon(?:-(\w+))?\b([^\]]*)/\])'; // [crayon atts="" /]
60
  const REGEX_TAG_NO_CAPTURE = '(?:\[crayon\b[^\]]*\][\r\n]*?.*?[\r\n]*?\[/crayon\])';
61
 
62
  const REGEX_ID = '#(?<!\$)\[crayon#i';
63
+
64
+ const MODE_NORMAL = 0, MODE_JUST_CODE = 1, MODE_PLAIN_CODE = 2;
65
 
66
  // Methods ================================================================
67
 
79
  return '#(?<!\$)(?:'. self::REGEX_CLOSED_NO_CAPTURE .'|'. self::REGEX_TAG_NO_CAPTURE .')(?!\$)#s';
80
  }
81
 
 
 
 
 
 
82
  /**
83
  * Adds the actual Crayon instance, should only be called by add_shortcode()
84
+ * $mode can be: 0 = return crayon content, 1 = return only code, 2 = return only plain code
85
  */
86
+ private static function shortcode($atts, $content = NULL, $id = NULL, $mode = self::MODE_NORMAL) {
87
  // Lowercase attributes
88
  $lower_atts = array();
89
  foreach ($atts as $att=>$value) {
130
  // Determine if we should highlight
131
  $highlight = array_key_exists('highlight', $atts) ? CrayonUtil::str_to_bool($atts['highlight'], FALSE) : TRUE;
132
 
133
+ if ($mode === self::MODE_JUST_CODE || $mode === self::MODE_PLAIN_CODE) {
134
+ $crayon->process($highlight && ($mode === self::MODE_JUST_CODE));
135
+ return $crayon;
136
+ } else {
137
+ return $crayon->output($highlight, $nums = true, $print = false);
138
+ }
139
  }
140
 
141
  /* Returns Crayon instance */
158
  public static function the_posts($posts) {
159
  // Whether to enqueue syles/scripts
160
  $enqueue = FALSE;
161
+ CrayonSettingsWP::load_settings(TRUE); // Load just the settings from db, for now
162
 
163
+ self::init_mini_tags();
164
+
165
  // Search for shortcode in query
166
  foreach ($posts as $post) {
167
+
168
  // To improve efficiency, avoid complicated regex with a simple check first
169
+ if (CrayonUtil::strposa($post->post_content, self::$search_tags, TRUE) === FALSE) {
170
  continue;
171
  }
172
 
173
  // Convert <pre> tags to crayon tags, if needed
 
174
  if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_PRE)) {
175
  // XXX This will fail if <pre></pre> is used inside another <pre></pre>
176
  $post->post_content = preg_replace('#(?<!\$)<pre([^\>]*)>(.*?)</pre>(?!\$)#msi', '[crayon\1]\2[/crayon]', $post->post_content);
177
  }
178
+
179
+ // Convert mini [php][/php] tags to crayon tags, if needed
180
+ if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG)) {
181
+ $post->post_content = preg_replace('#(?<!\$)\[('.self::$alias_regex.')([^\]]*)\](.*?)\[/(?:\1)\](?!\$)#msi', '[crayon\2 lang="\1"]\3[/crayon]', $post->post_content);
182
+ }
183
+
184
+ // Convert [plain] tags into <pre><code></code></pre>, if needed
185
+ if (CrayonGlobalSettings::val(CrayonSettings::PLAIN_TAG)) {
186
+ $post->post_content = preg_replace_callback('#(?<!\$)\[plain\](.*?)\[/plain\]#msi', 'CrayonFormatter::plain_code', $post->post_content);
187
+ }
188
 
189
  // Add IDs to the Crayons
190
  $post->post_content = preg_replace_callback(self::REGEX_ID, 'CrayonWP::add_crayon_id', $post->post_content);
227
 
228
  // Add array of atts and content to post queue with key as post ID
229
  $id = !empty($open_ids[$i]) ? $open_ids[$i] : $closed_ids[$i];
230
+ $code = self::crayon_remove_ignore($contents[$i]);
231
+ self::$post_queue[strval($post->ID)][$id] = array('post_id'=>$post->ID, 'atts'=>$atts_array, 'code'=>$code);
232
  }
233
  }
234
+
235
+ $post->post_content = self::crayon_remove_ignore($post->post_content);
236
  }
237
 
238
  if (!is_admin() && $enqueue && !self::$enqueued) {
259
  self::$enqueued = TRUE;
260
  }
261
 
262
+ private static function init_mini_tags() {
263
+ if (!self::$is_mini_tag_init && CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG)) {
264
+ $aliases = CrayonResources::langs()->ids_and_aliases();
265
+ for ($i = 0; $i < count($aliases); $i++) {
266
+ $alias = $aliases[$i];
267
+ self::$search_tags[] = '[' . $alias;
268
+
269
+ $alias_regex = CrayonUtil::esc_hash(CrayonUtil::esc_regex($alias));
270
+ if ($i != count($aliases) - 1) {
271
+ $alias_regex .= '|';
272
+ }
273
+ self::$alias_regex .= $alias_regex;
274
+ }
275
+ self::$is_mini_tag_init = TRUE;
276
+ }
277
+ }
278
+
279
  // Add Crayon into the_content
280
  public static function the_content($the_content) {
281
  global $post;
286
  // Remove Crayon from content if we are displaying an excerpt
287
  return preg_replace(self::regex_no_capture(), '', $the_content);
288
  }
289
+
290
  // Find if this post has Crayons
291
  if ( array_key_exists($post_id, self::$post_queue) ) {
292
  // XXX We want the plain post content, no formatting
295
  $post_in_queue = self::$post_queue[$post_id];
296
  foreach ($post_in_queue as $id=>$v) {
297
  $atts = $v['atts'];
298
+ $content = $v['code']; // The crayon we replace post content with
299
+ if (is_feed()) {
300
+ // Convert the plain code to entities and put in a <pre></pre> tag
301
+ $crayon = self::shortcode($atts, $content, $id, self::MODE_PLAIN_CODE);
302
+ $crayon_formatted = CrayonFormatter::plain_code($crayon->code());
303
+ } else {
304
+ // Apply shortcode to the content
305
+ $crayon_formatted = self::shortcode($atts, $content, $id);
306
+ }
307
+ $the_content = CrayonUtil::preg_replace_escape_back(self::regex_with_id($id), $crayon_formatted, $the_content, 1, $count);
308
  }
309
  }
 
 
 
310
  return $the_content;
311
  }
312
 
318
  return $the_excerpt;
319
  }
320
 
321
+ // Check if the $[crayon]...[/crayon] notation has been used to ignore [crayon] tags within posts
322
  public static function crayon_remove_ignore($the_content) {
323
+ $the_content = str_ireplace(array('$[crayon', 'crayon]$'), array('[crayon', 'crayon]'), $the_content);
324
+ if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_PRE)) {
325
+ $the_content = str_ireplace(array('$<pre', 'pre>$'), array('<pre', 'pre>'), $the_content);
326
+ }
327
+ if (CrayonGlobalSettings::val(CrayonSettings::PLAIN_TAG)) {
328
+ $the_content = str_ireplace(array('$[plain', 'plain]$'), array('[plain', 'plain]'), $the_content);
329
+ }
330
+ if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG)) {
331
+ self::init_mini_tags();
332
+ $the_content = preg_replace('#\$\[('. self::$alias_regex .')#', '[$1', $the_content);
333
+ $the_content = preg_replace('#('. self::$alias_regex .')\]\$#', '$1]', $the_content);
334
+ }
335
  return $the_content;
336
  }
337
 
360
  }
361
 
362
  public static function load_textdomain() {
363
+ load_plugin_textdomain(CRAYON_DOMAIN, false, CRAYON_DIR.CRAYON_TRANS_DIR);
364
  }
365
 
366
  public static function install() {
379
  register_deactivation_hook(__FILE__, 'CrayonWP::uninstall');
380
 
381
  // Filters and Actions
382
+ add_filter('init', 'CrayonWP::init');
383
  add_filter('the_posts', 'CrayonWP::the_posts');
384
  add_filter('the_content', 'CrayonWP::the_content');
385
  add_filter('the_excerpt', 'CrayonWP::the_excerpt');
css/images/toolbar/plus.png ADDED
Binary file
css/images/toolbar/plus_dark.png ADDED
Binary file
css/images/toolbar/plus_light.png ADDED
Binary file
css/style.css CHANGED
@@ -25,6 +25,7 @@ coloring etc.
25
  border: none;
26
  padding: 0px;
27
  margin: 0px;
 
28
  }
29
 
30
  .crayon-syntax .crayon-main,
@@ -204,6 +205,25 @@ coloring etc.
204
  background-image: url('images/toolbar/nums_dark.png');
205
  }
206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  .crayon-syntax .crayon-title {
208
  float: left;
209
  }
25
  border: none;
26
  padding: 0px;
27
  margin: 0px;
28
+ text-align: left;
29
  }
30
 
31
  .crayon-syntax .crayon-main,
205
  background-image: url('images/toolbar/nums_dark.png');
206
  }
207
 
208
+ /* Plus Sign */
209
+ .crayon-syntax .crayon-toolbar .crayon-mixed-highlight {
210
+ background-image: url('images/toolbar/plus.png');
211
+ background-position: center;
212
+ background-repeat: no-repeat;
213
+ margin: 0px 4px;
214
+ float: left;
215
+ }
216
+
217
+ /* Language */
218
+ .crayon-syntax .crayon-toolbar .crayon-language {
219
+ padding-right: 3px !important;
220
+ }
221
+
222
+ /* Tools */
223
+ .crayon-syntax .crayon-toolbar .crayon-tools {
224
+ padding-right: 2px !important;
225
+ }
226
+
227
  .crayon-syntax .crayon-title {
228
  float: left;
229
  }
global.php CHANGED
@@ -54,6 +54,7 @@ define('CRAYON_LOG_MAX_SIZE', 50000); // Bytes
54
  define('CRAYON_README_FILE', CRAYON_ROOT_PATH . 'readme.txt');
55
  define('CRAYON_LANG_EXT', CRAYON_LANG_PATH . 'extensions.txt');
56
  define('CRAYON_LANG_ALIAS', CRAYON_LANG_PATH . 'aliases.txt');
 
57
  define('CRAYON_HELP_FILE', CRAYON_UTIL_PATH . 'help.htm');
58
  define('CRAYON_JQUERY', CRAYON_JS_DIR . 'jquery-1.7.min.js');
59
  define('CRAYON_JQUERY_POPUP', CRAYON_JS_DIR . 'jquery.popup.js');
54
  define('CRAYON_README_FILE', CRAYON_ROOT_PATH . 'readme.txt');
55
  define('CRAYON_LANG_EXT', CRAYON_LANG_PATH . 'extensions.txt');
56
  define('CRAYON_LANG_ALIAS', CRAYON_LANG_PATH . 'aliases.txt');
57
+ define('CRAYON_LANG_DELIM', CRAYON_LANG_PATH . 'delimiters.txt');
58
  define('CRAYON_HELP_FILE', CRAYON_UTIL_PATH . 'help.htm');
59
  define('CRAYON_JQUERY', CRAYON_JS_DIR . 'jquery-1.7.min.js');
60
  define('CRAYON_JQUERY_POPUP', CRAYON_JS_DIR . 'jquery.popup.js');
langs/css/css.txt CHANGED
@@ -3,14 +3,20 @@
3
  # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
 
5
  NAME CSS
6
- VERSION 1.0
7
 
8
  COMMENT (/\*.*?\*/)
9
  STRING (?default)
10
  NOTATION \@[\w-]+
11
-
12
- SELECTOR:KEYWORD (\.|\#|\b)[A-Za-z_][\w-]*\b(?=[^;}]*{)
 
 
 
 
 
13
  PROPERTY:ENTITY \b[A-Za-z_][\w-]*(?=\s*:)
14
  IMP:CONSTANT !important
15
- VALUE:IDENTIFIER (?<=:)[\s\w-]+(?=[^;{:]*;)
16
  SYMBOL (?default)
 
3
  # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
 
5
  NAME CSS
6
+ VERSION 1.7.0
7
 
8
  COMMENT (/\*.*?\*/)
9
  STRING (?default)
10
  NOTATION \@[\w-]+
11
+
12
+ # For the <script> tag
13
+ ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
14
+ TAG (</?\s*[^<\s>]+\s*>?)|(\s*>)
15
+ ATTR:ENTITY [\w-]+(?=\s*=")
16
+
17
+ SELECTOR:KEYWORD (\.|\#)[A-Za-z_][\w-]*\b(?=[^;}]*{)
18
  PROPERTY:ENTITY \b[A-Za-z_][\w-]*(?=\s*:)
19
  IMP:CONSTANT !important
20
+ VALUE:IDENTIFIER (?<=:)[\s\w-]+(?=[^;{:]*;)
21
  SYMBOL (?default)
22
+
langs/default/default.txt CHANGED
@@ -3,7 +3,7 @@
3
  # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
 
5
  NAME Default
6
- VERSION 1.6.5
7
 
8
  COMMENT (/\*.*?\*/)|(//.*?$)
9
  STRING ((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
@@ -18,5 +18,7 @@
18
  IDENTIFIER \b[A-Za-z_]\w*\b
19
  CONSTANT (?<!\w)\.?[0-9][\w]*
20
  OPERATOR (?alt:operator.txt)
21
- SYMBOL &[^;]*;|[^\w\s\d]+
 
 
22
 
3
  # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
 
5
  NAME Default
6
+ VERSION 1.7.0
7
 
8
  COMMENT (/\*.*?\*/)|(//.*?$)
9
  STRING ((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
18
  IDENTIFIER \b[A-Za-z_]\w*\b
19
  CONSTANT (?<!\w)\.?[0-9][\w]*
20
  OPERATOR (?alt:operator.txt)
21
+ SYMBOL &[^;]+;|(?alt:symbol.txt)
22
+
23
+ # |[^\w\s\d'"] in SYMBOL causes it to crash
24
 
langs/default/symbol.txt ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ~
2
+ `
3
+ !
4
+ @
5
+ #
6
+ $
7
+ %
8
+ (
9
+ )
10
+ _
11
+ {
12
+ }
13
+ [
14
+ ]
15
+ |
16
+ \
17
+ :
18
+ ;
19
+ ,
20
+ .
21
+ ?
langs/delimiters.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ # This file contains regex to capture delimiters that allow code with mixed languages to have multiple highlighting. E.g. <script></script> tags are highlighted as JavaScript and <?php...?> as PHP. The "glue" is the remaining code in between these highlighted sections, and this can be highlighted as a given language using the "lang" attribute. For an XHTML document with PHP, this would be set to lang="XHTML".
2
+
3
+ # Format: id REGEX1 REGEX2 ...
4
+
5
+ php <\?(?:php)?.*?\?\>
6
+ js <script\b[^\>]*>.*?</script>
7
+ css <style\b[^\>]*>.*?</style>
langs/js/js.txt CHANGED
@@ -13,6 +13,11 @@
13
  TYPE (?default)
14
  MODIFIER (?default)
15
 
 
 
 
 
 
16
  ENTITY (?default)
17
  VARIABLE (?default)|\b\s*[A-Za-z_]\w*\s*\:
18
  IDENTIFIER (?default)
13
  TYPE (?default)
14
  MODIFIER (?default)
15
 
16
+ # For the <script> tag
17
+ ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
18
+ TAG (</?\s*[^<\s>]+\s*>?)|(\s*>)
19
+ ATTR:ENTITY [\w-]+(?=\s*=")
20
+
21
  ENTITY (?default)
22
  VARIABLE (?default)|\b\s*[A-Za-z_]\w*\s*\:
23
  IDENTIFIER (?default)
langs/php/php.txt CHANGED
@@ -3,14 +3,14 @@
3
  # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
 
5
  NAME PHP
6
- VERSION 1.1
7
 
8
- HTML:FADED ((?<=\?>).*?(?=<\?(?:php)?))|(\A.*?(?=<\?(?:php)?))|((?<=\?>).*\Z)
9
 
10
  COMMENT (?default)|(\#.*?$)
11
  STRING (?default)|(<<<EOT.*?^EOT)
12
 
13
- PHP_TAG:KEYWORD <\?php|<\?|\?>
14
  CONSTRUCT:KEYWORD \b(?alt:construct.txt)\b
15
  STATEMENT (?default)
16
  RESERVED (?default)
3
  # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
 
5
  NAME PHP
6
+ VERSION 1.7.0
7
 
8
+ #HTML:FADED ((?<=\?>).*?(?=<\?(?:php)?))|(\A.*?(?=<\?(?:php)?))|((?<=\?>).*\Z)
9
 
10
  COMMENT (?default)|(\#.*?$)
11
  STRING (?default)|(<<<EOT.*?^EOT)
12
 
13
+ TAG <\?php|<\?|\?>
14
  CONSTRUCT:KEYWORD \b(?alt:construct.txt)\b
15
  STATEMENT (?default)
16
  RESERVED (?default)
langs/xhtml/xhtml.txt CHANGED
@@ -3,15 +3,17 @@
3
  # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
 
5
  NAME XHTML
6
- VERSION 1.1
7
 
8
  COMMENT \<!--.*?--\>
9
  ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
10
  NOTATION <!.*?>
11
 
12
- TAG:KEYWORD </?\s*[^<\s>]+\s*>?
 
 
13
 
14
- ATTR:ENTITY \w+(?=\s*=)(?=[^\<]*\>)
15
  TEXT:IDENTIFIER (?<=\>)[^\<\>]*(?=\<)
16
  SYMBOL (?default)
17
- OTHER:CONSTANT (?default:identifier)
3
  # ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
4
 
5
  NAME XHTML
6
+ VERSION 1.7.0
7
 
8
  COMMENT \<!--.*?--\>
9
  ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
10
  NOTATION <!.*?>
11
 
12
+ HTML_TAG:KEYWORD (</?\s*[^<\s>]+\s*>?)|(\s*>)
13
+
14
+ #</?\s*[^<\s>]+\s*>?
15
 
16
+ ATTR:ENTITY [\w-]+(?=\s*=")
17
  TEXT:IDENTIFIER (?<=\>)[^\<\>]*(?=\<)
18
  SYMBOL (?default)
19
+ # OTHER:CONSTANT (?default:identifier)
readme.txt CHANGED
@@ -1,6 +1,6 @@
1
  === Crayon Syntax Highlighter ===
2
  Contributors: akarmenia
3
- Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=AW99EMEPQ4CFE&lc=AU&item_name=Crayon%20Syntax%20Highlighter%20Donation&item_number=crayon%2ddonate&currency_code=AUD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
4
  Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter
5
  Requires at least: 3.0
6
  Tested up to: 3.3
@@ -20,6 +20,10 @@ It also supports some neat features like:
20
  * Copy/paste code
21
  * Open code in a new window (popup)
22
  * Remote request caching
 
 
 
 
23
  * Mobile/touchscreen device detection
24
  * Mouse event interaction (showing plain code on double click, toolbar on mouseover)
25
  * Tab sizes
@@ -33,7 +37,6 @@ It also supports some neat features like:
33
  * Live Preview in settings
34
  * Dimensions, margins, alignment and CSS floating
35
  * Extensive error logging
36
- * &lt;pre&gt; tag support
37
 
38
  **Supported Languages**
39
 
@@ -58,6 +61,8 @@ Live Demo: <a href="http://bit.ly/poKNqs" target="_blank">http://bit.ly/poKNqs</
58
 
59
  Short How-To: <a href="http://ak.net84.net/projects/crayon-syntax-highlighter/" target="_blank">http://ak.net84.net/projects/crayon-syntax-highlighter/</a>
60
 
 
 
61
  **International Languages**
62
 
63
  * French
@@ -67,9 +72,15 @@ Short How-To: <a href="http://ak.net84.net/projects/crayon-syntax-highlighter/"
67
  * Japanese (thanks to @west_323)
68
  * Help from translators at improving/adding to this list greatly appreciated!
69
 
 
 
 
 
 
 
 
70
  **Planned Features**
71
 
72
- * Multiple highlighting per Crayon
73
  * Highlighting priority
74
  * Theme Editor
75
 
@@ -86,7 +97,13 @@ You can change settings and view help under <strong>Settings > Crayon</strong> i
86
  <code>[crayon url="http://example.com/code.txt" /]</code>
87
  <code>[crayon url="/local-path-defined-in-settings/code.java" /]</code>
88
 
89
- Alternatively, you can use &lt;pre attributes&gt; tags in place of the [crayon attributes] shortcode.
 
 
 
 
 
 
90
 
91
  Please see the contextual help under <strong>Settings > Crayon</strong> for quick info about languages, themes, etc.
92
 
@@ -101,13 +118,32 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
101
 
102
  == Changelog ==
103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  = 1.6.5 =
105
  * Fixed a bug causing international Unicode characters being garbled
106
 
107
  = 1.6.4 =
108
  * Added user submitted Japanese language support. Thanks to @west_323!
109
  * &lt;pre&gt;&lt;/pre&gt; tags are now captured as Crayons. This can be turned off in Settings > Crayon > Code.
110
- * You can remove prevent capturing individual &lt;pre&gt; tags the same way as Crayons: $&lt;pre&gt; ... &lt;/pre&gt;$
111
  * This method of preventing the &lt;pre&gt; tag should be used if your code contains &lt;pre&gt; tags (nested &lt;pre&gt; tags) - otherwise it will cause conflicts.
112
  * Keep in mind that &lt;pre&gt; tags should not be editted in Visual Mode. Crayon will display all code as it appears in the HTML view of the post editor, where you can make code changes and use the tab key etc. If you want to use the Visual editor reguarly and are running into problems, consider loading the code form a file using the 'url' attribute.
113
  * I have removed the ability to have spacing between the starting and ending square brackets, so [crayon...] is valid but [ crayon ... ] is not.
@@ -266,4 +302,4 @@ http://wordpress.org/support/topic/plugin-crayon-syntax-highlighter-this-plugin-
266
 
267
  == Upgrade Notice ==
268
 
269
- No issues upgrading.
1
  === Crayon Syntax Highlighter ===
2
  Contributors: akarmenia
3
+ Donate link: http://ak.net84.net/files/donate.php
4
  Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter
5
  Requires at least: 3.0
6
  Tested up to: 3.3
20
  * Copy/paste code
21
  * Open code in a new window (popup)
22
  * Remote request caching
23
+ * Multiple language highlighting in a single Crayon
24
+ * Mini Tags 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
28
  * Mouse event interaction (showing plain code on double click, toolbar on mouseover)
29
  * Tab sizes
37
  * Live Preview in settings
38
  * Dimensions, margins, alignment and CSS floating
39
  * Extensive error logging
 
40
 
41
  **Supported Languages**
42
 
61
 
62
  Short How-To: <a href="http://ak.net84.net/projects/crayon-syntax-highlighter/" target="_blank">http://ak.net84.net/projects/crayon-syntax-highlighter/</a>
63
 
64
+ Please Thank Me With <a href="http://ak.net84.net/files/donate.php" target="_blank">Coffee</a>!
65
+
66
  **International Languages**
67
 
68
  * French
72
  * Japanese (thanks to @west_323)
73
  * Help from translators at improving/adding to this list greatly appreciated!
74
 
75
+ **Articles**
76
+
77
+ These are helpful for discovering new features.
78
+
79
+ * <a href="http://ak.net84.net/projects/mixed-language-highlighting-in-crayon/" target="_blank">Mixed Language Highlighting in Crayon</a>
80
+ * <a href="http://ak.net84.net/projects/mini-tags-in-crayon/" target="_blank">Mini Tags And Plain Tags In Crayon</a>
81
+
82
  **Planned Features**
83
 
 
84
  * Highlighting priority
85
  * Theme Editor
86
 
97
  <code>[crayon url="http://example.com/code.txt" /]</code>
98
  <code>[crayon url="/local-path-defined-in-settings/code.java" /]</code>
99
 
100
+ You can use &lt;pre&gt;:
101
+
102
+ <code>&lt;pre lang="php"&gt; your code &lt;/crayon&gt;</code>
103
+
104
+ You can also use Mini Tags:
105
+
106
+ <code>[php theme="twilight"]your code[/php]</code>
107
 
108
  Please see the contextual help under <strong>Settings > Crayon</strong> for quick info about languages, themes, etc.
109
 
118
 
119
  == Changelog ==
120
 
121
+ = 1.7.3 =
122
+ * Added Mini Tags and Plain Tags into Crayon. http://bit.ly/rRZuzk
123
+ * Fixed a bug causing RSS feeds to contain malformed HTML of Crayons, now it shows plain code with correct indentations. Thanks to Артём.
124
+ * Updated help in Settings and http://ak.net84.net/projects/crayon-syntax-highlighter/
125
+
126
+ = 1.7.2 =
127
+ * Fixed a bug that prevented foreign languages from being initialised and used. Thanks to @west_323 for finding it.
128
+
129
+ = 1.7.1 =
130
+ * Renamed Japanese GNU language code from ja_JP to ja.
131
+
132
+ = 1.7.0 =
133
+ * Added the ability to highlight multiple languages in a single Crayon! http://bit.ly/ukwts2
134
+ * A bunch of language improvements, a few CSS improvements, etc.
135
+
136
+ = 1.6.6 =
137
+ * Fixed a bug causing international Unicode characters being garbled in the title (thanks to simplelib.com!)
138
+ * Fixed a bug that prevented strings from being highlighted
139
+
140
  = 1.6.5 =
141
  * Fixed a bug causing international Unicode characters being garbled
142
 
143
  = 1.6.4 =
144
  * Added user submitted Japanese language support. Thanks to @west_323!
145
  * &lt;pre&gt;&lt;/pre&gt; tags are now captured as Crayons. This can be turned off in Settings > Crayon > Code.
146
+ * You can remove prevent capturing individual &lt;pre&gt; tags the same way as Crayons: $&lt;pre&gt; ... &lt;/pre&gt;
147
  * This method of preventing the &lt;pre&gt; tag should be used if your code contains &lt;pre&gt; tags (nested &lt;pre&gt; tags) - otherwise it will cause conflicts.
148
  * Keep in mind that &lt;pre&gt; tags should not be editted in Visual Mode. Crayon will display all code as it appears in the HTML view of the post editor, where you can make code changes and use the tab key etc. If you want to use the Visual editor reguarly and are running into problems, consider loading the code form a file using the 'url' attribute.
149
  * I have removed the ability to have spacing between the starting and ending square brackets, so [crayon...] is valid but [ crayon ... ] is not.
302
 
303
  == Upgrade Notice ==
304
 
305
+ Make sure to upgrade to the latest release when possible, I usually fix bugs on the day and add new features quickly.
themes/classic/classic.css CHANGED
@@ -126,6 +126,9 @@ Author URI: http://ak.net84.net/
126
  .crayon-theme-classic .crayon-pre .m {
127
  color: #800080 !important;
128
  }
 
 
 
129
  .crayon-theme-classic .crayon-pre .i {
130
  color: #000 !important;
131
  }
126
  .crayon-theme-classic .crayon-pre .m {
127
  color: #800080 !important;
128
  }
129
+ .crayon-theme-classic .crayon-pre .ta {
130
+ color: #FF0000 !important;
131
+ }
132
  .crayon-theme-classic .crayon-pre .i {
133
  color: #000 !important;
134
  }
themes/twilight/twilight.css CHANGED
@@ -115,6 +115,9 @@ Author URI: http://ak.net84.net/
115
  background-color: #F2F2F2 !important;
116
  color: #666 !important;
117
  }
 
 
 
118
  /* End Code Style ================== */
119
 
120
  /* Syntax Highlighting ============= */
@@ -131,6 +134,9 @@ Author URI: http://ak.net84.net/
131
  .crayon-theme-twilight .crayon-pre .m {
132
  color: #d8b584 !important;
133
  }
 
 
 
134
  .crayon-theme-twilight .crayon-pre .i {
135
  color: #fbefb1 !important;
136
  }
115
  background-color: #F2F2F2 !important;
116
  color: #666 !important;
117
  }
118
+ .crayon-theme-twilight .crayon-toolbar .crayon-mixed-highlight {
119
+ background-image: url('../../css/images/toolbar/plus_dark.png');
120
+ }
121
  /* End Code Style ================== */
122
 
123
  /* Syntax Highlighting ============= */
134
  .crayon-theme-twilight .crayon-pre .m {
135
  color: #d8b584 !important;
136
  }
137
+ .crayon-theme-twilight .crayon-pre .ta {
138
+ color: #AAA !important;
139
+ }
140
  .crayon-theme-twilight .crayon-pre .i {
141
  color: #fbefb1 !important;
142
  }
trans/crayon-syntax-highlighter-de_DE.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-de_DE.po CHANGED
@@ -19,97 +19,97 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: ..\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:117
23
  #: crayon_settings.class.php:121
 
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:117
29
  #: crayon_settings.class.php:121
 
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:117
35
  #: crayon_settings.class.php:121
 
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statisch"
39
 
40
- #: crayon_settings.class.php:119
41
  #: crayon_settings.class.php:123
 
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
- #: crayon_settings.class.php:119
47
  #: crayon_settings.class.php:123
 
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Prozent"
51
 
52
- #: crayon_settings.class.php:132
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Keiner"
56
 
57
- #: crayon_settings.class.php:132
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Links"
61
 
62
- #: crayon_settings.class.php:132
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Center"
66
 
67
- #: crayon_settings.class.php:132
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Rechts"
71
 
72
- #: crayon_settings.class.php:134
73
- #: crayon_settings.class.php:151
74
- #: crayon_settings.class.php:154
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Auf MouseOver"
78
 
79
- #: crayon_settings.class.php:134
80
- #: crayon_settings.class.php:140
81
- #: crayon_settings.class.php:151
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Immer"
85
 
86
- #: crayon_settings.class.php:134
87
- #: crayon_settings.class.php:140
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Nie"
91
 
92
- #: crayon_settings.class.php:140
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Wenn Sie Gefunden"
96
 
97
- #: crayon_settings.class.php:154
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Auf Doppelklick"
101
 
102
- #: crayon_settings.class.php:154
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Auf Mausklick"
106
 
107
- #: crayon_settings.class.php:154
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Nur Mit Toggle"
111
 
112
- #: crayon_settings.class.php:162
113
  #@ crayon-syntax-highlighter
114
  msgid "An error has occurred. Please try again later."
115
  msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
@@ -135,262 +135,262 @@ msgstr "Änderungen speichern"
135
  msgid "Reset Settings"
136
  msgstr "Einstellungen zurücksetzen"
137
 
138
- #: crayon_settings_wp.class.php:428
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Höhe"
142
 
143
- #: crayon_settings_wp.class.php:434
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Breite"
147
 
148
- #: crayon_settings_wp.class.php:440
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Oberen Rand"
152
 
153
- #: crayon_settings_wp.class.php:441
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Unterer Rand"
157
 
158
- #: crayon_settings_wp.class.php:442
159
- #: crayon_settings_wp.class.php:447
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Linker Rand"
163
 
164
- #: crayon_settings_wp.class.php:443
165
- #: crayon_settings_wp.class.php:447
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Rechter Rand"
169
 
170
- #: crayon_settings_wp.class.php:453
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Horizontale Ausrichtung"
174
 
175
- #: crayon_settings_wp.class.php:456
176
  #@ crayon-syntax-highlighter
177
  msgid "Allow floating elements to surround Crayon"
178
  msgstr "Lassen Sie Floating-Elements zu umgeben Crayon"
179
 
180
- #: crayon_settings_wp.class.php:461
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Zeigen Sie die Toolbar"
184
 
185
- #: crayon_settings_wp.class.php:464
186
  #@ crayon-syntax-highlighter
187
  msgid "Overlay the toolbar on code rather than push it down when possible"
188
  msgstr "Overlay in der Symbolleiste auf Code, anstatt nach unten drücken, wenn möglich"
189
 
190
- #: crayon_settings_wp.class.php:465
191
  #@ crayon-syntax-highlighter
192
  msgid "Toggle the toolbar on single click when it is overlayed"
193
  msgstr "Toggle the toolbar on single click when it is overlayed"
194
 
195
- #: crayon_settings_wp.class.php:466
196
  #@ crayon-syntax-highlighter
197
  msgid "Delay hiding the toolbar on MouseOut"
198
  msgstr "Verzögerung Ausblenden der Symbolleiste auf MouseOut"
199
 
200
- #: crayon_settings_wp.class.php:468
201
  #@ crayon-syntax-highlighter
202
  msgid "Display the title when provided"
203
  msgstr "Anzeige der Titel, wenn vorgesehen"
204
 
205
- #: crayon_settings_wp.class.php:469
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Anzeige der Sprache"
209
 
210
- #: crayon_settings_wp.class.php:474
211
  #@ crayon-syntax-highlighter
212
  msgid "Display striped code lines"
213
  msgstr "Anzeige gestreiften Code-Zeilen"
214
 
215
- #: crayon_settings_wp.class.php:475
216
  #@ crayon-syntax-highlighter
217
  msgid "Enable line marking for important lines"
218
  msgstr "Enable-Leitung Kennzeichnung für wichtige Linien"
219
 
220
- #: crayon_settings_wp.class.php:476
221
  #@ crayon-syntax-highlighter
222
  msgid "Display line numbers by default"
223
  msgstr "Zeilennummern anzeigen standardmäßig"
224
 
225
- #: crayon_settings_wp.class.php:477
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Aktivieren Zeilennummer Umschalten"
229
 
230
- #: crayon_settings_wp.class.php:478
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Start Zeilennummern aus"
234
 
235
- #: crayon_settings_wp.class.php:488
236
  #@ crayon-syntax-highlighter
237
  msgid "When no language is provided, use the fallback"
238
  msgstr "Wenn keine Sprache bereitgestellt wird, verwenden Sie die Fallback"
239
 
240
- #: crayon_settings_wp.class.php:501
241
  #@ crayon-syntax-highlighter
242
  msgid "Parsing was successful"
243
  msgstr "Parsing erfolgreich war"
244
 
245
- #: crayon_settings_wp.class.php:501
246
  #@ crayon-syntax-highlighter
247
  msgid "Parsing was unsuccessful"
248
  msgstr "Parsing nicht erfolgreich war"
249
 
250
- #: crayon_settings_wp.class.php:507
251
  #, php-format
252
  #@ crayon-syntax-highlighter
253
  msgid "The selected language with id %s could not be loaded"
254
  msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
255
 
256
- #: crayon_settings_wp.class.php:511
257
  #@ crayon-syntax-highlighter
258
  msgid "Show Languages"
259
  msgstr "Zeige Sprachen"
260
 
261
- #: crayon_settings_wp.class.php:532
262
  #@ crayon-syntax-highlighter
263
  msgid "Enable Live Preview"
264
  msgstr "Live-Vorschau aktivieren"
265
 
266
- #: crayon_settings_wp.class.php:535
267
  #, php-format
268
  #@ crayon-syntax-highlighter
269
  msgid "The selected theme with id %s could not be loaded"
270
  msgstr "Das gewählte Thema mit id %s konnte nicht geladen werden."
271
 
272
- #: crayon_settings_wp.class.php:549
273
  #@ crayon-syntax-highlighter
274
  msgid "Theme Default"
275
  msgstr "Theme Standard"
276
 
277
- #: crayon_settings_wp.class.php:553
278
  #@ crayon-syntax-highlighter
279
  msgid "Custom Font Size"
280
  msgstr "Benutzerdefinierte Schriftgröße"
281
 
282
- #: crayon_settings_wp.class.php:558
283
  #, php-format
284
  #@ crayon-syntax-highlighter
285
  msgid "The selected font with id %s could not be loaded"
286
  msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
287
 
288
- #: crayon_settings_wp.class.php:563
289
  #@ crayon-syntax-highlighter
290
  msgid "Enable plain code view and display"
291
  msgstr "Aktivieren Sie einfach Code-Ansicht und Anzeige"
292
 
293
- #: crayon_settings_wp.class.php:566
294
  #@ crayon-syntax-highlighter
295
  msgid "Enable code copy/paste"
296
  msgstr "Aktivieren Code kopieren/einfügen"
297
 
298
- #: crayon_settings_wp.class.php:568
299
  #@ crayon-syntax-highlighter
300
  msgid "Enable opening code in a window"
301
  msgstr "Aktivieren Öffnungscode in einem Fenster"
302
 
303
- #: crayon_settings_wp.class.php:569
304
  #@ crayon-syntax-highlighter
305
  msgid "Display scrollbars (when needed)"
306
  msgstr "Anzeigen Scrollbalken (bei ​​Bedarf)"
307
 
308
- #: crayon_settings_wp.class.php:571
309
  #@ crayon-syntax-highlighter
310
  msgid "Tab size in spaces"
311
  msgstr "Tab-Größe in Räumen"
312
 
313
- #: crayon_settings_wp.class.php:573
314
  #@ crayon-syntax-highlighter
315
  msgid "Remove whitespace surrounding the shortcode content"
316
  msgstr "Entfernen Sie Leerzeichen um den Shortcode Inhalt"
317
 
318
- #: crayon_settings_wp.class.php:579
319
  #@ crayon-syntax-highlighter
320
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
321
  msgstr "Beim Laden von lokalen Dateien und ein relativer Pfad ist für die URL angegeben, verwenden Sie den absoluten Pfad"
322
 
323
- #: crayon_settings_wp.class.php:586
324
  #@ crayon-syntax-highlighter
325
  msgid "Clear the cache used to store remote code requests"
326
  msgstr "Leeren Sie den Cache verwendet werden, um Remote-Code-Abfragen speichern"
327
 
328
- #: crayon_settings_wp.class.php:588
329
  #@ crayon-syntax-highlighter
330
  msgid "Clear Now"
331
  msgstr "Jetzt löschen"
332
 
333
- #: crayon_settings_wp.class.php:590
334
  #@ crayon-syntax-highlighter
335
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
336
  msgstr "Deaktivieren Mausgesten für Touchscreen-Geräte (zB MouseOver)"
337
 
338
- #: crayon_settings_wp.class.php:591
339
  #@ crayon-syntax-highlighter
340
  msgid "Disable animations"
341
  msgstr "Deaktivieren Animationen"
342
 
343
- #: crayon_settings_wp.class.php:592
344
  #@ crayon-syntax-highlighter
345
  msgid "Disable runtime stats"
346
  msgstr "Deaktivieren Laufzeit stats"
347
 
348
- #: crayon_settings_wp.class.php:599
349
  #@ crayon-syntax-highlighter
350
  msgid "Log errors for individual Crayons"
351
  msgstr "Log Fehler für einzelne Crayons"
352
 
353
- #: crayon_settings_wp.class.php:600
354
  #@ crayon-syntax-highlighter
355
  msgid "Log system-wide errors"
356
  msgstr "Log systemweite Fehler"
357
 
358
- #: crayon_settings_wp.class.php:601
359
  #@ crayon-syntax-highlighter
360
  msgid "Display custom message for errors"
361
  msgstr "Anzeige benutzerdefinierte Meldungen für Fehler"
362
 
363
- #: crayon_settings_wp.class.php:613
364
  #@ crayon-syntax-highlighter
365
  msgid "Show Log"
366
  msgstr "Show Protokoll"
367
 
368
- #: crayon_settings_wp.class.php:615
369
  #@ crayon-syntax-highlighter
370
  msgid "Clear Log"
371
  msgstr "Klare Protokoll"
372
 
373
- #: crayon_settings_wp.class.php:616
374
  #@ crayon-syntax-highlighter
375
  msgid "Email Admin"
376
  msgstr "E-Mail Admin"
377
 
378
- #: crayon_settings_wp.class.php:618
379
  #@ crayon-syntax-highlighter
380
  msgid "Email Developer"
381
  msgstr "E-Mail Entwickler"
382
 
383
- #: crayon_settings_wp.class.php:634
384
  #@ crayon-syntax-highlighter
385
  msgid "Version"
386
  msgstr "Version"
387
 
388
- #: crayon_settings_wp.class.php:636
389
  #@ crayon-syntax-highlighter
390
  msgid "Developer"
391
  msgstr "Entwickler"
392
 
393
- #: crayon_settings_wp.class.php:660
394
  #@ crayon-syntax-highlighter
395
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
396
  msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es ist ein laufendes Projekt, halt mich motiviert!"
@@ -401,72 +401,72 @@ msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es is
401
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
402
  msgstr "Ändern Sie den %1$sFallback-Sprache%2$s , um den Beispielcode ändern. Zeilen 5-7 sind markiert."
403
 
404
- #: crayon_settings.class.php:91
405
  #@ crayon-syntax-highlighter
406
  msgid "Hourly"
407
  msgstr "Stündlich"
408
 
409
- #: crayon_settings.class.php:91
410
  #@ crayon-syntax-highlighter
411
  msgid "Daily"
412
  msgstr "Täglich"
413
 
414
- #: crayon_settings.class.php:92
415
  #@ crayon-syntax-highlighter
416
  msgid "Weekly"
417
  msgstr "Wöchentlich"
418
 
419
- #: crayon_settings.class.php:92
420
  #@ crayon-syntax-highlighter
421
  msgid "Monthly"
422
  msgstr "Monatlich"
423
 
424
- #: crayon_settings.class.php:93
425
  #@ crayon-syntax-highlighter
426
  msgid "Immediately"
427
  msgstr "Sofort"
428
 
429
- #: crayon_settings_wp.class.php:414
430
  #@ crayon-syntax-highlighter
431
  msgid "Crayon Help"
432
  msgstr "Crayon Hilfe"
433
 
434
- #: crayon_settings_wp.class.php:589
435
  #@ crayon-syntax-highlighter
436
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
437
  msgstr "Versuchen Sie, Crayon ist CSS und JavaScript nur laden, wenn nötig"
438
 
439
- #: crayon_settings_wp.class.php:589
440
  #@ crayon-syntax-highlighter
441
  msgid "Why?"
442
  msgstr "Warum?"
443
 
444
- #: crayon_settings_wp.class.php:582
445
  #@ crayon-syntax-highlighter
446
  msgid "Followed by your relative URL."
447
  msgstr "Gefolgt von Ihrem relative URL."
448
 
449
- #: crayon_settings_wp.class.php:620
450
  #@ crayon-syntax-highlighter
451
  msgid "The log is currently empty."
452
  msgstr "Das Protokoll ist derzeit leer."
453
 
454
- #: crayon_settings_wp.class.php:622
455
  #@ crayon-syntax-highlighter
456
  msgid "The log file exists and is writable."
457
  msgstr "Die Log-Datei existiert und beschreibbar ist."
458
 
459
- #: crayon_settings_wp.class.php:622
460
  #@ crayon-syntax-highlighter
461
  msgid "The log file exists and is not writable."
462
  msgstr "Die Log-Datei existiert und ist nicht beschreibbar."
463
 
464
- #: crayon_settings_wp.class.php:624
465
  #@ crayon-syntax-highlighter
466
  msgid "The log file does not exist and is not writable."
467
  msgstr "Die Log-Datei nicht existiert und ist nicht beschreibbar."
468
 
469
- #: crayon_settings_wp.class.php:500
470
  #, php-format
471
  #@ crayon-syntax-highlighter
472
  msgid "%d language has been detected."
@@ -474,8 +474,35 @@ msgid_plural "%d languages have been detected."
474
  msgstr[0] "%d sprache erkannt wurde."
475
  msgstr[1] "%d sprachen nachgewiesen worden."
476
 
477
- #: crayon_settings_wp.class.php:574
478
  #@ crayon-syntax-highlighter
479
  msgid "Capture &lt;pre&gt; tags as Crayons"
480
  msgstr "Erfassen &lt;pre&gt; tags wie Crayons"
481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: ..\n"
20
  "X-Textdomain-Support: yes"
21
 
 
22
  #: crayon_settings.class.php:121
23
+ #: crayon_settings.class.php:125
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
 
28
  #: crayon_settings.class.php:121
29
+ #: crayon_settings.class.php:125
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
 
34
  #: crayon_settings.class.php:121
35
+ #: crayon_settings.class.php:125
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statisch"
39
 
 
40
  #: crayon_settings.class.php:123
41
+ #: crayon_settings.class.php:127
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
 
46
  #: crayon_settings.class.php:123
47
+ #: crayon_settings.class.php:127
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Prozent"
51
 
52
+ #: crayon_settings.class.php:136
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Keiner"
56
 
57
+ #: crayon_settings.class.php:136
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Links"
61
 
62
+ #: crayon_settings.class.php:136
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Center"
66
 
67
+ #: crayon_settings.class.php:136
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Rechts"
71
 
72
+ #: crayon_settings.class.php:138
73
+ #: crayon_settings.class.php:155
74
+ #: crayon_settings.class.php:158
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Auf MouseOver"
78
 
79
+ #: crayon_settings.class.php:138
80
+ #: crayon_settings.class.php:144
81
+ #: crayon_settings.class.php:155
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Immer"
85
 
86
+ #: crayon_settings.class.php:138
87
+ #: crayon_settings.class.php:144
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Nie"
91
 
92
+ #: crayon_settings.class.php:144
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Wenn Sie Gefunden"
96
 
97
+ #: crayon_settings.class.php:158
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Auf Doppelklick"
101
 
102
+ #: crayon_settings.class.php:158
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Auf Mausklick"
106
 
107
+ #: crayon_settings.class.php:158
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Nur Mit Toggle"
111
 
112
+ #: crayon_settings.class.php:166
113
  #@ crayon-syntax-highlighter
114
  msgid "An error has occurred. Please try again later."
115
  msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
135
  msgid "Reset Settings"
136
  msgstr "Einstellungen zurücksetzen"
137
 
138
+ #: crayon_settings_wp.class.php:425
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Höhe"
142
 
143
+ #: crayon_settings_wp.class.php:431
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Breite"
147
 
148
+ #: crayon_settings_wp.class.php:437
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Oberen Rand"
152
 
153
+ #: crayon_settings_wp.class.php:438
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Unterer Rand"
157
 
158
+ #: crayon_settings_wp.class.php:439
159
+ #: crayon_settings_wp.class.php:444
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Linker Rand"
163
 
164
+ #: crayon_settings_wp.class.php:440
165
+ #: crayon_settings_wp.class.php:444
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Rechter Rand"
169
 
170
+ #: crayon_settings_wp.class.php:450
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Horizontale Ausrichtung"
174
 
175
+ #: crayon_settings_wp.class.php:453
176
  #@ crayon-syntax-highlighter
177
  msgid "Allow floating elements to surround Crayon"
178
  msgstr "Lassen Sie Floating-Elements zu umgeben Crayon"
179
 
180
+ #: crayon_settings_wp.class.php:458
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Zeigen Sie die Toolbar"
184
 
185
+ #: crayon_settings_wp.class.php:461
186
  #@ crayon-syntax-highlighter
187
  msgid "Overlay the toolbar on code rather than push it down when possible"
188
  msgstr "Overlay in der Symbolleiste auf Code, anstatt nach unten drücken, wenn möglich"
189
 
190
+ #: crayon_settings_wp.class.php:462
191
  #@ crayon-syntax-highlighter
192
  msgid "Toggle the toolbar on single click when it is overlayed"
193
  msgstr "Toggle the toolbar on single click when it is overlayed"
194
 
195
+ #: crayon_settings_wp.class.php:463
196
  #@ crayon-syntax-highlighter
197
  msgid "Delay hiding the toolbar on MouseOut"
198
  msgstr "Verzögerung Ausblenden der Symbolleiste auf MouseOut"
199
 
200
+ #: crayon_settings_wp.class.php:465
201
  #@ crayon-syntax-highlighter
202
  msgid "Display the title when provided"
203
  msgstr "Anzeige der Titel, wenn vorgesehen"
204
 
205
+ #: crayon_settings_wp.class.php:466
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Anzeige der Sprache"
209
 
210
+ #: crayon_settings_wp.class.php:471
211
  #@ crayon-syntax-highlighter
212
  msgid "Display striped code lines"
213
  msgstr "Anzeige gestreiften Code-Zeilen"
214
 
215
+ #: crayon_settings_wp.class.php:472
216
  #@ crayon-syntax-highlighter
217
  msgid "Enable line marking for important lines"
218
  msgstr "Enable-Leitung Kennzeichnung für wichtige Linien"
219
 
220
+ #: crayon_settings_wp.class.php:473
221
  #@ crayon-syntax-highlighter
222
  msgid "Display line numbers by default"
223
  msgstr "Zeilennummern anzeigen standardmäßig"
224
 
225
+ #: crayon_settings_wp.class.php:474
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Aktivieren Zeilennummer Umschalten"
229
 
230
+ #: crayon_settings_wp.class.php:475
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Start Zeilennummern aus"
234
 
235
+ #: crayon_settings_wp.class.php:485
236
  #@ crayon-syntax-highlighter
237
  msgid "When no language is provided, use the fallback"
238
  msgstr "Wenn keine Sprache bereitgestellt wird, verwenden Sie die Fallback"
239
 
240
+ #: crayon_settings_wp.class.php:498
241
  #@ crayon-syntax-highlighter
242
  msgid "Parsing was successful"
243
  msgstr "Parsing erfolgreich war"
244
 
245
+ #: crayon_settings_wp.class.php:498
246
  #@ crayon-syntax-highlighter
247
  msgid "Parsing was unsuccessful"
248
  msgstr "Parsing nicht erfolgreich war"
249
 
250
+ #: crayon_settings_wp.class.php:504
251
  #, php-format
252
  #@ crayon-syntax-highlighter
253
  msgid "The selected language with id %s could not be loaded"
254
  msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
255
 
256
+ #: crayon_settings_wp.class.php:508
257
  #@ crayon-syntax-highlighter
258
  msgid "Show Languages"
259
  msgstr "Zeige Sprachen"
260
 
261
+ #: crayon_settings_wp.class.php:529
262
  #@ crayon-syntax-highlighter
263
  msgid "Enable Live Preview"
264
  msgstr "Live-Vorschau aktivieren"
265
 
266
+ #: crayon_settings_wp.class.php:532
267
  #, php-format
268
  #@ crayon-syntax-highlighter
269
  msgid "The selected theme with id %s could not be loaded"
270
  msgstr "Das gewählte Thema mit id %s konnte nicht geladen werden."
271
 
272
+ #: crayon_settings_wp.class.php:546
273
  #@ crayon-syntax-highlighter
274
  msgid "Theme Default"
275
  msgstr "Theme Standard"
276
 
277
+ #: crayon_settings_wp.class.php:550
278
  #@ crayon-syntax-highlighter
279
  msgid "Custom Font Size"
280
  msgstr "Benutzerdefinierte Schriftgröße"
281
 
282
+ #: crayon_settings_wp.class.php:555
283
  #, php-format
284
  #@ crayon-syntax-highlighter
285
  msgid "The selected font with id %s could not be loaded"
286
  msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
287
 
288
+ #: crayon_settings_wp.class.php:560
289
  #@ crayon-syntax-highlighter
290
  msgid "Enable plain code view and display"
291
  msgstr "Aktivieren Sie einfach Code-Ansicht und Anzeige"
292
 
293
+ #: crayon_settings_wp.class.php:563
294
  #@ crayon-syntax-highlighter
295
  msgid "Enable code copy/paste"
296
  msgstr "Aktivieren Code kopieren/einfügen"
297
 
298
+ #: crayon_settings_wp.class.php:565
299
  #@ crayon-syntax-highlighter
300
  msgid "Enable opening code in a window"
301
  msgstr "Aktivieren Öffnungscode in einem Fenster"
302
 
303
+ #: crayon_settings_wp.class.php:566
304
  #@ crayon-syntax-highlighter
305
  msgid "Display scrollbars (when needed)"
306
  msgstr "Anzeigen Scrollbalken (bei ​​Bedarf)"
307
 
308
+ #: crayon_settings_wp.class.php:568
309
  #@ crayon-syntax-highlighter
310
  msgid "Tab size in spaces"
311
  msgstr "Tab-Größe in Räumen"
312
 
313
+ #: crayon_settings_wp.class.php:570
314
  #@ crayon-syntax-highlighter
315
  msgid "Remove whitespace surrounding the shortcode content"
316
  msgstr "Entfernen Sie Leerzeichen um den Shortcode Inhalt"
317
 
318
+ #: crayon_settings_wp.class.php:580
319
  #@ crayon-syntax-highlighter
320
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
321
  msgstr "Beim Laden von lokalen Dateien und ein relativer Pfad ist für die URL angegeben, verwenden Sie den absoluten Pfad"
322
 
323
+ #: crayon_settings_wp.class.php:587
324
  #@ crayon-syntax-highlighter
325
  msgid "Clear the cache used to store remote code requests"
326
  msgstr "Leeren Sie den Cache verwendet werden, um Remote-Code-Abfragen speichern"
327
 
328
+ #: crayon_settings_wp.class.php:589
329
  #@ crayon-syntax-highlighter
330
  msgid "Clear Now"
331
  msgstr "Jetzt löschen"
332
 
333
+ #: crayon_settings_wp.class.php:591
334
  #@ crayon-syntax-highlighter
335
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
336
  msgstr "Deaktivieren Mausgesten für Touchscreen-Geräte (zB MouseOver)"
337
 
338
+ #: crayon_settings_wp.class.php:592
339
  #@ crayon-syntax-highlighter
340
  msgid "Disable animations"
341
  msgstr "Deaktivieren Animationen"
342
 
343
+ #: crayon_settings_wp.class.php:593
344
  #@ crayon-syntax-highlighter
345
  msgid "Disable runtime stats"
346
  msgstr "Deaktivieren Laufzeit stats"
347
 
348
+ #: crayon_settings_wp.class.php:600
349
  #@ crayon-syntax-highlighter
350
  msgid "Log errors for individual Crayons"
351
  msgstr "Log Fehler für einzelne Crayons"
352
 
353
+ #: crayon_settings_wp.class.php:601
354
  #@ crayon-syntax-highlighter
355
  msgid "Log system-wide errors"
356
  msgstr "Log systemweite Fehler"
357
 
358
+ #: crayon_settings_wp.class.php:602
359
  #@ crayon-syntax-highlighter
360
  msgid "Display custom message for errors"
361
  msgstr "Anzeige benutzerdefinierte Meldungen für Fehler"
362
 
363
+ #: crayon_settings_wp.class.php:614
364
  #@ crayon-syntax-highlighter
365
  msgid "Show Log"
366
  msgstr "Show Protokoll"
367
 
368
+ #: crayon_settings_wp.class.php:616
369
  #@ crayon-syntax-highlighter
370
  msgid "Clear Log"
371
  msgstr "Klare Protokoll"
372
 
373
+ #: crayon_settings_wp.class.php:617
374
  #@ crayon-syntax-highlighter
375
  msgid "Email Admin"
376
  msgstr "E-Mail Admin"
377
 
378
+ #: crayon_settings_wp.class.php:619
379
  #@ crayon-syntax-highlighter
380
  msgid "Email Developer"
381
  msgstr "E-Mail Entwickler"
382
 
383
+ #: crayon_settings_wp.class.php:635
384
  #@ crayon-syntax-highlighter
385
  msgid "Version"
386
  msgstr "Version"
387
 
388
+ #: crayon_settings_wp.class.php:637
389
  #@ crayon-syntax-highlighter
390
  msgid "Developer"
391
  msgstr "Entwickler"
392
 
393
+ #: crayon_settings_wp.class.php:661
394
  #@ crayon-syntax-highlighter
395
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
396
  msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es ist ein laufendes Projekt, halt mich motiviert!"
401
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
402
  msgstr "Ändern Sie den %1$sFallback-Sprache%2$s , um den Beispielcode ändern. Zeilen 5-7 sind markiert."
403
 
404
+ #: crayon_settings.class.php:95
405
  #@ crayon-syntax-highlighter
406
  msgid "Hourly"
407
  msgstr "Stündlich"
408
 
409
+ #: crayon_settings.class.php:95
410
  #@ crayon-syntax-highlighter
411
  msgid "Daily"
412
  msgstr "Täglich"
413
 
414
+ #: crayon_settings.class.php:96
415
  #@ crayon-syntax-highlighter
416
  msgid "Weekly"
417
  msgstr "Wöchentlich"
418
 
419
+ #: crayon_settings.class.php:96
420
  #@ crayon-syntax-highlighter
421
  msgid "Monthly"
422
  msgstr "Monatlich"
423
 
424
+ #: crayon_settings.class.php:97
425
  #@ crayon-syntax-highlighter
426
  msgid "Immediately"
427
  msgstr "Sofort"
428
 
429
+ #: crayon_settings_wp.class.php:411
430
  #@ crayon-syntax-highlighter
431
  msgid "Crayon Help"
432
  msgstr "Crayon Hilfe"
433
 
434
+ #: crayon_settings_wp.class.php:590
435
  #@ crayon-syntax-highlighter
436
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
437
  msgstr "Versuchen Sie, Crayon ist CSS und JavaScript nur laden, wenn nötig"
438
 
439
+ #: crayon_settings_wp.class.php:590
440
  #@ crayon-syntax-highlighter
441
  msgid "Why?"
442
  msgstr "Warum?"
443
 
444
+ #: crayon_settings_wp.class.php:583
445
  #@ crayon-syntax-highlighter
446
  msgid "Followed by your relative URL."
447
  msgstr "Gefolgt von Ihrem relative URL."
448
 
449
+ #: crayon_settings_wp.class.php:621
450
  #@ crayon-syntax-highlighter
451
  msgid "The log is currently empty."
452
  msgstr "Das Protokoll ist derzeit leer."
453
 
454
+ #: crayon_settings_wp.class.php:623
455
  #@ crayon-syntax-highlighter
456
  msgid "The log file exists and is writable."
457
  msgstr "Die Log-Datei existiert und beschreibbar ist."
458
 
459
+ #: crayon_settings_wp.class.php:623
460
  #@ crayon-syntax-highlighter
461
  msgid "The log file exists and is not writable."
462
  msgstr "Die Log-Datei existiert und ist nicht beschreibbar."
463
 
464
+ #: crayon_settings_wp.class.php:625
465
  #@ crayon-syntax-highlighter
466
  msgid "The log file does not exist and is not writable."
467
  msgstr "Die Log-Datei nicht existiert und ist nicht beschreibbar."
468
 
469
+ #: crayon_settings_wp.class.php:497
470
  #, php-format
471
  #@ crayon-syntax-highlighter
472
  msgid "%d language has been detected."
474
  msgstr[0] "%d sprache erkannt wurde."
475
  msgstr[1] "%d sprachen nachgewiesen worden."
476
 
477
+ #: crayon_settings_wp.class.php:571
478
  #@ crayon-syntax-highlighter
479
  msgid "Capture &lt;pre&gt; tags as Crayons"
480
  msgstr "Erfassen &lt;pre&gt; tags wie Crayons"
481
 
482
+ #: crayon_settings_wp.class.php:572
483
+ #: crayon_settings_wp.class.php:573
484
+ #: crayon_settings_wp.class.php:574
485
+ #@ crayon-syntax-highlighter
486
+ msgid "Learn More"
487
+ msgstr "Erfahren Sie mehr"
488
+
489
+ #: crayon_settings_wp.class.php:575
490
+ #@ crayon-syntax-highlighter
491
+ msgid "Show Mixed Language Icon (+)"
492
+ msgstr "Zeige gemischte Sprache Symbol (+)"
493
+
494
+ #: crayon_settings_wp.class.php:574
495
+ #@ crayon-syntax-highlighter
496
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
497
+ msgstr "Lassen gemischte Sprache Hervorhebung mit Trennzeichen und Tags."
498
+
499
+ #: crayon_settings_wp.class.php:572
500
+ #@ crayon-syntax-highlighter
501
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
502
+ msgstr "Erfassen Mini Tags wie [php][/php] als Crayons."
503
+
504
+ #: crayon_settings_wp.class.php:573
505
+ #@ crayon-syntax-highlighter
506
+ msgid "Enable [plain][/plain] tag."
507
+ msgstr "Aktivieren [plain][/plain] Tag."
508
+
trans/crayon-syntax-highlighter-es_ES.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-es_ES.po CHANGED
@@ -19,97 +19,97 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:117
23
  #: crayon_settings.class.php:121
 
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:117
29
  #: crayon_settings.class.php:121
 
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:117
35
  #: crayon_settings.class.php:121
 
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Estático"
39
 
40
- #: crayon_settings.class.php:119
41
  #: crayon_settings.class.php:123
 
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Píxeles"
45
 
46
- #: crayon_settings.class.php:119
47
  #: crayon_settings.class.php:123
 
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Por ciento"
51
 
52
- #: crayon_settings.class.php:132
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Ninguno"
56
 
57
- #: crayon_settings.class.php:132
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Izquierda"
61
 
62
- #: crayon_settings.class.php:132
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centro"
66
 
67
- #: crayon_settings.class.php:132
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Derecho"
71
 
72
- #: crayon_settings.class.php:134
73
- #: crayon_settings.class.php:151
74
- #: crayon_settings.class.php:154
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Se mueve el ratón"
78
 
79
- #: crayon_settings.class.php:134
80
- #: crayon_settings.class.php:140
81
- #: crayon_settings.class.php:151
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Siempre"
85
 
86
- #: crayon_settings.class.php:134
87
- #: crayon_settings.class.php:140
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Nunca"
91
 
92
- #: crayon_settings.class.php:140
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Cuando se encuentra"
96
 
97
- #: crayon_settings.class.php:154
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Haga doble click en"
101
 
102
- #: crayon_settings.class.php:154
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "En solo clic"
106
 
107
- #: crayon_settings.class.php:154
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Con sólo Cambia"
111
 
112
- #: crayon_settings.class.php:162
113
  #@ crayon-syntax-highlighter
114
  msgid "An error has occurred. Please try again later."
115
  msgstr "Se produjo un error. Por favor, inténtelo de nuevo más tarde."
@@ -135,262 +135,262 @@ msgstr "Guardar cambios"
135
  msgid "Reset Settings"
136
  msgstr "Restablecer configuración"
137
 
138
- #: crayon_settings_wp.class.php:428
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Altura"
142
 
143
- #: crayon_settings_wp.class.php:434
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Ancho"
147
 
148
- #: crayon_settings_wp.class.php:440
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Margen superior"
152
 
153
- #: crayon_settings_wp.class.php:441
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Margen inferior"
157
 
158
- #: crayon_settings_wp.class.php:442
159
- #: crayon_settings_wp.class.php:447
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Margen Izquierda"
163
 
164
- #: crayon_settings_wp.class.php:443
165
- #: crayon_settings_wp.class.php:447
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Margen derecho"
169
 
170
- #: crayon_settings_wp.class.php:453
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "La alineación horizontal"
174
 
175
- #: crayon_settings_wp.class.php:456
176
  #@ crayon-syntax-highlighter
177
  msgid "Allow floating elements to surround Crayon"
178
  msgstr "Permitir que los elementos flotantes que rodean Crayon"
179
 
180
- #: crayon_settings_wp.class.php:461
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Mostrar la barra de herramientas"
184
 
185
- #: crayon_settings_wp.class.php:464
186
  #@ crayon-syntax-highlighter
187
  msgid "Overlay the toolbar on code rather than push it down when possible"
188
  msgstr "Superposición de la barra de herramientas de código en lugar de empujar hacia abajo cuando sea posible"
189
 
190
- #: crayon_settings_wp.class.php:465
191
  #@ crayon-syntax-highlighter
192
  msgid "Toggle the toolbar on single click when it is overlayed"
193
  msgstr "Activar o desactivar la barra de herramientas en un solo clic cuando se superpone"
194
 
195
- #: crayon_settings_wp.class.php:466
196
  #@ crayon-syntax-highlighter
197
  msgid "Delay hiding the toolbar on MouseOut"
198
  msgstr "Delay ocultar la barra de herramientas en MouseOut"
199
 
200
- #: crayon_settings_wp.class.php:468
201
  #@ crayon-syntax-highlighter
202
  msgid "Display the title when provided"
203
  msgstr "Mostrar el título cuando se proporcionan"
204
 
205
- #: crayon_settings_wp.class.php:469
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Mostrar el lenguaje"
209
 
210
- #: crayon_settings_wp.class.php:474
211
  #@ crayon-syntax-highlighter
212
  msgid "Display striped code lines"
213
  msgstr "Mostrar las líneas de código de rayas"
214
 
215
- #: crayon_settings_wp.class.php:475
216
  #@ crayon-syntax-highlighter
217
  msgid "Enable line marking for important lines"
218
  msgstr "Activar la línea de marca para las líneas importantes"
219
 
220
- #: crayon_settings_wp.class.php:476
221
  #@ crayon-syntax-highlighter
222
  msgid "Display line numbers by default"
223
  msgstr "Mostrar números de línea por defecto"
224
 
225
- #: crayon_settings_wp.class.php:477
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Permiten alternar la línea número"
229
 
230
- #: crayon_settings_wp.class.php:478
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Inicio de los números de línea"
234
 
235
- #: crayon_settings_wp.class.php:488
236
  #@ crayon-syntax-highlighter
237
  msgid "When no language is provided, use the fallback"
238
  msgstr "Cuando no se proporciona el lenguaje, el uso de la reserva"
239
 
240
- #: crayon_settings_wp.class.php:501
241
  #@ crayon-syntax-highlighter
242
  msgid "Parsing was successful"
243
  msgstr "El análisis se ha realizado correctamente"
244
 
245
- #: crayon_settings_wp.class.php:501
246
  #@ crayon-syntax-highlighter
247
  msgid "Parsing was unsuccessful"
248
  msgstr "El análisis no tuvo éxito"
249
 
250
- #: crayon_settings_wp.class.php:507
251
  #, php-format
252
  #@ crayon-syntax-highlighter
253
  msgid "The selected language with id %s could not be loaded"
254
  msgstr "El idioma seleccionado con el id %s no se pudo cargar"
255
 
256
- #: crayon_settings_wp.class.php:511
257
  #@ crayon-syntax-highlighter
258
  msgid "Show Languages"
259
  msgstr "Mostrar Idiomas"
260
 
261
- #: crayon_settings_wp.class.php:532
262
  #@ crayon-syntax-highlighter
263
  msgid "Enable Live Preview"
264
  msgstr "Activar vista previa dinámica"
265
 
266
- #: crayon_settings_wp.class.php:535
267
  #, php-format
268
  #@ crayon-syntax-highlighter
269
  msgid "The selected theme with id %s could not be loaded"
270
  msgstr "El tema seleccionado con el id %s no se pudo cargar"
271
 
272
- #: crayon_settings_wp.class.php:549
273
  #@ crayon-syntax-highlighter
274
  msgid "Theme Default"
275
  msgstr "Tema por defecto"
276
 
277
- #: crayon_settings_wp.class.php:553
278
  #@ crayon-syntax-highlighter
279
  msgid "Custom Font Size"
280
  msgstr "Tamaño de fuente personalizado"
281
 
282
- #: crayon_settings_wp.class.php:558
283
  #, php-format
284
  #@ crayon-syntax-highlighter
285
  msgid "The selected font with id %s could not be loaded"
286
  msgstr "La fuente seleccionada con id %s no se pudo cargar"
287
 
288
- #: crayon_settings_wp.class.php:563
289
  #@ crayon-syntax-highlighter
290
  msgid "Enable plain code view and display"
291
  msgstr "Permiten ver el código normal y la pantalla"
292
 
293
- #: crayon_settings_wp.class.php:566
294
  #@ crayon-syntax-highlighter
295
  msgid "Enable code copy/paste"
296
  msgstr "Permiten copiar el código / pegar"
297
 
298
- #: crayon_settings_wp.class.php:568
299
  #@ crayon-syntax-highlighter
300
  msgid "Enable opening code in a window"
301
  msgstr "Permitir que el código de apertura de una ventana"
302
 
303
- #: crayon_settings_wp.class.php:569
304
  #@ crayon-syntax-highlighter
305
  msgid "Display scrollbars (when needed)"
306
  msgstr "Barras de desplazamiento de la pantalla (si es necesario)"
307
 
308
- #: crayon_settings_wp.class.php:571
309
  #@ crayon-syntax-highlighter
310
  msgid "Tab size in spaces"
311
  msgstr "Tab tamaño en espacios"
312
 
313
- #: crayon_settings_wp.class.php:573
314
  #@ crayon-syntax-highlighter
315
  msgid "Remove whitespace surrounding the shortcode content"
316
  msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
317
 
318
- #: crayon_settings_wp.class.php:579
319
  #@ crayon-syntax-highlighter
320
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
321
  msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
322
 
323
- #: crayon_settings_wp.class.php:586
324
  #@ crayon-syntax-highlighter
325
  msgid "Clear the cache used to store remote code requests"
326
  msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
327
 
328
- #: crayon_settings_wp.class.php:588
329
  #@ crayon-syntax-highlighter
330
  msgid "Clear Now"
331
  msgstr "Limpiar ahora"
332
 
333
- #: crayon_settings_wp.class.php:590
334
  #@ crayon-syntax-highlighter
335
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
336
  msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
337
 
338
- #: crayon_settings_wp.class.php:591
339
  #@ crayon-syntax-highlighter
340
  msgid "Disable animations"
341
  msgstr "Desactivar las animaciones"
342
 
343
- #: crayon_settings_wp.class.php:592
344
  #@ crayon-syntax-highlighter
345
  msgid "Disable runtime stats"
346
  msgstr "Desactivar tiempo de ejecución de las estadísticas"
347
 
348
- #: crayon_settings_wp.class.php:599
349
  #@ crayon-syntax-highlighter
350
  msgid "Log errors for individual Crayons"
351
  msgstr "Errores de registro para cada Crayon"
352
 
353
- #: crayon_settings_wp.class.php:600
354
  #@ crayon-syntax-highlighter
355
  msgid "Log system-wide errors"
356
  msgstr "Registro de todo el sistema de los errores"
357
 
358
- #: crayon_settings_wp.class.php:601
359
  #@ crayon-syntax-highlighter
360
  msgid "Display custom message for errors"
361
  msgstr "Mostrar mensajes personalizados para los errores"
362
 
363
- #: crayon_settings_wp.class.php:613
364
  #@ crayon-syntax-highlighter
365
  msgid "Show Log"
366
  msgstr "Mostrar Registro"
367
 
368
- #: crayon_settings_wp.class.php:615
369
  #@ crayon-syntax-highlighter
370
  msgid "Clear Log"
371
  msgstr "Borrar Registro"
372
 
373
- #: crayon_settings_wp.class.php:616
374
  #@ crayon-syntax-highlighter
375
  msgid "Email Admin"
376
  msgstr "Admin Email"
377
 
378
- #: crayon_settings_wp.class.php:618
379
  #@ crayon-syntax-highlighter
380
  msgid "Email Developer"
381
  msgstr "Correo electrónico del desarrollador"
382
 
383
- #: crayon_settings_wp.class.php:634
384
  #@ crayon-syntax-highlighter
385
  msgid "Version"
386
  msgstr "Versión"
387
 
388
- #: crayon_settings_wp.class.php:636
389
  #@ crayon-syntax-highlighter
390
  msgid "Developer"
391
  msgstr "Promotor"
392
 
393
- #: crayon_settings_wp.class.php:660
394
  #@ crayon-syntax-highlighter
395
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
396
  msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
@@ -401,47 +401,47 @@ msgstr "El resultado de incontables horas de duro trabajo durante muchos meses.
401
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
402
  msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
403
 
404
- #: crayon_settings.class.php:91
405
  #@ crayon-syntax-highlighter
406
  msgid "Hourly"
407
  msgstr "Cada hora"
408
 
409
- #: crayon_settings.class.php:91
410
  #@ crayon-syntax-highlighter
411
  msgid "Daily"
412
  msgstr "Diario"
413
 
414
- #: crayon_settings.class.php:92
415
  #@ crayon-syntax-highlighter
416
  msgid "Weekly"
417
  msgstr "Semanal"
418
 
419
- #: crayon_settings.class.php:92
420
  #@ crayon-syntax-highlighter
421
  msgid "Monthly"
422
  msgstr "Mensual"
423
 
424
- #: crayon_settings.class.php:93
425
  #@ crayon-syntax-highlighter
426
  msgid "Immediately"
427
  msgstr "Inmediatamente"
428
 
429
- #: crayon_settings_wp.class.php:414
430
  #@ crayon-syntax-highlighter
431
  msgid "Crayon Help"
432
  msgstr "Crayon Ayuda"
433
 
434
- #: crayon_settings_wp.class.php:589
435
  #@ crayon-syntax-highlighter
436
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
437
  msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
438
 
439
- #: crayon_settings_wp.class.php:589
440
  #@ crayon-syntax-highlighter
441
  msgid "Why?"
442
  msgstr "¿Por qué?"
443
 
444
- #: crayon_settings_wp.class.php:500
445
  #, php-format
446
  #@ crayon-syntax-highlighter
447
  msgid "%d language has been detected."
@@ -449,33 +449,60 @@ msgid_plural "%d languages have been detected."
449
  msgstr[0] "%d lenguaje que se ha detectado."
450
  msgstr[1] "%d idiomas se han detectado."
451
 
452
- #: crayon_settings_wp.class.php:582
453
  #@ crayon-syntax-highlighter
454
  msgid "Followed by your relative URL."
455
  msgstr "Seguido de su dirección URL relativa\t."
456
 
457
- #: crayon_settings_wp.class.php:620
458
  #@ crayon-syntax-highlighter
459
  msgid "The log is currently empty."
460
  msgstr "El registro está actualmente vacía."
461
 
462
- #: crayon_settings_wp.class.php:622
463
  #@ crayon-syntax-highlighter
464
  msgid "The log file exists and is writable."
465
  msgstr "El archivo de registro existe y se puede escribir."
466
 
467
- #: crayon_settings_wp.class.php:622
468
  #@ crayon-syntax-highlighter
469
  msgid "The log file exists and is not writable."
470
  msgstr "El archivo de registro existe y no es modificable."
471
 
472
- #: crayon_settings_wp.class.php:624
473
  #@ crayon-syntax-highlighter
474
  msgid "The log file does not exist and is not writable."
475
  msgstr "El archivo de registro no existe y no es modificable."
476
 
477
- #: crayon_settings_wp.class.php:574
478
  #@ crayon-syntax-highlighter
479
  msgid "Capture &lt;pre&gt; tags as Crayons"
480
  msgstr "Captura de etiquetas &lt;pre&gt; como Crayons"
481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
 
22
  #: crayon_settings.class.php:121
23
+ #: crayon_settings.class.php:125
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
 
28
  #: crayon_settings.class.php:121
29
+ #: crayon_settings.class.php:125
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
 
34
  #: crayon_settings.class.php:121
35
+ #: crayon_settings.class.php:125
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Estático"
39
 
 
40
  #: crayon_settings.class.php:123
41
+ #: crayon_settings.class.php:127
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Píxeles"
45
 
 
46
  #: crayon_settings.class.php:123
47
+ #: crayon_settings.class.php:127
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Por ciento"
51
 
52
+ #: crayon_settings.class.php:136
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Ninguno"
56
 
57
+ #: crayon_settings.class.php:136
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Izquierda"
61
 
62
+ #: crayon_settings.class.php:136
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centro"
66
 
67
+ #: crayon_settings.class.php:136
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Derecho"
71
 
72
+ #: crayon_settings.class.php:138
73
+ #: crayon_settings.class.php:155
74
+ #: crayon_settings.class.php:158
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Se mueve el ratón"
78
 
79
+ #: crayon_settings.class.php:138
80
+ #: crayon_settings.class.php:144
81
+ #: crayon_settings.class.php:155
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Siempre"
85
 
86
+ #: crayon_settings.class.php:138
87
+ #: crayon_settings.class.php:144
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Nunca"
91
 
92
+ #: crayon_settings.class.php:144
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Cuando se encuentra"
96
 
97
+ #: crayon_settings.class.php:158
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Haga doble click en"
101
 
102
+ #: crayon_settings.class.php:158
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "En solo clic"
106
 
107
+ #: crayon_settings.class.php:158
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Con sólo Cambia"
111
 
112
+ #: crayon_settings.class.php:166
113
  #@ crayon-syntax-highlighter
114
  msgid "An error has occurred. Please try again later."
115
  msgstr "Se produjo un error. Por favor, inténtelo de nuevo más tarde."
135
  msgid "Reset Settings"
136
  msgstr "Restablecer configuración"
137
 
138
+ #: crayon_settings_wp.class.php:425
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Altura"
142
 
143
+ #: crayon_settings_wp.class.php:431
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Ancho"
147
 
148
+ #: crayon_settings_wp.class.php:437
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Margen superior"
152
 
153
+ #: crayon_settings_wp.class.php:438
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Margen inferior"
157
 
158
+ #: crayon_settings_wp.class.php:439
159
+ #: crayon_settings_wp.class.php:444
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Margen Izquierda"
163
 
164
+ #: crayon_settings_wp.class.php:440
165
+ #: crayon_settings_wp.class.php:444
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Margen derecho"
169
 
170
+ #: crayon_settings_wp.class.php:450
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "La alineación horizontal"
174
 
175
+ #: crayon_settings_wp.class.php:453
176
  #@ crayon-syntax-highlighter
177
  msgid "Allow floating elements to surround Crayon"
178
  msgstr "Permitir que los elementos flotantes que rodean Crayon"
179
 
180
+ #: crayon_settings_wp.class.php:458
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Mostrar la barra de herramientas"
184
 
185
+ #: crayon_settings_wp.class.php:461
186
  #@ crayon-syntax-highlighter
187
  msgid "Overlay the toolbar on code rather than push it down when possible"
188
  msgstr "Superposición de la barra de herramientas de código en lugar de empujar hacia abajo cuando sea posible"
189
 
190
+ #: crayon_settings_wp.class.php:462
191
  #@ crayon-syntax-highlighter
192
  msgid "Toggle the toolbar on single click when it is overlayed"
193
  msgstr "Activar o desactivar la barra de herramientas en un solo clic cuando se superpone"
194
 
195
+ #: crayon_settings_wp.class.php:463
196
  #@ crayon-syntax-highlighter
197
  msgid "Delay hiding the toolbar on MouseOut"
198
  msgstr "Delay ocultar la barra de herramientas en MouseOut"
199
 
200
+ #: crayon_settings_wp.class.php:465
201
  #@ crayon-syntax-highlighter
202
  msgid "Display the title when provided"
203
  msgstr "Mostrar el título cuando se proporcionan"
204
 
205
+ #: crayon_settings_wp.class.php:466
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Mostrar el lenguaje"
209
 
210
+ #: crayon_settings_wp.class.php:471
211
  #@ crayon-syntax-highlighter
212
  msgid "Display striped code lines"
213
  msgstr "Mostrar las líneas de código de rayas"
214
 
215
+ #: crayon_settings_wp.class.php:472
216
  #@ crayon-syntax-highlighter
217
  msgid "Enable line marking for important lines"
218
  msgstr "Activar la línea de marca para las líneas importantes"
219
 
220
+ #: crayon_settings_wp.class.php:473
221
  #@ crayon-syntax-highlighter
222
  msgid "Display line numbers by default"
223
  msgstr "Mostrar números de línea por defecto"
224
 
225
+ #: crayon_settings_wp.class.php:474
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Permiten alternar la línea número"
229
 
230
+ #: crayon_settings_wp.class.php:475
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Inicio de los números de línea"
234
 
235
+ #: crayon_settings_wp.class.php:485
236
  #@ crayon-syntax-highlighter
237
  msgid "When no language is provided, use the fallback"
238
  msgstr "Cuando no se proporciona el lenguaje, el uso de la reserva"
239
 
240
+ #: crayon_settings_wp.class.php:498
241
  #@ crayon-syntax-highlighter
242
  msgid "Parsing was successful"
243
  msgstr "El análisis se ha realizado correctamente"
244
 
245
+ #: crayon_settings_wp.class.php:498
246
  #@ crayon-syntax-highlighter
247
  msgid "Parsing was unsuccessful"
248
  msgstr "El análisis no tuvo éxito"
249
 
250
+ #: crayon_settings_wp.class.php:504
251
  #, php-format
252
  #@ crayon-syntax-highlighter
253
  msgid "The selected language with id %s could not be loaded"
254
  msgstr "El idioma seleccionado con el id %s no se pudo cargar"
255
 
256
+ #: crayon_settings_wp.class.php:508
257
  #@ crayon-syntax-highlighter
258
  msgid "Show Languages"
259
  msgstr "Mostrar Idiomas"
260
 
261
+ #: crayon_settings_wp.class.php:529
262
  #@ crayon-syntax-highlighter
263
  msgid "Enable Live Preview"
264
  msgstr "Activar vista previa dinámica"
265
 
266
+ #: crayon_settings_wp.class.php:532
267
  #, php-format
268
  #@ crayon-syntax-highlighter
269
  msgid "The selected theme with id %s could not be loaded"
270
  msgstr "El tema seleccionado con el id %s no se pudo cargar"
271
 
272
+ #: crayon_settings_wp.class.php:546
273
  #@ crayon-syntax-highlighter
274
  msgid "Theme Default"
275
  msgstr "Tema por defecto"
276
 
277
+ #: crayon_settings_wp.class.php:550
278
  #@ crayon-syntax-highlighter
279
  msgid "Custom Font Size"
280
  msgstr "Tamaño de fuente personalizado"
281
 
282
+ #: crayon_settings_wp.class.php:555
283
  #, php-format
284
  #@ crayon-syntax-highlighter
285
  msgid "The selected font with id %s could not be loaded"
286
  msgstr "La fuente seleccionada con id %s no se pudo cargar"
287
 
288
+ #: crayon_settings_wp.class.php:560
289
  #@ crayon-syntax-highlighter
290
  msgid "Enable plain code view and display"
291
  msgstr "Permiten ver el código normal y la pantalla"
292
 
293
+ #: crayon_settings_wp.class.php:563
294
  #@ crayon-syntax-highlighter
295
  msgid "Enable code copy/paste"
296
  msgstr "Permiten copiar el código / pegar"
297
 
298
+ #: crayon_settings_wp.class.php:565
299
  #@ crayon-syntax-highlighter
300
  msgid "Enable opening code in a window"
301
  msgstr "Permitir que el código de apertura de una ventana"
302
 
303
+ #: crayon_settings_wp.class.php:566
304
  #@ crayon-syntax-highlighter
305
  msgid "Display scrollbars (when needed)"
306
  msgstr "Barras de desplazamiento de la pantalla (si es necesario)"
307
 
308
+ #: crayon_settings_wp.class.php:568
309
  #@ crayon-syntax-highlighter
310
  msgid "Tab size in spaces"
311
  msgstr "Tab tamaño en espacios"
312
 
313
+ #: crayon_settings_wp.class.php:570
314
  #@ crayon-syntax-highlighter
315
  msgid "Remove whitespace surrounding the shortcode content"
316
  msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
317
 
318
+ #: crayon_settings_wp.class.php:580
319
  #@ crayon-syntax-highlighter
320
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
321
  msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
322
 
323
+ #: crayon_settings_wp.class.php:587
324
  #@ crayon-syntax-highlighter
325
  msgid "Clear the cache used to store remote code requests"
326
  msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
327
 
328
+ #: crayon_settings_wp.class.php:589
329
  #@ crayon-syntax-highlighter
330
  msgid "Clear Now"
331
  msgstr "Limpiar ahora"
332
 
333
+ #: crayon_settings_wp.class.php:591
334
  #@ crayon-syntax-highlighter
335
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
336
  msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
337
 
338
+ #: crayon_settings_wp.class.php:592
339
  #@ crayon-syntax-highlighter
340
  msgid "Disable animations"
341
  msgstr "Desactivar las animaciones"
342
 
343
+ #: crayon_settings_wp.class.php:593
344
  #@ crayon-syntax-highlighter
345
  msgid "Disable runtime stats"
346
  msgstr "Desactivar tiempo de ejecución de las estadísticas"
347
 
348
+ #: crayon_settings_wp.class.php:600
349
  #@ crayon-syntax-highlighter
350
  msgid "Log errors for individual Crayons"
351
  msgstr "Errores de registro para cada Crayon"
352
 
353
+ #: crayon_settings_wp.class.php:601
354
  #@ crayon-syntax-highlighter
355
  msgid "Log system-wide errors"
356
  msgstr "Registro de todo el sistema de los errores"
357
 
358
+ #: crayon_settings_wp.class.php:602
359
  #@ crayon-syntax-highlighter
360
  msgid "Display custom message for errors"
361
  msgstr "Mostrar mensajes personalizados para los errores"
362
 
363
+ #: crayon_settings_wp.class.php:614
364
  #@ crayon-syntax-highlighter
365
  msgid "Show Log"
366
  msgstr "Mostrar Registro"
367
 
368
+ #: crayon_settings_wp.class.php:616
369
  #@ crayon-syntax-highlighter
370
  msgid "Clear Log"
371
  msgstr "Borrar Registro"
372
 
373
+ #: crayon_settings_wp.class.php:617
374
  #@ crayon-syntax-highlighter
375
  msgid "Email Admin"
376
  msgstr "Admin Email"
377
 
378
+ #: crayon_settings_wp.class.php:619
379
  #@ crayon-syntax-highlighter
380
  msgid "Email Developer"
381
  msgstr "Correo electrónico del desarrollador"
382
 
383
+ #: crayon_settings_wp.class.php:635
384
  #@ crayon-syntax-highlighter
385
  msgid "Version"
386
  msgstr "Versión"
387
 
388
+ #: crayon_settings_wp.class.php:637
389
  #@ crayon-syntax-highlighter
390
  msgid "Developer"
391
  msgstr "Promotor"
392
 
393
+ #: crayon_settings_wp.class.php:661
394
  #@ crayon-syntax-highlighter
395
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
396
  msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
401
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
402
  msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
403
 
404
+ #: crayon_settings.class.php:95
405
  #@ crayon-syntax-highlighter
406
  msgid "Hourly"
407
  msgstr "Cada hora"
408
 
409
+ #: crayon_settings.class.php:95
410
  #@ crayon-syntax-highlighter
411
  msgid "Daily"
412
  msgstr "Diario"
413
 
414
+ #: crayon_settings.class.php:96
415
  #@ crayon-syntax-highlighter
416
  msgid "Weekly"
417
  msgstr "Semanal"
418
 
419
+ #: crayon_settings.class.php:96
420
  #@ crayon-syntax-highlighter
421
  msgid "Monthly"
422
  msgstr "Mensual"
423
 
424
+ #: crayon_settings.class.php:97
425
  #@ crayon-syntax-highlighter
426
  msgid "Immediately"
427
  msgstr "Inmediatamente"
428
 
429
+ #: crayon_settings_wp.class.php:411
430
  #@ crayon-syntax-highlighter
431
  msgid "Crayon Help"
432
  msgstr "Crayon Ayuda"
433
 
434
+ #: crayon_settings_wp.class.php:590
435
  #@ crayon-syntax-highlighter
436
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
437
  msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
438
 
439
+ #: crayon_settings_wp.class.php:590
440
  #@ crayon-syntax-highlighter
441
  msgid "Why?"
442
  msgstr "¿Por qué?"
443
 
444
+ #: crayon_settings_wp.class.php:497
445
  #, php-format
446
  #@ crayon-syntax-highlighter
447
  msgid "%d language has been detected."
449
  msgstr[0] "%d lenguaje que se ha detectado."
450
  msgstr[1] "%d idiomas se han detectado."
451
 
452
+ #: crayon_settings_wp.class.php:583
453
  #@ crayon-syntax-highlighter
454
  msgid "Followed by your relative URL."
455
  msgstr "Seguido de su dirección URL relativa\t."
456
 
457
+ #: crayon_settings_wp.class.php:621
458
  #@ crayon-syntax-highlighter
459
  msgid "The log is currently empty."
460
  msgstr "El registro está actualmente vacía."
461
 
462
+ #: crayon_settings_wp.class.php:623
463
  #@ crayon-syntax-highlighter
464
  msgid "The log file exists and is writable."
465
  msgstr "El archivo de registro existe y se puede escribir."
466
 
467
+ #: crayon_settings_wp.class.php:623
468
  #@ crayon-syntax-highlighter
469
  msgid "The log file exists and is not writable."
470
  msgstr "El archivo de registro existe y no es modificable."
471
 
472
+ #: crayon_settings_wp.class.php:625
473
  #@ crayon-syntax-highlighter
474
  msgid "The log file does not exist and is not writable."
475
  msgstr "El archivo de registro no existe y no es modificable."
476
 
477
+ #: crayon_settings_wp.class.php:571
478
  #@ crayon-syntax-highlighter
479
  msgid "Capture &lt;pre&gt; tags as Crayons"
480
  msgstr "Captura de etiquetas &lt;pre&gt; como Crayons"
481
 
482
+ #: crayon_settings_wp.class.php:572
483
+ #: crayon_settings_wp.class.php:573
484
+ #: crayon_settings_wp.class.php:574
485
+ #@ crayon-syntax-highlighter
486
+ msgid "Learn More"
487
+ msgstr "Más información"
488
+
489
+ #: crayon_settings_wp.class.php:575
490
+ #@ crayon-syntax-highlighter
491
+ msgid "Show Mixed Language Icon (+)"
492
+ msgstr "Mostrar el icono del lenguaje mixto (+)"
493
+
494
+ #: crayon_settings_wp.class.php:574
495
+ #@ crayon-syntax-highlighter
496
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
497
+ msgstr "Permiten destacar mixto del lenguaje con delimitadores y etiquetas."
498
+
499
+ #: crayon_settings_wp.class.php:572
500
+ #@ crayon-syntax-highlighter
501
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
502
+ msgstr "Captura Tags Mini como [php][/php] como Crayons."
503
+
504
+ #: crayon_settings_wp.class.php:573
505
+ #@ crayon-syntax-highlighter
506
+ msgid "Enable [plain][/plain] tag."
507
+ msgstr "Activar etiqueta [plain][/plain]."
508
+
trans/crayon-syntax-highlighter-fr_FR.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-fr_FR.po CHANGED
@@ -19,97 +19,97 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:117
23
  #: crayon_settings.class.php:121
 
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:117
29
  #: crayon_settings.class.php:121
 
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:117
35
  #: crayon_settings.class.php:121
 
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statique"
39
 
40
- #: crayon_settings.class.php:119
41
  #: crayon_settings.class.php:123
 
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
- #: crayon_settings.class.php:119
47
  #: crayon_settings.class.php:123
 
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Pour cent"
51
 
52
- #: crayon_settings.class.php:132
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Aucun"
56
 
57
- #: crayon_settings.class.php:132
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Gauche"
61
 
62
- #: crayon_settings.class.php:132
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centre"
66
 
67
- #: crayon_settings.class.php:132
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Droite"
71
 
72
- #: crayon_settings.class.php:134
73
- #: crayon_settings.class.php:151
74
- #: crayon_settings.class.php:154
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Sur MouseOver"
78
 
79
- #: crayon_settings.class.php:134
80
- #: crayon_settings.class.php:140
81
- #: crayon_settings.class.php:151
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Toujours"
85
 
86
- #: crayon_settings.class.php:134
87
- #: crayon_settings.class.php:140
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Jamais"
91
 
92
- #: crayon_settings.class.php:140
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Une fois trouvé"
96
 
97
- #: crayon_settings.class.php:154
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Le double-clic"
101
 
102
- #: crayon_settings.class.php:154
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Le Single Cliquez"
106
 
107
- #: crayon_settings.class.php:154
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Seule l'aide Bascule"
111
 
112
- #: crayon_settings.class.php:162
113
  #@ crayon-syntax-highlighter
114
  msgid "An error has occurred. Please try again later."
115
  msgstr "Une erreur s'est produite. S'il vous plaît essayez de nouveau plus tard."
@@ -135,262 +135,262 @@ msgstr "Enregistrer les modifications"
135
  msgid "Reset Settings"
136
  msgstr "Réinitialiser les paramètres"
137
 
138
- #: crayon_settings_wp.class.php:428
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Hauteur"
142
 
143
- #: crayon_settings_wp.class.php:434
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Largeur"
147
 
148
- #: crayon_settings_wp.class.php:440
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Marge supérieure"
152
 
153
- #: crayon_settings_wp.class.php:441
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "La marge du bas"
157
 
158
- #: crayon_settings_wp.class.php:442
159
- #: crayon_settings_wp.class.php:447
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Marge de gauche"
163
 
164
- #: crayon_settings_wp.class.php:443
165
- #: crayon_settings_wp.class.php:447
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Marge droite"
169
 
170
- #: crayon_settings_wp.class.php:453
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Alignement horizontal"
174
 
175
- #: crayon_settings_wp.class.php:456
176
  #@ crayon-syntax-highlighter
177
  msgid "Allow floating elements to surround Crayon"
178
  msgstr "Autoriser des éléments flottants pour encercler Crayon"
179
 
180
- #: crayon_settings_wp.class.php:461
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Afficher la barre d'outils"
184
 
185
- #: crayon_settings_wp.class.php:464
186
  #@ crayon-syntax-highlighter
187
  msgid "Overlay the toolbar on code rather than push it down when possible"
188
  msgstr "Superposition de la barre d'outils sur le code plutôt que de le pousser vers le bas si possible"
189
 
190
- #: crayon_settings_wp.class.php:465
191
  #@ crayon-syntax-highlighter
192
  msgid "Toggle the toolbar on single click when it is overlayed"
193
  msgstr "Basculer la barre d'outils sur simple clic quand il est superposé"
194
 
195
- #: crayon_settings_wp.class.php:466
196
  #@ crayon-syntax-highlighter
197
  msgid "Delay hiding the toolbar on MouseOut"
198
  msgstr "Retard cacher la barre d'outils sur le MouseOut"
199
 
200
- #: crayon_settings_wp.class.php:468
201
  #@ crayon-syntax-highlighter
202
  msgid "Display the title when provided"
203
  msgstr "Afficher le titre lorsqu'il est fourni"
204
 
205
- #: crayon_settings_wp.class.php:469
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Affichage de la langue"
209
 
210
- #: crayon_settings_wp.class.php:474
211
  #@ crayon-syntax-highlighter
212
  msgid "Display striped code lines"
213
  msgstr "Affichage des lignes de code rayée"
214
 
215
- #: crayon_settings_wp.class.php:475
216
  #@ crayon-syntax-highlighter
217
  msgid "Enable line marking for important lines"
218
  msgstr "Activer la ligne de marquage des lignes importantes"
219
 
220
- #: crayon_settings_wp.class.php:476
221
  #@ crayon-syntax-highlighter
222
  msgid "Display line numbers by default"
223
  msgstr "Afficher les numéros de ligne par défaut"
224
 
225
- #: crayon_settings_wp.class.php:477
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Activer basculer le numéro de ligne"
229
 
230
- #: crayon_settings_wp.class.php:478
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Démarrer à partir des numéros de ligne"
234
 
235
- #: crayon_settings_wp.class.php:488
236
  #@ crayon-syntax-highlighter
237
  msgid "When no language is provided, use the fallback"
238
  msgstr "Lorsque aucune langue n'est fourni, utilisez le repli"
239
 
240
- #: crayon_settings_wp.class.php:501
241
  #@ crayon-syntax-highlighter
242
  msgid "Parsing was successful"
243
  msgstr "Parsing a réussi"
244
 
245
- #: crayon_settings_wp.class.php:501
246
  #@ crayon-syntax-highlighter
247
  msgid "Parsing was unsuccessful"
248
  msgstr "Parsing a échoué"
249
 
250
- #: crayon_settings_wp.class.php:507
251
  #, php-format
252
  #@ crayon-syntax-highlighter
253
  msgid "The selected language with id %s could not be loaded"
254
  msgstr "La langue sélectionnée avec id %s ne pouvait pas être chargé"
255
 
256
- #: crayon_settings_wp.class.php:511
257
  #@ crayon-syntax-highlighter
258
  msgid "Show Languages"
259
  msgstr "Voir langues"
260
 
261
- #: crayon_settings_wp.class.php:532
262
  #@ crayon-syntax-highlighter
263
  msgid "Enable Live Preview"
264
  msgstr "Activer l'aperçu en direct"
265
 
266
- #: crayon_settings_wp.class.php:535
267
  #, php-format
268
  #@ crayon-syntax-highlighter
269
  msgid "The selected theme with id %s could not be loaded"
270
  msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
271
 
272
- #: crayon_settings_wp.class.php:549
273
  #@ crayon-syntax-highlighter
274
  msgid "Theme Default"
275
  msgstr "Thème par défaut"
276
 
277
- #: crayon_settings_wp.class.php:553
278
  #@ crayon-syntax-highlighter
279
  msgid "Custom Font Size"
280
  msgstr "Taille du texte personnalisé"
281
 
282
- #: crayon_settings_wp.class.php:558
283
  #, php-format
284
  #@ crayon-syntax-highlighter
285
  msgid "The selected font with id %s could not be loaded"
286
  msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
287
 
288
- #: crayon_settings_wp.class.php:563
289
  #@ crayon-syntax-highlighter
290
  msgid "Enable plain code view and display"
291
  msgstr "Activer le mode code clair et d'affichage"
292
 
293
- #: crayon_settings_wp.class.php:566
294
  #@ crayon-syntax-highlighter
295
  msgid "Enable code copy/paste"
296
  msgstr "Activer copiez le code/coller"
297
 
298
- #: crayon_settings_wp.class.php:568
299
  #@ crayon-syntax-highlighter
300
  msgid "Enable opening code in a window"
301
  msgstr "Activer code d'ouverture dans une fenêtre"
302
 
303
- #: crayon_settings_wp.class.php:569
304
  #@ crayon-syntax-highlighter
305
  msgid "Display scrollbars (when needed)"
306
  msgstr "Affichage des barres de défilement (si nécessaire)"
307
 
308
- #: crayon_settings_wp.class.php:571
309
  #@ crayon-syntax-highlighter
310
  msgid "Tab size in spaces"
311
  msgstr "Taille des tabulations dans les espaces"
312
 
313
- #: crayon_settings_wp.class.php:573
314
  #@ crayon-syntax-highlighter
315
  msgid "Remove whitespace surrounding the shortcode content"
316
  msgstr "Enlevez les espaces entourant le contenu shortcode"
317
 
318
- #: crayon_settings_wp.class.php:579
319
  #@ crayon-syntax-highlighter
320
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
321
  msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
322
 
323
- #: crayon_settings_wp.class.php:586
324
  #@ crayon-syntax-highlighter
325
  msgid "Clear the cache used to store remote code requests"
326
  msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
327
 
328
- #: crayon_settings_wp.class.php:588
329
  #@ crayon-syntax-highlighter
330
  msgid "Clear Now"
331
  msgstr "Effacer maintenant"
332
 
333
- #: crayon_settings_wp.class.php:590
334
  #@ crayon-syntax-highlighter
335
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
336
  msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
337
 
338
- #: crayon_settings_wp.class.php:591
339
  #@ crayon-syntax-highlighter
340
  msgid "Disable animations"
341
  msgstr "Désactiver les animations"
342
 
343
- #: crayon_settings_wp.class.php:592
344
  #@ crayon-syntax-highlighter
345
  msgid "Disable runtime stats"
346
  msgstr "Désactiver l'exécution stats"
347
 
348
- #: crayon_settings_wp.class.php:599
349
  #@ crayon-syntax-highlighter
350
  msgid "Log errors for individual Crayons"
351
  msgstr "Connexion pour les erreurs individuelles Crayons"
352
 
353
- #: crayon_settings_wp.class.php:600
354
  #@ crayon-syntax-highlighter
355
  msgid "Log system-wide errors"
356
  msgstr "Connexion échelle du système des erreurs"
357
 
358
- #: crayon_settings_wp.class.php:601
359
  #@ crayon-syntax-highlighter
360
  msgid "Display custom message for errors"
361
  msgstr "Afficher un message personnalisé pour les erreurs"
362
 
363
- #: crayon_settings_wp.class.php:613
364
  #@ crayon-syntax-highlighter
365
  msgid "Show Log"
366
  msgstr "Afficher le journal"
367
 
368
- #: crayon_settings_wp.class.php:615
369
  #@ crayon-syntax-highlighter
370
  msgid "Clear Log"
371
  msgstr "Effacer le journal"
372
 
373
- #: crayon_settings_wp.class.php:616
374
  #@ crayon-syntax-highlighter
375
  msgid "Email Admin"
376
  msgstr "Admin Email"
377
 
378
- #: crayon_settings_wp.class.php:618
379
  #@ crayon-syntax-highlighter
380
  msgid "Email Developer"
381
  msgstr "Développeur Email"
382
 
383
- #: crayon_settings_wp.class.php:634
384
  #@ crayon-syntax-highlighter
385
  msgid "Version"
386
  msgstr "Version"
387
 
388
- #: crayon_settings_wp.class.php:636
389
  #@ crayon-syntax-highlighter
390
  msgid "Developer"
391
  msgstr "Développeur"
392
 
393
- #: crayon_settings_wp.class.php:660
394
  #@ crayon-syntax-highlighter
395
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
396
  msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
@@ -401,47 +401,47 @@ msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'es
401
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
402
  msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
403
 
404
- #: crayon_settings.class.php:91
405
  #@ crayon-syntax-highlighter
406
  msgid "Hourly"
407
  msgstr "Horaires"
408
 
409
- #: crayon_settings.class.php:91
410
  #@ crayon-syntax-highlighter
411
  msgid "Daily"
412
  msgstr "Daily"
413
 
414
- #: crayon_settings.class.php:92
415
  #@ crayon-syntax-highlighter
416
  msgid "Weekly"
417
  msgstr "Hebdomadaire"
418
 
419
- #: crayon_settings.class.php:92
420
  #@ crayon-syntax-highlighter
421
  msgid "Monthly"
422
  msgstr "Mensuel"
423
 
424
- #: crayon_settings.class.php:93
425
  #@ crayon-syntax-highlighter
426
  msgid "Immediately"
427
  msgstr "Immédiatement"
428
 
429
- #: crayon_settings_wp.class.php:414
430
  #@ crayon-syntax-highlighter
431
  msgid "Crayon Help"
432
  msgstr "Aide Crayon"
433
 
434
- #: crayon_settings_wp.class.php:589
435
  #@ crayon-syntax-highlighter
436
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
437
  msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
438
 
439
- #: crayon_settings_wp.class.php:589
440
  #@ crayon-syntax-highlighter
441
  msgid "Why?"
442
  msgstr "Pourquoi?"
443
 
444
- #: crayon_settings_wp.class.php:500
445
  #, php-format
446
  #@ crayon-syntax-highlighter
447
  msgid "%d language has been detected."
@@ -449,33 +449,60 @@ msgid_plural "%d languages have been detected."
449
  msgstr[0] "%d la langue a été détectée."
450
  msgstr[1] "%d langues ont été détectés."
451
 
452
- #: crayon_settings_wp.class.php:582
453
  #@ crayon-syntax-highlighter
454
  msgid "Followed by your relative URL."
455
  msgstr "Suivi de votre URL relative."
456
 
457
- #: crayon_settings_wp.class.php:620
458
  #@ crayon-syntax-highlighter
459
  msgid "The log is currently empty."
460
  msgstr "Le journal est actuellement vide."
461
 
462
- #: crayon_settings_wp.class.php:622
463
  #@ crayon-syntax-highlighter
464
  msgid "The log file exists and is writable."
465
  msgstr "Le fichier journal existe et est accessible en écriture."
466
 
467
- #: crayon_settings_wp.class.php:622
468
  #@ crayon-syntax-highlighter
469
  msgid "The log file exists and is not writable."
470
  msgstr "Le fichier journal existe et n'est pas accessible en écriture."
471
 
472
- #: crayon_settings_wp.class.php:624
473
  #@ crayon-syntax-highlighter
474
  msgid "The log file does not exist and is not writable."
475
  msgstr "Le fichier journal n'existe pas et n'est pas modifiable."
476
 
477
- #: crayon_settings_wp.class.php:574
478
  #@ crayon-syntax-highlighter
479
  msgid "Capture &lt;pre&gt; tags as Crayons"
480
  msgstr "Capturez balises &lt;pre&gt; que Crayons"
481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
 
22
  #: crayon_settings.class.php:121
23
+ #: crayon_settings.class.php:125
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
 
28
  #: crayon_settings.class.php:121
29
+ #: crayon_settings.class.php:125
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
 
34
  #: crayon_settings.class.php:121
35
+ #: crayon_settings.class.php:125
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statique"
39
 
 
40
  #: crayon_settings.class.php:123
41
+ #: crayon_settings.class.php:127
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
 
46
  #: crayon_settings.class.php:123
47
+ #: crayon_settings.class.php:127
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Pour cent"
51
 
52
+ #: crayon_settings.class.php:136
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Aucun"
56
 
57
+ #: crayon_settings.class.php:136
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Gauche"
61
 
62
+ #: crayon_settings.class.php:136
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centre"
66
 
67
+ #: crayon_settings.class.php:136
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Droite"
71
 
72
+ #: crayon_settings.class.php:138
73
+ #: crayon_settings.class.php:155
74
+ #: crayon_settings.class.php:158
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Sur MouseOver"
78
 
79
+ #: crayon_settings.class.php:138
80
+ #: crayon_settings.class.php:144
81
+ #: crayon_settings.class.php:155
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Toujours"
85
 
86
+ #: crayon_settings.class.php:138
87
+ #: crayon_settings.class.php:144
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Jamais"
91
 
92
+ #: crayon_settings.class.php:144
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Une fois trouvé"
96
 
97
+ #: crayon_settings.class.php:158
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Le double-clic"
101
 
102
+ #: crayon_settings.class.php:158
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Le Single Cliquez"
106
 
107
+ #: crayon_settings.class.php:158
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Seule l'aide Bascule"
111
 
112
+ #: crayon_settings.class.php:166
113
  #@ crayon-syntax-highlighter
114
  msgid "An error has occurred. Please try again later."
115
  msgstr "Une erreur s'est produite. S'il vous plaît essayez de nouveau plus tard."
135
  msgid "Reset Settings"
136
  msgstr "Réinitialiser les paramètres"
137
 
138
+ #: crayon_settings_wp.class.php:425
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Hauteur"
142
 
143
+ #: crayon_settings_wp.class.php:431
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Largeur"
147
 
148
+ #: crayon_settings_wp.class.php:437
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Marge supérieure"
152
 
153
+ #: crayon_settings_wp.class.php:438
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "La marge du bas"
157
 
158
+ #: crayon_settings_wp.class.php:439
159
+ #: crayon_settings_wp.class.php:444
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Marge de gauche"
163
 
164
+ #: crayon_settings_wp.class.php:440
165
+ #: crayon_settings_wp.class.php:444
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Marge droite"
169
 
170
+ #: crayon_settings_wp.class.php:450
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Alignement horizontal"
174
 
175
+ #: crayon_settings_wp.class.php:453
176
  #@ crayon-syntax-highlighter
177
  msgid "Allow floating elements to surround Crayon"
178
  msgstr "Autoriser des éléments flottants pour encercler Crayon"
179
 
180
+ #: crayon_settings_wp.class.php:458
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Afficher la barre d'outils"
184
 
185
+ #: crayon_settings_wp.class.php:461
186
  #@ crayon-syntax-highlighter
187
  msgid "Overlay the toolbar on code rather than push it down when possible"
188
  msgstr "Superposition de la barre d'outils sur le code plutôt que de le pousser vers le bas si possible"
189
 
190
+ #: crayon_settings_wp.class.php:462
191
  #@ crayon-syntax-highlighter
192
  msgid "Toggle the toolbar on single click when it is overlayed"
193
  msgstr "Basculer la barre d'outils sur simple clic quand il est superposé"
194
 
195
+ #: crayon_settings_wp.class.php:463
196
  #@ crayon-syntax-highlighter
197
  msgid "Delay hiding the toolbar on MouseOut"
198
  msgstr "Retard cacher la barre d'outils sur le MouseOut"
199
 
200
+ #: crayon_settings_wp.class.php:465
201
  #@ crayon-syntax-highlighter
202
  msgid "Display the title when provided"
203
  msgstr "Afficher le titre lorsqu'il est fourni"
204
 
205
+ #: crayon_settings_wp.class.php:466
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Affichage de la langue"
209
 
210
+ #: crayon_settings_wp.class.php:471
211
  #@ crayon-syntax-highlighter
212
  msgid "Display striped code lines"
213
  msgstr "Affichage des lignes de code rayée"
214
 
215
+ #: crayon_settings_wp.class.php:472
216
  #@ crayon-syntax-highlighter
217
  msgid "Enable line marking for important lines"
218
  msgstr "Activer la ligne de marquage des lignes importantes"
219
 
220
+ #: crayon_settings_wp.class.php:473
221
  #@ crayon-syntax-highlighter
222
  msgid "Display line numbers by default"
223
  msgstr "Afficher les numéros de ligne par défaut"
224
 
225
+ #: crayon_settings_wp.class.php:474
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Activer basculer le numéro de ligne"
229
 
230
+ #: crayon_settings_wp.class.php:475
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Démarrer à partir des numéros de ligne"
234
 
235
+ #: crayon_settings_wp.class.php:485
236
  #@ crayon-syntax-highlighter
237
  msgid "When no language is provided, use the fallback"
238
  msgstr "Lorsque aucune langue n'est fourni, utilisez le repli"
239
 
240
+ #: crayon_settings_wp.class.php:498
241
  #@ crayon-syntax-highlighter
242
  msgid "Parsing was successful"
243
  msgstr "Parsing a réussi"
244
 
245
+ #: crayon_settings_wp.class.php:498
246
  #@ crayon-syntax-highlighter
247
  msgid "Parsing was unsuccessful"
248
  msgstr "Parsing a échoué"
249
 
250
+ #: crayon_settings_wp.class.php:504
251
  #, php-format
252
  #@ crayon-syntax-highlighter
253
  msgid "The selected language with id %s could not be loaded"
254
  msgstr "La langue sélectionnée avec id %s ne pouvait pas être chargé"
255
 
256
+ #: crayon_settings_wp.class.php:508
257
  #@ crayon-syntax-highlighter
258
  msgid "Show Languages"
259
  msgstr "Voir langues"
260
 
261
+ #: crayon_settings_wp.class.php:529
262
  #@ crayon-syntax-highlighter
263
  msgid "Enable Live Preview"
264
  msgstr "Activer l'aperçu en direct"
265
 
266
+ #: crayon_settings_wp.class.php:532
267
  #, php-format
268
  #@ crayon-syntax-highlighter
269
  msgid "The selected theme with id %s could not be loaded"
270
  msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
271
 
272
+ #: crayon_settings_wp.class.php:546
273
  #@ crayon-syntax-highlighter
274
  msgid "Theme Default"
275
  msgstr "Thème par défaut"
276
 
277
+ #: crayon_settings_wp.class.php:550
278
  #@ crayon-syntax-highlighter
279
  msgid "Custom Font Size"
280
  msgstr "Taille du texte personnalisé"
281
 
282
+ #: crayon_settings_wp.class.php:555
283
  #, php-format
284
  #@ crayon-syntax-highlighter
285
  msgid "The selected font with id %s could not be loaded"
286
  msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
287
 
288
+ #: crayon_settings_wp.class.php:560
289
  #@ crayon-syntax-highlighter
290
  msgid "Enable plain code view and display"
291
  msgstr "Activer le mode code clair et d'affichage"
292
 
293
+ #: crayon_settings_wp.class.php:563
294
  #@ crayon-syntax-highlighter
295
  msgid "Enable code copy/paste"
296
  msgstr "Activer copiez le code/coller"
297
 
298
+ #: crayon_settings_wp.class.php:565
299
  #@ crayon-syntax-highlighter
300
  msgid "Enable opening code in a window"
301
  msgstr "Activer code d'ouverture dans une fenêtre"
302
 
303
+ #: crayon_settings_wp.class.php:566
304
  #@ crayon-syntax-highlighter
305
  msgid "Display scrollbars (when needed)"
306
  msgstr "Affichage des barres de défilement (si nécessaire)"
307
 
308
+ #: crayon_settings_wp.class.php:568
309
  #@ crayon-syntax-highlighter
310
  msgid "Tab size in spaces"
311
  msgstr "Taille des tabulations dans les espaces"
312
 
313
+ #: crayon_settings_wp.class.php:570
314
  #@ crayon-syntax-highlighter
315
  msgid "Remove whitespace surrounding the shortcode content"
316
  msgstr "Enlevez les espaces entourant le contenu shortcode"
317
 
318
+ #: crayon_settings_wp.class.php:580
319
  #@ crayon-syntax-highlighter
320
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
321
  msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
322
 
323
+ #: crayon_settings_wp.class.php:587
324
  #@ crayon-syntax-highlighter
325
  msgid "Clear the cache used to store remote code requests"
326
  msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
327
 
328
+ #: crayon_settings_wp.class.php:589
329
  #@ crayon-syntax-highlighter
330
  msgid "Clear Now"
331
  msgstr "Effacer maintenant"
332
 
333
+ #: crayon_settings_wp.class.php:591
334
  #@ crayon-syntax-highlighter
335
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
336
  msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
337
 
338
+ #: crayon_settings_wp.class.php:592
339
  #@ crayon-syntax-highlighter
340
  msgid "Disable animations"
341
  msgstr "Désactiver les animations"
342
 
343
+ #: crayon_settings_wp.class.php:593
344
  #@ crayon-syntax-highlighter
345
  msgid "Disable runtime stats"
346
  msgstr "Désactiver l'exécution stats"
347
 
348
+ #: crayon_settings_wp.class.php:600
349
  #@ crayon-syntax-highlighter
350
  msgid "Log errors for individual Crayons"
351
  msgstr "Connexion pour les erreurs individuelles Crayons"
352
 
353
+ #: crayon_settings_wp.class.php:601
354
  #@ crayon-syntax-highlighter
355
  msgid "Log system-wide errors"
356
  msgstr "Connexion échelle du système des erreurs"
357
 
358
+ #: crayon_settings_wp.class.php:602
359
  #@ crayon-syntax-highlighter
360
  msgid "Display custom message for errors"
361
  msgstr "Afficher un message personnalisé pour les erreurs"
362
 
363
+ #: crayon_settings_wp.class.php:614
364
  #@ crayon-syntax-highlighter
365
  msgid "Show Log"
366
  msgstr "Afficher le journal"
367
 
368
+ #: crayon_settings_wp.class.php:616
369
  #@ crayon-syntax-highlighter
370
  msgid "Clear Log"
371
  msgstr "Effacer le journal"
372
 
373
+ #: crayon_settings_wp.class.php:617
374
  #@ crayon-syntax-highlighter
375
  msgid "Email Admin"
376
  msgstr "Admin Email"
377
 
378
+ #: crayon_settings_wp.class.php:619
379
  #@ crayon-syntax-highlighter
380
  msgid "Email Developer"
381
  msgstr "Développeur Email"
382
 
383
+ #: crayon_settings_wp.class.php:635
384
  #@ crayon-syntax-highlighter
385
  msgid "Version"
386
  msgstr "Version"
387
 
388
+ #: crayon_settings_wp.class.php:637
389
  #@ crayon-syntax-highlighter
390
  msgid "Developer"
391
  msgstr "Développeur"
392
 
393
+ #: crayon_settings_wp.class.php:661
394
  #@ crayon-syntax-highlighter
395
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
396
  msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
401
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
402
  msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
403
 
404
+ #: crayon_settings.class.php:95
405
  #@ crayon-syntax-highlighter
406
  msgid "Hourly"
407
  msgstr "Horaires"
408
 
409
+ #: crayon_settings.class.php:95
410
  #@ crayon-syntax-highlighter
411
  msgid "Daily"
412
  msgstr "Daily"
413
 
414
+ #: crayon_settings.class.php:96
415
  #@ crayon-syntax-highlighter
416
  msgid "Weekly"
417
  msgstr "Hebdomadaire"
418
 
419
+ #: crayon_settings.class.php:96
420
  #@ crayon-syntax-highlighter
421
  msgid "Monthly"
422
  msgstr "Mensuel"
423
 
424
+ #: crayon_settings.class.php:97
425
  #@ crayon-syntax-highlighter
426
  msgid "Immediately"
427
  msgstr "Immédiatement"
428
 
429
+ #: crayon_settings_wp.class.php:411
430
  #@ crayon-syntax-highlighter
431
  msgid "Crayon Help"
432
  msgstr "Aide Crayon"
433
 
434
+ #: crayon_settings_wp.class.php:590
435
  #@ crayon-syntax-highlighter
436
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
437
  msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
438
 
439
+ #: crayon_settings_wp.class.php:590
440
  #@ crayon-syntax-highlighter
441
  msgid "Why?"
442
  msgstr "Pourquoi?"
443
 
444
+ #: crayon_settings_wp.class.php:497
445
  #, php-format
446
  #@ crayon-syntax-highlighter
447
  msgid "%d language has been detected."
449
  msgstr[0] "%d la langue a été détectée."
450
  msgstr[1] "%d langues ont été détectés."
451
 
452
+ #: crayon_settings_wp.class.php:583
453
  #@ crayon-syntax-highlighter
454
  msgid "Followed by your relative URL."
455
  msgstr "Suivi de votre URL relative."
456
 
457
+ #: crayon_settings_wp.class.php:621
458
  #@ crayon-syntax-highlighter
459
  msgid "The log is currently empty."
460
  msgstr "Le journal est actuellement vide."
461
 
462
+ #: crayon_settings_wp.class.php:623
463
  #@ crayon-syntax-highlighter
464
  msgid "The log file exists and is writable."
465
  msgstr "Le fichier journal existe et est accessible en écriture."
466
 
467
+ #: crayon_settings_wp.class.php:623
468
  #@ crayon-syntax-highlighter
469
  msgid "The log file exists and is not writable."
470
  msgstr "Le fichier journal existe et n'est pas accessible en écriture."
471
 
472
+ #: crayon_settings_wp.class.php:625
473
  #@ crayon-syntax-highlighter
474
  msgid "The log file does not exist and is not writable."
475
  msgstr "Le fichier journal n'existe pas et n'est pas modifiable."
476
 
477
+ #: crayon_settings_wp.class.php:571
478
  #@ crayon-syntax-highlighter
479
  msgid "Capture &lt;pre&gt; tags as Crayons"
480
  msgstr "Capturez balises &lt;pre&gt; que Crayons"
481
 
482
+ #: crayon_settings_wp.class.php:572
483
+ #: crayon_settings_wp.class.php:573
484
+ #: crayon_settings_wp.class.php:574
485
+ #@ crayon-syntax-highlighter
486
+ msgid "Learn More"
487
+ msgstr "En savoir plus"
488
+
489
+ #: crayon_settings_wp.class.php:575
490
+ #@ crayon-syntax-highlighter
491
+ msgid "Show Mixed Language Icon (+)"
492
+ msgstr "Afficher l'icône Langue mixte (+)"
493
+
494
+ #: crayon_settings_wp.class.php:574
495
+ #@ crayon-syntax-highlighter
496
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
497
+ msgstr "Autoriser Soulignant langue mélangée avec des délimiteurs et des tags."
498
+
499
+ #: crayon_settings_wp.class.php:572
500
+ #@ crayon-syntax-highlighter
501
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
502
+ msgstr "Capturez Balises Mini tels que [php][/php] Crayons."
503
+
504
+ #: crayon_settings_wp.class.php:573
505
+ #@ crayon-syntax-highlighter
506
+ msgid "Enable [plain][/plain] tag."
507
+ msgstr "Activer tag [plain][/plain]."
508
+
trans/crayon-syntax-highlighter-it_IT.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-it_IT.po CHANGED
@@ -19,97 +19,97 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:117
23
  #: crayon_settings.class.php:121
 
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:117
29
  #: crayon_settings.class.php:121
 
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:117
35
  #: crayon_settings.class.php:121
 
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statico"
39
 
40
- #: crayon_settings.class.php:119
41
  #: crayon_settings.class.php:123
 
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
- #: crayon_settings.class.php:119
47
  #: crayon_settings.class.php:123
 
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Per cento"
51
 
52
- #: crayon_settings.class.php:132
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Nessuno"
56
 
57
- #: crayon_settings.class.php:132
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Sinistra"
61
 
62
- #: crayon_settings.class.php:132
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centro"
66
 
67
- #: crayon_settings.class.php:132
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Destra"
71
 
72
- #: crayon_settings.class.php:134
73
- #: crayon_settings.class.php:151
74
- #: crayon_settings.class.php:154
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Al passaggio del mouse"
78
 
79
- #: crayon_settings.class.php:134
80
- #: crayon_settings.class.php:140
81
- #: crayon_settings.class.php:151
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Sempre"
85
 
86
- #: crayon_settings.class.php:134
87
- #: crayon_settings.class.php:140
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Mai"
91
 
92
- #: crayon_settings.class.php:140
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Quando Trovato"
96
 
97
- #: crayon_settings.class.php:154
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Su doppio click"
101
 
102
- #: crayon_settings.class.php:154
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Il singolo click"
106
 
107
- #: crayon_settings.class.php:154
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Utilizzando solo passare"
111
 
112
- #: crayon_settings.class.php:162
113
  #@ crayon-syntax-highlighter
114
  msgid "An error has occurred. Please try again later."
115
  msgstr "È verificato un errore. Riprova più tardi."
@@ -135,262 +135,262 @@ msgstr "Salva le modifiche"
135
  msgid "Reset Settings"
136
  msgstr "Ripristina Impostazioni"
137
 
138
- #: crayon_settings_wp.class.php:428
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Altezza"
142
 
143
- #: crayon_settings_wp.class.php:434
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Larghezza"
147
 
148
- #: crayon_settings_wp.class.php:440
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Margine superiore"
152
 
153
- #: crayon_settings_wp.class.php:441
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Basso margine"
157
 
158
- #: crayon_settings_wp.class.php:442
159
- #: crayon_settings_wp.class.php:447
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Margine sinistro"
163
 
164
- #: crayon_settings_wp.class.php:443
165
- #: crayon_settings_wp.class.php:447
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Margine destro"
169
 
170
- #: crayon_settings_wp.class.php:453
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Allineamento orizzontale"
174
 
175
- #: crayon_settings_wp.class.php:456
176
  #@ crayon-syntax-highlighter
177
  msgid "Allow floating elements to surround Crayon"
178
  msgstr "Consentire agli elementi flottanti per circondare Crayon"
179
 
180
- #: crayon_settings_wp.class.php:461
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Visualizzare la barra degli strumenti"
184
 
185
- #: crayon_settings_wp.class.php:464
186
  #@ crayon-syntax-highlighter
187
  msgid "Overlay the toolbar on code rather than push it down when possible"
188
  msgstr "Sovrapposizione della barra degli strumenti sul codice, piuttosto che spingere verso il basso quando è possibile"
189
 
190
- #: crayon_settings_wp.class.php:465
191
  #@ crayon-syntax-highlighter
192
  msgid "Toggle the toolbar on single click when it is overlayed"
193
  msgstr "Attivare o disattivare la barra degli strumenti sul singolo click quando è sovrapposto"
194
 
195
- #: crayon_settings_wp.class.php:466
196
  #@ crayon-syntax-highlighter
197
  msgid "Delay hiding the toolbar on MouseOut"
198
  msgstr "Ritardo nascondere la barra degli strumenti su MouseOut"
199
 
200
- #: crayon_settings_wp.class.php:468
201
  #@ crayon-syntax-highlighter
202
  msgid "Display the title when provided"
203
  msgstr "Visualizzare il titolo, ove previsto"
204
 
205
- #: crayon_settings_wp.class.php:469
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Visualizzare la lingua"
209
 
210
- #: crayon_settings_wp.class.php:474
211
  #@ crayon-syntax-highlighter
212
  msgid "Display striped code lines"
213
  msgstr "Visualizzare le linee del codice a strisce"
214
 
215
- #: crayon_settings_wp.class.php:475
216
  #@ crayon-syntax-highlighter
217
  msgid "Enable line marking for important lines"
218
  msgstr "Abilita linea di marcatura per linee importanti"
219
 
220
- #: crayon_settings_wp.class.php:476
221
  #@ crayon-syntax-highlighter
222
  msgid "Display line numbers by default"
223
  msgstr "Visualizzare i numeri di linea di default"
224
 
225
- #: crayon_settings_wp.class.php:477
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Abilita numero di commutazione linea"
229
 
230
- #: crayon_settings_wp.class.php:478
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Inizio numeri di riga da"
234
 
235
- #: crayon_settings_wp.class.php:488
236
  #@ crayon-syntax-highlighter
237
  msgid "When no language is provided, use the fallback"
238
  msgstr "Quando non è prevista la lingua, utilizzare il fallback"
239
 
240
- #: crayon_settings_wp.class.php:501
241
  #@ crayon-syntax-highlighter
242
  msgid "Parsing was successful"
243
  msgstr "L'analisi ha avuto successo"
244
 
245
- #: crayon_settings_wp.class.php:501
246
  #@ crayon-syntax-highlighter
247
  msgid "Parsing was unsuccessful"
248
  msgstr "L'analisi non ha avuto successo"
249
 
250
- #: crayon_settings_wp.class.php:507
251
  #, php-format
252
  #@ crayon-syntax-highlighter
253
  msgid "The selected language with id %s could not be loaded"
254
  msgstr "La lingua selezionata con id %s non può essere caricato"
255
 
256
- #: crayon_settings_wp.class.php:511
257
  #@ crayon-syntax-highlighter
258
  msgid "Show Languages"
259
  msgstr "Mostra Lingue"
260
 
261
- #: crayon_settings_wp.class.php:532
262
  #@ crayon-syntax-highlighter
263
  msgid "Enable Live Preview"
264
  msgstr "Attiva anteprima dal vivo"
265
 
266
- #: crayon_settings_wp.class.php:535
267
  #, php-format
268
  #@ crayon-syntax-highlighter
269
  msgid "The selected theme with id %s could not be loaded"
270
  msgstr "La tema selezionata con id %s non può essere caricato"
271
 
272
- #: crayon_settings_wp.class.php:549
273
  #@ crayon-syntax-highlighter
274
  msgid "Theme Default"
275
  msgstr "Tema di Default"
276
 
277
- #: crayon_settings_wp.class.php:553
278
  #@ crayon-syntax-highlighter
279
  msgid "Custom Font Size"
280
  msgstr "Dimensione del carattere personalizzati"
281
 
282
- #: crayon_settings_wp.class.php:558
283
  #, php-format
284
  #@ crayon-syntax-highlighter
285
  msgid "The selected font with id %s could not be loaded"
286
  msgstr "La font selezionata con id %s non può essere caricato"
287
 
288
- #: crayon_settings_wp.class.php:563
289
  #@ crayon-syntax-highlighter
290
  msgid "Enable plain code view and display"
291
  msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
292
 
293
- #: crayon_settings_wp.class.php:566
294
  #@ crayon-syntax-highlighter
295
  msgid "Enable code copy/paste"
296
  msgstr "Abilita copiare il codice/incolla"
297
 
298
- #: crayon_settings_wp.class.php:568
299
  #@ crayon-syntax-highlighter
300
  msgid "Enable opening code in a window"
301
  msgstr "Abilita il codice di apertura in una finestra"
302
 
303
- #: crayon_settings_wp.class.php:569
304
  #@ crayon-syntax-highlighter
305
  msgid "Display scrollbars (when needed)"
306
  msgstr "Barre di scorrimento del display (quando necessario)"
307
 
308
- #: crayon_settings_wp.class.php:571
309
  #@ crayon-syntax-highlighter
310
  msgid "Tab size in spaces"
311
  msgstr "Dimensione tabulazione in spazi"
312
 
313
- #: crayon_settings_wp.class.php:573
314
  #@ crayon-syntax-highlighter
315
  msgid "Remove whitespace surrounding the shortcode content"
316
  msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
317
 
318
- #: crayon_settings_wp.class.php:579
319
  #@ crayon-syntax-highlighter
320
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
321
  msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
322
 
323
- #: crayon_settings_wp.class.php:586
324
  #@ crayon-syntax-highlighter
325
  msgid "Clear the cache used to store remote code requests"
326
  msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
327
 
328
- #: crayon_settings_wp.class.php:588
329
  #@ crayon-syntax-highlighter
330
  msgid "Clear Now"
331
  msgstr "Svuota adesso"
332
 
333
- #: crayon_settings_wp.class.php:590
334
  #@ crayon-syntax-highlighter
335
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
336
  msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
337
 
338
- #: crayon_settings_wp.class.php:591
339
  #@ crayon-syntax-highlighter
340
  msgid "Disable animations"
341
  msgstr "Disattivare le animazioni"
342
 
343
- #: crayon_settings_wp.class.php:592
344
  #@ crayon-syntax-highlighter
345
  msgid "Disable runtime stats"
346
  msgstr "Disabilitare runtime stats"
347
 
348
- #: crayon_settings_wp.class.php:599
349
  #@ crayon-syntax-highlighter
350
  msgid "Log errors for individual Crayons"
351
  msgstr "Errori nel registro di Crayons singoli"
352
 
353
- #: crayon_settings_wp.class.php:600
354
  #@ crayon-syntax-highlighter
355
  msgid "Log system-wide errors"
356
  msgstr "Log di sistema a livello di errori"
357
 
358
- #: crayon_settings_wp.class.php:601
359
  #@ crayon-syntax-highlighter
360
  msgid "Display custom message for errors"
361
  msgstr "Display messaggio personalizzato per gli errori"
362
 
363
- #: crayon_settings_wp.class.php:613
364
  #@ crayon-syntax-highlighter
365
  msgid "Show Log"
366
  msgstr "Mostra registro"
367
 
368
- #: crayon_settings_wp.class.php:615
369
  #@ crayon-syntax-highlighter
370
  msgid "Clear Log"
371
  msgstr "Cancella registro"
372
 
373
- #: crayon_settings_wp.class.php:616
374
  #@ crayon-syntax-highlighter
375
  msgid "Email Admin"
376
  msgstr "E-mail Admin"
377
 
378
- #: crayon_settings_wp.class.php:618
379
  #@ crayon-syntax-highlighter
380
  msgid "Email Developer"
381
  msgstr "Email Developer"
382
 
383
- #: crayon_settings_wp.class.php:634
384
  #@ crayon-syntax-highlighter
385
  msgid "Version"
386
  msgstr "Versione"
387
 
388
- #: crayon_settings_wp.class.php:636
389
  #@ crayon-syntax-highlighter
390
  msgid "Developer"
391
  msgstr "Sviluppatore"
392
 
393
- #: crayon_settings_wp.class.php:660
394
  #@ crayon-syntax-highlighter
395
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
396
  msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
@@ -401,47 +401,47 @@ msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un pr
401
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
402
  msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
403
 
404
- #: crayon_settings.class.php:91
405
  #@ crayon-syntax-highlighter
406
  msgid "Hourly"
407
  msgstr "Ogni ora"
408
 
409
- #: crayon_settings.class.php:91
410
  #@ crayon-syntax-highlighter
411
  msgid "Daily"
412
  msgstr "Quotidiano"
413
 
414
- #: crayon_settings.class.php:92
415
  #@ crayon-syntax-highlighter
416
  msgid "Weekly"
417
  msgstr "Settimanale"
418
 
419
- #: crayon_settings.class.php:92
420
  #@ crayon-syntax-highlighter
421
  msgid "Monthly"
422
  msgstr "Mensile"
423
 
424
- #: crayon_settings.class.php:93
425
  #@ crayon-syntax-highlighter
426
  msgid "Immediately"
427
  msgstr "Immediatamente"
428
 
429
- #: crayon_settings_wp.class.php:414
430
  #@ crayon-syntax-highlighter
431
  msgid "Crayon Help"
432
  msgstr "Crayon Aiuto"
433
 
434
- #: crayon_settings_wp.class.php:589
435
  #@ crayon-syntax-highlighter
436
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
437
  msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
438
 
439
- #: crayon_settings_wp.class.php:589
440
  #@ crayon-syntax-highlighter
441
  msgid "Why?"
442
  msgstr "Perché?"
443
 
444
- #: crayon_settings_wp.class.php:500
445
  #, php-format
446
  #@ crayon-syntax-highlighter
447
  msgid "%d language has been detected."
@@ -449,33 +449,60 @@ msgid_plural "%d languages have been detected."
449
  msgstr[0] "%d lingua è stata rilevata."
450
  msgstr[1] "%d lingue sono state rilevate."
451
 
452
- #: crayon_settings_wp.class.php:582
453
  #@ crayon-syntax-highlighter
454
  msgid "Followed by your relative URL."
455
  msgstr "Seguito dal relativo URL."
456
 
457
- #: crayon_settings_wp.class.php:620
458
  #@ crayon-syntax-highlighter
459
  msgid "The log is currently empty."
460
  msgstr "Il registro è vuoto."
461
 
462
- #: crayon_settings_wp.class.php:622
463
  #@ crayon-syntax-highlighter
464
  msgid "The log file exists and is writable."
465
  msgstr "Il file di registro esiste ed è scrivibile."
466
 
467
- #: crayon_settings_wp.class.php:622
468
  #@ crayon-syntax-highlighter
469
  msgid "The log file exists and is not writable."
470
  msgstr "Il file di registro esiste e non è scrivibile."
471
 
472
- #: crayon_settings_wp.class.php:624
473
  #@ crayon-syntax-highlighter
474
  msgid "The log file does not exist and is not writable."
475
  msgstr "Il file di registro non esiste e non è scrivibile."
476
 
477
- #: crayon_settings_wp.class.php:574
478
  #@ crayon-syntax-highlighter
479
  msgid "Capture &lt;pre&gt; tags as Crayons"
480
  msgstr "Cattura tag &lt;pre&gt; come Crayons"
481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
 
22
  #: crayon_settings.class.php:121
23
+ #: crayon_settings.class.php:125
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
 
28
  #: crayon_settings.class.php:121
29
+ #: crayon_settings.class.php:125
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
 
34
  #: crayon_settings.class.php:121
35
+ #: crayon_settings.class.php:125
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statico"
39
 
 
40
  #: crayon_settings.class.php:123
41
+ #: crayon_settings.class.php:127
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
 
46
  #: crayon_settings.class.php:123
47
+ #: crayon_settings.class.php:127
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Per cento"
51
 
52
+ #: crayon_settings.class.php:136
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Nessuno"
56
 
57
+ #: crayon_settings.class.php:136
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Sinistra"
61
 
62
+ #: crayon_settings.class.php:136
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centro"
66
 
67
+ #: crayon_settings.class.php:136
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Destra"
71
 
72
+ #: crayon_settings.class.php:138
73
+ #: crayon_settings.class.php:155
74
+ #: crayon_settings.class.php:158
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Al passaggio del mouse"
78
 
79
+ #: crayon_settings.class.php:138
80
+ #: crayon_settings.class.php:144
81
+ #: crayon_settings.class.php:155
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Sempre"
85
 
86
+ #: crayon_settings.class.php:138
87
+ #: crayon_settings.class.php:144
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Mai"
91
 
92
+ #: crayon_settings.class.php:144
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Quando Trovato"
96
 
97
+ #: crayon_settings.class.php:158
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Su doppio click"
101
 
102
+ #: crayon_settings.class.php:158
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Il singolo click"
106
 
107
+ #: crayon_settings.class.php:158
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Utilizzando solo passare"
111
 
112
+ #: crayon_settings.class.php:166
113
  #@ crayon-syntax-highlighter
114
  msgid "An error has occurred. Please try again later."
115
  msgstr "È verificato un errore. Riprova più tardi."
135
  msgid "Reset Settings"
136
  msgstr "Ripristina Impostazioni"
137
 
138
+ #: crayon_settings_wp.class.php:425
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Altezza"
142
 
143
+ #: crayon_settings_wp.class.php:431
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Larghezza"
147
 
148
+ #: crayon_settings_wp.class.php:437
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Margine superiore"
152
 
153
+ #: crayon_settings_wp.class.php:438
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Basso margine"
157
 
158
+ #: crayon_settings_wp.class.php:439
159
+ #: crayon_settings_wp.class.php:444
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Margine sinistro"
163
 
164
+ #: crayon_settings_wp.class.php:440
165
+ #: crayon_settings_wp.class.php:444
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Margine destro"
169
 
170
+ #: crayon_settings_wp.class.php:450
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Allineamento orizzontale"
174
 
175
+ #: crayon_settings_wp.class.php:453
176
  #@ crayon-syntax-highlighter
177
  msgid "Allow floating elements to surround Crayon"
178
  msgstr "Consentire agli elementi flottanti per circondare Crayon"
179
 
180
+ #: crayon_settings_wp.class.php:458
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Visualizzare la barra degli strumenti"
184
 
185
+ #: crayon_settings_wp.class.php:461
186
  #@ crayon-syntax-highlighter
187
  msgid "Overlay the toolbar on code rather than push it down when possible"
188
  msgstr "Sovrapposizione della barra degli strumenti sul codice, piuttosto che spingere verso il basso quando è possibile"
189
 
190
+ #: crayon_settings_wp.class.php:462
191
  #@ crayon-syntax-highlighter
192
  msgid "Toggle the toolbar on single click when it is overlayed"
193
  msgstr "Attivare o disattivare la barra degli strumenti sul singolo click quando è sovrapposto"
194
 
195
+ #: crayon_settings_wp.class.php:463
196
  #@ crayon-syntax-highlighter
197
  msgid "Delay hiding the toolbar on MouseOut"
198
  msgstr "Ritardo nascondere la barra degli strumenti su MouseOut"
199
 
200
+ #: crayon_settings_wp.class.php:465
201
  #@ crayon-syntax-highlighter
202
  msgid "Display the title when provided"
203
  msgstr "Visualizzare il titolo, ove previsto"
204
 
205
+ #: crayon_settings_wp.class.php:466
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Visualizzare la lingua"
209
 
210
+ #: crayon_settings_wp.class.php:471
211
  #@ crayon-syntax-highlighter
212
  msgid "Display striped code lines"
213
  msgstr "Visualizzare le linee del codice a strisce"
214
 
215
+ #: crayon_settings_wp.class.php:472
216
  #@ crayon-syntax-highlighter
217
  msgid "Enable line marking for important lines"
218
  msgstr "Abilita linea di marcatura per linee importanti"
219
 
220
+ #: crayon_settings_wp.class.php:473
221
  #@ crayon-syntax-highlighter
222
  msgid "Display line numbers by default"
223
  msgstr "Visualizzare i numeri di linea di default"
224
 
225
+ #: crayon_settings_wp.class.php:474
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Abilita numero di commutazione linea"
229
 
230
+ #: crayon_settings_wp.class.php:475
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Inizio numeri di riga da"
234
 
235
+ #: crayon_settings_wp.class.php:485
236
  #@ crayon-syntax-highlighter
237
  msgid "When no language is provided, use the fallback"
238
  msgstr "Quando non è prevista la lingua, utilizzare il fallback"
239
 
240
+ #: crayon_settings_wp.class.php:498
241
  #@ crayon-syntax-highlighter
242
  msgid "Parsing was successful"
243
  msgstr "L'analisi ha avuto successo"
244
 
245
+ #: crayon_settings_wp.class.php:498
246
  #@ crayon-syntax-highlighter
247
  msgid "Parsing was unsuccessful"
248
  msgstr "L'analisi non ha avuto successo"
249
 
250
+ #: crayon_settings_wp.class.php:504
251
  #, php-format
252
  #@ crayon-syntax-highlighter
253
  msgid "The selected language with id %s could not be loaded"
254
  msgstr "La lingua selezionata con id %s non può essere caricato"
255
 
256
+ #: crayon_settings_wp.class.php:508
257
  #@ crayon-syntax-highlighter
258
  msgid "Show Languages"
259
  msgstr "Mostra Lingue"
260
 
261
+ #: crayon_settings_wp.class.php:529
262
  #@ crayon-syntax-highlighter
263
  msgid "Enable Live Preview"
264
  msgstr "Attiva anteprima dal vivo"
265
 
266
+ #: crayon_settings_wp.class.php:532
267
  #, php-format
268
  #@ crayon-syntax-highlighter
269
  msgid "The selected theme with id %s could not be loaded"
270
  msgstr "La tema selezionata con id %s non può essere caricato"
271
 
272
+ #: crayon_settings_wp.class.php:546
273
  #@ crayon-syntax-highlighter
274
  msgid "Theme Default"
275
  msgstr "Tema di Default"
276
 
277
+ #: crayon_settings_wp.class.php:550
278
  #@ crayon-syntax-highlighter
279
  msgid "Custom Font Size"
280
  msgstr "Dimensione del carattere personalizzati"
281
 
282
+ #: crayon_settings_wp.class.php:555
283
  #, php-format
284
  #@ crayon-syntax-highlighter
285
  msgid "The selected font with id %s could not be loaded"
286
  msgstr "La font selezionata con id %s non può essere caricato"
287
 
288
+ #: crayon_settings_wp.class.php:560
289
  #@ crayon-syntax-highlighter
290
  msgid "Enable plain code view and display"
291
  msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
292
 
293
+ #: crayon_settings_wp.class.php:563
294
  #@ crayon-syntax-highlighter
295
  msgid "Enable code copy/paste"
296
  msgstr "Abilita copiare il codice/incolla"
297
 
298
+ #: crayon_settings_wp.class.php:565
299
  #@ crayon-syntax-highlighter
300
  msgid "Enable opening code in a window"
301
  msgstr "Abilita il codice di apertura in una finestra"
302
 
303
+ #: crayon_settings_wp.class.php:566
304
  #@ crayon-syntax-highlighter
305
  msgid "Display scrollbars (when needed)"
306
  msgstr "Barre di scorrimento del display (quando necessario)"
307
 
308
+ #: crayon_settings_wp.class.php:568
309
  #@ crayon-syntax-highlighter
310
  msgid "Tab size in spaces"
311
  msgstr "Dimensione tabulazione in spazi"
312
 
313
+ #: crayon_settings_wp.class.php:570
314
  #@ crayon-syntax-highlighter
315
  msgid "Remove whitespace surrounding the shortcode content"
316
  msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
317
 
318
+ #: crayon_settings_wp.class.php:580
319
  #@ crayon-syntax-highlighter
320
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
321
  msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
322
 
323
+ #: crayon_settings_wp.class.php:587
324
  #@ crayon-syntax-highlighter
325
  msgid "Clear the cache used to store remote code requests"
326
  msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
327
 
328
+ #: crayon_settings_wp.class.php:589
329
  #@ crayon-syntax-highlighter
330
  msgid "Clear Now"
331
  msgstr "Svuota adesso"
332
 
333
+ #: crayon_settings_wp.class.php:591
334
  #@ crayon-syntax-highlighter
335
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
336
  msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
337
 
338
+ #: crayon_settings_wp.class.php:592
339
  #@ crayon-syntax-highlighter
340
  msgid "Disable animations"
341
  msgstr "Disattivare le animazioni"
342
 
343
+ #: crayon_settings_wp.class.php:593
344
  #@ crayon-syntax-highlighter
345
  msgid "Disable runtime stats"
346
  msgstr "Disabilitare runtime stats"
347
 
348
+ #: crayon_settings_wp.class.php:600
349
  #@ crayon-syntax-highlighter
350
  msgid "Log errors for individual Crayons"
351
  msgstr "Errori nel registro di Crayons singoli"
352
 
353
+ #: crayon_settings_wp.class.php:601
354
  #@ crayon-syntax-highlighter
355
  msgid "Log system-wide errors"
356
  msgstr "Log di sistema a livello di errori"
357
 
358
+ #: crayon_settings_wp.class.php:602
359
  #@ crayon-syntax-highlighter
360
  msgid "Display custom message for errors"
361
  msgstr "Display messaggio personalizzato per gli errori"
362
 
363
+ #: crayon_settings_wp.class.php:614
364
  #@ crayon-syntax-highlighter
365
  msgid "Show Log"
366
  msgstr "Mostra registro"
367
 
368
+ #: crayon_settings_wp.class.php:616
369
  #@ crayon-syntax-highlighter
370
  msgid "Clear Log"
371
  msgstr "Cancella registro"
372
 
373
+ #: crayon_settings_wp.class.php:617
374
  #@ crayon-syntax-highlighter
375
  msgid "Email Admin"
376
  msgstr "E-mail Admin"
377
 
378
+ #: crayon_settings_wp.class.php:619
379
  #@ crayon-syntax-highlighter
380
  msgid "Email Developer"
381
  msgstr "Email Developer"
382
 
383
+ #: crayon_settings_wp.class.php:635
384
  #@ crayon-syntax-highlighter
385
  msgid "Version"
386
  msgstr "Versione"
387
 
388
+ #: crayon_settings_wp.class.php:637
389
  #@ crayon-syntax-highlighter
390
  msgid "Developer"
391
  msgstr "Sviluppatore"
392
 
393
+ #: crayon_settings_wp.class.php:661
394
  #@ crayon-syntax-highlighter
395
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
396
  msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
401
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
402
  msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
403
 
404
+ #: crayon_settings.class.php:95
405
  #@ crayon-syntax-highlighter
406
  msgid "Hourly"
407
  msgstr "Ogni ora"
408
 
409
+ #: crayon_settings.class.php:95
410
  #@ crayon-syntax-highlighter
411
  msgid "Daily"
412
  msgstr "Quotidiano"
413
 
414
+ #: crayon_settings.class.php:96
415
  #@ crayon-syntax-highlighter
416
  msgid "Weekly"
417
  msgstr "Settimanale"
418
 
419
+ #: crayon_settings.class.php:96
420
  #@ crayon-syntax-highlighter
421
  msgid "Monthly"
422
  msgstr "Mensile"
423
 
424
+ #: crayon_settings.class.php:97
425
  #@ crayon-syntax-highlighter
426
  msgid "Immediately"
427
  msgstr "Immediatamente"
428
 
429
+ #: crayon_settings_wp.class.php:411
430
  #@ crayon-syntax-highlighter
431
  msgid "Crayon Help"
432
  msgstr "Crayon Aiuto"
433
 
434
+ #: crayon_settings_wp.class.php:590
435
  #@ crayon-syntax-highlighter
436
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
437
  msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
438
 
439
+ #: crayon_settings_wp.class.php:590
440
  #@ crayon-syntax-highlighter
441
  msgid "Why?"
442
  msgstr "Perché?"
443
 
444
+ #: crayon_settings_wp.class.php:497
445
  #, php-format
446
  #@ crayon-syntax-highlighter
447
  msgid "%d language has been detected."
449
  msgstr[0] "%d lingua è stata rilevata."
450
  msgstr[1] "%d lingue sono state rilevate."
451
 
452
+ #: crayon_settings_wp.class.php:583
453
  #@ crayon-syntax-highlighter
454
  msgid "Followed by your relative URL."
455
  msgstr "Seguito dal relativo URL."
456
 
457
+ #: crayon_settings_wp.class.php:621
458
  #@ crayon-syntax-highlighter
459
  msgid "The log is currently empty."
460
  msgstr "Il registro è vuoto."
461
 
462
+ #: crayon_settings_wp.class.php:623
463
  #@ crayon-syntax-highlighter
464
  msgid "The log file exists and is writable."
465
  msgstr "Il file di registro esiste ed è scrivibile."
466
 
467
+ #: crayon_settings_wp.class.php:623
468
  #@ crayon-syntax-highlighter
469
  msgid "The log file exists and is not writable."
470
  msgstr "Il file di registro esiste e non è scrivibile."
471
 
472
+ #: crayon_settings_wp.class.php:625
473
  #@ crayon-syntax-highlighter
474
  msgid "The log file does not exist and is not writable."
475
  msgstr "Il file di registro non esiste e non è scrivibile."
476
 
477
+ #: crayon_settings_wp.class.php:571
478
  #@ crayon-syntax-highlighter
479
  msgid "Capture &lt;pre&gt; tags as Crayons"
480
  msgstr "Cattura tag &lt;pre&gt; come Crayons"
481
 
482
+ #: crayon_settings_wp.class.php:572
483
+ #: crayon_settings_wp.class.php:573
484
+ #: crayon_settings_wp.class.php:574
485
+ #@ crayon-syntax-highlighter
486
+ msgid "Learn More"
487
+ msgstr "Approfondisci"
488
+
489
+ #: crayon_settings_wp.class.php:575
490
+ #@ crayon-syntax-highlighter
491
+ msgid "Show Mixed Language Icon (+)"
492
+ msgstr "Mostra icona misto di lingua (+)"
493
+
494
+ #: crayon_settings_wp.class.php:574
495
+ #@ crayon-syntax-highlighter
496
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
497
+ msgstr "Lasciare Evidenziando Lingua mista con delimitatori e tag."
498
+
499
+ #: crayon_settings_wp.class.php:572
500
+ #@ crayon-syntax-highlighter
501
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
502
+ msgstr "Cattura Tags come Mini [php][/php] come Crayons."
503
+
504
+ #: crayon_settings_wp.class.php:573
505
+ #@ crayon-syntax-highlighter
506
+ msgid "Enable [plain][/plain] tag."
507
+ msgstr "Abilita tag [plain][/plain]."
508
+
trans/crayon-syntax-highlighter-ja.mo ADDED
Binary file
trans/{crayon-syntax-highlighter-ja_JP.po → crayon-syntax-highlighter-ja.po} RENAMED
@@ -19,122 +19,122 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:91
23
  #@ crayon-syntax-highlighter
24
  msgid "Hourly"
25
  msgstr "毎時間"
26
 
27
- #: crayon_settings.class.php:91
28
  #@ crayon-syntax-highlighter
29
  msgid "Daily"
30
  msgstr "毎日"
31
 
32
- #: crayon_settings.class.php:92
33
  #@ crayon-syntax-highlighter
34
  msgid "Weekly"
35
  msgstr "毎週"
36
 
37
- #: crayon_settings.class.php:92
38
  #@ crayon-syntax-highlighter
39
  msgid "Monthly"
40
  msgstr "毎月"
41
 
42
- #: crayon_settings.class.php:93
43
  #@ crayon-syntax-highlighter
44
  msgid "Immediately"
45
  msgstr "直後に"
46
 
47
- #: crayon_settings.class.php:117
48
  #: crayon_settings.class.php:121
 
49
  #@ crayon-syntax-highlighter
50
  msgid "Max"
51
  msgstr "最大"
52
 
53
- #: crayon_settings.class.php:117
54
  #: crayon_settings.class.php:121
 
55
  #@ crayon-syntax-highlighter
56
  msgid "Min"
57
  msgstr "最小"
58
 
59
- #: crayon_settings.class.php:117
60
  #: crayon_settings.class.php:121
 
61
  #@ crayon-syntax-highlighter
62
  msgid "Static"
63
  msgstr "固定"
64
 
65
- #: crayon_settings.class.php:119
66
  #: crayon_settings.class.php:123
 
67
  #@ crayon-syntax-highlighter
68
  msgid "Pixels"
69
  msgstr "ピクセル"
70
 
71
- #: crayon_settings.class.php:119
72
  #: crayon_settings.class.php:123
 
73
  #@ crayon-syntax-highlighter
74
  msgid "Percent"
75
  msgstr "パーセント"
76
 
77
- #: crayon_settings.class.php:132
78
  #@ crayon-syntax-highlighter
79
  msgid "None"
80
  msgstr "なし"
81
 
82
- #: crayon_settings.class.php:132
83
  #@ crayon-syntax-highlighter
84
  msgid "Left"
85
  msgstr "左"
86
 
87
- #: crayon_settings.class.php:132
88
  #@ crayon-syntax-highlighter
89
  msgid "Center"
90
  msgstr "中央"
91
 
92
- #: crayon_settings.class.php:132
93
  #@ crayon-syntax-highlighter
94
  msgid "Right"
95
  msgstr "右"
96
 
97
- #: crayon_settings.class.php:134
98
- #: crayon_settings.class.php:151
99
- #: crayon_settings.class.php:154
100
  #@ crayon-syntax-highlighter
101
  msgid "On MouseOver"
102
  msgstr "マウスオーバー時"
103
 
104
- #: crayon_settings.class.php:134
105
- #: crayon_settings.class.php:140
106
- #: crayon_settings.class.php:151
107
  #@ crayon-syntax-highlighter
108
  msgid "Always"
109
  msgstr "常に表示"
110
 
111
- #: crayon_settings.class.php:134
112
- #: crayon_settings.class.php:140
113
  #@ crayon-syntax-highlighter
114
  msgid "Never"
115
  msgstr "表示しない"
116
 
117
- #: crayon_settings.class.php:140
118
  #@ crayon-syntax-highlighter
119
  msgid "When Found"
120
  msgstr "言語が判明した場合"
121
 
122
- #: crayon_settings.class.php:154
123
  #@ crayon-syntax-highlighter
124
  msgid "On Double Click"
125
  msgstr "ダブルクリック時"
126
 
127
- #: crayon_settings.class.php:154
128
  #@ crayon-syntax-highlighter
129
  msgid "On Single Click"
130
  msgstr "シングルクリック時"
131
 
132
- #: crayon_settings.class.php:154
133
  #@ crayon-syntax-highlighter
134
  msgid "Only Using Toggle"
135
  msgstr "切り替え使用時のみ"
136
 
137
- #: crayon_settings.class.php:162
138
  #@ crayon-syntax-highlighter
139
  msgid "An error has occurred. Please try again later."
140
  msgstr "エラーが発生しました。後でもう一度やり直してください。"
@@ -160,277 +160,277 @@ msgstr "変更を保存"
160
  msgid "Reset Settings"
161
  msgstr "リセット"
162
 
163
- #: crayon_settings_wp.class.php:414
164
  #@ crayon-syntax-highlighter
165
  msgid "Crayon Help"
166
  msgstr "Crayon ヘルプ"
167
 
168
- #: crayon_settings_wp.class.php:428
169
  #@ crayon-syntax-highlighter
170
  msgid "Height"
171
  msgstr "高さ"
172
 
173
- #: crayon_settings_wp.class.php:434
174
  #@ crayon-syntax-highlighter
175
  msgid "Width"
176
  msgstr "横幅"
177
 
178
- #: crayon_settings_wp.class.php:440
179
  #@ crayon-syntax-highlighter
180
  msgid "Top Margin"
181
  msgstr "上余白"
182
 
183
- #: crayon_settings_wp.class.php:441
184
  #@ crayon-syntax-highlighter
185
  msgid "Bottom Margin"
186
  msgstr "下余白"
187
 
188
- #: crayon_settings_wp.class.php:442
189
- #: crayon_settings_wp.class.php:447
190
  #@ crayon-syntax-highlighter
191
  msgid "Left Margin"
192
  msgstr "左余白"
193
 
194
- #: crayon_settings_wp.class.php:443
195
- #: crayon_settings_wp.class.php:447
196
  #@ crayon-syntax-highlighter
197
  msgid "Right Margin"
198
  msgstr "右余白"
199
 
200
- #: crayon_settings_wp.class.php:453
201
  #@ crayon-syntax-highlighter
202
  msgid "Horizontal Alignment"
203
  msgstr "回り込み"
204
 
205
- #: crayon_settings_wp.class.php:456
206
  #@ crayon-syntax-highlighter
207
  msgid "Allow floating elements to surround Crayon"
208
  msgstr "周りのfloat要素の回り込みを許可"
209
 
210
- #: crayon_settings_wp.class.php:461
211
  #@ crayon-syntax-highlighter
212
  msgid "Display the Toolbar"
213
  msgstr "ツールバーの表示"
214
 
215
- #: crayon_settings_wp.class.php:464
216
  #@ crayon-syntax-highlighter
217
  msgid "Overlay the toolbar on code rather than push it down when possible"
218
  msgstr "コードを押し下げるのではなく、コード上に重ねて表示"
219
 
220
- #: crayon_settings_wp.class.php:465
221
  #@ crayon-syntax-highlighter
222
  msgid "Toggle the toolbar on single click when it is overlayed"
223
  msgstr "重ねて表示の場合にシングルクリックでツールバーを切り替える"
224
 
225
- #: crayon_settings_wp.class.php:466
226
  #@ crayon-syntax-highlighter
227
  msgid "Delay hiding the toolbar on MouseOut"
228
  msgstr "マウスアウト時にツールバーを隠すのを遅らせる"
229
 
230
- #: crayon_settings_wp.class.php:468
231
  #@ crayon-syntax-highlighter
232
  msgid "Display the title when provided"
233
  msgstr "タイトルがある時は表示"
234
 
235
- #: crayon_settings_wp.class.php:469
236
  #@ crayon-syntax-highlighter
237
  msgid "Display the language"
238
  msgstr "ソース言語を表示"
239
 
240
- #: crayon_settings_wp.class.php:474
241
  #@ crayon-syntax-highlighter
242
  msgid "Display striped code lines"
243
  msgstr "コード行を縞模様で表示する"
244
 
245
- #: crayon_settings_wp.class.php:475
246
  #@ crayon-syntax-highlighter
247
  msgid "Enable line marking for important lines"
248
  msgstr "重要な行にマーキングを有効にする"
249
 
250
- #: crayon_settings_wp.class.php:476
251
  #@ crayon-syntax-highlighter
252
  msgid "Display line numbers by default"
253
  msgstr "デフォルトで行番号を表示"
254
 
255
- #: crayon_settings_wp.class.php:477
256
  #@ crayon-syntax-highlighter
257
  msgid "Enable line number toggling"
258
  msgstr "行番号の切り替えを有効にする"
259
 
260
- #: crayon_settings_wp.class.php:478
261
  #@ crayon-syntax-highlighter
262
  msgid "Start line numbers from"
263
  msgstr "行番号の開始数字"
264
 
265
- #: crayon_settings_wp.class.php:488
266
  #@ crayon-syntax-highlighter
267
  msgid "When no language is provided, use the fallback"
268
  msgstr "ソース言語が提供されていない場合は、代替えを使用します。"
269
 
270
- #: crayon_settings_wp.class.php:501
271
  #@ crayon-syntax-highlighter
272
  msgid "Parsing was successful"
273
  msgstr "解析が成功しました。"
274
 
275
- #: crayon_settings_wp.class.php:501
276
  #@ crayon-syntax-highlighter
277
  msgid "Parsing was unsuccessful"
278
  msgstr "解析に失敗しました。"
279
 
280
- #: crayon_settings_wp.class.php:507
281
  #, php-format
282
  #@ crayon-syntax-highlighter
283
  msgid "The selected language with id %s could not be loaded"
284
  msgstr "ID %s の選択したソース言語をロードできませんでした。"
285
 
286
- #: crayon_settings_wp.class.php:511
287
  #@ crayon-syntax-highlighter
288
  msgid "Show Languages"
289
  msgstr "ソース言語を表示する"
290
 
291
- #: crayon_settings_wp.class.php:532
292
  #@ crayon-syntax-highlighter
293
  msgid "Enable Live Preview"
294
  msgstr "リアルタイムのプレビューを有効にする"
295
 
296
- #: crayon_settings_wp.class.php:535
297
  #, php-format
298
  #@ crayon-syntax-highlighter
299
  msgid "The selected theme with id %s could not be loaded"
300
  msgstr "ID %sの選択したテーマをロードできませんでした。"
301
 
302
- #: crayon_settings_wp.class.php:549
303
  #@ crayon-syntax-highlighter
304
  msgid "Theme Default"
305
  msgstr "デフォルトテーマ"
306
 
307
- #: crayon_settings_wp.class.php:553
308
  #@ crayon-syntax-highlighter
309
  msgid "Custom Font Size"
310
  msgstr "フォントサイズ指定"
311
 
312
- #: crayon_settings_wp.class.php:558
313
  #, php-format
314
  #@ crayon-syntax-highlighter
315
  msgid "The selected font with id %s could not be loaded"
316
  msgstr "ID %s の選択されたフォントをロードできませんでした。"
317
 
318
- #: crayon_settings_wp.class.php:563
319
  #@ crayon-syntax-highlighter
320
  msgid "Enable plain code view and display"
321
  msgstr "単純なコードビューを有効にする"
322
 
323
- #: crayon_settings_wp.class.php:566
324
  #@ crayon-syntax-highlighter
325
  msgid "Enable code copy/paste"
326
  msgstr "コードのコピー/貼り付けを有効にする"
327
 
328
- #: crayon_settings_wp.class.php:568
329
  #@ crayon-syntax-highlighter
330
  msgid "Enable opening code in a window"
331
  msgstr "新しいウインドウでコードを開くを有効にする"
332
 
333
- #: crayon_settings_wp.class.php:569
334
  #@ crayon-syntax-highlighter
335
  msgid "Display scrollbars (when needed)"
336
  msgstr "必要に応じたスクロールバーの表示"
337
 
338
- #: crayon_settings_wp.class.php:571
339
  #@ crayon-syntax-highlighter
340
  msgid "Tab size in spaces"
341
  msgstr "tab挿入の空白代替え数(単純コードビュー)"
342
 
343
- #: crayon_settings_wp.class.php:573
344
  #@ crayon-syntax-highlighter
345
  msgid "Remove whitespace surrounding the shortcode content"
346
  msgstr "ショートコードの内容を囲む空白の部分を削除します"
347
 
348
- #: crayon_settings_wp.class.php:579
349
  #@ crayon-syntax-highlighter
350
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
351
  msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
352
 
353
- #: crayon_settings_wp.class.php:586
354
  #@ crayon-syntax-highlighter
355
  msgid "Clear the cache used to store remote code requests"
356
  msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
357
 
358
- #: crayon_settings_wp.class.php:588
359
  #@ crayon-syntax-highlighter
360
  msgid "Clear Now"
361
  msgstr "今すぐクリア"
362
 
363
- #: crayon_settings_wp.class.php:589
364
  #@ crayon-syntax-highlighter
365
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
366
  msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
367
 
368
- #: crayon_settings_wp.class.php:589
369
  #@ crayon-syntax-highlighter
370
  msgid "Why?"
371
  msgstr "なぜ試みるのか?"
372
 
373
- #: crayon_settings_wp.class.php:590
374
  #@ crayon-syntax-highlighter
375
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
376
  msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
377
 
378
- #: crayon_settings_wp.class.php:591
379
  #@ crayon-syntax-highlighter
380
  msgid "Disable animations"
381
  msgstr "アニメーションを無効にする"
382
 
383
- #: crayon_settings_wp.class.php:592
384
  #@ crayon-syntax-highlighter
385
  msgid "Disable runtime stats"
386
  msgstr "プログラム実行時の統計を無効にする"
387
 
388
- #: crayon_settings_wp.class.php:599
389
  #@ crayon-syntax-highlighter
390
  msgid "Log errors for individual Crayons"
391
  msgstr "個々設置(Crayon)のエラーを記録"
392
 
393
- #: crayon_settings_wp.class.php:600
394
  #@ crayon-syntax-highlighter
395
  msgid "Log system-wide errors"
396
  msgstr "システム全体のエラーを記録"
397
 
398
- #: crayon_settings_wp.class.php:601
399
  #@ crayon-syntax-highlighter
400
  msgid "Display custom message for errors"
401
  msgstr "カスタムエラーメッセージを表示する"
402
 
403
- #: crayon_settings_wp.class.php:613
404
  #@ crayon-syntax-highlighter
405
  msgid "Show Log"
406
  msgstr "ログを見る"
407
 
408
- #: crayon_settings_wp.class.php:615
409
  #@ crayon-syntax-highlighter
410
  msgid "Clear Log"
411
  msgstr "ログをクリア"
412
 
413
- #: crayon_settings_wp.class.php:616
414
  #@ crayon-syntax-highlighter
415
  msgid "Email Admin"
416
  msgstr "管理者にEメールを送信"
417
 
418
- #: crayon_settings_wp.class.php:618
419
  #@ crayon-syntax-highlighter
420
  msgid "Email Developer"
421
  msgstr "開発者にEメールを送信"
422
 
423
- #: crayon_settings_wp.class.php:634
424
  #@ crayon-syntax-highlighter
425
  msgid "Version"
426
  msgstr "バージョン"
427
 
428
- #: crayon_settings_wp.class.php:636
429
  #@ crayon-syntax-highlighter
430
  msgid "Developer"
431
  msgstr "開発者"
432
 
433
- #: crayon_settings_wp.class.php:660
434
  #@ crayon-syntax-highlighter
435
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
436
  msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
@@ -441,40 +441,67 @@ msgstr "何カ月もにわたって数え切れないほどのハードワーク
441
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
442
  msgstr "サンプルコードを変更するには、%1$sfallback language(代替え言語)%2$sを変更て下さい。5行目から7行目はマークされます。"
443
 
444
- #: crayon_settings_wp.class.php:500
445
  #, php-format
446
  #@ crayon-syntax-highlighter
447
  msgid "%d language has been detected."
448
  msgid_plural "%d languages have been detected."
449
  msgstr[0] "%dのソース言語が検出されてます。"
450
 
451
- #: crayon_settings_wp.class.php:574
452
  #@ crayon-syntax-highlighter
453
  msgid "Capture &lt;pre&gt; tags as Crayons"
454
  msgstr "Crayonsとして&lt;pre&gt;タグをキャプチャ"
455
 
456
- #: crayon_settings_wp.class.php:582
457
  #@ crayon-syntax-highlighter
458
  msgid "Followed by your relative URL."
459
  msgstr "相対URLが続きます。"
460
 
461
- #: crayon_settings_wp.class.php:620
462
  #@ crayon-syntax-highlighter
463
  msgid "The log is currently empty."
464
  msgstr "ログは現在空です。"
465
 
466
- #: crayon_settings_wp.class.php:622
467
  #@ crayon-syntax-highlighter
468
  msgid "The log file exists and is writable."
469
  msgstr "ログファイルは存在し、書き込み可能です。"
470
 
471
- #: crayon_settings_wp.class.php:622
472
  #@ crayon-syntax-highlighter
473
  msgid "The log file exists and is not writable."
474
  msgstr "ログファイルは存在するが、書き込み可能ではありません。"
475
 
476
- #: crayon_settings_wp.class.php:624
477
  #@ crayon-syntax-highlighter
478
  msgid "The log file does not exist and is not writable."
479
  msgstr "ログファイルが存在しないので書き込むことが出来ません。"
480
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:95
23
  #@ crayon-syntax-highlighter
24
  msgid "Hourly"
25
  msgstr "毎時間"
26
 
27
+ #: crayon_settings.class.php:95
28
  #@ crayon-syntax-highlighter
29
  msgid "Daily"
30
  msgstr "毎日"
31
 
32
+ #: crayon_settings.class.php:96
33
  #@ crayon-syntax-highlighter
34
  msgid "Weekly"
35
  msgstr "毎週"
36
 
37
+ #: crayon_settings.class.php:96
38
  #@ crayon-syntax-highlighter
39
  msgid "Monthly"
40
  msgstr "毎月"
41
 
42
+ #: crayon_settings.class.php:97
43
  #@ crayon-syntax-highlighter
44
  msgid "Immediately"
45
  msgstr "直後に"
46
 
 
47
  #: crayon_settings.class.php:121
48
+ #: crayon_settings.class.php:125
49
  #@ crayon-syntax-highlighter
50
  msgid "Max"
51
  msgstr "最大"
52
 
 
53
  #: crayon_settings.class.php:121
54
+ #: crayon_settings.class.php:125
55
  #@ crayon-syntax-highlighter
56
  msgid "Min"
57
  msgstr "最小"
58
 
 
59
  #: crayon_settings.class.php:121
60
+ #: crayon_settings.class.php:125
61
  #@ crayon-syntax-highlighter
62
  msgid "Static"
63
  msgstr "固定"
64
 
 
65
  #: crayon_settings.class.php:123
66
+ #: crayon_settings.class.php:127
67
  #@ crayon-syntax-highlighter
68
  msgid "Pixels"
69
  msgstr "ピクセル"
70
 
 
71
  #: crayon_settings.class.php:123
72
+ #: crayon_settings.class.php:127
73
  #@ crayon-syntax-highlighter
74
  msgid "Percent"
75
  msgstr "パーセント"
76
 
77
+ #: crayon_settings.class.php:136
78
  #@ crayon-syntax-highlighter
79
  msgid "None"
80
  msgstr "なし"
81
 
82
+ #: crayon_settings.class.php:136
83
  #@ crayon-syntax-highlighter
84
  msgid "Left"
85
  msgstr "左"
86
 
87
+ #: crayon_settings.class.php:136
88
  #@ crayon-syntax-highlighter
89
  msgid "Center"
90
  msgstr "中央"
91
 
92
+ #: crayon_settings.class.php:136
93
  #@ crayon-syntax-highlighter
94
  msgid "Right"
95
  msgstr "右"
96
 
97
+ #: crayon_settings.class.php:138
98
+ #: crayon_settings.class.php:155
99
+ #: crayon_settings.class.php:158
100
  #@ crayon-syntax-highlighter
101
  msgid "On MouseOver"
102
  msgstr "マウスオーバー時"
103
 
104
+ #: crayon_settings.class.php:138
105
+ #: crayon_settings.class.php:144
106
+ #: crayon_settings.class.php:155
107
  #@ crayon-syntax-highlighter
108
  msgid "Always"
109
  msgstr "常に表示"
110
 
111
+ #: crayon_settings.class.php:138
112
+ #: crayon_settings.class.php:144
113
  #@ crayon-syntax-highlighter
114
  msgid "Never"
115
  msgstr "表示しない"
116
 
117
+ #: crayon_settings.class.php:144
118
  #@ crayon-syntax-highlighter
119
  msgid "When Found"
120
  msgstr "言語が判明した場合"
121
 
122
+ #: crayon_settings.class.php:158
123
  #@ crayon-syntax-highlighter
124
  msgid "On Double Click"
125
  msgstr "ダブルクリック時"
126
 
127
+ #: crayon_settings.class.php:158
128
  #@ crayon-syntax-highlighter
129
  msgid "On Single Click"
130
  msgstr "シングルクリック時"
131
 
132
+ #: crayon_settings.class.php:158
133
  #@ crayon-syntax-highlighter
134
  msgid "Only Using Toggle"
135
  msgstr "切り替え使用時のみ"
136
 
137
+ #: crayon_settings.class.php:166
138
  #@ crayon-syntax-highlighter
139
  msgid "An error has occurred. Please try again later."
140
  msgstr "エラーが発生しました。後でもう一度やり直してください。"
160
  msgid "Reset Settings"
161
  msgstr "リセット"
162
 
163
+ #: crayon_settings_wp.class.php:411
164
  #@ crayon-syntax-highlighter
165
  msgid "Crayon Help"
166
  msgstr "Crayon ヘルプ"
167
 
168
+ #: crayon_settings_wp.class.php:425
169
  #@ crayon-syntax-highlighter
170
  msgid "Height"
171
  msgstr "高さ"
172
 
173
+ #: crayon_settings_wp.class.php:431
174
  #@ crayon-syntax-highlighter
175
  msgid "Width"
176
  msgstr "横幅"
177
 
178
+ #: crayon_settings_wp.class.php:437
179
  #@ crayon-syntax-highlighter
180
  msgid "Top Margin"
181
  msgstr "上余白"
182
 
183
+ #: crayon_settings_wp.class.php:438
184
  #@ crayon-syntax-highlighter
185
  msgid "Bottom Margin"
186
  msgstr "下余白"
187
 
188
+ #: crayon_settings_wp.class.php:439
189
+ #: crayon_settings_wp.class.php:444
190
  #@ crayon-syntax-highlighter
191
  msgid "Left Margin"
192
  msgstr "左余白"
193
 
194
+ #: crayon_settings_wp.class.php:440
195
+ #: crayon_settings_wp.class.php:444
196
  #@ crayon-syntax-highlighter
197
  msgid "Right Margin"
198
  msgstr "右余白"
199
 
200
+ #: crayon_settings_wp.class.php:450
201
  #@ crayon-syntax-highlighter
202
  msgid "Horizontal Alignment"
203
  msgstr "回り込み"
204
 
205
+ #: crayon_settings_wp.class.php:453
206
  #@ crayon-syntax-highlighter
207
  msgid "Allow floating elements to surround Crayon"
208
  msgstr "周りのfloat要素の回り込みを許可"
209
 
210
+ #: crayon_settings_wp.class.php:458
211
  #@ crayon-syntax-highlighter
212
  msgid "Display the Toolbar"
213
  msgstr "ツールバーの表示"
214
 
215
+ #: crayon_settings_wp.class.php:461
216
  #@ crayon-syntax-highlighter
217
  msgid "Overlay the toolbar on code rather than push it down when possible"
218
  msgstr "コードを押し下げるのではなく、コード上に重ねて表示"
219
 
220
+ #: crayon_settings_wp.class.php:462
221
  #@ crayon-syntax-highlighter
222
  msgid "Toggle the toolbar on single click when it is overlayed"
223
  msgstr "重ねて表示の場合にシングルクリックでツールバーを切り替える"
224
 
225
+ #: crayon_settings_wp.class.php:463
226
  #@ crayon-syntax-highlighter
227
  msgid "Delay hiding the toolbar on MouseOut"
228
  msgstr "マウスアウト時にツールバーを隠すのを遅らせる"
229
 
230
+ #: crayon_settings_wp.class.php:465
231
  #@ crayon-syntax-highlighter
232
  msgid "Display the title when provided"
233
  msgstr "タイトルがある時は表示"
234
 
235
+ #: crayon_settings_wp.class.php:466
236
  #@ crayon-syntax-highlighter
237
  msgid "Display the language"
238
  msgstr "ソース言語を表示"
239
 
240
+ #: crayon_settings_wp.class.php:471
241
  #@ crayon-syntax-highlighter
242
  msgid "Display striped code lines"
243
  msgstr "コード行を縞模様で表示する"
244
 
245
+ #: crayon_settings_wp.class.php:472
246
  #@ crayon-syntax-highlighter
247
  msgid "Enable line marking for important lines"
248
  msgstr "重要な行にマーキングを有効にする"
249
 
250
+ #: crayon_settings_wp.class.php:473
251
  #@ crayon-syntax-highlighter
252
  msgid "Display line numbers by default"
253
  msgstr "デフォルトで行番号を表示"
254
 
255
+ #: crayon_settings_wp.class.php:474
256
  #@ crayon-syntax-highlighter
257
  msgid "Enable line number toggling"
258
  msgstr "行番号の切り替えを有効にする"
259
 
260
+ #: crayon_settings_wp.class.php:475
261
  #@ crayon-syntax-highlighter
262
  msgid "Start line numbers from"
263
  msgstr "行番号の開始数字"
264
 
265
+ #: crayon_settings_wp.class.php:485
266
  #@ crayon-syntax-highlighter
267
  msgid "When no language is provided, use the fallback"
268
  msgstr "ソース言語が提供されていない場合は、代替えを使用します。"
269
 
270
+ #: crayon_settings_wp.class.php:498
271
  #@ crayon-syntax-highlighter
272
  msgid "Parsing was successful"
273
  msgstr "解析が成功しました。"
274
 
275
+ #: crayon_settings_wp.class.php:498
276
  #@ crayon-syntax-highlighter
277
  msgid "Parsing was unsuccessful"
278
  msgstr "解析に失敗しました。"
279
 
280
+ #: crayon_settings_wp.class.php:504
281
  #, php-format
282
  #@ crayon-syntax-highlighter
283
  msgid "The selected language with id %s could not be loaded"
284
  msgstr "ID %s の選択したソース言語をロードできませんでした。"
285
 
286
+ #: crayon_settings_wp.class.php:508
287
  #@ crayon-syntax-highlighter
288
  msgid "Show Languages"
289
  msgstr "ソース言語を表示する"
290
 
291
+ #: crayon_settings_wp.class.php:529
292
  #@ crayon-syntax-highlighter
293
  msgid "Enable Live Preview"
294
  msgstr "リアルタイムのプレビューを有効にする"
295
 
296
+ #: crayon_settings_wp.class.php:532
297
  #, php-format
298
  #@ crayon-syntax-highlighter
299
  msgid "The selected theme with id %s could not be loaded"
300
  msgstr "ID %sの選択したテーマをロードできませんでした。"
301
 
302
+ #: crayon_settings_wp.class.php:546
303
  #@ crayon-syntax-highlighter
304
  msgid "Theme Default"
305
  msgstr "デフォルトテーマ"
306
 
307
+ #: crayon_settings_wp.class.php:550
308
  #@ crayon-syntax-highlighter
309
  msgid "Custom Font Size"
310
  msgstr "フォントサイズ指定"
311
 
312
+ #: crayon_settings_wp.class.php:555
313
  #, php-format
314
  #@ crayon-syntax-highlighter
315
  msgid "The selected font with id %s could not be loaded"
316
  msgstr "ID %s の選択されたフォントをロードできませんでした。"
317
 
318
+ #: crayon_settings_wp.class.php:560
319
  #@ crayon-syntax-highlighter
320
  msgid "Enable plain code view and display"
321
  msgstr "単純なコードビューを有効にする"
322
 
323
+ #: crayon_settings_wp.class.php:563
324
  #@ crayon-syntax-highlighter
325
  msgid "Enable code copy/paste"
326
  msgstr "コードのコピー/貼り付けを有効にする"
327
 
328
+ #: crayon_settings_wp.class.php:565
329
  #@ crayon-syntax-highlighter
330
  msgid "Enable opening code in a window"
331
  msgstr "新しいウインドウでコードを開くを有効にする"
332
 
333
+ #: crayon_settings_wp.class.php:566
334
  #@ crayon-syntax-highlighter
335
  msgid "Display scrollbars (when needed)"
336
  msgstr "必要に応じたスクロールバーの表示"
337
 
338
+ #: crayon_settings_wp.class.php:568
339
  #@ crayon-syntax-highlighter
340
  msgid "Tab size in spaces"
341
  msgstr "tab挿入の空白代替え数(単純コードビュー)"
342
 
343
+ #: crayon_settings_wp.class.php:570
344
  #@ crayon-syntax-highlighter
345
  msgid "Remove whitespace surrounding the shortcode content"
346
  msgstr "ショートコードの内容を囲む空白の部分を削除します"
347
 
348
+ #: crayon_settings_wp.class.php:580
349
  #@ crayon-syntax-highlighter
350
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
351
  msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
352
 
353
+ #: crayon_settings_wp.class.php:587
354
  #@ crayon-syntax-highlighter
355
  msgid "Clear the cache used to store remote code requests"
356
  msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
357
 
358
+ #: crayon_settings_wp.class.php:589
359
  #@ crayon-syntax-highlighter
360
  msgid "Clear Now"
361
  msgstr "今すぐクリア"
362
 
363
+ #: crayon_settings_wp.class.php:590
364
  #@ crayon-syntax-highlighter
365
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
366
  msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
367
 
368
+ #: crayon_settings_wp.class.php:590
369
  #@ crayon-syntax-highlighter
370
  msgid "Why?"
371
  msgstr "なぜ試みるのか?"
372
 
373
+ #: crayon_settings_wp.class.php:591
374
  #@ crayon-syntax-highlighter
375
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
376
  msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
377
 
378
+ #: crayon_settings_wp.class.php:592
379
  #@ crayon-syntax-highlighter
380
  msgid "Disable animations"
381
  msgstr "アニメーションを無効にする"
382
 
383
+ #: crayon_settings_wp.class.php:593
384
  #@ crayon-syntax-highlighter
385
  msgid "Disable runtime stats"
386
  msgstr "プログラム実行時の統計を無効にする"
387
 
388
+ #: crayon_settings_wp.class.php:600
389
  #@ crayon-syntax-highlighter
390
  msgid "Log errors for individual Crayons"
391
  msgstr "個々設置(Crayon)のエラーを記録"
392
 
393
+ #: crayon_settings_wp.class.php:601
394
  #@ crayon-syntax-highlighter
395
  msgid "Log system-wide errors"
396
  msgstr "システム全体のエラーを記録"
397
 
398
+ #: crayon_settings_wp.class.php:602
399
  #@ crayon-syntax-highlighter
400
  msgid "Display custom message for errors"
401
  msgstr "カスタムエラーメッセージを表示する"
402
 
403
+ #: crayon_settings_wp.class.php:614
404
  #@ crayon-syntax-highlighter
405
  msgid "Show Log"
406
  msgstr "ログを見る"
407
 
408
+ #: crayon_settings_wp.class.php:616
409
  #@ crayon-syntax-highlighter
410
  msgid "Clear Log"
411
  msgstr "ログをクリア"
412
 
413
+ #: crayon_settings_wp.class.php:617
414
  #@ crayon-syntax-highlighter
415
  msgid "Email Admin"
416
  msgstr "管理者にEメールを送信"
417
 
418
+ #: crayon_settings_wp.class.php:619
419
  #@ crayon-syntax-highlighter
420
  msgid "Email Developer"
421
  msgstr "開発者にEメールを送信"
422
 
423
+ #: crayon_settings_wp.class.php:635
424
  #@ crayon-syntax-highlighter
425
  msgid "Version"
426
  msgstr "バージョン"
427
 
428
+ #: crayon_settings_wp.class.php:637
429
  #@ crayon-syntax-highlighter
430
  msgid "Developer"
431
  msgstr "開発者"
432
 
433
+ #: crayon_settings_wp.class.php:661
434
  #@ crayon-syntax-highlighter
435
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
436
  msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
441
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
442
  msgstr "サンプルコードを変更するには、%1$sfallback language(代替え言語)%2$sを変更て下さい。5行目から7行目はマークされます。"
443
 
444
+ #: crayon_settings_wp.class.php:497
445
  #, php-format
446
  #@ crayon-syntax-highlighter
447
  msgid "%d language has been detected."
448
  msgid_plural "%d languages have been detected."
449
  msgstr[0] "%dのソース言語が検出されてます。"
450
 
451
+ #: crayon_settings_wp.class.php:571
452
  #@ crayon-syntax-highlighter
453
  msgid "Capture &lt;pre&gt; tags as Crayons"
454
  msgstr "Crayonsとして&lt;pre&gt;タグをキャプチャ"
455
 
456
+ #: crayon_settings_wp.class.php:583
457
  #@ crayon-syntax-highlighter
458
  msgid "Followed by your relative URL."
459
  msgstr "相対URLが続きます。"
460
 
461
+ #: crayon_settings_wp.class.php:621
462
  #@ crayon-syntax-highlighter
463
  msgid "The log is currently empty."
464
  msgstr "ログは現在空です。"
465
 
466
+ #: crayon_settings_wp.class.php:623
467
  #@ crayon-syntax-highlighter
468
  msgid "The log file exists and is writable."
469
  msgstr "ログファイルは存在し、書き込み可能です。"
470
 
471
+ #: crayon_settings_wp.class.php:623
472
  #@ crayon-syntax-highlighter
473
  msgid "The log file exists and is not writable."
474
  msgstr "ログファイルは存在するが、書き込み可能ではありません。"
475
 
476
+ #: crayon_settings_wp.class.php:625
477
  #@ crayon-syntax-highlighter
478
  msgid "The log file does not exist and is not writable."
479
  msgstr "ログファイルが存在しないので書き込むことが出来ません。"
480
 
481
+ #: crayon_settings_wp.class.php:572
482
+ #: crayon_settings_wp.class.php:573
483
+ #: crayon_settings_wp.class.php:574
484
+ #@ crayon-syntax-highlighter
485
+ msgid "Learn More"
486
+ msgstr "詳細はこちら"
487
+
488
+ #: crayon_settings_wp.class.php:575
489
+ #@ crayon-syntax-highlighter
490
+ msgid "Show Mixed Language Icon (+)"
491
+ msgstr "混合言語のアイコンを(+)を表示"
492
+
493
+ #: crayon_settings_wp.class.php:574
494
+ #@ crayon-syntax-highlighter
495
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
496
+ msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
497
+
498
+ #: crayon_settings_wp.class.php:572
499
+ #@ crayon-syntax-highlighter
500
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
501
+ msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
502
+
503
+ #: crayon_settings_wp.class.php:573
504
+ #@ crayon-syntax-highlighter
505
+ msgid "Enable [plain][/plain] tag."
506
+ msgstr "[plain][/plain]タグを有効にします。"
507
+
trans/crayon-syntax-highlighter-ja_JP.mo DELETED
Binary file
trans/crayon-syntax-highlighter-ru_RU.po CHANGED
@@ -19,403 +19,403 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:90
23
  #@ crayon-syntax-highlighter
24
  msgid "Hourly"
25
  msgstr ""
26
 
27
- #: crayon_settings.class.php:90
28
  #@ crayon-syntax-highlighter
29
  msgid "Daily"
30
  msgstr ""
31
 
32
- #: crayon_settings.class.php:91
33
  #@ crayon-syntax-highlighter
34
  msgid "Weekly"
35
  msgstr ""
36
 
37
- #: crayon_settings.class.php:91
38
  #@ crayon-syntax-highlighter
39
  msgid "Monthly"
40
  msgstr ""
41
 
42
- #: crayon_settings.class.php:92
43
  #@ crayon-syntax-highlighter
44
  msgid "Immediately"
45
  msgstr ""
46
 
47
- #: crayon_settings.class.php:116
48
- #: crayon_settings.class.php:120
49
  #@ crayon-syntax-highlighter
50
  msgid "Max"
51
  msgstr ""
52
 
53
- #: crayon_settings.class.php:116
54
- #: crayon_settings.class.php:120
55
  #@ crayon-syntax-highlighter
56
  msgid "Min"
57
  msgstr ""
58
 
59
- #: crayon_settings.class.php:116
60
- #: crayon_settings.class.php:120
61
  #@ crayon-syntax-highlighter
62
  msgid "Static"
63
  msgstr ""
64
 
65
- #: crayon_settings.class.php:118
66
- #: crayon_settings.class.php:122
67
  #@ crayon-syntax-highlighter
68
  msgid "Pixels"
69
  msgstr ""
70
 
71
- #: crayon_settings.class.php:118
72
- #: crayon_settings.class.php:122
73
  #@ crayon-syntax-highlighter
74
  msgid "Percent"
75
  msgstr ""
76
 
77
- #: crayon_settings.class.php:131
78
  #@ crayon-syntax-highlighter
79
  msgid "None"
80
  msgstr ""
81
 
82
- #: crayon_settings.class.php:131
83
  #@ crayon-syntax-highlighter
84
  msgid "Left"
85
  msgstr ""
86
 
87
- #: crayon_settings.class.php:131
88
  #@ crayon-syntax-highlighter
89
  msgid "Center"
90
  msgstr ""
91
 
92
- #: crayon_settings.class.php:131
93
  #@ crayon-syntax-highlighter
94
  msgid "Right"
95
  msgstr ""
96
 
97
- #: crayon_settings.class.php:133
98
- #: crayon_settings.class.php:150
99
- #: crayon_settings.class.php:153
100
  #@ crayon-syntax-highlighter
101
  msgid "On MouseOver"
102
  msgstr ""
103
 
104
- #: crayon_settings.class.php:133
105
- #: crayon_settings.class.php:139
106
- #: crayon_settings.class.php:150
107
  #@ crayon-syntax-highlighter
108
  msgid "Always"
109
  msgstr ""
110
 
111
- #: crayon_settings.class.php:133
112
- #: crayon_settings.class.php:139
113
  #@ crayon-syntax-highlighter
114
  msgid "Never"
115
  msgstr ""
116
 
117
- #: crayon_settings.class.php:139
118
  #@ crayon-syntax-highlighter
119
  msgid "When Found"
120
  msgstr ""
121
 
122
- #: crayon_settings.class.php:153
123
  #@ crayon-syntax-highlighter
124
  msgid "On Double Click"
125
  msgstr ""
126
 
127
- #: crayon_settings.class.php:153
128
  #@ crayon-syntax-highlighter
129
  msgid "On Single Click"
130
  msgstr ""
131
 
132
- #: crayon_settings.class.php:153
133
  #@ crayon-syntax-highlighter
134
  msgid "Only Using Toggle"
135
  msgstr ""
136
 
137
- #: crayon_settings.class.php:161
138
  #@ crayon-syntax-highlighter
139
  msgid "An error has occurred. Please try again later."
140
  msgstr ""
141
 
142
- #: crayon_settings_wp.class.php:38
143
- #: crayon_settings_wp.class.php:76
144
  #@ crayon-syntax-highlighter
145
  msgid "Settings"
146
  msgstr ""
147
 
148
- #: crayon_settings_wp.class.php:69
149
  #@ crayon-syntax-highlighter
150
  msgid "You do not have sufficient permissions to access this page."
151
  msgstr ""
152
 
153
- #: crayon_settings_wp.class.php:88
154
  #@ crayon-syntax-highlighter
155
  msgid "Save Changes"
156
  msgstr ""
157
 
158
- #: crayon_settings_wp.class.php:94
159
  #@ crayon-syntax-highlighter
160
  msgid "Reset Settings"
161
  msgstr ""
162
 
163
- #: crayon_settings_wp.class.php:429
164
  #@ crayon-syntax-highlighter
165
  msgid "Height"
166
  msgstr ""
167
 
168
- #: crayon_settings_wp.class.php:435
169
  #@ crayon-syntax-highlighter
170
  msgid "Width"
171
  msgstr ""
172
 
173
- #: crayon_settings_wp.class.php:441
174
  #@ crayon-syntax-highlighter
175
  msgid "Top Margin"
176
  msgstr ""
177
 
178
- #: crayon_settings_wp.class.php:442
179
  #@ crayon-syntax-highlighter
180
  msgid "Bottom Margin"
181
  msgstr ""
182
 
183
- #: crayon_settings_wp.class.php:443
184
- #: crayon_settings_wp.class.php:448
185
  #@ crayon-syntax-highlighter
186
  msgid "Left Margin"
187
  msgstr ""
188
 
 
189
  #: crayon_settings_wp.class.php:444
190
- #: crayon_settings_wp.class.php:448
191
  #@ crayon-syntax-highlighter
192
  msgid "Right Margin"
193
  msgstr ""
194
 
195
- #: crayon_settings_wp.class.php:454
196
  #@ crayon-syntax-highlighter
197
  msgid "Horizontal Alignment"
198
  msgstr ""
199
 
200
- #: crayon_settings_wp.class.php:457
201
  #@ crayon-syntax-highlighter
202
  msgid "Allow floating elements to surround Crayon"
203
  msgstr ""
204
 
205
- #: crayon_settings_wp.class.php:462
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the Toolbar"
208
  msgstr ""
209
 
210
- #: crayon_settings_wp.class.php:465
211
  #@ crayon-syntax-highlighter
212
  msgid "Overlay the toolbar on code rather than push it down when possible"
213
  msgstr ""
214
 
215
- #: crayon_settings_wp.class.php:466
216
  #@ crayon-syntax-highlighter
217
  msgid "Toggle the toolbar on single click when it is overlayed"
218
  msgstr ""
219
 
220
- #: crayon_settings_wp.class.php:467
221
  #@ crayon-syntax-highlighter
222
  msgid "Delay hiding the toolbar on MouseOut"
223
  msgstr ""
224
 
225
- #: crayon_settings_wp.class.php:469
226
  #@ crayon-syntax-highlighter
227
  msgid "Display the title when provided"
228
  msgstr ""
229
 
230
- #: crayon_settings_wp.class.php:470
231
  #@ crayon-syntax-highlighter
232
  msgid "Display the language"
233
  msgstr ""
234
 
235
- #: crayon_settings_wp.class.php:475
236
  #@ crayon-syntax-highlighter
237
  msgid "Display striped code lines"
238
  msgstr ""
239
 
240
- #: crayon_settings_wp.class.php:476
241
  #@ crayon-syntax-highlighter
242
  msgid "Enable line marking for important lines"
243
  msgstr ""
244
 
245
- #: crayon_settings_wp.class.php:477
246
  #@ crayon-syntax-highlighter
247
  msgid "Display line numbers by default"
248
  msgstr ""
249
 
250
- #: crayon_settings_wp.class.php:478
251
  #@ crayon-syntax-highlighter
252
  msgid "Enable line number toggling"
253
  msgstr ""
254
 
255
- #: crayon_settings_wp.class.php:479
256
  #@ crayon-syntax-highlighter
257
  msgid "Start line numbers from"
258
  msgstr ""
259
 
260
- #: crayon_settings_wp.class.php:489
261
  #@ crayon-syntax-highlighter
262
  msgid "When no language is provided, use the fallback"
263
  msgstr ""
264
 
265
- #: crayon_settings_wp.class.php:502
266
  #@ crayon-syntax-highlighter
267
  msgid "Parsing was successful"
268
  msgstr ""
269
 
270
- #: crayon_settings_wp.class.php:502
271
  #@ crayon-syntax-highlighter
272
  msgid "Parsing was unsuccessful"
273
  msgstr ""
274
 
275
- #: crayon_settings_wp.class.php:508
276
  #, php-format
277
  #@ crayon-syntax-highlighter
278
  msgid "The selected language with id %s could not be loaded"
279
  msgstr ""
280
 
281
- #: crayon_settings_wp.class.php:512
282
  #@ crayon-syntax-highlighter
283
  msgid "Show Languages"
284
  msgstr ""
285
 
286
- #: crayon_settings_wp.class.php:533
287
  #@ crayon-syntax-highlighter
288
  msgid "Enable Live Preview"
289
  msgstr ""
290
 
291
- #: crayon_settings_wp.class.php:536
292
  #, php-format
293
  #@ crayon-syntax-highlighter
294
  msgid "The selected theme with id %s could not be loaded"
295
  msgstr ""
296
 
297
- #: crayon_settings_wp.class.php:550
298
  #@ crayon-syntax-highlighter
299
  msgid "Theme Default"
300
  msgstr ""
301
 
302
- #: crayon_settings_wp.class.php:554
303
  #@ crayon-syntax-highlighter
304
  msgid "Custom Font Size"
305
  msgstr ""
306
 
307
- #: crayon_settings_wp.class.php:559
308
  #, php-format
309
  #@ crayon-syntax-highlighter
310
  msgid "The selected font with id %s could not be loaded"
311
  msgstr ""
312
 
313
- #: crayon_settings_wp.class.php:564
314
  #@ crayon-syntax-highlighter
315
  msgid "Enable plain code view and display"
316
  msgstr ""
317
 
318
- #: crayon_settings_wp.class.php:567
319
  #@ crayon-syntax-highlighter
320
  msgid "Enable code copy/paste"
321
  msgstr ""
322
 
323
- #: crayon_settings_wp.class.php:569
324
  #@ crayon-syntax-highlighter
325
  msgid "Enable opening code in a window"
326
  msgstr ""
327
 
328
- #: crayon_settings_wp.class.php:570
329
  #@ crayon-syntax-highlighter
330
  msgid "Display scrollbars (when needed)"
331
  msgstr ""
332
 
333
- #: crayon_settings_wp.class.php:572
334
  #@ crayon-syntax-highlighter
335
  msgid "Tab size in spaces"
336
  msgstr ""
337
 
338
- #: crayon_settings_wp.class.php:574
339
  #@ crayon-syntax-highlighter
340
  msgid "Remove whitespace surrounding the shortcode content"
341
  msgstr ""
342
 
343
- #: crayon_settings_wp.class.php:579
344
  #@ crayon-syntax-highlighter
345
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
346
  msgstr ""
347
 
348
- #: crayon_settings_wp.class.php:586
349
  #@ crayon-syntax-highlighter
350
  msgid "Clear the cache used to store remote code requests"
351
  msgstr ""
352
 
353
- #: crayon_settings_wp.class.php:588
354
  #@ crayon-syntax-highlighter
355
  msgid "Clear Now"
356
  msgstr ""
357
 
358
- #: crayon_settings_wp.class.php:590
359
  #@ crayon-syntax-highlighter
360
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
361
  msgstr ""
362
 
363
- #: crayon_settings_wp.class.php:591
364
  #@ crayon-syntax-highlighter
365
  msgid "Disable animations"
366
  msgstr ""
367
 
368
- #: crayon_settings_wp.class.php:592
369
  #@ crayon-syntax-highlighter
370
  msgid "Disable runtime stats"
371
  msgstr ""
372
 
373
- #: crayon_settings_wp.class.php:599
374
  #@ crayon-syntax-highlighter
375
  msgid "Log errors for individual Crayons"
376
  msgstr ""
377
 
378
- #: crayon_settings_wp.class.php:600
379
  #@ crayon-syntax-highlighter
380
  msgid "Log system-wide errors"
381
  msgstr ""
382
 
383
- #: crayon_settings_wp.class.php:601
384
  #@ crayon-syntax-highlighter
385
  msgid "Display custom message for errors"
386
  msgstr ""
387
 
388
- #: crayon_settings_wp.class.php:613
389
  #@ crayon-syntax-highlighter
390
  msgid "Show Log"
391
  msgstr ""
392
 
393
- #: crayon_settings_wp.class.php:615
394
  #@ crayon-syntax-highlighter
395
  msgid "Clear Log"
396
  msgstr ""
397
 
398
- #: crayon_settings_wp.class.php:616
399
  #@ crayon-syntax-highlighter
400
  msgid "Email Admin"
401
  msgstr ""
402
 
403
- #: crayon_settings_wp.class.php:618
404
  #@ crayon-syntax-highlighter
405
  msgid "Email Developer"
406
  msgstr ""
407
 
408
- #: crayon_settings_wp.class.php:634
409
  #@ crayon-syntax-highlighter
410
  msgid "Version"
411
  msgstr ""
412
 
413
- #: crayon_settings_wp.class.php:636
414
  #@ crayon-syntax-highlighter
415
  msgid "Developer"
416
  msgstr ""
417
 
418
- #: crayon_settings_wp.class.php:660
419
  #@ crayon-syntax-highlighter
420
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
421
  msgstr ""
@@ -426,22 +426,22 @@ msgstr ""
426
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
427
  msgstr ""
428
 
429
- #: crayon_settings_wp.class.php:415
430
  #@ crayon-syntax-highlighter
431
  msgid "Crayon Help"
432
  msgstr ""
433
 
434
- #: crayon_settings_wp.class.php:589
435
  #@ crayon-syntax-highlighter
436
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
437
  msgstr ""
438
 
439
- #: crayon_settings_wp.class.php:589
440
  #@ crayon-syntax-highlighter
441
  msgid "Why?"
442
  msgstr ""
443
 
444
- #: crayon_settings_wp.class.php:501
445
  #, php-format
446
  #@ crayon-syntax-highlighter
447
  msgid "%d language has been detected."
@@ -450,28 +450,60 @@ msgstr[0] ""
450
  msgstr[1] ""
451
  msgstr[2] ""
452
 
453
- #: crayon_settings_wp.class.php:582
454
  #@ crayon-syntax-highlighter
455
  msgid "Followed by your relative URL."
456
  msgstr ""
457
 
458
- #: crayon_settings_wp.class.php:620
459
  #@ crayon-syntax-highlighter
460
  msgid "The log is currently empty."
461
  msgstr ""
462
 
463
- #: crayon_settings_wp.class.php:622
464
  #@ crayon-syntax-highlighter
465
  msgid "The log file exists and is writable."
466
  msgstr ""
467
 
468
- #: crayon_settings_wp.class.php:622
469
  #@ crayon-syntax-highlighter
470
  msgid "The log file exists and is not writable."
471
  msgstr ""
472
 
473
- #: crayon_settings_wp.class.php:624
474
  #@ crayon-syntax-highlighter
475
  msgid "The log file does not exist and is not writable."
476
  msgstr ""
477
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:95
23
  #@ crayon-syntax-highlighter
24
  msgid "Hourly"
25
  msgstr ""
26
 
27
+ #: crayon_settings.class.php:95
28
  #@ crayon-syntax-highlighter
29
  msgid "Daily"
30
  msgstr ""
31
 
32
+ #: crayon_settings.class.php:96
33
  #@ crayon-syntax-highlighter
34
  msgid "Weekly"
35
  msgstr ""
36
 
37
+ #: crayon_settings.class.php:96
38
  #@ crayon-syntax-highlighter
39
  msgid "Monthly"
40
  msgstr ""
41
 
42
+ #: crayon_settings.class.php:97
43
  #@ crayon-syntax-highlighter
44
  msgid "Immediately"
45
  msgstr ""
46
 
47
+ #: crayon_settings.class.php:121
48
+ #: crayon_settings.class.php:125
49
  #@ crayon-syntax-highlighter
50
  msgid "Max"
51
  msgstr ""
52
 
53
+ #: crayon_settings.class.php:121
54
+ #: crayon_settings.class.php:125
55
  #@ crayon-syntax-highlighter
56
  msgid "Min"
57
  msgstr ""
58
 
59
+ #: crayon_settings.class.php:121
60
+ #: crayon_settings.class.php:125
61
  #@ crayon-syntax-highlighter
62
  msgid "Static"
63
  msgstr ""
64
 
65
+ #: crayon_settings.class.php:123
66
+ #: crayon_settings.class.php:127
67
  #@ crayon-syntax-highlighter
68
  msgid "Pixels"
69
  msgstr ""
70
 
71
+ #: crayon_settings.class.php:123
72
+ #: crayon_settings.class.php:127
73
  #@ crayon-syntax-highlighter
74
  msgid "Percent"
75
  msgstr ""
76
 
77
+ #: crayon_settings.class.php:136
78
  #@ crayon-syntax-highlighter
79
  msgid "None"
80
  msgstr ""
81
 
82
+ #: crayon_settings.class.php:136
83
  #@ crayon-syntax-highlighter
84
  msgid "Left"
85
  msgstr ""
86
 
87
+ #: crayon_settings.class.php:136
88
  #@ crayon-syntax-highlighter
89
  msgid "Center"
90
  msgstr ""
91
 
92
+ #: crayon_settings.class.php:136
93
  #@ crayon-syntax-highlighter
94
  msgid "Right"
95
  msgstr ""
96
 
97
+ #: crayon_settings.class.php:138
98
+ #: crayon_settings.class.php:155
99
+ #: crayon_settings.class.php:158
100
  #@ crayon-syntax-highlighter
101
  msgid "On MouseOver"
102
  msgstr ""
103
 
104
+ #: crayon_settings.class.php:138
105
+ #: crayon_settings.class.php:144
106
+ #: crayon_settings.class.php:155
107
  #@ crayon-syntax-highlighter
108
  msgid "Always"
109
  msgstr ""
110
 
111
+ #: crayon_settings.class.php:138
112
+ #: crayon_settings.class.php:144
113
  #@ crayon-syntax-highlighter
114
  msgid "Never"
115
  msgstr ""
116
 
117
+ #: crayon_settings.class.php:144
118
  #@ crayon-syntax-highlighter
119
  msgid "When Found"
120
  msgstr ""
121
 
122
+ #: crayon_settings.class.php:158
123
  #@ crayon-syntax-highlighter
124
  msgid "On Double Click"
125
  msgstr ""
126
 
127
+ #: crayon_settings.class.php:158
128
  #@ crayon-syntax-highlighter
129
  msgid "On Single Click"
130
  msgstr ""
131
 
132
+ #: crayon_settings.class.php:158
133
  #@ crayon-syntax-highlighter
134
  msgid "Only Using Toggle"
135
  msgstr ""
136
 
137
+ #: crayon_settings.class.php:166
138
  #@ crayon-syntax-highlighter
139
  msgid "An error has occurred. Please try again later."
140
  msgstr ""
141
 
142
+ #: crayon_settings_wp.class.php:39
143
+ #: crayon_settings_wp.class.php:77
144
  #@ crayon-syntax-highlighter
145
  msgid "Settings"
146
  msgstr ""
147
 
148
+ #: crayon_settings_wp.class.php:70
149
  #@ crayon-syntax-highlighter
150
  msgid "You do not have sufficient permissions to access this page."
151
  msgstr ""
152
 
153
+ #: crayon_settings_wp.class.php:89
154
  #@ crayon-syntax-highlighter
155
  msgid "Save Changes"
156
  msgstr ""
157
 
158
+ #: crayon_settings_wp.class.php:95
159
  #@ crayon-syntax-highlighter
160
  msgid "Reset Settings"
161
  msgstr ""
162
 
163
+ #: crayon_settings_wp.class.php:425
164
  #@ crayon-syntax-highlighter
165
  msgid "Height"
166
  msgstr ""
167
 
168
+ #: crayon_settings_wp.class.php:431
169
  #@ crayon-syntax-highlighter
170
  msgid "Width"
171
  msgstr ""
172
 
173
+ #: crayon_settings_wp.class.php:437
174
  #@ crayon-syntax-highlighter
175
  msgid "Top Margin"
176
  msgstr ""
177
 
178
+ #: crayon_settings_wp.class.php:438
179
  #@ crayon-syntax-highlighter
180
  msgid "Bottom Margin"
181
  msgstr ""
182
 
183
+ #: crayon_settings_wp.class.php:439
184
+ #: crayon_settings_wp.class.php:444
185
  #@ crayon-syntax-highlighter
186
  msgid "Left Margin"
187
  msgstr ""
188
 
189
+ #: crayon_settings_wp.class.php:440
190
  #: crayon_settings_wp.class.php:444
 
191
  #@ crayon-syntax-highlighter
192
  msgid "Right Margin"
193
  msgstr ""
194
 
195
+ #: crayon_settings_wp.class.php:450
196
  #@ crayon-syntax-highlighter
197
  msgid "Horizontal Alignment"
198
  msgstr ""
199
 
200
+ #: crayon_settings_wp.class.php:453
201
  #@ crayon-syntax-highlighter
202
  msgid "Allow floating elements to surround Crayon"
203
  msgstr ""
204
 
205
+ #: crayon_settings_wp.class.php:458
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the Toolbar"
208
  msgstr ""
209
 
210
+ #: crayon_settings_wp.class.php:461
211
  #@ crayon-syntax-highlighter
212
  msgid "Overlay the toolbar on code rather than push it down when possible"
213
  msgstr ""
214
 
215
+ #: crayon_settings_wp.class.php:462
216
  #@ crayon-syntax-highlighter
217
  msgid "Toggle the toolbar on single click when it is overlayed"
218
  msgstr ""
219
 
220
+ #: crayon_settings_wp.class.php:463
221
  #@ crayon-syntax-highlighter
222
  msgid "Delay hiding the toolbar on MouseOut"
223
  msgstr ""
224
 
225
+ #: crayon_settings_wp.class.php:465
226
  #@ crayon-syntax-highlighter
227
  msgid "Display the title when provided"
228
  msgstr ""
229
 
230
+ #: crayon_settings_wp.class.php:466
231
  #@ crayon-syntax-highlighter
232
  msgid "Display the language"
233
  msgstr ""
234
 
235
+ #: crayon_settings_wp.class.php:471
236
  #@ crayon-syntax-highlighter
237
  msgid "Display striped code lines"
238
  msgstr ""
239
 
240
+ #: crayon_settings_wp.class.php:472
241
  #@ crayon-syntax-highlighter
242
  msgid "Enable line marking for important lines"
243
  msgstr ""
244
 
245
+ #: crayon_settings_wp.class.php:473
246
  #@ crayon-syntax-highlighter
247
  msgid "Display line numbers by default"
248
  msgstr ""
249
 
250
+ #: crayon_settings_wp.class.php:474
251
  #@ crayon-syntax-highlighter
252
  msgid "Enable line number toggling"
253
  msgstr ""
254
 
255
+ #: crayon_settings_wp.class.php:475
256
  #@ crayon-syntax-highlighter
257
  msgid "Start line numbers from"
258
  msgstr ""
259
 
260
+ #: crayon_settings_wp.class.php:485
261
  #@ crayon-syntax-highlighter
262
  msgid "When no language is provided, use the fallback"
263
  msgstr ""
264
 
265
+ #: crayon_settings_wp.class.php:498
266
  #@ crayon-syntax-highlighter
267
  msgid "Parsing was successful"
268
  msgstr ""
269
 
270
+ #: crayon_settings_wp.class.php:498
271
  #@ crayon-syntax-highlighter
272
  msgid "Parsing was unsuccessful"
273
  msgstr ""
274
 
275
+ #: crayon_settings_wp.class.php:504
276
  #, php-format
277
  #@ crayon-syntax-highlighter
278
  msgid "The selected language with id %s could not be loaded"
279
  msgstr ""
280
 
281
+ #: crayon_settings_wp.class.php:508
282
  #@ crayon-syntax-highlighter
283
  msgid "Show Languages"
284
  msgstr ""
285
 
286
+ #: crayon_settings_wp.class.php:529
287
  #@ crayon-syntax-highlighter
288
  msgid "Enable Live Preview"
289
  msgstr ""
290
 
291
+ #: crayon_settings_wp.class.php:532
292
  #, php-format
293
  #@ crayon-syntax-highlighter
294
  msgid "The selected theme with id %s could not be loaded"
295
  msgstr ""
296
 
297
+ #: crayon_settings_wp.class.php:546
298
  #@ crayon-syntax-highlighter
299
  msgid "Theme Default"
300
  msgstr ""
301
 
302
+ #: crayon_settings_wp.class.php:550
303
  #@ crayon-syntax-highlighter
304
  msgid "Custom Font Size"
305
  msgstr ""
306
 
307
+ #: crayon_settings_wp.class.php:555
308
  #, php-format
309
  #@ crayon-syntax-highlighter
310
  msgid "The selected font with id %s could not be loaded"
311
  msgstr ""
312
 
313
+ #: crayon_settings_wp.class.php:560
314
  #@ crayon-syntax-highlighter
315
  msgid "Enable plain code view and display"
316
  msgstr ""
317
 
318
+ #: crayon_settings_wp.class.php:563
319
  #@ crayon-syntax-highlighter
320
  msgid "Enable code copy/paste"
321
  msgstr ""
322
 
323
+ #: crayon_settings_wp.class.php:565
324
  #@ crayon-syntax-highlighter
325
  msgid "Enable opening code in a window"
326
  msgstr ""
327
 
328
+ #: crayon_settings_wp.class.php:566
329
  #@ crayon-syntax-highlighter
330
  msgid "Display scrollbars (when needed)"
331
  msgstr ""
332
 
333
+ #: crayon_settings_wp.class.php:568
334
  #@ crayon-syntax-highlighter
335
  msgid "Tab size in spaces"
336
  msgstr ""
337
 
338
+ #: crayon_settings_wp.class.php:570
339
  #@ crayon-syntax-highlighter
340
  msgid "Remove whitespace surrounding the shortcode content"
341
  msgstr ""
342
 
343
+ #: crayon_settings_wp.class.php:580
344
  #@ crayon-syntax-highlighter
345
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
346
  msgstr ""
347
 
348
+ #: crayon_settings_wp.class.php:587
349
  #@ crayon-syntax-highlighter
350
  msgid "Clear the cache used to store remote code requests"
351
  msgstr ""
352
 
353
+ #: crayon_settings_wp.class.php:589
354
  #@ crayon-syntax-highlighter
355
  msgid "Clear Now"
356
  msgstr ""
357
 
358
+ #: crayon_settings_wp.class.php:591
359
  #@ crayon-syntax-highlighter
360
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
361
  msgstr ""
362
 
363
+ #: crayon_settings_wp.class.php:592
364
  #@ crayon-syntax-highlighter
365
  msgid "Disable animations"
366
  msgstr ""
367
 
368
+ #: crayon_settings_wp.class.php:593
369
  #@ crayon-syntax-highlighter
370
  msgid "Disable runtime stats"
371
  msgstr ""
372
 
373
+ #: crayon_settings_wp.class.php:600
374
  #@ crayon-syntax-highlighter
375
  msgid "Log errors for individual Crayons"
376
  msgstr ""
377
 
378
+ #: crayon_settings_wp.class.php:601
379
  #@ crayon-syntax-highlighter
380
  msgid "Log system-wide errors"
381
  msgstr ""
382
 
383
+ #: crayon_settings_wp.class.php:602
384
  #@ crayon-syntax-highlighter
385
  msgid "Display custom message for errors"
386
  msgstr ""
387
 
388
+ #: crayon_settings_wp.class.php:614
389
  #@ crayon-syntax-highlighter
390
  msgid "Show Log"
391
  msgstr ""
392
 
393
+ #: crayon_settings_wp.class.php:616
394
  #@ crayon-syntax-highlighter
395
  msgid "Clear Log"
396
  msgstr ""
397
 
398
+ #: crayon_settings_wp.class.php:617
399
  #@ crayon-syntax-highlighter
400
  msgid "Email Admin"
401
  msgstr ""
402
 
403
+ #: crayon_settings_wp.class.php:619
404
  #@ crayon-syntax-highlighter
405
  msgid "Email Developer"
406
  msgstr ""
407
 
408
+ #: crayon_settings_wp.class.php:635
409
  #@ crayon-syntax-highlighter
410
  msgid "Version"
411
  msgstr ""
412
 
413
+ #: crayon_settings_wp.class.php:637
414
  #@ crayon-syntax-highlighter
415
  msgid "Developer"
416
  msgstr ""
417
 
418
+ #: crayon_settings_wp.class.php:661
419
  #@ crayon-syntax-highlighter
420
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
421
  msgstr ""
426
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
427
  msgstr ""
428
 
429
+ #: crayon_settings_wp.class.php:411
430
  #@ crayon-syntax-highlighter
431
  msgid "Crayon Help"
432
  msgstr ""
433
 
434
+ #: crayon_settings_wp.class.php:590
435
  #@ crayon-syntax-highlighter
436
  msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
437
  msgstr ""
438
 
439
+ #: crayon_settings_wp.class.php:590
440
  #@ crayon-syntax-highlighter
441
  msgid "Why?"
442
  msgstr ""
443
 
444
+ #: crayon_settings_wp.class.php:497
445
  #, php-format
446
  #@ crayon-syntax-highlighter
447
  msgid "%d language has been detected."
450
  msgstr[1] ""
451
  msgstr[2] ""
452
 
453
+ #: crayon_settings_wp.class.php:583
454
  #@ crayon-syntax-highlighter
455
  msgid "Followed by your relative URL."
456
  msgstr ""
457
 
458
+ #: crayon_settings_wp.class.php:621
459
  #@ crayon-syntax-highlighter
460
  msgid "The log is currently empty."
461
  msgstr ""
462
 
463
+ #: crayon_settings_wp.class.php:623
464
  #@ crayon-syntax-highlighter
465
  msgid "The log file exists and is writable."
466
  msgstr ""
467
 
468
+ #: crayon_settings_wp.class.php:623
469
  #@ crayon-syntax-highlighter
470
  msgid "The log file exists and is not writable."
471
  msgstr ""
472
 
473
+ #: crayon_settings_wp.class.php:625
474
  #@ crayon-syntax-highlighter
475
  msgid "The log file does not exist and is not writable."
476
  msgstr ""
477
 
478
+ #: crayon_settings_wp.class.php:571
479
+ #@ crayon-syntax-highlighter
480
+ msgid "Capture &lt;pre&gt; tags as Crayons"
481
+ msgstr ""
482
+
483
+ #: crayon_settings_wp.class.php:572
484
+ #: crayon_settings_wp.class.php:573
485
+ #: crayon_settings_wp.class.php:574
486
+ #@ crayon-syntax-highlighter
487
+ msgid "Learn More"
488
+ msgstr ""
489
+
490
+ #: crayon_settings_wp.class.php:575
491
+ #@ crayon-syntax-highlighter
492
+ msgid "Show Mixed Language Icon (+)"
493
+ msgstr ""
494
+
495
+ #: crayon_settings_wp.class.php:574
496
+ #@ crayon-syntax-highlighter
497
+ msgid "Allow Mixed Language Highlighting with delimiters and tags."
498
+ msgstr ""
499
+
500
+ #: crayon_settings_wp.class.php:572
501
+ #@ crayon-syntax-highlighter
502
+ msgid "Capture Mini Tags like [php][/php] as Crayons."
503
+ msgstr ""
504
+
505
+ #: crayon_settings_wp.class.php:573
506
+ #@ crayon-syntax-highlighter
507
+ msgid "Enable [plain][/plain] tag."
508
+ msgstr ""
509
+
util/crayon_util.class.php CHANGED
@@ -27,9 +27,9 @@ class CrayonUtil {
27
  $escape_regex = strpos($opts, 'r') !== FALSE;
28
  $clean_commments = strpos($opts, 'c') !== FALSE;
29
  $return_string = strpos($opts, 's') !== FALSE;
30
- $escape_hash = strpos($opts, 'h') !== FALSE;
31
  } else {
32
- $lowercase = $whitespace = $escape_regex = $clean_commments = $return_string = $escape_hash = FALSE;
33
  }
34
  // Remove comments
35
  if ($clean_commments) {
@@ -54,10 +54,10 @@ class CrayonUtil {
54
  if ($escape_regex) {
55
  for ($i = 0; $i < count($lines); $i++) {
56
  $lines[$i] = self::esc_regex($lines[$i]);
57
- if ($escape_hash || true) {
58
  // If we have used \#, then we don't want it to become \\#
59
  $lines[$i] = preg_replace('|\\\\\\\\#|', '\#', $lines[$i]);
60
- }
61
  }
62
  }
63
 
@@ -142,11 +142,15 @@ class CrayonUtil {
142
  // Sets a variable to a string if valid
143
  public static function str(&$var, $str, $escape = TRUE) {
144
  if (is_string($str)) {
145
- $var = ($escape == TRUE ? htmlentities($str) : $str);
146
  return TRUE;
147
  }
148
  return FALSE;
149
  }
 
 
 
 
150
 
151
  // Sets a variable to an int if valid
152
  public static function num(&$var, $num) {
@@ -213,7 +217,7 @@ class CrayonUtil {
213
  return /*htmlspecialchars(*/preg_quote($regex)/* , ENT_NOQUOTES)*/;
214
  }
215
 
216
- // Escapes regex characters as literals
217
  public static function esc_hash($regex) {
218
  if (is_string($regex)) {
219
  return preg_replace('|(?<!\\\\)#|', '\#', $regex);
27
  $escape_regex = strpos($opts, 'r') !== FALSE;
28
  $clean_commments = strpos($opts, 'c') !== FALSE;
29
  $return_string = strpos($opts, 's') !== FALSE;
30
+ // $escape_hash = strpos($opts, 'h') !== FALSE;
31
  } else {
32
+ $lowercase = $whitespace = $escape_regex = $clean_commments = $return_string = /*$escape_hash =*/ FALSE;
33
  }
34
  // Remove comments
35
  if ($clean_commments) {
54
  if ($escape_regex) {
55
  for ($i = 0; $i < count($lines); $i++) {
56
  $lines[$i] = self::esc_regex($lines[$i]);
57
+ // if ($escape_hash || true) {
58
  // If we have used \#, then we don't want it to become \\#
59
  $lines[$i] = preg_replace('|\\\\\\\\#|', '\#', $lines[$i]);
60
+ // }
61
  }
62
  }
63
 
142
  // Sets a variable to a string if valid
143
  public static function str(&$var, $str, $escape = TRUE) {
144
  if (is_string($str)) {
145
+ $var = ($escape == TRUE ? self::htmlentities($str) : $str);
146
  return TRUE;
147
  }
148
  return FALSE;
149
  }
150
+
151
+ public static function htmlentities($str) {
152
+ return htmlentities($str, ENT_COMPAT, 'UTF-8');
153
+ }
154
 
155
  // Sets a variable to an int if valid
156
  public static function num(&$var, $num) {
217
  return /*htmlspecialchars(*/preg_quote($regex)/* , ENT_NOQUOTES)*/;
218
  }
219
 
220
+ // Escapes hash character as literals
221
  public static function esc_hash($regex) {
222
  if (is_string($regex)) {
223
  return preg_replace('|(?<!\\\\)#|', '\#', $regex);
util/help.htm CHANGED
@@ -29,7 +29,15 @@
29
  <td width="30%"><code>mark="5-10,12"</code></td>
30
  </tr>
31
  </table>
32
- <p>You can also use <code>&lt;pre attributes&gt;...&lt;/pre&gt;</code> so that the code remains visible even if you disable Crayon. Make sure to edit all your code in HTML mode, however, not Visual.</p>
 
 
 
 
 
 
 
 
33
  <p>Crayon is versatile so you can override global settings for individual Crayons with attributes.</p>
34
  <table width="100%" border="0" cellpadding="0" cellspacing="0" class="crayon-table crayon-table-light">
35
  <tr class="crayon-table-header">
@@ -202,10 +210,14 @@
202
  <td>string</td>
203
  <td> The error message to show for errors</td>
204
  </tr>
 
 
 
 
 
205
  </table>
206
- <p>Here's a simple example of attributes:</p><p><code>
207
- [crayon lang="html" font-size="20" mark="1" width="200px" toolbar=&quot;false&quot;] &lt;strong&gt;This is great!&lt;/strong&gt; [/crayon] </code></p>
208
- <p>If you want to prevent the <code>[crayon]</code> shortcode from turning into a Crayon, use: <code>$[crayon]...[/crayon]$</code></p>
209
  <p><strong>Themes</strong></p>
210
  <p>Crayon comes with built-in Themes to style your code. You can learn how to create your own and download more from <a href="http://ak.net84.net/?go=crayonthemes" target="_blank">here</a>. Themes are structured <code>/themes/theme-name/theme-name.css</code>. If you know CSS, take a look at <code>/themes/default/default.css</code> to get an idea of how they work and how you can change/create them.</p>
211
  <p><strong>Languages</strong></p>
29
  <td width="30%"><code>mark="5-10,12"</code></td>
30
  </tr>
31
  </table>
32
+ <p>You can also use <code>&lt;pre attributes&gt;...&lt;/pre&gt;</code> so that the code can be reused by other plugins even if you disable Crayon. Make sure to edit all your code in HTML mode, however, not Visual.</p>
33
+ <p>You can even use Mini Tags like:</p>
34
+ <p align="center"><code>[html]&lt;strong&gt;some code&lt;/strong&gt;[/html]</code><br />
35
+ <code>[php]echo "whassup?";[/php]</code></p>
36
+ <p>The short name in brackets you use are called IDs and Aliases. For example, <code>xml</code> and <code>hxml</code> are Aliases to the language ID <code>xhtml</code>. The IDs and their Aliases are under:</p><pre style="text-align:center;">Settings &gt; Crayon &gt; Show Languages
37
+ </pre>
38
+ <p>Perhaps best of all, you can mix code together like on a real HTML page, by having <code>&lt;script&gt;</code>, <code>&lt;style&gt;</code> and <code>&lt;?php...?&gt;</code> tags all in a single Crayon. Find out more <a href="http://bit.ly/ukwts2" target="_blank">here</a>.</p>
39
+ <p>You can also display a quick unhighlighted snapshot of code using the <code>[plain]...[/plain]</code> tag. The code will look like it does in the HTML view of the post editor.</p>
40
+ <p><strong>Settings</strong></p>
41
  <p>Crayon is versatile so you can override global settings for individual Crayons with attributes.</p>
42
  <table width="100%" border="0" cellpadding="0" cellspacing="0" class="crayon-table crayon-table-light">
43
  <tr class="crayon-table-header">
210
  <td>string</td>
211
  <td> The error message to show for errors</td>
212
  </tr>
213
+ <tr>
214
+ <td> mixed</td>
215
+ <td>true/false</td>
216
+ <td> Allow mixed languages using delimiters and tags</td>
217
+ </tr>
218
  </table>
219
+ <p>Here's a simple example of attributes:</p><p><code>[crayon lang="html" font-size="20" mark="1" width="200px" toolbar=&quot;false&quot;] &lt;strong&gt;This is great!&lt;/strong&gt; [/crayon] </code></p>
220
+ <p>If you want to prevent the <code>[crayon]</code> shortcode from turning into a Crayon, use: <code>$[crayon]...[/crayon]</code>. If you want to prevent a <code>[/crayon]</code> from ending a Crayon (say if you wanted to have the Crayon shortcode appear in a Crayon itself), then use <code>$[crayon]...[/crayon]$</code>. The same applies to <code>&lt;pre&gt;</code> and Mini Tags.</p>
 
221
  <p><strong>Themes</strong></p>
222
  <p>Crayon comes with built-in Themes to style your code. You can learn how to create your own and download more from <a href="http://ak.net84.net/?go=crayonthemes" target="_blank">here</a>. Themes are structured <code>/themes/theme-name/theme-name.css</code>. If you know CSS, take a look at <code>/themes/default/default.css</code> to get an idea of how they work and how you can change/create them.</p>
223
  <p><strong>Languages</strong></p>