Version Description
- Added the option of either enqueuing themes and fonts (efficient) or printing them before the Crayon each time when enqueuing fails
- Thanks to http://www.adostudio.it/ for finding the bugs
- Improved theme and font handling
- Improved theme detection and Crayon capturing
Download this release
Release Info
Developer | akarmenia |
Plugin | Crayon Syntax Highlighter |
Version | 1.7.11 |
Comparing to | |
See all releases |
Code changes from version 1.7.10 to 1.7.11
- crayon_fonts.class.php +5 -2
- crayon_formatter.class.php +11 -25
- crayon_highlighter.class.php +8 -0
- crayon_resource.class.php +20 -1
- crayon_settings.class.php +4 -0
- crayon_settings_wp.class.php +21 -16
- crayon_themes.class.php +3 -28
- crayon_wp.class.php +70 -15
- css/admin_style.css +4 -0
- readme.txt +8 -1
- trans/crayon-syntax-highlighter-de_DE.mo +0 -0
- trans/crayon-syntax-highlighter-de_DE.po +166 -84
- trans/crayon-syntax-highlighter-es_ES.mo +0 -0
- trans/crayon-syntax-highlighter-es_ES.po +166 -84
- trans/crayon-syntax-highlighter-fr_FR.mo +0 -0
- trans/crayon-syntax-highlighter-fr_FR.po +166 -84
- trans/crayon-syntax-highlighter-it_IT.mo +0 -0
- trans/crayon-syntax-highlighter-it_IT.po +166 -84
- trans/crayon-syntax-highlighter-ja.mo +0 -0
- trans/crayon-syntax-highlighter-ja.po +166 -84
- trans/crayon-syntax-highlighter-ru_RU.po +165 -83
- util/preview.php +4 -2
crayon_fonts.class.php
CHANGED
@@ -17,13 +17,11 @@ class CrayonFonts extends CrayonUsedResourceCollection {
|
|
17 |
}
|
18 |
|
19 |
// XXX Override
|
20 |
-
|
21 |
public function path($id) {
|
22 |
return CRAYON_FONT_PATH . "$id.css";
|
23 |
}
|
24 |
|
25 |
// XXX Override
|
26 |
-
|
27 |
public function load_process() {
|
28 |
if (!$this->is_state_loading()) {
|
29 |
return;
|
@@ -34,5 +32,10 @@ class CrayonFonts extends CrayonUsedResourceCollection {
|
|
34 |
|
35 |
$this->add(self::DEFAULT_FONT, $default);
|
36 |
}
|
|
|
|
|
|
|
|
|
|
|
37 |
}
|
38 |
?>
|
17 |
}
|
18 |
|
19 |
// XXX Override
|
|
|
20 |
public function path($id) {
|
21 |
return CRAYON_FONT_PATH . "$id.css";
|
22 |
}
|
23 |
|
24 |
// XXX Override
|
|
|
25 |
public function load_process() {
|
26 |
if (!$this->is_state_loading()) {
|
27 |
return;
|
32 |
|
33 |
$this->add(self::DEFAULT_FONT, $default);
|
34 |
}
|
35 |
+
|
36 |
+
// XXX Override
|
37 |
+
public function get_url($id) {
|
38 |
+
return CrayonGlobalSettings::plugin_path() . CrayonUtil::pathf(CRAYON_FONT_DIR) . $id . '.css';
|
39 |
+
}
|
40 |
}
|
41 |
?>
|
crayon_formatter.class.php
CHANGED
@@ -239,30 +239,22 @@ class CrayonFormatter {
|
|
239 |
$num_settings = ($hl->setting_val(CrayonSettings::NUMS) ? 'show' : 'hide');
|
240 |
}
|
241 |
|
242 |
-
//
|
|
|
243 |
$theme_id = $hl->setting_val(CrayonSettings::THEME);
|
244 |
-
$theme = CrayonResources::themes()->get($theme_id);
|
245 |
-
if (!$theme) {
|
246 |
-
$theme = CrayonResources::themes()->get_default();
|
247 |
-
$theme_id = CrayonThemes::DEFAULT_THEME;
|
248 |
-
}
|
249 |
$theme_id_dashed = CrayonUtil::clean_css_name($theme_id);
|
250 |
|
251 |
-
|
252 |
-
|
253 |
-
// Record usage
|
254 |
-
$theme->used(TRUE);
|
255 |
-
$output .= CrayonResources::themes()->get_theme_as_css($theme);
|
256 |
}
|
257 |
|
258 |
-
//
|
|
|
259 |
$font_id = $hl->setting_val(CrayonSettings::FONT);
|
260 |
-
$font_id_dashed = '';
|
261 |
-
|
262 |
-
if (
|
263 |
-
$
|
264 |
-
$output .= '<link rel="stylesheet" type="text/css" href="' . $url . '" />' . CRAYON_NL;
|
265 |
-
$font_id_dashed = ' crayon-font-' . CrayonUtil::clean_css_name($font_id);
|
266 |
}
|
267 |
|
268 |
// Determine font size
|
@@ -353,18 +345,12 @@ class CrayonFormatter {
|
|
353 |
// Determine if operating system is mac
|
354 |
$crayon_os = CrayonUtil::is_mac() ? 'mac' : 'pc';
|
355 |
|
356 |
-
/*
|
357 |
-
if ($hl->setting_val(CrayonSettings::FONT_SIZE_ENABLE)) {
|
358 |
-
// Produce style for individual crayon
|
359 |
-
$output .= '<style type="text/css">'.$font_style.'</style>';
|
360 |
-
}*/
|
361 |
-
|
362 |
// Produce style for individual crayon
|
363 |
$output .= '<style type="text/css">'.$font_style.'</style>';
|
364 |
|
365 |
// Produce output
|
366 |
$output .= '
|
367 |
-
<div id="'.$uid.'" class="crayon-syntax crayon-theme-'.$theme_id_dashed.$font_id_dashed.'" crayon-os="'.$crayon_os.'" settings="'.$code_settings.'" style="'.$code_style.'">
|
368 |
'.$toolbar.'
|
369 |
<div class="crayon-main" style="'.$main_style.'">
|
370 |
<table class="crayon-table" cellpadding="0" cellspacing="0">
|
239 |
$num_settings = ($hl->setting_val(CrayonSettings::NUMS) ? 'show' : 'hide');
|
240 |
}
|
241 |
|
242 |
+
// Print theme id
|
243 |
+
// We make the assumption that the id is correct (checked in crayon_wp)
|
244 |
$theme_id = $hl->setting_val(CrayonSettings::THEME);
|
|
|
|
|
|
|
|
|
|
|
245 |
$theme_id_dashed = CrayonUtil::clean_css_name($theme_id);
|
246 |
|
247 |
+
if (!$hl->setting_val(CrayonSettings::ENQUEUE_THEMES)) {
|
248 |
+
$output .= CrayonResources::themes()->get_css($theme_id);
|
|
|
|
|
|
|
249 |
}
|
250 |
|
251 |
+
// Print theme id
|
252 |
+
// We make the assumption that the id is correct (checked in crayon_wp)
|
253 |
$font_id = $hl->setting_val(CrayonSettings::FONT);
|
254 |
+
$font_id_dashed = $font_id ? 'crayon-font-' . CrayonUtil::clean_css_name($font_id) : '';
|
255 |
+
|
256 |
+
if (!$hl->setting_val(CrayonSettings::ENQUEUE_FONTS)) {
|
257 |
+
$output .= CrayonResources::fonts()->get_css($font_id);
|
|
|
|
|
258 |
}
|
259 |
|
260 |
// Determine font size
|
345 |
// Determine if operating system is mac
|
346 |
$crayon_os = CrayonUtil::is_mac() ? 'mac' : 'pc';
|
347 |
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
// Produce style for individual crayon
|
349 |
$output .= '<style type="text/css">'.$font_style.'</style>';
|
350 |
|
351 |
// Produce output
|
352 |
$output .= '
|
353 |
+
<div id="'.$uid.'" class="crayon-syntax crayon-theme-'.$theme_id_dashed.' '.$font_id_dashed.'" crayon-os="'.$crayon_os.'" settings="'.$code_settings.'" style="'.$code_style.'">
|
354 |
'.$toolbar.'
|
355 |
<div class="crayon-main" style="'.$main_style.'">
|
356 |
<table class="crayon-table" cellpadding="0" cellspacing="0">
|
crayon_highlighter.class.php
CHANGED
@@ -394,6 +394,7 @@ class CrayonHighlighter {
|
|
394 |
}
|
395 |
|
396 |
// Set and retreive settings
|
|
|
397 |
function settings($mixed = NULL) {
|
398 |
if ($this->settings == NULL) {
|
399 |
$this->settings = CrayonGlobalSettings::get_obj();
|
@@ -414,6 +415,7 @@ class CrayonHighlighter {
|
|
414 |
* return TRUE to ensure FALSE is only sent when a setting is found. This prevents a fake
|
415 |
* FALSE when the formatter checks for a positive setting (Show/Enable) and fails. When a
|
416 |
* negative setting is needed (Hide/Disable), $default_return should be set to FALSE. */
|
|
|
417 |
function setting_val($name = NULL, $default_return = TRUE) {
|
418 |
if (is_string($name) && $setting = $this->settings($name)) {
|
419 |
return $setting->value();
|
@@ -422,6 +424,12 @@ class CrayonHighlighter {
|
|
422 |
return (is_bool($default_return) ? $default_return : TRUE);
|
423 |
}
|
424 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
|
426 |
// Used to find current index in dropdown setting
|
427 |
function setting_index($name = NULL) {
|
394 |
}
|
395 |
|
396 |
// Set and retreive settings
|
397 |
+
// TODO fix this, it's too limiting
|
398 |
function settings($mixed = NULL) {
|
399 |
if ($this->settings == NULL) {
|
400 |
$this->settings = CrayonGlobalSettings::get_obj();
|
415 |
* return TRUE to ensure FALSE is only sent when a setting is found. This prevents a fake
|
416 |
* FALSE when the formatter checks for a positive setting (Show/Enable) and fails. When a
|
417 |
* negative setting is needed (Hide/Disable), $default_return should be set to FALSE. */
|
418 |
+
// TODO fix this (see above)
|
419 |
function setting_val($name = NULL, $default_return = TRUE) {
|
420 |
if (is_string($name) && $setting = $this->settings($name)) {
|
421 |
return $setting->value();
|
424 |
return (is_bool($default_return) ? $default_return : TRUE);
|
425 |
}
|
426 |
}
|
427 |
+
|
428 |
+
// Set a setting value
|
429 |
+
// TODO fix this (see above)
|
430 |
+
function setting_set($name = NULL, $value = TRUE) {
|
431 |
+
$this->settings->set($name, $value);
|
432 |
+
}
|
433 |
|
434 |
// Used to find current index in dropdown setting
|
435 |
function setting_index($name = NULL) {
|
crayon_resource.class.php
CHANGED
@@ -211,11 +211,20 @@ class CrayonResourceCollection {
|
|
211 |
return $this->dir;
|
212 |
}
|
213 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
}
|
215 |
|
216 |
class CrayonUsedResourceCollection extends CrayonResourceCollection {
|
217 |
|
218 |
-
// Checks if any
|
219 |
public function is_used($id = NULL) {
|
220 |
if ($id === NULL) {
|
221 |
foreach ($this->get() as $resource) {
|
@@ -257,6 +266,16 @@ class CrayonUsedResourceCollection extends CrayonResourceCollection {
|
|
257 |
public function resource_instance($id, $name = NULL) {
|
258 |
return new CrayonUsedResource($id, $name);
|
259 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
}
|
261 |
|
262 |
class CrayonResource {
|
211 |
return $this->dir;
|
212 |
}
|
213 |
}
|
214 |
+
|
215 |
+
public function get_url($id) {
|
216 |
+
return '';
|
217 |
+
}
|
218 |
+
|
219 |
+
public function get_css($id) {
|
220 |
+
$resource = $this->get($id);
|
221 |
+
return '<link rel="stylesheet" type="text/css" href="' . $this->get_url($resource->id()) . '" />' . CRAYON_NL;
|
222 |
+
}
|
223 |
}
|
224 |
|
225 |
class CrayonUsedResourceCollection extends CrayonResourceCollection {
|
226 |
|
227 |
+
// Checks if any resoruces are being used
|
228 |
public function is_used($id = NULL) {
|
229 |
if ($id === NULL) {
|
230 |
foreach ($this->get() as $resource) {
|
266 |
public function resource_instance($id, $name = NULL) {
|
267 |
return new CrayonUsedResource($id, $name);
|
268 |
}
|
269 |
+
|
270 |
+
public function get_used_css() {
|
271 |
+
$used = $this->get_used();
|
272 |
+
$css = array();
|
273 |
+
foreach ($used as $resource) {
|
274 |
+
$url = $this->get_url($resource->id());
|
275 |
+
$css[$resource->id()] = $url;
|
276 |
+
}
|
277 |
+
return $css;
|
278 |
+
}
|
279 |
}
|
280 |
|
281 |
class CrayonResource {
|
crayon_settings.class.php
CHANGED
@@ -75,6 +75,8 @@ class CrayonSettings {
|
|
75 |
const SHOW_MIXED = 'show_mixed';
|
76 |
const PLAIN_TAG = 'plain_tag';
|
77 |
const SHOW_PLAIN_DEFAULT = 'show-plain-default';
|
|
|
|
|
78 |
|
79 |
private static $cache_array;
|
80 |
|
@@ -176,6 +178,8 @@ class CrayonSettings {
|
|
176 |
new CrayonSetting(self::MIXED, TRUE),
|
177 |
new CrayonSetting(self::SHOW_MIXED, TRUE),
|
178 |
new CrayonSetting(self::PLAIN_TAG, TRUE),
|
|
|
|
|
179 |
);
|
180 |
|
181 |
$this->set($settings);
|
75 |
const SHOW_MIXED = 'show_mixed';
|
76 |
const PLAIN_TAG = 'plain_tag';
|
77 |
const SHOW_PLAIN_DEFAULT = 'show-plain-default';
|
78 |
+
const ENQUEUE_THEMES = 'enqueque-themes';
|
79 |
+
const ENQUEUE_FONTS = 'enqueque-fonts';
|
80 |
|
81 |
private static $cache_array;
|
82 |
|
178 |
new CrayonSetting(self::MIXED, TRUE),
|
179 |
new CrayonSetting(self::SHOW_MIXED, TRUE),
|
180 |
new CrayonSetting(self::PLAIN_TAG, TRUE),
|
181 |
+
new CrayonSetting(self::ENQUEUE_THEMES, TRUE),
|
182 |
+
new CrayonSetting(self::ENQUEUE_FONTS, TRUE),
|
183 |
);
|
184 |
|
185 |
$this->set($settings);
|
crayon_settings_wp.class.php
CHANGED
@@ -203,24 +203,24 @@ class CrayonSettingsWP {
|
|
203 |
self::load_settings();
|
204 |
// General
|
205 |
|
206 |
-
self::add_section(self::GENERAL, 'General');
|
207 |
-
self::add_field(self::GENERAL, 'Theme', 'themes');
|
208 |
-
self::add_field(self::GENERAL, 'Font', 'fonts');
|
209 |
-
self::add_field(self::GENERAL, 'Metrics', 'metrics');
|
210 |
-
self::add_field(self::GENERAL, 'Toolbar', 'toolbar');
|
211 |
-
self::add_field(self::GENERAL, 'Lines', 'lines');
|
212 |
-
self::add_field(self::GENERAL, 'Code', 'code');
|
213 |
-
self::add_field(self::GENERAL, 'Languages', 'langs');
|
214 |
-
self::add_field(self::GENERAL, 'Files', 'files');
|
215 |
-
self::add_field(self::GENERAL, 'Misc', 'misc');
|
216 |
// Debug
|
217 |
|
218 |
-
self::add_section(self::DEBUG, 'Debug');
|
219 |
-
self::add_field(self::DEBUG, 'Errors', 'errors');
|
220 |
-
self::add_field(self::DEBUG, 'Log', 'log');
|
221 |
// ABOUT
|
222 |
|
223 |
-
self::add_section(self::ABOUT, 'About');
|
224 |
$image = '<div id="crayon-logo">
|
225 |
|
226 |
<img src="' . plugins_url(CRAYON_LOGO, __FILE__) . '" /><br/></div>';
|
@@ -526,7 +526,9 @@ class CrayonSettingsWP {
|
|
526 |
}
|
527 |
echo '</select><span class="crayon-span-10"></span>';
|
528 |
// Preview checkbox
|
529 |
-
self::checkbox(array(CrayonSettings::PREVIEW, crayon__('Enable Live Preview')),
|
|
|
|
|
530 |
// Check if theme from db is loaded
|
531 |
if (!CrayonResources::themes()->is_loaded($db_theme) || !CrayonResources::themes()->exists($db_theme)) {
|
532 |
echo '<span class="crayon-error">', sprintf(crayon__('The selected theme with id %s could not be loaded'), '<strong>'.$db_theme.'</strong>'), '. </span>';
|
@@ -552,8 +554,9 @@ class CrayonSettingsWP {
|
|
552 |
echo '<span class="crayon-span-margin">Pixels</span></br>';
|
553 |
if ($db_font != CrayonFonts::DEFAULT_FONT && (!CrayonResources::fonts()->is_loaded($db_font) || !CrayonResources::fonts()->exists($db_font))) {
|
554 |
// Default font doesn't actually exist as a file, it means do not override default theme font
|
555 |
-
echo '<span class="crayon-error">', sprintf(crayon__('The selected font with id %s could not be loaded'), '<strong>'.$db_font.'</strong>'), '. </span
|
556 |
}
|
|
|
557 |
}
|
558 |
|
559 |
public static function code() {
|
@@ -672,6 +675,8 @@ class CrayonSettingsWP {
|
|
672 |
|
673 |
if (defined('ABSPATH') && is_admin()) {
|
674 |
add_action('admin_menu', 'CrayonSettingsWP::admin_load');
|
|
|
|
|
675 |
}
|
676 |
|
677 |
?>
|
203 |
self::load_settings();
|
204 |
// General
|
205 |
|
206 |
+
self::add_section(self::GENERAL, crayon__('General'));
|
207 |
+
self::add_field(self::GENERAL, crayon__('Theme'), 'themes');
|
208 |
+
self::add_field(self::GENERAL, crayon__('Font'), 'fonts');
|
209 |
+
self::add_field(self::GENERAL, crayon__('Metrics'), 'metrics');
|
210 |
+
self::add_field(self::GENERAL, crayon__('Toolbar'), 'toolbar');
|
211 |
+
self::add_field(self::GENERAL, crayon__('Lines'), 'lines');
|
212 |
+
self::add_field(self::GENERAL, crayon__('Code'), 'code');
|
213 |
+
self::add_field(self::GENERAL, crayon__('Languages'), 'langs');
|
214 |
+
self::add_field(self::GENERAL, crayon__('Files'), 'files');
|
215 |
+
self::add_field(self::GENERAL, crayon__('Misc'), 'misc');
|
216 |
// Debug
|
217 |
|
218 |
+
self::add_section(self::DEBUG, crayon__('Debug'));
|
219 |
+
self::add_field(self::DEBUG, crayon__('Errors'), 'errors');
|
220 |
+
self::add_field(self::DEBUG, crayon__('Log'), 'log');
|
221 |
// ABOUT
|
222 |
|
223 |
+
self::add_section(self::ABOUT, crayon__('About'));
|
224 |
$image = '<div id="crayon-logo">
|
225 |
|
226 |
<img src="' . plugins_url(CRAYON_LOGO, __FILE__) . '" /><br/></div>';
|
526 |
}
|
527 |
echo '</select><span class="crayon-span-10"></span>';
|
528 |
// Preview checkbox
|
529 |
+
self::checkbox(array(CrayonSettings::PREVIEW, crayon__('Enable Live Preview')), FALSE, FALSE);
|
530 |
+
echo '</select><span class="crayon-span-10"></span>';
|
531 |
+
self::checkbox(array(CrayonSettings::ENQUEUE_THEMES, crayon__('Enqueue themes in the header (more efficient).') . ' <a href="http://bit.ly/zTUAQV" target="_blank">' . crayon__('Learn More') . '</a>'));
|
532 |
// Check if theme from db is loaded
|
533 |
if (!CrayonResources::themes()->is_loaded($db_theme) || !CrayonResources::themes()->exists($db_theme)) {
|
534 |
echo '<span class="crayon-error">', sprintf(crayon__('The selected theme with id %s could not be loaded'), '<strong>'.$db_theme.'</strong>'), '. </span>';
|
554 |
echo '<span class="crayon-span-margin">Pixels</span></br>';
|
555 |
if ($db_font != CrayonFonts::DEFAULT_FONT && (!CrayonResources::fonts()->is_loaded($db_font) || !CrayonResources::fonts()->exists($db_font))) {
|
556 |
// Default font doesn't actually exist as a file, it means do not override default theme font
|
557 |
+
echo '<span class="crayon-error">', sprintf(crayon__('The selected font with id %s could not be loaded'), '<strong>'.$db_font.'</strong>'), '. </span><br/>';
|
558 |
}
|
559 |
+
self::checkbox(array(CrayonSettings::ENQUEUE_FONTS, crayon__('Enqueue fonts in the header (more efficient).') . ' <a href="http://bit.ly/zTUAQV" target="_blank">' . crayon__('Learn More') . '</a>'));
|
560 |
}
|
561 |
|
562 |
public static function code() {
|
675 |
|
676 |
if (defined('ABSPATH') && is_admin()) {
|
677 |
add_action('admin_menu', 'CrayonSettingsWP::admin_load');
|
678 |
+
// For the admin section
|
679 |
+
add_filter('plugin_row_meta', 'CrayonWP::plugin_row_meta');
|
680 |
}
|
681 |
|
682 |
?>
|
crayon_themes.class.php
CHANGED
@@ -19,38 +19,13 @@ class CrayonThemes extends CrayonUsedResourceCollection {
|
|
19 |
}
|
20 |
|
21 |
// XXX Override
|
22 |
-
|
23 |
public function path($id) {
|
24 |
return CRAYON_THEME_PATH . $id . "/$id.css";
|
25 |
}
|
26 |
|
27 |
-
//
|
28 |
-
public function
|
29 |
-
$
|
30 |
-
$css = self::get_used_theme_css();
|
31 |
-
foreach ($css as $theme=>$url) {
|
32 |
-
$css_str .= '<link rel="stylesheet" type="text/css" href="' . $css[$url] . '" />' . CRAYON_NL;
|
33 |
-
}
|
34 |
-
return $css_str;
|
35 |
-
}
|
36 |
-
|
37 |
-
public function get_theme_url($theme) {
|
38 |
-
return CrayonGlobalSettings::plugin_path() . CrayonUtil::pathf(CRAYON_THEME_DIR) . $theme->id() . '/' . $theme->id() . '.css';
|
39 |
-
}
|
40 |
-
|
41 |
-
public function get_theme_as_css($theme) {
|
42 |
-
$css_str = '<link rel="stylesheet" type="text/css" href="' . self::get_theme_url($theme) . '" />' . CRAYON_NL;
|
43 |
-
return $css_str;
|
44 |
-
}
|
45 |
-
|
46 |
-
public function get_used_theme_css() {
|
47 |
-
$used = $this->get_used();
|
48 |
-
$css = array();
|
49 |
-
foreach ($used as $theme) {
|
50 |
-
$url = self::get_theme_url($theme);
|
51 |
-
$css[$theme->id()] = $url;
|
52 |
-
}
|
53 |
-
return $css;
|
54 |
}
|
55 |
|
56 |
}
|
19 |
}
|
20 |
|
21 |
// XXX Override
|
|
|
22 |
public function path($id) {
|
23 |
return CRAYON_THEME_PATH . $id . "/$id.css";
|
24 |
}
|
25 |
|
26 |
+
// XXX Override
|
27 |
+
public function get_url($id) {
|
28 |
+
return CrayonGlobalSettings::plugin_path() . CrayonUtil::pathf(CRAYON_THEME_DIR) . $id . '/' . $id . '.css';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
}
|
30 |
|
31 |
}
|
crayon_wp.class.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Crayon Syntax Highlighter
|
4 |
Plugin URI: http://ak.net84.net/projects/crayon-syntax-highlighter
|
5 |
Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
|
6 |
-
Version: 1.7.
|
7 |
Author: Aram Kocharyan
|
8 |
Author URI: http://ak.net84.net/
|
9 |
Text Domain: crayon-syntax-highlighter
|
@@ -84,13 +84,6 @@ class CrayonWP {
|
|
84 |
* $mode can be: 0 = return crayon content, 1 = return only code, 2 = return only plain code
|
85 |
*/
|
86 |
private static function shortcode($atts, $content = NULL, $id = NULL, $mode = self::MODE_NORMAL) {
|
87 |
-
// Lowercase attributes
|
88 |
-
$lower_atts = array();
|
89 |
-
foreach ($atts as $att=>$value) {
|
90 |
-
$lower_atts[trim(strip_tags(strtolower($att)))] = $value;
|
91 |
-
}
|
92 |
-
$atts = $lower_atts;
|
93 |
-
|
94 |
// Load attributes from shortcode
|
95 |
$allowed_atts = array('url' => NULL, 'lang' => NULL, 'title' => NULL, 'mark' => NULL);
|
96 |
$filtered_atts = shortcode_atts($allowed_atts, $atts);
|
@@ -151,15 +144,20 @@ class CrayonWP {
|
|
151 |
if (!empty($id)) {
|
152 |
$crayon->id($id);
|
153 |
}
|
|
|
154 |
return $crayon;
|
155 |
}
|
156 |
|
157 |
/* Search for Crayons in posts and queue them for creation */
|
|
|
158 |
public static function the_posts($posts) {
|
159 |
// Whether to enqueue syles/scripts
|
160 |
$enqueue = FALSE;
|
161 |
CrayonSettingsWP::load_settings(TRUE); // Load just the settings from db, for now
|
162 |
-
|
|
|
|
|
|
|
163 |
self::init_mini_tags();
|
164 |
|
165 |
// Search for shortcode in query
|
@@ -221,9 +219,49 @@ class CrayonWP {
|
|
221 |
$atts_array = array();
|
222 |
if ( count($att_matches[0]) != 0 ) {
|
223 |
for ($j = 0; $j < count($att_matches[1]); $j++) {
|
224 |
-
$atts_array[trim($att_matches[1][$j])] = trim($att_matches[3][$j]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
}
|
226 |
}
|
|
|
|
|
|
|
|
|
|
|
227 |
|
228 |
// Add array of atts and content to post queue with key as post ID
|
229 |
$id = !empty($open_ids[$i]) ? $open_ids[$i] : $closed_ids[$i];
|
@@ -236,6 +274,7 @@ class CrayonWP {
|
|
236 |
}
|
237 |
|
238 |
if (!is_admin() && $enqueue && !self::$enqueued) {
|
|
|
239 |
self::enqueue_resources();
|
240 |
}
|
241 |
|
@@ -338,23 +377,39 @@ class CrayonWP {
|
|
338 |
public static function wp_head() {
|
339 |
self::$wp_head = TRUE;
|
340 |
if (!self::$enqueued) {
|
341 |
-
// We have missed our chance to
|
342 |
CrayonSettingsWP::load_settings(TRUE); // Ensure settings are loaded
|
343 |
if (!CrayonGlobalSettings::val(CrayonSettings::EFFICIENT_ENQUEUE)) {
|
344 |
// Efficient enqueuing disabled, always load despite enqueuing or not in the_post
|
345 |
self::enqueue_resources();
|
346 |
}
|
347 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
}
|
349 |
|
350 |
public static function crayon_theme_css() {
|
351 |
global $CRAYON_VERSION;
|
352 |
-
$css = CrayonResources::themes()->
|
353 |
foreach ($css as $theme=>$url) {
|
354 |
wp_enqueue_style('crayon-theme-'.$theme, $url, array(), $CRAYON_VERSION);
|
355 |
}
|
356 |
}
|
357 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
public static function init($request) {
|
359 |
self::load_textdomain();
|
360 |
}
|
@@ -386,11 +441,11 @@ if (defined('ABSPATH')) {
|
|
386 |
|
387 |
// Filters and Actions
|
388 |
add_filter('init', 'CrayonWP::init');
|
389 |
-
add_filter('the_posts', 'CrayonWP::the_posts');
|
|
|
390 |
add_filter('the_content', 'CrayonWP::the_content');
|
391 |
add_filter('the_excerpt', 'CrayonWP::the_excerpt');
|
392 |
add_action('template_redirect', 'CrayonWP::wp_head');
|
393 |
-
|
394 |
-
add_filter('plugin_row_meta', 'CrayonWP::plugin_row_meta');
|
395 |
}
|
|
|
396 |
?>
|
3 |
Plugin Name: Crayon Syntax Highlighter
|
4 |
Plugin URI: http://ak.net84.net/projects/crayon-syntax-highlighter
|
5 |
Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
|
6 |
+
Version: 1.7.11
|
7 |
Author: Aram Kocharyan
|
8 |
Author URI: http://ak.net84.net/
|
9 |
Text Domain: crayon-syntax-highlighter
|
84 |
* $mode can be: 0 = return crayon content, 1 = return only code, 2 = return only plain code
|
85 |
*/
|
86 |
private static function shortcode($atts, $content = NULL, $id = NULL, $mode = self::MODE_NORMAL) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
// Load attributes from shortcode
|
88 |
$allowed_atts = array('url' => NULL, 'lang' => NULL, 'title' => NULL, 'mark' => NULL);
|
89 |
$filtered_atts = shortcode_atts($allowed_atts, $atts);
|
144 |
if (!empty($id)) {
|
145 |
$crayon->id($id);
|
146 |
}
|
147 |
+
|
148 |
return $crayon;
|
149 |
}
|
150 |
|
151 |
/* Search for Crayons in posts and queue them for creation */
|
152 |
+
// TODO remove $posts from params
|
153 |
public static function the_posts($posts) {
|
154 |
// Whether to enqueue syles/scripts
|
155 |
$enqueue = FALSE;
|
156 |
CrayonSettingsWP::load_settings(TRUE); // Load just the settings from db, for now
|
157 |
+
|
158 |
+
global $wp_the_query;
|
159 |
+
$posts = $wp_the_query->posts;
|
160 |
+
|
161 |
self::init_mini_tags();
|
162 |
|
163 |
// Search for shortcode in query
|
219 |
$atts_array = array();
|
220 |
if ( count($att_matches[0]) != 0 ) {
|
221 |
for ($j = 0; $j < count($att_matches[1]); $j++) {
|
222 |
+
$atts_array[trim(strtolower($att_matches[1][$j]))] = trim($att_matches[3][$j]);
|
223 |
+
}
|
224 |
+
}
|
225 |
+
|
226 |
+
// Capture theme
|
227 |
+
$theme_id = array_key_exists(CrayonSettings::THEME, $atts_array) ? $atts_array[CrayonSettings::THEME] : '';
|
228 |
+
$theme = CrayonResources::themes()->get($theme_id);
|
229 |
+
// If theme not found, use fallbacks
|
230 |
+
if (!$theme) {
|
231 |
+
// Given theme is invalid, try global setting
|
232 |
+
$theme_id = CrayonGlobalSettings::val(CrayonSettings::THEME);
|
233 |
+
$theme = CrayonResources::themes()->get($theme_id);
|
234 |
+
if (!$theme) {
|
235 |
+
// Global setting is invalid, fall back to default
|
236 |
+
$theme = CrayonResources::themes()->get_default();
|
237 |
+
$theme_id = CrayonThemes::DEFAULT_THEME;
|
238 |
+
}
|
239 |
+
}
|
240 |
+
// If theme is now valid, change the array
|
241 |
+
if ($theme) {
|
242 |
+
$atts_array[CrayonSettings::THEME] = $theme_id;
|
243 |
+
$theme->used(TRUE);
|
244 |
+
}
|
245 |
+
|
246 |
+
// Capture font
|
247 |
+
$font_id = array_key_exists(CrayonSettings::FONT, $atts_array) ? $atts_array[CrayonSettings::FONT] : '';
|
248 |
+
$font = CrayonResources::fonts()->get($font_id);
|
249 |
+
// If font not found, use fallbacks
|
250 |
+
if (!$font) {
|
251 |
+
// Given font is invalid, try global setting
|
252 |
+
$font_id = CrayonGlobalSettings::val(CrayonSettings::FONT);
|
253 |
+
$font = CrayonResources::fonts()->get($font_id);
|
254 |
+
if (!$font) {
|
255 |
+
// Global setting is invalid, fall back to default
|
256 |
+
$font = CrayonResources::fonts()->get_default();
|
257 |
+
$font_id = CrayonFonts::DEFAULT_FONT;
|
258 |
}
|
259 |
}
|
260 |
+
// If font is now valid, change the array
|
261 |
+
if ($font) {
|
262 |
+
$atts_array[CrayonSettings::FONT] = $font_id;
|
263 |
+
$font->used(TRUE);
|
264 |
+
}
|
265 |
|
266 |
// Add array of atts and content to post queue with key as post ID
|
267 |
$id = !empty($open_ids[$i]) ? $open_ids[$i] : $closed_ids[$i];
|
274 |
}
|
275 |
|
276 |
if (!is_admin() && $enqueue && !self::$enqueued) {
|
277 |
+
// Crayons have been found and we enqueue efficiently
|
278 |
self::enqueue_resources();
|
279 |
}
|
280 |
|
377 |
public static function wp_head() {
|
378 |
self::$wp_head = TRUE;
|
379 |
if (!self::$enqueued) {
|
380 |
+
// We have missed our chance to check before enqueuing. Use setting to either load always or only in the_post
|
381 |
CrayonSettingsWP::load_settings(TRUE); // Ensure settings are loaded
|
382 |
if (!CrayonGlobalSettings::val(CrayonSettings::EFFICIENT_ENQUEUE)) {
|
383 |
// Efficient enqueuing disabled, always load despite enqueuing or not in the_post
|
384 |
self::enqueue_resources();
|
385 |
}
|
386 |
}
|
387 |
+
// Enqueue Theme CSS
|
388 |
+
if (CrayonGlobalSettings::val(CrayonSettings::ENQUEUE_THEMES)) {
|
389 |
+
self::crayon_theme_css();
|
390 |
+
}
|
391 |
+
// Enqueue Font CSS
|
392 |
+
if (CrayonGlobalSettings::val(CrayonSettings::ENQUEUE_FONTS)) {
|
393 |
+
self::crayon_font_css();
|
394 |
+
}
|
395 |
}
|
396 |
|
397 |
public static function crayon_theme_css() {
|
398 |
global $CRAYON_VERSION;
|
399 |
+
$css = CrayonResources::themes()->get_used_css();
|
400 |
foreach ($css as $theme=>$url) {
|
401 |
wp_enqueue_style('crayon-theme-'.$theme, $url, array(), $CRAYON_VERSION);
|
402 |
}
|
403 |
}
|
404 |
|
405 |
+
public static function crayon_font_css() {
|
406 |
+
global $CRAYON_VERSION;
|
407 |
+
$css = CrayonResources::fonts()->get_used_css();
|
408 |
+
foreach ($css as $font=>$url) {
|
409 |
+
wp_enqueue_style('crayon-font-'.$font, $url, array(), $CRAYON_VERSION);
|
410 |
+
}
|
411 |
+
}
|
412 |
+
|
413 |
public static function init($request) {
|
414 |
self::load_textdomain();
|
415 |
}
|
441 |
|
442 |
// Filters and Actions
|
443 |
add_filter('init', 'CrayonWP::init');
|
444 |
+
// add_filter('the_posts', 'CrayonWP::the_posts');
|
445 |
+
add_action('wp', 'CrayonWP::the_posts');
|
446 |
add_filter('the_content', 'CrayonWP::the_content');
|
447 |
add_filter('the_excerpt', 'CrayonWP::the_excerpt');
|
448 |
add_action('template_redirect', 'CrayonWP::wp_head');
|
|
|
|
|
449 |
}
|
450 |
+
|
451 |
?>
|
css/admin_style.css
CHANGED
@@ -147,6 +147,10 @@
|
|
147 |
clear: both;
|
148 |
}
|
149 |
|
|
|
|
|
|
|
|
|
150 |
#crayon-logo {
|
151 |
text-align: center;
|
152 |
}
|
147 |
clear: both;
|
148 |
}
|
149 |
|
150 |
+
#crayon-preview {
|
151 |
+
float: none;
|
152 |
+
}
|
153 |
+
|
154 |
#crayon-logo {
|
155 |
text-align: center;
|
156 |
}
|
readme.txt
CHANGED
@@ -78,7 +78,8 @@ Please Thank Me With <a href="http://ak.net84.net/files/donate.php" target="_bla
|
|
78 |
These are helpful for discovering new features.
|
79 |
|
80 |
* <a href="http://ak.net84.net/projects/mixed-language-highlighting-in-crayon/" target="_blank">Mixed Language Highlighting in Crayon</a>
|
81 |
-
* <a href="http://ak.net84.net/projects/mini-tags-in-crayon/" target="_blank">Mini Tags And Plain Tags In Crayon</a>
|
|
|
82 |
|
83 |
**Planned Features**
|
84 |
|
@@ -119,6 +120,12 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
|
|
119 |
|
120 |
== Changelog ==
|
121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
= 1.7.10 =
|
123 |
* Fixed a visual artifact of loading that caused the plain code to be partially visible
|
124 |
|
78 |
These are helpful for discovering new features.
|
79 |
|
80 |
* <a href="http://ak.net84.net/projects/mixed-language-highlighting-in-crayon/" target="_blank">Mixed Language Highlighting in Crayon</a>
|
81 |
+
* <a href="http://ak.net84.net/projects/mini-tags-in-crayon/" target="_blank">Mini Tags And Plain Tags In Crayon</a>
|
82 |
+
* <a href="http://ak.net84.net/projects/enqueuing-themes-and-fonts-in-crayon/" target="_blank">Enqueuing Themes and Fonts in Crayon</a>
|
83 |
|
84 |
**Planned Features**
|
85 |
|
120 |
|
121 |
== Changelog ==
|
122 |
|
123 |
+
= 1.7.11 =
|
124 |
+
* Added the option of either enqueuing themes and fonts (efficient) or printing them before the Crayon each time when enqueuing fails
|
125 |
+
* Thanks to http://www.adostudio.it/ for finding the bugs
|
126 |
+
* Improved theme and font handling
|
127 |
+
* Improved theme detection and Crayon capturing
|
128 |
+
|
129 |
= 1.7.10 =
|
130 |
* Fixed a visual artifact of loading that caused the plain code to be partially visible
|
131 |
|
trans/crayon-syntax-highlighter-de_DE.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-de_DE.po
CHANGED
@@ -19,92 +19,92 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
-
#: crayon_settings.class.php:
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
#: crayon_settings.class.php:
|
29 |
-
#: crayon_settings.class.php:
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
#: crayon_settings.class.php:
|
35 |
-
#: crayon_settings.class.php:
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statisch"
|
39 |
|
40 |
-
#: crayon_settings.class.php:
|
41 |
-
#: crayon_settings.class.php:
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
-
#: crayon_settings.class.php:
|
47 |
-
#: crayon_settings.class.php:
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Prozent"
|
51 |
|
52 |
-
#: crayon_settings.class.php:
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Keiner"
|
56 |
|
57 |
-
#: crayon_settings.class.php:
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Links"
|
61 |
|
62 |
-
#: crayon_settings.class.php:
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Center"
|
66 |
|
67 |
-
#: crayon_settings.class.php:
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Rechts"
|
71 |
|
72 |
-
#: crayon_settings.class.php:
|
73 |
-
#: crayon_settings.class.php:
|
74 |
-
#: crayon_settings.class.php:
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Auf MouseOver"
|
78 |
|
79 |
-
#: crayon_settings.class.php:
|
80 |
-
#: crayon_settings.class.php:
|
81 |
-
#: crayon_settings.class.php:
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Immer"
|
85 |
|
86 |
-
#: crayon_settings.class.php:
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Nie"
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Wenn Sie Gefunden"
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Auf Doppelklick"
|
101 |
|
102 |
-
#: crayon_settings.class.php:
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Auf Mausklick"
|
106 |
|
107 |
-
#: crayon_settings.class.php:
|
108 |
#@ crayon-syntax-highlighter
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
|
@@ -258,165 +258,165 @@ msgstr "Zeige Sprachen"
|
|
258 |
msgid "Enable Live Preview"
|
259 |
msgstr "Live-Vorschau aktivieren"
|
260 |
|
261 |
-
#: crayon_settings_wp.class.php:
|
262 |
#, php-format
|
263 |
#@ crayon-syntax-highlighter
|
264 |
msgid "The selected theme with id %s could not be loaded"
|
265 |
msgstr "Das gewählte Thema mit id %s konnte nicht geladen werden."
|
266 |
|
267 |
-
#: crayon_settings_wp.class.php:
|
268 |
#@ crayon-syntax-highlighter
|
269 |
msgid "Theme Default"
|
270 |
msgstr "Theme Standard"
|
271 |
|
272 |
-
#: crayon_settings_wp.class.php:
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "Custom Font Size"
|
275 |
msgstr "Benutzerdefinierte Schriftgröße"
|
276 |
|
277 |
-
#: crayon_settings_wp.class.php:
|
278 |
#, php-format
|
279 |
#@ crayon-syntax-highlighter
|
280 |
msgid "The selected font with id %s could not be loaded"
|
281 |
msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
|
282 |
|
283 |
-
#: crayon_settings_wp.class.php:
|
284 |
#@ crayon-syntax-highlighter
|
285 |
msgid "Enable plain code view and display"
|
286 |
msgstr "Aktivieren Sie einfach Code-Ansicht und Anzeige"
|
287 |
|
288 |
-
#: crayon_settings_wp.class.php:
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Aktivieren Code kopieren/einfügen"
|
292 |
|
293 |
-
#: crayon_settings_wp.class.php:
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable opening code in a window"
|
296 |
msgstr "Aktivieren Öffnungscode in einem Fenster"
|
297 |
|
298 |
-
#: crayon_settings_wp.class.php:
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Display scrollbars (when needed)"
|
301 |
msgstr "Anzeigen Scrollbalken (bei Bedarf)"
|
302 |
|
303 |
-
#: crayon_settings_wp.class.php:
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Tab-Größe in Räumen"
|
307 |
|
308 |
-
#: crayon_settings_wp.class.php:
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Remove whitespace surrounding the shortcode content"
|
311 |
msgstr "Entfernen Sie Leerzeichen um den Shortcode Inhalt"
|
312 |
|
313 |
-
#: crayon_settings_wp.class.php:
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
316 |
msgstr "Beim Laden von lokalen Dateien und ein relativer Pfad ist für die URL angegeben, verwenden Sie den absoluten Pfad"
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Clear the cache used to store remote code requests"
|
321 |
msgstr "Leeren Sie den Cache verwendet werden, um Remote-Code-Abfragen speichern"
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Jetzt löschen"
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
331 |
msgstr "Deaktivieren Mausgesten für Touchscreen-Geräte (zB MouseOver)"
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Deaktivieren Animationen"
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Deaktivieren Laufzeit stats"
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Log errors for individual Crayons"
|
346 |
msgstr "Log Fehler für einzelne Crayons"
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log system-wide errors"
|
351 |
msgstr "Log systemweite Fehler"
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Display custom message for errors"
|
356 |
msgstr "Anzeige benutzerdefinierte Meldungen für Fehler"
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Show Protokoll"
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Klare Protokoll"
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "E-Mail Admin"
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "E-Mail Entwickler"
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Version"
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Entwickler"
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es ist ein laufendes Projekt, halt mich motiviert!"
|
392 |
|
393 |
-
#: util/preview.php:
|
394 |
#, php-format
|
395 |
#@ crayon-syntax-highlighter
|
396 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
397 |
msgstr "Ändern Sie den %1$sFallback-Sprache%2$s , um den Beispielcode ändern. Zeilen 5-7 sind markiert."
|
398 |
|
399 |
-
#: crayon_settings.class.php:
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Stündlich"
|
403 |
|
404 |
-
#: crayon_settings.class.php:
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Täglich"
|
408 |
|
409 |
-
#: crayon_settings.class.php:
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Wöchentlich"
|
413 |
|
414 |
-
#: crayon_settings.class.php:
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Monatlich"
|
418 |
|
419 |
-
#: crayon_settings.class.php:
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Sofort"
|
@@ -426,37 +426,37 @@ msgstr "Sofort"
|
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Crayon Hilfe"
|
428 |
|
429 |
-
#: crayon_settings_wp.class.php:
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr "Versuchen Sie, Crayon ist CSS und JavaScript nur laden, wenn nötig"
|
433 |
|
434 |
-
#: crayon_settings_wp.class.php:
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "Warum?"
|
438 |
|
439 |
-
#: crayon_settings_wp.class.php:
|
440 |
#@ crayon-syntax-highlighter
|
441 |
msgid "Followed by your relative URL."
|
442 |
msgstr "Gefolgt von Ihrem relative URL."
|
443 |
|
444 |
-
#: crayon_settings_wp.class.php:
|
445 |
#@ crayon-syntax-highlighter
|
446 |
msgid "The log is currently empty."
|
447 |
msgstr "Das Protokoll ist derzeit leer."
|
448 |
|
449 |
-
#: crayon_settings_wp.class.php:
|
450 |
#@ crayon-syntax-highlighter
|
451 |
msgid "The log file exists and is writable."
|
452 |
msgstr "Die Log-Datei existiert und beschreibbar ist."
|
453 |
|
454 |
-
#: crayon_settings_wp.class.php:
|
455 |
#@ crayon-syntax-highlighter
|
456 |
msgid "The log file exists and is not writable."
|
457 |
msgstr "Die Log-Datei existiert und ist nicht beschreibbar."
|
458 |
|
459 |
-
#: crayon_settings_wp.class.php:
|
460 |
#@ crayon-syntax-highlighter
|
461 |
msgid "The log file does not exist and is not writable."
|
462 |
msgstr "Die Log-Datei nicht existiert und ist nicht beschreibbar."
|
@@ -469,49 +469,51 @@ msgid_plural "%d languages have been detected."
|
|
469 |
msgstr[0] "%d sprache erkannt wurde."
|
470 |
msgstr[1] "%d sprachen nachgewiesen worden."
|
471 |
|
472 |
-
#: crayon_settings_wp.class.php:
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "Capture <pre> tags as Crayons"
|
475 |
msgstr "Erfassen <pre> tags wie Crayons"
|
476 |
|
477 |
-
#: crayon_settings_wp.class.php:
|
478 |
-
#: crayon_settings_wp.class.php:
|
479 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
480 |
#@ crayon-syntax-highlighter
|
481 |
msgid "Learn More"
|
482 |
msgstr "Erfahren Sie mehr"
|
483 |
|
484 |
-
#: crayon_settings_wp.class.php:
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Show Mixed Language Icon (+)"
|
487 |
msgstr "Zeige gemischte Sprache Symbol (+)"
|
488 |
|
489 |
-
#: crayon_settings_wp.class.php:
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
492 |
msgstr "Lassen gemischte Sprache Hervorhebung mit Trennzeichen und Tags."
|
493 |
|
494 |
-
#: crayon_settings_wp.class.php:
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
497 |
msgstr "Erfassen Mini Tags wie [php][/php] als Crayons."
|
498 |
|
499 |
-
#: crayon_settings_wp.class.php:
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Enable [plain][/plain] tag."
|
502 |
msgstr "Aktivieren [plain][/plain] Tag."
|
503 |
|
504 |
-
#: crayon_settings.class.php:
|
505 |
#@ crayon-syntax-highlighter
|
506 |
msgid "Disable Mouse Events"
|
507 |
msgstr "Deaktivieren Mausereignisse"
|
508 |
|
509 |
-
#: crayon_settings_wp.class.php:
|
510 |
#@ crayon-syntax-highlighter
|
511 |
msgid "Enable plain code toggling"
|
512 |
msgstr "Aktivieren Sie einfach Code Makeln"
|
513 |
|
514 |
-
#: crayon_settings_wp.class.php:
|
515 |
#@ crayon-syntax-highlighter
|
516 |
msgid "Show the plain code by default"
|
517 |
msgstr "Zeige die Ebene Code standardmäßig"
|
@@ -534,12 +536,6 @@ msgstr ""
|
|
534 |
msgid "Aram Kocharyan"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#. translators: plugin header field 'Version'
|
538 |
-
#: crayon_wp.class.php:0
|
539 |
-
#@ crayon-syntax-highlighter
|
540 |
-
msgid "1.7.7"
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
#. translators: plugin header field 'PluginURI'
|
544 |
#: crayon_wp.class.php:0
|
545 |
#@ crayon-syntax-highlighter
|
@@ -552,13 +548,99 @@ msgstr ""
|
|
552 |
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
553 |
msgstr "Unterstützt mehrere Sprachen, Themen, Hervorhebung von einer URL, lokale Datei oder per Post Text."
|
554 |
|
555 |
-
#: crayon_wp.class.php:
|
556 |
#@ crayon-syntax-highlighter
|
557 |
msgid "View Settings"
|
558 |
msgstr "Einstellungen anzeigen"
|
559 |
|
560 |
-
#: crayon_wp.class.php:
|
561 |
#@ crayon-syntax-highlighter
|
562 |
msgid "Donate"
|
563 |
msgstr "Spenden"
|
564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:125
|
23 |
+
#: crayon_settings.class.php:129
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:125
|
29 |
+
#: crayon_settings.class.php:129
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:125
|
35 |
+
#: crayon_settings.class.php:129
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statisch"
|
39 |
|
40 |
+
#: crayon_settings.class.php:127
|
41 |
+
#: crayon_settings.class.php:131
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
+
#: crayon_settings.class.php:127
|
47 |
+
#: crayon_settings.class.php:131
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Prozent"
|
51 |
|
52 |
+
#: crayon_settings.class.php:140
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Keiner"
|
56 |
|
57 |
+
#: crayon_settings.class.php:140
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Links"
|
61 |
|
62 |
+
#: crayon_settings.class.php:140
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Center"
|
66 |
|
67 |
+
#: crayon_settings.class.php:140
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Rechts"
|
71 |
|
72 |
+
#: crayon_settings.class.php:142
|
73 |
+
#: crayon_settings.class.php:159
|
74 |
+
#: crayon_settings.class.php:164
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Auf MouseOver"
|
78 |
|
79 |
+
#: crayon_settings.class.php:142
|
80 |
+
#: crayon_settings.class.php:148
|
81 |
+
#: crayon_settings.class.php:159
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Immer"
|
85 |
|
86 |
+
#: crayon_settings.class.php:142
|
87 |
+
#: crayon_settings.class.php:148
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Nie"
|
91 |
|
92 |
+
#: crayon_settings.class.php:148
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Wenn Sie Gefunden"
|
96 |
|
97 |
+
#: crayon_settings.class.php:164
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Auf Doppelklick"
|
101 |
|
102 |
+
#: crayon_settings.class.php:164
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Auf Mausklick"
|
106 |
|
107 |
+
#: crayon_settings.class.php:172
|
108 |
#@ crayon-syntax-highlighter
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
|
258 |
msgid "Enable Live Preview"
|
259 |
msgstr "Live-Vorschau aktivieren"
|
260 |
|
261 |
+
#: crayon_settings_wp.class.php:534
|
262 |
#, php-format
|
263 |
#@ crayon-syntax-highlighter
|
264 |
msgid "The selected theme with id %s could not be loaded"
|
265 |
msgstr "Das gewählte Thema mit id %s konnte nicht geladen werden."
|
266 |
|
267 |
+
#: crayon_settings_wp.class.php:548
|
268 |
#@ crayon-syntax-highlighter
|
269 |
msgid "Theme Default"
|
270 |
msgstr "Theme Standard"
|
271 |
|
272 |
+
#: crayon_settings_wp.class.php:552
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "Custom Font Size"
|
275 |
msgstr "Benutzerdefinierte Schriftgröße"
|
276 |
|
277 |
+
#: crayon_settings_wp.class.php:557
|
278 |
#, php-format
|
279 |
#@ crayon-syntax-highlighter
|
280 |
msgid "The selected font with id %s could not be loaded"
|
281 |
msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
|
282 |
|
283 |
+
#: crayon_settings_wp.class.php:563
|
284 |
#@ crayon-syntax-highlighter
|
285 |
msgid "Enable plain code view and display"
|
286 |
msgstr "Aktivieren Sie einfach Code-Ansicht und Anzeige"
|
287 |
|
288 |
+
#: crayon_settings_wp.class.php:568
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Aktivieren Code kopieren/einfügen"
|
292 |
|
293 |
+
#: crayon_settings_wp.class.php:570
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable opening code in a window"
|
296 |
msgstr "Aktivieren Öffnungscode in einem Fenster"
|
297 |
|
298 |
+
#: crayon_settings_wp.class.php:571
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Display scrollbars (when needed)"
|
301 |
msgstr "Anzeigen Scrollbalken (bei Bedarf)"
|
302 |
|
303 |
+
#: crayon_settings_wp.class.php:573
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Tab-Größe in Räumen"
|
307 |
|
308 |
+
#: crayon_settings_wp.class.php:575
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Remove whitespace surrounding the shortcode content"
|
311 |
msgstr "Entfernen Sie Leerzeichen um den Shortcode Inhalt"
|
312 |
|
313 |
+
#: crayon_settings_wp.class.php:585
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
316 |
msgstr "Beim Laden von lokalen Dateien und ein relativer Pfad ist für die URL angegeben, verwenden Sie den absoluten Pfad"
|
317 |
|
318 |
+
#: crayon_settings_wp.class.php:592
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Clear the cache used to store remote code requests"
|
321 |
msgstr "Leeren Sie den Cache verwendet werden, um Remote-Code-Abfragen speichern"
|
322 |
|
323 |
+
#: crayon_settings_wp.class.php:594
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Jetzt löschen"
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:596
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
331 |
msgstr "Deaktivieren Mausgesten für Touchscreen-Geräte (zB MouseOver)"
|
332 |
|
333 |
+
#: crayon_settings_wp.class.php:597
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Deaktivieren Animationen"
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:598
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Deaktivieren Laufzeit stats"
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:605
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Log errors for individual Crayons"
|
346 |
msgstr "Log Fehler für einzelne Crayons"
|
347 |
|
348 |
+
#: crayon_settings_wp.class.php:606
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log system-wide errors"
|
351 |
msgstr "Log systemweite Fehler"
|
352 |
|
353 |
+
#: crayon_settings_wp.class.php:607
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Display custom message for errors"
|
356 |
msgstr "Anzeige benutzerdefinierte Meldungen für Fehler"
|
357 |
|
358 |
+
#: crayon_settings_wp.class.php:619
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Show Protokoll"
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:621
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Klare Protokoll"
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:622
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "E-Mail Admin"
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:624
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "E-Mail Entwickler"
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:640
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Version"
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:642
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Entwickler"
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:666
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es ist ein laufendes Projekt, halt mich motiviert!"
|
392 |
|
393 |
+
#: util/preview.php:63
|
394 |
#, php-format
|
395 |
#@ crayon-syntax-highlighter
|
396 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
397 |
msgstr "Ändern Sie den %1$sFallback-Sprache%2$s , um den Beispielcode ändern. Zeilen 5-7 sind markiert."
|
398 |
|
399 |
+
#: crayon_settings.class.php:99
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Stündlich"
|
403 |
|
404 |
+
#: crayon_settings.class.php:99
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Täglich"
|
408 |
|
409 |
+
#: crayon_settings.class.php:100
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Wöchentlich"
|
413 |
|
414 |
+
#: crayon_settings.class.php:100
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Monatlich"
|
418 |
|
419 |
+
#: crayon_settings.class.php:101
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Sofort"
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Crayon Hilfe"
|
428 |
|
429 |
+
#: crayon_settings_wp.class.php:595
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr "Versuchen Sie, Crayon ist CSS und JavaScript nur laden, wenn nötig"
|
433 |
|
434 |
+
#: crayon_settings_wp.class.php:595
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "Warum?"
|
438 |
|
439 |
+
#: crayon_settings_wp.class.php:588
|
440 |
#@ crayon-syntax-highlighter
|
441 |
msgid "Followed by your relative URL."
|
442 |
msgstr "Gefolgt von Ihrem relative URL."
|
443 |
|
444 |
+
#: crayon_settings_wp.class.php:626
|
445 |
#@ crayon-syntax-highlighter
|
446 |
msgid "The log is currently empty."
|
447 |
msgstr "Das Protokoll ist derzeit leer."
|
448 |
|
449 |
+
#: crayon_settings_wp.class.php:628
|
450 |
#@ crayon-syntax-highlighter
|
451 |
msgid "The log file exists and is writable."
|
452 |
msgstr "Die Log-Datei existiert und beschreibbar ist."
|
453 |
|
454 |
+
#: crayon_settings_wp.class.php:628
|
455 |
#@ crayon-syntax-highlighter
|
456 |
msgid "The log file exists and is not writable."
|
457 |
msgstr "Die Log-Datei existiert und ist nicht beschreibbar."
|
458 |
|
459 |
+
#: crayon_settings_wp.class.php:630
|
460 |
#@ crayon-syntax-highlighter
|
461 |
msgid "The log file does not exist and is not writable."
|
462 |
msgstr "Die Log-Datei nicht existiert und ist nicht beschreibbar."
|
469 |
msgstr[0] "%d sprache erkannt wurde."
|
470 |
msgstr[1] "%d sprachen nachgewiesen worden."
|
471 |
|
472 |
+
#: crayon_settings_wp.class.php:576
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "Capture <pre> tags as Crayons"
|
475 |
msgstr "Erfassen <pre> tags wie Crayons"
|
476 |
|
477 |
+
#: crayon_settings_wp.class.php:531
|
478 |
+
#: crayon_settings_wp.class.php:559
|
479 |
+
#: crayon_settings_wp.class.php:577
|
480 |
+
#: crayon_settings_wp.class.php:578
|
481 |
+
#: crayon_settings_wp.class.php:579
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Learn More"
|
484 |
msgstr "Erfahren Sie mehr"
|
485 |
|
486 |
+
#: crayon_settings_wp.class.php:580
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Show Mixed Language Icon (+)"
|
489 |
msgstr "Zeige gemischte Sprache Symbol (+)"
|
490 |
|
491 |
+
#: crayon_settings_wp.class.php:579
|
492 |
#@ crayon-syntax-highlighter
|
493 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
494 |
msgstr "Lassen gemischte Sprache Hervorhebung mit Trennzeichen und Tags."
|
495 |
|
496 |
+
#: crayon_settings_wp.class.php:577
|
497 |
#@ crayon-syntax-highlighter
|
498 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
499 |
msgstr "Erfassen Mini Tags wie [php][/php] als Crayons."
|
500 |
|
501 |
+
#: crayon_settings_wp.class.php:578
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable [plain][/plain] tag."
|
504 |
msgstr "Aktivieren [plain][/plain] Tag."
|
505 |
|
506 |
+
#: crayon_settings.class.php:164
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Disable Mouse Events"
|
509 |
msgstr "Deaktivieren Mausereignisse"
|
510 |
|
511 |
+
#: crayon_settings_wp.class.php:566
|
512 |
#@ crayon-syntax-highlighter
|
513 |
msgid "Enable plain code toggling"
|
514 |
msgstr "Aktivieren Sie einfach Code Makeln"
|
515 |
|
516 |
+
#: crayon_settings_wp.class.php:567
|
517 |
#@ crayon-syntax-highlighter
|
518 |
msgid "Show the plain code by default"
|
519 |
msgstr "Zeige die Ebene Code standardmäßig"
|
536 |
msgid "Aram Kocharyan"
|
537 |
msgstr ""
|
538 |
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
#. translators: plugin header field 'PluginURI'
|
540 |
#: crayon_wp.class.php:0
|
541 |
#@ crayon-syntax-highlighter
|
548 |
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
549 |
msgstr "Unterstützt mehrere Sprachen, Themen, Hervorhebung von einer URL, lokale Datei oder per Post Text."
|
550 |
|
551 |
+
#: crayon_wp.class.php:428
|
552 |
#@ crayon-syntax-highlighter
|
553 |
msgid "View Settings"
|
554 |
msgstr "Einstellungen anzeigen"
|
555 |
|
556 |
+
#: crayon_wp.class.php:429
|
557 |
#@ crayon-syntax-highlighter
|
558 |
msgid "Donate"
|
559 |
msgstr "Spenden"
|
560 |
|
561 |
+
#: crayon_settings_wp.class.php:206
|
562 |
+
#@ crayon-syntax-highlighter
|
563 |
+
msgid "General"
|
564 |
+
msgstr "Allgemein"
|
565 |
+
|
566 |
+
#: crayon_settings_wp.class.php:207
|
567 |
+
#@ crayon-syntax-highlighter
|
568 |
+
msgid "Theme"
|
569 |
+
msgstr "Thema"
|
570 |
+
|
571 |
+
#: crayon_settings_wp.class.php:208
|
572 |
+
#@ crayon-syntax-highlighter
|
573 |
+
msgid "Font"
|
574 |
+
msgstr "Sind"
|
575 |
+
|
576 |
+
#: crayon_settings_wp.class.php:209
|
577 |
+
#@ crayon-syntax-highlighter
|
578 |
+
msgid "Metrics"
|
579 |
+
msgstr "Metrik"
|
580 |
+
|
581 |
+
#: crayon_settings_wp.class.php:210
|
582 |
+
#@ crayon-syntax-highlighter
|
583 |
+
msgid "Toolbar"
|
584 |
+
msgstr "Symbolleiste"
|
585 |
+
|
586 |
+
#: crayon_settings_wp.class.php:211
|
587 |
+
#@ crayon-syntax-highlighter
|
588 |
+
msgid "Lines"
|
589 |
+
msgstr "Linien"
|
590 |
+
|
591 |
+
#: crayon_settings_wp.class.php:212
|
592 |
+
#@ crayon-syntax-highlighter
|
593 |
+
msgid "Code"
|
594 |
+
msgstr "Code"
|
595 |
+
|
596 |
+
#: crayon_settings_wp.class.php:213
|
597 |
+
#@ crayon-syntax-highlighter
|
598 |
+
msgid "Languages"
|
599 |
+
msgstr "Sprachen"
|
600 |
+
|
601 |
+
#: crayon_settings_wp.class.php:214
|
602 |
+
#@ crayon-syntax-highlighter
|
603 |
+
msgid "Files"
|
604 |
+
msgstr "Dateien"
|
605 |
+
|
606 |
+
#: crayon_settings_wp.class.php:215
|
607 |
+
#@ crayon-syntax-highlighter
|
608 |
+
msgid "Misc"
|
609 |
+
msgstr "Sonstiges"
|
610 |
+
|
611 |
+
#: crayon_settings_wp.class.php:218
|
612 |
+
#@ crayon-syntax-highlighter
|
613 |
+
msgid "Debug"
|
614 |
+
msgstr "Debuggen"
|
615 |
+
|
616 |
+
#: crayon_settings_wp.class.php:219
|
617 |
+
#@ crayon-syntax-highlighter
|
618 |
+
msgid "Errors"
|
619 |
+
msgstr "Fehler"
|
620 |
+
|
621 |
+
#: crayon_settings_wp.class.php:220
|
622 |
+
#@ crayon-syntax-highlighter
|
623 |
+
msgid "Log"
|
624 |
+
msgstr "Log"
|
625 |
+
|
626 |
+
#: crayon_settings_wp.class.php:223
|
627 |
+
#@ crayon-syntax-highlighter
|
628 |
+
msgid "About"
|
629 |
+
msgstr "Über"
|
630 |
+
|
631 |
+
#: crayon_settings_wp.class.php:531
|
632 |
+
#@ crayon-syntax-highlighter
|
633 |
+
msgid "Enqueue themes in the header (more efficient)."
|
634 |
+
msgstr "Enqueue Themen in der Kopfzeile (sehr effizient)."
|
635 |
+
|
636 |
+
#: crayon_settings_wp.class.php:559
|
637 |
+
#@ crayon-syntax-highlighter
|
638 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
639 |
+
msgstr "Enqueue Schriftarten in der Kopfzeile (sehr effizient)."
|
640 |
+
|
641 |
+
#. translators: plugin header field 'Version'
|
642 |
+
#: crayon_wp.class.php:0
|
643 |
+
#@ crayon-syntax-highlighter
|
644 |
+
msgid "1.7.11"
|
645 |
+
msgstr ""
|
646 |
+
|
trans/crayon-syntax-highlighter-es_ES.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-es_ES.po
CHANGED
@@ -19,92 +19,92 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
-
#: crayon_settings.class.php:
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
#: crayon_settings.class.php:
|
29 |
-
#: crayon_settings.class.php:
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
#: crayon_settings.class.php:
|
35 |
-
#: crayon_settings.class.php:
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Estático"
|
39 |
|
40 |
-
#: crayon_settings.class.php:
|
41 |
-
#: crayon_settings.class.php:
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Píxeles"
|
45 |
|
46 |
-
#: crayon_settings.class.php:
|
47 |
-
#: crayon_settings.class.php:
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Por ciento"
|
51 |
|
52 |
-
#: crayon_settings.class.php:
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Ninguno"
|
56 |
|
57 |
-
#: crayon_settings.class.php:
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Izquierda"
|
61 |
|
62 |
-
#: crayon_settings.class.php:
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centro"
|
66 |
|
67 |
-
#: crayon_settings.class.php:
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Derecho"
|
71 |
|
72 |
-
#: crayon_settings.class.php:
|
73 |
-
#: crayon_settings.class.php:
|
74 |
-
#: crayon_settings.class.php:
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Se mueve el ratón"
|
78 |
|
79 |
-
#: crayon_settings.class.php:
|
80 |
-
#: crayon_settings.class.php:
|
81 |
-
#: crayon_settings.class.php:
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Siempre"
|
85 |
|
86 |
-
#: crayon_settings.class.php:
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Nunca"
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Cuando se encuentra"
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Haga doble click en"
|
101 |
|
102 |
-
#: crayon_settings.class.php:
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "En solo clic"
|
106 |
|
107 |
-
#: crayon_settings.class.php:
|
108 |
#@ crayon-syntax-highlighter
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "Se produjo un error. Por favor, inténtelo de nuevo más tarde."
|
@@ -258,165 +258,165 @@ msgstr "Mostrar Idiomas"
|
|
258 |
msgid "Enable Live Preview"
|
259 |
msgstr "Activar vista previa dinámica"
|
260 |
|
261 |
-
#: crayon_settings_wp.class.php:
|
262 |
#, php-format
|
263 |
#@ crayon-syntax-highlighter
|
264 |
msgid "The selected theme with id %s could not be loaded"
|
265 |
msgstr "El tema seleccionado con el id %s no se pudo cargar"
|
266 |
|
267 |
-
#: crayon_settings_wp.class.php:
|
268 |
#@ crayon-syntax-highlighter
|
269 |
msgid "Theme Default"
|
270 |
msgstr "Tema por defecto"
|
271 |
|
272 |
-
#: crayon_settings_wp.class.php:
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "Custom Font Size"
|
275 |
msgstr "Tamaño de fuente personalizado"
|
276 |
|
277 |
-
#: crayon_settings_wp.class.php:
|
278 |
#, php-format
|
279 |
#@ crayon-syntax-highlighter
|
280 |
msgid "The selected font with id %s could not be loaded"
|
281 |
msgstr "La fuente seleccionada con id %s no se pudo cargar"
|
282 |
|
283 |
-
#: crayon_settings_wp.class.php:
|
284 |
#@ crayon-syntax-highlighter
|
285 |
msgid "Enable plain code view and display"
|
286 |
msgstr "Permiten ver el código normal y la pantalla"
|
287 |
|
288 |
-
#: crayon_settings_wp.class.php:
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Permiten copiar el código / pegar"
|
292 |
|
293 |
-
#: crayon_settings_wp.class.php:
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable opening code in a window"
|
296 |
msgstr "Permitir que el código de apertura de una ventana"
|
297 |
|
298 |
-
#: crayon_settings_wp.class.php:
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Display scrollbars (when needed)"
|
301 |
msgstr "Barras de desplazamiento de la pantalla (si es necesario)"
|
302 |
|
303 |
-
#: crayon_settings_wp.class.php:
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Tab tamaño en espacios"
|
307 |
|
308 |
-
#: crayon_settings_wp.class.php:
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Remove whitespace surrounding the shortcode content"
|
311 |
msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
|
312 |
|
313 |
-
#: crayon_settings_wp.class.php:
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
316 |
msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Clear the cache used to store remote code requests"
|
321 |
msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Limpiar ahora"
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
331 |
msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Desactivar las animaciones"
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Desactivar tiempo de ejecución de las estadísticas"
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Log errors for individual Crayons"
|
346 |
msgstr "Errores de registro para cada Crayon"
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log system-wide errors"
|
351 |
msgstr "Registro de todo el sistema de los errores"
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Display custom message for errors"
|
356 |
msgstr "Mostrar mensajes personalizados para los errores"
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Mostrar Registro"
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Borrar Registro"
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "Admin Email"
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "Correo electrónico del desarrollador"
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Versión"
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Promotor"
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
|
392 |
|
393 |
-
#: util/preview.php:
|
394 |
#, php-format
|
395 |
#@ crayon-syntax-highlighter
|
396 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
397 |
msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
|
398 |
|
399 |
-
#: crayon_settings.class.php:
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Cada hora"
|
403 |
|
404 |
-
#: crayon_settings.class.php:
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Diario"
|
408 |
|
409 |
-
#: crayon_settings.class.php:
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Semanal"
|
413 |
|
414 |
-
#: crayon_settings.class.php:
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Mensual"
|
418 |
|
419 |
-
#: crayon_settings.class.php:
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Inmediatamente"
|
@@ -426,12 +426,12 @@ msgstr "Inmediatamente"
|
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Crayon Ayuda"
|
428 |
|
429 |
-
#: crayon_settings_wp.class.php:
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
|
433 |
|
434 |
-
#: crayon_settings_wp.class.php:
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "¿Por qué?"
|
@@ -444,74 +444,76 @@ msgid_plural "%d languages have been detected."
|
|
444 |
msgstr[0] "%d lenguaje que se ha detectado."
|
445 |
msgstr[1] "%d idiomas se han detectado."
|
446 |
|
447 |
-
#: crayon_settings_wp.class.php:
|
448 |
#@ crayon-syntax-highlighter
|
449 |
msgid "Followed by your relative URL."
|
450 |
msgstr "Seguido de su dirección URL relativa\t."
|
451 |
|
452 |
-
#: crayon_settings_wp.class.php:
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "The log is currently empty."
|
455 |
msgstr "El registro está actualmente vacía."
|
456 |
|
457 |
-
#: crayon_settings_wp.class.php:
|
458 |
#@ crayon-syntax-highlighter
|
459 |
msgid "The log file exists and is writable."
|
460 |
msgstr "El archivo de registro existe y se puede escribir."
|
461 |
|
462 |
-
#: crayon_settings_wp.class.php:
|
463 |
#@ crayon-syntax-highlighter
|
464 |
msgid "The log file exists and is not writable."
|
465 |
msgstr "El archivo de registro existe y no es modificable."
|
466 |
|
467 |
-
#: crayon_settings_wp.class.php:
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "The log file does not exist and is not writable."
|
470 |
msgstr "El archivo de registro no existe y no es modificable."
|
471 |
|
472 |
-
#: crayon_settings_wp.class.php:
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "Capture <pre> tags as Crayons"
|
475 |
msgstr "Captura de etiquetas <pre> como Crayons"
|
476 |
|
477 |
-
#: crayon_settings_wp.class.php:
|
478 |
-
#: crayon_settings_wp.class.php:
|
479 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
480 |
#@ crayon-syntax-highlighter
|
481 |
msgid "Learn More"
|
482 |
msgstr "Más información"
|
483 |
|
484 |
-
#: crayon_settings_wp.class.php:
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Show Mixed Language Icon (+)"
|
487 |
msgstr "Mostrar el icono del lenguaje mixto (+)"
|
488 |
|
489 |
-
#: crayon_settings_wp.class.php:
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
492 |
msgstr "Permiten destacar mixto del lenguaje con delimitadores y etiquetas."
|
493 |
|
494 |
-
#: crayon_settings_wp.class.php:
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
497 |
msgstr "Captura Tags Mini como [php][/php] como Crayons."
|
498 |
|
499 |
-
#: crayon_settings_wp.class.php:
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Enable [plain][/plain] tag."
|
502 |
msgstr "Activar etiqueta [plain][/plain]."
|
503 |
|
504 |
-
#: crayon_settings.class.php:
|
505 |
#@ crayon-syntax-highlighter
|
506 |
msgid "Disable Mouse Events"
|
507 |
msgstr "Desactivar Los Eventos De Ratón"
|
508 |
|
509 |
-
#: crayon_settings_wp.class.php:
|
510 |
#@ crayon-syntax-highlighter
|
511 |
msgid "Enable plain code toggling"
|
512 |
msgstr "Permiten alternar código normal"
|
513 |
|
514 |
-
#: crayon_settings_wp.class.php:
|
515 |
#@ crayon-syntax-highlighter
|
516 |
msgid "Show the plain code by default"
|
517 |
msgstr "Mostrar el código sin formato por defecto"
|
@@ -546,19 +548,99 @@ msgstr ""
|
|
546 |
msgid "http://ak.net84.net/"
|
547 |
msgstr ""
|
548 |
|
549 |
-
|
550 |
-
#: crayon_wp.class.php:0
|
551 |
-
#@ crayon-syntax-highlighter
|
552 |
-
msgid "1.7.7"
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: crayon_wp.class.php:367
|
556 |
#@ crayon-syntax-highlighter
|
557 |
msgid "View Settings"
|
558 |
msgstr "Ver Configuración"
|
559 |
|
560 |
-
#: crayon_wp.class.php:
|
561 |
#@ crayon-syntax-highlighter
|
562 |
msgid "Donate"
|
563 |
msgstr "Donar"
|
564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:125
|
23 |
+
#: crayon_settings.class.php:129
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:125
|
29 |
+
#: crayon_settings.class.php:129
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:125
|
35 |
+
#: crayon_settings.class.php:129
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Estático"
|
39 |
|
40 |
+
#: crayon_settings.class.php:127
|
41 |
+
#: crayon_settings.class.php:131
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Píxeles"
|
45 |
|
46 |
+
#: crayon_settings.class.php:127
|
47 |
+
#: crayon_settings.class.php:131
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Por ciento"
|
51 |
|
52 |
+
#: crayon_settings.class.php:140
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Ninguno"
|
56 |
|
57 |
+
#: crayon_settings.class.php:140
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Izquierda"
|
61 |
|
62 |
+
#: crayon_settings.class.php:140
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centro"
|
66 |
|
67 |
+
#: crayon_settings.class.php:140
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Derecho"
|
71 |
|
72 |
+
#: crayon_settings.class.php:142
|
73 |
+
#: crayon_settings.class.php:159
|
74 |
+
#: crayon_settings.class.php:164
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Se mueve el ratón"
|
78 |
|
79 |
+
#: crayon_settings.class.php:142
|
80 |
+
#: crayon_settings.class.php:148
|
81 |
+
#: crayon_settings.class.php:159
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Siempre"
|
85 |
|
86 |
+
#: crayon_settings.class.php:142
|
87 |
+
#: crayon_settings.class.php:148
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Nunca"
|
91 |
|
92 |
+
#: crayon_settings.class.php:148
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Cuando se encuentra"
|
96 |
|
97 |
+
#: crayon_settings.class.php:164
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Haga doble click en"
|
101 |
|
102 |
+
#: crayon_settings.class.php:164
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "En solo clic"
|
106 |
|
107 |
+
#: crayon_settings.class.php:172
|
108 |
#@ crayon-syntax-highlighter
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "Se produjo un error. Por favor, inténtelo de nuevo más tarde."
|
258 |
msgid "Enable Live Preview"
|
259 |
msgstr "Activar vista previa dinámica"
|
260 |
|
261 |
+
#: crayon_settings_wp.class.php:534
|
262 |
#, php-format
|
263 |
#@ crayon-syntax-highlighter
|
264 |
msgid "The selected theme with id %s could not be loaded"
|
265 |
msgstr "El tema seleccionado con el id %s no se pudo cargar"
|
266 |
|
267 |
+
#: crayon_settings_wp.class.php:548
|
268 |
#@ crayon-syntax-highlighter
|
269 |
msgid "Theme Default"
|
270 |
msgstr "Tema por defecto"
|
271 |
|
272 |
+
#: crayon_settings_wp.class.php:552
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "Custom Font Size"
|
275 |
msgstr "Tamaño de fuente personalizado"
|
276 |
|
277 |
+
#: crayon_settings_wp.class.php:557
|
278 |
#, php-format
|
279 |
#@ crayon-syntax-highlighter
|
280 |
msgid "The selected font with id %s could not be loaded"
|
281 |
msgstr "La fuente seleccionada con id %s no se pudo cargar"
|
282 |
|
283 |
+
#: crayon_settings_wp.class.php:563
|
284 |
#@ crayon-syntax-highlighter
|
285 |
msgid "Enable plain code view and display"
|
286 |
msgstr "Permiten ver el código normal y la pantalla"
|
287 |
|
288 |
+
#: crayon_settings_wp.class.php:568
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Permiten copiar el código / pegar"
|
292 |
|
293 |
+
#: crayon_settings_wp.class.php:570
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable opening code in a window"
|
296 |
msgstr "Permitir que el código de apertura de una ventana"
|
297 |
|
298 |
+
#: crayon_settings_wp.class.php:571
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Display scrollbars (when needed)"
|
301 |
msgstr "Barras de desplazamiento de la pantalla (si es necesario)"
|
302 |
|
303 |
+
#: crayon_settings_wp.class.php:573
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Tab tamaño en espacios"
|
307 |
|
308 |
+
#: crayon_settings_wp.class.php:575
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Remove whitespace surrounding the shortcode content"
|
311 |
msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
|
312 |
|
313 |
+
#: crayon_settings_wp.class.php:585
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
316 |
msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
|
317 |
|
318 |
+
#: crayon_settings_wp.class.php:592
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Clear the cache used to store remote code requests"
|
321 |
msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
|
322 |
|
323 |
+
#: crayon_settings_wp.class.php:594
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Limpiar ahora"
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:596
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
331 |
msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
|
332 |
|
333 |
+
#: crayon_settings_wp.class.php:597
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Desactivar las animaciones"
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:598
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Desactivar tiempo de ejecución de las estadísticas"
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:605
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Log errors for individual Crayons"
|
346 |
msgstr "Errores de registro para cada Crayon"
|
347 |
|
348 |
+
#: crayon_settings_wp.class.php:606
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log system-wide errors"
|
351 |
msgstr "Registro de todo el sistema de los errores"
|
352 |
|
353 |
+
#: crayon_settings_wp.class.php:607
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Display custom message for errors"
|
356 |
msgstr "Mostrar mensajes personalizados para los errores"
|
357 |
|
358 |
+
#: crayon_settings_wp.class.php:619
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Mostrar Registro"
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:621
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Borrar Registro"
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:622
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "Admin Email"
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:624
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "Correo electrónico del desarrollador"
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:640
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Versión"
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:642
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Promotor"
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:666
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
|
392 |
|
393 |
+
#: util/preview.php:63
|
394 |
#, php-format
|
395 |
#@ crayon-syntax-highlighter
|
396 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
397 |
msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
|
398 |
|
399 |
+
#: crayon_settings.class.php:99
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Cada hora"
|
403 |
|
404 |
+
#: crayon_settings.class.php:99
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Diario"
|
408 |
|
409 |
+
#: crayon_settings.class.php:100
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Semanal"
|
413 |
|
414 |
+
#: crayon_settings.class.php:100
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Mensual"
|
418 |
|
419 |
+
#: crayon_settings.class.php:101
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Inmediatamente"
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Crayon Ayuda"
|
428 |
|
429 |
+
#: crayon_settings_wp.class.php:595
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
|
433 |
|
434 |
+
#: crayon_settings_wp.class.php:595
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "¿Por qué?"
|
444 |
msgstr[0] "%d lenguaje que se ha detectado."
|
445 |
msgstr[1] "%d idiomas se han detectado."
|
446 |
|
447 |
+
#: crayon_settings_wp.class.php:588
|
448 |
#@ crayon-syntax-highlighter
|
449 |
msgid "Followed by your relative URL."
|
450 |
msgstr "Seguido de su dirección URL relativa\t."
|
451 |
|
452 |
+
#: crayon_settings_wp.class.php:626
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "The log is currently empty."
|
455 |
msgstr "El registro está actualmente vacía."
|
456 |
|
457 |
+
#: crayon_settings_wp.class.php:628
|
458 |
#@ crayon-syntax-highlighter
|
459 |
msgid "The log file exists and is writable."
|
460 |
msgstr "El archivo de registro existe y se puede escribir."
|
461 |
|
462 |
+
#: crayon_settings_wp.class.php:628
|
463 |
#@ crayon-syntax-highlighter
|
464 |
msgid "The log file exists and is not writable."
|
465 |
msgstr "El archivo de registro existe y no es modificable."
|
466 |
|
467 |
+
#: crayon_settings_wp.class.php:630
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "The log file does not exist and is not writable."
|
470 |
msgstr "El archivo de registro no existe y no es modificable."
|
471 |
|
472 |
+
#: crayon_settings_wp.class.php:576
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "Capture <pre> tags as Crayons"
|
475 |
msgstr "Captura de etiquetas <pre> como Crayons"
|
476 |
|
477 |
+
#: crayon_settings_wp.class.php:531
|
478 |
+
#: crayon_settings_wp.class.php:559
|
479 |
+
#: crayon_settings_wp.class.php:577
|
480 |
+
#: crayon_settings_wp.class.php:578
|
481 |
+
#: crayon_settings_wp.class.php:579
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Learn More"
|
484 |
msgstr "Más información"
|
485 |
|
486 |
+
#: crayon_settings_wp.class.php:580
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Show Mixed Language Icon (+)"
|
489 |
msgstr "Mostrar el icono del lenguaje mixto (+)"
|
490 |
|
491 |
+
#: crayon_settings_wp.class.php:579
|
492 |
#@ crayon-syntax-highlighter
|
493 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
494 |
msgstr "Permiten destacar mixto del lenguaje con delimitadores y etiquetas."
|
495 |
|
496 |
+
#: crayon_settings_wp.class.php:577
|
497 |
#@ crayon-syntax-highlighter
|
498 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
499 |
msgstr "Captura Tags Mini como [php][/php] como Crayons."
|
500 |
|
501 |
+
#: crayon_settings_wp.class.php:578
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable [plain][/plain] tag."
|
504 |
msgstr "Activar etiqueta [plain][/plain]."
|
505 |
|
506 |
+
#: crayon_settings.class.php:164
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Disable Mouse Events"
|
509 |
msgstr "Desactivar Los Eventos De Ratón"
|
510 |
|
511 |
+
#: crayon_settings_wp.class.php:566
|
512 |
#@ crayon-syntax-highlighter
|
513 |
msgid "Enable plain code toggling"
|
514 |
msgstr "Permiten alternar código normal"
|
515 |
|
516 |
+
#: crayon_settings_wp.class.php:567
|
517 |
#@ crayon-syntax-highlighter
|
518 |
msgid "Show the plain code by default"
|
519 |
msgstr "Mostrar el código sin formato por defecto"
|
548 |
msgid "http://ak.net84.net/"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: crayon_wp.class.php:428
|
|
|
|
|
|
|
|
|
|
|
|
|
552 |
#@ crayon-syntax-highlighter
|
553 |
msgid "View Settings"
|
554 |
msgstr "Ver Configuración"
|
555 |
|
556 |
+
#: crayon_wp.class.php:429
|
557 |
#@ crayon-syntax-highlighter
|
558 |
msgid "Donate"
|
559 |
msgstr "Donar"
|
560 |
|
561 |
+
#: crayon_settings_wp.class.php:206
|
562 |
+
#@ crayon-syntax-highlighter
|
563 |
+
msgid "General"
|
564 |
+
msgstr "General"
|
565 |
+
|
566 |
+
#: crayon_settings_wp.class.php:207
|
567 |
+
#@ crayon-syntax-highlighter
|
568 |
+
msgid "Theme"
|
569 |
+
msgstr "Tema"
|
570 |
+
|
571 |
+
#: crayon_settings_wp.class.php:208
|
572 |
+
#@ crayon-syntax-highlighter
|
573 |
+
msgid "Font"
|
574 |
+
msgstr "Son"
|
575 |
+
|
576 |
+
#: crayon_settings_wp.class.php:209
|
577 |
+
#@ crayon-syntax-highlighter
|
578 |
+
msgid "Metrics"
|
579 |
+
msgstr "Métrica"
|
580 |
+
|
581 |
+
#: crayon_settings_wp.class.php:210
|
582 |
+
#@ crayon-syntax-highlighter
|
583 |
+
msgid "Toolbar"
|
584 |
+
msgstr "Barra de herramientas"
|
585 |
+
|
586 |
+
#: crayon_settings_wp.class.php:211
|
587 |
+
#@ crayon-syntax-highlighter
|
588 |
+
msgid "Lines"
|
589 |
+
msgstr "Líneas"
|
590 |
+
|
591 |
+
#: crayon_settings_wp.class.php:212
|
592 |
+
#@ crayon-syntax-highlighter
|
593 |
+
msgid "Code"
|
594 |
+
msgstr "Código"
|
595 |
+
|
596 |
+
#: crayon_settings_wp.class.php:213
|
597 |
+
#@ crayon-syntax-highlighter
|
598 |
+
msgid "Languages"
|
599 |
+
msgstr "Idiomas"
|
600 |
+
|
601 |
+
#: crayon_settings_wp.class.php:214
|
602 |
+
#@ crayon-syntax-highlighter
|
603 |
+
msgid "Files"
|
604 |
+
msgstr "Archivos"
|
605 |
+
|
606 |
+
#: crayon_settings_wp.class.php:215
|
607 |
+
#@ crayon-syntax-highlighter
|
608 |
+
msgid "Misc"
|
609 |
+
msgstr "Misc"
|
610 |
+
|
611 |
+
#: crayon_settings_wp.class.php:218
|
612 |
+
#@ crayon-syntax-highlighter
|
613 |
+
msgid "Debug"
|
614 |
+
msgstr "Depurar"
|
615 |
+
|
616 |
+
#: crayon_settings_wp.class.php:219
|
617 |
+
#@ crayon-syntax-highlighter
|
618 |
+
msgid "Errors"
|
619 |
+
msgstr "Errores"
|
620 |
+
|
621 |
+
#: crayon_settings_wp.class.php:220
|
622 |
+
#@ crayon-syntax-highlighter
|
623 |
+
msgid "Log"
|
624 |
+
msgstr "Log"
|
625 |
+
|
626 |
+
#: crayon_settings_wp.class.php:223
|
627 |
+
#@ crayon-syntax-highlighter
|
628 |
+
msgid "About"
|
629 |
+
msgstr "Sobre"
|
630 |
+
|
631 |
+
#: crayon_settings_wp.class.php:531
|
632 |
+
#@ crayon-syntax-highlighter
|
633 |
+
msgid "Enqueue themes in the header (more efficient)."
|
634 |
+
msgstr "Enqueue temas en la cabecera (más eficiente)."
|
635 |
+
|
636 |
+
#: crayon_settings_wp.class.php:559
|
637 |
+
#@ crayon-syntax-highlighter
|
638 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
639 |
+
msgstr "Enqueue fuentes en la cabecera (más eficiente)."
|
640 |
+
|
641 |
+
#. translators: plugin header field 'Version'
|
642 |
+
#: crayon_wp.class.php:0
|
643 |
+
#@ crayon-syntax-highlighter
|
644 |
+
msgid "1.7.11"
|
645 |
+
msgstr ""
|
646 |
+
|
trans/crayon-syntax-highlighter-fr_FR.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-fr_FR.po
CHANGED
@@ -19,92 +19,92 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
-
#: crayon_settings.class.php:
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
#: crayon_settings.class.php:
|
29 |
-
#: crayon_settings.class.php:
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
#: crayon_settings.class.php:
|
35 |
-
#: crayon_settings.class.php:
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statique"
|
39 |
|
40 |
-
#: crayon_settings.class.php:
|
41 |
-
#: crayon_settings.class.php:
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
-
#: crayon_settings.class.php:
|
47 |
-
#: crayon_settings.class.php:
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Pour cent"
|
51 |
|
52 |
-
#: crayon_settings.class.php:
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Aucun"
|
56 |
|
57 |
-
#: crayon_settings.class.php:
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Gauche"
|
61 |
|
62 |
-
#: crayon_settings.class.php:
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centre"
|
66 |
|
67 |
-
#: crayon_settings.class.php:
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Droite"
|
71 |
|
72 |
-
#: crayon_settings.class.php:
|
73 |
-
#: crayon_settings.class.php:
|
74 |
-
#: crayon_settings.class.php:
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Sur MouseOver"
|
78 |
|
79 |
-
#: crayon_settings.class.php:
|
80 |
-
#: crayon_settings.class.php:
|
81 |
-
#: crayon_settings.class.php:
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Toujours"
|
85 |
|
86 |
-
#: crayon_settings.class.php:
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Jamais"
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Une fois trouvé"
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Le double-clic"
|
101 |
|
102 |
-
#: crayon_settings.class.php:
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Le Single Cliquez"
|
106 |
|
107 |
-
#: crayon_settings.class.php:
|
108 |
#@ crayon-syntax-highlighter
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "Une erreur s'est produite. S'il vous plaît essayez de nouveau plus tard."
|
@@ -258,165 +258,165 @@ msgstr "Voir langues"
|
|
258 |
msgid "Enable Live Preview"
|
259 |
msgstr "Activer l'aperçu en direct"
|
260 |
|
261 |
-
#: crayon_settings_wp.class.php:
|
262 |
#, php-format
|
263 |
#@ crayon-syntax-highlighter
|
264 |
msgid "The selected theme with id %s could not be loaded"
|
265 |
msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
|
266 |
|
267 |
-
#: crayon_settings_wp.class.php:
|
268 |
#@ crayon-syntax-highlighter
|
269 |
msgid "Theme Default"
|
270 |
msgstr "Thème par défaut"
|
271 |
|
272 |
-
#: crayon_settings_wp.class.php:
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "Custom Font Size"
|
275 |
msgstr "Taille du texte personnalisé"
|
276 |
|
277 |
-
#: crayon_settings_wp.class.php:
|
278 |
#, php-format
|
279 |
#@ crayon-syntax-highlighter
|
280 |
msgid "The selected font with id %s could not be loaded"
|
281 |
msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
|
282 |
|
283 |
-
#: crayon_settings_wp.class.php:
|
284 |
#@ crayon-syntax-highlighter
|
285 |
msgid "Enable plain code view and display"
|
286 |
msgstr "Activer le mode code clair et d'affichage"
|
287 |
|
288 |
-
#: crayon_settings_wp.class.php:
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Activer copiez le code/coller"
|
292 |
|
293 |
-
#: crayon_settings_wp.class.php:
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable opening code in a window"
|
296 |
msgstr "Activer code d'ouverture dans une fenêtre"
|
297 |
|
298 |
-
#: crayon_settings_wp.class.php:
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Display scrollbars (when needed)"
|
301 |
msgstr "Affichage des barres de défilement (si nécessaire)"
|
302 |
|
303 |
-
#: crayon_settings_wp.class.php:
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Taille des tabulations dans les espaces"
|
307 |
|
308 |
-
#: crayon_settings_wp.class.php:
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Remove whitespace surrounding the shortcode content"
|
311 |
msgstr "Enlevez les espaces entourant le contenu shortcode"
|
312 |
|
313 |
-
#: crayon_settings_wp.class.php:
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
316 |
msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Clear the cache used to store remote code requests"
|
321 |
msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Effacer maintenant"
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
331 |
msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Désactiver les animations"
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Désactiver l'exécution stats"
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Log errors for individual Crayons"
|
346 |
msgstr "Connexion pour les erreurs individuelles Crayons"
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log system-wide errors"
|
351 |
msgstr "Connexion échelle du système des erreurs"
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Display custom message for errors"
|
356 |
msgstr "Afficher un message personnalisé pour les erreurs"
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Afficher le journal"
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Effacer le journal"
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "Admin Email"
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "Développeur Email"
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Version"
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Développeur"
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
|
392 |
|
393 |
-
#: util/preview.php:
|
394 |
#, php-format
|
395 |
#@ crayon-syntax-highlighter
|
396 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
397 |
msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
|
398 |
|
399 |
-
#: crayon_settings.class.php:
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Horaires"
|
403 |
|
404 |
-
#: crayon_settings.class.php:
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Daily"
|
408 |
|
409 |
-
#: crayon_settings.class.php:
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Hebdomadaire"
|
413 |
|
414 |
-
#: crayon_settings.class.php:
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Mensuel"
|
418 |
|
419 |
-
#: crayon_settings.class.php:
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Immédiatement"
|
@@ -426,12 +426,12 @@ msgstr "Immédiatement"
|
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Aide Crayon"
|
428 |
|
429 |
-
#: crayon_settings_wp.class.php:
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
|
433 |
|
434 |
-
#: crayon_settings_wp.class.php:
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "Pourquoi?"
|
@@ -444,74 +444,76 @@ msgid_plural "%d languages have been detected."
|
|
444 |
msgstr[0] "%d la langue a été détectée."
|
445 |
msgstr[1] "%d langues ont été détectés."
|
446 |
|
447 |
-
#: crayon_settings_wp.class.php:
|
448 |
#@ crayon-syntax-highlighter
|
449 |
msgid "Followed by your relative URL."
|
450 |
msgstr "Suivi de votre URL relative."
|
451 |
|
452 |
-
#: crayon_settings_wp.class.php:
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "The log is currently empty."
|
455 |
msgstr "Le journal est actuellement vide."
|
456 |
|
457 |
-
#: crayon_settings_wp.class.php:
|
458 |
#@ crayon-syntax-highlighter
|
459 |
msgid "The log file exists and is writable."
|
460 |
msgstr "Le fichier journal existe et est accessible en écriture."
|
461 |
|
462 |
-
#: crayon_settings_wp.class.php:
|
463 |
#@ crayon-syntax-highlighter
|
464 |
msgid "The log file exists and is not writable."
|
465 |
msgstr "Le fichier journal existe et n'est pas accessible en écriture."
|
466 |
|
467 |
-
#: crayon_settings_wp.class.php:
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "The log file does not exist and is not writable."
|
470 |
msgstr "Le fichier journal n'existe pas et n'est pas modifiable."
|
471 |
|
472 |
-
#: crayon_settings_wp.class.php:
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "Capture <pre> tags as Crayons"
|
475 |
msgstr "Capturez balises <pre> que Crayons"
|
476 |
|
477 |
-
#: crayon_settings_wp.class.php:
|
478 |
-
#: crayon_settings_wp.class.php:
|
479 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
480 |
#@ crayon-syntax-highlighter
|
481 |
msgid "Learn More"
|
482 |
msgstr "En savoir plus"
|
483 |
|
484 |
-
#: crayon_settings_wp.class.php:
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Show Mixed Language Icon (+)"
|
487 |
msgstr "Afficher l'icône Langue mixte (+)"
|
488 |
|
489 |
-
#: crayon_settings_wp.class.php:
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
492 |
msgstr "Autoriser Soulignant langue mélangée avec des délimiteurs et des tags."
|
493 |
|
494 |
-
#: crayon_settings_wp.class.php:
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
497 |
msgstr "Capturez Balises Mini tels que [php][/php] Crayons."
|
498 |
|
499 |
-
#: crayon_settings_wp.class.php:
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Enable [plain][/plain] tag."
|
502 |
msgstr "Activer tag [plain][/plain]."
|
503 |
|
504 |
-
#: crayon_settings.class.php:
|
505 |
#@ crayon-syntax-highlighter
|
506 |
msgid "Disable Mouse Events"
|
507 |
msgstr "Désactiver les événements souris"
|
508 |
|
509 |
-
#: crayon_settings_wp.class.php:
|
510 |
#@ crayon-syntax-highlighter
|
511 |
msgid "Enable plain code toggling"
|
512 |
msgstr "Activer le code basculer plaine"
|
513 |
|
514 |
-
#: crayon_settings_wp.class.php:
|
515 |
#@ crayon-syntax-highlighter
|
516 |
msgid "Show the plain code by default"
|
517 |
msgstr "Montrer le code brut par défaut"
|
@@ -546,19 +548,99 @@ msgstr ""
|
|
546 |
msgid "http://ak.net84.net/"
|
547 |
msgstr ""
|
548 |
|
549 |
-
|
550 |
-
#: crayon_wp.class.php:0
|
551 |
-
#@ crayon-syntax-highlighter
|
552 |
-
msgid "1.7.7"
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: crayon_wp.class.php:367
|
556 |
#@ crayon-syntax-highlighter
|
557 |
msgid "View Settings"
|
558 |
msgstr "Paramètres d'affichage"
|
559 |
|
560 |
-
#: crayon_wp.class.php:
|
561 |
#@ crayon-syntax-highlighter
|
562 |
msgid "Donate"
|
563 |
msgstr "Faire un don"
|
564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:125
|
23 |
+
#: crayon_settings.class.php:129
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:125
|
29 |
+
#: crayon_settings.class.php:129
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:125
|
35 |
+
#: crayon_settings.class.php:129
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statique"
|
39 |
|
40 |
+
#: crayon_settings.class.php:127
|
41 |
+
#: crayon_settings.class.php:131
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
+
#: crayon_settings.class.php:127
|
47 |
+
#: crayon_settings.class.php:131
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Pour cent"
|
51 |
|
52 |
+
#: crayon_settings.class.php:140
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Aucun"
|
56 |
|
57 |
+
#: crayon_settings.class.php:140
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Gauche"
|
61 |
|
62 |
+
#: crayon_settings.class.php:140
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centre"
|
66 |
|
67 |
+
#: crayon_settings.class.php:140
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Droite"
|
71 |
|
72 |
+
#: crayon_settings.class.php:142
|
73 |
+
#: crayon_settings.class.php:159
|
74 |
+
#: crayon_settings.class.php:164
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Sur MouseOver"
|
78 |
|
79 |
+
#: crayon_settings.class.php:142
|
80 |
+
#: crayon_settings.class.php:148
|
81 |
+
#: crayon_settings.class.php:159
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Toujours"
|
85 |
|
86 |
+
#: crayon_settings.class.php:142
|
87 |
+
#: crayon_settings.class.php:148
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Jamais"
|
91 |
|
92 |
+
#: crayon_settings.class.php:148
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Une fois trouvé"
|
96 |
|
97 |
+
#: crayon_settings.class.php:164
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Le double-clic"
|
101 |
|
102 |
+
#: crayon_settings.class.php:164
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Le Single Cliquez"
|
106 |
|
107 |
+
#: crayon_settings.class.php:172
|
108 |
#@ crayon-syntax-highlighter
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "Une erreur s'est produite. S'il vous plaît essayez de nouveau plus tard."
|
258 |
msgid "Enable Live Preview"
|
259 |
msgstr "Activer l'aperçu en direct"
|
260 |
|
261 |
+
#: crayon_settings_wp.class.php:534
|
262 |
#, php-format
|
263 |
#@ crayon-syntax-highlighter
|
264 |
msgid "The selected theme with id %s could not be loaded"
|
265 |
msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
|
266 |
|
267 |
+
#: crayon_settings_wp.class.php:548
|
268 |
#@ crayon-syntax-highlighter
|
269 |
msgid "Theme Default"
|
270 |
msgstr "Thème par défaut"
|
271 |
|
272 |
+
#: crayon_settings_wp.class.php:552
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "Custom Font Size"
|
275 |
msgstr "Taille du texte personnalisé"
|
276 |
|
277 |
+
#: crayon_settings_wp.class.php:557
|
278 |
#, php-format
|
279 |
#@ crayon-syntax-highlighter
|
280 |
msgid "The selected font with id %s could not be loaded"
|
281 |
msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
|
282 |
|
283 |
+
#: crayon_settings_wp.class.php:563
|
284 |
#@ crayon-syntax-highlighter
|
285 |
msgid "Enable plain code view and display"
|
286 |
msgstr "Activer le mode code clair et d'affichage"
|
287 |
|
288 |
+
#: crayon_settings_wp.class.php:568
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Activer copiez le code/coller"
|
292 |
|
293 |
+
#: crayon_settings_wp.class.php:570
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable opening code in a window"
|
296 |
msgstr "Activer code d'ouverture dans une fenêtre"
|
297 |
|
298 |
+
#: crayon_settings_wp.class.php:571
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Display scrollbars (when needed)"
|
301 |
msgstr "Affichage des barres de défilement (si nécessaire)"
|
302 |
|
303 |
+
#: crayon_settings_wp.class.php:573
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Taille des tabulations dans les espaces"
|
307 |
|
308 |
+
#: crayon_settings_wp.class.php:575
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Remove whitespace surrounding the shortcode content"
|
311 |
msgstr "Enlevez les espaces entourant le contenu shortcode"
|
312 |
|
313 |
+
#: crayon_settings_wp.class.php:585
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
316 |
msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
|
317 |
|
318 |
+
#: crayon_settings_wp.class.php:592
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Clear the cache used to store remote code requests"
|
321 |
msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
|
322 |
|
323 |
+
#: crayon_settings_wp.class.php:594
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Effacer maintenant"
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:596
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
331 |
msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
|
332 |
|
333 |
+
#: crayon_settings_wp.class.php:597
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Désactiver les animations"
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:598
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Désactiver l'exécution stats"
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:605
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Log errors for individual Crayons"
|
346 |
msgstr "Connexion pour les erreurs individuelles Crayons"
|
347 |
|
348 |
+
#: crayon_settings_wp.class.php:606
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log system-wide errors"
|
351 |
msgstr "Connexion échelle du système des erreurs"
|
352 |
|
353 |
+
#: crayon_settings_wp.class.php:607
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Display custom message for errors"
|
356 |
msgstr "Afficher un message personnalisé pour les erreurs"
|
357 |
|
358 |
+
#: crayon_settings_wp.class.php:619
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Afficher le journal"
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:621
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Effacer le journal"
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:622
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "Admin Email"
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:624
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "Développeur Email"
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:640
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Version"
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:642
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Développeur"
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:666
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
|
392 |
|
393 |
+
#: util/preview.php:63
|
394 |
#, php-format
|
395 |
#@ crayon-syntax-highlighter
|
396 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
397 |
msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
|
398 |
|
399 |
+
#: crayon_settings.class.php:99
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Horaires"
|
403 |
|
404 |
+
#: crayon_settings.class.php:99
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Daily"
|
408 |
|
409 |
+
#: crayon_settings.class.php:100
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Hebdomadaire"
|
413 |
|
414 |
+
#: crayon_settings.class.php:100
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Mensuel"
|
418 |
|
419 |
+
#: crayon_settings.class.php:101
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Immédiatement"
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Aide Crayon"
|
428 |
|
429 |
+
#: crayon_settings_wp.class.php:595
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
|
433 |
|
434 |
+
#: crayon_settings_wp.class.php:595
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "Pourquoi?"
|
444 |
msgstr[0] "%d la langue a été détectée."
|
445 |
msgstr[1] "%d langues ont été détectés."
|
446 |
|
447 |
+
#: crayon_settings_wp.class.php:588
|
448 |
#@ crayon-syntax-highlighter
|
449 |
msgid "Followed by your relative URL."
|
450 |
msgstr "Suivi de votre URL relative."
|
451 |
|
452 |
+
#: crayon_settings_wp.class.php:626
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "The log is currently empty."
|
455 |
msgstr "Le journal est actuellement vide."
|
456 |
|
457 |
+
#: crayon_settings_wp.class.php:628
|
458 |
#@ crayon-syntax-highlighter
|
459 |
msgid "The log file exists and is writable."
|
460 |
msgstr "Le fichier journal existe et est accessible en écriture."
|
461 |
|
462 |
+
#: crayon_settings_wp.class.php:628
|
463 |
#@ crayon-syntax-highlighter
|
464 |
msgid "The log file exists and is not writable."
|
465 |
msgstr "Le fichier journal existe et n'est pas accessible en écriture."
|
466 |
|
467 |
+
#: crayon_settings_wp.class.php:630
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "The log file does not exist and is not writable."
|
470 |
msgstr "Le fichier journal n'existe pas et n'est pas modifiable."
|
471 |
|
472 |
+
#: crayon_settings_wp.class.php:576
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "Capture <pre> tags as Crayons"
|
475 |
msgstr "Capturez balises <pre> que Crayons"
|
476 |
|
477 |
+
#: crayon_settings_wp.class.php:531
|
478 |
+
#: crayon_settings_wp.class.php:559
|
479 |
+
#: crayon_settings_wp.class.php:577
|
480 |
+
#: crayon_settings_wp.class.php:578
|
481 |
+
#: crayon_settings_wp.class.php:579
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Learn More"
|
484 |
msgstr "En savoir plus"
|
485 |
|
486 |
+
#: crayon_settings_wp.class.php:580
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Show Mixed Language Icon (+)"
|
489 |
msgstr "Afficher l'icône Langue mixte (+)"
|
490 |
|
491 |
+
#: crayon_settings_wp.class.php:579
|
492 |
#@ crayon-syntax-highlighter
|
493 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
494 |
msgstr "Autoriser Soulignant langue mélangée avec des délimiteurs et des tags."
|
495 |
|
496 |
+
#: crayon_settings_wp.class.php:577
|
497 |
#@ crayon-syntax-highlighter
|
498 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
499 |
msgstr "Capturez Balises Mini tels que [php][/php] Crayons."
|
500 |
|
501 |
+
#: crayon_settings_wp.class.php:578
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable [plain][/plain] tag."
|
504 |
msgstr "Activer tag [plain][/plain]."
|
505 |
|
506 |
+
#: crayon_settings.class.php:164
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Disable Mouse Events"
|
509 |
msgstr "Désactiver les événements souris"
|
510 |
|
511 |
+
#: crayon_settings_wp.class.php:566
|
512 |
#@ crayon-syntax-highlighter
|
513 |
msgid "Enable plain code toggling"
|
514 |
msgstr "Activer le code basculer plaine"
|
515 |
|
516 |
+
#: crayon_settings_wp.class.php:567
|
517 |
#@ crayon-syntax-highlighter
|
518 |
msgid "Show the plain code by default"
|
519 |
msgstr "Montrer le code brut par défaut"
|
548 |
msgid "http://ak.net84.net/"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: crayon_wp.class.php:428
|
|
|
|
|
|
|
|
|
|
|
|
|
552 |
#@ crayon-syntax-highlighter
|
553 |
msgid "View Settings"
|
554 |
msgstr "Paramètres d'affichage"
|
555 |
|
556 |
+
#: crayon_wp.class.php:429
|
557 |
#@ crayon-syntax-highlighter
|
558 |
msgid "Donate"
|
559 |
msgstr "Faire un don"
|
560 |
|
561 |
+
#: crayon_settings_wp.class.php:206
|
562 |
+
#@ crayon-syntax-highlighter
|
563 |
+
msgid "General"
|
564 |
+
msgstr "Général"
|
565 |
+
|
566 |
+
#: crayon_settings_wp.class.php:207
|
567 |
+
#@ crayon-syntax-highlighter
|
568 |
+
msgid "Theme"
|
569 |
+
msgstr "Thème"
|
570 |
+
|
571 |
+
#: crayon_settings_wp.class.php:208
|
572 |
+
#@ crayon-syntax-highlighter
|
573 |
+
msgid "Font"
|
574 |
+
msgstr "Son"
|
575 |
+
|
576 |
+
#: crayon_settings_wp.class.php:209
|
577 |
+
#@ crayon-syntax-highlighter
|
578 |
+
msgid "Metrics"
|
579 |
+
msgstr "Mesures"
|
580 |
+
|
581 |
+
#: crayon_settings_wp.class.php:210
|
582 |
+
#@ crayon-syntax-highlighter
|
583 |
+
msgid "Toolbar"
|
584 |
+
msgstr "Barre d'outils"
|
585 |
+
|
586 |
+
#: crayon_settings_wp.class.php:211
|
587 |
+
#@ crayon-syntax-highlighter
|
588 |
+
msgid "Lines"
|
589 |
+
msgstr "Lignes"
|
590 |
+
|
591 |
+
#: crayon_settings_wp.class.php:212
|
592 |
+
#@ crayon-syntax-highlighter
|
593 |
+
msgid "Code"
|
594 |
+
msgstr "Code"
|
595 |
+
|
596 |
+
#: crayon_settings_wp.class.php:213
|
597 |
+
#@ crayon-syntax-highlighter
|
598 |
+
msgid "Languages"
|
599 |
+
msgstr "Langues"
|
600 |
+
|
601 |
+
#: crayon_settings_wp.class.php:214
|
602 |
+
#@ crayon-syntax-highlighter
|
603 |
+
msgid "Files"
|
604 |
+
msgstr "Fichiers"
|
605 |
+
|
606 |
+
#: crayon_settings_wp.class.php:215
|
607 |
+
#@ crayon-syntax-highlighter
|
608 |
+
msgid "Misc"
|
609 |
+
msgstr "Divers"
|
610 |
+
|
611 |
+
#: crayon_settings_wp.class.php:218
|
612 |
+
#@ crayon-syntax-highlighter
|
613 |
+
msgid "Debug"
|
614 |
+
msgstr "Débogage"
|
615 |
+
|
616 |
+
#: crayon_settings_wp.class.php:219
|
617 |
+
#@ crayon-syntax-highlighter
|
618 |
+
msgid "Errors"
|
619 |
+
msgstr "Erreurs"
|
620 |
+
|
621 |
+
#: crayon_settings_wp.class.php:220
|
622 |
+
#@ crayon-syntax-highlighter
|
623 |
+
msgid "Log"
|
624 |
+
msgstr "Connexion"
|
625 |
+
|
626 |
+
#: crayon_settings_wp.class.php:223
|
627 |
+
#@ crayon-syntax-highlighter
|
628 |
+
msgid "About"
|
629 |
+
msgstr "À propos"
|
630 |
+
|
631 |
+
#: crayon_settings_wp.class.php:531
|
632 |
+
#@ crayon-syntax-highlighter
|
633 |
+
msgid "Enqueue themes in the header (more efficient)."
|
634 |
+
msgstr "Enqueue thèmes dans l'en-tête (plus efficace)."
|
635 |
+
|
636 |
+
#: crayon_settings_wp.class.php:559
|
637 |
+
#@ crayon-syntax-highlighter
|
638 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
639 |
+
msgstr "Enqueue polices de caractères dans l'en-tête (plus efficace)."
|
640 |
+
|
641 |
+
#. translators: plugin header field 'Version'
|
642 |
+
#: crayon_wp.class.php:0
|
643 |
+
#@ crayon-syntax-highlighter
|
644 |
+
msgid "1.7.11"
|
645 |
+
msgstr ""
|
646 |
+
|
trans/crayon-syntax-highlighter-it_IT.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-it_IT.po
CHANGED
@@ -19,92 +19,92 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
-
#: crayon_settings.class.php:
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
#: crayon_settings.class.php:
|
29 |
-
#: crayon_settings.class.php:
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
#: crayon_settings.class.php:
|
35 |
-
#: crayon_settings.class.php:
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statico"
|
39 |
|
40 |
-
#: crayon_settings.class.php:
|
41 |
-
#: crayon_settings.class.php:
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
-
#: crayon_settings.class.php:
|
47 |
-
#: crayon_settings.class.php:
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Per cento"
|
51 |
|
52 |
-
#: crayon_settings.class.php:
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Nessuno"
|
56 |
|
57 |
-
#: crayon_settings.class.php:
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Sinistra"
|
61 |
|
62 |
-
#: crayon_settings.class.php:
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centro"
|
66 |
|
67 |
-
#: crayon_settings.class.php:
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Destra"
|
71 |
|
72 |
-
#: crayon_settings.class.php:
|
73 |
-
#: crayon_settings.class.php:
|
74 |
-
#: crayon_settings.class.php:
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Al passaggio del mouse"
|
78 |
|
79 |
-
#: crayon_settings.class.php:
|
80 |
-
#: crayon_settings.class.php:
|
81 |
-
#: crayon_settings.class.php:
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Sempre"
|
85 |
|
86 |
-
#: crayon_settings.class.php:
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Mai"
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Quando Trovato"
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Su doppio click"
|
101 |
|
102 |
-
#: crayon_settings.class.php:
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Il singolo click"
|
106 |
|
107 |
-
#: crayon_settings.class.php:
|
108 |
#@ crayon-syntax-highlighter
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "È verificato un errore. Riprova più tardi."
|
@@ -258,165 +258,165 @@ msgstr "Mostra Lingue"
|
|
258 |
msgid "Enable Live Preview"
|
259 |
msgstr "Attiva anteprima dal vivo"
|
260 |
|
261 |
-
#: crayon_settings_wp.class.php:
|
262 |
#, php-format
|
263 |
#@ crayon-syntax-highlighter
|
264 |
msgid "The selected theme with id %s could not be loaded"
|
265 |
msgstr "La tema selezionata con id %s non può essere caricato"
|
266 |
|
267 |
-
#: crayon_settings_wp.class.php:
|
268 |
#@ crayon-syntax-highlighter
|
269 |
msgid "Theme Default"
|
270 |
msgstr "Tema di Default"
|
271 |
|
272 |
-
#: crayon_settings_wp.class.php:
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "Custom Font Size"
|
275 |
msgstr "Dimensione del carattere personalizzati"
|
276 |
|
277 |
-
#: crayon_settings_wp.class.php:
|
278 |
#, php-format
|
279 |
#@ crayon-syntax-highlighter
|
280 |
msgid "The selected font with id %s could not be loaded"
|
281 |
msgstr "La font selezionata con id %s non può essere caricato"
|
282 |
|
283 |
-
#: crayon_settings_wp.class.php:
|
284 |
#@ crayon-syntax-highlighter
|
285 |
msgid "Enable plain code view and display"
|
286 |
msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
|
287 |
|
288 |
-
#: crayon_settings_wp.class.php:
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Abilita copiare il codice/incolla"
|
292 |
|
293 |
-
#: crayon_settings_wp.class.php:
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable opening code in a window"
|
296 |
msgstr "Abilita il codice di apertura in una finestra"
|
297 |
|
298 |
-
#: crayon_settings_wp.class.php:
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Display scrollbars (when needed)"
|
301 |
msgstr "Barre di scorrimento del display (quando necessario)"
|
302 |
|
303 |
-
#: crayon_settings_wp.class.php:
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Dimensione tabulazione in spazi"
|
307 |
|
308 |
-
#: crayon_settings_wp.class.php:
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Remove whitespace surrounding the shortcode content"
|
311 |
msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
|
312 |
|
313 |
-
#: crayon_settings_wp.class.php:
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
316 |
msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Clear the cache used to store remote code requests"
|
321 |
msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Svuota adesso"
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
331 |
msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Disattivare le animazioni"
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Disabilitare runtime stats"
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Log errors for individual Crayons"
|
346 |
msgstr "Errori nel registro di Crayons singoli"
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log system-wide errors"
|
351 |
msgstr "Log di sistema a livello di errori"
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Display custom message for errors"
|
356 |
msgstr "Display messaggio personalizzato per gli errori"
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Mostra registro"
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Cancella registro"
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "E-mail Admin"
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "Email Developer"
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Versione"
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Sviluppatore"
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
|
392 |
|
393 |
-
#: util/preview.php:
|
394 |
#, php-format
|
395 |
#@ crayon-syntax-highlighter
|
396 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
397 |
msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
|
398 |
|
399 |
-
#: crayon_settings.class.php:
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Ogni ora"
|
403 |
|
404 |
-
#: crayon_settings.class.php:
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Quotidiano"
|
408 |
|
409 |
-
#: crayon_settings.class.php:
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Settimanale"
|
413 |
|
414 |
-
#: crayon_settings.class.php:
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Mensile"
|
418 |
|
419 |
-
#: crayon_settings.class.php:
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Immediatamente"
|
@@ -426,12 +426,12 @@ msgstr "Immediatamente"
|
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Crayon Aiuto"
|
428 |
|
429 |
-
#: crayon_settings_wp.class.php:
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
|
433 |
|
434 |
-
#: crayon_settings_wp.class.php:
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "Perché?"
|
@@ -444,74 +444,76 @@ msgid_plural "%d languages have been detected."
|
|
444 |
msgstr[0] "%d lingua è stata rilevata."
|
445 |
msgstr[1] "%d lingue sono state rilevate."
|
446 |
|
447 |
-
#: crayon_settings_wp.class.php:
|
448 |
#@ crayon-syntax-highlighter
|
449 |
msgid "Followed by your relative URL."
|
450 |
msgstr "Seguito dal relativo URL."
|
451 |
|
452 |
-
#: crayon_settings_wp.class.php:
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "The log is currently empty."
|
455 |
msgstr "Il registro è vuoto."
|
456 |
|
457 |
-
#: crayon_settings_wp.class.php:
|
458 |
#@ crayon-syntax-highlighter
|
459 |
msgid "The log file exists and is writable."
|
460 |
msgstr "Il file di registro esiste ed è scrivibile."
|
461 |
|
462 |
-
#: crayon_settings_wp.class.php:
|
463 |
#@ crayon-syntax-highlighter
|
464 |
msgid "The log file exists and is not writable."
|
465 |
msgstr "Il file di registro esiste e non è scrivibile."
|
466 |
|
467 |
-
#: crayon_settings_wp.class.php:
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "The log file does not exist and is not writable."
|
470 |
msgstr "Il file di registro non esiste e non è scrivibile."
|
471 |
|
472 |
-
#: crayon_settings_wp.class.php:
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "Capture <pre> tags as Crayons"
|
475 |
msgstr "Cattura tag <pre> come Crayons"
|
476 |
|
477 |
-
#: crayon_settings_wp.class.php:
|
478 |
-
#: crayon_settings_wp.class.php:
|
479 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
480 |
#@ crayon-syntax-highlighter
|
481 |
msgid "Learn More"
|
482 |
msgstr "Approfondisci"
|
483 |
|
484 |
-
#: crayon_settings_wp.class.php:
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Show Mixed Language Icon (+)"
|
487 |
msgstr "Mostra icona misto di lingua (+)"
|
488 |
|
489 |
-
#: crayon_settings_wp.class.php:
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
492 |
msgstr "Lasciare Evidenziando Lingua mista con delimitatori e tag."
|
493 |
|
494 |
-
#: crayon_settings_wp.class.php:
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
497 |
msgstr "Cattura Tags come Mini [php][/php] come Crayons."
|
498 |
|
499 |
-
#: crayon_settings_wp.class.php:
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Enable [plain][/plain] tag."
|
502 |
msgstr "Abilita tag [plain][/plain]."
|
503 |
|
504 |
-
#: crayon_settings.class.php:
|
505 |
#@ crayon-syntax-highlighter
|
506 |
msgid "Disable Mouse Events"
|
507 |
msgstr "Disabilitare eventi di mouse"
|
508 |
|
509 |
-
#: crayon_settings_wp.class.php:
|
510 |
#@ crayon-syntax-highlighter
|
511 |
msgid "Enable plain code toggling"
|
512 |
msgstr "Abilita commutazione del semplice codice"
|
513 |
|
514 |
-
#: crayon_settings_wp.class.php:
|
515 |
#@ crayon-syntax-highlighter
|
516 |
msgid "Show the plain code by default"
|
517 |
msgstr "Mostrare il codice normale per impostazione predefinita"
|
@@ -546,19 +548,99 @@ msgstr ""
|
|
546 |
msgid "http://ak.net84.net/"
|
547 |
msgstr ""
|
548 |
|
549 |
-
|
550 |
-
#: crayon_wp.class.php:0
|
551 |
-
#@ crayon-syntax-highlighter
|
552 |
-
msgid "1.7.7"
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: crayon_wp.class.php:367
|
556 |
#@ crayon-syntax-highlighter
|
557 |
msgid "View Settings"
|
558 |
msgstr "Visualizza impostazioni"
|
559 |
|
560 |
-
#: crayon_wp.class.php:
|
561 |
#@ crayon-syntax-highlighter
|
562 |
msgid "Donate"
|
563 |
msgstr "Donare"
|
564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:125
|
23 |
+
#: crayon_settings.class.php:129
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:125
|
29 |
+
#: crayon_settings.class.php:129
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:125
|
35 |
+
#: crayon_settings.class.php:129
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statico"
|
39 |
|
40 |
+
#: crayon_settings.class.php:127
|
41 |
+
#: crayon_settings.class.php:131
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
+
#: crayon_settings.class.php:127
|
47 |
+
#: crayon_settings.class.php:131
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Per cento"
|
51 |
|
52 |
+
#: crayon_settings.class.php:140
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Nessuno"
|
56 |
|
57 |
+
#: crayon_settings.class.php:140
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Sinistra"
|
61 |
|
62 |
+
#: crayon_settings.class.php:140
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centro"
|
66 |
|
67 |
+
#: crayon_settings.class.php:140
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Destra"
|
71 |
|
72 |
+
#: crayon_settings.class.php:142
|
73 |
+
#: crayon_settings.class.php:159
|
74 |
+
#: crayon_settings.class.php:164
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Al passaggio del mouse"
|
78 |
|
79 |
+
#: crayon_settings.class.php:142
|
80 |
+
#: crayon_settings.class.php:148
|
81 |
+
#: crayon_settings.class.php:159
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Sempre"
|
85 |
|
86 |
+
#: crayon_settings.class.php:142
|
87 |
+
#: crayon_settings.class.php:148
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Mai"
|
91 |
|
92 |
+
#: crayon_settings.class.php:148
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Quando Trovato"
|
96 |
|
97 |
+
#: crayon_settings.class.php:164
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Su doppio click"
|
101 |
|
102 |
+
#: crayon_settings.class.php:164
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Il singolo click"
|
106 |
|
107 |
+
#: crayon_settings.class.php:172
|
108 |
#@ crayon-syntax-highlighter
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "È verificato un errore. Riprova più tardi."
|
258 |
msgid "Enable Live Preview"
|
259 |
msgstr "Attiva anteprima dal vivo"
|
260 |
|
261 |
+
#: crayon_settings_wp.class.php:534
|
262 |
#, php-format
|
263 |
#@ crayon-syntax-highlighter
|
264 |
msgid "The selected theme with id %s could not be loaded"
|
265 |
msgstr "La tema selezionata con id %s non può essere caricato"
|
266 |
|
267 |
+
#: crayon_settings_wp.class.php:548
|
268 |
#@ crayon-syntax-highlighter
|
269 |
msgid "Theme Default"
|
270 |
msgstr "Tema di Default"
|
271 |
|
272 |
+
#: crayon_settings_wp.class.php:552
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "Custom Font Size"
|
275 |
msgstr "Dimensione del carattere personalizzati"
|
276 |
|
277 |
+
#: crayon_settings_wp.class.php:557
|
278 |
#, php-format
|
279 |
#@ crayon-syntax-highlighter
|
280 |
msgid "The selected font with id %s could not be loaded"
|
281 |
msgstr "La font selezionata con id %s non può essere caricato"
|
282 |
|
283 |
+
#: crayon_settings_wp.class.php:563
|
284 |
#@ crayon-syntax-highlighter
|
285 |
msgid "Enable plain code view and display"
|
286 |
msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
|
287 |
|
288 |
+
#: crayon_settings_wp.class.php:568
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Abilita copiare il codice/incolla"
|
292 |
|
293 |
+
#: crayon_settings_wp.class.php:570
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable opening code in a window"
|
296 |
msgstr "Abilita il codice di apertura in una finestra"
|
297 |
|
298 |
+
#: crayon_settings_wp.class.php:571
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Display scrollbars (when needed)"
|
301 |
msgstr "Barre di scorrimento del display (quando necessario)"
|
302 |
|
303 |
+
#: crayon_settings_wp.class.php:573
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Dimensione tabulazione in spazi"
|
307 |
|
308 |
+
#: crayon_settings_wp.class.php:575
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Remove whitespace surrounding the shortcode content"
|
311 |
msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
|
312 |
|
313 |
+
#: crayon_settings_wp.class.php:585
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
316 |
msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
|
317 |
|
318 |
+
#: crayon_settings_wp.class.php:592
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Clear the cache used to store remote code requests"
|
321 |
msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
|
322 |
|
323 |
+
#: crayon_settings_wp.class.php:594
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Svuota adesso"
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:596
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
331 |
msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
|
332 |
|
333 |
+
#: crayon_settings_wp.class.php:597
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Disattivare le animazioni"
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:598
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Disabilitare runtime stats"
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:605
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Log errors for individual Crayons"
|
346 |
msgstr "Errori nel registro di Crayons singoli"
|
347 |
|
348 |
+
#: crayon_settings_wp.class.php:606
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log system-wide errors"
|
351 |
msgstr "Log di sistema a livello di errori"
|
352 |
|
353 |
+
#: crayon_settings_wp.class.php:607
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Display custom message for errors"
|
356 |
msgstr "Display messaggio personalizzato per gli errori"
|
357 |
|
358 |
+
#: crayon_settings_wp.class.php:619
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Mostra registro"
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:621
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Cancella registro"
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:622
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "E-mail Admin"
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:624
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "Email Developer"
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:640
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Versione"
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:642
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Sviluppatore"
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:666
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
|
392 |
|
393 |
+
#: util/preview.php:63
|
394 |
#, php-format
|
395 |
#@ crayon-syntax-highlighter
|
396 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
397 |
msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
|
398 |
|
399 |
+
#: crayon_settings.class.php:99
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Ogni ora"
|
403 |
|
404 |
+
#: crayon_settings.class.php:99
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Quotidiano"
|
408 |
|
409 |
+
#: crayon_settings.class.php:100
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Settimanale"
|
413 |
|
414 |
+
#: crayon_settings.class.php:100
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Mensile"
|
418 |
|
419 |
+
#: crayon_settings.class.php:101
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Immediatamente"
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Crayon Aiuto"
|
428 |
|
429 |
+
#: crayon_settings_wp.class.php:595
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
|
433 |
|
434 |
+
#: crayon_settings_wp.class.php:595
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "Perché?"
|
444 |
msgstr[0] "%d lingua è stata rilevata."
|
445 |
msgstr[1] "%d lingue sono state rilevate."
|
446 |
|
447 |
+
#: crayon_settings_wp.class.php:588
|
448 |
#@ crayon-syntax-highlighter
|
449 |
msgid "Followed by your relative URL."
|
450 |
msgstr "Seguito dal relativo URL."
|
451 |
|
452 |
+
#: crayon_settings_wp.class.php:626
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "The log is currently empty."
|
455 |
msgstr "Il registro è vuoto."
|
456 |
|
457 |
+
#: crayon_settings_wp.class.php:628
|
458 |
#@ crayon-syntax-highlighter
|
459 |
msgid "The log file exists and is writable."
|
460 |
msgstr "Il file di registro esiste ed è scrivibile."
|
461 |
|
462 |
+
#: crayon_settings_wp.class.php:628
|
463 |
#@ crayon-syntax-highlighter
|
464 |
msgid "The log file exists and is not writable."
|
465 |
msgstr "Il file di registro esiste e non è scrivibile."
|
466 |
|
467 |
+
#: crayon_settings_wp.class.php:630
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "The log file does not exist and is not writable."
|
470 |
msgstr "Il file di registro non esiste e non è scrivibile."
|
471 |
|
472 |
+
#: crayon_settings_wp.class.php:576
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "Capture <pre> tags as Crayons"
|
475 |
msgstr "Cattura tag <pre> come Crayons"
|
476 |
|
477 |
+
#: crayon_settings_wp.class.php:531
|
478 |
+
#: crayon_settings_wp.class.php:559
|
479 |
+
#: crayon_settings_wp.class.php:577
|
480 |
+
#: crayon_settings_wp.class.php:578
|
481 |
+
#: crayon_settings_wp.class.php:579
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Learn More"
|
484 |
msgstr "Approfondisci"
|
485 |
|
486 |
+
#: crayon_settings_wp.class.php:580
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Show Mixed Language Icon (+)"
|
489 |
msgstr "Mostra icona misto di lingua (+)"
|
490 |
|
491 |
+
#: crayon_settings_wp.class.php:579
|
492 |
#@ crayon-syntax-highlighter
|
493 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
494 |
msgstr "Lasciare Evidenziando Lingua mista con delimitatori e tag."
|
495 |
|
496 |
+
#: crayon_settings_wp.class.php:577
|
497 |
#@ crayon-syntax-highlighter
|
498 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
499 |
msgstr "Cattura Tags come Mini [php][/php] come Crayons."
|
500 |
|
501 |
+
#: crayon_settings_wp.class.php:578
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable [plain][/plain] tag."
|
504 |
msgstr "Abilita tag [plain][/plain]."
|
505 |
|
506 |
+
#: crayon_settings.class.php:164
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Disable Mouse Events"
|
509 |
msgstr "Disabilitare eventi di mouse"
|
510 |
|
511 |
+
#: crayon_settings_wp.class.php:566
|
512 |
#@ crayon-syntax-highlighter
|
513 |
msgid "Enable plain code toggling"
|
514 |
msgstr "Abilita commutazione del semplice codice"
|
515 |
|
516 |
+
#: crayon_settings_wp.class.php:567
|
517 |
#@ crayon-syntax-highlighter
|
518 |
msgid "Show the plain code by default"
|
519 |
msgstr "Mostrare il codice normale per impostazione predefinita"
|
548 |
msgid "http://ak.net84.net/"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: crayon_wp.class.php:428
|
|
|
|
|
|
|
|
|
|
|
|
|
552 |
#@ crayon-syntax-highlighter
|
553 |
msgid "View Settings"
|
554 |
msgstr "Visualizza impostazioni"
|
555 |
|
556 |
+
#: crayon_wp.class.php:429
|
557 |
#@ crayon-syntax-highlighter
|
558 |
msgid "Donate"
|
559 |
msgstr "Donare"
|
560 |
|
561 |
+
#: crayon_settings_wp.class.php:206
|
562 |
+
#@ crayon-syntax-highlighter
|
563 |
+
msgid "General"
|
564 |
+
msgstr "General"
|
565 |
+
|
566 |
+
#: crayon_settings_wp.class.php:207
|
567 |
+
#@ crayon-syntax-highlighter
|
568 |
+
msgid "Theme"
|
569 |
+
msgstr "Tema"
|
570 |
+
|
571 |
+
#: crayon_settings_wp.class.php:208
|
572 |
+
#@ crayon-syntax-highlighter
|
573 |
+
msgid "Font"
|
574 |
+
msgstr "Sono"
|
575 |
+
|
576 |
+
#: crayon_settings_wp.class.php:209
|
577 |
+
#@ crayon-syntax-highlighter
|
578 |
+
msgid "Metrics"
|
579 |
+
msgstr "Metrica"
|
580 |
+
|
581 |
+
#: crayon_settings_wp.class.php:210
|
582 |
+
#@ crayon-syntax-highlighter
|
583 |
+
msgid "Toolbar"
|
584 |
+
msgstr "Toolbar"
|
585 |
+
|
586 |
+
#: crayon_settings_wp.class.php:211
|
587 |
+
#@ crayon-syntax-highlighter
|
588 |
+
msgid "Lines"
|
589 |
+
msgstr "Linee"
|
590 |
+
|
591 |
+
#: crayon_settings_wp.class.php:212
|
592 |
+
#@ crayon-syntax-highlighter
|
593 |
+
msgid "Code"
|
594 |
+
msgstr "Codice"
|
595 |
+
|
596 |
+
#: crayon_settings_wp.class.php:213
|
597 |
+
#@ crayon-syntax-highlighter
|
598 |
+
msgid "Languages"
|
599 |
+
msgstr "Lingue"
|
600 |
+
|
601 |
+
#: crayon_settings_wp.class.php:214
|
602 |
+
#@ crayon-syntax-highlighter
|
603 |
+
msgid "Files"
|
604 |
+
msgstr "File"
|
605 |
+
|
606 |
+
#: crayon_settings_wp.class.php:215
|
607 |
+
#@ crayon-syntax-highlighter
|
608 |
+
msgid "Misc"
|
609 |
+
msgstr "Varie"
|
610 |
+
|
611 |
+
#: crayon_settings_wp.class.php:218
|
612 |
+
#@ crayon-syntax-highlighter
|
613 |
+
msgid "Debug"
|
614 |
+
msgstr "Debug"
|
615 |
+
|
616 |
+
#: crayon_settings_wp.class.php:219
|
617 |
+
#@ crayon-syntax-highlighter
|
618 |
+
msgid "Errors"
|
619 |
+
msgstr "Errori"
|
620 |
+
|
621 |
+
#: crayon_settings_wp.class.php:220
|
622 |
+
#@ crayon-syntax-highlighter
|
623 |
+
msgid "Log"
|
624 |
+
msgstr "Log"
|
625 |
+
|
626 |
+
#: crayon_settings_wp.class.php:223
|
627 |
+
#@ crayon-syntax-highlighter
|
628 |
+
msgid "About"
|
629 |
+
msgstr "Circa"
|
630 |
+
|
631 |
+
#: crayon_settings_wp.class.php:531
|
632 |
+
#@ crayon-syntax-highlighter
|
633 |
+
msgid "Enqueue themes in the header (more efficient)."
|
634 |
+
msgstr "Accoda temi nell'intestazione (bassi consumi)."
|
635 |
+
|
636 |
+
#: crayon_settings_wp.class.php:559
|
637 |
+
#@ crayon-syntax-highlighter
|
638 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
639 |
+
msgstr "Accoda i caratteri nell'intestazione (bassi consumi)."
|
640 |
+
|
641 |
+
#. translators: plugin header field 'Version'
|
642 |
+
#: crayon_wp.class.php:0
|
643 |
+
#@ crayon-syntax-highlighter
|
644 |
+
msgid "1.7.11"
|
645 |
+
msgstr ""
|
646 |
+
|
trans/crayon-syntax-highlighter-ja.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-ja.po
CHANGED
@@ -19,117 +19,117 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Hourly"
|
25 |
msgstr "毎時間"
|
26 |
|
27 |
-
#: crayon_settings.class.php:
|
28 |
#@ crayon-syntax-highlighter
|
29 |
msgid "Daily"
|
30 |
msgstr "毎日"
|
31 |
|
32 |
-
#: crayon_settings.class.php:
|
33 |
#@ crayon-syntax-highlighter
|
34 |
msgid "Weekly"
|
35 |
msgstr "毎週"
|
36 |
|
37 |
-
#: crayon_settings.class.php:
|
38 |
#@ crayon-syntax-highlighter
|
39 |
msgid "Monthly"
|
40 |
msgstr "毎月"
|
41 |
|
42 |
-
#: crayon_settings.class.php:
|
43 |
#@ crayon-syntax-highlighter
|
44 |
msgid "Immediately"
|
45 |
msgstr "直後に"
|
46 |
|
47 |
-
#: crayon_settings.class.php:
|
48 |
-
#: crayon_settings.class.php:
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr "最大"
|
52 |
|
53 |
-
#: crayon_settings.class.php:
|
54 |
-
#: crayon_settings.class.php:
|
55 |
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr "最小"
|
58 |
|
59 |
-
#: crayon_settings.class.php:
|
60 |
-
#: crayon_settings.class.php:
|
61 |
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr "固定"
|
64 |
|
65 |
-
#: crayon_settings.class.php:
|
66 |
-
#: crayon_settings.class.php:
|
67 |
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr "ピクセル"
|
70 |
|
71 |
-
#: crayon_settings.class.php:
|
72 |
-
#: crayon_settings.class.php:
|
73 |
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr "パーセント"
|
76 |
|
77 |
-
#: crayon_settings.class.php:
|
78 |
#@ crayon-syntax-highlighter
|
79 |
msgid "None"
|
80 |
msgstr "なし"
|
81 |
|
82 |
-
#: crayon_settings.class.php:
|
83 |
#@ crayon-syntax-highlighter
|
84 |
msgid "Left"
|
85 |
msgstr "左"
|
86 |
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Center"
|
90 |
msgstr "中央"
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "Right"
|
95 |
msgstr "右"
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
-
#: crayon_settings.class.php:
|
99 |
-
#: crayon_settings.class.php:
|
100 |
#@ crayon-syntax-highlighter
|
101 |
msgid "On MouseOver"
|
102 |
msgstr "マウスオーバー時"
|
103 |
|
104 |
-
#: crayon_settings.class.php:
|
105 |
-
#: crayon_settings.class.php:
|
106 |
-
#: crayon_settings.class.php:
|
107 |
#@ crayon-syntax-highlighter
|
108 |
msgid "Always"
|
109 |
msgstr "常に表示"
|
110 |
|
111 |
-
#: crayon_settings.class.php:
|
112 |
-
#: crayon_settings.class.php:
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Never"
|
115 |
msgstr "表示しない"
|
116 |
|
117 |
-
#: crayon_settings.class.php:
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "When Found"
|
120 |
msgstr "言語が判明した場合"
|
121 |
|
122 |
-
#: crayon_settings.class.php:
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "On Double Click"
|
125 |
msgstr "ダブルクリック時"
|
126 |
|
127 |
-
#: crayon_settings.class.php:
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "On Single Click"
|
130 |
msgstr "シングルクリック時"
|
131 |
|
132 |
-
#: crayon_settings.class.php:
|
133 |
#@ crayon-syntax-highlighter
|
134 |
msgid "An error has occurred. Please try again later."
|
135 |
msgstr "エラーが発生しました。後でもう一度やり直してください。"
|
@@ -288,149 +288,149 @@ msgstr "ソース言語を表示する"
|
|
288 |
msgid "Enable Live Preview"
|
289 |
msgstr "リアルタイムのプレビューを有効にする"
|
290 |
|
291 |
-
#: crayon_settings_wp.class.php:
|
292 |
#, php-format
|
293 |
#@ crayon-syntax-highlighter
|
294 |
msgid "The selected theme with id %s could not be loaded"
|
295 |
msgstr "ID %sの選択したテーマをロードできませんでした。"
|
296 |
|
297 |
-
#: crayon_settings_wp.class.php:
|
298 |
#@ crayon-syntax-highlighter
|
299 |
msgid "Theme Default"
|
300 |
msgstr "デフォルトテーマ"
|
301 |
|
302 |
-
#: crayon_settings_wp.class.php:
|
303 |
#@ crayon-syntax-highlighter
|
304 |
msgid "Custom Font Size"
|
305 |
msgstr "フォントサイズ指定"
|
306 |
|
307 |
-
#: crayon_settings_wp.class.php:
|
308 |
#, php-format
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "The selected font with id %s could not be loaded"
|
311 |
msgstr "ID %s の選択されたフォントをロードできませんでした。"
|
312 |
|
313 |
-
#: crayon_settings_wp.class.php:
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "Enable plain code view and display"
|
316 |
msgstr "単純なコードビューを有効にする"
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Enable code copy/paste"
|
321 |
msgstr "コードのコピー/貼り付けを有効にする"
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Enable opening code in a window"
|
326 |
msgstr "新しいウインドウでコードを開くを有効にする"
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Display scrollbars (when needed)"
|
331 |
msgstr "必要に応じたスクロールバーの表示"
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Tab size in spaces"
|
336 |
msgstr "tab挿入の空白代替え数(単純コードビュー)"
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Remove whitespace surrounding the shortcode content"
|
341 |
msgstr "ショートコードの内容を囲む空白の部分を削除します"
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
346 |
msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Clear the cache used to store remote code requests"
|
351 |
msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Clear Now"
|
356 |
msgstr "今すぐクリア"
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
361 |
msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Why?"
|
366 |
msgstr "なぜ試みるのか?"
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
371 |
msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Disable animations"
|
376 |
msgstr "アニメーションを無効にする"
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Disable runtime stats"
|
381 |
msgstr "プログラム実行時の統計を無効にする"
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Log errors for individual Crayons"
|
386 |
msgstr "個々設置(Crayon)のエラーを記録"
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Log system-wide errors"
|
391 |
msgstr "システム全体のエラーを記録"
|
392 |
|
393 |
-
#: crayon_settings_wp.class.php:
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Display custom message for errors"
|
396 |
msgstr "カスタムエラーメッセージを表示する"
|
397 |
|
398 |
-
#: crayon_settings_wp.class.php:
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Show Log"
|
401 |
msgstr "ログを見る"
|
402 |
|
403 |
-
#: crayon_settings_wp.class.php:
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Clear Log"
|
406 |
msgstr "ログをクリア"
|
407 |
|
408 |
-
#: crayon_settings_wp.class.php:
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Email Admin"
|
411 |
msgstr "管理者にEメールを送信"
|
412 |
|
413 |
-
#: crayon_settings_wp.class.php:
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "Email Developer"
|
416 |
msgstr "開発者にEメールを送信"
|
417 |
|
418 |
-
#: crayon_settings_wp.class.php:
|
419 |
#@ crayon-syntax-highlighter
|
420 |
msgid "Version"
|
421 |
msgstr "バージョン"
|
422 |
|
423 |
-
#: crayon_settings_wp.class.php:
|
424 |
#@ crayon-syntax-highlighter
|
425 |
msgid "Developer"
|
426 |
msgstr "開発者"
|
427 |
|
428 |
-
#: crayon_settings_wp.class.php:
|
429 |
#@ crayon-syntax-highlighter
|
430 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
431 |
msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
|
432 |
|
433 |
-
#: util/preview.php:
|
434 |
#, php-format
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
@@ -443,74 +443,76 @@ msgid "%d language has been detected."
|
|
443 |
msgid_plural "%d languages have been detected."
|
444 |
msgstr[0] "%dのソース言語が検出されてます。"
|
445 |
|
446 |
-
#: crayon_settings_wp.class.php:
|
447 |
#@ crayon-syntax-highlighter
|
448 |
msgid "Capture <pre> tags as Crayons"
|
449 |
msgstr "Crayonsとして<pre>タグをキャプチャ"
|
450 |
|
451 |
-
#: crayon_settings_wp.class.php:
|
452 |
#@ crayon-syntax-highlighter
|
453 |
msgid "Followed by your relative URL."
|
454 |
msgstr "相対URLが続きます。"
|
455 |
|
456 |
-
#: crayon_settings_wp.class.php:
|
457 |
#@ crayon-syntax-highlighter
|
458 |
msgid "The log is currently empty."
|
459 |
msgstr "ログは現在空です。"
|
460 |
|
461 |
-
#: crayon_settings_wp.class.php:
|
462 |
#@ crayon-syntax-highlighter
|
463 |
msgid "The log file exists and is writable."
|
464 |
msgstr "ログファイルは存在し、書き込み可能です。"
|
465 |
|
466 |
-
#: crayon_settings_wp.class.php:
|
467 |
#@ crayon-syntax-highlighter
|
468 |
msgid "The log file exists and is not writable."
|
469 |
msgstr "ログファイルは存在するが、書き込み可能ではありません。"
|
470 |
|
471 |
-
#: crayon_settings_wp.class.php:
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "The log file does not exist and is not writable."
|
474 |
msgstr "ログファイルが存在しないので書き込むことが出来ません。"
|
475 |
|
476 |
-
#: crayon_settings_wp.class.php:
|
477 |
-
#: crayon_settings_wp.class.php:
|
478 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
479 |
#@ crayon-syntax-highlighter
|
480 |
msgid "Learn More"
|
481 |
msgstr "詳細はこちら"
|
482 |
|
483 |
-
#: crayon_settings_wp.class.php:
|
484 |
#@ crayon-syntax-highlighter
|
485 |
msgid "Show Mixed Language Icon (+)"
|
486 |
msgstr "混合言語のアイコンを(+)を表示"
|
487 |
|
488 |
-
#: crayon_settings_wp.class.php:
|
489 |
#@ crayon-syntax-highlighter
|
490 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
491 |
msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
|
492 |
|
493 |
-
#: crayon_settings_wp.class.php:
|
494 |
#@ crayon-syntax-highlighter
|
495 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
496 |
msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
|
497 |
|
498 |
-
#: crayon_settings_wp.class.php:
|
499 |
#@ crayon-syntax-highlighter
|
500 |
msgid "Enable [plain][/plain] tag."
|
501 |
msgstr "[plain][/plain]タグを有効にします。"
|
502 |
|
503 |
-
#: crayon_settings.class.php:
|
504 |
#@ crayon-syntax-highlighter
|
505 |
msgid "Disable Mouse Events"
|
506 |
msgstr "マウスイベントを無効にする"
|
507 |
|
508 |
-
#: crayon_settings_wp.class.php:
|
509 |
#@ crayon-syntax-highlighter
|
510 |
msgid "Enable plain code toggling"
|
511 |
msgstr "単純なコードの切り替えを有効にする"
|
512 |
|
513 |
-
#: crayon_settings_wp.class.php:
|
514 |
#@ crayon-syntax-highlighter
|
515 |
msgid "Show the plain code by default"
|
516 |
msgstr "デフォルトでプレインコードを表示する"
|
@@ -545,19 +547,99 @@ msgstr ""
|
|
545 |
msgid "http://ak.net84.net/"
|
546 |
msgstr ""
|
547 |
|
548 |
-
|
549 |
-
#: crayon_wp.class.php:0
|
550 |
-
#@ crayon-syntax-highlighter
|
551 |
-
msgid "1.7.7"
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: crayon_wp.class.php:367
|
555 |
#@ crayon-syntax-highlighter
|
556 |
msgid "View Settings"
|
557 |
msgstr "ビューの設定"
|
558 |
|
559 |
-
#: crayon_wp.class.php:
|
560 |
#@ crayon-syntax-highlighter
|
561 |
msgid "Donate"
|
562 |
msgstr "寄付する"
|
563 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:99
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Hourly"
|
25 |
msgstr "毎時間"
|
26 |
|
27 |
+
#: crayon_settings.class.php:99
|
28 |
#@ crayon-syntax-highlighter
|
29 |
msgid "Daily"
|
30 |
msgstr "毎日"
|
31 |
|
32 |
+
#: crayon_settings.class.php:100
|
33 |
#@ crayon-syntax-highlighter
|
34 |
msgid "Weekly"
|
35 |
msgstr "毎週"
|
36 |
|
37 |
+
#: crayon_settings.class.php:100
|
38 |
#@ crayon-syntax-highlighter
|
39 |
msgid "Monthly"
|
40 |
msgstr "毎月"
|
41 |
|
42 |
+
#: crayon_settings.class.php:101
|
43 |
#@ crayon-syntax-highlighter
|
44 |
msgid "Immediately"
|
45 |
msgstr "直後に"
|
46 |
|
47 |
+
#: crayon_settings.class.php:125
|
48 |
+
#: crayon_settings.class.php:129
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr "最大"
|
52 |
|
53 |
+
#: crayon_settings.class.php:125
|
54 |
+
#: crayon_settings.class.php:129
|
55 |
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr "最小"
|
58 |
|
59 |
+
#: crayon_settings.class.php:125
|
60 |
+
#: crayon_settings.class.php:129
|
61 |
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr "固定"
|
64 |
|
65 |
+
#: crayon_settings.class.php:127
|
66 |
+
#: crayon_settings.class.php:131
|
67 |
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr "ピクセル"
|
70 |
|
71 |
+
#: crayon_settings.class.php:127
|
72 |
+
#: crayon_settings.class.php:131
|
73 |
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr "パーセント"
|
76 |
|
77 |
+
#: crayon_settings.class.php:140
|
78 |
#@ crayon-syntax-highlighter
|
79 |
msgid "None"
|
80 |
msgstr "なし"
|
81 |
|
82 |
+
#: crayon_settings.class.php:140
|
83 |
#@ crayon-syntax-highlighter
|
84 |
msgid "Left"
|
85 |
msgstr "左"
|
86 |
|
87 |
+
#: crayon_settings.class.php:140
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Center"
|
90 |
msgstr "中央"
|
91 |
|
92 |
+
#: crayon_settings.class.php:140
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "Right"
|
95 |
msgstr "右"
|
96 |
|
97 |
+
#: crayon_settings.class.php:142
|
98 |
+
#: crayon_settings.class.php:159
|
99 |
+
#: crayon_settings.class.php:164
|
100 |
#@ crayon-syntax-highlighter
|
101 |
msgid "On MouseOver"
|
102 |
msgstr "マウスオーバー時"
|
103 |
|
104 |
+
#: crayon_settings.class.php:142
|
105 |
+
#: crayon_settings.class.php:148
|
106 |
+
#: crayon_settings.class.php:159
|
107 |
#@ crayon-syntax-highlighter
|
108 |
msgid "Always"
|
109 |
msgstr "常に表示"
|
110 |
|
111 |
+
#: crayon_settings.class.php:142
|
112 |
+
#: crayon_settings.class.php:148
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Never"
|
115 |
msgstr "表示しない"
|
116 |
|
117 |
+
#: crayon_settings.class.php:148
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "When Found"
|
120 |
msgstr "言語が判明した場合"
|
121 |
|
122 |
+
#: crayon_settings.class.php:164
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "On Double Click"
|
125 |
msgstr "ダブルクリック時"
|
126 |
|
127 |
+
#: crayon_settings.class.php:164
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "On Single Click"
|
130 |
msgstr "シングルクリック時"
|
131 |
|
132 |
+
#: crayon_settings.class.php:172
|
133 |
#@ crayon-syntax-highlighter
|
134 |
msgid "An error has occurred. Please try again later."
|
135 |
msgstr "エラーが発生しました。後でもう一度やり直してください。"
|
288 |
msgid "Enable Live Preview"
|
289 |
msgstr "リアルタイムのプレビューを有効にする"
|
290 |
|
291 |
+
#: crayon_settings_wp.class.php:534
|
292 |
#, php-format
|
293 |
#@ crayon-syntax-highlighter
|
294 |
msgid "The selected theme with id %s could not be loaded"
|
295 |
msgstr "ID %sの選択したテーマをロードできませんでした。"
|
296 |
|
297 |
+
#: crayon_settings_wp.class.php:548
|
298 |
#@ crayon-syntax-highlighter
|
299 |
msgid "Theme Default"
|
300 |
msgstr "デフォルトテーマ"
|
301 |
|
302 |
+
#: crayon_settings_wp.class.php:552
|
303 |
#@ crayon-syntax-highlighter
|
304 |
msgid "Custom Font Size"
|
305 |
msgstr "フォントサイズ指定"
|
306 |
|
307 |
+
#: crayon_settings_wp.class.php:557
|
308 |
#, php-format
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "The selected font with id %s could not be loaded"
|
311 |
msgstr "ID %s の選択されたフォントをロードできませんでした。"
|
312 |
|
313 |
+
#: crayon_settings_wp.class.php:563
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "Enable plain code view and display"
|
316 |
msgstr "単純なコードビューを有効にする"
|
317 |
|
318 |
+
#: crayon_settings_wp.class.php:568
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Enable code copy/paste"
|
321 |
msgstr "コードのコピー/貼り付けを有効にする"
|
322 |
|
323 |
+
#: crayon_settings_wp.class.php:570
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Enable opening code in a window"
|
326 |
msgstr "新しいウインドウでコードを開くを有効にする"
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:571
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Display scrollbars (when needed)"
|
331 |
msgstr "必要に応じたスクロールバーの表示"
|
332 |
|
333 |
+
#: crayon_settings_wp.class.php:573
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Tab size in spaces"
|
336 |
msgstr "tab挿入の空白代替え数(単純コードビュー)"
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:575
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Remove whitespace surrounding the shortcode content"
|
341 |
msgstr "ショートコードの内容を囲む空白の部分を削除します"
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:585
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
346 |
msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
|
347 |
|
348 |
+
#: crayon_settings_wp.class.php:592
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Clear the cache used to store remote code requests"
|
351 |
msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
|
352 |
|
353 |
+
#: crayon_settings_wp.class.php:594
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Clear Now"
|
356 |
msgstr "今すぐクリア"
|
357 |
|
358 |
+
#: crayon_settings_wp.class.php:595
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
361 |
msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:595
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Why?"
|
366 |
msgstr "なぜ試みるのか?"
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:596
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
371 |
msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:597
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Disable animations"
|
376 |
msgstr "アニメーションを無効にする"
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:598
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Disable runtime stats"
|
381 |
msgstr "プログラム実行時の統計を無効にする"
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:605
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Log errors for individual Crayons"
|
386 |
msgstr "個々設置(Crayon)のエラーを記録"
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:606
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Log system-wide errors"
|
391 |
msgstr "システム全体のエラーを記録"
|
392 |
|
393 |
+
#: crayon_settings_wp.class.php:607
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Display custom message for errors"
|
396 |
msgstr "カスタムエラーメッセージを表示する"
|
397 |
|
398 |
+
#: crayon_settings_wp.class.php:619
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Show Log"
|
401 |
msgstr "ログを見る"
|
402 |
|
403 |
+
#: crayon_settings_wp.class.php:621
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Clear Log"
|
406 |
msgstr "ログをクリア"
|
407 |
|
408 |
+
#: crayon_settings_wp.class.php:622
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Email Admin"
|
411 |
msgstr "管理者にEメールを送信"
|
412 |
|
413 |
+
#: crayon_settings_wp.class.php:624
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "Email Developer"
|
416 |
msgstr "開発者にEメールを送信"
|
417 |
|
418 |
+
#: crayon_settings_wp.class.php:640
|
419 |
#@ crayon-syntax-highlighter
|
420 |
msgid "Version"
|
421 |
msgstr "バージョン"
|
422 |
|
423 |
+
#: crayon_settings_wp.class.php:642
|
424 |
#@ crayon-syntax-highlighter
|
425 |
msgid "Developer"
|
426 |
msgstr "開発者"
|
427 |
|
428 |
+
#: crayon_settings_wp.class.php:666
|
429 |
#@ crayon-syntax-highlighter
|
430 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
431 |
msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
|
432 |
|
433 |
+
#: util/preview.php:63
|
434 |
#, php-format
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
443 |
msgid_plural "%d languages have been detected."
|
444 |
msgstr[0] "%dのソース言語が検出されてます。"
|
445 |
|
446 |
+
#: crayon_settings_wp.class.php:576
|
447 |
#@ crayon-syntax-highlighter
|
448 |
msgid "Capture <pre> tags as Crayons"
|
449 |
msgstr "Crayonsとして<pre>タグをキャプチャ"
|
450 |
|
451 |
+
#: crayon_settings_wp.class.php:588
|
452 |
#@ crayon-syntax-highlighter
|
453 |
msgid "Followed by your relative URL."
|
454 |
msgstr "相対URLが続きます。"
|
455 |
|
456 |
+
#: crayon_settings_wp.class.php:626
|
457 |
#@ crayon-syntax-highlighter
|
458 |
msgid "The log is currently empty."
|
459 |
msgstr "ログは現在空です。"
|
460 |
|
461 |
+
#: crayon_settings_wp.class.php:628
|
462 |
#@ crayon-syntax-highlighter
|
463 |
msgid "The log file exists and is writable."
|
464 |
msgstr "ログファイルは存在し、書き込み可能です。"
|
465 |
|
466 |
+
#: crayon_settings_wp.class.php:628
|
467 |
#@ crayon-syntax-highlighter
|
468 |
msgid "The log file exists and is not writable."
|
469 |
msgstr "ログファイルは存在するが、書き込み可能ではありません。"
|
470 |
|
471 |
+
#: crayon_settings_wp.class.php:630
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "The log file does not exist and is not writable."
|
474 |
msgstr "ログファイルが存在しないので書き込むことが出来ません。"
|
475 |
|
476 |
+
#: crayon_settings_wp.class.php:531
|
477 |
+
#: crayon_settings_wp.class.php:559
|
478 |
+
#: crayon_settings_wp.class.php:577
|
479 |
+
#: crayon_settings_wp.class.php:578
|
480 |
+
#: crayon_settings_wp.class.php:579
|
481 |
#@ crayon-syntax-highlighter
|
482 |
msgid "Learn More"
|
483 |
msgstr "詳細はこちら"
|
484 |
|
485 |
+
#: crayon_settings_wp.class.php:580
|
486 |
#@ crayon-syntax-highlighter
|
487 |
msgid "Show Mixed Language Icon (+)"
|
488 |
msgstr "混合言語のアイコンを(+)を表示"
|
489 |
|
490 |
+
#: crayon_settings_wp.class.php:579
|
491 |
#@ crayon-syntax-highlighter
|
492 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
493 |
msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
|
494 |
|
495 |
+
#: crayon_settings_wp.class.php:577
|
496 |
#@ crayon-syntax-highlighter
|
497 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
498 |
msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
|
499 |
|
500 |
+
#: crayon_settings_wp.class.php:578
|
501 |
#@ crayon-syntax-highlighter
|
502 |
msgid "Enable [plain][/plain] tag."
|
503 |
msgstr "[plain][/plain]タグを有効にします。"
|
504 |
|
505 |
+
#: crayon_settings.class.php:164
|
506 |
#@ crayon-syntax-highlighter
|
507 |
msgid "Disable Mouse Events"
|
508 |
msgstr "マウスイベントを無効にする"
|
509 |
|
510 |
+
#: crayon_settings_wp.class.php:566
|
511 |
#@ crayon-syntax-highlighter
|
512 |
msgid "Enable plain code toggling"
|
513 |
msgstr "単純なコードの切り替えを有効にする"
|
514 |
|
515 |
+
#: crayon_settings_wp.class.php:567
|
516 |
#@ crayon-syntax-highlighter
|
517 |
msgid "Show the plain code by default"
|
518 |
msgstr "デフォルトでプレインコードを表示する"
|
547 |
msgid "http://ak.net84.net/"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: crayon_wp.class.php:428
|
|
|
|
|
|
|
|
|
|
|
|
|
551 |
#@ crayon-syntax-highlighter
|
552 |
msgid "View Settings"
|
553 |
msgstr "ビューの設定"
|
554 |
|
555 |
+
#: crayon_wp.class.php:429
|
556 |
#@ crayon-syntax-highlighter
|
557 |
msgid "Donate"
|
558 |
msgstr "寄付する"
|
559 |
|
560 |
+
#: crayon_settings_wp.class.php:206
|
561 |
+
#@ crayon-syntax-highlighter
|
562 |
+
msgid "General"
|
563 |
+
msgstr "一般"
|
564 |
+
|
565 |
+
#: crayon_settings_wp.class.php:207
|
566 |
+
#@ crayon-syntax-highlighter
|
567 |
+
msgid "Theme"
|
568 |
+
msgstr "テーマ"
|
569 |
+
|
570 |
+
#: crayon_settings_wp.class.php:208
|
571 |
+
#@ crayon-syntax-highlighter
|
572 |
+
msgid "Font"
|
573 |
+
msgstr "です。"
|
574 |
+
|
575 |
+
#: crayon_settings_wp.class.php:209
|
576 |
+
#@ crayon-syntax-highlighter
|
577 |
+
msgid "Metrics"
|
578 |
+
msgstr "メトリック"
|
579 |
+
|
580 |
+
#: crayon_settings_wp.class.php:210
|
581 |
+
#@ crayon-syntax-highlighter
|
582 |
+
msgid "Toolbar"
|
583 |
+
msgstr "ツールバー"
|
584 |
+
|
585 |
+
#: crayon_settings_wp.class.php:211
|
586 |
+
#@ crayon-syntax-highlighter
|
587 |
+
msgid "Lines"
|
588 |
+
msgstr "行"
|
589 |
+
|
590 |
+
#: crayon_settings_wp.class.php:212
|
591 |
+
#@ crayon-syntax-highlighter
|
592 |
+
msgid "Code"
|
593 |
+
msgstr "コードは"
|
594 |
+
|
595 |
+
#: crayon_settings_wp.class.php:213
|
596 |
+
#@ crayon-syntax-highlighter
|
597 |
+
msgid "Languages"
|
598 |
+
msgstr "言語"
|
599 |
+
|
600 |
+
#: crayon_settings_wp.class.php:214
|
601 |
+
#@ crayon-syntax-highlighter
|
602 |
+
msgid "Files"
|
603 |
+
msgstr "ファイル"
|
604 |
+
|
605 |
+
#: crayon_settings_wp.class.php:215
|
606 |
+
#@ crayon-syntax-highlighter
|
607 |
+
msgid "Misc"
|
608 |
+
msgstr "その他"
|
609 |
+
|
610 |
+
#: crayon_settings_wp.class.php:218
|
611 |
+
#@ crayon-syntax-highlighter
|
612 |
+
msgid "Debug"
|
613 |
+
msgstr "デバッグ"
|
614 |
+
|
615 |
+
#: crayon_settings_wp.class.php:219
|
616 |
+
#@ crayon-syntax-highlighter
|
617 |
+
msgid "Errors"
|
618 |
+
msgstr "エラー"
|
619 |
+
|
620 |
+
#: crayon_settings_wp.class.php:220
|
621 |
+
#@ crayon-syntax-highlighter
|
622 |
+
msgid "Log"
|
623 |
+
msgstr "ログイン"
|
624 |
+
|
625 |
+
#: crayon_settings_wp.class.php:223
|
626 |
+
#@ crayon-syntax-highlighter
|
627 |
+
msgid "About"
|
628 |
+
msgstr "について"
|
629 |
+
|
630 |
+
#: crayon_settings_wp.class.php:531
|
631 |
+
#@ crayon-syntax-highlighter
|
632 |
+
msgid "Enqueue themes in the header (more efficient)."
|
633 |
+
msgstr "ヘッダー内のエンキューテーマ(より効率的)。"
|
634 |
+
|
635 |
+
#: crayon_settings_wp.class.php:559
|
636 |
+
#@ crayon-syntax-highlighter
|
637 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
638 |
+
msgstr "ヘッダー内のエンキューフォント(より効率的)。"
|
639 |
+
|
640 |
+
#. translators: plugin header field 'Version'
|
641 |
+
#: crayon_wp.class.php:0
|
642 |
+
#@ crayon-syntax-highlighter
|
643 |
+
msgid "1.7.11"
|
644 |
+
msgstr ""
|
645 |
+
|
trans/crayon-syntax-highlighter-ru_RU.po
CHANGED
@@ -19,117 +19,117 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Hourly"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: crayon_settings.class.php:
|
28 |
#@ crayon-syntax-highlighter
|
29 |
msgid "Daily"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: crayon_settings.class.php:
|
33 |
#@ crayon-syntax-highlighter
|
34 |
msgid "Weekly"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: crayon_settings.class.php:
|
38 |
#@ crayon-syntax-highlighter
|
39 |
msgid "Monthly"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: crayon_settings.class.php:
|
43 |
#@ crayon-syntax-highlighter
|
44 |
msgid "Immediately"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: crayon_settings.class.php:
|
48 |
-
#: crayon_settings.class.php:
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: crayon_settings.class.php:
|
54 |
-
#: crayon_settings.class.php:
|
55 |
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: crayon_settings.class.php:
|
60 |
-
#: crayon_settings.class.php:
|
61 |
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: crayon_settings.class.php:
|
66 |
-
#: crayon_settings.class.php:
|
67 |
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: crayon_settings.class.php:
|
72 |
-
#: crayon_settings.class.php:
|
73 |
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: crayon_settings.class.php:
|
78 |
#@ crayon-syntax-highlighter
|
79 |
msgid "None"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: crayon_settings.class.php:
|
83 |
#@ crayon-syntax-highlighter
|
84 |
msgid "Left"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Center"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "Right"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
-
#: crayon_settings.class.php:
|
99 |
-
#: crayon_settings.class.php:
|
100 |
#@ crayon-syntax-highlighter
|
101 |
msgid "On MouseOver"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: crayon_settings.class.php:
|
105 |
-
#: crayon_settings.class.php:
|
106 |
-
#: crayon_settings.class.php:
|
107 |
#@ crayon-syntax-highlighter
|
108 |
msgid "Always"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: crayon_settings.class.php:
|
112 |
-
#: crayon_settings.class.php:
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Never"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: crayon_settings.class.php:
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "When Found"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: crayon_settings.class.php:
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "On Double Click"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: crayon_settings.class.php:
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "On Single Click"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: crayon_settings.class.php:
|
133 |
#@ crayon-syntax-highlighter
|
134 |
msgid "An error has occurred. Please try again later."
|
135 |
msgstr ""
|
@@ -283,139 +283,139 @@ msgstr ""
|
|
283 |
msgid "Enable Live Preview"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: crayon_settings_wp.class.php:
|
287 |
#, php-format
|
288 |
#@ crayon-syntax-highlighter
|
289 |
msgid "The selected theme with id %s could not be loaded"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: crayon_settings_wp.class.php:
|
293 |
#@ crayon-syntax-highlighter
|
294 |
msgid "Theme Default"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: crayon_settings_wp.class.php:
|
298 |
#@ crayon-syntax-highlighter
|
299 |
msgid "Custom Font Size"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: crayon_settings_wp.class.php:
|
303 |
#, php-format
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "The selected font with id %s could not be loaded"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: crayon_settings_wp.class.php:
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Enable plain code view and display"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: crayon_settings_wp.class.php:
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "Enable code copy/paste"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Enable opening code in a window"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Display scrollbars (when needed)"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Tab size in spaces"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Remove whitespace surrounding the shortcode content"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Clear the cache used to store remote code requests"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Clear Now"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Disable animations"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Disable runtime stats"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Log errors for individual Crayons"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Log system-wide errors"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Display custom message for errors"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Show Log"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Clear Log"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: crayon_settings_wp.class.php:
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Email Admin"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: crayon_settings_wp.class.php:
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Email Developer"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: crayon_settings_wp.class.php:
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Version"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: crayon_settings_wp.class.php:
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Developer"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: crayon_settings_wp.class.php:
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: util/preview.php:
|
419 |
#, php-format
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
@@ -426,12 +426,12 @@ msgstr ""
|
|
426 |
msgid "Crayon Help"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: crayon_settings_wp.class.php:
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: crayon_settings_wp.class.php:
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr ""
|
@@ -445,74 +445,76 @@ msgstr[0] ""
|
|
445 |
msgstr[1] ""
|
446 |
msgstr[2] ""
|
447 |
|
448 |
-
#: crayon_settings_wp.class.php:
|
449 |
#@ crayon-syntax-highlighter
|
450 |
msgid "Followed by your relative URL."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: crayon_settings_wp.class.php:
|
454 |
#@ crayon-syntax-highlighter
|
455 |
msgid "The log is currently empty."
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: crayon_settings_wp.class.php:
|
459 |
#@ crayon-syntax-highlighter
|
460 |
msgid "The log file exists and is writable."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: crayon_settings_wp.class.php:
|
464 |
#@ crayon-syntax-highlighter
|
465 |
msgid "The log file exists and is not writable."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: crayon_settings_wp.class.php:
|
469 |
#@ crayon-syntax-highlighter
|
470 |
msgid "The log file does not exist and is not writable."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: crayon_settings_wp.class.php:
|
474 |
#@ crayon-syntax-highlighter
|
475 |
msgid "Capture <pre> tags as Crayons"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: crayon_settings_wp.class.php:
|
479 |
-
#: crayon_settings_wp.class.php:
|
480 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
481 |
#@ crayon-syntax-highlighter
|
482 |
msgid "Learn More"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: crayon_settings_wp.class.php:
|
486 |
#@ crayon-syntax-highlighter
|
487 |
msgid "Show Mixed Language Icon (+)"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: crayon_settings_wp.class.php:
|
491 |
#@ crayon-syntax-highlighter
|
492 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: crayon_settings_wp.class.php:
|
496 |
#@ crayon-syntax-highlighter
|
497 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: crayon_settings_wp.class.php:
|
501 |
#@ crayon-syntax-highlighter
|
502 |
msgid "Enable [plain][/plain] tag."
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: crayon_settings.class.php:
|
506 |
#@ crayon-syntax-highlighter
|
507 |
msgid "Disable Mouse Events"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: crayon_settings_wp.class.php:
|
511 |
#@ crayon-syntax-highlighter
|
512 |
msgid "Enable plain code toggling"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: crayon_settings_wp.class.php:
|
516 |
#@ crayon-syntax-highlighter
|
517 |
msgid "Show the plain code by default"
|
518 |
msgstr ""
|
@@ -547,19 +549,99 @@ msgstr ""
|
|
547 |
msgid "http://ak.net84.net/"
|
548 |
msgstr ""
|
549 |
|
550 |
-
|
551 |
-
#: crayon_wp.class.php:0
|
552 |
#@ crayon-syntax-highlighter
|
553 |
-
msgid "
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: crayon_wp.class.php:
|
557 |
#@ crayon-syntax-highlighter
|
558 |
-
msgid "
|
559 |
msgstr ""
|
560 |
|
561 |
-
#:
|
562 |
#@ crayon-syntax-highlighter
|
563 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
msgstr ""
|
565 |
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:99
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Hourly"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: crayon_settings.class.php:99
|
28 |
#@ crayon-syntax-highlighter
|
29 |
msgid "Daily"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: crayon_settings.class.php:100
|
33 |
#@ crayon-syntax-highlighter
|
34 |
msgid "Weekly"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: crayon_settings.class.php:100
|
38 |
#@ crayon-syntax-highlighter
|
39 |
msgid "Monthly"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: crayon_settings.class.php:101
|
43 |
#@ crayon-syntax-highlighter
|
44 |
msgid "Immediately"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: crayon_settings.class.php:125
|
48 |
+
#: crayon_settings.class.php:129
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: crayon_settings.class.php:125
|
54 |
+
#: crayon_settings.class.php:129
|
55 |
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: crayon_settings.class.php:125
|
60 |
+
#: crayon_settings.class.php:129
|
61 |
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: crayon_settings.class.php:127
|
66 |
+
#: crayon_settings.class.php:131
|
67 |
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: crayon_settings.class.php:127
|
72 |
+
#: crayon_settings.class.php:131
|
73 |
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: crayon_settings.class.php:140
|
78 |
#@ crayon-syntax-highlighter
|
79 |
msgid "None"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: crayon_settings.class.php:140
|
83 |
#@ crayon-syntax-highlighter
|
84 |
msgid "Left"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: crayon_settings.class.php:140
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Center"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: crayon_settings.class.php:140
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "Right"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: crayon_settings.class.php:142
|
98 |
+
#: crayon_settings.class.php:159
|
99 |
+
#: crayon_settings.class.php:164
|
100 |
#@ crayon-syntax-highlighter
|
101 |
msgid "On MouseOver"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: crayon_settings.class.php:142
|
105 |
+
#: crayon_settings.class.php:148
|
106 |
+
#: crayon_settings.class.php:159
|
107 |
#@ crayon-syntax-highlighter
|
108 |
msgid "Always"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: crayon_settings.class.php:142
|
112 |
+
#: crayon_settings.class.php:148
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Never"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: crayon_settings.class.php:148
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "When Found"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: crayon_settings.class.php:164
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "On Double Click"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: crayon_settings.class.php:164
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "On Single Click"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: crayon_settings.class.php:172
|
133 |
#@ crayon-syntax-highlighter
|
134 |
msgid "An error has occurred. Please try again later."
|
135 |
msgstr ""
|
283 |
msgid "Enable Live Preview"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: crayon_settings_wp.class.php:534
|
287 |
#, php-format
|
288 |
#@ crayon-syntax-highlighter
|
289 |
msgid "The selected theme with id %s could not be loaded"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: crayon_settings_wp.class.php:548
|
293 |
#@ crayon-syntax-highlighter
|
294 |
msgid "Theme Default"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: crayon_settings_wp.class.php:552
|
298 |
#@ crayon-syntax-highlighter
|
299 |
msgid "Custom Font Size"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: crayon_settings_wp.class.php:557
|
303 |
#, php-format
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "The selected font with id %s could not be loaded"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: crayon_settings_wp.class.php:563
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Enable plain code view and display"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: crayon_settings_wp.class.php:568
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "Enable code copy/paste"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: crayon_settings_wp.class.php:570
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Enable opening code in a window"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: crayon_settings_wp.class.php:571
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Display scrollbars (when needed)"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:573
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Tab size in spaces"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: crayon_settings_wp.class.php:575
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Remove whitespace surrounding the shortcode content"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:585
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:592
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Clear the cache used to store remote code requests"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: crayon_settings_wp.class.php:594
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Clear Now"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: crayon_settings_wp.class.php:596
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: crayon_settings_wp.class.php:597
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Disable animations"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:598
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Disable runtime stats"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:605
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Log errors for individual Crayons"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:606
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Log system-wide errors"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:607
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Display custom message for errors"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:619
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Show Log"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:621
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Clear Log"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: crayon_settings_wp.class.php:622
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Email Admin"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: crayon_settings_wp.class.php:624
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Email Developer"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: crayon_settings_wp.class.php:640
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Version"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: crayon_settings_wp.class.php:642
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Developer"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: crayon_settings_wp.class.php:666
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: util/preview.php:63
|
419 |
#, php-format
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
426 |
msgid "Crayon Help"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: crayon_settings_wp.class.php:595
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: crayon_settings_wp.class.php:595
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr ""
|
445 |
msgstr[1] ""
|
446 |
msgstr[2] ""
|
447 |
|
448 |
+
#: crayon_settings_wp.class.php:588
|
449 |
#@ crayon-syntax-highlighter
|
450 |
msgid "Followed by your relative URL."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: crayon_settings_wp.class.php:626
|
454 |
#@ crayon-syntax-highlighter
|
455 |
msgid "The log is currently empty."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: crayon_settings_wp.class.php:628
|
459 |
#@ crayon-syntax-highlighter
|
460 |
msgid "The log file exists and is writable."
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: crayon_settings_wp.class.php:628
|
464 |
#@ crayon-syntax-highlighter
|
465 |
msgid "The log file exists and is not writable."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: crayon_settings_wp.class.php:630
|
469 |
#@ crayon-syntax-highlighter
|
470 |
msgid "The log file does not exist and is not writable."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: crayon_settings_wp.class.php:576
|
474 |
#@ crayon-syntax-highlighter
|
475 |
msgid "Capture <pre> tags as Crayons"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: crayon_settings_wp.class.php:531
|
479 |
+
#: crayon_settings_wp.class.php:559
|
480 |
+
#: crayon_settings_wp.class.php:577
|
481 |
+
#: crayon_settings_wp.class.php:578
|
482 |
+
#: crayon_settings_wp.class.php:579
|
483 |
#@ crayon-syntax-highlighter
|
484 |
msgid "Learn More"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: crayon_settings_wp.class.php:580
|
488 |
#@ crayon-syntax-highlighter
|
489 |
msgid "Show Mixed Language Icon (+)"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: crayon_settings_wp.class.php:579
|
493 |
#@ crayon-syntax-highlighter
|
494 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: crayon_settings_wp.class.php:577
|
498 |
#@ crayon-syntax-highlighter
|
499 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: crayon_settings_wp.class.php:578
|
503 |
#@ crayon-syntax-highlighter
|
504 |
msgid "Enable [plain][/plain] tag."
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: crayon_settings.class.php:164
|
508 |
#@ crayon-syntax-highlighter
|
509 |
msgid "Disable Mouse Events"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: crayon_settings_wp.class.php:566
|
513 |
#@ crayon-syntax-highlighter
|
514 |
msgid "Enable plain code toggling"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: crayon_settings_wp.class.php:567
|
518 |
#@ crayon-syntax-highlighter
|
519 |
msgid "Show the plain code by default"
|
520 |
msgstr ""
|
549 |
msgid "http://ak.net84.net/"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: crayon_wp.class.php:428
|
|
|
553 |
#@ crayon-syntax-highlighter
|
554 |
+
msgid "View Settings"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: crayon_wp.class.php:429
|
558 |
#@ crayon-syntax-highlighter
|
559 |
+
msgid "Donate"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: crayon_settings_wp.class.php:206
|
563 |
#@ crayon-syntax-highlighter
|
564 |
+
msgid "General"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: crayon_settings_wp.class.php:207
|
568 |
+
#@ crayon-syntax-highlighter
|
569 |
+
msgid "Theme"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: crayon_settings_wp.class.php:208
|
573 |
+
#@ crayon-syntax-highlighter
|
574 |
+
msgid "Font"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: crayon_settings_wp.class.php:209
|
578 |
+
#@ crayon-syntax-highlighter
|
579 |
+
msgid "Metrics"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: crayon_settings_wp.class.php:210
|
583 |
+
#@ crayon-syntax-highlighter
|
584 |
+
msgid "Toolbar"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: crayon_settings_wp.class.php:211
|
588 |
+
#@ crayon-syntax-highlighter
|
589 |
+
msgid "Lines"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: crayon_settings_wp.class.php:212
|
593 |
+
#@ crayon-syntax-highlighter
|
594 |
+
msgid "Code"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: crayon_settings_wp.class.php:213
|
598 |
+
#@ crayon-syntax-highlighter
|
599 |
+
msgid "Languages"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: crayon_settings_wp.class.php:214
|
603 |
+
#@ crayon-syntax-highlighter
|
604 |
+
msgid "Files"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: crayon_settings_wp.class.php:215
|
608 |
+
#@ crayon-syntax-highlighter
|
609 |
+
msgid "Misc"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: crayon_settings_wp.class.php:218
|
613 |
+
#@ crayon-syntax-highlighter
|
614 |
+
msgid "Debug"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: crayon_settings_wp.class.php:219
|
618 |
+
#@ crayon-syntax-highlighter
|
619 |
+
msgid "Errors"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: crayon_settings_wp.class.php:220
|
623 |
+
#@ crayon-syntax-highlighter
|
624 |
+
msgid "Log"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: crayon_settings_wp.class.php:223
|
628 |
+
#@ crayon-syntax-highlighter
|
629 |
+
msgid "About"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: crayon_settings_wp.class.php:531
|
633 |
+
#@ crayon-syntax-highlighter
|
634 |
+
msgid "Enqueue themes in the header (more efficient)."
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: crayon_settings_wp.class.php:559
|
638 |
+
#@ crayon-syntax-highlighter
|
639 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#. translators: plugin header field 'Version'
|
643 |
+
#: crayon_wp.class.php:0
|
644 |
+
#@ crayon-syntax-highlighter
|
645 |
+
msgid "1.7.11"
|
646 |
msgstr ""
|
647 |
|
util/preview.php
CHANGED
@@ -31,8 +31,10 @@ $crayon->settings($settings);
|
|
31 |
|
32 |
// Print the theme CSS
|
33 |
$theme_id = $crayon->setting_val(CrayonSettings::THEME);
|
34 |
-
|
35 |
-
|
|
|
|
|
36 |
|
37 |
// Load custom code based on language
|
38 |
$lang = $crayon->setting_val(CrayonSettings::FALLBACK_LANG);
|
31 |
|
32 |
// Print the theme CSS
|
33 |
$theme_id = $crayon->setting_val(CrayonSettings::THEME);
|
34 |
+
echo CrayonResources::themes()->get_css($theme_id);
|
35 |
+
|
36 |
+
$font_id = $crayon->setting_val(CrayonSettings::FONT);
|
37 |
+
echo CrayonResources::fonts()->get_css($font_id);
|
38 |
|
39 |
// Load custom code based on language
|
40 |
$lang = $crayon->setting_val(CrayonSettings::FALLBACK_LANG);
|