Crayon Syntax Highlighter - Version 1.6.3

Version Description

  • For those still having issues with CSS and JavaScript not laoding, I have added a new setting in Misc. that will allow you to either attempt to load these resources when needed if you have no issues with your theme or to force them to load on each page.
  • Please see: http://ak.net84.net/php/loading-css-and-javascript-only-when-required-in-a-wordpress-plugin/
Download this release

Release Info

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

Code changes from version 1.6.2 to 1.6.3

crayon_formatter.class.php CHANGED
@@ -238,15 +238,11 @@ class CrayonFormatter {
238
  $theme_id_dashed = CrayonUtil::clean_css_name($theme_id);
239
 
240
  // Only load css once for each theme
241
- //if (!empty($theme_id) && $theme != NULL /*&& !$theme->used()*/) {
242
- /* // Record usage
243
  $theme->used(TRUE);
244
- if ($print) {
245
- // Add style
246
- $url = CrayonGlobalSettings::plugin_path() . CrayonUtil::pathf(CRAYON_THEME_DIR) . $theme_id . '/' . $theme_id . '.css?ver' . $CRAYON_VERSION;
247
- $output .= '<link rel="stylesheet" type="text/css" href="' . $url . '" />' . CRAYON_NL;
248
- }
249
- }*/
250
 
251
  // Load font css if not default
252
  $font_id = $hl->setting_val(CrayonSettings::FONT);
@@ -259,13 +255,21 @@ class CrayonFormatter {
259
  }
260
 
261
  // Determine font size
 
262
  if ($hl->setting_val(CrayonSettings::FONT_SIZE_ENABLE)) {
263
- $font_size = $hl->setting_val(CrayonSettings::FONT_SIZE);
264
- $font_height = ($font_size + 4) . 'px;';
265
- $toolbar_height = ($font_size + 8) . 'px;';
266
- $font_style = "#$uid * { font-size: " . $font_size . "px; line-height: $font_height}\n\t";
267
- $font_style .= "#$uid .crayon-toolbar, #$uid .crayon-toolbar div { height: $toolbar_height line-height: $toolbar_height }\n\t";
268
- $font_style .= "#$uid .crayon-num, #$uid .crayon-line, #$uid .crayon-toolbar a.crayon-button { height: $font_height }";
 
 
 
 
 
 
 
269
  }
270
 
271
  // Determine scrollbar visibility
@@ -338,10 +342,14 @@ class CrayonFormatter {
338
  // Determine if operating system is mac
339
  $crayon_os = CrayonUtil::is_mac() ? 'mac' : 'pc';
340
 
 
341
  if ($hl->setting_val(CrayonSettings::FONT_SIZE_ENABLE)) {
342
  // Produce style for individual crayon
343
  $output .= '<style type="text/css">'.$font_style.'</style>';
344
- }
 
 
 
345
 
346
  // Produce output
347
  $output .= '
238
  $theme_id_dashed = CrayonUtil::clean_css_name($theme_id);
239
 
240
  // Only load css once for each theme
241
+ if (!empty($theme_id) && $theme != NULL && !$theme->used()) {
242
+ // Record usage
243
  $theme->used(TRUE);
244
+ $output .= CrayonResources::themes()->get_theme_as_css($theme);
245
+ }
 
 
 
 
246
 
247
  // Load font css if not default
248
  $font_id = $hl->setting_val(CrayonSettings::FONT);
255
  }
256
 
257
  // Determine font size
258
+ // TODO improve logic
259
  if ($hl->setting_val(CrayonSettings::FONT_SIZE_ENABLE)) {
260
+ $font_size = $hl->setting_val(CrayonSettings::FONT_SIZE) . 'px !important;';
261
+ $font_height = ($font_size + 4) . 'px !important;';
262
+ $toolbar_height = ($font_size + 8) . 'px !important;';
263
+ $font_style .= "#$uid * { font-size: $font_size line-height: $font_height}";
264
+ $font_style .= "#$uid .crayon-toolbar, #$uid .crayon-toolbar div { height: $toolbar_height line-height: $toolbar_height }\n";
265
+ $font_style .= "#$uid .crayon-num, #$uid .crayon-line, #$uid .crayon-toolbar a.crayon-button { height: $font_height }\n";
266
+ } else {
267
+ if (($font_size = CrayonGlobalSettings::get(CrayonSettings::FONT_SIZE)) !== FALSE) {
268
+ $font_size = $font_size->def() . 'px !important;';
269
+ $font_height = ($font_size + 4) . 'px !important;';
270
+ // Correct font CSS for WP 3.3
271
+ $font_style .= "#$uid .crayon-plain { font-size: $font_size line-height: $font_height}";
272
+ }
273
  }
274
 
275
  // Determine scrollbar visibility
342
  // Determine if operating system is mac
343
  $crayon_os = CrayonUtil::is_mac() ? 'mac' : 'pc';
344
 
345
+ /*
346
  if ($hl->setting_val(CrayonSettings::FONT_SIZE_ENABLE)) {
347
  // Produce style for individual crayon
348
  $output .= '<style type="text/css">'.$font_style.'</style>';
349
+ }*/
350
+
351
+ // Produce style for individual crayon
352
+ $output .= '<style type="text/css">'.$font_style.'</style>';
353
 
354
  // Produce output
355
  $output .= '
crayon_settings.class.php CHANGED
@@ -67,6 +67,7 @@ class CrayonSettings {
67
  const ERROR_MSG = 'error-msg';
68
  const HIDE_HELP = 'hide-help';
69
  const CACHE = 'cache';
 
70
 
71
  private static $cache_array;
72
 
@@ -160,6 +161,7 @@ class CrayonSettings {
160
  new CrayonSetting(self::ERROR_MSG, crayon__('An error has occurred. Please try again later.')),
161
  new CrayonSetting(self::HIDE_HELP, FALSE),
162
  new CrayonSetting(self::CACHE, array_keys(self::$cache_array), 1),
 
163
  );
164
 
165
  $this->set($settings);
67
  const ERROR_MSG = 'error-msg';
68
  const HIDE_HELP = 'hide-help';
69
  const CACHE = 'cache';
70
+ const EFFICIENT_ENQUEUE = 'efficient-enqueue';
71
 
72
  private static $cache_array;
73
 
161
  new CrayonSetting(self::ERROR_MSG, crayon__('An error has occurred. Please try again later.')),
162
  new CrayonSetting(self::HIDE_HELP, FALSE),
163
  new CrayonSetting(self::CACHE, array_keys(self::$cache_array), 1),
164
+ new CrayonSetting(self::EFFICIENT_ENQUEUE, FALSE),
165
  );
166
 
167
  $this->set($settings);
crayon_settings_wp.class.php CHANGED
@@ -586,6 +586,7 @@ class CrayonSettingsWP {
586
  echo crayon__('Clear the cache used to store remote code requests'),': ';
587
  self::dropdown(CrayonSettings::CACHE, false);
588
  echo '<input type="submit" id="crayon-cache-clear" name="crayon-cache-clear" class="button-secondary" value="', crayon__('Clear Now'), '" /><br/>';
 
589
  self::checkbox(array(CrayonSettings::TOUCHSCREEN, crayon__('Disable mouse gestures for touchscreen devices (eg. MouseOver)')));
590
  self::checkbox(array(CrayonSettings::DISABLE_ANIM, crayon__('Disable animations')));
591
  self::checkbox(array(CrayonSettings::DISABLE_RUNTIME, crayon__('Disable runtime stats')));
586
  echo crayon__('Clear the cache used to store remote code requests'),': ';
587
  self::dropdown(CrayonSettings::CACHE, false);
588
  echo '<input type="submit" id="crayon-cache-clear" name="crayon-cache-clear" class="button-secondary" value="', crayon__('Clear Now'), '" /><br/>';
589
+ self::checkbox(array(CrayonSettings::EFFICIENT_ENQUEUE, crayon__('Attempt to load Crayon\'s CSS and JavaScript only when needed').'. <a href="http://ak.net84.net/?p=660" target="_blank">'.crayon__('Why?').'</a>'));
590
  self::checkbox(array(CrayonSettings::TOUCHSCREEN, crayon__('Disable mouse gestures for touchscreen devices (eg. MouseOver)')));
591
  self::checkbox(array(CrayonSettings::DISABLE_ANIM, crayon__('Disable animations')));
592
  self::checkbox(array(CrayonSettings::DISABLE_RUNTIME, crayon__('Disable runtime stats')));
crayon_wp.class.php CHANGED
@@ -3,7 +3,7 @@
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.2
7
  Author: Aram Kocharyan
8
  Author URI: http://ak.net84.net/
9
  Text Domain: crayon-syntax-highlighter
@@ -40,16 +40,20 @@ class CrayonWP {
40
  // Whether we are displaying an excerpt
41
  private static $is_excerpt = FALSE;
42
  // Whether we have added styles and scripts
43
- private static $included = FALSE;
 
 
44
  // Used to keep Crayon IDs
45
  private static $next_id = 0;
46
 
47
  // Used to detect the shortcode
48
  const REGEX_CLOSED = '(?:\[[\t ]*crayon(?:-(\w+))?\b([^\]]*)/[\t ]*\])'; // [crayon atts="" /]
49
- const REGEX_TAG = '(?:\[[\t ]*crayon(?:-(\w+))?\b([^\]]*)\]\r?\n?(.*?)\r?\n?\[[\t ]*/[\t ]*crayon\b[^\]]*\])'; // [crayon atts="" /] ... [/crayon]
50
 
51
  const REGEX_CLOSED_NO_CAPTURE = '(?:\[[\t ]*crayon\b[^\]]*/[\t ]*\])';
52
- const REGEX_TAG_NO_CAPTURE = '(?:\[[\t ]*crayon\b[^\]]*\]\r?\n?.*?\r?\n?\[[\t ]*/[\t ]*crayon\b[^\]]*\])';
 
 
53
 
54
  // Methods ================================================================
55
 
@@ -60,7 +64,7 @@ class CrayonWP {
60
  }
61
 
62
  public static function regex_with_id($id) {
63
- return '#(?<!\$)(?:(?:\[[\t ]*crayon-'.$id.'\b[^\]]*/[\t ]*\])|(?:\[[\t ]*crayon-'.$id.'\b[^\]]*\]\r?\n?.*?\r?\n?\[[\t ]*/[\t ]*crayon\b[^\]]*\]))(?!\$)#s';
64
  }
65
 
66
  public static function regex_no_capture() {
@@ -139,20 +143,16 @@ class CrayonWP {
139
  }
140
  return $crayon;
141
  }
142
-
143
  /* Search for Crayons in posts and queue them for creation */
144
  public static function the_posts($posts) {
145
- if (empty($posts)) {
146
- return $posts;
147
- }
148
-
149
  // Whether to enqueue syles/scripts
150
  $enqueue = FALSE;
151
-
152
  // Search for shortcode in query
153
  foreach ($posts as $post) {
154
  // Add IDs to the Crayons
155
- $post->post_content = preg_replace_callback('#(?<!\$)\[[\t ]*crayon#i', 'CrayonWP::add_crayon_id', $post->post_content);
156
 
157
  // Only include if a post exists with Crayon tag
158
  preg_match_all(self::regex(), $post->post_content, $matches);
@@ -171,11 +171,6 @@ class CrayonWP {
171
  // Make sure we enqueue the styles/scripts
172
  $enqueue = TRUE;
173
 
174
- // Mark the default theme as being used
175
- if ( ($default_theme_id = CrayonGlobalSettings::val(CrayonSettings::THEME)) != NULL ) {
176
- CrayonResources::themes()->set_used($default_theme_id);
177
- }
178
-
179
  for ($i = 0; $i < count($full_matches); $i++) {
180
  // Get attributes
181
  if ( !empty($closed_atts[$i]) ) {
@@ -195,12 +190,6 @@ class CrayonWP {
195
  }
196
  }
197
 
198
- // Detect if a theme is used
199
- if (array_key_exists('theme', $atts_array)) {
200
- $theme_id = $atts_array['theme'];
201
- CrayonResources::themes()->set_used($theme_id);
202
- }
203
-
204
  // Add array of atts and content to post queue with key as post ID
205
  $id = !empty($open_ids[$i]) ? $open_ids[$i] : $closed_ids[$i];
206
  self::$post_queue[strval($post->ID)][$id] = array('post_id'=>$post->ID, 'atts'=>$atts_array, 'code'=>$contents[$i]);
@@ -208,7 +197,7 @@ class CrayonWP {
208
  }
209
  }
210
 
211
- if (!is_admin() && $enqueue && !self::$included) {
212
  self::enqueue_resources();
213
  }
214
 
@@ -226,16 +215,10 @@ class CrayonWP {
226
  private static function enqueue_resources() {
227
  global $CRAYON_VERSION;
228
  wp_enqueue_style('crayon-style', plugins_url(CRAYON_STYLE, __FILE__), array(), $CRAYON_VERSION);
229
-
230
- $css = CrayonResources::themes()->get_used_theme_css();
231
- foreach ($css as $theme=>$url) {
232
- wp_enqueue_style('crayon-theme-'.$theme, $url, array(), $CRAYON_VERSION);
233
- }
234
-
235
- wp_enqueue_script('crayon-jquery', plugins_url(CRAYON_JQUERY, __FILE__), array(), $CRAYON_VERSION);
236
- wp_enqueue_script('crayon-js', plugins_url(CRAYON_JS, __FILE__), array('crayon-jquery'), $CRAYON_VERSION);
237
- wp_enqueue_script('crayon-jquery-popup', plugins_url(CRAYON_JQUERY_POPUP, __FILE__), array('crayon-jquery'), $CRAYON_VERSION);
238
- self::$included = TRUE;
239
  }
240
 
241
  // Add Crayon into the_content
@@ -287,7 +270,27 @@ class CrayonWP {
287
  return $the_content;
288
  }
289
 
290
- public static function init() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  self::load_textdomain();
292
  }
293
 
@@ -303,13 +306,6 @@ class CrayonWP {
303
 
304
  }
305
 
306
- public static function crayon_theme_css() {
307
- global $CRAYON_VERSION;
308
- $css = CrayonResources::themes()->get_used_theme_css();
309
- foreach ($css as $theme=>$url) {
310
- wp_enqueue_style('crayon-theme-'.$theme, $url, array(), $CRAYON_VERSION);
311
- }
312
- }
313
  }
314
 
315
  // Only if WP is loaded
@@ -321,6 +317,6 @@ if (defined('ABSPATH')) {
321
  add_filter('the_posts', 'CrayonWP::the_posts');
322
  add_filter('the_content', 'CrayonWP::the_content');
323
  add_filter('the_excerpt', 'CrayonWP::the_excerpt');
324
- add_filter('init', 'CrayonWP::init');
325
  }
326
  ?>
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.3
7
  Author: Aram Kocharyan
8
  Author URI: http://ak.net84.net/
9
  Text Domain: crayon-syntax-highlighter
40
  // Whether we are displaying an excerpt
41
  private static $is_excerpt = FALSE;
42
  // Whether we have added styles and scripts
43
+ private static $enqueued = FALSE;
44
+ // Whether we have already printed the wp head
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 = '(?:\[[\t ]*crayon(?:-(\w+))?\b([^\]]*)/[\t ]*\])'; // [crayon atts="" /]
51
+ const REGEX_TAG = '(?:\[[\t ]*crayon(?:-(\w+))?\b([^\]]*)\][\r\n]*?(.*?)[\r\n]*?\[[\t ]*/[\t ]*crayon\b[^\]]*\])'; // [crayon atts="" /] ... [/crayon]
52
 
53
  const REGEX_CLOSED_NO_CAPTURE = '(?:\[[\t ]*crayon\b[^\]]*/[\t ]*\])';
54
+ const REGEX_TAG_NO_CAPTURE = '(?:\[[\t ]*crayon\b[^\]]*\][\r\n]*?.*?[\r\n]*?\[[\t ]*/[\t ]*crayon\b[^\]]*\])';
55
+
56
+ const REGEX_ID = '#(?<!\$)\[[\t ]*crayon#i';
57
 
58
  // Methods ================================================================
59
 
64
  }
65
 
66
  public static function regex_with_id($id) {
67
+ return '#(?<!\$)(?:(?:\[[\t ]*crayon-'.$id.'\b[^\]]*/[\t ]*\])|(?:\[[\t ]*crayon-'.$id.'\b[^\]]*\][\r\n]*?.*?[\r\n]*?\[[\t ]*/[\t ]*crayon\b[^\]]*\]))(?!\$)#s';
68
  }
69
 
70
  public static function regex_no_capture() {
143
  }
144
  return $crayon;
145
  }
146
+
147
  /* Search for Crayons in posts and queue them for creation */
148
  public static function the_posts($posts) {
 
 
 
 
149
  // Whether to enqueue syles/scripts
150
  $enqueue = FALSE;
151
+
152
  // Search for shortcode in query
153
  foreach ($posts as $post) {
154
  // Add IDs to the Crayons
155
+ $post->post_content = preg_replace_callback(self::REGEX_ID, 'CrayonWP::add_crayon_id', $post->post_content);
156
 
157
  // Only include if a post exists with Crayon tag
158
  preg_match_all(self::regex(), $post->post_content, $matches);
171
  // Make sure we enqueue the styles/scripts
172
  $enqueue = TRUE;
173
 
 
 
 
 
 
174
  for ($i = 0; $i < count($full_matches); $i++) {
175
  // Get attributes
176
  if ( !empty($closed_atts[$i]) ) {
190
  }
191
  }
192
 
 
 
 
 
 
 
193
  // Add array of atts and content to post queue with key as post ID
194
  $id = !empty($open_ids[$i]) ? $open_ids[$i] : $closed_ids[$i];
195
  self::$post_queue[strval($post->ID)][$id] = array('post_id'=>$post->ID, 'atts'=>$atts_array, 'code'=>$contents[$i]);
197
  }
198
  }
199
 
200
+ if (!is_admin() && $enqueue && !self::$enqueued) {
201
  self::enqueue_resources();
202
  }
203
 
215
  private static function enqueue_resources() {
216
  global $CRAYON_VERSION;
217
  wp_enqueue_style('crayon-style', plugins_url(CRAYON_STYLE, __FILE__), array(), $CRAYON_VERSION);
218
+ //wp_enqueue_script('crayon-jquery', plugins_url(CRAYON_JQUERY, __FILE__), array(), $CRAYON_VERSION);
219
+ wp_enqueue_script('crayon-js', plugins_url(CRAYON_JS, __FILE__), array('jquery'), $CRAYON_VERSION);
220
+ wp_enqueue_script('crayon-jquery-popup', plugins_url(CRAYON_JQUERY_POPUP, __FILE__), array('jquery'), $CRAYON_VERSION);
221
+ self::$enqueued = TRUE;
 
 
 
 
 
 
222
  }
223
 
224
  // Add Crayon into the_content
270
  return $the_content;
271
  }
272
 
273
+ public static function wp_head() {
274
+ self::$wp_head = TRUE;
275
+ if (!self::$enqueued) {
276
+ // We have missed our chance to enqueue. Use setting to either load always or only in the_post
277
+ CrayonSettingsWP::load_settings(); // Ensure settings are loaded
278
+ if (!CrayonGlobalSettings::val(CrayonSettings::EFFICIENT_ENQUEUE)) {
279
+ // Efficient enqueuing disabled, always load despite enqueuing or not in the_post
280
+ self::enqueue_resources();
281
+ }
282
+ }
283
+ }
284
+
285
+ public static function crayon_theme_css() {
286
+ global $CRAYON_VERSION;
287
+ $css = CrayonResources::themes()->get_used_theme_css();
288
+ foreach ($css as $theme=>$url) {
289
+ wp_enqueue_style('crayon-theme-'.$theme, $url, array(), $CRAYON_VERSION);
290
+ }
291
+ }
292
+
293
+ public static function init($request) {
294
  self::load_textdomain();
295
  }
296
 
306
 
307
  }
308
 
 
 
 
 
 
 
 
309
  }
310
 
311
  // Only if WP is loaded
317
  add_filter('the_posts', 'CrayonWP::the_posts');
318
  add_filter('the_content', 'CrayonWP::the_content');
319
  add_filter('the_excerpt', 'CrayonWP::the_excerpt');
320
+ add_action('template_redirect', 'CrayonWP::wp_head');
321
  }
322
  ?>
readme.txt CHANGED
@@ -97,6 +97,10 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
97
 
98
  == Changelog ==
99
 
 
 
 
 
100
  = 1.6.2 =
101
  * Added ability to use and define language aliases. eg. XML -> XHTML, cpp -> c++, py -> python
102
 
97
 
98
  == Changelog ==
99
 
100
+ = 1.6.3 =
101
+ * For those still having issues with CSS and JavaScript not laoding, I have added a new setting in Misc. that will allow you to either attempt to load these resources when needed if you have no issues with your theme or to force them to load on each page.
102
+ * Please see: http://ak.net84.net/php/loading-css-and-javascript-only-when-required-in-a-wordpress-plugin/
103
+
104
  = 1.6.2 =
105
  * Added ability to use and define language aliases. eg. XML -> XHTML, cpp -> c++, py -> python
106
 
trans/crayon-syntax-highlighter-de_DE.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-de_DE.po CHANGED
@@ -19,225 +19,225 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: ..\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:115
23
- #: crayon_settings.class.php:119
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:115
29
- #: crayon_settings.class.php:119
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:115
35
- #: crayon_settings.class.php:119
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statisch"
39
 
40
- #: crayon_settings.class.php:117
41
- #: crayon_settings.class.php:121
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
- #: crayon_settings.class.php:117
47
- #: crayon_settings.class.php:121
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Prozent"
51
 
52
- #: crayon_settings.class.php:130
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Keiner"
56
 
57
- #: crayon_settings.class.php:130
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Links"
61
 
62
- #: crayon_settings.class.php:130
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Center"
66
 
67
- #: crayon_settings.class.php:130
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Rechts"
71
 
72
- #: crayon_settings.class.php:132
73
- #: crayon_settings.class.php:149
74
- #: crayon_settings.class.php:152
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Auf MouseOver"
78
 
79
- #: crayon_settings.class.php:132
80
- #: crayon_settings.class.php:138
81
- #: crayon_settings.class.php:149
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Immer"
85
 
86
- #: crayon_settings.class.php:132
87
- #: crayon_settings.class.php:138
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Nie"
91
 
92
- #: crayon_settings.class.php:138
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Wenn Sie Gefunden"
96
 
97
- #: crayon_settings.class.php:152
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Auf Doppelklick"
101
 
102
- #: crayon_settings.class.php:152
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Auf Mausklick"
106
 
107
- #: crayon_settings.class.php:152
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Nur Mit Toggle"
111
 
112
- #: crayon_settings.class.php:160
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."
116
 
117
  #: crayon_settings_wp.class.php:38
118
- #: crayon_settings_wp.class.php:70
119
  #@ crayon-syntax-highlighter
120
  msgid "Settings"
121
  msgstr "Einstellungen"
122
 
123
- #: crayon_settings_wp.class.php:63
124
  #@ crayon-syntax-highlighter
125
  msgid "You do not have sufficient permissions to access this page."
126
  msgstr "Sie verfügen nicht über ausreichende Berechtigungen, um diese Seite zu betreten."
127
 
128
- #: crayon_settings_wp.class.php:82
129
  #@ crayon-syntax-highlighter
130
  msgid "Save Changes"
131
  msgstr "Änderungen speichern"
132
 
133
- #: crayon_settings_wp.class.php:88
134
  #@ crayon-syntax-highlighter
135
  msgid "Reset Settings"
136
  msgstr "Einstellungen zurücksetzen"
137
 
138
- #: crayon_settings_wp.class.php:401
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Höhe"
142
 
143
- #: crayon_settings_wp.class.php:407
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Breite"
147
 
148
- #: crayon_settings_wp.class.php:413
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Oberen Rand"
152
 
153
- #: crayon_settings_wp.class.php:414
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Unterer Rand"
157
 
158
- #: crayon_settings_wp.class.php:415
159
- #: crayon_settings_wp.class.php:420
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Linker Rand"
163
 
164
- #: crayon_settings_wp.class.php:416
165
- #: crayon_settings_wp.class.php:420
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Rechter Rand"
169
 
170
- #: crayon_settings_wp.class.php:426
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Horizontale Ausrichtung"
174
 
175
- #: crayon_settings_wp.class.php:429
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:434
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Zeigen Sie die Toolbar"
184
 
185
- #: crayon_settings_wp.class.php:437
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:438
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:439
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:441
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:442
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Anzeige der Sprache"
209
 
210
- #: crayon_settings_wp.class.php:447
211
  #@ crayon-syntax-highlighter
212
  msgid "Display striped code lines"
213
  msgstr "Anzeige gestreiften Code-Zeilen"
214
 
215
- #: crayon_settings_wp.class.php:448
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:449
221
  #@ crayon-syntax-highlighter
222
  msgid "Display line numbers by default"
223
  msgstr "Zeilennummern anzeigen standardmäßig"
224
 
225
- #: crayon_settings_wp.class.php:450
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Aktivieren Zeilennummer Umschalten"
229
 
230
- #: crayon_settings_wp.class.php:451
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Start Zeilennummern aus"
234
 
235
- #: crayon_settings_wp.class.php:461
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:473
241
  #, php-format
242
  #@ crayon-syntax-highlighter
243
  msgid "%d language has been detected"
@@ -245,185 +245,185 @@ msgid_plural "%d languages have been detected"
245
  msgstr[0] "%d sprache erkannt wurde"
246
  msgstr[1] "%d sprachen nachgewiesen worden"
247
 
248
- #: crayon_settings_wp.class.php:474
249
  #@ crayon-syntax-highlighter
250
  msgid "Parsing was successful"
251
  msgstr "Parsing erfolgreich war"
252
 
253
- #: crayon_settings_wp.class.php:474
254
  #@ crayon-syntax-highlighter
255
  msgid "Parsing was unsuccessful"
256
  msgstr "Parsing nicht erfolgreich war"
257
 
258
- #: crayon_settings_wp.class.php:482
259
  #, php-format
260
  #@ crayon-syntax-highlighter
261
  msgid "The selected language with id %s could not be loaded"
262
  msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
263
 
264
- #: crayon_settings_wp.class.php:486
265
  #@ crayon-syntax-highlighter
266
  msgid "Show Languages"
267
  msgstr "Zeige Sprachen"
268
 
269
- #: crayon_settings_wp.class.php:507
270
  #@ crayon-syntax-highlighter
271
  msgid "Enable Live Preview"
272
  msgstr "Live-Vorschau aktivieren"
273
 
274
- #: crayon_settings_wp.class.php:512
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected theme with id %s could not be loaded"
278
  msgstr "Das gewählte Thema mit id %s konnte nicht geladen werden."
279
 
280
- #: crayon_settings_wp.class.php:526
281
  #@ crayon-syntax-highlighter
282
  msgid "Theme Default"
283
  msgstr "Theme Standard"
284
 
285
- #: crayon_settings_wp.class.php:530
286
  #@ crayon-syntax-highlighter
287
  msgid "Custom Font Size"
288
  msgstr "Benutzerdefinierte Schriftgröße"
289
 
290
- #: crayon_settings_wp.class.php:537
291
  #, php-format
292
  #@ crayon-syntax-highlighter
293
  msgid "The selected font with id %s could not be loaded"
294
  msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
295
 
296
- #: crayon_settings_wp.class.php:542
297
  #@ crayon-syntax-highlighter
298
  msgid "Enable plain code view and display"
299
  msgstr "Aktivieren Sie einfach Code-Ansicht und Anzeige"
300
 
301
- #: crayon_settings_wp.class.php:545
302
  #@ crayon-syntax-highlighter
303
  msgid "Enable code copy/paste"
304
  msgstr "Aktivieren Code kopieren/einfügen"
305
 
306
- #: crayon_settings_wp.class.php:547
307
  #@ crayon-syntax-highlighter
308
  msgid "Enable opening code in a window"
309
  msgstr "Aktivieren Öffnungscode in einem Fenster"
310
 
311
- #: crayon_settings_wp.class.php:548
312
  #@ crayon-syntax-highlighter
313
  msgid "Display scrollbars (when needed)"
314
  msgstr "Anzeigen Scrollbalken (bei ​​Bedarf)"
315
 
316
- #: crayon_settings_wp.class.php:550
317
  #@ crayon-syntax-highlighter
318
  msgid "Tab size in spaces"
319
  msgstr "Tab-Größe in Räumen"
320
 
321
- #: crayon_settings_wp.class.php:552
322
  #@ crayon-syntax-highlighter
323
  msgid "Remove whitespace surrounding the shortcode content"
324
  msgstr "Entfernen Sie Leerzeichen um den Shortcode Inhalt"
325
 
326
- #: crayon_settings_wp.class.php:557
327
  #@ crayon-syntax-highlighter
328
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
329
  msgstr "Beim Laden von lokalen Dateien und ein relativer Pfad ist für die URL angegeben, verwenden Sie den absoluten Pfad"
330
 
331
- #: crayon_settings_wp.class.php:560
332
  #@ crayon-syntax-highlighter
333
  msgid "Followed by your relative URL"
334
  msgstr "Gefolgt von Ihrem relative URL"
335
 
336
- #: crayon_settings_wp.class.php:564
337
  #@ crayon-syntax-highlighter
338
  msgid "Clear the cache used to store remote code requests"
339
  msgstr "Leeren Sie den Cache verwendet werden, um Remote-Code-Abfragen speichern"
340
 
341
- #: crayon_settings_wp.class.php:566
342
  #@ crayon-syntax-highlighter
343
  msgid "Clear Now"
344
  msgstr "Jetzt löschen"
345
 
346
- #: crayon_settings_wp.class.php:567
347
  #@ crayon-syntax-highlighter
348
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
349
  msgstr "Deaktivieren Mausgesten für Touchscreen-Geräte (zB MouseOver)"
350
 
351
- #: crayon_settings_wp.class.php:568
352
  #@ crayon-syntax-highlighter
353
  msgid "Disable animations"
354
  msgstr "Deaktivieren Animationen"
355
 
356
- #: crayon_settings_wp.class.php:569
357
  #@ crayon-syntax-highlighter
358
  msgid "Disable runtime stats"
359
  msgstr "Deaktivieren Laufzeit stats"
360
 
361
- #: crayon_settings_wp.class.php:576
362
  #@ crayon-syntax-highlighter
363
  msgid "Log errors for individual Crayons"
364
  msgstr "Log Fehler für einzelne Crayons"
365
 
366
- #: crayon_settings_wp.class.php:577
367
  #@ crayon-syntax-highlighter
368
  msgid "Log system-wide errors"
369
  msgstr "Log systemweite Fehler"
370
 
371
- #: crayon_settings_wp.class.php:578
372
  #@ crayon-syntax-highlighter
373
  msgid "Display custom message for errors"
374
  msgstr "Anzeige benutzerdefinierte Meldungen für Fehler"
375
 
376
- #: crayon_settings_wp.class.php:590
377
  #@ crayon-syntax-highlighter
378
  msgid "Show Log"
379
  msgstr "Show Protokoll"
380
 
381
- #: crayon_settings_wp.class.php:592
382
  #@ crayon-syntax-highlighter
383
  msgid "Clear Log"
384
  msgstr "Klare Protokoll"
385
 
386
- #: crayon_settings_wp.class.php:593
387
  #@ crayon-syntax-highlighter
388
  msgid "Email Admin"
389
  msgstr "E-Mail Admin"
390
 
391
- #: crayon_settings_wp.class.php:595
392
  #@ crayon-syntax-highlighter
393
  msgid "Email Developer"
394
  msgstr "E-Mail Entwickler"
395
 
396
- #: crayon_settings_wp.class.php:597
397
  #@ crayon-syntax-highlighter
398
  msgid "The log is currently empty"
399
  msgstr "Das Protokoll ist derzeit leer"
400
 
401
- #: crayon_settings_wp.class.php:599
402
  #@ crayon-syntax-highlighter
403
  msgid "The log file exists and is writable"
404
  msgstr "Die Log-Datei existiert und beschreibbar ist"
405
 
406
- #: crayon_settings_wp.class.php:599
407
  #@ crayon-syntax-highlighter
408
  msgid "The log file exists and is not writable"
409
  msgstr "Die Log-Datei existiert und ist nicht beschreibbar"
410
 
411
- #: crayon_settings_wp.class.php:601
412
  #@ crayon-syntax-highlighter
413
  msgid "The log file does not exist and is not writable"
414
  msgstr "Die Log-Datei nicht existiert und ist nicht beschreibbar"
415
 
416
- #: crayon_settings_wp.class.php:611
417
  #@ crayon-syntax-highlighter
418
  msgid "Version"
419
  msgstr "Version"
420
 
421
- #: crayon_settings_wp.class.php:613
422
  #@ crayon-syntax-highlighter
423
  msgid "Developer"
424
  msgstr "Entwickler"
425
 
426
- #: crayon_settings_wp.class.php:637
427
  #@ crayon-syntax-highlighter
428
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
429
  msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es ist ein laufendes Projekt, halt mich motiviert!"
@@ -434,28 +434,43 @@ msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es is
434
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
435
  msgstr "Ändern Sie den %1$sFallback-Sprache%2$s , um den Beispielcode ändern. Zeilen 5-7 sind markiert."
436
 
437
- #: crayon_settings.class.php:89
438
  #@ crayon-syntax-highlighter
439
  msgid "Hourly"
440
  msgstr "Stündlich"
441
 
442
- #: crayon_settings.class.php:89
443
  #@ crayon-syntax-highlighter
444
  msgid "Daily"
445
  msgstr "Täglich"
446
 
447
- #: crayon_settings.class.php:90
448
  #@ crayon-syntax-highlighter
449
  msgid "Weekly"
450
  msgstr "Wöchentlich"
451
 
452
- #: crayon_settings.class.php:90
453
  #@ crayon-syntax-highlighter
454
  msgid "Monthly"
455
  msgstr "Monatlich"
456
 
457
- #: crayon_settings.class.php:91
458
  #@ crayon-syntax-highlighter
459
  msgid "Immediately"
460
  msgstr "Sofort"
461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: ..\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:116
23
+ #: crayon_settings.class.php:120
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
+ #: crayon_settings.class.php:116
29
+ #: crayon_settings.class.php:120
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
+ #: crayon_settings.class.php:116
35
+ #: crayon_settings.class.php:120
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statisch"
39
 
40
+ #: crayon_settings.class.php:118
41
+ #: crayon_settings.class.php:122
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
+ #: crayon_settings.class.php:118
47
+ #: crayon_settings.class.php:122
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Prozent"
51
 
52
+ #: crayon_settings.class.php:131
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Keiner"
56
 
57
+ #: crayon_settings.class.php:131
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Links"
61
 
62
+ #: crayon_settings.class.php:131
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Center"
66
 
67
+ #: crayon_settings.class.php:131
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Rechts"
71
 
72
+ #: crayon_settings.class.php:133
73
+ #: crayon_settings.class.php:150
74
+ #: crayon_settings.class.php:153
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Auf MouseOver"
78
 
79
+ #: crayon_settings.class.php:133
80
+ #: crayon_settings.class.php:139
81
+ #: crayon_settings.class.php:150
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Immer"
85
 
86
+ #: crayon_settings.class.php:133
87
+ #: crayon_settings.class.php:139
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Nie"
91
 
92
+ #: crayon_settings.class.php:139
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Wenn Sie Gefunden"
96
 
97
+ #: crayon_settings.class.php:153
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Auf Doppelklick"
101
 
102
+ #: crayon_settings.class.php:153
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Auf Mausklick"
106
 
107
+ #: crayon_settings.class.php:153
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Nur Mit Toggle"
111
 
112
+ #: crayon_settings.class.php:161
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."
116
 
117
  #: crayon_settings_wp.class.php:38
118
+ #: crayon_settings_wp.class.php:76
119
  #@ crayon-syntax-highlighter
120
  msgid "Settings"
121
  msgstr "Einstellungen"
122
 
123
+ #: crayon_settings_wp.class.php:69
124
  #@ crayon-syntax-highlighter
125
  msgid "You do not have sufficient permissions to access this page."
126
  msgstr "Sie verfügen nicht über ausreichende Berechtigungen, um diese Seite zu betreten."
127
 
128
+ #: crayon_settings_wp.class.php:88
129
  #@ crayon-syntax-highlighter
130
  msgid "Save Changes"
131
  msgstr "Änderungen speichern"
132
 
133
+ #: crayon_settings_wp.class.php:94
134
  #@ crayon-syntax-highlighter
135
  msgid "Reset Settings"
136
  msgstr "Einstellungen zurücksetzen"
137
 
138
+ #: crayon_settings_wp.class.php:429
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Höhe"
142
 
143
+ #: crayon_settings_wp.class.php:435
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Breite"
147
 
148
+ #: crayon_settings_wp.class.php:441
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Oberen Rand"
152
 
153
+ #: crayon_settings_wp.class.php:442
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Unterer Rand"
157
 
158
+ #: crayon_settings_wp.class.php:443
159
+ #: crayon_settings_wp.class.php:448
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Linker Rand"
163
 
164
+ #: crayon_settings_wp.class.php:444
165
+ #: crayon_settings_wp.class.php:448
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Rechter Rand"
169
 
170
+ #: crayon_settings_wp.class.php:454
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Horizontale Ausrichtung"
174
 
175
+ #: crayon_settings_wp.class.php:457
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:462
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Zeigen Sie die Toolbar"
184
 
185
+ #: crayon_settings_wp.class.php:465
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:466
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:467
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:469
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:470
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Anzeige der Sprache"
209
 
210
+ #: crayon_settings_wp.class.php:475
211
  #@ crayon-syntax-highlighter
212
  msgid "Display striped code lines"
213
  msgstr "Anzeige gestreiften Code-Zeilen"
214
 
215
+ #: crayon_settings_wp.class.php:476
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:477
221
  #@ crayon-syntax-highlighter
222
  msgid "Display line numbers by default"
223
  msgstr "Zeilennummern anzeigen standardmäßig"
224
 
225
+ #: crayon_settings_wp.class.php:478
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Aktivieren Zeilennummer Umschalten"
229
 
230
+ #: crayon_settings_wp.class.php:479
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Start Zeilennummern aus"
234
 
235
+ #: crayon_settings_wp.class.php:489
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
  #, php-format
242
  #@ crayon-syntax-highlighter
243
  msgid "%d language has been detected"
245
  msgstr[0] "%d sprache erkannt wurde"
246
  msgstr[1] "%d sprachen nachgewiesen worden"
247
 
248
+ #: crayon_settings_wp.class.php:502
249
  #@ crayon-syntax-highlighter
250
  msgid "Parsing was successful"
251
  msgstr "Parsing erfolgreich war"
252
 
253
+ #: crayon_settings_wp.class.php:502
254
  #@ crayon-syntax-highlighter
255
  msgid "Parsing was unsuccessful"
256
  msgstr "Parsing nicht erfolgreich war"
257
 
258
+ #: crayon_settings_wp.class.php:508
259
  #, php-format
260
  #@ crayon-syntax-highlighter
261
  msgid "The selected language with id %s could not be loaded"
262
  msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
263
 
264
+ #: crayon_settings_wp.class.php:512
265
  #@ crayon-syntax-highlighter
266
  msgid "Show Languages"
267
  msgstr "Zeige Sprachen"
268
 
269
+ #: crayon_settings_wp.class.php:533
270
  #@ crayon-syntax-highlighter
271
  msgid "Enable Live Preview"
272
  msgstr "Live-Vorschau aktivieren"
273
 
274
+ #: crayon_settings_wp.class.php:536
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected theme with id %s could not be loaded"
278
  msgstr "Das gewählte Thema mit id %s konnte nicht geladen werden."
279
 
280
+ #: crayon_settings_wp.class.php:550
281
  #@ crayon-syntax-highlighter
282
  msgid "Theme Default"
283
  msgstr "Theme Standard"
284
 
285
+ #: crayon_settings_wp.class.php:554
286
  #@ crayon-syntax-highlighter
287
  msgid "Custom Font Size"
288
  msgstr "Benutzerdefinierte Schriftgröße"
289
 
290
+ #: crayon_settings_wp.class.php:559
291
  #, php-format
292
  #@ crayon-syntax-highlighter
293
  msgid "The selected font with id %s could not be loaded"
294
  msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
295
 
296
+ #: crayon_settings_wp.class.php:564
297
  #@ crayon-syntax-highlighter
298
  msgid "Enable plain code view and display"
299
  msgstr "Aktivieren Sie einfach Code-Ansicht und Anzeige"
300
 
301
+ #: crayon_settings_wp.class.php:567
302
  #@ crayon-syntax-highlighter
303
  msgid "Enable code copy/paste"
304
  msgstr "Aktivieren Code kopieren/einfügen"
305
 
306
+ #: crayon_settings_wp.class.php:569
307
  #@ crayon-syntax-highlighter
308
  msgid "Enable opening code in a window"
309
  msgstr "Aktivieren Öffnungscode in einem Fenster"
310
 
311
+ #: crayon_settings_wp.class.php:570
312
  #@ crayon-syntax-highlighter
313
  msgid "Display scrollbars (when needed)"
314
  msgstr "Anzeigen Scrollbalken (bei ​​Bedarf)"
315
 
316
+ #: crayon_settings_wp.class.php:572
317
  #@ crayon-syntax-highlighter
318
  msgid "Tab size in spaces"
319
  msgstr "Tab-Größe in Räumen"
320
 
321
+ #: crayon_settings_wp.class.php:574
322
  #@ crayon-syntax-highlighter
323
  msgid "Remove whitespace surrounding the shortcode content"
324
  msgstr "Entfernen Sie Leerzeichen um den Shortcode Inhalt"
325
 
326
+ #: crayon_settings_wp.class.php:579
327
  #@ crayon-syntax-highlighter
328
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
329
  msgstr "Beim Laden von lokalen Dateien und ein relativer Pfad ist für die URL angegeben, verwenden Sie den absoluten Pfad"
330
 
331
+ #: crayon_settings_wp.class.php:582
332
  #@ crayon-syntax-highlighter
333
  msgid "Followed by your relative URL"
334
  msgstr "Gefolgt von Ihrem relative URL"
335
 
336
+ #: crayon_settings_wp.class.php:586
337
  #@ crayon-syntax-highlighter
338
  msgid "Clear the cache used to store remote code requests"
339
  msgstr "Leeren Sie den Cache verwendet werden, um Remote-Code-Abfragen speichern"
340
 
341
+ #: crayon_settings_wp.class.php:588
342
  #@ crayon-syntax-highlighter
343
  msgid "Clear Now"
344
  msgstr "Jetzt löschen"
345
 
346
+ #: crayon_settings_wp.class.php:590
347
  #@ crayon-syntax-highlighter
348
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
349
  msgstr "Deaktivieren Mausgesten für Touchscreen-Geräte (zB MouseOver)"
350
 
351
+ #: crayon_settings_wp.class.php:591
352
  #@ crayon-syntax-highlighter
353
  msgid "Disable animations"
354
  msgstr "Deaktivieren Animationen"
355
 
356
+ #: crayon_settings_wp.class.php:592
357
  #@ crayon-syntax-highlighter
358
  msgid "Disable runtime stats"
359
  msgstr "Deaktivieren Laufzeit stats"
360
 
361
+ #: crayon_settings_wp.class.php:599
362
  #@ crayon-syntax-highlighter
363
  msgid "Log errors for individual Crayons"
364
  msgstr "Log Fehler für einzelne Crayons"
365
 
366
+ #: crayon_settings_wp.class.php:600
367
  #@ crayon-syntax-highlighter
368
  msgid "Log system-wide errors"
369
  msgstr "Log systemweite Fehler"
370
 
371
+ #: crayon_settings_wp.class.php:601
372
  #@ crayon-syntax-highlighter
373
  msgid "Display custom message for errors"
374
  msgstr "Anzeige benutzerdefinierte Meldungen für Fehler"
375
 
376
+ #: crayon_settings_wp.class.php:613
377
  #@ crayon-syntax-highlighter
378
  msgid "Show Log"
379
  msgstr "Show Protokoll"
380
 
381
+ #: crayon_settings_wp.class.php:615
382
  #@ crayon-syntax-highlighter
383
  msgid "Clear Log"
384
  msgstr "Klare Protokoll"
385
 
386
+ #: crayon_settings_wp.class.php:616
387
  #@ crayon-syntax-highlighter
388
  msgid "Email Admin"
389
  msgstr "E-Mail Admin"
390
 
391
+ #: crayon_settings_wp.class.php:618
392
  #@ crayon-syntax-highlighter
393
  msgid "Email Developer"
394
  msgstr "E-Mail Entwickler"
395
 
396
+ #: crayon_settings_wp.class.php:620
397
  #@ crayon-syntax-highlighter
398
  msgid "The log is currently empty"
399
  msgstr "Das Protokoll ist derzeit leer"
400
 
401
+ #: crayon_settings_wp.class.php:622
402
  #@ crayon-syntax-highlighter
403
  msgid "The log file exists and is writable"
404
  msgstr "Die Log-Datei existiert und beschreibbar ist"
405
 
406
+ #: crayon_settings_wp.class.php:622
407
  #@ crayon-syntax-highlighter
408
  msgid "The log file exists and is not writable"
409
  msgstr "Die Log-Datei existiert und ist nicht beschreibbar"
410
 
411
+ #: crayon_settings_wp.class.php:624
412
  #@ crayon-syntax-highlighter
413
  msgid "The log file does not exist and is not writable"
414
  msgstr "Die Log-Datei nicht existiert und ist nicht beschreibbar"
415
 
416
+ #: crayon_settings_wp.class.php:634
417
  #@ crayon-syntax-highlighter
418
  msgid "Version"
419
  msgstr "Version"
420
 
421
+ #: crayon_settings_wp.class.php:636
422
  #@ crayon-syntax-highlighter
423
  msgid "Developer"
424
  msgstr "Entwickler"
425
 
426
+ #: crayon_settings_wp.class.php:660
427
  #@ crayon-syntax-highlighter
428
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
429
  msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es ist ein laufendes Projekt, halt mich motiviert!"
434
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
435
  msgstr "Ändern Sie den %1$sFallback-Sprache%2$s , um den Beispielcode ändern. Zeilen 5-7 sind markiert."
436
 
437
+ #: crayon_settings.class.php:90
438
  #@ crayon-syntax-highlighter
439
  msgid "Hourly"
440
  msgstr "Stündlich"
441
 
442
+ #: crayon_settings.class.php:90
443
  #@ crayon-syntax-highlighter
444
  msgid "Daily"
445
  msgstr "Täglich"
446
 
447
+ #: crayon_settings.class.php:91
448
  #@ crayon-syntax-highlighter
449
  msgid "Weekly"
450
  msgstr "Wöchentlich"
451
 
452
+ #: crayon_settings.class.php:91
453
  #@ crayon-syntax-highlighter
454
  msgid "Monthly"
455
  msgstr "Monatlich"
456
 
457
+ #: crayon_settings.class.php:92
458
  #@ crayon-syntax-highlighter
459
  msgid "Immediately"
460
  msgstr "Sofort"
461
 
462
+ #: crayon_settings_wp.class.php:415
463
+ #@ crayon-syntax-highlighter
464
+ msgid "Crayon Help"
465
+ msgstr "Crayon Hilfe"
466
+
467
+ #: crayon_settings_wp.class.php:589
468
+ #@ crayon-syntax-highlighter
469
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
470
+ msgstr "Versuchen Sie, Crayon ist CSS und JavaScript nur laden, wenn nötig"
471
+
472
+ #: crayon_settings_wp.class.php:589
473
+ #@ crayon-syntax-highlighter
474
+ msgid "Why?"
475
+ msgstr "Warum?"
476
+
trans/crayon-syntax-highlighter-es_ES.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-es_ES.po CHANGED
@@ -19,225 +19,225 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:115
23
- #: crayon_settings.class.php:119
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:115
29
- #: crayon_settings.class.php:119
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:115
35
- #: crayon_settings.class.php:119
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Estático"
39
 
40
- #: crayon_settings.class.php:117
41
- #: crayon_settings.class.php:121
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Píxeles"
45
 
46
- #: crayon_settings.class.php:117
47
- #: crayon_settings.class.php:121
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Por ciento"
51
 
52
- #: crayon_settings.class.php:130
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Ninguno"
56
 
57
- #: crayon_settings.class.php:130
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Izquierda"
61
 
62
- #: crayon_settings.class.php:130
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centro"
66
 
67
- #: crayon_settings.class.php:130
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Derecho"
71
 
72
- #: crayon_settings.class.php:132
73
- #: crayon_settings.class.php:149
74
- #: crayon_settings.class.php:152
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Se mueve el ratón"
78
 
79
- #: crayon_settings.class.php:132
80
- #: crayon_settings.class.php:138
81
- #: crayon_settings.class.php:149
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Siempre"
85
 
86
- #: crayon_settings.class.php:132
87
- #: crayon_settings.class.php:138
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Nunca"
91
 
92
- #: crayon_settings.class.php:138
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Cuando se encuentra"
96
 
97
- #: crayon_settings.class.php:152
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Haga doble click en"
101
 
102
- #: crayon_settings.class.php:152
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "En solo clic"
106
 
107
- #: crayon_settings.class.php:152
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Con sólo Cambia"
111
 
112
- #: crayon_settings.class.php:160
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."
116
 
117
  #: crayon_settings_wp.class.php:38
118
- #: crayon_settings_wp.class.php:70
119
  #@ crayon-syntax-highlighter
120
  msgid "Settings"
121
  msgstr "Configuración"
122
 
123
- #: crayon_settings_wp.class.php:63
124
  #@ crayon-syntax-highlighter
125
  msgid "You do not have sufficient permissions to access this page."
126
  msgstr "Usted no tiene permisos suficientes para acceder a esta página."
127
 
128
- #: crayon_settings_wp.class.php:82
129
  #@ crayon-syntax-highlighter
130
  msgid "Save Changes"
131
  msgstr "Guardar cambios"
132
 
133
- #: crayon_settings_wp.class.php:88
134
  #@ crayon-syntax-highlighter
135
  msgid "Reset Settings"
136
  msgstr "Restablecer configuración"
137
 
138
- #: crayon_settings_wp.class.php:401
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Altura"
142
 
143
- #: crayon_settings_wp.class.php:407
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Ancho"
147
 
148
- #: crayon_settings_wp.class.php:413
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Margen superior"
152
 
153
- #: crayon_settings_wp.class.php:414
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Margen inferior"
157
 
158
- #: crayon_settings_wp.class.php:415
159
- #: crayon_settings_wp.class.php:420
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Margen Izquierda"
163
 
164
- #: crayon_settings_wp.class.php:416
165
- #: crayon_settings_wp.class.php:420
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Margen derecho"
169
 
170
- #: crayon_settings_wp.class.php:426
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "La alineación horizontal"
174
 
175
- #: crayon_settings_wp.class.php:429
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:434
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Mostrar la barra de herramientas"
184
 
185
- #: crayon_settings_wp.class.php:437
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:438
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:439
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:441
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:442
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Mostrar el lenguaje"
209
 
210
- #: crayon_settings_wp.class.php:447
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:448
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:449
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:450
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:451
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:461
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:473
241
  #, php-format
242
  #@ crayon-syntax-highlighter
243
  msgid "%d language has been detected"
@@ -245,185 +245,185 @@ msgid_plural "%d languages have been detected"
245
  msgstr[0] "%d lenguaje que se ha detectado"
246
  msgstr[1] "%d idiomas se han detectado"
247
 
248
- #: crayon_settings_wp.class.php:474
249
  #@ crayon-syntax-highlighter
250
  msgid "Parsing was successful"
251
  msgstr "El análisis se ha realizado correctamente"
252
 
253
- #: crayon_settings_wp.class.php:474
254
  #@ crayon-syntax-highlighter
255
  msgid "Parsing was unsuccessful"
256
  msgstr "El análisis no tuvo éxito"
257
 
258
- #: crayon_settings_wp.class.php:482
259
  #, php-format
260
  #@ crayon-syntax-highlighter
261
  msgid "The selected language with id %s could not be loaded"
262
  msgstr "El idioma seleccionado con el id %s no se pudo cargar"
263
 
264
- #: crayon_settings_wp.class.php:486
265
  #@ crayon-syntax-highlighter
266
  msgid "Show Languages"
267
  msgstr "Mostrar Idiomas"
268
 
269
- #: crayon_settings_wp.class.php:507
270
  #@ crayon-syntax-highlighter
271
  msgid "Enable Live Preview"
272
  msgstr "Activar vista previa dinámica"
273
 
274
- #: crayon_settings_wp.class.php:512
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected theme with id %s could not be loaded"
278
  msgstr "El tema seleccionado con el id %s no se pudo cargar"
279
 
280
- #: crayon_settings_wp.class.php:526
281
  #@ crayon-syntax-highlighter
282
  msgid "Theme Default"
283
  msgstr "Tema por defecto"
284
 
285
- #: crayon_settings_wp.class.php:530
286
  #@ crayon-syntax-highlighter
287
  msgid "Custom Font Size"
288
  msgstr "Tamaño de fuente personalizado"
289
 
290
- #: crayon_settings_wp.class.php:537
291
  #, php-format
292
  #@ crayon-syntax-highlighter
293
  msgid "The selected font with id %s could not be loaded"
294
  msgstr "La fuente seleccionada con id %s no se pudo cargar"
295
 
296
- #: crayon_settings_wp.class.php:542
297
  #@ crayon-syntax-highlighter
298
  msgid "Enable plain code view and display"
299
  msgstr "Permiten ver el código normal y la pantalla"
300
 
301
- #: crayon_settings_wp.class.php:545
302
  #@ crayon-syntax-highlighter
303
  msgid "Enable code copy/paste"
304
  msgstr "Permiten copiar el código / pegar"
305
 
306
- #: crayon_settings_wp.class.php:547
307
  #@ crayon-syntax-highlighter
308
  msgid "Enable opening code in a window"
309
  msgstr "Permitir que el código de apertura de una ventana"
310
 
311
- #: crayon_settings_wp.class.php:548
312
  #@ crayon-syntax-highlighter
313
  msgid "Display scrollbars (when needed)"
314
  msgstr "Barras de desplazamiento de la pantalla (si es necesario)"
315
 
316
- #: crayon_settings_wp.class.php:550
317
  #@ crayon-syntax-highlighter
318
  msgid "Tab size in spaces"
319
  msgstr "Tab tamaño en espacios"
320
 
321
- #: crayon_settings_wp.class.php:552
322
  #@ crayon-syntax-highlighter
323
  msgid "Remove whitespace surrounding the shortcode content"
324
  msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
325
 
326
- #: crayon_settings_wp.class.php:557
327
  #@ crayon-syntax-highlighter
328
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
329
  msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
330
 
331
- #: crayon_settings_wp.class.php:560
332
  #@ crayon-syntax-highlighter
333
  msgid "Followed by your relative URL"
334
  msgstr "Seguido de su dirección URL relativa"
335
 
336
- #: crayon_settings_wp.class.php:564
337
  #@ crayon-syntax-highlighter
338
  msgid "Clear the cache used to store remote code requests"
339
  msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
340
 
341
- #: crayon_settings_wp.class.php:566
342
  #@ crayon-syntax-highlighter
343
  msgid "Clear Now"
344
  msgstr "Limpiar ahora"
345
 
346
- #: crayon_settings_wp.class.php:567
347
  #@ crayon-syntax-highlighter
348
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
349
  msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
350
 
351
- #: crayon_settings_wp.class.php:568
352
  #@ crayon-syntax-highlighter
353
  msgid "Disable animations"
354
  msgstr "Desactivar las animaciones"
355
 
356
- #: crayon_settings_wp.class.php:569
357
  #@ crayon-syntax-highlighter
358
  msgid "Disable runtime stats"
359
  msgstr "Desactivar tiempo de ejecución de las estadísticas"
360
 
361
- #: crayon_settings_wp.class.php:576
362
  #@ crayon-syntax-highlighter
363
  msgid "Log errors for individual Crayons"
364
  msgstr "Errores de registro para cada Crayon"
365
 
366
- #: crayon_settings_wp.class.php:577
367
  #@ crayon-syntax-highlighter
368
  msgid "Log system-wide errors"
369
  msgstr "Registro de todo el sistema de los errores"
370
 
371
- #: crayon_settings_wp.class.php:578
372
  #@ crayon-syntax-highlighter
373
  msgid "Display custom message for errors"
374
  msgstr "Mostrar mensajes personalizados para los errores"
375
 
376
- #: crayon_settings_wp.class.php:590
377
  #@ crayon-syntax-highlighter
378
  msgid "Show Log"
379
  msgstr "Mostrar Registro"
380
 
381
- #: crayon_settings_wp.class.php:592
382
  #@ crayon-syntax-highlighter
383
  msgid "Clear Log"
384
  msgstr "Borrar Registro"
385
 
386
- #: crayon_settings_wp.class.php:593
387
  #@ crayon-syntax-highlighter
388
  msgid "Email Admin"
389
  msgstr "Admin Email"
390
 
391
- #: crayon_settings_wp.class.php:595
392
  #@ crayon-syntax-highlighter
393
  msgid "Email Developer"
394
  msgstr "Correo electrónico del desarrollador"
395
 
396
- #: crayon_settings_wp.class.php:597
397
  #@ crayon-syntax-highlighter
398
  msgid "The log is currently empty"
399
  msgstr "El registro está actualmente vacía"
400
 
401
- #: crayon_settings_wp.class.php:599
402
  #@ crayon-syntax-highlighter
403
  msgid "The log file exists and is writable"
404
  msgstr "El archivo de registro existe y se puede escribir"
405
 
406
- #: crayon_settings_wp.class.php:599
407
  #@ crayon-syntax-highlighter
408
  msgid "The log file exists and is not writable"
409
  msgstr "El archivo de registro existe y no es modificable"
410
 
411
- #: crayon_settings_wp.class.php:601
412
  #@ crayon-syntax-highlighter
413
  msgid "The log file does not exist and is not writable"
414
  msgstr "El archivo de registro no existe y no es modificable"
415
 
416
- #: crayon_settings_wp.class.php:611
417
  #@ crayon-syntax-highlighter
418
  msgid "Version"
419
  msgstr "Versión"
420
 
421
- #: crayon_settings_wp.class.php:613
422
  #@ crayon-syntax-highlighter
423
  msgid "Developer"
424
  msgstr "Promotor"
425
 
426
- #: crayon_settings_wp.class.php:637
427
  #@ crayon-syntax-highlighter
428
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
429
  msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
@@ -434,28 +434,43 @@ msgstr "El resultado de incontables horas de duro trabajo durante muchos meses.
434
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
435
  msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
436
 
437
- #: crayon_settings.class.php:89
438
  #@ crayon-syntax-highlighter
439
  msgid "Hourly"
440
  msgstr "Cada hora"
441
 
442
- #: crayon_settings.class.php:89
443
  #@ crayon-syntax-highlighter
444
  msgid "Daily"
445
  msgstr "Diario"
446
 
447
- #: crayon_settings.class.php:90
448
  #@ crayon-syntax-highlighter
449
  msgid "Weekly"
450
  msgstr "Semanal"
451
 
452
- #: crayon_settings.class.php:90
453
  #@ crayon-syntax-highlighter
454
  msgid "Monthly"
455
  msgstr "Mensual"
456
 
457
- #: crayon_settings.class.php:91
458
  #@ crayon-syntax-highlighter
459
  msgid "Immediately"
460
  msgstr "Inmediatamente"
461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:116
23
+ #: crayon_settings.class.php:120
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
+ #: crayon_settings.class.php:116
29
+ #: crayon_settings.class.php:120
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
+ #: crayon_settings.class.php:116
35
+ #: crayon_settings.class.php:120
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Estático"
39
 
40
+ #: crayon_settings.class.php:118
41
+ #: crayon_settings.class.php:122
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Píxeles"
45
 
46
+ #: crayon_settings.class.php:118
47
+ #: crayon_settings.class.php:122
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Por ciento"
51
 
52
+ #: crayon_settings.class.php:131
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Ninguno"
56
 
57
+ #: crayon_settings.class.php:131
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Izquierda"
61
 
62
+ #: crayon_settings.class.php:131
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centro"
66
 
67
+ #: crayon_settings.class.php:131
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Derecho"
71
 
72
+ #: crayon_settings.class.php:133
73
+ #: crayon_settings.class.php:150
74
+ #: crayon_settings.class.php:153
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Se mueve el ratón"
78
 
79
+ #: crayon_settings.class.php:133
80
+ #: crayon_settings.class.php:139
81
+ #: crayon_settings.class.php:150
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Siempre"
85
 
86
+ #: crayon_settings.class.php:133
87
+ #: crayon_settings.class.php:139
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Nunca"
91
 
92
+ #: crayon_settings.class.php:139
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Cuando se encuentra"
96
 
97
+ #: crayon_settings.class.php:153
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Haga doble click en"
101
 
102
+ #: crayon_settings.class.php:153
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "En solo clic"
106
 
107
+ #: crayon_settings.class.php:153
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Con sólo Cambia"
111
 
112
+ #: crayon_settings.class.php:161
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."
116
 
117
  #: crayon_settings_wp.class.php:38
118
+ #: crayon_settings_wp.class.php:76
119
  #@ crayon-syntax-highlighter
120
  msgid "Settings"
121
  msgstr "Configuración"
122
 
123
+ #: crayon_settings_wp.class.php:69
124
  #@ crayon-syntax-highlighter
125
  msgid "You do not have sufficient permissions to access this page."
126
  msgstr "Usted no tiene permisos suficientes para acceder a esta página."
127
 
128
+ #: crayon_settings_wp.class.php:88
129
  #@ crayon-syntax-highlighter
130
  msgid "Save Changes"
131
  msgstr "Guardar cambios"
132
 
133
+ #: crayon_settings_wp.class.php:94
134
  #@ crayon-syntax-highlighter
135
  msgid "Reset Settings"
136
  msgstr "Restablecer configuración"
137
 
138
+ #: crayon_settings_wp.class.php:429
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Altura"
142
 
143
+ #: crayon_settings_wp.class.php:435
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Ancho"
147
 
148
+ #: crayon_settings_wp.class.php:441
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Margen superior"
152
 
153
+ #: crayon_settings_wp.class.php:442
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Margen inferior"
157
 
158
+ #: crayon_settings_wp.class.php:443
159
+ #: crayon_settings_wp.class.php:448
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Margen Izquierda"
163
 
164
+ #: crayon_settings_wp.class.php:444
165
+ #: crayon_settings_wp.class.php:448
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Margen derecho"
169
 
170
+ #: crayon_settings_wp.class.php:454
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "La alineación horizontal"
174
 
175
+ #: crayon_settings_wp.class.php:457
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:462
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Mostrar la barra de herramientas"
184
 
185
+ #: crayon_settings_wp.class.php:465
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:466
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:467
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:469
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:470
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Mostrar el lenguaje"
209
 
210
+ #: crayon_settings_wp.class.php:475
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:476
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:477
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:478
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:479
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:489
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
  #, php-format
242
  #@ crayon-syntax-highlighter
243
  msgid "%d language has been detected"
245
  msgstr[0] "%d lenguaje que se ha detectado"
246
  msgstr[1] "%d idiomas se han detectado"
247
 
248
+ #: crayon_settings_wp.class.php:502
249
  #@ crayon-syntax-highlighter
250
  msgid "Parsing was successful"
251
  msgstr "El análisis se ha realizado correctamente"
252
 
253
+ #: crayon_settings_wp.class.php:502
254
  #@ crayon-syntax-highlighter
255
  msgid "Parsing was unsuccessful"
256
  msgstr "El análisis no tuvo éxito"
257
 
258
+ #: crayon_settings_wp.class.php:508
259
  #, php-format
260
  #@ crayon-syntax-highlighter
261
  msgid "The selected language with id %s could not be loaded"
262
  msgstr "El idioma seleccionado con el id %s no se pudo cargar"
263
 
264
+ #: crayon_settings_wp.class.php:512
265
  #@ crayon-syntax-highlighter
266
  msgid "Show Languages"
267
  msgstr "Mostrar Idiomas"
268
 
269
+ #: crayon_settings_wp.class.php:533
270
  #@ crayon-syntax-highlighter
271
  msgid "Enable Live Preview"
272
  msgstr "Activar vista previa dinámica"
273
 
274
+ #: crayon_settings_wp.class.php:536
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected theme with id %s could not be loaded"
278
  msgstr "El tema seleccionado con el id %s no se pudo cargar"
279
 
280
+ #: crayon_settings_wp.class.php:550
281
  #@ crayon-syntax-highlighter
282
  msgid "Theme Default"
283
  msgstr "Tema por defecto"
284
 
285
+ #: crayon_settings_wp.class.php:554
286
  #@ crayon-syntax-highlighter
287
  msgid "Custom Font Size"
288
  msgstr "Tamaño de fuente personalizado"
289
 
290
+ #: crayon_settings_wp.class.php:559
291
  #, php-format
292
  #@ crayon-syntax-highlighter
293
  msgid "The selected font with id %s could not be loaded"
294
  msgstr "La fuente seleccionada con id %s no se pudo cargar"
295
 
296
+ #: crayon_settings_wp.class.php:564
297
  #@ crayon-syntax-highlighter
298
  msgid "Enable plain code view and display"
299
  msgstr "Permiten ver el código normal y la pantalla"
300
 
301
+ #: crayon_settings_wp.class.php:567
302
  #@ crayon-syntax-highlighter
303
  msgid "Enable code copy/paste"
304
  msgstr "Permiten copiar el código / pegar"
305
 
306
+ #: crayon_settings_wp.class.php:569
307
  #@ crayon-syntax-highlighter
308
  msgid "Enable opening code in a window"
309
  msgstr "Permitir que el código de apertura de una ventana"
310
 
311
+ #: crayon_settings_wp.class.php:570
312
  #@ crayon-syntax-highlighter
313
  msgid "Display scrollbars (when needed)"
314
  msgstr "Barras de desplazamiento de la pantalla (si es necesario)"
315
 
316
+ #: crayon_settings_wp.class.php:572
317
  #@ crayon-syntax-highlighter
318
  msgid "Tab size in spaces"
319
  msgstr "Tab tamaño en espacios"
320
 
321
+ #: crayon_settings_wp.class.php:574
322
  #@ crayon-syntax-highlighter
323
  msgid "Remove whitespace surrounding the shortcode content"
324
  msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
325
 
326
+ #: crayon_settings_wp.class.php:579
327
  #@ crayon-syntax-highlighter
328
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
329
  msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
330
 
331
+ #: crayon_settings_wp.class.php:582
332
  #@ crayon-syntax-highlighter
333
  msgid "Followed by your relative URL"
334
  msgstr "Seguido de su dirección URL relativa"
335
 
336
+ #: crayon_settings_wp.class.php:586
337
  #@ crayon-syntax-highlighter
338
  msgid "Clear the cache used to store remote code requests"
339
  msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
340
 
341
+ #: crayon_settings_wp.class.php:588
342
  #@ crayon-syntax-highlighter
343
  msgid "Clear Now"
344
  msgstr "Limpiar ahora"
345
 
346
+ #: crayon_settings_wp.class.php:590
347
  #@ crayon-syntax-highlighter
348
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
349
  msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
350
 
351
+ #: crayon_settings_wp.class.php:591
352
  #@ crayon-syntax-highlighter
353
  msgid "Disable animations"
354
  msgstr "Desactivar las animaciones"
355
 
356
+ #: crayon_settings_wp.class.php:592
357
  #@ crayon-syntax-highlighter
358
  msgid "Disable runtime stats"
359
  msgstr "Desactivar tiempo de ejecución de las estadísticas"
360
 
361
+ #: crayon_settings_wp.class.php:599
362
  #@ crayon-syntax-highlighter
363
  msgid "Log errors for individual Crayons"
364
  msgstr "Errores de registro para cada Crayon"
365
 
366
+ #: crayon_settings_wp.class.php:600
367
  #@ crayon-syntax-highlighter
368
  msgid "Log system-wide errors"
369
  msgstr "Registro de todo el sistema de los errores"
370
 
371
+ #: crayon_settings_wp.class.php:601
372
  #@ crayon-syntax-highlighter
373
  msgid "Display custom message for errors"
374
  msgstr "Mostrar mensajes personalizados para los errores"
375
 
376
+ #: crayon_settings_wp.class.php:613
377
  #@ crayon-syntax-highlighter
378
  msgid "Show Log"
379
  msgstr "Mostrar Registro"
380
 
381
+ #: crayon_settings_wp.class.php:615
382
  #@ crayon-syntax-highlighter
383
  msgid "Clear Log"
384
  msgstr "Borrar Registro"
385
 
386
+ #: crayon_settings_wp.class.php:616
387
  #@ crayon-syntax-highlighter
388
  msgid "Email Admin"
389
  msgstr "Admin Email"
390
 
391
+ #: crayon_settings_wp.class.php:618
392
  #@ crayon-syntax-highlighter
393
  msgid "Email Developer"
394
  msgstr "Correo electrónico del desarrollador"
395
 
396
+ #: crayon_settings_wp.class.php:620
397
  #@ crayon-syntax-highlighter
398
  msgid "The log is currently empty"
399
  msgstr "El registro está actualmente vacía"
400
 
401
+ #: crayon_settings_wp.class.php:622
402
  #@ crayon-syntax-highlighter
403
  msgid "The log file exists and is writable"
404
  msgstr "El archivo de registro existe y se puede escribir"
405
 
406
+ #: crayon_settings_wp.class.php:622
407
  #@ crayon-syntax-highlighter
408
  msgid "The log file exists and is not writable"
409
  msgstr "El archivo de registro existe y no es modificable"
410
 
411
+ #: crayon_settings_wp.class.php:624
412
  #@ crayon-syntax-highlighter
413
  msgid "The log file does not exist and is not writable"
414
  msgstr "El archivo de registro no existe y no es modificable"
415
 
416
+ #: crayon_settings_wp.class.php:634
417
  #@ crayon-syntax-highlighter
418
  msgid "Version"
419
  msgstr "Versión"
420
 
421
+ #: crayon_settings_wp.class.php:636
422
  #@ crayon-syntax-highlighter
423
  msgid "Developer"
424
  msgstr "Promotor"
425
 
426
+ #: crayon_settings_wp.class.php:660
427
  #@ crayon-syntax-highlighter
428
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
429
  msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
434
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
435
  msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
436
 
437
+ #: crayon_settings.class.php:90
438
  #@ crayon-syntax-highlighter
439
  msgid "Hourly"
440
  msgstr "Cada hora"
441
 
442
+ #: crayon_settings.class.php:90
443
  #@ crayon-syntax-highlighter
444
  msgid "Daily"
445
  msgstr "Diario"
446
 
447
+ #: crayon_settings.class.php:91
448
  #@ crayon-syntax-highlighter
449
  msgid "Weekly"
450
  msgstr "Semanal"
451
 
452
+ #: crayon_settings.class.php:91
453
  #@ crayon-syntax-highlighter
454
  msgid "Monthly"
455
  msgstr "Mensual"
456
 
457
+ #: crayon_settings.class.php:92
458
  #@ crayon-syntax-highlighter
459
  msgid "Immediately"
460
  msgstr "Inmediatamente"
461
 
462
+ #: crayon_settings_wp.class.php:415
463
+ #@ crayon-syntax-highlighter
464
+ msgid "Crayon Help"
465
+ msgstr "Crayon Ayuda"
466
+
467
+ #: crayon_settings_wp.class.php:589
468
+ #@ crayon-syntax-highlighter
469
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
470
+ msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
471
+
472
+ #: crayon_settings_wp.class.php:589
473
+ #@ crayon-syntax-highlighter
474
+ msgid "Why?"
475
+ msgstr "¿Por qué?"
476
+
trans/crayon-syntax-highlighter-fr_FR.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-fr_FR.po CHANGED
@@ -19,225 +19,225 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:115
23
- #: crayon_settings.class.php:119
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:115
29
- #: crayon_settings.class.php:119
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:115
35
- #: crayon_settings.class.php:119
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statique"
39
 
40
- #: crayon_settings.class.php:117
41
- #: crayon_settings.class.php:121
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
- #: crayon_settings.class.php:117
47
- #: crayon_settings.class.php:121
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Pour cent"
51
 
52
- #: crayon_settings.class.php:130
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Aucun"
56
 
57
- #: crayon_settings.class.php:130
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Gauche"
61
 
62
- #: crayon_settings.class.php:130
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centre"
66
 
67
- #: crayon_settings.class.php:130
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Droite"
71
 
72
- #: crayon_settings.class.php:132
73
- #: crayon_settings.class.php:149
74
- #: crayon_settings.class.php:152
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Sur MouseOver"
78
 
79
- #: crayon_settings.class.php:132
80
- #: crayon_settings.class.php:138
81
- #: crayon_settings.class.php:149
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Toujours"
85
 
86
- #: crayon_settings.class.php:132
87
- #: crayon_settings.class.php:138
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Jamais"
91
 
92
- #: crayon_settings.class.php:138
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Une fois trouvé"
96
 
97
- #: crayon_settings.class.php:152
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Le double-clic"
101
 
102
- #: crayon_settings.class.php:152
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Le Single Cliquez"
106
 
107
- #: crayon_settings.class.php:152
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Seule l'aide Bascule"
111
 
112
- #: crayon_settings.class.php:160
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."
116
 
117
  #: crayon_settings_wp.class.php:38
118
- #: crayon_settings_wp.class.php:70
119
  #@ crayon-syntax-highlighter
120
  msgid "Settings"
121
  msgstr "Réglages"
122
 
123
- #: crayon_settings_wp.class.php:63
124
  #@ crayon-syntax-highlighter
125
  msgid "You do not have sufficient permissions to access this page."
126
  msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
127
 
128
- #: crayon_settings_wp.class.php:82
129
  #@ crayon-syntax-highlighter
130
  msgid "Save Changes"
131
  msgstr "Enregistrer les modifications"
132
 
133
- #: crayon_settings_wp.class.php:88
134
  #@ crayon-syntax-highlighter
135
  msgid "Reset Settings"
136
  msgstr "Réinitialiser les paramètres"
137
 
138
- #: crayon_settings_wp.class.php:401
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Hauteur"
142
 
143
- #: crayon_settings_wp.class.php:407
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Largeur"
147
 
148
- #: crayon_settings_wp.class.php:413
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Marge supérieure"
152
 
153
- #: crayon_settings_wp.class.php:414
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "La marge du bas"
157
 
158
- #: crayon_settings_wp.class.php:415
159
- #: crayon_settings_wp.class.php:420
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Marge de gauche"
163
 
164
- #: crayon_settings_wp.class.php:416
165
- #: crayon_settings_wp.class.php:420
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Marge droite"
169
 
170
- #: crayon_settings_wp.class.php:426
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Alignement horizontal"
174
 
175
- #: crayon_settings_wp.class.php:429
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:434
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Afficher la barre d'outils"
184
 
185
- #: crayon_settings_wp.class.php:437
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:438
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:439
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:441
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:442
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Affichage de la langue"
209
 
210
- #: crayon_settings_wp.class.php:447
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:448
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:449
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:450
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:451
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:461
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:473
241
  #, php-format
242
  #@ crayon-syntax-highlighter
243
  msgid "%d language has been detected"
@@ -245,185 +245,185 @@ msgid_plural "%d languages have been detected"
245
  msgstr[0] "%d la langue a été détectée"
246
  msgstr[1] "%d langues ont été détectés"
247
 
248
- #: crayon_settings_wp.class.php:474
249
  #@ crayon-syntax-highlighter
250
  msgid "Parsing was successful"
251
  msgstr "Parsing a réussi"
252
 
253
- #: crayon_settings_wp.class.php:474
254
  #@ crayon-syntax-highlighter
255
  msgid "Parsing was unsuccessful"
256
  msgstr "Parsing a échoué"
257
 
258
- #: crayon_settings_wp.class.php:482
259
  #, php-format
260
  #@ crayon-syntax-highlighter
261
  msgid "The selected language with id %s could not be loaded"
262
  msgstr "La langue sélectionnée avec id %s ne pouvait pas être chargé"
263
 
264
- #: crayon_settings_wp.class.php:486
265
  #@ crayon-syntax-highlighter
266
  msgid "Show Languages"
267
  msgstr "Voir langues"
268
 
269
- #: crayon_settings_wp.class.php:507
270
  #@ crayon-syntax-highlighter
271
  msgid "Enable Live Preview"
272
  msgstr "Activer l'aperçu en direct"
273
 
274
- #: crayon_settings_wp.class.php:512
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected theme with id %s could not be loaded"
278
  msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
279
 
280
- #: crayon_settings_wp.class.php:526
281
  #@ crayon-syntax-highlighter
282
  msgid "Theme Default"
283
  msgstr "Thème par défaut"
284
 
285
- #: crayon_settings_wp.class.php:530
286
  #@ crayon-syntax-highlighter
287
  msgid "Custom Font Size"
288
  msgstr "Taille du texte personnalisé"
289
 
290
- #: crayon_settings_wp.class.php:537
291
  #, php-format
292
  #@ crayon-syntax-highlighter
293
  msgid "The selected font with id %s could not be loaded"
294
  msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
295
 
296
- #: crayon_settings_wp.class.php:542
297
  #@ crayon-syntax-highlighter
298
  msgid "Enable plain code view and display"
299
  msgstr "Activer le mode code clair et d'affichage"
300
 
301
- #: crayon_settings_wp.class.php:545
302
  #@ crayon-syntax-highlighter
303
  msgid "Enable code copy/paste"
304
  msgstr "Activer copiez le code/coller"
305
 
306
- #: crayon_settings_wp.class.php:547
307
  #@ crayon-syntax-highlighter
308
  msgid "Enable opening code in a window"
309
  msgstr "Activer code d'ouverture dans une fenêtre"
310
 
311
- #: crayon_settings_wp.class.php:548
312
  #@ crayon-syntax-highlighter
313
  msgid "Display scrollbars (when needed)"
314
  msgstr "Affichage des barres de défilement (si nécessaire)"
315
 
316
- #: crayon_settings_wp.class.php:550
317
  #@ crayon-syntax-highlighter
318
  msgid "Tab size in spaces"
319
  msgstr "Taille des tabulations dans les espaces"
320
 
321
- #: crayon_settings_wp.class.php:552
322
  #@ crayon-syntax-highlighter
323
  msgid "Remove whitespace surrounding the shortcode content"
324
  msgstr "Enlevez les espaces entourant le contenu shortcode"
325
 
326
- #: crayon_settings_wp.class.php:557
327
  #@ crayon-syntax-highlighter
328
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
329
  msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
330
 
331
- #: crayon_settings_wp.class.php:560
332
  #@ crayon-syntax-highlighter
333
  msgid "Followed by your relative URL"
334
  msgstr "Suivi de votre URL relative"
335
 
336
- #: crayon_settings_wp.class.php:564
337
  #@ crayon-syntax-highlighter
338
  msgid "Clear the cache used to store remote code requests"
339
  msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
340
 
341
- #: crayon_settings_wp.class.php:566
342
  #@ crayon-syntax-highlighter
343
  msgid "Clear Now"
344
  msgstr "Effacer maintenant"
345
 
346
- #: crayon_settings_wp.class.php:567
347
  #@ crayon-syntax-highlighter
348
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
349
  msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
350
 
351
- #: crayon_settings_wp.class.php:568
352
  #@ crayon-syntax-highlighter
353
  msgid "Disable animations"
354
  msgstr "Désactiver les animations"
355
 
356
- #: crayon_settings_wp.class.php:569
357
  #@ crayon-syntax-highlighter
358
  msgid "Disable runtime stats"
359
  msgstr "Désactiver l'exécution stats"
360
 
361
- #: crayon_settings_wp.class.php:576
362
  #@ crayon-syntax-highlighter
363
  msgid "Log errors for individual Crayons"
364
  msgstr "Connexion pour les erreurs individuelles Crayons"
365
 
366
- #: crayon_settings_wp.class.php:577
367
  #@ crayon-syntax-highlighter
368
  msgid "Log system-wide errors"
369
  msgstr "Connexion échelle du système des erreurs"
370
 
371
- #: crayon_settings_wp.class.php:578
372
  #@ crayon-syntax-highlighter
373
  msgid "Display custom message for errors"
374
  msgstr "Afficher un message personnalisé pour les erreurs"
375
 
376
- #: crayon_settings_wp.class.php:590
377
  #@ crayon-syntax-highlighter
378
  msgid "Show Log"
379
  msgstr "Afficher le journal"
380
 
381
- #: crayon_settings_wp.class.php:592
382
  #@ crayon-syntax-highlighter
383
  msgid "Clear Log"
384
  msgstr "Effacer le journal"
385
 
386
- #: crayon_settings_wp.class.php:593
387
  #@ crayon-syntax-highlighter
388
  msgid "Email Admin"
389
  msgstr "Admin Email"
390
 
391
- #: crayon_settings_wp.class.php:595
392
  #@ crayon-syntax-highlighter
393
  msgid "Email Developer"
394
  msgstr "Développeur Email"
395
 
396
- #: crayon_settings_wp.class.php:597
397
  #@ crayon-syntax-highlighter
398
  msgid "The log is currently empty"
399
  msgstr "Le journal est actuellement vide"
400
 
401
- #: crayon_settings_wp.class.php:599
402
  #@ crayon-syntax-highlighter
403
  msgid "The log file exists and is writable"
404
  msgstr "Le fichier journal existe et est accessible en écriture"
405
 
406
- #: crayon_settings_wp.class.php:599
407
  #@ crayon-syntax-highlighter
408
  msgid "The log file exists and is not writable"
409
  msgstr "Le fichier journal existe et n'est pas accessible en écriture"
410
 
411
- #: crayon_settings_wp.class.php:601
412
  #@ crayon-syntax-highlighter
413
  msgid "The log file does not exist and is not writable"
414
  msgstr "Le fichier journal n'existe pas et n'est pas modifiable"
415
 
416
- #: crayon_settings_wp.class.php:611
417
  #@ crayon-syntax-highlighter
418
  msgid "Version"
419
  msgstr "Version"
420
 
421
- #: crayon_settings_wp.class.php:613
422
  #@ crayon-syntax-highlighter
423
  msgid "Developer"
424
  msgstr "Développeur"
425
 
426
- #: crayon_settings_wp.class.php:637
427
  #@ crayon-syntax-highlighter
428
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
429
  msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
@@ -434,28 +434,43 @@ msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'es
434
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
435
  msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
436
 
437
- #: crayon_settings.class.php:89
438
  #@ crayon-syntax-highlighter
439
  msgid "Hourly"
440
  msgstr "Horaires"
441
 
442
- #: crayon_settings.class.php:89
443
  #@ crayon-syntax-highlighter
444
  msgid "Daily"
445
  msgstr "Daily"
446
 
447
- #: crayon_settings.class.php:90
448
  #@ crayon-syntax-highlighter
449
  msgid "Weekly"
450
  msgstr "Hebdomadaire"
451
 
452
- #: crayon_settings.class.php:90
453
  #@ crayon-syntax-highlighter
454
  msgid "Monthly"
455
  msgstr "Mensuel"
456
 
457
- #: crayon_settings.class.php:91
458
  #@ crayon-syntax-highlighter
459
  msgid "Immediately"
460
  msgstr "Immédiatement"
461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:116
23
+ #: crayon_settings.class.php:120
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
+ #: crayon_settings.class.php:116
29
+ #: crayon_settings.class.php:120
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
+ #: crayon_settings.class.php:116
35
+ #: crayon_settings.class.php:120
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statique"
39
 
40
+ #: crayon_settings.class.php:118
41
+ #: crayon_settings.class.php:122
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
+ #: crayon_settings.class.php:118
47
+ #: crayon_settings.class.php:122
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Pour cent"
51
 
52
+ #: crayon_settings.class.php:131
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Aucun"
56
 
57
+ #: crayon_settings.class.php:131
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Gauche"
61
 
62
+ #: crayon_settings.class.php:131
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centre"
66
 
67
+ #: crayon_settings.class.php:131
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Droite"
71
 
72
+ #: crayon_settings.class.php:133
73
+ #: crayon_settings.class.php:150
74
+ #: crayon_settings.class.php:153
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Sur MouseOver"
78
 
79
+ #: crayon_settings.class.php:133
80
+ #: crayon_settings.class.php:139
81
+ #: crayon_settings.class.php:150
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Toujours"
85
 
86
+ #: crayon_settings.class.php:133
87
+ #: crayon_settings.class.php:139
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Jamais"
91
 
92
+ #: crayon_settings.class.php:139
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Une fois trouvé"
96
 
97
+ #: crayon_settings.class.php:153
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Le double-clic"
101
 
102
+ #: crayon_settings.class.php:153
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Le Single Cliquez"
106
 
107
+ #: crayon_settings.class.php:153
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Seule l'aide Bascule"
111
 
112
+ #: crayon_settings.class.php:161
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."
116
 
117
  #: crayon_settings_wp.class.php:38
118
+ #: crayon_settings_wp.class.php:76
119
  #@ crayon-syntax-highlighter
120
  msgid "Settings"
121
  msgstr "Réglages"
122
 
123
+ #: crayon_settings_wp.class.php:69
124
  #@ crayon-syntax-highlighter
125
  msgid "You do not have sufficient permissions to access this page."
126
  msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
127
 
128
+ #: crayon_settings_wp.class.php:88
129
  #@ crayon-syntax-highlighter
130
  msgid "Save Changes"
131
  msgstr "Enregistrer les modifications"
132
 
133
+ #: crayon_settings_wp.class.php:94
134
  #@ crayon-syntax-highlighter
135
  msgid "Reset Settings"
136
  msgstr "Réinitialiser les paramètres"
137
 
138
+ #: crayon_settings_wp.class.php:429
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Hauteur"
142
 
143
+ #: crayon_settings_wp.class.php:435
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Largeur"
147
 
148
+ #: crayon_settings_wp.class.php:441
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Marge supérieure"
152
 
153
+ #: crayon_settings_wp.class.php:442
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "La marge du bas"
157
 
158
+ #: crayon_settings_wp.class.php:443
159
+ #: crayon_settings_wp.class.php:448
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Marge de gauche"
163
 
164
+ #: crayon_settings_wp.class.php:444
165
+ #: crayon_settings_wp.class.php:448
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Marge droite"
169
 
170
+ #: crayon_settings_wp.class.php:454
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Alignement horizontal"
174
 
175
+ #: crayon_settings_wp.class.php:457
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:462
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Afficher la barre d'outils"
184
 
185
+ #: crayon_settings_wp.class.php:465
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:466
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:467
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:469
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:470
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Affichage de la langue"
209
 
210
+ #: crayon_settings_wp.class.php:475
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:476
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:477
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:478
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:479
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:489
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
  #, php-format
242
  #@ crayon-syntax-highlighter
243
  msgid "%d language has been detected"
245
  msgstr[0] "%d la langue a été détectée"
246
  msgstr[1] "%d langues ont été détectés"
247
 
248
+ #: crayon_settings_wp.class.php:502
249
  #@ crayon-syntax-highlighter
250
  msgid "Parsing was successful"
251
  msgstr "Parsing a réussi"
252
 
253
+ #: crayon_settings_wp.class.php:502
254
  #@ crayon-syntax-highlighter
255
  msgid "Parsing was unsuccessful"
256
  msgstr "Parsing a échoué"
257
 
258
+ #: crayon_settings_wp.class.php:508
259
  #, php-format
260
  #@ crayon-syntax-highlighter
261
  msgid "The selected language with id %s could not be loaded"
262
  msgstr "La langue sélectionnée avec id %s ne pouvait pas être chargé"
263
 
264
+ #: crayon_settings_wp.class.php:512
265
  #@ crayon-syntax-highlighter
266
  msgid "Show Languages"
267
  msgstr "Voir langues"
268
 
269
+ #: crayon_settings_wp.class.php:533
270
  #@ crayon-syntax-highlighter
271
  msgid "Enable Live Preview"
272
  msgstr "Activer l'aperçu en direct"
273
 
274
+ #: crayon_settings_wp.class.php:536
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected theme with id %s could not be loaded"
278
  msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
279
 
280
+ #: crayon_settings_wp.class.php:550
281
  #@ crayon-syntax-highlighter
282
  msgid "Theme Default"
283
  msgstr "Thème par défaut"
284
 
285
+ #: crayon_settings_wp.class.php:554
286
  #@ crayon-syntax-highlighter
287
  msgid "Custom Font Size"
288
  msgstr "Taille du texte personnalisé"
289
 
290
+ #: crayon_settings_wp.class.php:559
291
  #, php-format
292
  #@ crayon-syntax-highlighter
293
  msgid "The selected font with id %s could not be loaded"
294
  msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
295
 
296
+ #: crayon_settings_wp.class.php:564
297
  #@ crayon-syntax-highlighter
298
  msgid "Enable plain code view and display"
299
  msgstr "Activer le mode code clair et d'affichage"
300
 
301
+ #: crayon_settings_wp.class.php:567
302
  #@ crayon-syntax-highlighter
303
  msgid "Enable code copy/paste"
304
  msgstr "Activer copiez le code/coller"
305
 
306
+ #: crayon_settings_wp.class.php:569
307
  #@ crayon-syntax-highlighter
308
  msgid "Enable opening code in a window"
309
  msgstr "Activer code d'ouverture dans une fenêtre"
310
 
311
+ #: crayon_settings_wp.class.php:570
312
  #@ crayon-syntax-highlighter
313
  msgid "Display scrollbars (when needed)"
314
  msgstr "Affichage des barres de défilement (si nécessaire)"
315
 
316
+ #: crayon_settings_wp.class.php:572
317
  #@ crayon-syntax-highlighter
318
  msgid "Tab size in spaces"
319
  msgstr "Taille des tabulations dans les espaces"
320
 
321
+ #: crayon_settings_wp.class.php:574
322
  #@ crayon-syntax-highlighter
323
  msgid "Remove whitespace surrounding the shortcode content"
324
  msgstr "Enlevez les espaces entourant le contenu shortcode"
325
 
326
+ #: crayon_settings_wp.class.php:579
327
  #@ crayon-syntax-highlighter
328
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
329
  msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
330
 
331
+ #: crayon_settings_wp.class.php:582
332
  #@ crayon-syntax-highlighter
333
  msgid "Followed by your relative URL"
334
  msgstr "Suivi de votre URL relative"
335
 
336
+ #: crayon_settings_wp.class.php:586
337
  #@ crayon-syntax-highlighter
338
  msgid "Clear the cache used to store remote code requests"
339
  msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
340
 
341
+ #: crayon_settings_wp.class.php:588
342
  #@ crayon-syntax-highlighter
343
  msgid "Clear Now"
344
  msgstr "Effacer maintenant"
345
 
346
+ #: crayon_settings_wp.class.php:590
347
  #@ crayon-syntax-highlighter
348
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
349
  msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
350
 
351
+ #: crayon_settings_wp.class.php:591
352
  #@ crayon-syntax-highlighter
353
  msgid "Disable animations"
354
  msgstr "Désactiver les animations"
355
 
356
+ #: crayon_settings_wp.class.php:592
357
  #@ crayon-syntax-highlighter
358
  msgid "Disable runtime stats"
359
  msgstr "Désactiver l'exécution stats"
360
 
361
+ #: crayon_settings_wp.class.php:599
362
  #@ crayon-syntax-highlighter
363
  msgid "Log errors for individual Crayons"
364
  msgstr "Connexion pour les erreurs individuelles Crayons"
365
 
366
+ #: crayon_settings_wp.class.php:600
367
  #@ crayon-syntax-highlighter
368
  msgid "Log system-wide errors"
369
  msgstr "Connexion échelle du système des erreurs"
370
 
371
+ #: crayon_settings_wp.class.php:601
372
  #@ crayon-syntax-highlighter
373
  msgid "Display custom message for errors"
374
  msgstr "Afficher un message personnalisé pour les erreurs"
375
 
376
+ #: crayon_settings_wp.class.php:613
377
  #@ crayon-syntax-highlighter
378
  msgid "Show Log"
379
  msgstr "Afficher le journal"
380
 
381
+ #: crayon_settings_wp.class.php:615
382
  #@ crayon-syntax-highlighter
383
  msgid "Clear Log"
384
  msgstr "Effacer le journal"
385
 
386
+ #: crayon_settings_wp.class.php:616
387
  #@ crayon-syntax-highlighter
388
  msgid "Email Admin"
389
  msgstr "Admin Email"
390
 
391
+ #: crayon_settings_wp.class.php:618
392
  #@ crayon-syntax-highlighter
393
  msgid "Email Developer"
394
  msgstr "Développeur Email"
395
 
396
+ #: crayon_settings_wp.class.php:620
397
  #@ crayon-syntax-highlighter
398
  msgid "The log is currently empty"
399
  msgstr "Le journal est actuellement vide"
400
 
401
+ #: crayon_settings_wp.class.php:622
402
  #@ crayon-syntax-highlighter
403
  msgid "The log file exists and is writable"
404
  msgstr "Le fichier journal existe et est accessible en écriture"
405
 
406
+ #: crayon_settings_wp.class.php:622
407
  #@ crayon-syntax-highlighter
408
  msgid "The log file exists and is not writable"
409
  msgstr "Le fichier journal existe et n'est pas accessible en écriture"
410
 
411
+ #: crayon_settings_wp.class.php:624
412
  #@ crayon-syntax-highlighter
413
  msgid "The log file does not exist and is not writable"
414
  msgstr "Le fichier journal n'existe pas et n'est pas modifiable"
415
 
416
+ #: crayon_settings_wp.class.php:634
417
  #@ crayon-syntax-highlighter
418
  msgid "Version"
419
  msgstr "Version"
420
 
421
+ #: crayon_settings_wp.class.php:636
422
  #@ crayon-syntax-highlighter
423
  msgid "Developer"
424
  msgstr "Développeur"
425
 
426
+ #: crayon_settings_wp.class.php:660
427
  #@ crayon-syntax-highlighter
428
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
429
  msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
434
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
435
  msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
436
 
437
+ #: crayon_settings.class.php:90
438
  #@ crayon-syntax-highlighter
439
  msgid "Hourly"
440
  msgstr "Horaires"
441
 
442
+ #: crayon_settings.class.php:90
443
  #@ crayon-syntax-highlighter
444
  msgid "Daily"
445
  msgstr "Daily"
446
 
447
+ #: crayon_settings.class.php:91
448
  #@ crayon-syntax-highlighter
449
  msgid "Weekly"
450
  msgstr "Hebdomadaire"
451
 
452
+ #: crayon_settings.class.php:91
453
  #@ crayon-syntax-highlighter
454
  msgid "Monthly"
455
  msgstr "Mensuel"
456
 
457
+ #: crayon_settings.class.php:92
458
  #@ crayon-syntax-highlighter
459
  msgid "Immediately"
460
  msgstr "Immédiatement"
461
 
462
+ #: crayon_settings_wp.class.php:415
463
+ #@ crayon-syntax-highlighter
464
+ msgid "Crayon Help"
465
+ msgstr "Aide Crayon"
466
+
467
+ #: crayon_settings_wp.class.php:589
468
+ #@ crayon-syntax-highlighter
469
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
470
+ msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
471
+
472
+ #: crayon_settings_wp.class.php:589
473
+ #@ crayon-syntax-highlighter
474
+ msgid "Why?"
475
+ msgstr "Pourquoi?"
476
+
trans/crayon-syntax-highlighter-it_IT.mo CHANGED
Binary file
trans/crayon-syntax-highlighter-it_IT.po CHANGED
@@ -19,225 +19,225 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:115
23
- #: crayon_settings.class.php:119
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
- #: crayon_settings.class.php:115
29
- #: crayon_settings.class.php:119
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
- #: crayon_settings.class.php:115
35
- #: crayon_settings.class.php:119
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statico"
39
 
40
- #: crayon_settings.class.php:117
41
- #: crayon_settings.class.php:121
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
- #: crayon_settings.class.php:117
47
- #: crayon_settings.class.php:121
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Per cento"
51
 
52
- #: crayon_settings.class.php:130
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Nessuno"
56
 
57
- #: crayon_settings.class.php:130
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Sinistra"
61
 
62
- #: crayon_settings.class.php:130
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centro"
66
 
67
- #: crayon_settings.class.php:130
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Destra"
71
 
72
- #: crayon_settings.class.php:132
73
- #: crayon_settings.class.php:149
74
- #: crayon_settings.class.php:152
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Al passaggio del mouse"
78
 
79
- #: crayon_settings.class.php:132
80
- #: crayon_settings.class.php:138
81
- #: crayon_settings.class.php:149
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Sempre"
85
 
86
- #: crayon_settings.class.php:132
87
- #: crayon_settings.class.php:138
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Mai"
91
 
92
- #: crayon_settings.class.php:138
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Quando Trovato"
96
 
97
- #: crayon_settings.class.php:152
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Su doppio click"
101
 
102
- #: crayon_settings.class.php:152
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Il singolo click"
106
 
107
- #: crayon_settings.class.php:152
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Utilizzando solo passare"
111
 
112
- #: crayon_settings.class.php:160
113
  #@ crayon-syntax-highlighter
114
  msgid "An error has occurred. Please try again later."
115
  msgstr "È verificato un errore. Riprova più tardi."
116
 
117
  #: crayon_settings_wp.class.php:38
118
- #: crayon_settings_wp.class.php:70
119
  #@ crayon-syntax-highlighter
120
  msgid "Settings"
121
  msgstr "Impostazioni"
122
 
123
- #: crayon_settings_wp.class.php:63
124
  #@ crayon-syntax-highlighter
125
  msgid "You do not have sufficient permissions to access this page."
126
  msgstr "Non si dispone di autorizzazioni sufficienti per accedere a questa pagina."
127
 
128
- #: crayon_settings_wp.class.php:82
129
  #@ crayon-syntax-highlighter
130
  msgid "Save Changes"
131
  msgstr "Salva le modifiche"
132
 
133
- #: crayon_settings_wp.class.php:88
134
  #@ crayon-syntax-highlighter
135
  msgid "Reset Settings"
136
  msgstr "Ripristina Impostazioni"
137
 
138
- #: crayon_settings_wp.class.php:401
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Altezza"
142
 
143
- #: crayon_settings_wp.class.php:407
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Larghezza"
147
 
148
- #: crayon_settings_wp.class.php:413
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Margine superiore"
152
 
153
- #: crayon_settings_wp.class.php:414
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Basso margine"
157
 
158
- #: crayon_settings_wp.class.php:415
159
- #: crayon_settings_wp.class.php:420
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Margine sinistro"
163
 
164
- #: crayon_settings_wp.class.php:416
165
- #: crayon_settings_wp.class.php:420
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Margine destro"
169
 
170
- #: crayon_settings_wp.class.php:426
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Allineamento orizzontale"
174
 
175
- #: crayon_settings_wp.class.php:429
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:434
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Visualizzare la barra degli strumenti"
184
 
185
- #: crayon_settings_wp.class.php:437
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:438
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:439
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:441
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:442
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Visualizzare la lingua"
209
 
210
- #: crayon_settings_wp.class.php:447
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:448
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:449
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:450
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Abilita numero di commutazione linea"
229
 
230
- #: crayon_settings_wp.class.php:451
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Inizio numeri di riga da"
234
 
235
- #: crayon_settings_wp.class.php:461
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:473
241
  #, php-format
242
  #@ crayon-syntax-highlighter
243
  msgid "%d language has been detected"
@@ -245,185 +245,185 @@ msgid_plural "%d languages have been detected"
245
  msgstr[0] "%d lingua è stata rilevata"
246
  msgstr[1] "%d lingue sono state rilevate"
247
 
248
- #: crayon_settings_wp.class.php:474
249
  #@ crayon-syntax-highlighter
250
  msgid "Parsing was successful"
251
  msgstr "L'analisi ha avuto successo"
252
 
253
- #: crayon_settings_wp.class.php:474
254
  #@ crayon-syntax-highlighter
255
  msgid "Parsing was unsuccessful"
256
  msgstr "L'analisi non ha avuto successo"
257
 
258
- #: crayon_settings_wp.class.php:482
259
  #, php-format
260
  #@ crayon-syntax-highlighter
261
  msgid "The selected language with id %s could not be loaded"
262
  msgstr "La lingua selezionata con id %s non può essere caricato"
263
 
264
- #: crayon_settings_wp.class.php:486
265
  #@ crayon-syntax-highlighter
266
  msgid "Show Languages"
267
  msgstr "Mostra Lingue"
268
 
269
- #: crayon_settings_wp.class.php:507
270
  #@ crayon-syntax-highlighter
271
  msgid "Enable Live Preview"
272
  msgstr "Attiva anteprima dal vivo"
273
 
274
- #: crayon_settings_wp.class.php:512
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected theme with id %s could not be loaded"
278
  msgstr "La tema selezionata con id %s non può essere caricato"
279
 
280
- #: crayon_settings_wp.class.php:526
281
  #@ crayon-syntax-highlighter
282
  msgid "Theme Default"
283
  msgstr "Tema di Default"
284
 
285
- #: crayon_settings_wp.class.php:530
286
  #@ crayon-syntax-highlighter
287
  msgid "Custom Font Size"
288
  msgstr "Dimensione del carattere personalizzati"
289
 
290
- #: crayon_settings_wp.class.php:537
291
  #, php-format
292
  #@ crayon-syntax-highlighter
293
  msgid "The selected font with id %s could not be loaded"
294
  msgstr "La font selezionata con id %s non può essere caricato"
295
 
296
- #: crayon_settings_wp.class.php:542
297
  #@ crayon-syntax-highlighter
298
  msgid "Enable plain code view and display"
299
  msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
300
 
301
- #: crayon_settings_wp.class.php:545
302
  #@ crayon-syntax-highlighter
303
  msgid "Enable code copy/paste"
304
  msgstr "Abilita copiare il codice/incolla"
305
 
306
- #: crayon_settings_wp.class.php:547
307
  #@ crayon-syntax-highlighter
308
  msgid "Enable opening code in a window"
309
  msgstr "Abilita il codice di apertura in una finestra"
310
 
311
- #: crayon_settings_wp.class.php:548
312
  #@ crayon-syntax-highlighter
313
  msgid "Display scrollbars (when needed)"
314
  msgstr "Barre di scorrimento del display (quando necessario)"
315
 
316
- #: crayon_settings_wp.class.php:550
317
  #@ crayon-syntax-highlighter
318
  msgid "Tab size in spaces"
319
  msgstr "Dimensione tabulazione in spazi"
320
 
321
- #: crayon_settings_wp.class.php:552
322
  #@ crayon-syntax-highlighter
323
  msgid "Remove whitespace surrounding the shortcode content"
324
  msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
325
 
326
- #: crayon_settings_wp.class.php:557
327
  #@ crayon-syntax-highlighter
328
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
329
  msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
330
 
331
- #: crayon_settings_wp.class.php:560
332
  #@ crayon-syntax-highlighter
333
  msgid "Followed by your relative URL"
334
  msgstr "Seguito dal relativo URL"
335
 
336
- #: crayon_settings_wp.class.php:564
337
  #@ crayon-syntax-highlighter
338
  msgid "Clear the cache used to store remote code requests"
339
  msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
340
 
341
- #: crayon_settings_wp.class.php:566
342
  #@ crayon-syntax-highlighter
343
  msgid "Clear Now"
344
  msgstr "Svuota adesso"
345
 
346
- #: crayon_settings_wp.class.php:567
347
  #@ crayon-syntax-highlighter
348
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
349
  msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
350
 
351
- #: crayon_settings_wp.class.php:568
352
  #@ crayon-syntax-highlighter
353
  msgid "Disable animations"
354
  msgstr "Disattivare le animazioni"
355
 
356
- #: crayon_settings_wp.class.php:569
357
  #@ crayon-syntax-highlighter
358
  msgid "Disable runtime stats"
359
  msgstr "Disabilitare runtime stats"
360
 
361
- #: crayon_settings_wp.class.php:576
362
  #@ crayon-syntax-highlighter
363
  msgid "Log errors for individual Crayons"
364
  msgstr "Errori nel registro di Crayons singoli"
365
 
366
- #: crayon_settings_wp.class.php:577
367
  #@ crayon-syntax-highlighter
368
  msgid "Log system-wide errors"
369
  msgstr "Log di sistema a livello di errori"
370
 
371
- #: crayon_settings_wp.class.php:578
372
  #@ crayon-syntax-highlighter
373
  msgid "Display custom message for errors"
374
  msgstr "Display messaggio personalizzato per gli errori"
375
 
376
- #: crayon_settings_wp.class.php:590
377
  #@ crayon-syntax-highlighter
378
  msgid "Show Log"
379
  msgstr "Mostra registro"
380
 
381
- #: crayon_settings_wp.class.php:592
382
  #@ crayon-syntax-highlighter
383
  msgid "Clear Log"
384
  msgstr "Cancella registro"
385
 
386
- #: crayon_settings_wp.class.php:593
387
  #@ crayon-syntax-highlighter
388
  msgid "Email Admin"
389
  msgstr "E-mail Admin"
390
 
391
- #: crayon_settings_wp.class.php:595
392
  #@ crayon-syntax-highlighter
393
  msgid "Email Developer"
394
  msgstr "Email Developer"
395
 
396
- #: crayon_settings_wp.class.php:597
397
  #@ crayon-syntax-highlighter
398
  msgid "The log is currently empty"
399
  msgstr "Il registro è vuoto"
400
 
401
- #: crayon_settings_wp.class.php:599
402
  #@ crayon-syntax-highlighter
403
  msgid "The log file exists and is writable"
404
  msgstr "Il file di registro esiste ed è scrivibile"
405
 
406
- #: crayon_settings_wp.class.php:599
407
  #@ crayon-syntax-highlighter
408
  msgid "The log file exists and is not writable"
409
  msgstr "Il file di registro esiste e non è scrivibile"
410
 
411
- #: crayon_settings_wp.class.php:601
412
  #@ crayon-syntax-highlighter
413
  msgid "The log file does not exist and is not writable"
414
  msgstr "Il file di registro non esiste e non è scrivibile"
415
 
416
- #: crayon_settings_wp.class.php:611
417
  #@ crayon-syntax-highlighter
418
  msgid "Version"
419
  msgstr "Versione"
420
 
421
- #: crayon_settings_wp.class.php:613
422
  #@ crayon-syntax-highlighter
423
  msgid "Developer"
424
  msgstr "Sviluppatore"
425
 
426
- #: crayon_settings_wp.class.php:637
427
  #@ crayon-syntax-highlighter
428
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
429
  msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
@@ -434,28 +434,43 @@ msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un pr
434
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
435
  msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
436
 
437
- #: crayon_settings.class.php:89
438
  #@ crayon-syntax-highlighter
439
  msgid "Hourly"
440
  msgstr "Ogni ora"
441
 
442
- #: crayon_settings.class.php:89
443
  #@ crayon-syntax-highlighter
444
  msgid "Daily"
445
  msgstr "Quotidiano"
446
 
447
- #: crayon_settings.class.php:90
448
  #@ crayon-syntax-highlighter
449
  msgid "Weekly"
450
  msgstr "Settimanale"
451
 
452
- #: crayon_settings.class.php:90
453
  #@ crayon-syntax-highlighter
454
  msgid "Monthly"
455
  msgstr "Mensile"
456
 
457
- #: crayon_settings.class.php:91
458
  #@ crayon-syntax-highlighter
459
  msgid "Immediately"
460
  msgstr "Immediatamente"
461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: crayon_settings.class.php:116
23
+ #: crayon_settings.class.php:120
24
  #@ crayon-syntax-highlighter
25
  msgid "Max"
26
  msgstr "Max"
27
 
28
+ #: crayon_settings.class.php:116
29
+ #: crayon_settings.class.php:120
30
  #@ crayon-syntax-highlighter
31
  msgid "Min"
32
  msgstr "Min"
33
 
34
+ #: crayon_settings.class.php:116
35
+ #: crayon_settings.class.php:120
36
  #@ crayon-syntax-highlighter
37
  msgid "Static"
38
  msgstr "Statico"
39
 
40
+ #: crayon_settings.class.php:118
41
+ #: crayon_settings.class.php:122
42
  #@ crayon-syntax-highlighter
43
  msgid "Pixels"
44
  msgstr "Pixels"
45
 
46
+ #: crayon_settings.class.php:118
47
+ #: crayon_settings.class.php:122
48
  #@ crayon-syntax-highlighter
49
  msgid "Percent"
50
  msgstr "Per cento"
51
 
52
+ #: crayon_settings.class.php:131
53
  #@ crayon-syntax-highlighter
54
  msgid "None"
55
  msgstr "Nessuno"
56
 
57
+ #: crayon_settings.class.php:131
58
  #@ crayon-syntax-highlighter
59
  msgid "Left"
60
  msgstr "Sinistra"
61
 
62
+ #: crayon_settings.class.php:131
63
  #@ crayon-syntax-highlighter
64
  msgid "Center"
65
  msgstr "Centro"
66
 
67
+ #: crayon_settings.class.php:131
68
  #@ crayon-syntax-highlighter
69
  msgid "Right"
70
  msgstr "Destra"
71
 
72
+ #: crayon_settings.class.php:133
73
+ #: crayon_settings.class.php:150
74
+ #: crayon_settings.class.php:153
75
  #@ crayon-syntax-highlighter
76
  msgid "On MouseOver"
77
  msgstr "Al passaggio del mouse"
78
 
79
+ #: crayon_settings.class.php:133
80
+ #: crayon_settings.class.php:139
81
+ #: crayon_settings.class.php:150
82
  #@ crayon-syntax-highlighter
83
  msgid "Always"
84
  msgstr "Sempre"
85
 
86
+ #: crayon_settings.class.php:133
87
+ #: crayon_settings.class.php:139
88
  #@ crayon-syntax-highlighter
89
  msgid "Never"
90
  msgstr "Mai"
91
 
92
+ #: crayon_settings.class.php:139
93
  #@ crayon-syntax-highlighter
94
  msgid "When Found"
95
  msgstr "Quando Trovato"
96
 
97
+ #: crayon_settings.class.php:153
98
  #@ crayon-syntax-highlighter
99
  msgid "On Double Click"
100
  msgstr "Su doppio click"
101
 
102
+ #: crayon_settings.class.php:153
103
  #@ crayon-syntax-highlighter
104
  msgid "On Single Click"
105
  msgstr "Il singolo click"
106
 
107
+ #: crayon_settings.class.php:153
108
  #@ crayon-syntax-highlighter
109
  msgid "Only Using Toggle"
110
  msgstr "Utilizzando solo passare"
111
 
112
+ #: crayon_settings.class.php:161
113
  #@ crayon-syntax-highlighter
114
  msgid "An error has occurred. Please try again later."
115
  msgstr "È verificato un errore. Riprova più tardi."
116
 
117
  #: crayon_settings_wp.class.php:38
118
+ #: crayon_settings_wp.class.php:76
119
  #@ crayon-syntax-highlighter
120
  msgid "Settings"
121
  msgstr "Impostazioni"
122
 
123
+ #: crayon_settings_wp.class.php:69
124
  #@ crayon-syntax-highlighter
125
  msgid "You do not have sufficient permissions to access this page."
126
  msgstr "Non si dispone di autorizzazioni sufficienti per accedere a questa pagina."
127
 
128
+ #: crayon_settings_wp.class.php:88
129
  #@ crayon-syntax-highlighter
130
  msgid "Save Changes"
131
  msgstr "Salva le modifiche"
132
 
133
+ #: crayon_settings_wp.class.php:94
134
  #@ crayon-syntax-highlighter
135
  msgid "Reset Settings"
136
  msgstr "Ripristina Impostazioni"
137
 
138
+ #: crayon_settings_wp.class.php:429
139
  #@ crayon-syntax-highlighter
140
  msgid "Height"
141
  msgstr "Altezza"
142
 
143
+ #: crayon_settings_wp.class.php:435
144
  #@ crayon-syntax-highlighter
145
  msgid "Width"
146
  msgstr "Larghezza"
147
 
148
+ #: crayon_settings_wp.class.php:441
149
  #@ crayon-syntax-highlighter
150
  msgid "Top Margin"
151
  msgstr "Margine superiore"
152
 
153
+ #: crayon_settings_wp.class.php:442
154
  #@ crayon-syntax-highlighter
155
  msgid "Bottom Margin"
156
  msgstr "Basso margine"
157
 
158
+ #: crayon_settings_wp.class.php:443
159
+ #: crayon_settings_wp.class.php:448
160
  #@ crayon-syntax-highlighter
161
  msgid "Left Margin"
162
  msgstr "Margine sinistro"
163
 
164
+ #: crayon_settings_wp.class.php:444
165
+ #: crayon_settings_wp.class.php:448
166
  #@ crayon-syntax-highlighter
167
  msgid "Right Margin"
168
  msgstr "Margine destro"
169
 
170
+ #: crayon_settings_wp.class.php:454
171
  #@ crayon-syntax-highlighter
172
  msgid "Horizontal Alignment"
173
  msgstr "Allineamento orizzontale"
174
 
175
+ #: crayon_settings_wp.class.php:457
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:462
181
  #@ crayon-syntax-highlighter
182
  msgid "Display the Toolbar"
183
  msgstr "Visualizzare la barra degli strumenti"
184
 
185
+ #: crayon_settings_wp.class.php:465
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:466
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:467
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:469
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:470
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the language"
208
  msgstr "Visualizzare la lingua"
209
 
210
+ #: crayon_settings_wp.class.php:475
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:476
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:477
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:478
226
  #@ crayon-syntax-highlighter
227
  msgid "Enable line number toggling"
228
  msgstr "Abilita numero di commutazione linea"
229
 
230
+ #: crayon_settings_wp.class.php:479
231
  #@ crayon-syntax-highlighter
232
  msgid "Start line numbers from"
233
  msgstr "Inizio numeri di riga da"
234
 
235
+ #: crayon_settings_wp.class.php:489
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
  #, php-format
242
  #@ crayon-syntax-highlighter
243
  msgid "%d language has been detected"
245
  msgstr[0] "%d lingua è stata rilevata"
246
  msgstr[1] "%d lingue sono state rilevate"
247
 
248
+ #: crayon_settings_wp.class.php:502
249
  #@ crayon-syntax-highlighter
250
  msgid "Parsing was successful"
251
  msgstr "L'analisi ha avuto successo"
252
 
253
+ #: crayon_settings_wp.class.php:502
254
  #@ crayon-syntax-highlighter
255
  msgid "Parsing was unsuccessful"
256
  msgstr "L'analisi non ha avuto successo"
257
 
258
+ #: crayon_settings_wp.class.php:508
259
  #, php-format
260
  #@ crayon-syntax-highlighter
261
  msgid "The selected language with id %s could not be loaded"
262
  msgstr "La lingua selezionata con id %s non può essere caricato"
263
 
264
+ #: crayon_settings_wp.class.php:512
265
  #@ crayon-syntax-highlighter
266
  msgid "Show Languages"
267
  msgstr "Mostra Lingue"
268
 
269
+ #: crayon_settings_wp.class.php:533
270
  #@ crayon-syntax-highlighter
271
  msgid "Enable Live Preview"
272
  msgstr "Attiva anteprima dal vivo"
273
 
274
+ #: crayon_settings_wp.class.php:536
275
  #, php-format
276
  #@ crayon-syntax-highlighter
277
  msgid "The selected theme with id %s could not be loaded"
278
  msgstr "La tema selezionata con id %s non può essere caricato"
279
 
280
+ #: crayon_settings_wp.class.php:550
281
  #@ crayon-syntax-highlighter
282
  msgid "Theme Default"
283
  msgstr "Tema di Default"
284
 
285
+ #: crayon_settings_wp.class.php:554
286
  #@ crayon-syntax-highlighter
287
  msgid "Custom Font Size"
288
  msgstr "Dimensione del carattere personalizzati"
289
 
290
+ #: crayon_settings_wp.class.php:559
291
  #, php-format
292
  #@ crayon-syntax-highlighter
293
  msgid "The selected font with id %s could not be loaded"
294
  msgstr "La font selezionata con id %s non può essere caricato"
295
 
296
+ #: crayon_settings_wp.class.php:564
297
  #@ crayon-syntax-highlighter
298
  msgid "Enable plain code view and display"
299
  msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
300
 
301
+ #: crayon_settings_wp.class.php:567
302
  #@ crayon-syntax-highlighter
303
  msgid "Enable code copy/paste"
304
  msgstr "Abilita copiare il codice/incolla"
305
 
306
+ #: crayon_settings_wp.class.php:569
307
  #@ crayon-syntax-highlighter
308
  msgid "Enable opening code in a window"
309
  msgstr "Abilita il codice di apertura in una finestra"
310
 
311
+ #: crayon_settings_wp.class.php:570
312
  #@ crayon-syntax-highlighter
313
  msgid "Display scrollbars (when needed)"
314
  msgstr "Barre di scorrimento del display (quando necessario)"
315
 
316
+ #: crayon_settings_wp.class.php:572
317
  #@ crayon-syntax-highlighter
318
  msgid "Tab size in spaces"
319
  msgstr "Dimensione tabulazione in spazi"
320
 
321
+ #: crayon_settings_wp.class.php:574
322
  #@ crayon-syntax-highlighter
323
  msgid "Remove whitespace surrounding the shortcode content"
324
  msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
325
 
326
+ #: crayon_settings_wp.class.php:579
327
  #@ crayon-syntax-highlighter
328
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
329
  msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
330
 
331
+ #: crayon_settings_wp.class.php:582
332
  #@ crayon-syntax-highlighter
333
  msgid "Followed by your relative URL"
334
  msgstr "Seguito dal relativo URL"
335
 
336
+ #: crayon_settings_wp.class.php:586
337
  #@ crayon-syntax-highlighter
338
  msgid "Clear the cache used to store remote code requests"
339
  msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
340
 
341
+ #: crayon_settings_wp.class.php:588
342
  #@ crayon-syntax-highlighter
343
  msgid "Clear Now"
344
  msgstr "Svuota adesso"
345
 
346
+ #: crayon_settings_wp.class.php:590
347
  #@ crayon-syntax-highlighter
348
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
349
  msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
350
 
351
+ #: crayon_settings_wp.class.php:591
352
  #@ crayon-syntax-highlighter
353
  msgid "Disable animations"
354
  msgstr "Disattivare le animazioni"
355
 
356
+ #: crayon_settings_wp.class.php:592
357
  #@ crayon-syntax-highlighter
358
  msgid "Disable runtime stats"
359
  msgstr "Disabilitare runtime stats"
360
 
361
+ #: crayon_settings_wp.class.php:599
362
  #@ crayon-syntax-highlighter
363
  msgid "Log errors for individual Crayons"
364
  msgstr "Errori nel registro di Crayons singoli"
365
 
366
+ #: crayon_settings_wp.class.php:600
367
  #@ crayon-syntax-highlighter
368
  msgid "Log system-wide errors"
369
  msgstr "Log di sistema a livello di errori"
370
 
371
+ #: crayon_settings_wp.class.php:601
372
  #@ crayon-syntax-highlighter
373
  msgid "Display custom message for errors"
374
  msgstr "Display messaggio personalizzato per gli errori"
375
 
376
+ #: crayon_settings_wp.class.php:613
377
  #@ crayon-syntax-highlighter
378
  msgid "Show Log"
379
  msgstr "Mostra registro"
380
 
381
+ #: crayon_settings_wp.class.php:615
382
  #@ crayon-syntax-highlighter
383
  msgid "Clear Log"
384
  msgstr "Cancella registro"
385
 
386
+ #: crayon_settings_wp.class.php:616
387
  #@ crayon-syntax-highlighter
388
  msgid "Email Admin"
389
  msgstr "E-mail Admin"
390
 
391
+ #: crayon_settings_wp.class.php:618
392
  #@ crayon-syntax-highlighter
393
  msgid "Email Developer"
394
  msgstr "Email Developer"
395
 
396
+ #: crayon_settings_wp.class.php:620
397
  #@ crayon-syntax-highlighter
398
  msgid "The log is currently empty"
399
  msgstr "Il registro è vuoto"
400
 
401
+ #: crayon_settings_wp.class.php:622
402
  #@ crayon-syntax-highlighter
403
  msgid "The log file exists and is writable"
404
  msgstr "Il file di registro esiste ed è scrivibile"
405
 
406
+ #: crayon_settings_wp.class.php:622
407
  #@ crayon-syntax-highlighter
408
  msgid "The log file exists and is not writable"
409
  msgstr "Il file di registro esiste e non è scrivibile"
410
 
411
+ #: crayon_settings_wp.class.php:624
412
  #@ crayon-syntax-highlighter
413
  msgid "The log file does not exist and is not writable"
414
  msgstr "Il file di registro non esiste e non è scrivibile"
415
 
416
+ #: crayon_settings_wp.class.php:634
417
  #@ crayon-syntax-highlighter
418
  msgid "Version"
419
  msgstr "Versione"
420
 
421
+ #: crayon_settings_wp.class.php:636
422
  #@ crayon-syntax-highlighter
423
  msgid "Developer"
424
  msgstr "Sviluppatore"
425
 
426
+ #: crayon_settings_wp.class.php:660
427
  #@ crayon-syntax-highlighter
428
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
429
  msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
434
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
435
  msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
436
 
437
+ #: crayon_settings.class.php:90
438
  #@ crayon-syntax-highlighter
439
  msgid "Hourly"
440
  msgstr "Ogni ora"
441
 
442
+ #: crayon_settings.class.php:90
443
  #@ crayon-syntax-highlighter
444
  msgid "Daily"
445
  msgstr "Quotidiano"
446
 
447
+ #: crayon_settings.class.php:91
448
  #@ crayon-syntax-highlighter
449
  msgid "Weekly"
450
  msgstr "Settimanale"
451
 
452
+ #: crayon_settings.class.php:91
453
  #@ crayon-syntax-highlighter
454
  msgid "Monthly"
455
  msgstr "Mensile"
456
 
457
+ #: crayon_settings.class.php:92
458
  #@ crayon-syntax-highlighter
459
  msgid "Immediately"
460
  msgstr "Immediatamente"
461
 
462
+ #: crayon_settings_wp.class.php:415
463
+ #@ crayon-syntax-highlighter
464
+ msgid "Crayon Help"
465
+ msgstr "Crayon Aiuto"
466
+
467
+ #: crayon_settings_wp.class.php:589
468
+ #@ crayon-syntax-highlighter
469
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
470
+ msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
471
+
472
+ #: crayon_settings_wp.class.php:589
473
+ #@ crayon-syntax-highlighter
474
+ msgid "Why?"
475
+ msgstr "Perché?"
476
+
trans/crayon-syntax-highlighter-ru_RU.po CHANGED
@@ -19,250 +19,250 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: crayon_settings.class.php:89
23
  #@ crayon-syntax-highlighter
24
  msgid "Hourly"
25
  msgstr ""
26
 
27
- #: crayon_settings.class.php:89
28
  #@ crayon-syntax-highlighter
29
  msgid "Daily"
30
  msgstr ""
31
 
32
- #: crayon_settings.class.php:90
33
  #@ crayon-syntax-highlighter
34
  msgid "Weekly"
35
  msgstr ""
36
 
37
- #: crayon_settings.class.php:90
38
  #@ crayon-syntax-highlighter
39
  msgid "Monthly"
40
  msgstr ""
41
 
42
- #: crayon_settings.class.php:91
43
  #@ crayon-syntax-highlighter
44
  msgid "Immediately"
45
  msgstr ""
46
 
47
- #: crayon_settings.class.php:115
48
- #: crayon_settings.class.php:119
49
  #@ crayon-syntax-highlighter
50
  msgid "Max"
51
  msgstr ""
52
 
53
- #: crayon_settings.class.php:115
54
- #: crayon_settings.class.php:119
55
  #@ crayon-syntax-highlighter
56
  msgid "Min"
57
  msgstr ""
58
 
59
- #: crayon_settings.class.php:115
60
- #: crayon_settings.class.php:119
61
  #@ crayon-syntax-highlighter
62
  msgid "Static"
63
  msgstr ""
64
 
65
- #: crayon_settings.class.php:117
66
- #: crayon_settings.class.php:121
67
  #@ crayon-syntax-highlighter
68
  msgid "Pixels"
69
  msgstr ""
70
 
71
- #: crayon_settings.class.php:117
72
- #: crayon_settings.class.php:121
73
  #@ crayon-syntax-highlighter
74
  msgid "Percent"
75
  msgstr ""
76
 
77
- #: crayon_settings.class.php:130
78
  #@ crayon-syntax-highlighter
79
  msgid "None"
80
  msgstr ""
81
 
82
- #: crayon_settings.class.php:130
83
  #@ crayon-syntax-highlighter
84
  msgid "Left"
85
  msgstr ""
86
 
87
- #: crayon_settings.class.php:130
88
  #@ crayon-syntax-highlighter
89
  msgid "Center"
90
  msgstr ""
91
 
92
- #: crayon_settings.class.php:130
93
  #@ crayon-syntax-highlighter
94
  msgid "Right"
95
  msgstr ""
96
 
97
- #: crayon_settings.class.php:132
98
- #: crayon_settings.class.php:149
99
- #: crayon_settings.class.php:152
100
  #@ crayon-syntax-highlighter
101
  msgid "On MouseOver"
102
  msgstr ""
103
 
104
- #: crayon_settings.class.php:132
105
- #: crayon_settings.class.php:138
106
- #: crayon_settings.class.php:149
107
  #@ crayon-syntax-highlighter
108
  msgid "Always"
109
  msgstr ""
110
 
111
- #: crayon_settings.class.php:132
112
- #: crayon_settings.class.php:138
113
  #@ crayon-syntax-highlighter
114
  msgid "Never"
115
  msgstr ""
116
 
117
- #: crayon_settings.class.php:138
118
  #@ crayon-syntax-highlighter
119
  msgid "When Found"
120
  msgstr ""
121
 
122
- #: crayon_settings.class.php:152
123
  #@ crayon-syntax-highlighter
124
  msgid "On Double Click"
125
  msgstr ""
126
 
127
- #: crayon_settings.class.php:152
128
  #@ crayon-syntax-highlighter
129
  msgid "On Single Click"
130
  msgstr ""
131
 
132
- #: crayon_settings.class.php:152
133
  #@ crayon-syntax-highlighter
134
  msgid "Only Using Toggle"
135
  msgstr ""
136
 
137
- #: crayon_settings.class.php:160
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:70
144
  #@ crayon-syntax-highlighter
145
  msgid "Settings"
146
  msgstr ""
147
 
148
- #: crayon_settings_wp.class.php:63
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:82
154
  #@ crayon-syntax-highlighter
155
  msgid "Save Changes"
156
  msgstr ""
157
 
158
- #: crayon_settings_wp.class.php:88
159
  #@ crayon-syntax-highlighter
160
  msgid "Reset Settings"
161
  msgstr ""
162
 
163
- #: crayon_settings_wp.class.php:401
164
  #@ crayon-syntax-highlighter
165
  msgid "Height"
166
  msgstr ""
167
 
168
- #: crayon_settings_wp.class.php:407
169
  #@ crayon-syntax-highlighter
170
  msgid "Width"
171
  msgstr ""
172
 
173
- #: crayon_settings_wp.class.php:413
174
  #@ crayon-syntax-highlighter
175
  msgid "Top Margin"
176
  msgstr ""
177
 
178
- #: crayon_settings_wp.class.php:414
179
  #@ crayon-syntax-highlighter
180
  msgid "Bottom Margin"
181
  msgstr ""
182
 
183
- #: crayon_settings_wp.class.php:415
184
- #: crayon_settings_wp.class.php:420
185
  #@ crayon-syntax-highlighter
186
  msgid "Left Margin"
187
  msgstr ""
188
 
189
- #: crayon_settings_wp.class.php:416
190
- #: crayon_settings_wp.class.php:420
191
  #@ crayon-syntax-highlighter
192
  msgid "Right Margin"
193
  msgstr ""
194
 
195
- #: crayon_settings_wp.class.php:426
196
  #@ crayon-syntax-highlighter
197
  msgid "Horizontal Alignment"
198
  msgstr ""
199
 
200
- #: crayon_settings_wp.class.php:429
201
  #@ crayon-syntax-highlighter
202
  msgid "Allow floating elements to surround Crayon"
203
  msgstr ""
204
 
205
- #: crayon_settings_wp.class.php:434
206
  #@ crayon-syntax-highlighter
207
  msgid "Display the Toolbar"
208
  msgstr ""
209
 
210
- #: crayon_settings_wp.class.php:437
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:438
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:439
221
  #@ crayon-syntax-highlighter
222
  msgid "Delay hiding the toolbar on MouseOut"
223
  msgstr ""
224
 
225
- #: crayon_settings_wp.class.php:441
226
  #@ crayon-syntax-highlighter
227
  msgid "Display the title when provided"
228
  msgstr ""
229
 
230
- #: crayon_settings_wp.class.php:442
231
  #@ crayon-syntax-highlighter
232
  msgid "Display the language"
233
  msgstr ""
234
 
235
- #: crayon_settings_wp.class.php:447
236
  #@ crayon-syntax-highlighter
237
  msgid "Display striped code lines"
238
  msgstr ""
239
 
240
- #: crayon_settings_wp.class.php:448
241
  #@ crayon-syntax-highlighter
242
  msgid "Enable line marking for important lines"
243
  msgstr ""
244
 
245
- #: crayon_settings_wp.class.php:449
246
  #@ crayon-syntax-highlighter
247
  msgid "Display line numbers by default"
248
  msgstr ""
249
 
250
- #: crayon_settings_wp.class.php:450
251
  #@ crayon-syntax-highlighter
252
  msgid "Enable line number toggling"
253
  msgstr ""
254
 
255
- #: crayon_settings_wp.class.php:451
256
  #@ crayon-syntax-highlighter
257
  msgid "Start line numbers from"
258
  msgstr ""
259
 
260
- #: crayon_settings_wp.class.php:461
261
  #@ crayon-syntax-highlighter
262
  msgid "When no language is provided, use the fallback"
263
  msgstr ""
264
 
265
- #: crayon_settings_wp.class.php:473
266
  #, php-format
267
  #@ crayon-syntax-highlighter
268
  msgid "%d language has been detected"
@@ -271,185 +271,185 @@ msgstr[0] ""
271
  msgstr[1] ""
272
  msgstr[2] ""
273
 
274
- #: crayon_settings_wp.class.php:474
275
  #@ crayon-syntax-highlighter
276
  msgid "Parsing was successful"
277
  msgstr ""
278
 
279
- #: crayon_settings_wp.class.php:474
280
  #@ crayon-syntax-highlighter
281
  msgid "Parsing was unsuccessful"
282
  msgstr ""
283
 
284
- #: crayon_settings_wp.class.php:482
285
  #, php-format
286
  #@ crayon-syntax-highlighter
287
  msgid "The selected language with id %s could not be loaded"
288
  msgstr ""
289
 
290
- #: crayon_settings_wp.class.php:486
291
  #@ crayon-syntax-highlighter
292
  msgid "Show Languages"
293
  msgstr ""
294
 
295
- #: crayon_settings_wp.class.php:507
296
  #@ crayon-syntax-highlighter
297
  msgid "Enable Live Preview"
298
  msgstr ""
299
 
300
- #: crayon_settings_wp.class.php:512
301
  #, php-format
302
  #@ crayon-syntax-highlighter
303
  msgid "The selected theme with id %s could not be loaded"
304
  msgstr ""
305
 
306
- #: crayon_settings_wp.class.php:526
307
  #@ crayon-syntax-highlighter
308
  msgid "Theme Default"
309
  msgstr ""
310
 
311
- #: crayon_settings_wp.class.php:530
312
  #@ crayon-syntax-highlighter
313
  msgid "Custom Font Size"
314
  msgstr ""
315
 
316
- #: crayon_settings_wp.class.php:537
317
  #, php-format
318
  #@ crayon-syntax-highlighter
319
  msgid "The selected font with id %s could not be loaded"
320
  msgstr ""
321
 
322
- #: crayon_settings_wp.class.php:542
323
  #@ crayon-syntax-highlighter
324
  msgid "Enable plain code view and display"
325
  msgstr ""
326
 
327
- #: crayon_settings_wp.class.php:545
328
  #@ crayon-syntax-highlighter
329
  msgid "Enable code copy/paste"
330
  msgstr ""
331
 
332
- #: crayon_settings_wp.class.php:547
333
  #@ crayon-syntax-highlighter
334
  msgid "Enable opening code in a window"
335
  msgstr ""
336
 
337
- #: crayon_settings_wp.class.php:548
338
  #@ crayon-syntax-highlighter
339
  msgid "Display scrollbars (when needed)"
340
  msgstr ""
341
 
342
- #: crayon_settings_wp.class.php:550
343
  #@ crayon-syntax-highlighter
344
  msgid "Tab size in spaces"
345
  msgstr ""
346
 
347
- #: crayon_settings_wp.class.php:552
348
  #@ crayon-syntax-highlighter
349
  msgid "Remove whitespace surrounding the shortcode content"
350
  msgstr ""
351
 
352
- #: crayon_settings_wp.class.php:557
353
  #@ crayon-syntax-highlighter
354
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
355
  msgstr ""
356
 
357
- #: crayon_settings_wp.class.php:560
358
  #@ crayon-syntax-highlighter
359
  msgid "Followed by your relative URL"
360
  msgstr ""
361
 
362
- #: crayon_settings_wp.class.php:564
363
  #@ crayon-syntax-highlighter
364
  msgid "Clear the cache used to store remote code requests"
365
  msgstr ""
366
 
367
- #: crayon_settings_wp.class.php:566
368
  #@ crayon-syntax-highlighter
369
  msgid "Clear Now"
370
  msgstr ""
371
 
372
- #: crayon_settings_wp.class.php:567
373
  #@ crayon-syntax-highlighter
374
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
375
  msgstr ""
376
 
377
- #: crayon_settings_wp.class.php:568
378
  #@ crayon-syntax-highlighter
379
  msgid "Disable animations"
380
  msgstr ""
381
 
382
- #: crayon_settings_wp.class.php:569
383
  #@ crayon-syntax-highlighter
384
  msgid "Disable runtime stats"
385
  msgstr ""
386
 
387
- #: crayon_settings_wp.class.php:576
388
  #@ crayon-syntax-highlighter
389
  msgid "Log errors for individual Crayons"
390
  msgstr ""
391
 
392
- #: crayon_settings_wp.class.php:577
393
  #@ crayon-syntax-highlighter
394
  msgid "Log system-wide errors"
395
  msgstr ""
396
 
397
- #: crayon_settings_wp.class.php:578
398
  #@ crayon-syntax-highlighter
399
  msgid "Display custom message for errors"
400
  msgstr ""
401
 
402
- #: crayon_settings_wp.class.php:590
403
  #@ crayon-syntax-highlighter
404
  msgid "Show Log"
405
  msgstr ""
406
 
407
- #: crayon_settings_wp.class.php:592
408
  #@ crayon-syntax-highlighter
409
  msgid "Clear Log"
410
  msgstr ""
411
 
412
- #: crayon_settings_wp.class.php:593
413
  #@ crayon-syntax-highlighter
414
  msgid "Email Admin"
415
  msgstr ""
416
 
417
- #: crayon_settings_wp.class.php:595
418
  #@ crayon-syntax-highlighter
419
  msgid "Email Developer"
420
  msgstr ""
421
 
422
- #: crayon_settings_wp.class.php:597
423
  #@ crayon-syntax-highlighter
424
  msgid "The log is currently empty"
425
  msgstr ""
426
 
427
- #: crayon_settings_wp.class.php:599
428
  #@ crayon-syntax-highlighter
429
  msgid "The log file exists and is writable"
430
  msgstr ""
431
 
432
- #: crayon_settings_wp.class.php:599
433
  #@ crayon-syntax-highlighter
434
  msgid "The log file exists and is not writable"
435
  msgstr ""
436
 
437
- #: crayon_settings_wp.class.php:601
438
  #@ crayon-syntax-highlighter
439
  msgid "The log file does not exist and is not writable"
440
  msgstr ""
441
 
442
- #: crayon_settings_wp.class.php:611
443
  #@ crayon-syntax-highlighter
444
  msgid "Version"
445
  msgstr ""
446
 
447
- #: crayon_settings_wp.class.php:613
448
  #@ crayon-syntax-highlighter
449
  msgid "Developer"
450
  msgstr ""
451
 
452
- #: crayon_settings_wp.class.php:637
453
  #@ crayon-syntax-highlighter
454
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
455
  msgstr ""
@@ -460,3 +460,18 @@ msgstr ""
460
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
461
  msgstr ""
462
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:501
266
  #, php-format
267
  #@ crayon-syntax-highlighter
268
  msgid "%d language has been detected"
271
  msgstr[1] ""
272
  msgstr[2] ""
273
 
274
+ #: crayon_settings_wp.class.php:502
275
  #@ crayon-syntax-highlighter
276
  msgid "Parsing was successful"
277
  msgstr ""
278
 
279
+ #: crayon_settings_wp.class.php:502
280
  #@ crayon-syntax-highlighter
281
  msgid "Parsing was unsuccessful"
282
  msgstr ""
283
 
284
+ #: crayon_settings_wp.class.php:508
285
  #, php-format
286
  #@ crayon-syntax-highlighter
287
  msgid "The selected language with id %s could not be loaded"
288
  msgstr ""
289
 
290
+ #: crayon_settings_wp.class.php:512
291
  #@ crayon-syntax-highlighter
292
  msgid "Show Languages"
293
  msgstr ""
294
 
295
+ #: crayon_settings_wp.class.php:533
296
  #@ crayon-syntax-highlighter
297
  msgid "Enable Live Preview"
298
  msgstr ""
299
 
300
+ #: crayon_settings_wp.class.php:536
301
  #, php-format
302
  #@ crayon-syntax-highlighter
303
  msgid "The selected theme with id %s could not be loaded"
304
  msgstr ""
305
 
306
+ #: crayon_settings_wp.class.php:550
307
  #@ crayon-syntax-highlighter
308
  msgid "Theme Default"
309
  msgstr ""
310
 
311
+ #: crayon_settings_wp.class.php:554
312
  #@ crayon-syntax-highlighter
313
  msgid "Custom Font Size"
314
  msgstr ""
315
 
316
+ #: crayon_settings_wp.class.php:559
317
  #, php-format
318
  #@ crayon-syntax-highlighter
319
  msgid "The selected font with id %s could not be loaded"
320
  msgstr ""
321
 
322
+ #: crayon_settings_wp.class.php:564
323
  #@ crayon-syntax-highlighter
324
  msgid "Enable plain code view and display"
325
  msgstr ""
326
 
327
+ #: crayon_settings_wp.class.php:567
328
  #@ crayon-syntax-highlighter
329
  msgid "Enable code copy/paste"
330
  msgstr ""
331
 
332
+ #: crayon_settings_wp.class.php:569
333
  #@ crayon-syntax-highlighter
334
  msgid "Enable opening code in a window"
335
  msgstr ""
336
 
337
+ #: crayon_settings_wp.class.php:570
338
  #@ crayon-syntax-highlighter
339
  msgid "Display scrollbars (when needed)"
340
  msgstr ""
341
 
342
+ #: crayon_settings_wp.class.php:572
343
  #@ crayon-syntax-highlighter
344
  msgid "Tab size in spaces"
345
  msgstr ""
346
 
347
+ #: crayon_settings_wp.class.php:574
348
  #@ crayon-syntax-highlighter
349
  msgid "Remove whitespace surrounding the shortcode content"
350
  msgstr ""
351
 
352
+ #: crayon_settings_wp.class.php:579
353
  #@ crayon-syntax-highlighter
354
  msgid "When loading local files and a relative path is given for the URL, use the absolute path"
355
  msgstr ""
356
 
357
+ #: crayon_settings_wp.class.php:582
358
  #@ crayon-syntax-highlighter
359
  msgid "Followed by your relative URL"
360
  msgstr ""
361
 
362
+ #: crayon_settings_wp.class.php:586
363
  #@ crayon-syntax-highlighter
364
  msgid "Clear the cache used to store remote code requests"
365
  msgstr ""
366
 
367
+ #: crayon_settings_wp.class.php:588
368
  #@ crayon-syntax-highlighter
369
  msgid "Clear Now"
370
  msgstr ""
371
 
372
+ #: crayon_settings_wp.class.php:590
373
  #@ crayon-syntax-highlighter
374
  msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
375
  msgstr ""
376
 
377
+ #: crayon_settings_wp.class.php:591
378
  #@ crayon-syntax-highlighter
379
  msgid "Disable animations"
380
  msgstr ""
381
 
382
+ #: crayon_settings_wp.class.php:592
383
  #@ crayon-syntax-highlighter
384
  msgid "Disable runtime stats"
385
  msgstr ""
386
 
387
+ #: crayon_settings_wp.class.php:599
388
  #@ crayon-syntax-highlighter
389
  msgid "Log errors for individual Crayons"
390
  msgstr ""
391
 
392
+ #: crayon_settings_wp.class.php:600
393
  #@ crayon-syntax-highlighter
394
  msgid "Log system-wide errors"
395
  msgstr ""
396
 
397
+ #: crayon_settings_wp.class.php:601
398
  #@ crayon-syntax-highlighter
399
  msgid "Display custom message for errors"
400
  msgstr ""
401
 
402
+ #: crayon_settings_wp.class.php:613
403
  #@ crayon-syntax-highlighter
404
  msgid "Show Log"
405
  msgstr ""
406
 
407
+ #: crayon_settings_wp.class.php:615
408
  #@ crayon-syntax-highlighter
409
  msgid "Clear Log"
410
  msgstr ""
411
 
412
+ #: crayon_settings_wp.class.php:616
413
  #@ crayon-syntax-highlighter
414
  msgid "Email Admin"
415
  msgstr ""
416
 
417
+ #: crayon_settings_wp.class.php:618
418
  #@ crayon-syntax-highlighter
419
  msgid "Email Developer"
420
  msgstr ""
421
 
422
+ #: crayon_settings_wp.class.php:620
423
  #@ crayon-syntax-highlighter
424
  msgid "The log is currently empty"
425
  msgstr ""
426
 
427
+ #: crayon_settings_wp.class.php:622
428
  #@ crayon-syntax-highlighter
429
  msgid "The log file exists and is writable"
430
  msgstr ""
431
 
432
+ #: crayon_settings_wp.class.php:622
433
  #@ crayon-syntax-highlighter
434
  msgid "The log file exists and is not writable"
435
  msgstr ""
436
 
437
+ #: crayon_settings_wp.class.php:624
438
  #@ crayon-syntax-highlighter
439
  msgid "The log file does not exist and is not writable"
440
  msgstr ""
441
 
442
+ #: crayon_settings_wp.class.php:634
443
  #@ crayon-syntax-highlighter
444
  msgid "Version"
445
  msgstr ""
446
 
447
+ #: crayon_settings_wp.class.php:636
448
  #@ crayon-syntax-highlighter
449
  msgid "Developer"
450
  msgstr ""
451
 
452
+ #: crayon_settings_wp.class.php:660
453
  #@ crayon-syntax-highlighter
454
  msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
455
  msgstr ""
460
  msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
461
  msgstr ""
462
 
463
+ #: crayon_settings_wp.class.php:415
464
+ #@ crayon-syntax-highlighter
465
+ msgid "Crayon Help"
466
+ msgstr ""
467
+
468
+ #: crayon_settings_wp.class.php:589
469
+ #@ crayon-syntax-highlighter
470
+ msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
471
+ msgstr ""
472
+
473
+ #: crayon_settings_wp.class.php:589
474
+ #@ crayon-syntax-highlighter
475
+ msgid "Why?"
476
+ msgstr ""
477
+