Version Description
- German translation improved by Stephan Knauß
- Added missing translations in other languages and fixed bug preventing dropdowns from being translated
- Added translators to the about page
- Oh, added
<html>...</html>
tag into the delimiters - But of course, if you wanted say HTML with PHP, then you'd set the language to HTML and use
<?php ... ?>
tag when you needed them
Download this release
Release Info
Developer | akarmenia |
Plugin | Crayon Syntax Highlighter |
Version | 1.7.25 |
Comparing to | |
See all releases |
Code changes from version 1.7.22 to 1.7.25
- crayon_fonts.class.php +13 -13
- crayon_formatter.class.php +8 -6
- crayon_settings.class.php +3 -0
- crayon_settings_wp.class.php +21 -12
- crayon_wp.class.php +12 -11
- css/fonts/consolas/consolas.css +0 -16
- css/fonts/monaco/monaco.css +0 -13
- css/style.css +4 -2
- fonts/consolas.css +10 -1
- {css/fonts → fonts}/consolas/consolas-webfont.eot +0 -0
- {css/fonts → fonts}/consolas/consolas-webfont.svg +0 -0
- {css/fonts → fonts}/consolas/consolas-webfont.ttf +0 -0
- {css/fonts → fonts}/consolas/consolas-webfont.woff +0 -0
- fonts/monaco.css +10 -1
- {css/fonts → fonts}/monaco/monaco-webfont.eot +0 -0
- {css/fonts → fonts}/monaco/monaco-webfont.svg +0 -0
- {css/fonts → fonts}/monaco/monaco-webfont.ttf +0 -0
- {css/fonts → fonts}/monaco/monaco-webfont.woff +0 -0
- global.php +8 -3
- langs/aliases.txt +1 -0
- langs/delimiters.txt +2 -0
- langs/extensions.txt +1 -0
- langs/php/php.txt +1 -3
- langs/ruby/constant.txt +13 -0
- langs/ruby/exception.txt +28 -0
- langs/ruby/library.txt +28 -0
- langs/ruby/modifier.txt +3 -0
- langs/ruby/module.txt +11 -0
- langs/ruby/operator.txt +3 -0
- langs/ruby/reserved.txt +63 -0
- langs/ruby/ruby.txt +27 -0
- langs/ruby/statement.txt +28 -0
- langs/ruby/type.txt +34 -0
- readme.txt +31 -6
- screenshot-3.png +0 -0
- trans/crayon-syntax-highlighter-de_DE.mo +0 -0
- trans/crayon-syntax-highlighter-de_DE.po +227 -205
- trans/crayon-syntax-highlighter-es_ES.mo +0 -0
- trans/crayon-syntax-highlighter-es_ES.po +164 -142
- trans/crayon-syntax-highlighter-fr_FR.mo +0 -0
- trans/crayon-syntax-highlighter-fr_FR.po +164 -142
- trans/crayon-syntax-highlighter-it_IT.mo +0 -0
- trans/crayon-syntax-highlighter-it_IT.po +164 -142
- trans/crayon-syntax-highlighter-ja.mo +0 -0
- trans/crayon-syntax-highlighter-ja.po +164 -142
- trans/crayon-syntax-highlighter-ru_RU.mo +0 -0
- trans/crayon-syntax-highlighter-ru_RU.po +165 -147
- util/preview.php +2 -2
crayon_fonts.class.php
CHANGED
@@ -6,8 +6,8 @@ require_once (CRAYON_RESOURCE_PHP);
|
|
6 |
class CrayonFonts extends CrayonUsedResourceCollection {
|
7 |
// Properties and Constants ===============================================
|
8 |
|
9 |
-
const DEFAULT_FONT = '
|
10 |
-
const DEFAULT_FONT_NAME = '
|
11 |
|
12 |
// Methods ================================================================
|
13 |
|
@@ -21,17 +21,17 @@ class CrayonFonts extends CrayonUsedResourceCollection {
|
|
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;
|
28 |
-
}
|
29 |
-
$this->load_resources();
|
30 |
-
$default = $this->resource_instance(self::DEFAULT_FONT, self::DEFAULT_FONT_NAME);
|
31 |
-
// If some idiot puts a font with the default font name, this will replace it
|
32 |
-
|
33 |
-
$this->add(self::DEFAULT_FONT, $default);
|
34 |
-
}
|
35 |
|
36 |
// XXX Override
|
37 |
public function get_url($id) {
|
6 |
class CrayonFonts extends CrayonUsedResourceCollection {
|
7 |
// Properties and Constants ===============================================
|
8 |
|
9 |
+
const DEFAULT_FONT = 'monaco';
|
10 |
+
const DEFAULT_FONT_NAME = 'Monaco';
|
11 |
|
12 |
// Methods ================================================================
|
13 |
|
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;
|
28 |
+
// }
|
29 |
+
// $this->load_resources();
|
30 |
+
// $default = $this->resource_instance(self::DEFAULT_FONT, self::DEFAULT_FONT_NAME);
|
31 |
+
// // If some idiot puts a font with the default font name, this will replace it
|
32 |
+
//
|
33 |
+
// $this->add(self::DEFAULT_FONT, $default);
|
34 |
+
// }
|
35 |
|
36 |
// XXX Override
|
37 |
public function get_url($id) {
|
crayon_formatter.class.php
CHANGED
@@ -127,6 +127,8 @@ class CrayonFormatter {
|
|
127 |
$print_title = ($hl->setting_val(CrayonSettings::SHOW_TITLE) && $title ? '<span class="crayon-title">' . $title . '</span>' : '');
|
128 |
// Determine whether to print language
|
129 |
$print_lang = '';
|
|
|
|
|
130 |
if ($hl->language()) {
|
131 |
$lang = $hl->language()->name();
|
132 |
switch ($hl->setting_index(CrayonSettings::SHOW_LANG)) {
|
@@ -254,14 +256,14 @@ class CrayonFormatter {
|
|
254 |
// Print theme id
|
255 |
// We make the assumption that the id is correct (checked in crayon_wp)
|
256 |
$font_id = $hl->setting_val(CrayonSettings::FONT);
|
257 |
-
$font_id_dashed =
|
258 |
|
259 |
-
if ($font_id != NULL && $font_id != CrayonFonts::DEFAULT_FONT) {
|
260 |
if (!$hl->setting_val(CrayonSettings::ENQUEUE_FONTS)) {
|
261 |
$output .= CrayonResources::fonts()->get_css($font_id);
|
262 |
}
|
263 |
-
$font_id_dashed = 'crayon-font-' . CrayonUtil::space_to_hyphen($font_id);
|
264 |
-
}
|
265 |
|
266 |
// Determine font size
|
267 |
// TODO improve logic
|
@@ -357,7 +359,7 @@ class CrayonFormatter {
|
|
357 |
|
358 |
// Produce output
|
359 |
$output .= '
|
360 |
-
<div id="'.$uid.'" class="crayon-syntax crayon-theme-'.$theme_id_dashed.' '.$font_id_dashed.'" crayon-os="'.$crayon_os.'" settings="'.$code_settings.'" style="'.$code_style.'">
|
361 |
'.$toolbar.'
|
362 |
<div class="crayon-main" style="'.$main_style.'">
|
363 |
<table class="crayon-table" cellpadding="0" cellspacing="0">
|
@@ -431,7 +433,7 @@ class CrayonFormatter {
|
|
431 |
if (CrayonGlobalSettings::val(CrayonSettings::TRIM_WHITESPACE)) {
|
432 |
$code = trim($code);
|
433 |
}
|
434 |
-
return '<pre><code>'.$code.'</code></pre>';
|
435 |
}
|
436 |
|
437 |
public static function split_lines($code, $class) {
|
127 |
$print_title = ($hl->setting_val(CrayonSettings::SHOW_TITLE) && $title ? '<span class="crayon-title">' . $title . '</span>' : '');
|
128 |
// Determine whether to print language
|
129 |
$print_lang = '';
|
130 |
+
// XXX Use for printing the regex
|
131 |
+
// var_dump($hl->language()->regex()); exit;
|
132 |
if ($hl->language()) {
|
133 |
$lang = $hl->language()->name();
|
134 |
switch ($hl->setting_index(CrayonSettings::SHOW_LANG)) {
|
256 |
// Print theme id
|
257 |
// We make the assumption that the id is correct (checked in crayon_wp)
|
258 |
$font_id = $hl->setting_val(CrayonSettings::FONT);
|
259 |
+
$font_id_dashed = CrayonUtil::space_to_hyphen($font_id);
|
260 |
|
261 |
+
// if ($font_id != NULL && $font_id != CrayonFonts::DEFAULT_FONT) {
|
262 |
if (!$hl->setting_val(CrayonSettings::ENQUEUE_FONTS)) {
|
263 |
$output .= CrayonResources::fonts()->get_css($font_id);
|
264 |
}
|
265 |
+
// $font_id_dashed = 'crayon-font-' . CrayonUtil::space_to_hyphen($font_id);
|
266 |
+
// }
|
267 |
|
268 |
// Determine font size
|
269 |
// TODO improve logic
|
359 |
|
360 |
// Produce output
|
361 |
$output .= '
|
362 |
+
<div id="'.$uid.'" class="crayon-syntax crayon-theme-'.$theme_id_dashed.' crayon-font-'.$font_id_dashed.'" crayon-os="'.$crayon_os.'" settings="'.$code_settings.'" style="'.$code_style.'">
|
363 |
'.$toolbar.'
|
364 |
<div class="crayon-main" style="'.$main_style.'">
|
365 |
<table class="crayon-table" cellpadding="0" cellspacing="0">
|
433 |
if (CrayonGlobalSettings::val(CrayonSettings::TRIM_WHITESPACE)) {
|
434 |
$code = trim($code);
|
435 |
}
|
436 |
+
return '<pre class="crayon-plain-tag"><code>'.$code.'</code></pre>';
|
437 |
}
|
438 |
|
439 |
public static function split_lines($code, $class) {
|
crayon_settings.class.php
CHANGED
@@ -116,6 +116,9 @@ class CrayonSettings {
|
|
116 |
|
117 |
private function init() {
|
118 |
global $CRAYON_VERSION;
|
|
|
|
|
|
|
119 |
$settings = array(
|
120 |
new CrayonSetting(self::VERSION, $CRAYON_VERSION, NULL, TRUE),
|
121 |
new CrayonSetting(self::THEME, CrayonThemes::DEFAULT_THEME),
|
116 |
|
117 |
private function init() {
|
118 |
global $CRAYON_VERSION;
|
119 |
+
|
120 |
+
crayon_load_plugin_textdomain();
|
121 |
+
|
122 |
$settings = array(
|
123 |
new CrayonSetting(self::VERSION, $CRAYON_VERSION, NULL, TRUE),
|
124 |
new CrayonSetting(self::THEME, CrayonThemes::DEFAULT_THEME),
|
crayon_settings_wp.class.php
CHANGED
@@ -567,14 +567,15 @@ class CrayonSettingsWP {
|
|
567 |
$fonts = CrayonResources::fonts()->get();
|
568 |
echo '<select id="', $name, '" name="', self::OPTIONS, '[', $name, ']" crayon-preview="1">';
|
569 |
foreach ($fonts as $font) {
|
570 |
-
$title = $font->id() != CrayonFonts::DEFAULT_FONT ? $font->name() : crayon__('Theme Default');
|
|
|
571 |
echo '<option value="', $font->id(), '" ', selected($db_font, $font->id()), '>', $title, '</option>';
|
572 |
}
|
573 |
echo '</select><span class="crayon-span-10"></span>';
|
574 |
self::checkbox(array(CrayonSettings::FONT_SIZE_ENABLE, crayon__('Custom Font Size').': '), FALSE);
|
575 |
self::textbox(array('name' => CrayonSettings::FONT_SIZE, 'size' => 2));
|
576 |
echo '<span class="crayon-span-margin">Pixels</span></br>';
|
577 |
-
if (
|
578 |
// Default font doesn't actually exist as a file, it means do not override default theme font
|
579 |
echo '<span class="crayon-error">', sprintf(crayon__('The selected font with id %s could not be loaded'), '<strong>'.$db_font.'</strong>'), '. </span><br/>';
|
580 |
}
|
@@ -614,7 +615,7 @@ class CrayonSettingsWP {
|
|
614 |
echo crayon__('Clear the cache used to store remote code requests'),': ';
|
615 |
self::dropdown(CrayonSettings::CACHE, false);
|
616 |
echo '<input type="submit" id="crayon-cache-clear" name="crayon-cache-clear" class="button-secondary" value="', crayon__('Clear Now'), '" /><br/>';
|
617 |
-
self::checkbox(array(CrayonSettings::EFFICIENT_ENQUEUE, crayon__('Attempt to load Crayon\'s CSS and JavaScript only when needed').'. <a href="http://ak.net84.net/?p=660" target="_blank">'.crayon__('
|
618 |
self::checkbox(array(CrayonSettings::SAFE_ENQUEUE, crayon__('Disable enqueuing for page templates that may contain The Loop.') . ' <a href="http://bit.ly/AcWRNY" target="_blank">' . crayon__('Learn More') . '</a>'));
|
619 |
self::checkbox(array(CrayonSettings::MAIN_QUERY, crayon__('Load Crayons only from the main Wordpress query')));
|
620 |
self::checkbox(array(CrayonSettings::TOUCHSCREEN, crayon__('Disable mouse gestures for touchscreen devices (eg. MouseOver)')));
|
@@ -659,11 +660,16 @@ class CrayonSettingsWP {
|
|
659 |
// About Fields ===========================================================
|
660 |
|
661 |
public static function info() {
|
662 |
-
global $CRAYON_VERSION, $CRAYON_DATE, $CRAYON_AUTHOR, $CRAYON_TWITTER, $CRAYON_EMAIL;
|
663 |
echo '<a name="info"></a>';
|
664 |
-
$version = '<
|
665 |
$date = $CRAYON_DATE;
|
666 |
-
$developer = '<
|
|
|
|
|
|
|
|
|
|
|
667 |
/*$paypal = '<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
668 |
<input type="hidden" name="cmd" value="_s-xclick">
|
669 |
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHXwYJKoZIhvcNAQcEoIIHUDCCB0wCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYBzx2k2FfhgWOnPLgktcZq9vUt1J6sK3heoLAeCqacjL65PW0wv2LwPxPjZCcEe9J8OgNvO1HINX1rrFW6M56tA/qP8d6y57tIeJlp8hU2G7q6zyMiEGS28tc+L+BHKupOvNBfGIosprr/98/dAXALza9Fp3aqsWsnBPBGso/vi+zELMAkGBSsOAwIaBQAwgdwGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQILCwCkW/HPnKAgbiDiTfvLk2wi2cETsFcSPccmQ9Nb/2hmrER3fGshoIaSjW6W+luUbKy03WGHmeRPJM/3XsX1vqYTvY/Ox/8ICHXBvwOU+w2B5PYRetmelbd0jhZD3mlAxOWVwSyp3gN024Z0BMkW6mzfMvwRWaQij19OoM/zZvo66wMwyaoAqBmAlfDFMozIHC5vqY+WEHQJBMyWXfUDy2Woiu41FBzPSPaKRDJWL5yQ1aUD/LNx5GeSFUAuErQDHvHoIIDhzCCA4MwggLsoAMCAQICAQAwDQYJKoZIhvcNAQEFBQAwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMB4XDTA0MDIxMzEwMTMxNVoXDTM1MDIxMzEwMTMxNVowgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBR07d/ETMS1ycjtkpkvjXZe9k+6CieLuLsPumsJ7QC1odNz3sJiCbs2wC0nLE0uLGaEtXynIgRqIddYCHx88pb5HTXv4SZeuv0Rqq4+axW9PLAAATU8w04qqjaSXgbGLP3NmohqM6bV9kZZwZLR/klDaQGo1u9uDb9lr4Yn+rBQIDAQABo4HuMIHrMB0GA1UdDgQWBBSWn3y7xm8XvVk/UtcKG+wQ1mSUazCBuwYDVR0jBIGzMIGwgBSWn3y7xm8XvVk/UtcKG+wQ1mSUa6GBlKSBkTCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb22CAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQCBXzpWmoBa5e9fo6ujionW1hUhPkOBakTr3YCDjbYfvJEiv/2P+IobhOGJr85+XHhN0v4gUkEDI8r2/rNk1m0GA8HKddvTjyGw/XqXa+LSTlDYkqI8OwR8GEYj4efEtcRpRYBxV8KxAW93YDWzFGvruKnnLbDAF6VR5w/cCMn5hzGCAZowggGWAgEBMIGUMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTExMDI5MDYwMzMxWjAjBgkqhkiG9w0BCQQxFgQUDxRJGCn0/vBsWOG93mMXOqNDjigwDQYJKoZIhvcNAQEBBQAEgYCtuTjETQyWJK+nteR6FvEyb9rJSyOV5QHsg0S1my/0ZSDKwlebBDVksrPOtL4TiUCfvW5dzDANWuArIrNYe894NHA7Uj0nJDH2Rlw3e8Tyzb+beKu4Dgyv6GXR2UyJJV2doJzGp5WVQdOMxEfAKg6QUs4DzTr+DRF7f2BHwS1Dfw==-----END PKCS7-----
|
@@ -672,11 +678,11 @@ class CrayonSettingsWP {
|
|
672 |
<img alt="" border="0" src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" width="1" height="1">
|
673 |
</form>
|
674 |
';*/
|
675 |
-
|
676 |
-
|
677 |
$links = '<a id="twitter-icon" href="' . $CRAYON_TWITTER . '" target="_blank"></a>
|
678 |
-
<a id="gmail-icon" href="mailto:' . $CRAYON_EMAIL . '" target="_blank"></a><div id="crayon-donate"
|
679 |
-
|
680 |
echo '
|
681 |
<table id="crayon-info" border="0">
|
682 |
<tr>
|
@@ -684,7 +690,9 @@ class CrayonSettingsWP {
|
|
684 |
</tr>
|
685 |
<tr>
|
686 |
<td>'.$developer.'</td>
|
687 |
-
|
|
|
|
|
688 |
</tr>
|
689 |
<tr>
|
690 |
<td colspan="2">', crayon__("The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"), '</td>
|
@@ -697,12 +705,13 @@ class CrayonSettingsWP {
|
|
697 |
}
|
698 |
|
699 |
public static function plugin_row_meta($meta, $file) {
|
|
|
700 |
if ($file == CrayonWP::basename()) {
|
701 |
$meta[] = '<a href="options-general.php?page=crayon_settings">' . crayon__('Settings') . '</a>';
|
702 |
if (CRAYON_THEME_EDITOR) {
|
703 |
$meta[] = '<a href="options-general.php?page=crayon_settings&subpage=theme_editor">' . crayon__('Theme Editor') . '</a>';
|
704 |
}
|
705 |
-
$meta[] = '<a href="
|
706 |
}
|
707 |
return $meta;
|
708 |
}
|
567 |
$fonts = CrayonResources::fonts()->get();
|
568 |
echo '<select id="', $name, '" name="', self::OPTIONS, '[', $name, ']" crayon-preview="1">';
|
569 |
foreach ($fonts as $font) {
|
570 |
+
// $title = $font->id() != CrayonFonts::DEFAULT_FONT ? $font->name() : crayon__('Theme Default');
|
571 |
+
$title = $font->name();
|
572 |
echo '<option value="', $font->id(), '" ', selected($db_font, $font->id()), '>', $title, '</option>';
|
573 |
}
|
574 |
echo '</select><span class="crayon-span-10"></span>';
|
575 |
self::checkbox(array(CrayonSettings::FONT_SIZE_ENABLE, crayon__('Custom Font Size').': '), FALSE);
|
576 |
self::textbox(array('name' => CrayonSettings::FONT_SIZE, 'size' => 2));
|
577 |
echo '<span class="crayon-span-margin">Pixels</span></br>';
|
578 |
+
if (/*$db_font != CrayonFonts::DEFAULT_FONT &&*/ (!CrayonResources::fonts()->is_loaded($db_font) || !CrayonResources::fonts()->exists($db_font))) {
|
579 |
// Default font doesn't actually exist as a file, it means do not override default theme font
|
580 |
echo '<span class="crayon-error">', sprintf(crayon__('The selected font with id %s could not be loaded'), '<strong>'.$db_font.'</strong>'), '. </span><br/>';
|
581 |
}
|
615 |
echo crayon__('Clear the cache used to store remote code requests'),': ';
|
616 |
self::dropdown(CrayonSettings::CACHE, false);
|
617 |
echo '<input type="submit" id="crayon-cache-clear" name="crayon-cache-clear" class="button-secondary" value="', crayon__('Clear Now'), '" /><br/>';
|
618 |
+
self::checkbox(array(CrayonSettings::EFFICIENT_ENQUEUE, crayon__('Attempt to load Crayon\'s CSS and JavaScript only when needed').'. <a href="http://ak.net84.net/?p=660" target="_blank">'.crayon__('Learn More').'</a>'));
|
619 |
self::checkbox(array(CrayonSettings::SAFE_ENQUEUE, crayon__('Disable enqueuing for page templates that may contain The Loop.') . ' <a href="http://bit.ly/AcWRNY" target="_blank">' . crayon__('Learn More') . '</a>'));
|
620 |
self::checkbox(array(CrayonSettings::MAIN_QUERY, crayon__('Load Crayons only from the main Wordpress query')));
|
621 |
self::checkbox(array(CrayonSettings::TOUCHSCREEN, crayon__('Disable mouse gestures for touchscreen devices (eg. MouseOver)')));
|
660 |
// About Fields ===========================================================
|
661 |
|
662 |
public static function info() {
|
663 |
+
global $CRAYON_VERSION, $CRAYON_DATE, $CRAYON_AUTHOR, $CRAYON_TWITTER, $CRAYON_EMAIL, $CRAYON_AUTHOR_SITE, $CRAYON_DONATE;
|
664 |
echo '<a name="info"></a>';
|
665 |
+
$version = '<strong>'.crayon__('Version').':</strong> ' . $CRAYON_VERSION;
|
666 |
$date = $CRAYON_DATE;
|
667 |
+
$developer = '<strong>'.crayon__('Developer').':</strong> ' . '<a href="'.$CRAYON_AUTHOR_SITE.'" target="_blank">' . $CRAYON_AUTHOR . '</a>';
|
668 |
+
$translators = '<strong>'.crayon__('Translators').':</strong> ' .
|
669 |
+
'German (Stephan Knauß),
|
670 |
+
Japanese (<a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>),
|
671 |
+
Russian (<a href="http://simplelib.com/" target="_blank">Minimus</a>)';
|
672 |
+
|
673 |
/*$paypal = '<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
674 |
<input type="hidden" name="cmd" value="_s-xclick">
|
675 |
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHXwYJKoZIhvcNAQcEoIIHUDCCB0wCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYBzx2k2FfhgWOnPLgktcZq9vUt1J6sK3heoLAeCqacjL65PW0wv2LwPxPjZCcEe9J8OgNvO1HINX1rrFW6M56tA/qP8d6y57tIeJlp8hU2G7q6zyMiEGS28tc+L+BHKupOvNBfGIosprr/98/dAXALza9Fp3aqsWsnBPBGso/vi+zELMAkGBSsOAwIaBQAwgdwGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQILCwCkW/HPnKAgbiDiTfvLk2wi2cETsFcSPccmQ9Nb/2hmrER3fGshoIaSjW6W+luUbKy03WGHmeRPJM/3XsX1vqYTvY/Ox/8ICHXBvwOU+w2B5PYRetmelbd0jhZD3mlAxOWVwSyp3gN024Z0BMkW6mzfMvwRWaQij19OoM/zZvo66wMwyaoAqBmAlfDFMozIHC5vqY+WEHQJBMyWXfUDy2Woiu41FBzPSPaKRDJWL5yQ1aUD/LNx5GeSFUAuErQDHvHoIIDhzCCA4MwggLsoAMCAQICAQAwDQYJKoZIhvcNAQEFBQAwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMB4XDTA0MDIxMzEwMTMxNVoXDTM1MDIxMzEwMTMxNVowgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBR07d/ETMS1ycjtkpkvjXZe9k+6CieLuLsPumsJ7QC1odNz3sJiCbs2wC0nLE0uLGaEtXynIgRqIddYCHx88pb5HTXv4SZeuv0Rqq4+axW9PLAAATU8w04qqjaSXgbGLP3NmohqM6bV9kZZwZLR/klDaQGo1u9uDb9lr4Yn+rBQIDAQABo4HuMIHrMB0GA1UdDgQWBBSWn3y7xm8XvVk/UtcKG+wQ1mSUazCBuwYDVR0jBIGzMIGwgBSWn3y7xm8XvVk/UtcKG+wQ1mSUa6GBlKSBkTCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb22CAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQCBXzpWmoBa5e9fo6ujionW1hUhPkOBakTr3YCDjbYfvJEiv/2P+IobhOGJr85+XHhN0v4gUkEDI8r2/rNk1m0GA8HKddvTjyGw/XqXa+LSTlDYkqI8OwR8GEYj4efEtcRpRYBxV8KxAW93YDWzFGvruKnnLbDAF6VR5w/cCMn5hzGCAZowggGWAgEBMIGUMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTExMDI5MDYwMzMxWjAjBgkqhkiG9w0BCQQxFgQUDxRJGCn0/vBsWOG93mMXOqNDjigwDQYJKoZIhvcNAQEBBQAEgYCtuTjETQyWJK+nteR6FvEyb9rJSyOV5QHsg0S1my/0ZSDKwlebBDVksrPOtL4TiUCfvW5dzDANWuArIrNYe894NHA7Uj0nJDH2Rlw3e8Tyzb+beKu4Dgyv6GXR2UyJJV2doJzGp5WVQdOMxEfAKg6QUs4DzTr+DRF7f2BHwS1Dfw==-----END PKCS7-----
|
678 |
<img alt="" border="0" src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" width="1" height="1">
|
679 |
</form>
|
680 |
';*/
|
681 |
+
//$paypal = '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=AW99EMEPQ4CFE&lc=AU&item_name=Crayon%20Syntax%20Highlighter%20Donation&item_number=crayon%2ddonate¤cy_code=AUD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted" target="_blank"><img src="'.plugins_url(CRAYON_DONATE_BUTTON, __FILE__).'"></a>';
|
682 |
+
|
683 |
$links = '<a id="twitter-icon" href="' . $CRAYON_TWITTER . '" target="_blank"></a>
|
684 |
+
<a id="gmail-icon" href="mailto:' . $CRAYON_EMAIL . '" target="_blank"></a><div id="crayon-donate"><a href="' . $CRAYON_DONATE . '" target="_blank"><img src="'.plugins_url(CRAYON_DONATE_BUTTON, __FILE__).'"></a></div>';
|
685 |
+
|
686 |
echo '
|
687 |
<table id="crayon-info" border="0">
|
688 |
<tr>
|
690 |
</tr>
|
691 |
<tr>
|
692 |
<td>'.$developer.'</td>
|
693 |
+
</tr>
|
694 |
+
<tr>
|
695 |
+
<td>'.$translators.'</td>
|
696 |
</tr>
|
697 |
<tr>
|
698 |
<td colspan="2">', crayon__("The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"), '</td>
|
705 |
}
|
706 |
|
707 |
public static function plugin_row_meta($meta, $file) {
|
708 |
+
global $CRAYON_DONATE;
|
709 |
if ($file == CrayonWP::basename()) {
|
710 |
$meta[] = '<a href="options-general.php?page=crayon_settings">' . crayon__('Settings') . '</a>';
|
711 |
if (CRAYON_THEME_EDITOR) {
|
712 |
$meta[] = '<a href="options-general.php?page=crayon_settings&subpage=theme_editor">' . crayon__('Theme Editor') . '</a>';
|
713 |
}
|
714 |
+
$meta[] = '<a href="'.$CRAYON_DONATE.'" target="_blank">' . crayon__('Donate') . '</a>';
|
715 |
}
|
716 |
return $meta;
|
717 |
}
|
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
|
@@ -200,7 +200,7 @@ class CrayonWP {
|
|
200 |
|
201 |
// Convert mini [php][/php] tags to crayon tags, if needed
|
202 |
if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG)) {
|
203 |
-
$post->post_content = preg_replace('#(?<!\$)\[('.self::$alias_regex.')([^\]]*)\](.*?)\[/(?:\1)\](?!\$)#msi', '[crayon
|
204 |
}
|
205 |
|
206 |
// Convert [plain] tags into <pre><code></code></pre>, if needed
|
@@ -239,7 +239,7 @@ class CrayonWP {
|
|
239 |
}
|
240 |
|
241 |
// Capture attributes
|
242 |
-
preg_match_all('#([^="\'\s]+)[\t ]*=[\t ]*("|\')([^
|
243 |
$atts_array = array();
|
244 |
if ( count($att_matches[0]) != 0 ) {
|
245 |
for ($j = 0; $j < count($att_matches[1]); $j++) {
|
@@ -282,7 +282,7 @@ class CrayonWP {
|
|
282 |
}
|
283 |
}
|
284 |
// If font is now valid, change the array
|
285 |
-
if ($font != NULL && $font_id != CrayonFonts::DEFAULT_FONT) {
|
286 |
$atts_array[CrayonSettings::FONT] = $font_id;
|
287 |
$font->used(TRUE);
|
288 |
}
|
@@ -475,19 +475,15 @@ class CrayonWP {
|
|
475 |
global $CRAYON_VERSION;
|
476 |
$css = CrayonResources::fonts()->get_used_css();
|
477 |
foreach ($css as $font_id=>$url) {
|
478 |
-
if ($font_id != CrayonFonts::DEFAULT_FONT) {
|
479 |
wp_enqueue_style('crayon-font-'.$font_id, $url, array(), $CRAYON_VERSION);
|
480 |
-
}
|
481 |
}
|
482 |
}
|
483 |
|
484 |
public static function init($request) {
|
485 |
// CrayonLog::log('init');
|
486 |
-
|
487 |
-
}
|
488 |
-
|
489 |
-
public static function load_textdomain() {
|
490 |
-
load_plugin_textdomain(CRAYON_DOMAIN, false, CRAYON_DIR.CRAYON_TRANS_DIR);
|
491 |
}
|
492 |
|
493 |
public static function install() {
|
@@ -515,6 +511,11 @@ class CrayonWP {
|
|
515 |
$touched = TRUE;
|
516 |
}
|
517 |
|
|
|
|
|
|
|
|
|
|
|
518 |
if ($touched) {
|
519 |
$settings[CrayonSettings::VERSION] = $CRAYON_VERSION;
|
520 |
CrayonSettingsWP::save_settings($settings);
|
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.25
|
7 |
Author: Aram Kocharyan
|
8 |
Author URI: http://ak.net84.net/
|
9 |
Text Domain: crayon-syntax-highlighter
|
200 |
|
201 |
// Convert mini [php][/php] tags to crayon tags, if needed
|
202 |
if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG)) {
|
203 |
+
$post->post_content = preg_replace('#(?<!\$)\[('.self::$alias_regex.')([^\]]*)\](.*?)\[/(?:\1)\](?!\$)#msi', '[crayon lang="\1" \2]\3[/crayon]', $post->post_content);
|
204 |
}
|
205 |
|
206 |
// Convert [plain] tags into <pre><code></code></pre>, if needed
|
239 |
}
|
240 |
|
241 |
// Capture attributes
|
242 |
+
preg_match_all('#([^="\'\s]+)[\t ]*=[\t ]*("|\')([^2]+?)\2#', $atts, $att_matches);
|
243 |
$atts_array = array();
|
244 |
if ( count($att_matches[0]) != 0 ) {
|
245 |
for ($j = 0; $j < count($att_matches[1]); $j++) {
|
282 |
}
|
283 |
}
|
284 |
// If font is now valid, change the array
|
285 |
+
if ($font/* != NULL && $font_id != CrayonFonts::DEFAULT_FONT*/) {
|
286 |
$atts_array[CrayonSettings::FONT] = $font_id;
|
287 |
$font->used(TRUE);
|
288 |
}
|
475 |
global $CRAYON_VERSION;
|
476 |
$css = CrayonResources::fonts()->get_used_css();
|
477 |
foreach ($css as $font_id=>$url) {
|
478 |
+
// if ($font_id != CrayonFonts::DEFAULT_FONT) {
|
479 |
wp_enqueue_style('crayon-font-'.$font_id, $url, array(), $CRAYON_VERSION);
|
480 |
+
// }
|
481 |
}
|
482 |
}
|
483 |
|
484 |
public static function init($request) {
|
485 |
// CrayonLog::log('init');
|
486 |
+
crayon_load_plugin_textdomain();
|
|
|
|
|
|
|
|
|
487 |
}
|
488 |
|
489 |
public static function install() {
|
511 |
$touched = TRUE;
|
512 |
}
|
513 |
|
514 |
+
if ($version < '1.7.23' && $settings[CrayonSettings::FONT] == 'theme-font') {
|
515 |
+
$settings[CrayonSettings::FONT] = $defaults[CrayonSettings::FONT];
|
516 |
+
$touched = TRUE;
|
517 |
+
}
|
518 |
+
|
519 |
if ($touched) {
|
520 |
$settings[CrayonSettings::VERSION] = $CRAYON_VERSION;
|
521 |
CrayonSettingsWP::save_settings($settings);
|
css/fonts/consolas/consolas.css
DELETED
@@ -1,16 +0,0 @@
|
|
1 |
-
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on January 8, 2012 */
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
@font-face {
|
6 |
-
font-family: 'ConsolasRegular';
|
7 |
-
src: url('consolas-webfont.eot');
|
8 |
-
src: url('consolas-webfont.eot?#iefix') format('embedded-opentype'),
|
9 |
-
url('consolas-webfont.woff') format('woff'),
|
10 |
-
url('consolas-webfont.ttf') format('truetype'),
|
11 |
-
url('consolas-webfont.svg#ConsolasRegular') format('svg');
|
12 |
-
font-weight: normal;
|
13 |
-
font-style: normal;
|
14 |
-
|
15 |
-
}
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
css/fonts/monaco/monaco.css
DELETED
@@ -1,13 +0,0 @@
|
|
1 |
-
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on February 17, 2011 */
|
2 |
-
|
3 |
-
@font-face {
|
4 |
-
font-family: 'MonacoRegular';
|
5 |
-
src: /* IE doesn't draw well */
|
6 |
-
/*url('monaco-webfont.eot?') format('eot'),*/
|
7 |
-
url('monaco-webfont.woff') format('woff'),
|
8 |
-
url('monaco-webfont.ttf') format('truetype'),
|
9 |
-
url('monaco-webfont.svg#webfontyFRf53FT') format('svg');
|
10 |
-
font-weight: normal;
|
11 |
-
font-style: normal;
|
12 |
-
|
13 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
css/style.css
CHANGED
@@ -11,8 +11,6 @@ coloring etc.
|
|
11 |
- The attributes in Themes are generally all marked !important to ensure styles are not altered by precedence.
|
12 |
*/
|
13 |
|
14 |
-
@import url('fonts/monaco/monaco.css');
|
15 |
-
|
16 |
/* General ========================= */
|
17 |
.crayon-syntax {
|
18 |
overflow: hidden !important;
|
@@ -98,6 +96,10 @@ coloring etc.
|
|
98 |
.crayon-syntax .crayon-invisible {
|
99 |
display: none !important;
|
100 |
}
|
|
|
|
|
|
|
|
|
101 |
/* End General ===================== */
|
102 |
|
103 |
/* Line Numbers ==================== */
|
11 |
- The attributes in Themes are generally all marked !important to ensure styles are not altered by precedence.
|
12 |
*/
|
13 |
|
|
|
|
|
14 |
/* General ========================= */
|
15 |
.crayon-syntax {
|
16 |
overflow: hidden !important;
|
96 |
.crayon-syntax .crayon-invisible {
|
97 |
display: none !important;
|
98 |
}
|
99 |
+
|
100 |
+
.crayon-plain-tag {
|
101 |
+
margin-bottom: 12px;
|
102 |
+
}
|
103 |
/* End General ===================== */
|
104 |
|
105 |
/* Line Numbers ==================== */
|
fonts/consolas.css
CHANGED
@@ -1,4 +1,13 @@
|
|
1 |
-
@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
.crayon-font-consolas * {
|
4 |
font-family: Consolas, 'ConsolasRegular', 'Courier New', monospace !important;
|
1 |
+
@font-face {
|
2 |
+
font-family: 'ConsolasRegular';
|
3 |
+
src: url('consolas/consolas-webfont.eot');
|
4 |
+
src: url('consolas/consolas-webfont.eot?#iefix') format('embedded-opentype'),
|
5 |
+
url('consolas/consolas-webfont.woff') format('woff'),
|
6 |
+
url('consolas/consolas-webfont.ttf') format('truetype'),
|
7 |
+
url('consolas/consolas-webfont.svg#ConsolasRegular') format('svg');
|
8 |
+
font-weight: normal;
|
9 |
+
font-style: normal;
|
10 |
+
}
|
11 |
|
12 |
.crayon-font-consolas * {
|
13 |
font-family: Consolas, 'ConsolasRegular', 'Courier New', monospace !important;
|
{css/fonts → fonts}/consolas/consolas-webfont.eot
RENAMED
File without changes
|
{css/fonts → fonts}/consolas/consolas-webfont.svg
RENAMED
File without changes
|
{css/fonts → fonts}/consolas/consolas-webfont.ttf
RENAMED
File without changes
|
{css/fonts → fonts}/consolas/consolas-webfont.woff
RENAMED
File without changes
|
fonts/monaco.css
CHANGED
@@ -1,4 +1,13 @@
|
|
1 |
-
@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
.crayon-font-monaco * {
|
4 |
font-family: Monaco, 'MonacoRegular', 'Courier New', monospace !important;
|
1 |
+
@font-face {
|
2 |
+
font-family: 'MonacoRegular';
|
3 |
+
src: url('monaco/monaco-webfont.eot');
|
4 |
+
src: url('monaco/monaco-webfont.eot?#iefix') format('embedded-opentype'),
|
5 |
+
url('monaco/monaco-webfont.woff') format('woff'),
|
6 |
+
url('monaco/monaco-webfont.ttf') format('truetype'),
|
7 |
+
url('monaco/monaco-webfont.svg#MonacoRegular') format('svg');
|
8 |
+
font-weight: normal;
|
9 |
+
font-style: normal;
|
10 |
+
}
|
11 |
|
12 |
.crayon-font-monaco * {
|
13 |
font-family: Monaco, 'MonacoRegular', 'Courier New', monospace !important;
|
{css/fonts → fonts}/monaco/monaco-webfont.eot
RENAMED
File without changes
|
{css/fonts → fonts}/monaco/monaco-webfont.svg
RENAMED
File without changes
|
{css/fonts → fonts}/monaco/monaco-webfont.ttf
RENAMED
File without changes
|
{css/fonts → fonts}/monaco/monaco-webfont.woff
RENAMED
File without changes
|
global.php
CHANGED
@@ -19,8 +19,9 @@ define('CRAYON_DOMAIN', 'crayon-syntax-highlighter');
|
|
19 |
$CRAYON_VERSION = '1.1.1' . $uid;
|
20 |
$CRAYON_DATE = '27th September, 2011';
|
21 |
$CRAYON_AUTHOR = 'Aram Kocharyan';
|
22 |
-
$
|
23 |
-
$
|
|
|
24 |
$CRAYON_EMAIL = 'crayon.syntax@gmail.com';
|
25 |
$CRAYON_TWITTER = 'http://twitter.com/crayonsyntax';
|
26 |
|
@@ -167,11 +168,15 @@ function crayon_set_info_key($key, $array, &$info) {
|
|
167 |
|
168 |
// LANGUAGE TRANSLATION FUNCTIONS
|
169 |
|
|
|
|
|
|
|
|
|
170 |
function crayon__($text) {
|
171 |
if (function_exists('__')) {
|
172 |
return __($text, CRAYON_DOMAIN);
|
173 |
} else {
|
174 |
-
return $text;
|
175 |
}
|
176 |
}
|
177 |
|
19 |
$CRAYON_VERSION = '1.1.1' . $uid;
|
20 |
$CRAYON_DATE = '27th September, 2011';
|
21 |
$CRAYON_AUTHOR = 'Aram Kocharyan';
|
22 |
+
$CRAYON_AUTHOR_SITE = 'http://ak.net84.net/';
|
23 |
+
$CRAYON_DONATE = 'http://bit.ly/crayondonate';
|
24 |
+
$CRAYON_WEBSITE = 'http://ak.net84.net/projects/crayon-syntax-highlighter';
|
25 |
$CRAYON_EMAIL = 'crayon.syntax@gmail.com';
|
26 |
$CRAYON_TWITTER = 'http://twitter.com/crayonsyntax';
|
27 |
|
168 |
|
169 |
// LANGUAGE TRANSLATION FUNCTIONS
|
170 |
|
171 |
+
function crayon_load_plugin_textdomain() {
|
172 |
+
load_plugin_textdomain(CRAYON_DOMAIN, false, CRAYON_DIR.CRAYON_TRANS_DIR);
|
173 |
+
}
|
174 |
+
|
175 |
function crayon__($text) {
|
176 |
if (function_exists('__')) {
|
177 |
return __($text, CRAYON_DOMAIN);
|
178 |
} else {
|
179 |
+
return $text . CRAYON_DOMAIN;
|
180 |
}
|
181 |
}
|
182 |
|
langs/aliases.txt
CHANGED
@@ -9,3 +9,4 @@ python py
|
|
9 |
vb vbs
|
10 |
js javascript
|
11 |
sh shell unix bash
|
|
9 |
vb vbs
|
10 |
js javascript
|
11 |
sh shell unix bash
|
12 |
+
ruby rb
|
langs/delimiters.txt
CHANGED
@@ -5,3 +5,5 @@
|
|
5 |
php <\?(?:php)?.*?\?\>
|
6 |
js <script\b[^\>]*>.*?</script>
|
7 |
css <style\b[^\>]*>.*?</style>
|
|
|
|
5 |
php <\?(?:php)?.*?\?\>
|
6 |
js <script\b[^\>]*>.*?</script>
|
7 |
css <style\b[^\>]*>.*?</style>
|
8 |
+
ruby (<%.*?%>)|(^%.*?[\r\n])
|
9 |
+
xhtml <x?html\b[^\>]*>.*?</x?html>
|
langs/extensions.txt
CHANGED
@@ -11,3 +11,4 @@ java java class jar
|
|
11 |
objc m mm
|
12 |
python py pyw pyc pyo pyd
|
13 |
vb vbs
|
|
11 |
objc m mm
|
12 |
python py pyw pyc pyo pyd
|
13 |
vb vbs
|
14 |
+
ruby rb rbx rhtml
|
langs/php/php.txt
CHANGED
@@ -3,9 +3,7 @@
|
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME PHP
|
6 |
-
VERSION 1.7.
|
7 |
-
|
8 |
-
#HTML:FADED ((?<=\?>).*?(?=<\?(?:php)?))|(\A.*?(?=<\?(?:php)?))|((?<=\?>).*\Z)
|
9 |
|
10 |
COMMENT (?default)|(\#.*?$)
|
11 |
STRING (?default)|(<<<EOT.*?^EOT)
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME PHP
|
6 |
+
VERSION 1.7.24
|
|
|
|
|
7 |
|
8 |
COMMENT (?default)|(\#.*?$)
|
9 |
STRING (?default)|(<<<EOT.*?^EOT)
|
langs/ruby/constant.txt
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
RUBY_RELEASE_DATE
|
2 |
+
RUBY_PLATFORM
|
3 |
+
RUBY_VERSION
|
4 |
+
STDOUT
|
5 |
+
STDERR
|
6 |
+
FALSE
|
7 |
+
STDIN
|
8 |
+
TRUE
|
9 |
+
ARGF
|
10 |
+
ARGV
|
11 |
+
DATA
|
12 |
+
NIL
|
13 |
+
ENV
|
langs/ruby/exception.txt
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
NotImplementedError
|
2 |
+
ZeroDivisionError
|
3 |
+
FloatDomainError
|
4 |
+
SystemStackError
|
5 |
+
SignalException
|
6 |
+
SystemCallError
|
7 |
+
LocalJumpError
|
8 |
+
NoMemoryError
|
9 |
+
StandardError
|
10 |
+
ArgumentError
|
11 |
+
NoMethodError
|
12 |
+
SecurityError
|
13 |
+
RuntimeError
|
14 |
+
ScriptError
|
15 |
+
SyntaxError
|
16 |
+
RegexpError
|
17 |
+
ThreadError
|
18 |
+
IndexError
|
19 |
+
RangeError
|
20 |
+
SystemExit
|
21 |
+
LoadError
|
22 |
+
Interrupt
|
23 |
+
NameError
|
24 |
+
TypeError
|
25 |
+
EOFError
|
26 |
+
IOError
|
27 |
+
Errno
|
28 |
+
fatal
|
langs/ruby/library.txt
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
benchmark.rb
|
2 |
+
fileutils.rb
|
3 |
+
singleton.rb
|
4 |
+
delegate.rb
|
5 |
+
observer.rb
|
6 |
+
open-uri.rb
|
7 |
+
parsearg.rb
|
8 |
+
tempfile.rb
|
9 |
+
cgi-lib.rb
|
10 |
+
English.rb
|
11 |
+
ostruct.rb
|
12 |
+
profile.rb
|
13 |
+
pstore.rb
|
14 |
+
test/unit
|
15 |
+
tracer.rb
|
16 |
+
debug.rb
|
17 |
+
jcode.rb
|
18 |
+
net/*.rb
|
19 |
+
open3.rb
|
20 |
+
rexml.rb
|
21 |
+
stringio
|
22 |
+
date.rb
|
23 |
+
find.rb
|
24 |
+
time.rb
|
25 |
+
webrick
|
26 |
+
cgi.rb
|
27 |
+
yaml
|
28 |
+
pp
|
langs/ruby/modifier.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
protected
|
2 |
+
private
|
3 |
+
public
|
langs/ruby/module.txt
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ObjectSpace
|
2 |
+
Comparable
|
3 |
+
Enumerable
|
4 |
+
Precision
|
5 |
+
FileTest
|
6 |
+
Marshal
|
7 |
+
Process
|
8 |
+
Kernel
|
9 |
+
Errno
|
10 |
+
Math
|
11 |
+
GC
|
langs/ruby/operator.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<=>
|
2 |
+
...
|
3 |
+
..
|
langs/ruby/reserved.txt
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
DLN_LIBRARY_PATH
|
2 |
+
RUBYLIB_PREFIX
|
3 |
+
$LOAD_PATH
|
4 |
+
$FILENAME
|
5 |
+
RUBYSHELL
|
6 |
+
$VERBOSE
|
7 |
+
__FILE__
|
8 |
+
__LINE__
|
9 |
+
RUBYPATH
|
10 |
+
$stderr
|
11 |
+
$stdout
|
12 |
+
RUBYLIB
|
13 |
+
RUBYOPT
|
14 |
+
defined
|
15 |
+
$DEBUG
|
16 |
+
$stdin
|
17 |
+
module
|
18 |
+
FALSE
|
19 |
+
alias
|
20 |
+
class
|
21 |
+
FALSE
|
22 |
+
super
|
23 |
+
undef
|
24 |
+
while
|
25 |
+
yield
|
26 |
+
self
|
27 |
+
TRUE
|
28 |
+
self
|
29 |
+
TRUE
|
30 |
+
$-a
|
31 |
+
$-d
|
32 |
+
$-F
|
33 |
+
$-i
|
34 |
+
$-I
|
35 |
+
$-l
|
36 |
+
$-p
|
37 |
+
$-v
|
38 |
+
$-w
|
39 |
+
nil
|
40 |
+
def
|
41 |
+
$!
|
42 |
+
$@
|
43 |
+
$&
|
44 |
+
$`
|
45 |
+
$'
|
46 |
+
$+
|
47 |
+
$~
|
48 |
+
$=
|
49 |
+
$/
|
50 |
+
$\
|
51 |
+
$,
|
52 |
+
$;
|
53 |
+
$.
|
54 |
+
$<
|
55 |
+
$>
|
56 |
+
$_
|
57 |
+
$*
|
58 |
+
$$
|
59 |
+
$?
|
60 |
+
$:
|
61 |
+
$"
|
62 |
+
$1
|
63 |
+
$0
|
langs/ruby/ruby.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
### RUBY LANGUAGE ###
|
2 |
+
|
3 |
+
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
+
|
5 |
+
NAME Ruby
|
6 |
+
VERSION 1.7.24
|
7 |
+
|
8 |
+
COMMENT (\#.*?$)|(=begin.*?=end)
|
9 |
+
STRING (?default)|(%\w?\([^\)]*\))|(\`[^\`]*`)|(\<\<["'-]?\w+["']?)
|
10 |
+
REGEX:STRING /([^/]|(?<=\\)/)+/\[a-z]+
|
11 |
+
|
12 |
+
TAG <%=?|%>|^%
|
13 |
+
LIBRARY:KEYWORD \b(?alt:library.txt)\b
|
14 |
+
MODULE:KEYWORD \b(?alt:module.txt)\b
|
15 |
+
EXCEPTION:KEYWORD \b(?alt:exception.txt)\b
|
16 |
+
STATEMENT \b(?alt:statement.txt)\b
|
17 |
+
RESERVED (?alt:reserved.txt)
|
18 |
+
TYPE \b(?alt:type.txt)\b
|
19 |
+
MODIFIER \b(?alt:modifier.txt)\b
|
20 |
+
|
21 |
+
ENTITY (\b[a-z_]\w*\b(?=\s*\([^\)]*\)))|(\b[a-z_]\w*\b(?=\s*\{[^{)]*\}))
|
22 |
+
VARIABLE (?default)|((\$|@+)\w+)|\&\w+
|
23 |
+
CONSTANT (?default)|\b(?alt:constant.txt)\b
|
24 |
+
OPERATOR (?default)|\b(?alt:operator.txt)\b
|
25 |
+
IDENTIFIER (?default)
|
26 |
+
BRACES:KEYWORD [\{\}]
|
27 |
+
SYMBOL (?default)
|
langs/ruby/statement.txt
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
unless
|
2 |
+
rescue
|
3 |
+
ensure
|
4 |
+
return
|
5 |
+
elsif
|
6 |
+
while
|
7 |
+
begin
|
8 |
+
break
|
9 |
+
retry
|
10 |
+
raise
|
11 |
+
catch
|
12 |
+
throw
|
13 |
+
else
|
14 |
+
case
|
15 |
+
loop
|
16 |
+
redo
|
17 |
+
next
|
18 |
+
exit
|
19 |
+
then
|
20 |
+
when
|
21 |
+
end
|
22 |
+
for
|
23 |
+
and
|
24 |
+
not
|
25 |
+
if
|
26 |
+
do
|
27 |
+
in
|
28 |
+
or
|
langs/ruby/type.txt
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Object
|
2 |
+
Hash
|
3 |
+
Symbol
|
4 |
+
IO
|
5 |
+
File
|
6 |
+
Continuation
|
7 |
+
File::Stat
|
8 |
+
Data
|
9 |
+
NilClass
|
10 |
+
Exception
|
11 |
+
Array
|
12 |
+
Proc
|
13 |
+
String
|
14 |
+
Numeric
|
15 |
+
Float
|
16 |
+
Integer
|
17 |
+
Bignum
|
18 |
+
Fixnum
|
19 |
+
Regexp
|
20 |
+
Thread
|
21 |
+
Module
|
22 |
+
Class
|
23 |
+
ThreadGroup
|
24 |
+
Method
|
25 |
+
UnboundMethod
|
26 |
+
Struct
|
27 |
+
Struct::Tms
|
28 |
+
TrueClass
|
29 |
+
Time
|
30 |
+
Dir
|
31 |
+
Binding
|
32 |
+
Range
|
33 |
+
MatchData
|
34 |
+
FalseClass
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bit.ly/crayondonate
|
|
4 |
Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3.1
|
7 |
-
Stable tag:
|
8 |
|
9 |
Syntax Highlighter supporting multiple languages, themes, fonts, highlighting from a URL, local file or post text.
|
10 |
|
@@ -20,8 +20,8 @@ It also supports some neat features like:
|
|
20 |
* Copy/paste code
|
21 |
* Open code in a new window (popup)
|
22 |
* Remote request caching
|
23 |
-
*
|
24 |
-
* Mini Tags like [php][/php]
|
25 |
* Plain Tag ([plain]...[/plain]) for quick <pre><code>...</code></pre>
|
26 |
* <pre> tag support
|
27 |
* Mobile/touchscreen device detection
|
@@ -55,6 +55,7 @@ See http://ak.net84.net/projects/crayon-language-file-specification/ to learn ho
|
|
55 |
* Objective-C
|
56 |
* PHP
|
57 |
* Python
|
|
|
58 |
* Shell (Unix)
|
59 |
* Visual Basic
|
60 |
|
@@ -67,7 +68,7 @@ Please Thank Me With <a href="http://ak.net84.net/files/donate.php" target="_bla
|
|
67 |
**International Languages**
|
68 |
|
69 |
* French
|
70 |
-
* German
|
71 |
* Italian
|
72 |
* Spanish
|
73 |
* Japanese (thanks to @west_323)
|
@@ -84,10 +85,12 @@ These are helpful for discovering new features.
|
|
84 |
|
85 |
**Planned Features**
|
86 |
|
87 |
-
*
|
|
|
88 |
* Highlighting in sentences
|
89 |
-
*
|
90 |
* Visual Editor Support
|
|
|
91 |
|
92 |
== Installation ==
|
93 |
|
@@ -120,12 +123,34 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
|
|
120 |
|
121 |
1. Classic theme.
|
122 |
2. Twilight theme.
|
|
|
123 |
|
124 |
== Changelog ==
|
125 |
|
126 |
= 1.8.0 =
|
127 |
* Theme Editor coming soon!
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
= 1.7.22 =
|
130 |
* Fixed dimension and redraw issues on scrollbars
|
131 |
|
4 |
Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3.1
|
7 |
+
Stable tag: trunk
|
8 |
|
9 |
Syntax Highlighter supporting multiple languages, themes, fonts, highlighting from a URL, local file or post text.
|
10 |
|
20 |
* Copy/paste code
|
21 |
* Open code in a new window (popup)
|
22 |
* Remote request caching
|
23 |
+
* <a href="http://ak.net84.net/projects/mixed-language-highlighting-in-crayon/" target="_blank">Mixed Language Highlighting</a> in a single Crayon
|
24 |
+
* <a href="http://ak.net84.net/projects/mini-tags-in-crayon/" target="_blank">Mini Tags</a> like [php][/php]
|
25 |
* Plain Tag ([plain]...[/plain]) for quick <pre><code>...</code></pre>
|
26 |
* <pre> tag support
|
27 |
* Mobile/touchscreen device detection
|
55 |
* Objective-C
|
56 |
* PHP
|
57 |
* Python
|
58 |
+
* Ruby
|
59 |
* Shell (Unix)
|
60 |
* Visual Basic
|
61 |
|
68 |
**International Languages**
|
69 |
|
70 |
* French
|
71 |
+
* German (thanks to Stephan Knauß)
|
72 |
* Italian
|
73 |
* Spanish
|
74 |
* Japanese (thanks to @west_323)
|
85 |
|
86 |
**Planned Features**
|
87 |
|
88 |
+
* AutoIt support
|
89 |
+
* ActionScript support
|
90 |
* Highlighting in sentences
|
91 |
+
* Highlighting in comments
|
92 |
* Visual Editor Support
|
93 |
+
* Theme Editor
|
94 |
|
95 |
== Installation ==
|
96 |
|
123 |
|
124 |
1. Classic theme.
|
125 |
2. Twilight theme.
|
126 |
+
3. Mixed Language Highlighting.
|
127 |
|
128 |
== Changelog ==
|
129 |
|
130 |
= 1.8.0 =
|
131 |
* Theme Editor coming soon!
|
132 |
|
133 |
+
= 1.7.25 =
|
134 |
+
* German translation improved by Stephan Knauß
|
135 |
+
* Added missing translations in other languages and fixed bug preventing dropdowns from being translated
|
136 |
+
* Added translators to the about page
|
137 |
+
* Oh, added <code><html>...</html></code> tag into the delimiters
|
138 |
+
* But of course, if you wanted say HTML with PHP, then you'd set the language to HTML and use <code><?php ... ?></code> tag when you needed them
|
139 |
+
|
140 |
+
= 1.7.24 =
|
141 |
+
* Added support for Ruby(on Rails)?
|
142 |
+
* Added support for Ruby file extensions like rb, rbx
|
143 |
+
* Added "rb" alias for [rb][/rb] Mini Tags
|
144 |
+
* Added RHTML delimiters like %lt;% and %%gt;
|
145 |
+
* Added a bottom margin to the Plain Tag
|
146 |
+
* Added support for quotes in the title attribute
|
147 |
+
* You still need to use <code>" some 'title'"</code> or <code>' some "title" '</code> properly, not "' or '" ;)
|
148 |
+
|
149 |
+
= 1.7.23 =
|
150 |
+
* Remove 'theme-font' and replaced default as 'Monaco'.
|
151 |
+
* Remove @import for fonts and replace with CSS tags. This should fix any 404 issues.
|
152 |
+
* Now all fonts reside in /fonts with font-face fonts having a separate directory by their name to store the font vectors etc
|
153 |
+
|
154 |
= 1.7.22 =
|
155 |
* Fixed dimension and redraw issues on scrollbars
|
156 |
|
screenshot-3.png
ADDED
Binary file
|
trans/crayon-syntax-highlighter-de_DE.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-de_DE.po
CHANGED
@@ -19,504 +19,494 @@ 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 "
|
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 "
|
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 "
|
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:164
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
-
msgstr "
|
78 |
|
79 |
-
#: crayon_settings.class.php:
|
80 |
-
#: crayon_settings.class.php:
|
81 |
-
#: crayon_settings.class.php:159
|
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
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
-
msgstr "
|
101 |
|
102 |
-
#: crayon_settings.class.php:
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
-
msgstr "
|
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."
|
111 |
|
112 |
#: crayon_settings_wp.class.php:39
|
113 |
-
#: crayon_settings_wp.class.php:
|
|
|
114 |
#@ crayon-syntax-highlighter
|
115 |
msgid "Settings"
|
116 |
msgstr "Einstellungen"
|
117 |
|
118 |
-
#: crayon_settings_wp.class.php:
|
119 |
#@ crayon-syntax-highlighter
|
120 |
msgid "You do not have sufficient permissions to access this page."
|
121 |
-
msgstr "Sie verfügen nicht über ausreichende Berechtigungen
|
122 |
|
123 |
-
#: crayon_settings_wp.class.php:
|
124 |
#@ crayon-syntax-highlighter
|
125 |
msgid "Save Changes"
|
126 |
msgstr "Änderungen speichern"
|
127 |
|
128 |
-
#: crayon_settings_wp.class.php:
|
129 |
#@ crayon-syntax-highlighter
|
130 |
msgid "Reset Settings"
|
131 |
msgstr "Einstellungen zurücksetzen"
|
132 |
|
133 |
-
#: crayon_settings_wp.class.php:
|
134 |
#@ crayon-syntax-highlighter
|
135 |
msgid "Height"
|
136 |
msgstr "Höhe"
|
137 |
|
138 |
-
#: crayon_settings_wp.class.php:
|
139 |
#@ crayon-syntax-highlighter
|
140 |
msgid "Width"
|
141 |
msgstr "Breite"
|
142 |
|
143 |
-
#: crayon_settings_wp.class.php:
|
144 |
#@ crayon-syntax-highlighter
|
145 |
msgid "Top Margin"
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#: crayon_settings_wp.class.php:
|
149 |
#@ crayon-syntax-highlighter
|
150 |
msgid "Bottom Margin"
|
151 |
msgstr "Unterer Rand"
|
152 |
|
153 |
-
#: crayon_settings_wp.class.php:
|
154 |
-
#: crayon_settings_wp.class.php:
|
155 |
#@ crayon-syntax-highlighter
|
156 |
msgid "Left Margin"
|
157 |
msgstr "Linker Rand"
|
158 |
|
159 |
-
#: crayon_settings_wp.class.php:
|
160 |
-
#: crayon_settings_wp.class.php:
|
161 |
#@ crayon-syntax-highlighter
|
162 |
msgid "Right Margin"
|
163 |
msgstr "Rechter Rand"
|
164 |
|
165 |
-
#: crayon_settings_wp.class.php:
|
166 |
#@ crayon-syntax-highlighter
|
167 |
msgid "Horizontal Alignment"
|
168 |
msgstr "Horizontale Ausrichtung"
|
169 |
|
170 |
-
#: crayon_settings_wp.class.php:
|
171 |
#@ crayon-syntax-highlighter
|
172 |
msgid "Allow floating elements to surround Crayon"
|
173 |
-
msgstr "
|
174 |
|
175 |
-
#: crayon_settings_wp.class.php:
|
176 |
#@ crayon-syntax-highlighter
|
177 |
msgid "Display the Toolbar"
|
178 |
-
msgstr "
|
179 |
|
180 |
-
#: crayon_settings_wp.class.php:
|
181 |
#@ crayon-syntax-highlighter
|
182 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
183 |
-
msgstr "
|
184 |
|
185 |
-
#: crayon_settings_wp.class.php:
|
186 |
#@ crayon-syntax-highlighter
|
187 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
188 |
-
msgstr "
|
189 |
|
190 |
-
#: crayon_settings_wp.class.php:
|
191 |
#@ crayon-syntax-highlighter
|
192 |
msgid "Delay hiding the toolbar on MouseOut"
|
193 |
-
msgstr "
|
194 |
|
195 |
-
#: crayon_settings_wp.class.php:
|
196 |
#@ crayon-syntax-highlighter
|
197 |
msgid "Display the title when provided"
|
198 |
-
msgstr "
|
199 |
|
200 |
-
#: crayon_settings_wp.class.php:
|
201 |
#@ crayon-syntax-highlighter
|
202 |
msgid "Display the language"
|
203 |
msgstr "Anzeige der Sprache"
|
204 |
|
205 |
-
#: crayon_settings_wp.class.php:
|
206 |
#@ crayon-syntax-highlighter
|
207 |
msgid "Display striped code lines"
|
208 |
-
msgstr "Anzeige
|
209 |
|
210 |
-
#: crayon_settings_wp.class.php:
|
211 |
#@ crayon-syntax-highlighter
|
212 |
msgid "Enable line marking for important lines"
|
213 |
-
msgstr "
|
214 |
|
215 |
-
#: crayon_settings_wp.class.php:
|
216 |
#@ crayon-syntax-highlighter
|
217 |
msgid "Display line numbers by default"
|
218 |
-
msgstr "Zeilennummern anzeigen
|
219 |
|
220 |
-
#: crayon_settings_wp.class.php:
|
221 |
#@ crayon-syntax-highlighter
|
222 |
msgid "Enable line number toggling"
|
223 |
-
msgstr "
|
224 |
|
225 |
-
#: crayon_settings_wp.class.php:
|
226 |
#@ crayon-syntax-highlighter
|
227 |
msgid "Start line numbers from"
|
228 |
-
msgstr "
|
229 |
|
230 |
-
#: crayon_settings_wp.class.php:
|
231 |
#@ crayon-syntax-highlighter
|
232 |
msgid "When no language is provided, use the fallback"
|
233 |
-
msgstr "Wenn keine Sprache
|
234 |
|
235 |
-
#: crayon_settings_wp.class.php:
|
236 |
#@ crayon-syntax-highlighter
|
237 |
msgid "Parsing was successful"
|
238 |
-
msgstr "
|
239 |
|
240 |
-
#: crayon_settings_wp.class.php:
|
241 |
#@ crayon-syntax-highlighter
|
242 |
msgid "Parsing was unsuccessful"
|
243 |
-
msgstr "
|
244 |
|
245 |
-
#: crayon_settings_wp.class.php:
|
246 |
#, php-format
|
247 |
#@ crayon-syntax-highlighter
|
248 |
msgid "The selected language with id %s could not be loaded"
|
249 |
msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
|
250 |
|
251 |
-
#: crayon_settings_wp.class.php:
|
252 |
#@ crayon-syntax-highlighter
|
253 |
msgid "Show Languages"
|
254 |
msgstr "Zeige Sprachen"
|
255 |
|
256 |
-
#: crayon_settings_wp.class.php:
|
257 |
#@ crayon-syntax-highlighter
|
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
|
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:552
|
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 "
|
287 |
|
288 |
-
#: crayon_settings_wp.class.php:
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
-
msgstr "
|
292 |
|
293 |
-
#: crayon_settings_wp.class.php:
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable opening code in a window"
|
296 |
-
msgstr "
|
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:
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
-
msgstr "
|
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 "
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Clear the cache used to store remote code requests"
|
321 |
-
msgstr "
|
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 "
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
-
msgstr "
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
-
msgstr "
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Log errors for individual Crayons"
|
346 |
-
msgstr "
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log system-wide errors"
|
351 |
-
msgstr "
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Display custom message for errors"
|
356 |
-
msgstr "
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
-
msgstr "
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
-
msgstr "
|
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 "
|
392 |
|
393 |
-
#:
|
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
|
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"
|
423 |
|
424 |
-
#: crayon_settings_wp.class.php:
|
425 |
#@ crayon-syntax-highlighter
|
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
|
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
|
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
|
453 |
|
454 |
-
#: crayon_settings_wp.class.php:
|
455 |
#@ crayon-syntax-highlighter
|
456 |
msgid "The log file exists and is not writable."
|
457 |
-
msgstr "Die
|
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
|
463 |
|
464 |
-
#: crayon_settings_wp.class.php:
|
465 |
#, php-format
|
466 |
#@ crayon-syntax-highlighter
|
467 |
msgid "%d language has been detected."
|
468 |
msgid_plural "%d languages have been detected."
|
469 |
-
msgstr[0] "%d
|
470 |
-
msgstr[1] "%d
|
471 |
|
472 |
-
#: crayon_settings_wp.class.php:
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "Capture <pre> tags as Crayons"
|
475 |
-
msgstr "
|
476 |
|
477 |
-
#: crayon_settings_wp.class.php:
|
478 |
-
#: crayon_settings_wp.class.php:
|
479 |
-
#: crayon_settings_wp.class.php:
|
480 |
-
#: crayon_settings_wp.class.php:
|
481 |
-
#: crayon_settings_wp.class.php:
|
|
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Learn More"
|
484 |
msgstr "Erfahren Sie mehr"
|
485 |
|
486 |
-
#: crayon_settings_wp.class.php:
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Show Mixed Language Icon (+)"
|
489 |
-
msgstr "Zeige gemischte
|
490 |
|
491 |
-
#: crayon_settings_wp.class.php:
|
492 |
#@ crayon-syntax-highlighter
|
493 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
494 |
-
msgstr "
|
495 |
|
496 |
-
#: crayon_settings_wp.class.php:
|
497 |
#@ crayon-syntax-highlighter
|
498 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
499 |
-
msgstr "
|
500 |
|
501 |
-
#: crayon_settings_wp.class.php:
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable [plain][/plain] tag."
|
504 |
-
msgstr "
|
505 |
|
506 |
-
#: crayon_settings.class.php:
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Disable Mouse Events"
|
509 |
-
msgstr "
|
510 |
|
511 |
-
#: crayon_settings_wp.class.php:
|
512 |
#@ crayon-syntax-highlighter
|
513 |
msgid "Enable plain code toggling"
|
514 |
-
msgstr "
|
515 |
|
516 |
-
#: crayon_settings_wp.class.php:
|
517 |
#@ crayon-syntax-highlighter
|
518 |
msgid "Show the plain code by default"
|
519 |
-
msgstr "
|
520 |
|
521 |
#. translators: plugin header field 'Name'
|
522 |
#: crayon_wp.class.php:0
|
@@ -546,101 +536,133 @@ msgstr ""
|
|
546 |
#: crayon_wp.class.php:0
|
547 |
#@ crayon-syntax-highlighter
|
548 |
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
549 |
-
msgstr "Unterstützt mehrere Sprachen
|
550 |
|
551 |
-
#:
|
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:
|
562 |
#@ crayon-syntax-highlighter
|
563 |
msgid "General"
|
564 |
msgstr "Allgemein"
|
565 |
|
566 |
-
#: crayon_settings_wp.class.php:
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "Theme"
|
569 |
-
msgstr "
|
570 |
|
571 |
-
#: crayon_settings_wp.class.php:
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "Font"
|
574 |
-
msgstr "
|
575 |
|
576 |
-
#: crayon_settings_wp.class.php:
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "Metrics"
|
579 |
-
msgstr "
|
580 |
|
581 |
-
#: crayon_settings_wp.class.php:
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Toolbar"
|
584 |
msgstr "Symbolleiste"
|
585 |
|
586 |
-
#: crayon_settings_wp.class.php:
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Lines"
|
589 |
-
msgstr "
|
590 |
|
591 |
-
#: crayon_settings_wp.class.php:
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Code"
|
594 |
msgstr "Code"
|
595 |
|
596 |
-
#: crayon_settings_wp.class.php:
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Languages"
|
599 |
msgstr "Sprachen"
|
600 |
|
601 |
-
#: crayon_settings_wp.class.php:
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Files"
|
604 |
msgstr "Dateien"
|
605 |
|
606 |
-
#: crayon_settings_wp.class.php:
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Misc"
|
609 |
msgstr "Sonstiges"
|
610 |
|
611 |
-
#: crayon_settings_wp.class.php:
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "Debug"
|
614 |
msgstr "Debuggen"
|
615 |
|
616 |
-
#: crayon_settings_wp.class.php:
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Errors"
|
619 |
msgstr "Fehler"
|
620 |
|
621 |
-
#: crayon_settings_wp.class.php:
|
622 |
#@ crayon-syntax-highlighter
|
623 |
msgid "Log"
|
624 |
-
msgstr "
|
625 |
|
626 |
-
#: crayon_settings_wp.class.php:
|
627 |
#@ crayon-syntax-highlighter
|
628 |
msgid "About"
|
629 |
msgstr "Über"
|
630 |
|
631 |
-
#: crayon_settings_wp.class.php:
|
632 |
#@ crayon-syntax-highlighter
|
633 |
msgid "Enqueue themes in the header (more efficient)."
|
634 |
-
msgstr "
|
635 |
|
636 |
-
#: crayon_settings_wp.class.php:
|
637 |
#@ crayon-syntax-highlighter
|
638 |
msgid "Enqueue fonts in the header (more efficient)."
|
639 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
640 |
|
641 |
#. translators: plugin header field 'Version'
|
642 |
#: crayon_wp.class.php:0
|
643 |
#@ crayon-syntax-highlighter
|
644 |
-
msgid "1.7.
|
645 |
msgstr ""
|
646 |
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:130
|
23 |
+
#: crayon_settings.class.php:134
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:130
|
29 |
+
#: crayon_settings.class.php:134
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:130
|
35 |
+
#: crayon_settings.class.php:134
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
+
msgstr "Fix"
|
39 |
|
40 |
+
#: crayon_settings.class.php:132
|
41 |
+
#: crayon_settings.class.php:136
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
+
#: crayon_settings.class.php:132
|
47 |
+
#: crayon_settings.class.php:136
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Prozent"
|
51 |
|
52 |
+
#: crayon_settings.class.php:145
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
+
msgstr "Keine"
|
56 |
|
57 |
+
#: crayon_settings.class.php:145
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Links"
|
61 |
|
62 |
+
#: crayon_settings.class.php:145
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
+
msgstr "Mitte"
|
66 |
|
67 |
+
#: crayon_settings.class.php:145
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Rechts"
|
71 |
|
72 |
+
#: crayon_settings.class.php:147
|
73 |
+
#: crayon_settings.class.php:169
|
|
|
74 |
#@ crayon-syntax-highlighter
|
75 |
msgid "On MouseOver"
|
76 |
+
msgstr "Bei MouseOver"
|
77 |
|
78 |
+
#: crayon_settings.class.php:147
|
79 |
+
#: crayon_settings.class.php:153
|
|
|
80 |
#@ crayon-syntax-highlighter
|
81 |
msgid "Always"
|
82 |
msgstr "Immer"
|
83 |
|
84 |
+
#: crayon_settings.class.php:147
|
85 |
+
#: crayon_settings.class.php:153
|
86 |
#@ crayon-syntax-highlighter
|
87 |
msgid "Never"
|
88 |
msgstr "Nie"
|
89 |
|
90 |
+
#: crayon_settings.class.php:153
|
91 |
#@ crayon-syntax-highlighter
|
92 |
msgid "When Found"
|
93 |
+
msgstr "Wenn gefunden"
|
94 |
|
95 |
+
#: crayon_settings.class.php:169
|
96 |
#@ crayon-syntax-highlighter
|
97 |
msgid "On Double Click"
|
98 |
+
msgstr "Bei Doppelklick"
|
99 |
|
100 |
+
#: crayon_settings.class.php:169
|
101 |
#@ crayon-syntax-highlighter
|
102 |
msgid "On Single Click"
|
103 |
+
msgstr "Bei Mausklick"
|
104 |
|
105 |
+
#: crayon_settings.class.php:177
|
106 |
#@ crayon-syntax-highlighter
|
107 |
msgid "An error has occurred. Please try again later."
|
108 |
msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
|
109 |
|
110 |
#: crayon_settings_wp.class.php:39
|
111 |
+
#: crayon_settings_wp.class.php:82
|
112 |
+
#: crayon_settings_wp.class.php:710
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Settings"
|
115 |
msgstr "Einstellungen"
|
116 |
|
117 |
+
#: crayon_settings_wp.class.php:73
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "You do not have sufficient permissions to access this page."
|
120 |
+
msgstr "Sie verfügen nicht über ausreichende Berechtigungen um diese Seite zu betreten."
|
121 |
|
122 |
+
#: crayon_settings_wp.class.php:94
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "Save Changes"
|
125 |
msgstr "Änderungen speichern"
|
126 |
|
127 |
+
#: crayon_settings_wp.class.php:100
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "Reset Settings"
|
130 |
msgstr "Einstellungen zurücksetzen"
|
131 |
|
132 |
+
#: crayon_settings_wp.class.php:437
|
133 |
#@ crayon-syntax-highlighter
|
134 |
msgid "Height"
|
135 |
msgstr "Höhe"
|
136 |
|
137 |
+
#: crayon_settings_wp.class.php:443
|
138 |
#@ crayon-syntax-highlighter
|
139 |
msgid "Width"
|
140 |
msgstr "Breite"
|
141 |
|
142 |
+
#: crayon_settings_wp.class.php:449
|
143 |
#@ crayon-syntax-highlighter
|
144 |
msgid "Top Margin"
|
145 |
+
msgstr "Oberer Rand"
|
146 |
|
147 |
+
#: crayon_settings_wp.class.php:450
|
148 |
#@ crayon-syntax-highlighter
|
149 |
msgid "Bottom Margin"
|
150 |
msgstr "Unterer Rand"
|
151 |
|
152 |
+
#: crayon_settings_wp.class.php:451
|
153 |
+
#: crayon_settings_wp.class.php:456
|
154 |
#@ crayon-syntax-highlighter
|
155 |
msgid "Left Margin"
|
156 |
msgstr "Linker Rand"
|
157 |
|
158 |
+
#: crayon_settings_wp.class.php:452
|
159 |
+
#: crayon_settings_wp.class.php:456
|
160 |
#@ crayon-syntax-highlighter
|
161 |
msgid "Right Margin"
|
162 |
msgstr "Rechter Rand"
|
163 |
|
164 |
+
#: crayon_settings_wp.class.php:462
|
165 |
#@ crayon-syntax-highlighter
|
166 |
msgid "Horizontal Alignment"
|
167 |
msgstr "Horizontale Ausrichtung"
|
168 |
|
169 |
+
#: crayon_settings_wp.class.php:465
|
170 |
#@ crayon-syntax-highlighter
|
171 |
msgid "Allow floating elements to surround Crayon"
|
172 |
+
msgstr "Crayon in Floating Elemente einbetten"
|
173 |
|
174 |
+
#: crayon_settings_wp.class.php:470
|
175 |
#@ crayon-syntax-highlighter
|
176 |
msgid "Display the Toolbar"
|
177 |
+
msgstr "Symbolleiste anzeigen"
|
178 |
|
179 |
+
#: crayon_settings_wp.class.php:473
|
180 |
#@ crayon-syntax-highlighter
|
181 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
182 |
+
msgstr "Versuchen mit Symbolleiste Code zu überlagern statt zu verschieben"
|
183 |
|
184 |
+
#: crayon_settings_wp.class.php:474
|
185 |
#@ crayon-syntax-highlighter
|
186 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
187 |
+
msgstr "Symbolleiste mit Klick umschalten wenn als Overlay"
|
188 |
|
189 |
+
#: crayon_settings_wp.class.php:475
|
190 |
#@ crayon-syntax-highlighter
|
191 |
msgid "Delay hiding the toolbar on MouseOut"
|
192 |
+
msgstr "Nach MouseOut Symbolleiste verzögert ausblenden"
|
193 |
|
194 |
+
#: crayon_settings_wp.class.php:477
|
195 |
#@ crayon-syntax-highlighter
|
196 |
msgid "Display the title when provided"
|
197 |
+
msgstr "Titel anzeigen wenn vorhanden"
|
198 |
|
199 |
+
#: crayon_settings_wp.class.php:478
|
200 |
#@ crayon-syntax-highlighter
|
201 |
msgid "Display the language"
|
202 |
msgstr "Anzeige der Sprache"
|
203 |
|
204 |
+
#: crayon_settings_wp.class.php:483
|
205 |
#@ crayon-syntax-highlighter
|
206 |
msgid "Display striped code lines"
|
207 |
+
msgstr "Anzeige gestreifte Codezeilen"
|
208 |
|
209 |
+
#: crayon_settings_wp.class.php:484
|
210 |
#@ crayon-syntax-highlighter
|
211 |
msgid "Enable line marking for important lines"
|
212 |
+
msgstr "wichtige Zeilen markieren"
|
213 |
|
214 |
+
#: crayon_settings_wp.class.php:485
|
215 |
#@ crayon-syntax-highlighter
|
216 |
msgid "Display line numbers by default"
|
217 |
+
msgstr "Zeilennummern standardmäßig anzeigen"
|
218 |
|
219 |
+
#: crayon_settings_wp.class.php:486
|
220 |
#@ crayon-syntax-highlighter
|
221 |
msgid "Enable line number toggling"
|
222 |
+
msgstr "Zeilennummern Umschalten"
|
223 |
|
224 |
+
#: crayon_settings_wp.class.php:487
|
225 |
#@ crayon-syntax-highlighter
|
226 |
msgid "Start line numbers from"
|
227 |
+
msgstr "Erste Zeilennummer"
|
228 |
|
229 |
+
#: crayon_settings_wp.class.php:497
|
230 |
#@ crayon-syntax-highlighter
|
231 |
msgid "When no language is provided, use the fallback"
|
232 |
+
msgstr "Wenn keine Sprache festgelegt wird als Standard verwenden"
|
233 |
|
234 |
+
#: crayon_settings_wp.class.php:505
|
235 |
#@ crayon-syntax-highlighter
|
236 |
msgid "Parsing was successful"
|
237 |
+
msgstr "Laden erfolgreich"
|
238 |
|
239 |
+
#: crayon_settings_wp.class.php:505
|
240 |
#@ crayon-syntax-highlighter
|
241 |
msgid "Parsing was unsuccessful"
|
242 |
+
msgstr "Laden fehlgeschlagen"
|
243 |
|
244 |
+
#: crayon_settings_wp.class.php:511
|
245 |
#, php-format
|
246 |
#@ crayon-syntax-highlighter
|
247 |
msgid "The selected language with id %s could not be loaded"
|
248 |
msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
|
249 |
|
250 |
+
#: crayon_settings_wp.class.php:515
|
251 |
#@ crayon-syntax-highlighter
|
252 |
msgid "Show Languages"
|
253 |
msgstr "Zeige Sprachen"
|
254 |
|
255 |
+
#: crayon_settings_wp.class.php:552
|
256 |
#@ crayon-syntax-highlighter
|
257 |
msgid "Enable Live Preview"
|
258 |
msgstr "Live-Vorschau aktivieren"
|
259 |
|
260 |
+
#: crayon_settings_wp.class.php:557
|
261 |
#, php-format
|
262 |
#@ crayon-syntax-highlighter
|
263 |
msgid "The selected theme with id %s could not be loaded"
|
264 |
+
msgstr "Das gewählte Theme mit id %s konnte nicht geladen werden"
|
265 |
|
266 |
+
#: crayon_settings_wp.class.php:575
|
|
|
|
|
|
|
|
|
|
|
267 |
#@ crayon-syntax-highlighter
|
268 |
msgid "Custom Font Size"
|
269 |
msgstr "Benutzerdefinierte Schriftgröße"
|
270 |
|
271 |
+
#: crayon_settings_wp.class.php:580
|
272 |
#, php-format
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "The selected font with id %s could not be loaded"
|
275 |
msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
|
276 |
|
277 |
+
#: crayon_settings_wp.class.php:587
|
278 |
#@ crayon-syntax-highlighter
|
279 |
msgid "Enable plain code view and display"
|
280 |
+
msgstr "Unformatierte Code-Ansicht und Anzeige"
|
281 |
|
282 |
+
#: crayon_settings_wp.class.php:592
|
283 |
#@ crayon-syntax-highlighter
|
284 |
msgid "Enable code copy/paste"
|
285 |
+
msgstr "Code kopieren/einfügen ermöglichen"
|
286 |
|
287 |
+
#: crayon_settings_wp.class.php:594
|
288 |
#@ crayon-syntax-highlighter
|
289 |
msgid "Enable opening code in a window"
|
290 |
+
msgstr "Code in neuem Fenster anzeigbar machen"
|
|
|
|
|
|
|
|
|
|
|
291 |
|
292 |
+
#: crayon_settings_wp.class.php:596
|
293 |
#@ crayon-syntax-highlighter
|
294 |
msgid "Tab size in spaces"
|
295 |
+
msgstr "Anzahl Leerzeichen für Tabulator"
|
296 |
|
297 |
+
#: crayon_settings_wp.class.php:598
|
298 |
#@ crayon-syntax-highlighter
|
299 |
msgid "Remove whitespace surrounding the shortcode content"
|
300 |
msgstr "Entfernen Sie Leerzeichen um den Shortcode Inhalt"
|
301 |
|
302 |
+
#: crayon_settings_wp.class.php:608
|
303 |
#@ crayon-syntax-highlighter
|
304 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
305 |
+
msgstr "Wenn beim Laden von lokalen Dateien ein relativer Pfad für die URL angegeben ist den absoluten Pfad verwenden"
|
306 |
|
307 |
+
#: crayon_settings_wp.class.php:615
|
308 |
#@ crayon-syntax-highlighter
|
309 |
msgid "Clear the cache used to store remote code requests"
|
310 |
+
msgstr "Cache für Remote Code Requests leeren"
|
311 |
|
312 |
+
#: crayon_settings_wp.class.php:617
|
313 |
#@ crayon-syntax-highlighter
|
314 |
msgid "Clear Now"
|
315 |
msgstr "Jetzt löschen"
|
316 |
|
317 |
+
#: crayon_settings_wp.class.php:621
|
318 |
#@ crayon-syntax-highlighter
|
319 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
320 |
+
msgstr "Deaktiviere Mausgesten für Touchscreen-Geräte (z.B. MouseOver)"
|
321 |
|
322 |
+
#: crayon_settings_wp.class.php:622
|
323 |
#@ crayon-syntax-highlighter
|
324 |
msgid "Disable animations"
|
325 |
+
msgstr "Deaktiviere Animationen"
|
326 |
|
327 |
+
#: crayon_settings_wp.class.php:623
|
328 |
#@ crayon-syntax-highlighter
|
329 |
msgid "Disable runtime stats"
|
330 |
+
msgstr "Deaktiviere Laufzeit Statistiken"
|
331 |
|
332 |
+
#: crayon_settings_wp.class.php:630
|
333 |
#@ crayon-syntax-highlighter
|
334 |
msgid "Log errors for individual Crayons"
|
335 |
+
msgstr "Protokolliere Fehler für individuelle Crayons"
|
336 |
|
337 |
+
#: crayon_settings_wp.class.php:631
|
338 |
#@ crayon-syntax-highlighter
|
339 |
msgid "Log system-wide errors"
|
340 |
+
msgstr "Protokolliere systemweite Fehler"
|
341 |
|
342 |
+
#: crayon_settings_wp.class.php:632
|
343 |
#@ crayon-syntax-highlighter
|
344 |
msgid "Display custom message for errors"
|
345 |
+
msgstr "Benutzerdefinierte Meldungen für Fehler anzeigen"
|
346 |
|
347 |
+
#: crayon_settings_wp.class.php:644
|
348 |
#@ crayon-syntax-highlighter
|
349 |
msgid "Show Log"
|
350 |
+
msgstr "Protokoll anzeigen"
|
351 |
|
352 |
+
#: crayon_settings_wp.class.php:646
|
353 |
#@ crayon-syntax-highlighter
|
354 |
msgid "Clear Log"
|
355 |
+
msgstr "Protokoll löschen"
|
356 |
|
357 |
+
#: crayon_settings_wp.class.php:647
|
358 |
#@ crayon-syntax-highlighter
|
359 |
msgid "Email Admin"
|
360 |
msgstr "E-Mail Admin"
|
361 |
|
362 |
+
#: crayon_settings_wp.class.php:649
|
363 |
#@ crayon-syntax-highlighter
|
364 |
msgid "Email Developer"
|
365 |
msgstr "E-Mail Entwickler"
|
366 |
|
367 |
+
#: crayon_settings_wp.class.php:665
|
368 |
#@ crayon-syntax-highlighter
|
369 |
msgid "Version"
|
370 |
msgstr "Version"
|
371 |
|
372 |
+
#: crayon_settings_wp.class.php:667
|
373 |
#@ crayon-syntax-highlighter
|
374 |
msgid "Developer"
|
375 |
msgstr "Entwickler"
|
376 |
|
377 |
+
#: crayon_settings_wp.class.php:698
|
378 |
#@ crayon-syntax-highlighter
|
379 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
380 |
+
msgstr "Crayon ist das Ergebnis unzähliger Stunden harter Arbeit über viele Monate hinweg. Das Plugin wird laufend weiterentwickelt. Schreib mir wenn es Dir gefällt!"
|
381 |
|
382 |
+
#: crayon_settings_wp.class.php:549
|
383 |
#, php-format
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
386 |
+
msgstr "Ändern Sie die %1$sStandard Sprache%2$s um den Beispielcode zu ändern. Zeilen 5-7 sind markiert."
|
387 |
|
388 |
+
#: crayon_settings.class.php:101
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Hourly"
|
391 |
msgstr "Stündlich"
|
392 |
|
393 |
+
#: crayon_settings.class.php:101
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Daily"
|
396 |
msgstr "Täglich"
|
397 |
|
398 |
+
#: crayon_settings.class.php:102
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Weekly"
|
401 |
msgstr "Wöchentlich"
|
402 |
|
403 |
+
#: crayon_settings.class.php:102
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Monthly"
|
406 |
msgstr "Monatlich"
|
407 |
|
408 |
+
#: crayon_settings.class.php:103
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Immediately"
|
411 |
msgstr "Sofort"
|
412 |
|
413 |
+
#: crayon_settings_wp.class.php:423
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "Crayon Help"
|
416 |
msgstr "Crayon Hilfe"
|
417 |
|
418 |
+
#: crayon_settings_wp.class.php:618
|
419 |
#@ crayon-syntax-highlighter
|
420 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
+
msgstr "Versuchen Crayon CSS und JavaScript nur bei Bedarf zu laden"
|
422 |
|
423 |
+
#: crayon_settings_wp.class.php:618
|
424 |
#@ crayon-syntax-highlighter
|
425 |
msgid "Why?"
|
426 |
msgstr "Warum?"
|
427 |
|
428 |
+
#: crayon_settings_wp.class.php:611
|
429 |
#@ crayon-syntax-highlighter
|
430 |
msgid "Followed by your relative URL."
|
431 |
+
msgstr "Gefolgt von Ihrer relativen URL."
|
432 |
|
433 |
+
#: crayon_settings_wp.class.php:651
|
434 |
#@ crayon-syntax-highlighter
|
435 |
msgid "The log is currently empty."
|
436 |
msgstr "Das Protokoll ist derzeit leer."
|
437 |
|
438 |
+
#: crayon_settings_wp.class.php:653
|
439 |
#@ crayon-syntax-highlighter
|
440 |
msgid "The log file exists and is writable."
|
441 |
+
msgstr "Die Protokolldatei existiert und ist beschreibbar."
|
442 |
|
443 |
+
#: crayon_settings_wp.class.php:653
|
444 |
#@ crayon-syntax-highlighter
|
445 |
msgid "The log file exists and is not writable."
|
446 |
+
msgstr "Die Protokolldatei existiert und ist nicht beschreibbar."
|
447 |
|
448 |
+
#: crayon_settings_wp.class.php:655
|
449 |
#@ crayon-syntax-highlighter
|
450 |
msgid "The log file does not exist and is not writable."
|
451 |
+
msgstr "Die Protokolldatei existiert nicht und ist nicht schreibbar."
|
452 |
|
453 |
+
#: crayon_settings_wp.class.php:504
|
454 |
#, php-format
|
455 |
#@ crayon-syntax-highlighter
|
456 |
msgid "%d language has been detected."
|
457 |
msgid_plural "%d languages have been detected."
|
458 |
+
msgstr[0] "%d Sprache wurde erkannt."
|
459 |
+
msgstr[1] "%d Sprachen wurden erkannt."
|
460 |
|
461 |
+
#: crayon_settings_wp.class.php:599
|
462 |
#@ crayon-syntax-highlighter
|
463 |
msgid "Capture <pre> tags as Crayons"
|
464 |
+
msgstr "<pre> tags wie Crayons behandeln"
|
465 |
|
466 |
+
#: crayon_settings_wp.class.php:554
|
467 |
+
#: crayon_settings_wp.class.php:583
|
468 |
+
#: crayon_settings_wp.class.php:600
|
469 |
+
#: crayon_settings_wp.class.php:601
|
470 |
+
#: crayon_settings_wp.class.php:602
|
471 |
+
#: crayon_settings_wp.class.php:619
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "Learn More"
|
474 |
msgstr "Erfahren Sie mehr"
|
475 |
|
476 |
+
#: crayon_settings_wp.class.php:603
|
477 |
#@ crayon-syntax-highlighter
|
478 |
msgid "Show Mixed Language Icon (+)"
|
479 |
+
msgstr "Zeige gemischte Sprachen Symbol (+)"
|
480 |
|
481 |
+
#: crayon_settings_wp.class.php:602
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
484 |
+
msgstr "Erlaube Hervorhebung gemischter Sprachen mit Trennzeichen und Tags."
|
485 |
|
486 |
+
#: crayon_settings_wp.class.php:600
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
489 |
+
msgstr "Mini Tags wie [php][/php] als Crayons behandeln."
|
490 |
|
491 |
+
#: crayon_settings_wp.class.php:601
|
492 |
#@ crayon-syntax-highlighter
|
493 |
msgid "Enable [plain][/plain] tag."
|
494 |
+
msgstr "Aktiviere [plain][/plain] Tag."
|
495 |
|
496 |
+
#: crayon_settings.class.php:169
|
497 |
#@ crayon-syntax-highlighter
|
498 |
msgid "Disable Mouse Events"
|
499 |
+
msgstr "Mausereignisse deaktivieren"
|
500 |
|
501 |
+
#: crayon_settings_wp.class.php:590
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable plain code toggling"
|
504 |
+
msgstr "Umschaltung auf unformatierte Anzeige ermöglichen"
|
505 |
|
506 |
+
#: crayon_settings_wp.class.php:591
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Show the plain code by default"
|
509 |
+
msgstr "Unformatierten Code standardmäßig anzeigen"
|
510 |
|
511 |
#. translators: plugin header field 'Name'
|
512 |
#: crayon_wp.class.php:0
|
536 |
#: crayon_wp.class.php:0
|
537 |
#@ crayon-syntax-highlighter
|
538 |
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
539 |
+
msgstr "Unterstützt mehrere Sprachen und Themes. Hervorhebung von Code aus einer URL, lokalen Datei oder Artikeltext."
|
540 |
|
541 |
+
#: crayon_settings_wp.class.php:714
|
|
|
|
|
|
|
|
|
|
|
542 |
#@ crayon-syntax-highlighter
|
543 |
msgid "Donate"
|
544 |
msgstr "Spenden"
|
545 |
|
546 |
+
#: crayon_settings_wp.class.php:219
|
547 |
#@ crayon-syntax-highlighter
|
548 |
msgid "General"
|
549 |
msgstr "Allgemein"
|
550 |
|
551 |
+
#: crayon_settings_wp.class.php:220
|
552 |
#@ crayon-syntax-highlighter
|
553 |
msgid "Theme"
|
554 |
+
msgstr "Theme"
|
555 |
|
556 |
+
#: crayon_settings_wp.class.php:221
|
557 |
#@ crayon-syntax-highlighter
|
558 |
msgid "Font"
|
559 |
+
msgstr "Schriftart"
|
560 |
|
561 |
+
#: crayon_settings_wp.class.php:222
|
562 |
#@ crayon-syntax-highlighter
|
563 |
msgid "Metrics"
|
564 |
+
msgstr "Layout"
|
565 |
|
566 |
+
#: crayon_settings_wp.class.php:223
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "Toolbar"
|
569 |
msgstr "Symbolleiste"
|
570 |
|
571 |
+
#: crayon_settings_wp.class.php:224
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "Lines"
|
574 |
+
msgstr "Zeilen"
|
575 |
|
576 |
+
#: crayon_settings_wp.class.php:225
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "Code"
|
579 |
msgstr "Code"
|
580 |
|
581 |
+
#: crayon_settings_wp.class.php:226
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Languages"
|
584 |
msgstr "Sprachen"
|
585 |
|
586 |
+
#: crayon_settings_wp.class.php:227
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Files"
|
589 |
msgstr "Dateien"
|
590 |
|
591 |
+
#: crayon_settings_wp.class.php:228
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Misc"
|
594 |
msgstr "Sonstiges"
|
595 |
|
596 |
+
#: crayon_settings_wp.class.php:231
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Debug"
|
599 |
msgstr "Debuggen"
|
600 |
|
601 |
+
#: crayon_settings_wp.class.php:232
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Errors"
|
604 |
msgstr "Fehler"
|
605 |
|
606 |
+
#: crayon_settings_wp.class.php:233
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Log"
|
609 |
+
msgstr "Protokoll"
|
610 |
|
611 |
+
#: crayon_settings_wp.class.php:236
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "About"
|
614 |
msgstr "Über"
|
615 |
|
616 |
+
#: crayon_settings_wp.class.php:554
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Enqueue themes in the header (more efficient)."
|
619 |
+
msgstr "Themes im Header laden (effizienter)."
|
620 |
|
621 |
+
#: crayon_settings_wp.class.php:583
|
622 |
#@ crayon-syntax-highlighter
|
623 |
msgid "Enqueue fonts in the header (more efficient)."
|
624 |
+
msgstr "Schriftarten im Header laden (effizienter)."
|
625 |
+
|
626 |
+
#: crayon_settings_wp.class.php:545
|
627 |
+
#@ crayon-syntax-highlighter
|
628 |
+
msgid "Loading..."
|
629 |
+
msgstr "Lade..."
|
630 |
+
|
631 |
+
#: crayon_settings_wp.class.php:545
|
632 |
+
#: crayon_settings_wp.class.php:712
|
633 |
+
#: util/theme-editor/editor.php:14
|
634 |
+
#@ crayon-syntax-highlighter
|
635 |
+
msgid "Theme Editor"
|
636 |
+
msgstr "Thema Editor"
|
637 |
+
|
638 |
+
#: crayon_settings_wp.class.php:595
|
639 |
+
#@ crayon-syntax-highlighter
|
640 |
+
msgid "Always display scrollbars"
|
641 |
+
msgstr "Immer Scrollbalken anzeigen"
|
642 |
+
|
643 |
+
#: crayon_settings_wp.class.php:619
|
644 |
+
#@ crayon-syntax-highlighter
|
645 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
646 |
+
msgstr "Deaktiviere Laden im Header für Themes die The Loop verwenden"
|
647 |
+
|
648 |
+
#: crayon_settings_wp.class.php:620
|
649 |
+
#@ crayon-syntax-highlighter
|
650 |
+
msgid "Load Crayons only from the main Wordpress query"
|
651 |
+
msgstr "Crayons nur aus der main Wordpress query laden"
|
652 |
+
|
653 |
+
#: util/theme-editor/editor.php:16
|
654 |
+
#@ crayon-syntax-highlighter
|
655 |
+
msgid "Back To Settings"
|
656 |
+
msgstr "Zurück zu Einstellungen"
|
657 |
+
|
658 |
+
#: crayon_settings_wp.class.php:668
|
659 |
+
#@ crayon-syntax-highlighter
|
660 |
+
msgid "Translators"
|
661 |
+
msgstr "Übersetzer"
|
662 |
|
663 |
#. translators: plugin header field 'Version'
|
664 |
#: crayon_wp.class.php:0
|
665 |
#@ crayon-syntax-highlighter
|
666 |
+
msgid "1.7.25"
|
667 |
msgstr ""
|
668 |
|
trans/crayon-syntax-highlighter-es_ES.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-es_ES.po
CHANGED
@@ -19,424 +19,413 @@ 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:164
|
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:159
|
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."
|
111 |
|
112 |
#: crayon_settings_wp.class.php:39
|
113 |
-
#: crayon_settings_wp.class.php:
|
|
|
114 |
#@ crayon-syntax-highlighter
|
115 |
msgid "Settings"
|
116 |
msgstr "Configuración"
|
117 |
|
118 |
-
#: crayon_settings_wp.class.php:
|
119 |
#@ crayon-syntax-highlighter
|
120 |
msgid "You do not have sufficient permissions to access this page."
|
121 |
msgstr "Usted no tiene permisos suficientes para acceder a esta página."
|
122 |
|
123 |
-
#: crayon_settings_wp.class.php:
|
124 |
#@ crayon-syntax-highlighter
|
125 |
msgid "Save Changes"
|
126 |
msgstr "Guardar cambios"
|
127 |
|
128 |
-
#: crayon_settings_wp.class.php:
|
129 |
#@ crayon-syntax-highlighter
|
130 |
msgid "Reset Settings"
|
131 |
msgstr "Restablecer configuración"
|
132 |
|
133 |
-
#: crayon_settings_wp.class.php:
|
134 |
#@ crayon-syntax-highlighter
|
135 |
msgid "Height"
|
136 |
msgstr "Altura"
|
137 |
|
138 |
-
#: crayon_settings_wp.class.php:
|
139 |
#@ crayon-syntax-highlighter
|
140 |
msgid "Width"
|
141 |
msgstr "Ancho"
|
142 |
|
143 |
-
#: crayon_settings_wp.class.php:
|
144 |
#@ crayon-syntax-highlighter
|
145 |
msgid "Top Margin"
|
146 |
msgstr "Margen superior"
|
147 |
|
148 |
-
#: crayon_settings_wp.class.php:
|
149 |
#@ crayon-syntax-highlighter
|
150 |
msgid "Bottom Margin"
|
151 |
msgstr "Margen inferior"
|
152 |
|
153 |
-
#: crayon_settings_wp.class.php:
|
154 |
-
#: crayon_settings_wp.class.php:
|
155 |
#@ crayon-syntax-highlighter
|
156 |
msgid "Left Margin"
|
157 |
msgstr "Margen Izquierda"
|
158 |
|
159 |
-
#: crayon_settings_wp.class.php:
|
160 |
-
#: crayon_settings_wp.class.php:
|
161 |
#@ crayon-syntax-highlighter
|
162 |
msgid "Right Margin"
|
163 |
msgstr "Margen derecho"
|
164 |
|
165 |
-
#: crayon_settings_wp.class.php:
|
166 |
#@ crayon-syntax-highlighter
|
167 |
msgid "Horizontal Alignment"
|
168 |
msgstr "La alineación horizontal"
|
169 |
|
170 |
-
#: crayon_settings_wp.class.php:
|
171 |
#@ crayon-syntax-highlighter
|
172 |
msgid "Allow floating elements to surround Crayon"
|
173 |
msgstr "Permitir que los elementos flotantes que rodean Crayon"
|
174 |
|
175 |
-
#: crayon_settings_wp.class.php:
|
176 |
#@ crayon-syntax-highlighter
|
177 |
msgid "Display the Toolbar"
|
178 |
msgstr "Mostrar la barra de herramientas"
|
179 |
|
180 |
-
#: crayon_settings_wp.class.php:
|
181 |
#@ crayon-syntax-highlighter
|
182 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
183 |
msgstr "Superposición de la barra de herramientas de código en lugar de empujar hacia abajo cuando sea posible"
|
184 |
|
185 |
-
#: crayon_settings_wp.class.php:
|
186 |
#@ crayon-syntax-highlighter
|
187 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
188 |
msgstr "Activar o desactivar la barra de herramientas en un solo clic cuando se superpone"
|
189 |
|
190 |
-
#: crayon_settings_wp.class.php:
|
191 |
#@ crayon-syntax-highlighter
|
192 |
msgid "Delay hiding the toolbar on MouseOut"
|
193 |
msgstr "Delay ocultar la barra de herramientas en MouseOut"
|
194 |
|
195 |
-
#: crayon_settings_wp.class.php:
|
196 |
#@ crayon-syntax-highlighter
|
197 |
msgid "Display the title when provided"
|
198 |
msgstr "Mostrar el título cuando se proporcionan"
|
199 |
|
200 |
-
#: crayon_settings_wp.class.php:
|
201 |
#@ crayon-syntax-highlighter
|
202 |
msgid "Display the language"
|
203 |
msgstr "Mostrar el lenguaje"
|
204 |
|
205 |
-
#: crayon_settings_wp.class.php:
|
206 |
#@ crayon-syntax-highlighter
|
207 |
msgid "Display striped code lines"
|
208 |
msgstr "Mostrar las líneas de código de rayas"
|
209 |
|
210 |
-
#: crayon_settings_wp.class.php:
|
211 |
#@ crayon-syntax-highlighter
|
212 |
msgid "Enable line marking for important lines"
|
213 |
msgstr "Activar la línea de marca para las líneas importantes"
|
214 |
|
215 |
-
#: crayon_settings_wp.class.php:
|
216 |
#@ crayon-syntax-highlighter
|
217 |
msgid "Display line numbers by default"
|
218 |
msgstr "Mostrar números de línea por defecto"
|
219 |
|
220 |
-
#: crayon_settings_wp.class.php:
|
221 |
#@ crayon-syntax-highlighter
|
222 |
msgid "Enable line number toggling"
|
223 |
msgstr "Permiten alternar la línea número"
|
224 |
|
225 |
-
#: crayon_settings_wp.class.php:
|
226 |
#@ crayon-syntax-highlighter
|
227 |
msgid "Start line numbers from"
|
228 |
msgstr "Inicio de los números de línea"
|
229 |
|
230 |
-
#: crayon_settings_wp.class.php:
|
231 |
#@ crayon-syntax-highlighter
|
232 |
msgid "When no language is provided, use the fallback"
|
233 |
msgstr "Cuando no se proporciona el lenguaje, el uso de la reserva"
|
234 |
|
235 |
-
#: crayon_settings_wp.class.php:
|
236 |
#@ crayon-syntax-highlighter
|
237 |
msgid "Parsing was successful"
|
238 |
msgstr "El análisis se ha realizado correctamente"
|
239 |
|
240 |
-
#: crayon_settings_wp.class.php:
|
241 |
#@ crayon-syntax-highlighter
|
242 |
msgid "Parsing was unsuccessful"
|
243 |
msgstr "El análisis no tuvo éxito"
|
244 |
|
245 |
-
#: crayon_settings_wp.class.php:
|
246 |
#, php-format
|
247 |
#@ crayon-syntax-highlighter
|
248 |
msgid "The selected language with id %s could not be loaded"
|
249 |
msgstr "El idioma seleccionado con el id %s no se pudo cargar"
|
250 |
|
251 |
-
#: crayon_settings_wp.class.php:
|
252 |
#@ crayon-syntax-highlighter
|
253 |
msgid "Show Languages"
|
254 |
msgstr "Mostrar Idiomas"
|
255 |
|
256 |
-
#: crayon_settings_wp.class.php:
|
257 |
#@ crayon-syntax-highlighter
|
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:552
|
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: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:
|
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 |
-
#:
|
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"
|
423 |
|
424 |
-
#: crayon_settings_wp.class.php:
|
425 |
#@ crayon-syntax-highlighter
|
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é?"
|
438 |
|
439 |
-
#: crayon_settings_wp.class.php:
|
440 |
#, php-format
|
441 |
#@ crayon-syntax-highlighter
|
442 |
msgid "%d language has been detected."
|
@@ -444,76 +433,77 @@ 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_settings_wp.class.php:
|
481 |
-
#: crayon_settings_wp.class.php:
|
|
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Learn More"
|
484 |
msgstr "Más información"
|
485 |
|
486 |
-
#: crayon_settings_wp.class.php:
|
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:
|
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:
|
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:
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable [plain][/plain] tag."
|
504 |
msgstr "Activar etiqueta [plain][/plain]."
|
505 |
|
506 |
-
#: crayon_settings.class.php:
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Disable Mouse Events"
|
509 |
msgstr "Desactivar Los Eventos De Ratón"
|
510 |
|
511 |
-
#: crayon_settings_wp.class.php:
|
512 |
#@ crayon-syntax-highlighter
|
513 |
msgid "Enable plain code toggling"
|
514 |
msgstr "Permiten alternar código normal"
|
515 |
|
516 |
-
#: crayon_settings_wp.class.php:
|
517 |
#@ crayon-syntax-highlighter
|
518 |
msgid "Show the plain code by default"
|
519 |
msgstr "Mostrar el código sin formato por defecto"
|
@@ -548,99 +538,131 @@ msgstr ""
|
|
548 |
msgid "http://ak.net84.net/"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#:
|
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:
|
562 |
#@ crayon-syntax-highlighter
|
563 |
msgid "General"
|
564 |
msgstr "General"
|
565 |
|
566 |
-
#: crayon_settings_wp.class.php:
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "Theme"
|
569 |
msgstr "Tema"
|
570 |
|
571 |
-
#: crayon_settings_wp.class.php:
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "Font"
|
574 |
msgstr "Son"
|
575 |
|
576 |
-
#: crayon_settings_wp.class.php:
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "Metrics"
|
579 |
msgstr "Métrica"
|
580 |
|
581 |
-
#: crayon_settings_wp.class.php:
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Toolbar"
|
584 |
msgstr "Barra de herramientas"
|
585 |
|
586 |
-
#: crayon_settings_wp.class.php:
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Lines"
|
589 |
msgstr "Líneas"
|
590 |
|
591 |
-
#: crayon_settings_wp.class.php:
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Code"
|
594 |
msgstr "Código"
|
595 |
|
596 |
-
#: crayon_settings_wp.class.php:
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Languages"
|
599 |
msgstr "Idiomas"
|
600 |
|
601 |
-
#: crayon_settings_wp.class.php:
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Files"
|
604 |
msgstr "Archivos"
|
605 |
|
606 |
-
#: crayon_settings_wp.class.php:
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Misc"
|
609 |
msgstr "Misc"
|
610 |
|
611 |
-
#: crayon_settings_wp.class.php:
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "Debug"
|
614 |
msgstr "Depurar"
|
615 |
|
616 |
-
#: crayon_settings_wp.class.php:
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Errors"
|
619 |
msgstr "Errores"
|
620 |
|
621 |
-
#: crayon_settings_wp.class.php:
|
622 |
#@ crayon-syntax-highlighter
|
623 |
msgid "Log"
|
624 |
msgstr "Log"
|
625 |
|
626 |
-
#: crayon_settings_wp.class.php:
|
627 |
#@ crayon-syntax-highlighter
|
628 |
msgid "About"
|
629 |
msgstr "Sobre"
|
630 |
|
631 |
-
#: crayon_settings_wp.class.php:
|
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:
|
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.
|
645 |
msgstr ""
|
646 |
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:130
|
23 |
+
#: crayon_settings.class.php:134
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:130
|
29 |
+
#: crayon_settings.class.php:134
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:130
|
35 |
+
#: crayon_settings.class.php:134
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Estático"
|
39 |
|
40 |
+
#: crayon_settings.class.php:132
|
41 |
+
#: crayon_settings.class.php:136
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Píxeles"
|
45 |
|
46 |
+
#: crayon_settings.class.php:132
|
47 |
+
#: crayon_settings.class.php:136
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Por ciento"
|
51 |
|
52 |
+
#: crayon_settings.class.php:145
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Ninguno"
|
56 |
|
57 |
+
#: crayon_settings.class.php:145
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Izquierda"
|
61 |
|
62 |
+
#: crayon_settings.class.php:145
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centro"
|
66 |
|
67 |
+
#: crayon_settings.class.php:145
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Derecho"
|
71 |
|
72 |
+
#: crayon_settings.class.php:147
|
73 |
+
#: crayon_settings.class.php:169
|
|
|
74 |
#@ crayon-syntax-highlighter
|
75 |
msgid "On MouseOver"
|
76 |
msgstr "Se mueve el ratón"
|
77 |
|
78 |
+
#: crayon_settings.class.php:147
|
79 |
+
#: crayon_settings.class.php:153
|
|
|
80 |
#@ crayon-syntax-highlighter
|
81 |
msgid "Always"
|
82 |
msgstr "Siempre"
|
83 |
|
84 |
+
#: crayon_settings.class.php:147
|
85 |
+
#: crayon_settings.class.php:153
|
86 |
#@ crayon-syntax-highlighter
|
87 |
msgid "Never"
|
88 |
msgstr "Nunca"
|
89 |
|
90 |
+
#: crayon_settings.class.php:153
|
91 |
#@ crayon-syntax-highlighter
|
92 |
msgid "When Found"
|
93 |
msgstr "Cuando se encuentra"
|
94 |
|
95 |
+
#: crayon_settings.class.php:169
|
96 |
#@ crayon-syntax-highlighter
|
97 |
msgid "On Double Click"
|
98 |
msgstr "Haga doble click en"
|
99 |
|
100 |
+
#: crayon_settings.class.php:169
|
101 |
#@ crayon-syntax-highlighter
|
102 |
msgid "On Single Click"
|
103 |
msgstr "En solo clic"
|
104 |
|
105 |
+
#: crayon_settings.class.php:177
|
106 |
#@ crayon-syntax-highlighter
|
107 |
msgid "An error has occurred. Please try again later."
|
108 |
msgstr "Se produjo un error. Por favor, inténtelo de nuevo más tarde."
|
109 |
|
110 |
#: crayon_settings_wp.class.php:39
|
111 |
+
#: crayon_settings_wp.class.php:82
|
112 |
+
#: crayon_settings_wp.class.php:710
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Settings"
|
115 |
msgstr "Configuración"
|
116 |
|
117 |
+
#: crayon_settings_wp.class.php:73
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "You do not have sufficient permissions to access this page."
|
120 |
msgstr "Usted no tiene permisos suficientes para acceder a esta página."
|
121 |
|
122 |
+
#: crayon_settings_wp.class.php:94
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "Save Changes"
|
125 |
msgstr "Guardar cambios"
|
126 |
|
127 |
+
#: crayon_settings_wp.class.php:100
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "Reset Settings"
|
130 |
msgstr "Restablecer configuración"
|
131 |
|
132 |
+
#: crayon_settings_wp.class.php:437
|
133 |
#@ crayon-syntax-highlighter
|
134 |
msgid "Height"
|
135 |
msgstr "Altura"
|
136 |
|
137 |
+
#: crayon_settings_wp.class.php:443
|
138 |
#@ crayon-syntax-highlighter
|
139 |
msgid "Width"
|
140 |
msgstr "Ancho"
|
141 |
|
142 |
+
#: crayon_settings_wp.class.php:449
|
143 |
#@ crayon-syntax-highlighter
|
144 |
msgid "Top Margin"
|
145 |
msgstr "Margen superior"
|
146 |
|
147 |
+
#: crayon_settings_wp.class.php:450
|
148 |
#@ crayon-syntax-highlighter
|
149 |
msgid "Bottom Margin"
|
150 |
msgstr "Margen inferior"
|
151 |
|
152 |
+
#: crayon_settings_wp.class.php:451
|
153 |
+
#: crayon_settings_wp.class.php:456
|
154 |
#@ crayon-syntax-highlighter
|
155 |
msgid "Left Margin"
|
156 |
msgstr "Margen Izquierda"
|
157 |
|
158 |
+
#: crayon_settings_wp.class.php:452
|
159 |
+
#: crayon_settings_wp.class.php:456
|
160 |
#@ crayon-syntax-highlighter
|
161 |
msgid "Right Margin"
|
162 |
msgstr "Margen derecho"
|
163 |
|
164 |
+
#: crayon_settings_wp.class.php:462
|
165 |
#@ crayon-syntax-highlighter
|
166 |
msgid "Horizontal Alignment"
|
167 |
msgstr "La alineación horizontal"
|
168 |
|
169 |
+
#: crayon_settings_wp.class.php:465
|
170 |
#@ crayon-syntax-highlighter
|
171 |
msgid "Allow floating elements to surround Crayon"
|
172 |
msgstr "Permitir que los elementos flotantes que rodean Crayon"
|
173 |
|
174 |
+
#: crayon_settings_wp.class.php:470
|
175 |
#@ crayon-syntax-highlighter
|
176 |
msgid "Display the Toolbar"
|
177 |
msgstr "Mostrar la barra de herramientas"
|
178 |
|
179 |
+
#: crayon_settings_wp.class.php:473
|
180 |
#@ crayon-syntax-highlighter
|
181 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
182 |
msgstr "Superposición de la barra de herramientas de código en lugar de empujar hacia abajo cuando sea posible"
|
183 |
|
184 |
+
#: crayon_settings_wp.class.php:474
|
185 |
#@ crayon-syntax-highlighter
|
186 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
187 |
msgstr "Activar o desactivar la barra de herramientas en un solo clic cuando se superpone"
|
188 |
|
189 |
+
#: crayon_settings_wp.class.php:475
|
190 |
#@ crayon-syntax-highlighter
|
191 |
msgid "Delay hiding the toolbar on MouseOut"
|
192 |
msgstr "Delay ocultar la barra de herramientas en MouseOut"
|
193 |
|
194 |
+
#: crayon_settings_wp.class.php:477
|
195 |
#@ crayon-syntax-highlighter
|
196 |
msgid "Display the title when provided"
|
197 |
msgstr "Mostrar el título cuando se proporcionan"
|
198 |
|
199 |
+
#: crayon_settings_wp.class.php:478
|
200 |
#@ crayon-syntax-highlighter
|
201 |
msgid "Display the language"
|
202 |
msgstr "Mostrar el lenguaje"
|
203 |
|
204 |
+
#: crayon_settings_wp.class.php:483
|
205 |
#@ crayon-syntax-highlighter
|
206 |
msgid "Display striped code lines"
|
207 |
msgstr "Mostrar las líneas de código de rayas"
|
208 |
|
209 |
+
#: crayon_settings_wp.class.php:484
|
210 |
#@ crayon-syntax-highlighter
|
211 |
msgid "Enable line marking for important lines"
|
212 |
msgstr "Activar la línea de marca para las líneas importantes"
|
213 |
|
214 |
+
#: crayon_settings_wp.class.php:485
|
215 |
#@ crayon-syntax-highlighter
|
216 |
msgid "Display line numbers by default"
|
217 |
msgstr "Mostrar números de línea por defecto"
|
218 |
|
219 |
+
#: crayon_settings_wp.class.php:486
|
220 |
#@ crayon-syntax-highlighter
|
221 |
msgid "Enable line number toggling"
|
222 |
msgstr "Permiten alternar la línea número"
|
223 |
|
224 |
+
#: crayon_settings_wp.class.php:487
|
225 |
#@ crayon-syntax-highlighter
|
226 |
msgid "Start line numbers from"
|
227 |
msgstr "Inicio de los números de línea"
|
228 |
|
229 |
+
#: crayon_settings_wp.class.php:497
|
230 |
#@ crayon-syntax-highlighter
|
231 |
msgid "When no language is provided, use the fallback"
|
232 |
msgstr "Cuando no se proporciona el lenguaje, el uso de la reserva"
|
233 |
|
234 |
+
#: crayon_settings_wp.class.php:505
|
235 |
#@ crayon-syntax-highlighter
|
236 |
msgid "Parsing was successful"
|
237 |
msgstr "El análisis se ha realizado correctamente"
|
238 |
|
239 |
+
#: crayon_settings_wp.class.php:505
|
240 |
#@ crayon-syntax-highlighter
|
241 |
msgid "Parsing was unsuccessful"
|
242 |
msgstr "El análisis no tuvo éxito"
|
243 |
|
244 |
+
#: crayon_settings_wp.class.php:511
|
245 |
#, php-format
|
246 |
#@ crayon-syntax-highlighter
|
247 |
msgid "The selected language with id %s could not be loaded"
|
248 |
msgstr "El idioma seleccionado con el id %s no se pudo cargar"
|
249 |
|
250 |
+
#: crayon_settings_wp.class.php:515
|
251 |
#@ crayon-syntax-highlighter
|
252 |
msgid "Show Languages"
|
253 |
msgstr "Mostrar Idiomas"
|
254 |
|
255 |
+
#: crayon_settings_wp.class.php:552
|
256 |
#@ crayon-syntax-highlighter
|
257 |
msgid "Enable Live Preview"
|
258 |
msgstr "Activar vista previa dinámica"
|
259 |
|
260 |
+
#: crayon_settings_wp.class.php:557
|
261 |
#, php-format
|
262 |
#@ crayon-syntax-highlighter
|
263 |
msgid "The selected theme with id %s could not be loaded"
|
264 |
msgstr "El tema seleccionado con el id %s no se pudo cargar"
|
265 |
|
266 |
+
#: crayon_settings_wp.class.php:575
|
|
|
|
|
|
|
|
|
|
|
267 |
#@ crayon-syntax-highlighter
|
268 |
msgid "Custom Font Size"
|
269 |
msgstr "Tamaño de fuente personalizado"
|
270 |
|
271 |
+
#: crayon_settings_wp.class.php:580
|
272 |
#, php-format
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "The selected font with id %s could not be loaded"
|
275 |
msgstr "La fuente seleccionada con id %s no se pudo cargar"
|
276 |
|
277 |
+
#: crayon_settings_wp.class.php:587
|
278 |
#@ crayon-syntax-highlighter
|
279 |
msgid "Enable plain code view and display"
|
280 |
msgstr "Permiten ver el código normal y la pantalla"
|
281 |
|
282 |
+
#: crayon_settings_wp.class.php:592
|
283 |
#@ crayon-syntax-highlighter
|
284 |
msgid "Enable code copy/paste"
|
285 |
msgstr "Permiten copiar el código / pegar"
|
286 |
|
287 |
+
#: crayon_settings_wp.class.php:594
|
288 |
#@ crayon-syntax-highlighter
|
289 |
msgid "Enable opening code in a window"
|
290 |
msgstr "Permitir que el código de apertura de una ventana"
|
291 |
|
292 |
+
#: crayon_settings_wp.class.php:596
|
|
|
|
|
|
|
|
|
|
|
293 |
#@ crayon-syntax-highlighter
|
294 |
msgid "Tab size in spaces"
|
295 |
msgstr "Tab tamaño en espacios"
|
296 |
|
297 |
+
#: crayon_settings_wp.class.php:598
|
298 |
#@ crayon-syntax-highlighter
|
299 |
msgid "Remove whitespace surrounding the shortcode content"
|
300 |
msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
|
301 |
|
302 |
+
#: crayon_settings_wp.class.php:608
|
303 |
#@ crayon-syntax-highlighter
|
304 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
305 |
msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
|
306 |
|
307 |
+
#: crayon_settings_wp.class.php:615
|
308 |
#@ crayon-syntax-highlighter
|
309 |
msgid "Clear the cache used to store remote code requests"
|
310 |
msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
|
311 |
|
312 |
+
#: crayon_settings_wp.class.php:617
|
313 |
#@ crayon-syntax-highlighter
|
314 |
msgid "Clear Now"
|
315 |
msgstr "Limpiar ahora"
|
316 |
|
317 |
+
#: crayon_settings_wp.class.php:621
|
318 |
#@ crayon-syntax-highlighter
|
319 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
320 |
msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
|
321 |
|
322 |
+
#: crayon_settings_wp.class.php:622
|
323 |
#@ crayon-syntax-highlighter
|
324 |
msgid "Disable animations"
|
325 |
msgstr "Desactivar las animaciones"
|
326 |
|
327 |
+
#: crayon_settings_wp.class.php:623
|
328 |
#@ crayon-syntax-highlighter
|
329 |
msgid "Disable runtime stats"
|
330 |
msgstr "Desactivar tiempo de ejecución de las estadísticas"
|
331 |
|
332 |
+
#: crayon_settings_wp.class.php:630
|
333 |
#@ crayon-syntax-highlighter
|
334 |
msgid "Log errors for individual Crayons"
|
335 |
msgstr "Errores de registro para cada Crayon"
|
336 |
|
337 |
+
#: crayon_settings_wp.class.php:631
|
338 |
#@ crayon-syntax-highlighter
|
339 |
msgid "Log system-wide errors"
|
340 |
msgstr "Registro de todo el sistema de los errores"
|
341 |
|
342 |
+
#: crayon_settings_wp.class.php:632
|
343 |
#@ crayon-syntax-highlighter
|
344 |
msgid "Display custom message for errors"
|
345 |
msgstr "Mostrar mensajes personalizados para los errores"
|
346 |
|
347 |
+
#: crayon_settings_wp.class.php:644
|
348 |
#@ crayon-syntax-highlighter
|
349 |
msgid "Show Log"
|
350 |
msgstr "Mostrar Registro"
|
351 |
|
352 |
+
#: crayon_settings_wp.class.php:646
|
353 |
#@ crayon-syntax-highlighter
|
354 |
msgid "Clear Log"
|
355 |
msgstr "Borrar Registro"
|
356 |
|
357 |
+
#: crayon_settings_wp.class.php:647
|
358 |
#@ crayon-syntax-highlighter
|
359 |
msgid "Email Admin"
|
360 |
msgstr "Admin Email"
|
361 |
|
362 |
+
#: crayon_settings_wp.class.php:649
|
363 |
#@ crayon-syntax-highlighter
|
364 |
msgid "Email Developer"
|
365 |
msgstr "Correo electrónico del desarrollador"
|
366 |
|
367 |
+
#: crayon_settings_wp.class.php:665
|
368 |
#@ crayon-syntax-highlighter
|
369 |
msgid "Version"
|
370 |
msgstr "Versión"
|
371 |
|
372 |
+
#: crayon_settings_wp.class.php:667
|
373 |
#@ crayon-syntax-highlighter
|
374 |
msgid "Developer"
|
375 |
msgstr "Promotor"
|
376 |
|
377 |
+
#: crayon_settings_wp.class.php:698
|
378 |
#@ crayon-syntax-highlighter
|
379 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
380 |
msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
|
381 |
|
382 |
+
#: crayon_settings_wp.class.php:549
|
383 |
#, php-format
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
386 |
msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
|
387 |
|
388 |
+
#: crayon_settings.class.php:101
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Hourly"
|
391 |
msgstr "Cada hora"
|
392 |
|
393 |
+
#: crayon_settings.class.php:101
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Daily"
|
396 |
msgstr "Diario"
|
397 |
|
398 |
+
#: crayon_settings.class.php:102
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Weekly"
|
401 |
msgstr "Semanal"
|
402 |
|
403 |
+
#: crayon_settings.class.php:102
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Monthly"
|
406 |
msgstr "Mensual"
|
407 |
|
408 |
+
#: crayon_settings.class.php:103
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Immediately"
|
411 |
msgstr "Inmediatamente"
|
412 |
|
413 |
+
#: crayon_settings_wp.class.php:423
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "Crayon Help"
|
416 |
msgstr "Crayon Ayuda"
|
417 |
|
418 |
+
#: crayon_settings_wp.class.php:618
|
419 |
#@ crayon-syntax-highlighter
|
420 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
|
422 |
|
423 |
+
#: crayon_settings_wp.class.php:618
|
424 |
#@ crayon-syntax-highlighter
|
425 |
msgid "Why?"
|
426 |
msgstr "¿Por qué?"
|
427 |
|
428 |
+
#: crayon_settings_wp.class.php:504
|
429 |
#, php-format
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "%d language has been detected."
|
433 |
msgstr[0] "%d lenguaje que se ha detectado."
|
434 |
msgstr[1] "%d idiomas se han detectado."
|
435 |
|
436 |
+
#: crayon_settings_wp.class.php:611
|
437 |
#@ crayon-syntax-highlighter
|
438 |
msgid "Followed by your relative URL."
|
439 |
msgstr "Seguido de su dirección URL relativa\t."
|
440 |
|
441 |
+
#: crayon_settings_wp.class.php:651
|
442 |
#@ crayon-syntax-highlighter
|
443 |
msgid "The log is currently empty."
|
444 |
msgstr "El registro está actualmente vacía."
|
445 |
|
446 |
+
#: crayon_settings_wp.class.php:653
|
447 |
#@ crayon-syntax-highlighter
|
448 |
msgid "The log file exists and is writable."
|
449 |
msgstr "El archivo de registro existe y se puede escribir."
|
450 |
|
451 |
+
#: crayon_settings_wp.class.php:653
|
452 |
#@ crayon-syntax-highlighter
|
453 |
msgid "The log file exists and is not writable."
|
454 |
msgstr "El archivo de registro existe y no es modificable."
|
455 |
|
456 |
+
#: crayon_settings_wp.class.php:655
|
457 |
#@ crayon-syntax-highlighter
|
458 |
msgid "The log file does not exist and is not writable."
|
459 |
msgstr "El archivo de registro no existe y no es modificable."
|
460 |
|
461 |
+
#: crayon_settings_wp.class.php:599
|
462 |
#@ crayon-syntax-highlighter
|
463 |
msgid "Capture <pre> tags as Crayons"
|
464 |
msgstr "Captura de etiquetas <pre> como Crayons"
|
465 |
|
466 |
+
#: crayon_settings_wp.class.php:554
|
467 |
+
#: crayon_settings_wp.class.php:583
|
468 |
+
#: crayon_settings_wp.class.php:600
|
469 |
+
#: crayon_settings_wp.class.php:601
|
470 |
+
#: crayon_settings_wp.class.php:602
|
471 |
+
#: crayon_settings_wp.class.php:619
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "Learn More"
|
474 |
msgstr "Más información"
|
475 |
|
476 |
+
#: crayon_settings_wp.class.php:603
|
477 |
#@ crayon-syntax-highlighter
|
478 |
msgid "Show Mixed Language Icon (+)"
|
479 |
msgstr "Mostrar el icono del lenguaje mixto (+)"
|
480 |
|
481 |
+
#: crayon_settings_wp.class.php:602
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
484 |
msgstr "Permiten destacar mixto del lenguaje con delimitadores y etiquetas."
|
485 |
|
486 |
+
#: crayon_settings_wp.class.php:600
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
489 |
msgstr "Captura Tags Mini como [php][/php] como Crayons."
|
490 |
|
491 |
+
#: crayon_settings_wp.class.php:601
|
492 |
#@ crayon-syntax-highlighter
|
493 |
msgid "Enable [plain][/plain] tag."
|
494 |
msgstr "Activar etiqueta [plain][/plain]."
|
495 |
|
496 |
+
#: crayon_settings.class.php:169
|
497 |
#@ crayon-syntax-highlighter
|
498 |
msgid "Disable Mouse Events"
|
499 |
msgstr "Desactivar Los Eventos De Ratón"
|
500 |
|
501 |
+
#: crayon_settings_wp.class.php:590
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable plain code toggling"
|
504 |
msgstr "Permiten alternar código normal"
|
505 |
|
506 |
+
#: crayon_settings_wp.class.php:591
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Show the plain code by default"
|
509 |
msgstr "Mostrar el código sin formato por defecto"
|
538 |
msgid "http://ak.net84.net/"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: crayon_settings_wp.class.php:714
|
|
|
|
|
|
|
|
|
|
|
542 |
#@ crayon-syntax-highlighter
|
543 |
msgid "Donate"
|
544 |
msgstr "Donar"
|
545 |
|
546 |
+
#: crayon_settings_wp.class.php:219
|
547 |
#@ crayon-syntax-highlighter
|
548 |
msgid "General"
|
549 |
msgstr "General"
|
550 |
|
551 |
+
#: crayon_settings_wp.class.php:220
|
552 |
#@ crayon-syntax-highlighter
|
553 |
msgid "Theme"
|
554 |
msgstr "Tema"
|
555 |
|
556 |
+
#: crayon_settings_wp.class.php:221
|
557 |
#@ crayon-syntax-highlighter
|
558 |
msgid "Font"
|
559 |
msgstr "Son"
|
560 |
|
561 |
+
#: crayon_settings_wp.class.php:222
|
562 |
#@ crayon-syntax-highlighter
|
563 |
msgid "Metrics"
|
564 |
msgstr "Métrica"
|
565 |
|
566 |
+
#: crayon_settings_wp.class.php:223
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "Toolbar"
|
569 |
msgstr "Barra de herramientas"
|
570 |
|
571 |
+
#: crayon_settings_wp.class.php:224
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "Lines"
|
574 |
msgstr "Líneas"
|
575 |
|
576 |
+
#: crayon_settings_wp.class.php:225
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "Code"
|
579 |
msgstr "Código"
|
580 |
|
581 |
+
#: crayon_settings_wp.class.php:226
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Languages"
|
584 |
msgstr "Idiomas"
|
585 |
|
586 |
+
#: crayon_settings_wp.class.php:227
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Files"
|
589 |
msgstr "Archivos"
|
590 |
|
591 |
+
#: crayon_settings_wp.class.php:228
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Misc"
|
594 |
msgstr "Misc"
|
595 |
|
596 |
+
#: crayon_settings_wp.class.php:231
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Debug"
|
599 |
msgstr "Depurar"
|
600 |
|
601 |
+
#: crayon_settings_wp.class.php:232
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Errors"
|
604 |
msgstr "Errores"
|
605 |
|
606 |
+
#: crayon_settings_wp.class.php:233
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Log"
|
609 |
msgstr "Log"
|
610 |
|
611 |
+
#: crayon_settings_wp.class.php:236
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "About"
|
614 |
msgstr "Sobre"
|
615 |
|
616 |
+
#: crayon_settings_wp.class.php:554
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Enqueue themes in the header (more efficient)."
|
619 |
msgstr "Enqueue temas en la cabecera (más eficiente)."
|
620 |
|
621 |
+
#: crayon_settings_wp.class.php:583
|
622 |
#@ crayon-syntax-highlighter
|
623 |
msgid "Enqueue fonts in the header (more efficient)."
|
624 |
msgstr "Enqueue fuentes en la cabecera (más eficiente)."
|
625 |
|
626 |
+
#: crayon_settings_wp.class.php:545
|
627 |
+
#@ crayon-syntax-highlighter
|
628 |
+
msgid "Loading..."
|
629 |
+
msgstr "De carga..."
|
630 |
+
|
631 |
+
#: crayon_settings_wp.class.php:545
|
632 |
+
#: crayon_settings_wp.class.php:712
|
633 |
+
#: util/theme-editor/editor.php:14
|
634 |
+
#@ crayon-syntax-highlighter
|
635 |
+
msgid "Theme Editor"
|
636 |
+
msgstr "Tema Editor"
|
637 |
+
|
638 |
+
#: crayon_settings_wp.class.php:595
|
639 |
+
#@ crayon-syntax-highlighter
|
640 |
+
msgid "Always display scrollbars"
|
641 |
+
msgstr "Siempre mostrar barras de desplazamiento"
|
642 |
+
|
643 |
+
#: crayon_settings_wp.class.php:619
|
644 |
+
#@ crayon-syntax-highlighter
|
645 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
646 |
+
msgstr "Desactivar enqueuing de las plantillas de página que puede contener el Loop."
|
647 |
+
|
648 |
+
#: crayon_settings_wp.class.php:620
|
649 |
+
#@ crayon-syntax-highlighter
|
650 |
+
msgid "Load Crayons only from the main Wordpress query"
|
651 |
+
msgstr "Lápices de colores única carga de la principal consulta de Wordpress"
|
652 |
+
|
653 |
+
#: crayon_settings_wp.class.php:668
|
654 |
+
#@ crayon-syntax-highlighter
|
655 |
+
msgid "Translators"
|
656 |
+
msgstr "Traductores"
|
657 |
+
|
658 |
#. translators: plugin header field 'Version'
|
659 |
#: crayon_wp.class.php:0
|
660 |
#@ crayon-syntax-highlighter
|
661 |
+
msgid "1.7.25"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: util/theme-editor/editor.php:16
|
665 |
+
#@ crayon-syntax-highlighter
|
666 |
+
msgid "Back To Settings"
|
667 |
+
msgstr "Volver a la configuración"
|
668 |
+
|
trans/crayon-syntax-highlighter-fr_FR.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-fr_FR.po
CHANGED
@@ -19,424 +19,413 @@ 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:164
|
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:159
|
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."
|
111 |
|
112 |
#: crayon_settings_wp.class.php:39
|
113 |
-
#: crayon_settings_wp.class.php:
|
|
|
114 |
#@ crayon-syntax-highlighter
|
115 |
msgid "Settings"
|
116 |
msgstr "Réglages"
|
117 |
|
118 |
-
#: crayon_settings_wp.class.php:
|
119 |
#@ crayon-syntax-highlighter
|
120 |
msgid "You do not have sufficient permissions to access this page."
|
121 |
msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
|
122 |
|
123 |
-
#: crayon_settings_wp.class.php:
|
124 |
#@ crayon-syntax-highlighter
|
125 |
msgid "Save Changes"
|
126 |
msgstr "Enregistrer les modifications"
|
127 |
|
128 |
-
#: crayon_settings_wp.class.php:
|
129 |
#@ crayon-syntax-highlighter
|
130 |
msgid "Reset Settings"
|
131 |
msgstr "Réinitialiser les paramètres"
|
132 |
|
133 |
-
#: crayon_settings_wp.class.php:
|
134 |
#@ crayon-syntax-highlighter
|
135 |
msgid "Height"
|
136 |
msgstr "Hauteur"
|
137 |
|
138 |
-
#: crayon_settings_wp.class.php:
|
139 |
#@ crayon-syntax-highlighter
|
140 |
msgid "Width"
|
141 |
msgstr "Largeur"
|
142 |
|
143 |
-
#: crayon_settings_wp.class.php:
|
144 |
#@ crayon-syntax-highlighter
|
145 |
msgid "Top Margin"
|
146 |
msgstr "Marge supérieure"
|
147 |
|
148 |
-
#: crayon_settings_wp.class.php:
|
149 |
#@ crayon-syntax-highlighter
|
150 |
msgid "Bottom Margin"
|
151 |
msgstr "La marge du bas"
|
152 |
|
153 |
-
#: crayon_settings_wp.class.php:
|
154 |
-
#: crayon_settings_wp.class.php:
|
155 |
#@ crayon-syntax-highlighter
|
156 |
msgid "Left Margin"
|
157 |
msgstr "Marge de gauche"
|
158 |
|
159 |
-
#: crayon_settings_wp.class.php:
|
160 |
-
#: crayon_settings_wp.class.php:
|
161 |
#@ crayon-syntax-highlighter
|
162 |
msgid "Right Margin"
|
163 |
msgstr "Marge droite"
|
164 |
|
165 |
-
#: crayon_settings_wp.class.php:
|
166 |
#@ crayon-syntax-highlighter
|
167 |
msgid "Horizontal Alignment"
|
168 |
msgstr "Alignement horizontal"
|
169 |
|
170 |
-
#: crayon_settings_wp.class.php:
|
171 |
#@ crayon-syntax-highlighter
|
172 |
msgid "Allow floating elements to surround Crayon"
|
173 |
msgstr "Autoriser des éléments flottants pour encercler Crayon"
|
174 |
|
175 |
-
#: crayon_settings_wp.class.php:
|
176 |
#@ crayon-syntax-highlighter
|
177 |
msgid "Display the Toolbar"
|
178 |
msgstr "Afficher la barre d'outils"
|
179 |
|
180 |
-
#: crayon_settings_wp.class.php:
|
181 |
#@ crayon-syntax-highlighter
|
182 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
183 |
msgstr "Superposition de la barre d'outils sur le code plutôt que de le pousser vers le bas si possible"
|
184 |
|
185 |
-
#: crayon_settings_wp.class.php:
|
186 |
#@ crayon-syntax-highlighter
|
187 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
188 |
msgstr "Basculer la barre d'outils sur simple clic quand il est superposé"
|
189 |
|
190 |
-
#: crayon_settings_wp.class.php:
|
191 |
#@ crayon-syntax-highlighter
|
192 |
msgid "Delay hiding the toolbar on MouseOut"
|
193 |
msgstr "Retard cacher la barre d'outils sur le MouseOut"
|
194 |
|
195 |
-
#: crayon_settings_wp.class.php:
|
196 |
#@ crayon-syntax-highlighter
|
197 |
msgid "Display the title when provided"
|
198 |
msgstr "Afficher le titre lorsqu'il est fourni"
|
199 |
|
200 |
-
#: crayon_settings_wp.class.php:
|
201 |
#@ crayon-syntax-highlighter
|
202 |
msgid "Display the language"
|
203 |
msgstr "Affichage de la langue"
|
204 |
|
205 |
-
#: crayon_settings_wp.class.php:
|
206 |
#@ crayon-syntax-highlighter
|
207 |
msgid "Display striped code lines"
|
208 |
msgstr "Affichage des lignes de code rayée"
|
209 |
|
210 |
-
#: crayon_settings_wp.class.php:
|
211 |
#@ crayon-syntax-highlighter
|
212 |
msgid "Enable line marking for important lines"
|
213 |
msgstr "Activer la ligne de marquage des lignes importantes"
|
214 |
|
215 |
-
#: crayon_settings_wp.class.php:
|
216 |
#@ crayon-syntax-highlighter
|
217 |
msgid "Display line numbers by default"
|
218 |
msgstr "Afficher les numéros de ligne par défaut"
|
219 |
|
220 |
-
#: crayon_settings_wp.class.php:
|
221 |
#@ crayon-syntax-highlighter
|
222 |
msgid "Enable line number toggling"
|
223 |
msgstr "Activer basculer le numéro de ligne"
|
224 |
|
225 |
-
#: crayon_settings_wp.class.php:
|
226 |
#@ crayon-syntax-highlighter
|
227 |
msgid "Start line numbers from"
|
228 |
msgstr "Démarrer à partir des numéros de ligne"
|
229 |
|
230 |
-
#: crayon_settings_wp.class.php:
|
231 |
#@ crayon-syntax-highlighter
|
232 |
msgid "When no language is provided, use the fallback"
|
233 |
msgstr "Lorsque aucune langue n'est fourni, utilisez le repli"
|
234 |
|
235 |
-
#: crayon_settings_wp.class.php:
|
236 |
#@ crayon-syntax-highlighter
|
237 |
msgid "Parsing was successful"
|
238 |
msgstr "Parsing a réussi"
|
239 |
|
240 |
-
#: crayon_settings_wp.class.php:
|
241 |
#@ crayon-syntax-highlighter
|
242 |
msgid "Parsing was unsuccessful"
|
243 |
msgstr "Parsing a échoué"
|
244 |
|
245 |
-
#: crayon_settings_wp.class.php:
|
246 |
#, php-format
|
247 |
#@ crayon-syntax-highlighter
|
248 |
msgid "The selected language with id %s could not be loaded"
|
249 |
msgstr "La langue sélectionnée avec id %s ne pouvait pas être chargé"
|
250 |
|
251 |
-
#: crayon_settings_wp.class.php:
|
252 |
#@ crayon-syntax-highlighter
|
253 |
msgid "Show Languages"
|
254 |
msgstr "Voir langues"
|
255 |
|
256 |
-
#: crayon_settings_wp.class.php:
|
257 |
#@ crayon-syntax-highlighter
|
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:552
|
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: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:
|
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 |
-
#:
|
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"
|
423 |
|
424 |
-
#: crayon_settings_wp.class.php:
|
425 |
#@ crayon-syntax-highlighter
|
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?"
|
438 |
|
439 |
-
#: crayon_settings_wp.class.php:
|
440 |
#, php-format
|
441 |
#@ crayon-syntax-highlighter
|
442 |
msgid "%d language has been detected."
|
@@ -444,76 +433,77 @@ 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_settings_wp.class.php:
|
481 |
-
#: crayon_settings_wp.class.php:
|
|
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Learn More"
|
484 |
msgstr "En savoir plus"
|
485 |
|
486 |
-
#: crayon_settings_wp.class.php:
|
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:
|
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:
|
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:
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable [plain][/plain] tag."
|
504 |
msgstr "Activer tag [plain][/plain]."
|
505 |
|
506 |
-
#: crayon_settings.class.php:
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Disable Mouse Events"
|
509 |
msgstr "Désactiver les événements souris"
|
510 |
|
511 |
-
#: crayon_settings_wp.class.php:
|
512 |
#@ crayon-syntax-highlighter
|
513 |
msgid "Enable plain code toggling"
|
514 |
msgstr "Activer le code basculer plaine"
|
515 |
|
516 |
-
#: crayon_settings_wp.class.php:
|
517 |
#@ crayon-syntax-highlighter
|
518 |
msgid "Show the plain code by default"
|
519 |
msgstr "Montrer le code brut par défaut"
|
@@ -548,99 +538,131 @@ msgstr ""
|
|
548 |
msgid "http://ak.net84.net/"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#:
|
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:
|
562 |
#@ crayon-syntax-highlighter
|
563 |
msgid "General"
|
564 |
msgstr "Général"
|
565 |
|
566 |
-
#: crayon_settings_wp.class.php:
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "Theme"
|
569 |
msgstr "Thème"
|
570 |
|
571 |
-
#: crayon_settings_wp.class.php:
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "Font"
|
574 |
msgstr "Son"
|
575 |
|
576 |
-
#: crayon_settings_wp.class.php:
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "Metrics"
|
579 |
msgstr "Mesures"
|
580 |
|
581 |
-
#: crayon_settings_wp.class.php:
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Toolbar"
|
584 |
msgstr "Barre d'outils"
|
585 |
|
586 |
-
#: crayon_settings_wp.class.php:
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Lines"
|
589 |
msgstr "Lignes"
|
590 |
|
591 |
-
#: crayon_settings_wp.class.php:
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Code"
|
594 |
msgstr "Code"
|
595 |
|
596 |
-
#: crayon_settings_wp.class.php:
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Languages"
|
599 |
msgstr "Langues"
|
600 |
|
601 |
-
#: crayon_settings_wp.class.php:
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Files"
|
604 |
msgstr "Fichiers"
|
605 |
|
606 |
-
#: crayon_settings_wp.class.php:
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Misc"
|
609 |
msgstr "Divers"
|
610 |
|
611 |
-
#: crayon_settings_wp.class.php:
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "Debug"
|
614 |
msgstr "Débogage"
|
615 |
|
616 |
-
#: crayon_settings_wp.class.php:
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Errors"
|
619 |
msgstr "Erreurs"
|
620 |
|
621 |
-
#: crayon_settings_wp.class.php:
|
622 |
#@ crayon-syntax-highlighter
|
623 |
msgid "Log"
|
624 |
msgstr "Connexion"
|
625 |
|
626 |
-
#: crayon_settings_wp.class.php:
|
627 |
#@ crayon-syntax-highlighter
|
628 |
msgid "About"
|
629 |
msgstr "À propos"
|
630 |
|
631 |
-
#: crayon_settings_wp.class.php:
|
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:
|
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.
|
645 |
msgstr ""
|
646 |
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:130
|
23 |
+
#: crayon_settings.class.php:134
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:130
|
29 |
+
#: crayon_settings.class.php:134
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:130
|
35 |
+
#: crayon_settings.class.php:134
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statique"
|
39 |
|
40 |
+
#: crayon_settings.class.php:132
|
41 |
+
#: crayon_settings.class.php:136
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
+
#: crayon_settings.class.php:132
|
47 |
+
#: crayon_settings.class.php:136
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Pour cent"
|
51 |
|
52 |
+
#: crayon_settings.class.php:145
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Aucun"
|
56 |
|
57 |
+
#: crayon_settings.class.php:145
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Gauche"
|
61 |
|
62 |
+
#: crayon_settings.class.php:145
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centre"
|
66 |
|
67 |
+
#: crayon_settings.class.php:145
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Droite"
|
71 |
|
72 |
+
#: crayon_settings.class.php:147
|
73 |
+
#: crayon_settings.class.php:169
|
|
|
74 |
#@ crayon-syntax-highlighter
|
75 |
msgid "On MouseOver"
|
76 |
msgstr "Sur MouseOver"
|
77 |
|
78 |
+
#: crayon_settings.class.php:147
|
79 |
+
#: crayon_settings.class.php:153
|
|
|
80 |
#@ crayon-syntax-highlighter
|
81 |
msgid "Always"
|
82 |
msgstr "Toujours"
|
83 |
|
84 |
+
#: crayon_settings.class.php:147
|
85 |
+
#: crayon_settings.class.php:153
|
86 |
#@ crayon-syntax-highlighter
|
87 |
msgid "Never"
|
88 |
msgstr "Jamais"
|
89 |
|
90 |
+
#: crayon_settings.class.php:153
|
91 |
#@ crayon-syntax-highlighter
|
92 |
msgid "When Found"
|
93 |
msgstr "Une fois trouvé"
|
94 |
|
95 |
+
#: crayon_settings.class.php:169
|
96 |
#@ crayon-syntax-highlighter
|
97 |
msgid "On Double Click"
|
98 |
msgstr "Le double-clic"
|
99 |
|
100 |
+
#: crayon_settings.class.php:169
|
101 |
#@ crayon-syntax-highlighter
|
102 |
msgid "On Single Click"
|
103 |
msgstr "Le Single Cliquez"
|
104 |
|
105 |
+
#: crayon_settings.class.php:177
|
106 |
#@ crayon-syntax-highlighter
|
107 |
msgid "An error has occurred. Please try again later."
|
108 |
msgstr "Une erreur s'est produite. S'il vous plaît essayez de nouveau plus tard."
|
109 |
|
110 |
#: crayon_settings_wp.class.php:39
|
111 |
+
#: crayon_settings_wp.class.php:82
|
112 |
+
#: crayon_settings_wp.class.php:710
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Settings"
|
115 |
msgstr "Réglages"
|
116 |
|
117 |
+
#: crayon_settings_wp.class.php:73
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "You do not have sufficient permissions to access this page."
|
120 |
msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
|
121 |
|
122 |
+
#: crayon_settings_wp.class.php:94
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "Save Changes"
|
125 |
msgstr "Enregistrer les modifications"
|
126 |
|
127 |
+
#: crayon_settings_wp.class.php:100
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "Reset Settings"
|
130 |
msgstr "Réinitialiser les paramètres"
|
131 |
|
132 |
+
#: crayon_settings_wp.class.php:437
|
133 |
#@ crayon-syntax-highlighter
|
134 |
msgid "Height"
|
135 |
msgstr "Hauteur"
|
136 |
|
137 |
+
#: crayon_settings_wp.class.php:443
|
138 |
#@ crayon-syntax-highlighter
|
139 |
msgid "Width"
|
140 |
msgstr "Largeur"
|
141 |
|
142 |
+
#: crayon_settings_wp.class.php:449
|
143 |
#@ crayon-syntax-highlighter
|
144 |
msgid "Top Margin"
|
145 |
msgstr "Marge supérieure"
|
146 |
|
147 |
+
#: crayon_settings_wp.class.php:450
|
148 |
#@ crayon-syntax-highlighter
|
149 |
msgid "Bottom Margin"
|
150 |
msgstr "La marge du bas"
|
151 |
|
152 |
+
#: crayon_settings_wp.class.php:451
|
153 |
+
#: crayon_settings_wp.class.php:456
|
154 |
#@ crayon-syntax-highlighter
|
155 |
msgid "Left Margin"
|
156 |
msgstr "Marge de gauche"
|
157 |
|
158 |
+
#: crayon_settings_wp.class.php:452
|
159 |
+
#: crayon_settings_wp.class.php:456
|
160 |
#@ crayon-syntax-highlighter
|
161 |
msgid "Right Margin"
|
162 |
msgstr "Marge droite"
|
163 |
|
164 |
+
#: crayon_settings_wp.class.php:462
|
165 |
#@ crayon-syntax-highlighter
|
166 |
msgid "Horizontal Alignment"
|
167 |
msgstr "Alignement horizontal"
|
168 |
|
169 |
+
#: crayon_settings_wp.class.php:465
|
170 |
#@ crayon-syntax-highlighter
|
171 |
msgid "Allow floating elements to surround Crayon"
|
172 |
msgstr "Autoriser des éléments flottants pour encercler Crayon"
|
173 |
|
174 |
+
#: crayon_settings_wp.class.php:470
|
175 |
#@ crayon-syntax-highlighter
|
176 |
msgid "Display the Toolbar"
|
177 |
msgstr "Afficher la barre d'outils"
|
178 |
|
179 |
+
#: crayon_settings_wp.class.php:473
|
180 |
#@ crayon-syntax-highlighter
|
181 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
182 |
msgstr "Superposition de la barre d'outils sur le code plutôt que de le pousser vers le bas si possible"
|
183 |
|
184 |
+
#: crayon_settings_wp.class.php:474
|
185 |
#@ crayon-syntax-highlighter
|
186 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
187 |
msgstr "Basculer la barre d'outils sur simple clic quand il est superposé"
|
188 |
|
189 |
+
#: crayon_settings_wp.class.php:475
|
190 |
#@ crayon-syntax-highlighter
|
191 |
msgid "Delay hiding the toolbar on MouseOut"
|
192 |
msgstr "Retard cacher la barre d'outils sur le MouseOut"
|
193 |
|
194 |
+
#: crayon_settings_wp.class.php:477
|
195 |
#@ crayon-syntax-highlighter
|
196 |
msgid "Display the title when provided"
|
197 |
msgstr "Afficher le titre lorsqu'il est fourni"
|
198 |
|
199 |
+
#: crayon_settings_wp.class.php:478
|
200 |
#@ crayon-syntax-highlighter
|
201 |
msgid "Display the language"
|
202 |
msgstr "Affichage de la langue"
|
203 |
|
204 |
+
#: crayon_settings_wp.class.php:483
|
205 |
#@ crayon-syntax-highlighter
|
206 |
msgid "Display striped code lines"
|
207 |
msgstr "Affichage des lignes de code rayée"
|
208 |
|
209 |
+
#: crayon_settings_wp.class.php:484
|
210 |
#@ crayon-syntax-highlighter
|
211 |
msgid "Enable line marking for important lines"
|
212 |
msgstr "Activer la ligne de marquage des lignes importantes"
|
213 |
|
214 |
+
#: crayon_settings_wp.class.php:485
|
215 |
#@ crayon-syntax-highlighter
|
216 |
msgid "Display line numbers by default"
|
217 |
msgstr "Afficher les numéros de ligne par défaut"
|
218 |
|
219 |
+
#: crayon_settings_wp.class.php:486
|
220 |
#@ crayon-syntax-highlighter
|
221 |
msgid "Enable line number toggling"
|
222 |
msgstr "Activer basculer le numéro de ligne"
|
223 |
|
224 |
+
#: crayon_settings_wp.class.php:487
|
225 |
#@ crayon-syntax-highlighter
|
226 |
msgid "Start line numbers from"
|
227 |
msgstr "Démarrer à partir des numéros de ligne"
|
228 |
|
229 |
+
#: crayon_settings_wp.class.php:497
|
230 |
#@ crayon-syntax-highlighter
|
231 |
msgid "When no language is provided, use the fallback"
|
232 |
msgstr "Lorsque aucune langue n'est fourni, utilisez le repli"
|
233 |
|
234 |
+
#: crayon_settings_wp.class.php:505
|
235 |
#@ crayon-syntax-highlighter
|
236 |
msgid "Parsing was successful"
|
237 |
msgstr "Parsing a réussi"
|
238 |
|
239 |
+
#: crayon_settings_wp.class.php:505
|
240 |
#@ crayon-syntax-highlighter
|
241 |
msgid "Parsing was unsuccessful"
|
242 |
msgstr "Parsing a échoué"
|
243 |
|
244 |
+
#: crayon_settings_wp.class.php:511
|
245 |
#, php-format
|
246 |
#@ crayon-syntax-highlighter
|
247 |
msgid "The selected language with id %s could not be loaded"
|
248 |
msgstr "La langue sélectionnée avec id %s ne pouvait pas être chargé"
|
249 |
|
250 |
+
#: crayon_settings_wp.class.php:515
|
251 |
#@ crayon-syntax-highlighter
|
252 |
msgid "Show Languages"
|
253 |
msgstr "Voir langues"
|
254 |
|
255 |
+
#: crayon_settings_wp.class.php:552
|
256 |
#@ crayon-syntax-highlighter
|
257 |
msgid "Enable Live Preview"
|
258 |
msgstr "Activer l'aperçu en direct"
|
259 |
|
260 |
+
#: crayon_settings_wp.class.php:557
|
261 |
#, php-format
|
262 |
#@ crayon-syntax-highlighter
|
263 |
msgid "The selected theme with id %s could not be loaded"
|
264 |
msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
|
265 |
|
266 |
+
#: crayon_settings_wp.class.php:575
|
|
|
|
|
|
|
|
|
|
|
267 |
#@ crayon-syntax-highlighter
|
268 |
msgid "Custom Font Size"
|
269 |
msgstr "Taille du texte personnalisé"
|
270 |
|
271 |
+
#: crayon_settings_wp.class.php:580
|
272 |
#, php-format
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "The selected font with id %s could not be loaded"
|
275 |
msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
|
276 |
|
277 |
+
#: crayon_settings_wp.class.php:587
|
278 |
#@ crayon-syntax-highlighter
|
279 |
msgid "Enable plain code view and display"
|
280 |
msgstr "Activer le mode code clair et d'affichage"
|
281 |
|
282 |
+
#: crayon_settings_wp.class.php:592
|
283 |
#@ crayon-syntax-highlighter
|
284 |
msgid "Enable code copy/paste"
|
285 |
msgstr "Activer copiez le code/coller"
|
286 |
|
287 |
+
#: crayon_settings_wp.class.php:594
|
288 |
#@ crayon-syntax-highlighter
|
289 |
msgid "Enable opening code in a window"
|
290 |
msgstr "Activer code d'ouverture dans une fenêtre"
|
291 |
|
292 |
+
#: crayon_settings_wp.class.php:596
|
|
|
|
|
|
|
|
|
|
|
293 |
#@ crayon-syntax-highlighter
|
294 |
msgid "Tab size in spaces"
|
295 |
msgstr "Taille des tabulations dans les espaces"
|
296 |
|
297 |
+
#: crayon_settings_wp.class.php:598
|
298 |
#@ crayon-syntax-highlighter
|
299 |
msgid "Remove whitespace surrounding the shortcode content"
|
300 |
msgstr "Enlevez les espaces entourant le contenu shortcode"
|
301 |
|
302 |
+
#: crayon_settings_wp.class.php:608
|
303 |
#@ crayon-syntax-highlighter
|
304 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
305 |
msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
|
306 |
|
307 |
+
#: crayon_settings_wp.class.php:615
|
308 |
#@ crayon-syntax-highlighter
|
309 |
msgid "Clear the cache used to store remote code requests"
|
310 |
msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
|
311 |
|
312 |
+
#: crayon_settings_wp.class.php:617
|
313 |
#@ crayon-syntax-highlighter
|
314 |
msgid "Clear Now"
|
315 |
msgstr "Effacer maintenant"
|
316 |
|
317 |
+
#: crayon_settings_wp.class.php:621
|
318 |
#@ crayon-syntax-highlighter
|
319 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
320 |
msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
|
321 |
|
322 |
+
#: crayon_settings_wp.class.php:622
|
323 |
#@ crayon-syntax-highlighter
|
324 |
msgid "Disable animations"
|
325 |
msgstr "Désactiver les animations"
|
326 |
|
327 |
+
#: crayon_settings_wp.class.php:623
|
328 |
#@ crayon-syntax-highlighter
|
329 |
msgid "Disable runtime stats"
|
330 |
msgstr "Désactiver l'exécution stats"
|
331 |
|
332 |
+
#: crayon_settings_wp.class.php:630
|
333 |
#@ crayon-syntax-highlighter
|
334 |
msgid "Log errors for individual Crayons"
|
335 |
msgstr "Connexion pour les erreurs individuelles Crayons"
|
336 |
|
337 |
+
#: crayon_settings_wp.class.php:631
|
338 |
#@ crayon-syntax-highlighter
|
339 |
msgid "Log system-wide errors"
|
340 |
msgstr "Connexion échelle du système des erreurs"
|
341 |
|
342 |
+
#: crayon_settings_wp.class.php:632
|
343 |
#@ crayon-syntax-highlighter
|
344 |
msgid "Display custom message for errors"
|
345 |
msgstr "Afficher un message personnalisé pour les erreurs"
|
346 |
|
347 |
+
#: crayon_settings_wp.class.php:644
|
348 |
#@ crayon-syntax-highlighter
|
349 |
msgid "Show Log"
|
350 |
msgstr "Afficher le journal"
|
351 |
|
352 |
+
#: crayon_settings_wp.class.php:646
|
353 |
#@ crayon-syntax-highlighter
|
354 |
msgid "Clear Log"
|
355 |
msgstr "Effacer le journal"
|
356 |
|
357 |
+
#: crayon_settings_wp.class.php:647
|
358 |
#@ crayon-syntax-highlighter
|
359 |
msgid "Email Admin"
|
360 |
msgstr "Admin Email"
|
361 |
|
362 |
+
#: crayon_settings_wp.class.php:649
|
363 |
#@ crayon-syntax-highlighter
|
364 |
msgid "Email Developer"
|
365 |
msgstr "Développeur Email"
|
366 |
|
367 |
+
#: crayon_settings_wp.class.php:665
|
368 |
#@ crayon-syntax-highlighter
|
369 |
msgid "Version"
|
370 |
msgstr "Version"
|
371 |
|
372 |
+
#: crayon_settings_wp.class.php:667
|
373 |
#@ crayon-syntax-highlighter
|
374 |
msgid "Developer"
|
375 |
msgstr "Développeur"
|
376 |
|
377 |
+
#: crayon_settings_wp.class.php:698
|
378 |
#@ crayon-syntax-highlighter
|
379 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
380 |
msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
|
381 |
|
382 |
+
#: crayon_settings_wp.class.php:549
|
383 |
#, php-format
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
386 |
msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
|
387 |
|
388 |
+
#: crayon_settings.class.php:101
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Hourly"
|
391 |
msgstr "Horaires"
|
392 |
|
393 |
+
#: crayon_settings.class.php:101
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Daily"
|
396 |
msgstr "Daily"
|
397 |
|
398 |
+
#: crayon_settings.class.php:102
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Weekly"
|
401 |
msgstr "Hebdomadaire"
|
402 |
|
403 |
+
#: crayon_settings.class.php:102
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Monthly"
|
406 |
msgstr "Mensuel"
|
407 |
|
408 |
+
#: crayon_settings.class.php:103
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Immediately"
|
411 |
msgstr "Immédiatement"
|
412 |
|
413 |
+
#: crayon_settings_wp.class.php:423
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "Crayon Help"
|
416 |
msgstr "Aide Crayon"
|
417 |
|
418 |
+
#: crayon_settings_wp.class.php:618
|
419 |
#@ crayon-syntax-highlighter
|
420 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
|
422 |
|
423 |
+
#: crayon_settings_wp.class.php:618
|
424 |
#@ crayon-syntax-highlighter
|
425 |
msgid "Why?"
|
426 |
msgstr "Pourquoi?"
|
427 |
|
428 |
+
#: crayon_settings_wp.class.php:504
|
429 |
#, php-format
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "%d language has been detected."
|
433 |
msgstr[0] "%d la langue a été détectée."
|
434 |
msgstr[1] "%d langues ont été détectés."
|
435 |
|
436 |
+
#: crayon_settings_wp.class.php:611
|
437 |
#@ crayon-syntax-highlighter
|
438 |
msgid "Followed by your relative URL."
|
439 |
msgstr "Suivi de votre URL relative."
|
440 |
|
441 |
+
#: crayon_settings_wp.class.php:651
|
442 |
#@ crayon-syntax-highlighter
|
443 |
msgid "The log is currently empty."
|
444 |
msgstr "Le journal est actuellement vide."
|
445 |
|
446 |
+
#: crayon_settings_wp.class.php:653
|
447 |
#@ crayon-syntax-highlighter
|
448 |
msgid "The log file exists and is writable."
|
449 |
msgstr "Le fichier journal existe et est accessible en écriture."
|
450 |
|
451 |
+
#: crayon_settings_wp.class.php:653
|
452 |
#@ crayon-syntax-highlighter
|
453 |
msgid "The log file exists and is not writable."
|
454 |
msgstr "Le fichier journal existe et n'est pas accessible en écriture."
|
455 |
|
456 |
+
#: crayon_settings_wp.class.php:655
|
457 |
#@ crayon-syntax-highlighter
|
458 |
msgid "The log file does not exist and is not writable."
|
459 |
msgstr "Le fichier journal n'existe pas et n'est pas modifiable."
|
460 |
|
461 |
+
#: crayon_settings_wp.class.php:599
|
462 |
#@ crayon-syntax-highlighter
|
463 |
msgid "Capture <pre> tags as Crayons"
|
464 |
msgstr "Capturez balises <pre> que Crayons"
|
465 |
|
466 |
+
#: crayon_settings_wp.class.php:554
|
467 |
+
#: crayon_settings_wp.class.php:583
|
468 |
+
#: crayon_settings_wp.class.php:600
|
469 |
+
#: crayon_settings_wp.class.php:601
|
470 |
+
#: crayon_settings_wp.class.php:602
|
471 |
+
#: crayon_settings_wp.class.php:619
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "Learn More"
|
474 |
msgstr "En savoir plus"
|
475 |
|
476 |
+
#: crayon_settings_wp.class.php:603
|
477 |
#@ crayon-syntax-highlighter
|
478 |
msgid "Show Mixed Language Icon (+)"
|
479 |
msgstr "Afficher l'icône Langue mixte (+)"
|
480 |
|
481 |
+
#: crayon_settings_wp.class.php:602
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
484 |
msgstr "Autoriser Soulignant langue mélangée avec des délimiteurs et des tags."
|
485 |
|
486 |
+
#: crayon_settings_wp.class.php:600
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
489 |
msgstr "Capturez Balises Mini tels que [php][/php] Crayons."
|
490 |
|
491 |
+
#: crayon_settings_wp.class.php:601
|
492 |
#@ crayon-syntax-highlighter
|
493 |
msgid "Enable [plain][/plain] tag."
|
494 |
msgstr "Activer tag [plain][/plain]."
|
495 |
|
496 |
+
#: crayon_settings.class.php:169
|
497 |
#@ crayon-syntax-highlighter
|
498 |
msgid "Disable Mouse Events"
|
499 |
msgstr "Désactiver les événements souris"
|
500 |
|
501 |
+
#: crayon_settings_wp.class.php:590
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable plain code toggling"
|
504 |
msgstr "Activer le code basculer plaine"
|
505 |
|
506 |
+
#: crayon_settings_wp.class.php:591
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Show the plain code by default"
|
509 |
msgstr "Montrer le code brut par défaut"
|
538 |
msgid "http://ak.net84.net/"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: crayon_settings_wp.class.php:714
|
|
|
|
|
|
|
|
|
|
|
542 |
#@ crayon-syntax-highlighter
|
543 |
msgid "Donate"
|
544 |
msgstr "Faire un don"
|
545 |
|
546 |
+
#: crayon_settings_wp.class.php:219
|
547 |
#@ crayon-syntax-highlighter
|
548 |
msgid "General"
|
549 |
msgstr "Général"
|
550 |
|
551 |
+
#: crayon_settings_wp.class.php:220
|
552 |
#@ crayon-syntax-highlighter
|
553 |
msgid "Theme"
|
554 |
msgstr "Thème"
|
555 |
|
556 |
+
#: crayon_settings_wp.class.php:221
|
557 |
#@ crayon-syntax-highlighter
|
558 |
msgid "Font"
|
559 |
msgstr "Son"
|
560 |
|
561 |
+
#: crayon_settings_wp.class.php:222
|
562 |
#@ crayon-syntax-highlighter
|
563 |
msgid "Metrics"
|
564 |
msgstr "Mesures"
|
565 |
|
566 |
+
#: crayon_settings_wp.class.php:223
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "Toolbar"
|
569 |
msgstr "Barre d'outils"
|
570 |
|
571 |
+
#: crayon_settings_wp.class.php:224
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "Lines"
|
574 |
msgstr "Lignes"
|
575 |
|
576 |
+
#: crayon_settings_wp.class.php:225
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "Code"
|
579 |
msgstr "Code"
|
580 |
|
581 |
+
#: crayon_settings_wp.class.php:226
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Languages"
|
584 |
msgstr "Langues"
|
585 |
|
586 |
+
#: crayon_settings_wp.class.php:227
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Files"
|
589 |
msgstr "Fichiers"
|
590 |
|
591 |
+
#: crayon_settings_wp.class.php:228
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Misc"
|
594 |
msgstr "Divers"
|
595 |
|
596 |
+
#: crayon_settings_wp.class.php:231
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Debug"
|
599 |
msgstr "Débogage"
|
600 |
|
601 |
+
#: crayon_settings_wp.class.php:232
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Errors"
|
604 |
msgstr "Erreurs"
|
605 |
|
606 |
+
#: crayon_settings_wp.class.php:233
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Log"
|
609 |
msgstr "Connexion"
|
610 |
|
611 |
+
#: crayon_settings_wp.class.php:236
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "About"
|
614 |
msgstr "À propos"
|
615 |
|
616 |
+
#: crayon_settings_wp.class.php:554
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Enqueue themes in the header (more efficient)."
|
619 |
msgstr "Enqueue thèmes dans l'en-tête (plus efficace)."
|
620 |
|
621 |
+
#: crayon_settings_wp.class.php:583
|
622 |
#@ crayon-syntax-highlighter
|
623 |
msgid "Enqueue fonts in the header (more efficient)."
|
624 |
msgstr "Enqueue polices de caractères dans l'en-tête (plus efficace)."
|
625 |
|
626 |
+
#: crayon_settings_wp.class.php:545
|
627 |
+
#@ crayon-syntax-highlighter
|
628 |
+
msgid "Loading..."
|
629 |
+
msgstr "Chargement..."
|
630 |
+
|
631 |
+
#: crayon_settings_wp.class.php:545
|
632 |
+
#: crayon_settings_wp.class.php:712
|
633 |
+
#: util/theme-editor/editor.php:14
|
634 |
+
#@ crayon-syntax-highlighter
|
635 |
+
msgid "Theme Editor"
|
636 |
+
msgstr "Éditeur de thème"
|
637 |
+
|
638 |
+
#: crayon_settings_wp.class.php:595
|
639 |
+
#@ crayon-syntax-highlighter
|
640 |
+
msgid "Always display scrollbars"
|
641 |
+
msgstr "Toujours afficher les barres de défilement"
|
642 |
+
|
643 |
+
#: crayon_settings_wp.class.php:619
|
644 |
+
#@ crayon-syntax-highlighter
|
645 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
646 |
+
msgstr "Désactiver enqueuing pour les modèles de page qui peut contenir la boucle."
|
647 |
+
|
648 |
+
#: crayon_settings_wp.class.php:620
|
649 |
+
#@ crayon-syntax-highlighter
|
650 |
+
msgid "Load Crayons only from the main Wordpress query"
|
651 |
+
msgstr "Crayons Charge seulement de la requête principale Wordpress"
|
652 |
+
|
653 |
+
#: crayon_settings_wp.class.php:668
|
654 |
+
#@ crayon-syntax-highlighter
|
655 |
+
msgid "Translators"
|
656 |
+
msgstr "Traducteurs"
|
657 |
+
|
658 |
#. translators: plugin header field 'Version'
|
659 |
#: crayon_wp.class.php:0
|
660 |
#@ crayon-syntax-highlighter
|
661 |
+
msgid "1.7.25"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: util/theme-editor/editor.php:16
|
665 |
+
#@ crayon-syntax-highlighter
|
666 |
+
msgid "Back To Settings"
|
667 |
+
msgstr "Retour aux réglages"
|
668 |
+
|
trans/crayon-syntax-highlighter-it_IT.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-it_IT.po
CHANGED
@@ -19,424 +19,413 @@ 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:164
|
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:159
|
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."
|
111 |
|
112 |
#: crayon_settings_wp.class.php:39
|
113 |
-
#: crayon_settings_wp.class.php:
|
|
|
114 |
#@ crayon-syntax-highlighter
|
115 |
msgid "Settings"
|
116 |
msgstr "Impostazioni"
|
117 |
|
118 |
-
#: crayon_settings_wp.class.php:
|
119 |
#@ crayon-syntax-highlighter
|
120 |
msgid "You do not have sufficient permissions to access this page."
|
121 |
msgstr "Non si dispone di autorizzazioni sufficienti per accedere a questa pagina."
|
122 |
|
123 |
-
#: crayon_settings_wp.class.php:
|
124 |
#@ crayon-syntax-highlighter
|
125 |
msgid "Save Changes"
|
126 |
msgstr "Salva le modifiche"
|
127 |
|
128 |
-
#: crayon_settings_wp.class.php:
|
129 |
#@ crayon-syntax-highlighter
|
130 |
msgid "Reset Settings"
|
131 |
msgstr "Ripristina Impostazioni"
|
132 |
|
133 |
-
#: crayon_settings_wp.class.php:
|
134 |
#@ crayon-syntax-highlighter
|
135 |
msgid "Height"
|
136 |
msgstr "Altezza"
|
137 |
|
138 |
-
#: crayon_settings_wp.class.php:
|
139 |
#@ crayon-syntax-highlighter
|
140 |
msgid "Width"
|
141 |
msgstr "Larghezza"
|
142 |
|
143 |
-
#: crayon_settings_wp.class.php:
|
144 |
#@ crayon-syntax-highlighter
|
145 |
msgid "Top Margin"
|
146 |
msgstr "Margine superiore"
|
147 |
|
148 |
-
#: crayon_settings_wp.class.php:
|
149 |
#@ crayon-syntax-highlighter
|
150 |
msgid "Bottom Margin"
|
151 |
msgstr "Basso margine"
|
152 |
|
153 |
-
#: crayon_settings_wp.class.php:
|
154 |
-
#: crayon_settings_wp.class.php:
|
155 |
#@ crayon-syntax-highlighter
|
156 |
msgid "Left Margin"
|
157 |
msgstr "Margine sinistro"
|
158 |
|
159 |
-
#: crayon_settings_wp.class.php:
|
160 |
-
#: crayon_settings_wp.class.php:
|
161 |
#@ crayon-syntax-highlighter
|
162 |
msgid "Right Margin"
|
163 |
msgstr "Margine destro"
|
164 |
|
165 |
-
#: crayon_settings_wp.class.php:
|
166 |
#@ crayon-syntax-highlighter
|
167 |
msgid "Horizontal Alignment"
|
168 |
msgstr "Allineamento orizzontale"
|
169 |
|
170 |
-
#: crayon_settings_wp.class.php:
|
171 |
#@ crayon-syntax-highlighter
|
172 |
msgid "Allow floating elements to surround Crayon"
|
173 |
msgstr "Consentire agli elementi flottanti per circondare Crayon"
|
174 |
|
175 |
-
#: crayon_settings_wp.class.php:
|
176 |
#@ crayon-syntax-highlighter
|
177 |
msgid "Display the Toolbar"
|
178 |
msgstr "Visualizzare la barra degli strumenti"
|
179 |
|
180 |
-
#: crayon_settings_wp.class.php:
|
181 |
#@ crayon-syntax-highlighter
|
182 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
183 |
msgstr "Sovrapposizione della barra degli strumenti sul codice, piuttosto che spingere verso il basso quando è possibile"
|
184 |
|
185 |
-
#: crayon_settings_wp.class.php:
|
186 |
#@ crayon-syntax-highlighter
|
187 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
188 |
msgstr "Attivare o disattivare la barra degli strumenti sul singolo click quando è sovrapposto"
|
189 |
|
190 |
-
#: crayon_settings_wp.class.php:
|
191 |
#@ crayon-syntax-highlighter
|
192 |
msgid "Delay hiding the toolbar on MouseOut"
|
193 |
msgstr "Ritardo nascondere la barra degli strumenti su MouseOut"
|
194 |
|
195 |
-
#: crayon_settings_wp.class.php:
|
196 |
#@ crayon-syntax-highlighter
|
197 |
msgid "Display the title when provided"
|
198 |
msgstr "Visualizzare il titolo, ove previsto"
|
199 |
|
200 |
-
#: crayon_settings_wp.class.php:
|
201 |
#@ crayon-syntax-highlighter
|
202 |
msgid "Display the language"
|
203 |
msgstr "Visualizzare la lingua"
|
204 |
|
205 |
-
#: crayon_settings_wp.class.php:
|
206 |
#@ crayon-syntax-highlighter
|
207 |
msgid "Display striped code lines"
|
208 |
msgstr "Visualizzare le linee del codice a strisce"
|
209 |
|
210 |
-
#: crayon_settings_wp.class.php:
|
211 |
#@ crayon-syntax-highlighter
|
212 |
msgid "Enable line marking for important lines"
|
213 |
msgstr "Abilita linea di marcatura per linee importanti"
|
214 |
|
215 |
-
#: crayon_settings_wp.class.php:
|
216 |
#@ crayon-syntax-highlighter
|
217 |
msgid "Display line numbers by default"
|
218 |
msgstr "Visualizzare i numeri di linea di default"
|
219 |
|
220 |
-
#: crayon_settings_wp.class.php:
|
221 |
#@ crayon-syntax-highlighter
|
222 |
msgid "Enable line number toggling"
|
223 |
msgstr "Abilita numero di commutazione linea"
|
224 |
|
225 |
-
#: crayon_settings_wp.class.php:
|
226 |
#@ crayon-syntax-highlighter
|
227 |
msgid "Start line numbers from"
|
228 |
msgstr "Inizio numeri di riga da"
|
229 |
|
230 |
-
#: crayon_settings_wp.class.php:
|
231 |
#@ crayon-syntax-highlighter
|
232 |
msgid "When no language is provided, use the fallback"
|
233 |
msgstr "Quando non è prevista la lingua, utilizzare il fallback"
|
234 |
|
235 |
-
#: crayon_settings_wp.class.php:
|
236 |
#@ crayon-syntax-highlighter
|
237 |
msgid "Parsing was successful"
|
238 |
msgstr "L'analisi ha avuto successo"
|
239 |
|
240 |
-
#: crayon_settings_wp.class.php:
|
241 |
#@ crayon-syntax-highlighter
|
242 |
msgid "Parsing was unsuccessful"
|
243 |
msgstr "L'analisi non ha avuto successo"
|
244 |
|
245 |
-
#: crayon_settings_wp.class.php:
|
246 |
#, php-format
|
247 |
#@ crayon-syntax-highlighter
|
248 |
msgid "The selected language with id %s could not be loaded"
|
249 |
msgstr "La lingua selezionata con id %s non può essere caricato"
|
250 |
|
251 |
-
#: crayon_settings_wp.class.php:
|
252 |
#@ crayon-syntax-highlighter
|
253 |
msgid "Show Languages"
|
254 |
msgstr "Mostra Lingue"
|
255 |
|
256 |
-
#: crayon_settings_wp.class.php:
|
257 |
#@ crayon-syntax-highlighter
|
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:552
|
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:573
|
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 |
-
#:
|
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"
|
423 |
|
424 |
-
#: crayon_settings_wp.class.php:
|
425 |
#@ crayon-syntax-highlighter
|
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é?"
|
438 |
|
439 |
-
#: crayon_settings_wp.class.php:
|
440 |
#, php-format
|
441 |
#@ crayon-syntax-highlighter
|
442 |
msgid "%d language has been detected."
|
@@ -444,76 +433,77 @@ 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_settings_wp.class.php:
|
481 |
-
#: crayon_settings_wp.class.php:
|
|
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Learn More"
|
484 |
msgstr "Approfondisci"
|
485 |
|
486 |
-
#: crayon_settings_wp.class.php:
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Show Mixed Language Icon (+)"
|
489 |
msgstr "Mostra icona misto di lingua (+)"
|
490 |
|
491 |
-
#: crayon_settings_wp.class.php:
|
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:
|
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:
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable [plain][/plain] tag."
|
504 |
msgstr "Abilita tag [plain][/plain]."
|
505 |
|
506 |
-
#: crayon_settings.class.php:
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Disable Mouse Events"
|
509 |
msgstr "Disabilitare eventi di mouse"
|
510 |
|
511 |
-
#: crayon_settings_wp.class.php:
|
512 |
#@ crayon-syntax-highlighter
|
513 |
msgid "Enable plain code toggling"
|
514 |
msgstr "Abilita commutazione del semplice codice"
|
515 |
|
516 |
-
#: crayon_settings_wp.class.php:
|
517 |
#@ crayon-syntax-highlighter
|
518 |
msgid "Show the plain code by default"
|
519 |
msgstr "Mostrare il codice normale per impostazione predefinita"
|
@@ -548,99 +538,131 @@ msgstr ""
|
|
548 |
msgid "http://ak.net84.net/"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#:
|
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:
|
562 |
#@ crayon-syntax-highlighter
|
563 |
msgid "General"
|
564 |
msgstr "General"
|
565 |
|
566 |
-
#: crayon_settings_wp.class.php:
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "Theme"
|
569 |
msgstr "Tema"
|
570 |
|
571 |
-
#: crayon_settings_wp.class.php:
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "Font"
|
574 |
msgstr "Sono"
|
575 |
|
576 |
-
#: crayon_settings_wp.class.php:
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "Metrics"
|
579 |
msgstr "Metrica"
|
580 |
|
581 |
-
#: crayon_settings_wp.class.php:
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Toolbar"
|
584 |
msgstr "Toolbar"
|
585 |
|
586 |
-
#: crayon_settings_wp.class.php:
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Lines"
|
589 |
msgstr "Linee"
|
590 |
|
591 |
-
#: crayon_settings_wp.class.php:
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Code"
|
594 |
msgstr "Codice"
|
595 |
|
596 |
-
#: crayon_settings_wp.class.php:
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Languages"
|
599 |
msgstr "Lingue"
|
600 |
|
601 |
-
#: crayon_settings_wp.class.php:
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Files"
|
604 |
msgstr "File"
|
605 |
|
606 |
-
#: crayon_settings_wp.class.php:
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Misc"
|
609 |
msgstr "Varie"
|
610 |
|
611 |
-
#: crayon_settings_wp.class.php:
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "Debug"
|
614 |
msgstr "Debug"
|
615 |
|
616 |
-
#: crayon_settings_wp.class.php:
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Errors"
|
619 |
msgstr "Errori"
|
620 |
|
621 |
-
#: crayon_settings_wp.class.php:
|
622 |
#@ crayon-syntax-highlighter
|
623 |
msgid "Log"
|
624 |
msgstr "Log"
|
625 |
|
626 |
-
#: crayon_settings_wp.class.php:
|
627 |
#@ crayon-syntax-highlighter
|
628 |
msgid "About"
|
629 |
msgstr "Circa"
|
630 |
|
631 |
-
#: crayon_settings_wp.class.php:
|
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:
|
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.
|
645 |
msgstr ""
|
646 |
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:130
|
23 |
+
#: crayon_settings.class.php:134
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:130
|
29 |
+
#: crayon_settings.class.php:134
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:130
|
35 |
+
#: crayon_settings.class.php:134
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statico"
|
39 |
|
40 |
+
#: crayon_settings.class.php:132
|
41 |
+
#: crayon_settings.class.php:136
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
+
#: crayon_settings.class.php:132
|
47 |
+
#: crayon_settings.class.php:136
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Per cento"
|
51 |
|
52 |
+
#: crayon_settings.class.php:145
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Nessuno"
|
56 |
|
57 |
+
#: crayon_settings.class.php:145
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Sinistra"
|
61 |
|
62 |
+
#: crayon_settings.class.php:145
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centro"
|
66 |
|
67 |
+
#: crayon_settings.class.php:145
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Destra"
|
71 |
|
72 |
+
#: crayon_settings.class.php:147
|
73 |
+
#: crayon_settings.class.php:169
|
|
|
74 |
#@ crayon-syntax-highlighter
|
75 |
msgid "On MouseOver"
|
76 |
msgstr "Al passaggio del mouse"
|
77 |
|
78 |
+
#: crayon_settings.class.php:147
|
79 |
+
#: crayon_settings.class.php:153
|
|
|
80 |
#@ crayon-syntax-highlighter
|
81 |
msgid "Always"
|
82 |
msgstr "Sempre"
|
83 |
|
84 |
+
#: crayon_settings.class.php:147
|
85 |
+
#: crayon_settings.class.php:153
|
86 |
#@ crayon-syntax-highlighter
|
87 |
msgid "Never"
|
88 |
msgstr "Mai"
|
89 |
|
90 |
+
#: crayon_settings.class.php:153
|
91 |
#@ crayon-syntax-highlighter
|
92 |
msgid "When Found"
|
93 |
msgstr "Quando Trovato"
|
94 |
|
95 |
+
#: crayon_settings.class.php:169
|
96 |
#@ crayon-syntax-highlighter
|
97 |
msgid "On Double Click"
|
98 |
msgstr "Su doppio click"
|
99 |
|
100 |
+
#: crayon_settings.class.php:169
|
101 |
#@ crayon-syntax-highlighter
|
102 |
msgid "On Single Click"
|
103 |
msgstr "Il singolo click"
|
104 |
|
105 |
+
#: crayon_settings.class.php:177
|
106 |
#@ crayon-syntax-highlighter
|
107 |
msgid "An error has occurred. Please try again later."
|
108 |
msgstr "È verificato un errore. Riprova più tardi."
|
109 |
|
110 |
#: crayon_settings_wp.class.php:39
|
111 |
+
#: crayon_settings_wp.class.php:82
|
112 |
+
#: crayon_settings_wp.class.php:710
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Settings"
|
115 |
msgstr "Impostazioni"
|
116 |
|
117 |
+
#: crayon_settings_wp.class.php:73
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "You do not have sufficient permissions to access this page."
|
120 |
msgstr "Non si dispone di autorizzazioni sufficienti per accedere a questa pagina."
|
121 |
|
122 |
+
#: crayon_settings_wp.class.php:94
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "Save Changes"
|
125 |
msgstr "Salva le modifiche"
|
126 |
|
127 |
+
#: crayon_settings_wp.class.php:100
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "Reset Settings"
|
130 |
msgstr "Ripristina Impostazioni"
|
131 |
|
132 |
+
#: crayon_settings_wp.class.php:437
|
133 |
#@ crayon-syntax-highlighter
|
134 |
msgid "Height"
|
135 |
msgstr "Altezza"
|
136 |
|
137 |
+
#: crayon_settings_wp.class.php:443
|
138 |
#@ crayon-syntax-highlighter
|
139 |
msgid "Width"
|
140 |
msgstr "Larghezza"
|
141 |
|
142 |
+
#: crayon_settings_wp.class.php:449
|
143 |
#@ crayon-syntax-highlighter
|
144 |
msgid "Top Margin"
|
145 |
msgstr "Margine superiore"
|
146 |
|
147 |
+
#: crayon_settings_wp.class.php:450
|
148 |
#@ crayon-syntax-highlighter
|
149 |
msgid "Bottom Margin"
|
150 |
msgstr "Basso margine"
|
151 |
|
152 |
+
#: crayon_settings_wp.class.php:451
|
153 |
+
#: crayon_settings_wp.class.php:456
|
154 |
#@ crayon-syntax-highlighter
|
155 |
msgid "Left Margin"
|
156 |
msgstr "Margine sinistro"
|
157 |
|
158 |
+
#: crayon_settings_wp.class.php:452
|
159 |
+
#: crayon_settings_wp.class.php:456
|
160 |
#@ crayon-syntax-highlighter
|
161 |
msgid "Right Margin"
|
162 |
msgstr "Margine destro"
|
163 |
|
164 |
+
#: crayon_settings_wp.class.php:462
|
165 |
#@ crayon-syntax-highlighter
|
166 |
msgid "Horizontal Alignment"
|
167 |
msgstr "Allineamento orizzontale"
|
168 |
|
169 |
+
#: crayon_settings_wp.class.php:465
|
170 |
#@ crayon-syntax-highlighter
|
171 |
msgid "Allow floating elements to surround Crayon"
|
172 |
msgstr "Consentire agli elementi flottanti per circondare Crayon"
|
173 |
|
174 |
+
#: crayon_settings_wp.class.php:470
|
175 |
#@ crayon-syntax-highlighter
|
176 |
msgid "Display the Toolbar"
|
177 |
msgstr "Visualizzare la barra degli strumenti"
|
178 |
|
179 |
+
#: crayon_settings_wp.class.php:473
|
180 |
#@ crayon-syntax-highlighter
|
181 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
182 |
msgstr "Sovrapposizione della barra degli strumenti sul codice, piuttosto che spingere verso il basso quando è possibile"
|
183 |
|
184 |
+
#: crayon_settings_wp.class.php:474
|
185 |
#@ crayon-syntax-highlighter
|
186 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
187 |
msgstr "Attivare o disattivare la barra degli strumenti sul singolo click quando è sovrapposto"
|
188 |
|
189 |
+
#: crayon_settings_wp.class.php:475
|
190 |
#@ crayon-syntax-highlighter
|
191 |
msgid "Delay hiding the toolbar on MouseOut"
|
192 |
msgstr "Ritardo nascondere la barra degli strumenti su MouseOut"
|
193 |
|
194 |
+
#: crayon_settings_wp.class.php:477
|
195 |
#@ crayon-syntax-highlighter
|
196 |
msgid "Display the title when provided"
|
197 |
msgstr "Visualizzare il titolo, ove previsto"
|
198 |
|
199 |
+
#: crayon_settings_wp.class.php:478
|
200 |
#@ crayon-syntax-highlighter
|
201 |
msgid "Display the language"
|
202 |
msgstr "Visualizzare la lingua"
|
203 |
|
204 |
+
#: crayon_settings_wp.class.php:483
|
205 |
#@ crayon-syntax-highlighter
|
206 |
msgid "Display striped code lines"
|
207 |
msgstr "Visualizzare le linee del codice a strisce"
|
208 |
|
209 |
+
#: crayon_settings_wp.class.php:484
|
210 |
#@ crayon-syntax-highlighter
|
211 |
msgid "Enable line marking for important lines"
|
212 |
msgstr "Abilita linea di marcatura per linee importanti"
|
213 |
|
214 |
+
#: crayon_settings_wp.class.php:485
|
215 |
#@ crayon-syntax-highlighter
|
216 |
msgid "Display line numbers by default"
|
217 |
msgstr "Visualizzare i numeri di linea di default"
|
218 |
|
219 |
+
#: crayon_settings_wp.class.php:486
|
220 |
#@ crayon-syntax-highlighter
|
221 |
msgid "Enable line number toggling"
|
222 |
msgstr "Abilita numero di commutazione linea"
|
223 |
|
224 |
+
#: crayon_settings_wp.class.php:487
|
225 |
#@ crayon-syntax-highlighter
|
226 |
msgid "Start line numbers from"
|
227 |
msgstr "Inizio numeri di riga da"
|
228 |
|
229 |
+
#: crayon_settings_wp.class.php:497
|
230 |
#@ crayon-syntax-highlighter
|
231 |
msgid "When no language is provided, use the fallback"
|
232 |
msgstr "Quando non è prevista la lingua, utilizzare il fallback"
|
233 |
|
234 |
+
#: crayon_settings_wp.class.php:505
|
235 |
#@ crayon-syntax-highlighter
|
236 |
msgid "Parsing was successful"
|
237 |
msgstr "L'analisi ha avuto successo"
|
238 |
|
239 |
+
#: crayon_settings_wp.class.php:505
|
240 |
#@ crayon-syntax-highlighter
|
241 |
msgid "Parsing was unsuccessful"
|
242 |
msgstr "L'analisi non ha avuto successo"
|
243 |
|
244 |
+
#: crayon_settings_wp.class.php:511
|
245 |
#, php-format
|
246 |
#@ crayon-syntax-highlighter
|
247 |
msgid "The selected language with id %s could not be loaded"
|
248 |
msgstr "La lingua selezionata con id %s non può essere caricato"
|
249 |
|
250 |
+
#: crayon_settings_wp.class.php:515
|
251 |
#@ crayon-syntax-highlighter
|
252 |
msgid "Show Languages"
|
253 |
msgstr "Mostra Lingue"
|
254 |
|
255 |
+
#: crayon_settings_wp.class.php:552
|
256 |
#@ crayon-syntax-highlighter
|
257 |
msgid "Enable Live Preview"
|
258 |
msgstr "Attiva anteprima dal vivo"
|
259 |
|
260 |
+
#: crayon_settings_wp.class.php:557
|
261 |
#, php-format
|
262 |
#@ crayon-syntax-highlighter
|
263 |
msgid "The selected theme with id %s could not be loaded"
|
264 |
msgstr "La tema selezionata con id %s non può essere caricato"
|
265 |
|
266 |
+
#: crayon_settings_wp.class.php:575
|
|
|
|
|
|
|
|
|
|
|
267 |
#@ crayon-syntax-highlighter
|
268 |
msgid "Custom Font Size"
|
269 |
msgstr "Dimensione del carattere personalizzati"
|
270 |
|
271 |
+
#: crayon_settings_wp.class.php:580
|
272 |
#, php-format
|
273 |
#@ crayon-syntax-highlighter
|
274 |
msgid "The selected font with id %s could not be loaded"
|
275 |
msgstr "La font selezionata con id %s non può essere caricato"
|
276 |
|
277 |
+
#: crayon_settings_wp.class.php:587
|
278 |
#@ crayon-syntax-highlighter
|
279 |
msgid "Enable plain code view and display"
|
280 |
msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
|
281 |
|
282 |
+
#: crayon_settings_wp.class.php:592
|
283 |
#@ crayon-syntax-highlighter
|
284 |
msgid "Enable code copy/paste"
|
285 |
msgstr "Abilita copiare il codice/incolla"
|
286 |
|
287 |
+
#: crayon_settings_wp.class.php:594
|
288 |
#@ crayon-syntax-highlighter
|
289 |
msgid "Enable opening code in a window"
|
290 |
msgstr "Abilita il codice di apertura in una finestra"
|
291 |
|
292 |
+
#: crayon_settings_wp.class.php:596
|
|
|
|
|
|
|
|
|
|
|
293 |
#@ crayon-syntax-highlighter
|
294 |
msgid "Tab size in spaces"
|
295 |
msgstr "Dimensione tabulazione in spazi"
|
296 |
|
297 |
+
#: crayon_settings_wp.class.php:598
|
298 |
#@ crayon-syntax-highlighter
|
299 |
msgid "Remove whitespace surrounding the shortcode content"
|
300 |
msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
|
301 |
|
302 |
+
#: crayon_settings_wp.class.php:608
|
303 |
#@ crayon-syntax-highlighter
|
304 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
305 |
msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
|
306 |
|
307 |
+
#: crayon_settings_wp.class.php:615
|
308 |
#@ crayon-syntax-highlighter
|
309 |
msgid "Clear the cache used to store remote code requests"
|
310 |
msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
|
311 |
|
312 |
+
#: crayon_settings_wp.class.php:617
|
313 |
#@ crayon-syntax-highlighter
|
314 |
msgid "Clear Now"
|
315 |
msgstr "Svuota adesso"
|
316 |
|
317 |
+
#: crayon_settings_wp.class.php:621
|
318 |
#@ crayon-syntax-highlighter
|
319 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
320 |
msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
|
321 |
|
322 |
+
#: crayon_settings_wp.class.php:622
|
323 |
#@ crayon-syntax-highlighter
|
324 |
msgid "Disable animations"
|
325 |
msgstr "Disattivare le animazioni"
|
326 |
|
327 |
+
#: crayon_settings_wp.class.php:623
|
328 |
#@ crayon-syntax-highlighter
|
329 |
msgid "Disable runtime stats"
|
330 |
msgstr "Disabilitare runtime stats"
|
331 |
|
332 |
+
#: crayon_settings_wp.class.php:630
|
333 |
#@ crayon-syntax-highlighter
|
334 |
msgid "Log errors for individual Crayons"
|
335 |
msgstr "Errori nel registro di Crayons singoli"
|
336 |
|
337 |
+
#: crayon_settings_wp.class.php:631
|
338 |
#@ crayon-syntax-highlighter
|
339 |
msgid "Log system-wide errors"
|
340 |
msgstr "Log di sistema a livello di errori"
|
341 |
|
342 |
+
#: crayon_settings_wp.class.php:632
|
343 |
#@ crayon-syntax-highlighter
|
344 |
msgid "Display custom message for errors"
|
345 |
msgstr "Display messaggio personalizzato per gli errori"
|
346 |
|
347 |
+
#: crayon_settings_wp.class.php:644
|
348 |
#@ crayon-syntax-highlighter
|
349 |
msgid "Show Log"
|
350 |
msgstr "Mostra registro"
|
351 |
|
352 |
+
#: crayon_settings_wp.class.php:646
|
353 |
#@ crayon-syntax-highlighter
|
354 |
msgid "Clear Log"
|
355 |
msgstr "Cancella registro"
|
356 |
|
357 |
+
#: crayon_settings_wp.class.php:647
|
358 |
#@ crayon-syntax-highlighter
|
359 |
msgid "Email Admin"
|
360 |
msgstr "E-mail Admin"
|
361 |
|
362 |
+
#: crayon_settings_wp.class.php:649
|
363 |
#@ crayon-syntax-highlighter
|
364 |
msgid "Email Developer"
|
365 |
msgstr "Email Developer"
|
366 |
|
367 |
+
#: crayon_settings_wp.class.php:665
|
368 |
#@ crayon-syntax-highlighter
|
369 |
msgid "Version"
|
370 |
msgstr "Versione"
|
371 |
|
372 |
+
#: crayon_settings_wp.class.php:667
|
373 |
#@ crayon-syntax-highlighter
|
374 |
msgid "Developer"
|
375 |
msgstr "Sviluppatore"
|
376 |
|
377 |
+
#: crayon_settings_wp.class.php:698
|
378 |
#@ crayon-syntax-highlighter
|
379 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
380 |
msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
|
381 |
|
382 |
+
#: crayon_settings_wp.class.php:549
|
383 |
#, php-format
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
386 |
msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
|
387 |
|
388 |
+
#: crayon_settings.class.php:101
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Hourly"
|
391 |
msgstr "Ogni ora"
|
392 |
|
393 |
+
#: crayon_settings.class.php:101
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Daily"
|
396 |
msgstr "Quotidiano"
|
397 |
|
398 |
+
#: crayon_settings.class.php:102
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Weekly"
|
401 |
msgstr "Settimanale"
|
402 |
|
403 |
+
#: crayon_settings.class.php:102
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Monthly"
|
406 |
msgstr "Mensile"
|
407 |
|
408 |
+
#: crayon_settings.class.php:103
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Immediately"
|
411 |
msgstr "Immediatamente"
|
412 |
|
413 |
+
#: crayon_settings_wp.class.php:423
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "Crayon Help"
|
416 |
msgstr "Crayon Aiuto"
|
417 |
|
418 |
+
#: crayon_settings_wp.class.php:618
|
419 |
#@ crayon-syntax-highlighter
|
420 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
|
422 |
|
423 |
+
#: crayon_settings_wp.class.php:618
|
424 |
#@ crayon-syntax-highlighter
|
425 |
msgid "Why?"
|
426 |
msgstr "Perché?"
|
427 |
|
428 |
+
#: crayon_settings_wp.class.php:504
|
429 |
#, php-format
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "%d language has been detected."
|
433 |
msgstr[0] "%d lingua è stata rilevata."
|
434 |
msgstr[1] "%d lingue sono state rilevate."
|
435 |
|
436 |
+
#: crayon_settings_wp.class.php:611
|
437 |
#@ crayon-syntax-highlighter
|
438 |
msgid "Followed by your relative URL."
|
439 |
msgstr "Seguito dal relativo URL."
|
440 |
|
441 |
+
#: crayon_settings_wp.class.php:651
|
442 |
#@ crayon-syntax-highlighter
|
443 |
msgid "The log is currently empty."
|
444 |
msgstr "Il registro è vuoto."
|
445 |
|
446 |
+
#: crayon_settings_wp.class.php:653
|
447 |
#@ crayon-syntax-highlighter
|
448 |
msgid "The log file exists and is writable."
|
449 |
msgstr "Il file di registro esiste ed è scrivibile."
|
450 |
|
451 |
+
#: crayon_settings_wp.class.php:653
|
452 |
#@ crayon-syntax-highlighter
|
453 |
msgid "The log file exists and is not writable."
|
454 |
msgstr "Il file di registro esiste e non è scrivibile."
|
455 |
|
456 |
+
#: crayon_settings_wp.class.php:655
|
457 |
#@ crayon-syntax-highlighter
|
458 |
msgid "The log file does not exist and is not writable."
|
459 |
msgstr "Il file di registro non esiste e non è scrivibile."
|
460 |
|
461 |
+
#: crayon_settings_wp.class.php:599
|
462 |
#@ crayon-syntax-highlighter
|
463 |
msgid "Capture <pre> tags as Crayons"
|
464 |
msgstr "Cattura tag <pre> come Crayons"
|
465 |
|
466 |
+
#: crayon_settings_wp.class.php:554
|
467 |
+
#: crayon_settings_wp.class.php:583
|
468 |
+
#: crayon_settings_wp.class.php:600
|
469 |
+
#: crayon_settings_wp.class.php:601
|
470 |
+
#: crayon_settings_wp.class.php:602
|
471 |
+
#: crayon_settings_wp.class.php:619
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "Learn More"
|
474 |
msgstr "Approfondisci"
|
475 |
|
476 |
+
#: crayon_settings_wp.class.php:603
|
477 |
#@ crayon-syntax-highlighter
|
478 |
msgid "Show Mixed Language Icon (+)"
|
479 |
msgstr "Mostra icona misto di lingua (+)"
|
480 |
|
481 |
+
#: crayon_settings_wp.class.php:602
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
484 |
msgstr "Lasciare Evidenziando Lingua mista con delimitatori e tag."
|
485 |
|
486 |
+
#: crayon_settings_wp.class.php:600
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
489 |
msgstr "Cattura Tags come Mini [php][/php] come Crayons."
|
490 |
|
491 |
+
#: crayon_settings_wp.class.php:601
|
492 |
#@ crayon-syntax-highlighter
|
493 |
msgid "Enable [plain][/plain] tag."
|
494 |
msgstr "Abilita tag [plain][/plain]."
|
495 |
|
496 |
+
#: crayon_settings.class.php:169
|
497 |
#@ crayon-syntax-highlighter
|
498 |
msgid "Disable Mouse Events"
|
499 |
msgstr "Disabilitare eventi di mouse"
|
500 |
|
501 |
+
#: crayon_settings_wp.class.php:590
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Enable plain code toggling"
|
504 |
msgstr "Abilita commutazione del semplice codice"
|
505 |
|
506 |
+
#: crayon_settings_wp.class.php:591
|
507 |
#@ crayon-syntax-highlighter
|
508 |
msgid "Show the plain code by default"
|
509 |
msgstr "Mostrare il codice normale per impostazione predefinita"
|
538 |
msgid "http://ak.net84.net/"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: crayon_settings_wp.class.php:714
|
|
|
|
|
|
|
|
|
|
|
542 |
#@ crayon-syntax-highlighter
|
543 |
msgid "Donate"
|
544 |
msgstr "Donare"
|
545 |
|
546 |
+
#: crayon_settings_wp.class.php:219
|
547 |
#@ crayon-syntax-highlighter
|
548 |
msgid "General"
|
549 |
msgstr "General"
|
550 |
|
551 |
+
#: crayon_settings_wp.class.php:220
|
552 |
#@ crayon-syntax-highlighter
|
553 |
msgid "Theme"
|
554 |
msgstr "Tema"
|
555 |
|
556 |
+
#: crayon_settings_wp.class.php:221
|
557 |
#@ crayon-syntax-highlighter
|
558 |
msgid "Font"
|
559 |
msgstr "Sono"
|
560 |
|
561 |
+
#: crayon_settings_wp.class.php:222
|
562 |
#@ crayon-syntax-highlighter
|
563 |
msgid "Metrics"
|
564 |
msgstr "Metrica"
|
565 |
|
566 |
+
#: crayon_settings_wp.class.php:223
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "Toolbar"
|
569 |
msgstr "Toolbar"
|
570 |
|
571 |
+
#: crayon_settings_wp.class.php:224
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "Lines"
|
574 |
msgstr "Linee"
|
575 |
|
576 |
+
#: crayon_settings_wp.class.php:225
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "Code"
|
579 |
msgstr "Codice"
|
580 |
|
581 |
+
#: crayon_settings_wp.class.php:226
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Languages"
|
584 |
msgstr "Lingue"
|
585 |
|
586 |
+
#: crayon_settings_wp.class.php:227
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Files"
|
589 |
msgstr "File"
|
590 |
|
591 |
+
#: crayon_settings_wp.class.php:228
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Misc"
|
594 |
msgstr "Varie"
|
595 |
|
596 |
+
#: crayon_settings_wp.class.php:231
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Debug"
|
599 |
msgstr "Debug"
|
600 |
|
601 |
+
#: crayon_settings_wp.class.php:232
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Errors"
|
604 |
msgstr "Errori"
|
605 |
|
606 |
+
#: crayon_settings_wp.class.php:233
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Log"
|
609 |
msgstr "Log"
|
610 |
|
611 |
+
#: crayon_settings_wp.class.php:236
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "About"
|
614 |
msgstr "Circa"
|
615 |
|
616 |
+
#: crayon_settings_wp.class.php:554
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Enqueue themes in the header (more efficient)."
|
619 |
msgstr "Accoda temi nell'intestazione (bassi consumi)."
|
620 |
|
621 |
+
#: crayon_settings_wp.class.php:583
|
622 |
#@ crayon-syntax-highlighter
|
623 |
msgid "Enqueue fonts in the header (more efficient)."
|
624 |
msgstr "Accoda i caratteri nell'intestazione (bassi consumi)."
|
625 |
|
626 |
+
#: crayon_settings_wp.class.php:545
|
627 |
+
#@ crayon-syntax-highlighter
|
628 |
+
msgid "Loading..."
|
629 |
+
msgstr "Caricamento..."
|
630 |
+
|
631 |
+
#: crayon_settings_wp.class.php:545
|
632 |
+
#: crayon_settings_wp.class.php:712
|
633 |
+
#: util/theme-editor/editor.php:14
|
634 |
+
#@ crayon-syntax-highlighter
|
635 |
+
msgid "Theme Editor"
|
636 |
+
msgstr "Tema Editore"
|
637 |
+
|
638 |
+
#: crayon_settings_wp.class.php:595
|
639 |
+
#@ crayon-syntax-highlighter
|
640 |
+
msgid "Always display scrollbars"
|
641 |
+
msgstr "Mostra sempre barre di scorrimento"
|
642 |
+
|
643 |
+
#: crayon_settings_wp.class.php:619
|
644 |
+
#@ crayon-syntax-highlighter
|
645 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
646 |
+
msgstr "Disabilitare Accodamento per i modelli di pagina che può contenere The Loop."
|
647 |
+
|
648 |
+
#: crayon_settings_wp.class.php:620
|
649 |
+
#@ crayon-syntax-highlighter
|
650 |
+
msgid "Load Crayons only from the main Wordpress query"
|
651 |
+
msgstr "Pastelli carico solo dalla query principale Wordpress"
|
652 |
+
|
653 |
+
#: crayon_settings_wp.class.php:668
|
654 |
+
#@ crayon-syntax-highlighter
|
655 |
+
msgid "Translators"
|
656 |
+
msgstr "Traduttori"
|
657 |
+
|
658 |
#. translators: plugin header field 'Version'
|
659 |
#: crayon_wp.class.php:0
|
660 |
#@ crayon-syntax-highlighter
|
661 |
+
msgid "1.7.25"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: util/theme-editor/editor.php:16
|
665 |
+
#@ crayon-syntax-highlighter
|
666 |
+
msgid "Back To Settings"
|
667 |
+
msgstr "Torna in Impostazioni"
|
668 |
+
|
trans/crayon-syntax-highlighter-ja.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-ja.po
CHANGED
@@ -19,500 +19,490 @@ 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:164
|
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:159
|
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 "エラーが発生しました。後でもう一度やり直してください。"
|
136 |
|
137 |
#: crayon_settings_wp.class.php:39
|
138 |
-
#: crayon_settings_wp.class.php:
|
|
|
139 |
#@ crayon-syntax-highlighter
|
140 |
msgid "Settings"
|
141 |
msgstr "設定"
|
142 |
|
143 |
-
#: crayon_settings_wp.class.php:
|
144 |
#@ crayon-syntax-highlighter
|
145 |
msgid "You do not have sufficient permissions to access this page."
|
146 |
msgstr "このページにアクセスするための十分な権限(パーミッション)がありません。"
|
147 |
|
148 |
-
#: crayon_settings_wp.class.php:
|
149 |
#@ crayon-syntax-highlighter
|
150 |
msgid "Save Changes"
|
151 |
msgstr "変更を保存"
|
152 |
|
153 |
-
#: crayon_settings_wp.class.php:
|
154 |
#@ crayon-syntax-highlighter
|
155 |
msgid "Reset Settings"
|
156 |
msgstr "リセット"
|
157 |
|
158 |
-
#: crayon_settings_wp.class.php:
|
159 |
#@ crayon-syntax-highlighter
|
160 |
msgid "Crayon Help"
|
161 |
msgstr "Crayon ヘルプ"
|
162 |
|
163 |
-
#: crayon_settings_wp.class.php:
|
164 |
#@ crayon-syntax-highlighter
|
165 |
msgid "Height"
|
166 |
msgstr "高さ"
|
167 |
|
168 |
-
#: crayon_settings_wp.class.php:
|
169 |
#@ crayon-syntax-highlighter
|
170 |
msgid "Width"
|
171 |
msgstr "横幅"
|
172 |
|
173 |
-
#: crayon_settings_wp.class.php:
|
174 |
#@ crayon-syntax-highlighter
|
175 |
msgid "Top Margin"
|
176 |
msgstr "上余白"
|
177 |
|
178 |
-
#: crayon_settings_wp.class.php:
|
179 |
#@ crayon-syntax-highlighter
|
180 |
msgid "Bottom Margin"
|
181 |
msgstr "下余白"
|
182 |
|
183 |
-
#: crayon_settings_wp.class.php:
|
184 |
-
#: crayon_settings_wp.class.php:
|
185 |
#@ crayon-syntax-highlighter
|
186 |
msgid "Left Margin"
|
187 |
msgstr "左余白"
|
188 |
|
189 |
-
#: crayon_settings_wp.class.php:
|
190 |
-
#: crayon_settings_wp.class.php:
|
191 |
#@ crayon-syntax-highlighter
|
192 |
msgid "Right Margin"
|
193 |
msgstr "右余白"
|
194 |
|
195 |
-
#: crayon_settings_wp.class.php:
|
196 |
#@ crayon-syntax-highlighter
|
197 |
msgid "Horizontal Alignment"
|
198 |
msgstr "回り込み"
|
199 |
|
200 |
-
#: crayon_settings_wp.class.php:
|
201 |
#@ crayon-syntax-highlighter
|
202 |
msgid "Allow floating elements to surround Crayon"
|
203 |
msgstr "周りのfloat要素の回り込みを許可"
|
204 |
|
205 |
-
#: crayon_settings_wp.class.php:
|
206 |
#@ crayon-syntax-highlighter
|
207 |
msgid "Display the Toolbar"
|
208 |
msgstr "ツールバーの表示"
|
209 |
|
210 |
-
#: crayon_settings_wp.class.php:
|
211 |
#@ crayon-syntax-highlighter
|
212 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
213 |
msgstr "コードを押し下げるのではなく、コード上に重ねて表示"
|
214 |
|
215 |
-
#: crayon_settings_wp.class.php:
|
216 |
#@ crayon-syntax-highlighter
|
217 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
218 |
msgstr "重ねて表示の場合にシングルクリックでツールバーを切り替える"
|
219 |
|
220 |
-
#: crayon_settings_wp.class.php:
|
221 |
#@ crayon-syntax-highlighter
|
222 |
msgid "Delay hiding the toolbar on MouseOut"
|
223 |
msgstr "マウスアウト時にツールバーを隠すのを遅らせる"
|
224 |
|
225 |
-
#: crayon_settings_wp.class.php:
|
226 |
#@ crayon-syntax-highlighter
|
227 |
msgid "Display the title when provided"
|
228 |
msgstr "タイトルがある時は表示"
|
229 |
|
230 |
-
#: crayon_settings_wp.class.php:
|
231 |
#@ crayon-syntax-highlighter
|
232 |
msgid "Display the language"
|
233 |
msgstr "ソース言語を表示"
|
234 |
|
235 |
-
#: crayon_settings_wp.class.php:
|
236 |
#@ crayon-syntax-highlighter
|
237 |
msgid "Display striped code lines"
|
238 |
msgstr "コード行を縞模様で表示する"
|
239 |
|
240 |
-
#: crayon_settings_wp.class.php:
|
241 |
#@ crayon-syntax-highlighter
|
242 |
msgid "Enable line marking for important lines"
|
243 |
msgstr "重要な行にマーキングを有効にする"
|
244 |
|
245 |
-
#: crayon_settings_wp.class.php:
|
246 |
#@ crayon-syntax-highlighter
|
247 |
msgid "Display line numbers by default"
|
248 |
msgstr "デフォルトで行番号を表示"
|
249 |
|
250 |
-
#: crayon_settings_wp.class.php:
|
251 |
#@ crayon-syntax-highlighter
|
252 |
msgid "Enable line number toggling"
|
253 |
msgstr "行番号の切り替えを有効にする"
|
254 |
|
255 |
-
#: crayon_settings_wp.class.php:
|
256 |
#@ crayon-syntax-highlighter
|
257 |
msgid "Start line numbers from"
|
258 |
msgstr "行番号の開始数字"
|
259 |
|
260 |
-
#: crayon_settings_wp.class.php:
|
261 |
#@ crayon-syntax-highlighter
|
262 |
msgid "When no language is provided, use the fallback"
|
263 |
msgstr "ソース言語が提供されていない場合は、代替えを使用します。"
|
264 |
|
265 |
-
#: crayon_settings_wp.class.php:
|
266 |
#@ crayon-syntax-highlighter
|
267 |
msgid "Parsing was successful"
|
268 |
msgstr "解析が成功しました。"
|
269 |
|
270 |
-
#: crayon_settings_wp.class.php:
|
271 |
#@ crayon-syntax-highlighter
|
272 |
msgid "Parsing was unsuccessful"
|
273 |
msgstr "解析に失敗しました。"
|
274 |
|
275 |
-
#: crayon_settings_wp.class.php:
|
276 |
#, php-format
|
277 |
#@ crayon-syntax-highlighter
|
278 |
msgid "The selected language with id %s could not be loaded"
|
279 |
msgstr "ID %s の選択したソース言語をロードできませんでした。"
|
280 |
|
281 |
-
#: crayon_settings_wp.class.php:
|
282 |
#@ crayon-syntax-highlighter
|
283 |
msgid "Show Languages"
|
284 |
msgstr "ソース言語を表示する"
|
285 |
|
286 |
-
#: crayon_settings_wp.class.php:
|
287 |
#@ crayon-syntax-highlighter
|
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:552
|
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:573
|
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 |
-
#:
|
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."
|
437 |
msgstr "サンプルコードを変更するには、%1$sfallback language(代替え言語)%2$sを変更て下さい。5行目から7行目はマークされます。"
|
438 |
|
439 |
-
#: crayon_settings_wp.class.php:
|
440 |
#, php-format
|
441 |
#@ crayon-syntax-highlighter
|
442 |
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_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 "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
|
499 |
|
500 |
-
#: crayon_settings_wp.class.php:
|
501 |
#@ crayon-syntax-highlighter
|
502 |
msgid "Enable [plain][/plain] tag."
|
503 |
msgstr "[plain][/plain]タグを有効にします。"
|
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,99 +537,131 @@ msgstr ""
|
|
547 |
msgid "http://ak.net84.net/"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#:
|
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:
|
561 |
#@ crayon-syntax-highlighter
|
562 |
msgid "General"
|
563 |
msgstr "一般"
|
564 |
|
565 |
-
#: crayon_settings_wp.class.php:
|
566 |
#@ crayon-syntax-highlighter
|
567 |
msgid "Theme"
|
568 |
msgstr "テーマ"
|
569 |
|
570 |
-
#: crayon_settings_wp.class.php:
|
571 |
#@ crayon-syntax-highlighter
|
572 |
msgid "Font"
|
573 |
msgstr "です。"
|
574 |
|
575 |
-
#: crayon_settings_wp.class.php:
|
576 |
#@ crayon-syntax-highlighter
|
577 |
msgid "Metrics"
|
578 |
msgstr "メトリック"
|
579 |
|
580 |
-
#: crayon_settings_wp.class.php:
|
581 |
#@ crayon-syntax-highlighter
|
582 |
msgid "Toolbar"
|
583 |
msgstr "ツールバー"
|
584 |
|
585 |
-
#: crayon_settings_wp.class.php:
|
586 |
#@ crayon-syntax-highlighter
|
587 |
msgid "Lines"
|
588 |
msgstr "行"
|
589 |
|
590 |
-
#: crayon_settings_wp.class.php:
|
591 |
#@ crayon-syntax-highlighter
|
592 |
msgid "Code"
|
593 |
msgstr "コードは"
|
594 |
|
595 |
-
#: crayon_settings_wp.class.php:
|
596 |
#@ crayon-syntax-highlighter
|
597 |
msgid "Languages"
|
598 |
msgstr "言語"
|
599 |
|
600 |
-
#: crayon_settings_wp.class.php:
|
601 |
#@ crayon-syntax-highlighter
|
602 |
msgid "Files"
|
603 |
msgstr "ファイル"
|
604 |
|
605 |
-
#: crayon_settings_wp.class.php:
|
606 |
#@ crayon-syntax-highlighter
|
607 |
msgid "Misc"
|
608 |
msgstr "その他"
|
609 |
|
610 |
-
#: crayon_settings_wp.class.php:
|
611 |
#@ crayon-syntax-highlighter
|
612 |
msgid "Debug"
|
613 |
msgstr "デバッグ"
|
614 |
|
615 |
-
#: crayon_settings_wp.class.php:
|
616 |
#@ crayon-syntax-highlighter
|
617 |
msgid "Errors"
|
618 |
msgstr "エラー"
|
619 |
|
620 |
-
#: crayon_settings_wp.class.php:
|
621 |
#@ crayon-syntax-highlighter
|
622 |
msgid "Log"
|
623 |
msgstr "ログイン"
|
624 |
|
625 |
-
#: crayon_settings_wp.class.php:
|
626 |
#@ crayon-syntax-highlighter
|
627 |
msgid "About"
|
628 |
msgstr "について"
|
629 |
|
630 |
-
#: crayon_settings_wp.class.php:
|
631 |
#@ crayon-syntax-highlighter
|
632 |
msgid "Enqueue themes in the header (more efficient)."
|
633 |
msgstr "ヘッダー内のエンキューテーマ(より効率的)。"
|
634 |
|
635 |
-
#: crayon_settings_wp.class.php:
|
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.
|
644 |
msgstr ""
|
645 |
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:101
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Hourly"
|
25 |
msgstr "毎時間"
|
26 |
|
27 |
+
#: crayon_settings.class.php:101
|
28 |
#@ crayon-syntax-highlighter
|
29 |
msgid "Daily"
|
30 |
msgstr "毎日"
|
31 |
|
32 |
+
#: crayon_settings.class.php:102
|
33 |
#@ crayon-syntax-highlighter
|
34 |
msgid "Weekly"
|
35 |
msgstr "毎週"
|
36 |
|
37 |
+
#: crayon_settings.class.php:102
|
38 |
#@ crayon-syntax-highlighter
|
39 |
msgid "Monthly"
|
40 |
msgstr "毎月"
|
41 |
|
42 |
+
#: crayon_settings.class.php:103
|
43 |
#@ crayon-syntax-highlighter
|
44 |
msgid "Immediately"
|
45 |
msgstr "直後に"
|
46 |
|
47 |
+
#: crayon_settings.class.php:130
|
48 |
+
#: crayon_settings.class.php:134
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr "最大"
|
52 |
|
53 |
+
#: crayon_settings.class.php:130
|
54 |
+
#: crayon_settings.class.php:134
|
55 |
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr "最小"
|
58 |
|
59 |
+
#: crayon_settings.class.php:130
|
60 |
+
#: crayon_settings.class.php:134
|
61 |
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr "固定"
|
64 |
|
65 |
+
#: crayon_settings.class.php:132
|
66 |
+
#: crayon_settings.class.php:136
|
67 |
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr "ピクセル"
|
70 |
|
71 |
+
#: crayon_settings.class.php:132
|
72 |
+
#: crayon_settings.class.php:136
|
73 |
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr "パーセント"
|
76 |
|
77 |
+
#: crayon_settings.class.php:145
|
78 |
#@ crayon-syntax-highlighter
|
79 |
msgid "None"
|
80 |
msgstr "なし"
|
81 |
|
82 |
+
#: crayon_settings.class.php:145
|
83 |
#@ crayon-syntax-highlighter
|
84 |
msgid "Left"
|
85 |
msgstr "左"
|
86 |
|
87 |
+
#: crayon_settings.class.php:145
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Center"
|
90 |
msgstr "中央"
|
91 |
|
92 |
+
#: crayon_settings.class.php:145
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "Right"
|
95 |
msgstr "右"
|
96 |
|
97 |
+
#: crayon_settings.class.php:147
|
98 |
+
#: crayon_settings.class.php:169
|
|
|
99 |
#@ crayon-syntax-highlighter
|
100 |
msgid "On MouseOver"
|
101 |
msgstr "マウスオーバー時"
|
102 |
|
103 |
+
#: crayon_settings.class.php:147
|
104 |
+
#: crayon_settings.class.php:153
|
|
|
105 |
#@ crayon-syntax-highlighter
|
106 |
msgid "Always"
|
107 |
msgstr "常に表示"
|
108 |
|
109 |
+
#: crayon_settings.class.php:147
|
110 |
+
#: crayon_settings.class.php:153
|
111 |
#@ crayon-syntax-highlighter
|
112 |
msgid "Never"
|
113 |
msgstr "表示しない"
|
114 |
|
115 |
+
#: crayon_settings.class.php:153
|
116 |
#@ crayon-syntax-highlighter
|
117 |
msgid "When Found"
|
118 |
msgstr "言語が判明した場合"
|
119 |
|
120 |
+
#: crayon_settings.class.php:169
|
121 |
#@ crayon-syntax-highlighter
|
122 |
msgid "On Double Click"
|
123 |
msgstr "ダブルクリック時"
|
124 |
|
125 |
+
#: crayon_settings.class.php:169
|
126 |
#@ crayon-syntax-highlighter
|
127 |
msgid "On Single Click"
|
128 |
msgstr "シングルクリック時"
|
129 |
|
130 |
+
#: crayon_settings.class.php:177
|
131 |
#@ crayon-syntax-highlighter
|
132 |
msgid "An error has occurred. Please try again later."
|
133 |
msgstr "エラーが発生しました。後でもう一度やり直してください。"
|
134 |
|
135 |
#: crayon_settings_wp.class.php:39
|
136 |
+
#: crayon_settings_wp.class.php:82
|
137 |
+
#: crayon_settings_wp.class.php:710
|
138 |
#@ crayon-syntax-highlighter
|
139 |
msgid "Settings"
|
140 |
msgstr "設定"
|
141 |
|
142 |
+
#: crayon_settings_wp.class.php:73
|
143 |
#@ crayon-syntax-highlighter
|
144 |
msgid "You do not have sufficient permissions to access this page."
|
145 |
msgstr "このページにアクセスするための十分な権限(パーミッション)がありません。"
|
146 |
|
147 |
+
#: crayon_settings_wp.class.php:94
|
148 |
#@ crayon-syntax-highlighter
|
149 |
msgid "Save Changes"
|
150 |
msgstr "変更を保存"
|
151 |
|
152 |
+
#: crayon_settings_wp.class.php:100
|
153 |
#@ crayon-syntax-highlighter
|
154 |
msgid "Reset Settings"
|
155 |
msgstr "リセット"
|
156 |
|
157 |
+
#: crayon_settings_wp.class.php:423
|
158 |
#@ crayon-syntax-highlighter
|
159 |
msgid "Crayon Help"
|
160 |
msgstr "Crayon ヘルプ"
|
161 |
|
162 |
+
#: crayon_settings_wp.class.php:437
|
163 |
#@ crayon-syntax-highlighter
|
164 |
msgid "Height"
|
165 |
msgstr "高さ"
|
166 |
|
167 |
+
#: crayon_settings_wp.class.php:443
|
168 |
#@ crayon-syntax-highlighter
|
169 |
msgid "Width"
|
170 |
msgstr "横幅"
|
171 |
|
172 |
+
#: crayon_settings_wp.class.php:449
|
173 |
#@ crayon-syntax-highlighter
|
174 |
msgid "Top Margin"
|
175 |
msgstr "上余白"
|
176 |
|
177 |
+
#: crayon_settings_wp.class.php:450
|
178 |
#@ crayon-syntax-highlighter
|
179 |
msgid "Bottom Margin"
|
180 |
msgstr "下余白"
|
181 |
|
182 |
+
#: crayon_settings_wp.class.php:451
|
183 |
+
#: crayon_settings_wp.class.php:456
|
184 |
#@ crayon-syntax-highlighter
|
185 |
msgid "Left Margin"
|
186 |
msgstr "左余白"
|
187 |
|
188 |
+
#: crayon_settings_wp.class.php:452
|
189 |
+
#: crayon_settings_wp.class.php:456
|
190 |
#@ crayon-syntax-highlighter
|
191 |
msgid "Right Margin"
|
192 |
msgstr "右余白"
|
193 |
|
194 |
+
#: crayon_settings_wp.class.php:462
|
195 |
#@ crayon-syntax-highlighter
|
196 |
msgid "Horizontal Alignment"
|
197 |
msgstr "回り込み"
|
198 |
|
199 |
+
#: crayon_settings_wp.class.php:465
|
200 |
#@ crayon-syntax-highlighter
|
201 |
msgid "Allow floating elements to surround Crayon"
|
202 |
msgstr "周りのfloat要素の回り込みを許可"
|
203 |
|
204 |
+
#: crayon_settings_wp.class.php:470
|
205 |
#@ crayon-syntax-highlighter
|
206 |
msgid "Display the Toolbar"
|
207 |
msgstr "ツールバーの表示"
|
208 |
|
209 |
+
#: crayon_settings_wp.class.php:473
|
210 |
#@ crayon-syntax-highlighter
|
211 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
212 |
msgstr "コードを押し下げるのではなく、コード上に重ねて表示"
|
213 |
|
214 |
+
#: crayon_settings_wp.class.php:474
|
215 |
#@ crayon-syntax-highlighter
|
216 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
217 |
msgstr "重ねて表示の場合にシングルクリックでツールバーを切り替える"
|
218 |
|
219 |
+
#: crayon_settings_wp.class.php:475
|
220 |
#@ crayon-syntax-highlighter
|
221 |
msgid "Delay hiding the toolbar on MouseOut"
|
222 |
msgstr "マウスアウト時にツールバーを隠すのを遅らせる"
|
223 |
|
224 |
+
#: crayon_settings_wp.class.php:477
|
225 |
#@ crayon-syntax-highlighter
|
226 |
msgid "Display the title when provided"
|
227 |
msgstr "タイトルがある時は表示"
|
228 |
|
229 |
+
#: crayon_settings_wp.class.php:478
|
230 |
#@ crayon-syntax-highlighter
|
231 |
msgid "Display the language"
|
232 |
msgstr "ソース言語を表示"
|
233 |
|
234 |
+
#: crayon_settings_wp.class.php:483
|
235 |
#@ crayon-syntax-highlighter
|
236 |
msgid "Display striped code lines"
|
237 |
msgstr "コード行を縞模様で表示する"
|
238 |
|
239 |
+
#: crayon_settings_wp.class.php:484
|
240 |
#@ crayon-syntax-highlighter
|
241 |
msgid "Enable line marking for important lines"
|
242 |
msgstr "重要な行にマーキングを有効にする"
|
243 |
|
244 |
+
#: crayon_settings_wp.class.php:485
|
245 |
#@ crayon-syntax-highlighter
|
246 |
msgid "Display line numbers by default"
|
247 |
msgstr "デフォルトで行番号を表示"
|
248 |
|
249 |
+
#: crayon_settings_wp.class.php:486
|
250 |
#@ crayon-syntax-highlighter
|
251 |
msgid "Enable line number toggling"
|
252 |
msgstr "行番号の切り替えを有効にする"
|
253 |
|
254 |
+
#: crayon_settings_wp.class.php:487
|
255 |
#@ crayon-syntax-highlighter
|
256 |
msgid "Start line numbers from"
|
257 |
msgstr "行番号の開始数字"
|
258 |
|
259 |
+
#: crayon_settings_wp.class.php:497
|
260 |
#@ crayon-syntax-highlighter
|
261 |
msgid "When no language is provided, use the fallback"
|
262 |
msgstr "ソース言語が提供されていない場合は、代替えを使用します。"
|
263 |
|
264 |
+
#: crayon_settings_wp.class.php:505
|
265 |
#@ crayon-syntax-highlighter
|
266 |
msgid "Parsing was successful"
|
267 |
msgstr "解析が成功しました。"
|
268 |
|
269 |
+
#: crayon_settings_wp.class.php:505
|
270 |
#@ crayon-syntax-highlighter
|
271 |
msgid "Parsing was unsuccessful"
|
272 |
msgstr "解析に失敗しました。"
|
273 |
|
274 |
+
#: crayon_settings_wp.class.php:511
|
275 |
#, php-format
|
276 |
#@ crayon-syntax-highlighter
|
277 |
msgid "The selected language with id %s could not be loaded"
|
278 |
msgstr "ID %s の選択したソース言語をロードできませんでした。"
|
279 |
|
280 |
+
#: crayon_settings_wp.class.php:515
|
281 |
#@ crayon-syntax-highlighter
|
282 |
msgid "Show Languages"
|
283 |
msgstr "ソース言語を表示する"
|
284 |
|
285 |
+
#: crayon_settings_wp.class.php:552
|
286 |
#@ crayon-syntax-highlighter
|
287 |
msgid "Enable Live Preview"
|
288 |
msgstr "リアルタイムのプレビューを有効にする"
|
289 |
|
290 |
+
#: crayon_settings_wp.class.php:557
|
291 |
#, php-format
|
292 |
#@ crayon-syntax-highlighter
|
293 |
msgid "The selected theme with id %s could not be loaded"
|
294 |
msgstr "ID %sの選択したテーマをロードできませんでした。"
|
295 |
|
296 |
+
#: crayon_settings_wp.class.php:575
|
|
|
|
|
|
|
|
|
|
|
297 |
#@ crayon-syntax-highlighter
|
298 |
msgid "Custom Font Size"
|
299 |
msgstr "フォントサイズ指定"
|
300 |
|
301 |
+
#: crayon_settings_wp.class.php:580
|
302 |
#, php-format
|
303 |
#@ crayon-syntax-highlighter
|
304 |
msgid "The selected font with id %s could not be loaded"
|
305 |
msgstr "ID %s の選択されたフォントをロードできませんでした。"
|
306 |
|
307 |
+
#: crayon_settings_wp.class.php:587
|
308 |
#@ crayon-syntax-highlighter
|
309 |
msgid "Enable plain code view and display"
|
310 |
msgstr "単純なコードビューを有効にする"
|
311 |
|
312 |
+
#: crayon_settings_wp.class.php:592
|
313 |
#@ crayon-syntax-highlighter
|
314 |
msgid "Enable code copy/paste"
|
315 |
msgstr "コードのコピー/貼り付けを有効にする"
|
316 |
|
317 |
+
#: crayon_settings_wp.class.php:594
|
318 |
#@ crayon-syntax-highlighter
|
319 |
msgid "Enable opening code in a window"
|
320 |
msgstr "新しいウインドウでコードを開くを有効にする"
|
321 |
|
322 |
+
#: crayon_settings_wp.class.php:596
|
|
|
|
|
|
|
|
|
|
|
323 |
#@ crayon-syntax-highlighter
|
324 |
msgid "Tab size in spaces"
|
325 |
msgstr "tab挿入の空白代替え数(単純コードビュー)"
|
326 |
|
327 |
+
#: crayon_settings_wp.class.php:598
|
328 |
#@ crayon-syntax-highlighter
|
329 |
msgid "Remove whitespace surrounding the shortcode content"
|
330 |
msgstr "ショートコードの内容を囲む空白の部分を削除します"
|
331 |
|
332 |
+
#: crayon_settings_wp.class.php:608
|
333 |
#@ crayon-syntax-highlighter
|
334 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
335 |
msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
|
336 |
|
337 |
+
#: crayon_settings_wp.class.php:615
|
338 |
#@ crayon-syntax-highlighter
|
339 |
msgid "Clear the cache used to store remote code requests"
|
340 |
msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
|
341 |
|
342 |
+
#: crayon_settings_wp.class.php:617
|
343 |
#@ crayon-syntax-highlighter
|
344 |
msgid "Clear Now"
|
345 |
msgstr "今すぐクリア"
|
346 |
|
347 |
+
#: crayon_settings_wp.class.php:618
|
348 |
#@ crayon-syntax-highlighter
|
349 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
350 |
msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
|
351 |
|
352 |
+
#: crayon_settings_wp.class.php:618
|
353 |
#@ crayon-syntax-highlighter
|
354 |
msgid "Why?"
|
355 |
msgstr "なぜ試みるのか?"
|
356 |
|
357 |
+
#: crayon_settings_wp.class.php:621
|
358 |
#@ crayon-syntax-highlighter
|
359 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
360 |
msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
|
361 |
|
362 |
+
#: crayon_settings_wp.class.php:622
|
363 |
#@ crayon-syntax-highlighter
|
364 |
msgid "Disable animations"
|
365 |
msgstr "アニメーションを無効にする"
|
366 |
|
367 |
+
#: crayon_settings_wp.class.php:623
|
368 |
#@ crayon-syntax-highlighter
|
369 |
msgid "Disable runtime stats"
|
370 |
msgstr "プログラム実行時の統計を無効にする"
|
371 |
|
372 |
+
#: crayon_settings_wp.class.php:630
|
373 |
#@ crayon-syntax-highlighter
|
374 |
msgid "Log errors for individual Crayons"
|
375 |
msgstr "個々設置(Crayon)のエラーを記録"
|
376 |
|
377 |
+
#: crayon_settings_wp.class.php:631
|
378 |
#@ crayon-syntax-highlighter
|
379 |
msgid "Log system-wide errors"
|
380 |
msgstr "システム全体のエラーを記録"
|
381 |
|
382 |
+
#: crayon_settings_wp.class.php:632
|
383 |
#@ crayon-syntax-highlighter
|
384 |
msgid "Display custom message for errors"
|
385 |
msgstr "カスタムエラーメッセージを表示する"
|
386 |
|
387 |
+
#: crayon_settings_wp.class.php:644
|
388 |
#@ crayon-syntax-highlighter
|
389 |
msgid "Show Log"
|
390 |
msgstr "ログを見る"
|
391 |
|
392 |
+
#: crayon_settings_wp.class.php:646
|
393 |
#@ crayon-syntax-highlighter
|
394 |
msgid "Clear Log"
|
395 |
msgstr "ログをクリア"
|
396 |
|
397 |
+
#: crayon_settings_wp.class.php:647
|
398 |
#@ crayon-syntax-highlighter
|
399 |
msgid "Email Admin"
|
400 |
msgstr "管理者にEメールを送信"
|
401 |
|
402 |
+
#: crayon_settings_wp.class.php:649
|
403 |
#@ crayon-syntax-highlighter
|
404 |
msgid "Email Developer"
|
405 |
msgstr "開発者にEメールを送信"
|
406 |
|
407 |
+
#: crayon_settings_wp.class.php:665
|
408 |
#@ crayon-syntax-highlighter
|
409 |
msgid "Version"
|
410 |
msgstr "バージョン"
|
411 |
|
412 |
+
#: crayon_settings_wp.class.php:667
|
413 |
#@ crayon-syntax-highlighter
|
414 |
msgid "Developer"
|
415 |
msgstr "開発者"
|
416 |
|
417 |
+
#: crayon_settings_wp.class.php:698
|
418 |
#@ crayon-syntax-highlighter
|
419 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
420 |
msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
|
421 |
|
422 |
+
#: crayon_settings_wp.class.php:549
|
423 |
#, php-format
|
424 |
#@ crayon-syntax-highlighter
|
425 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
426 |
msgstr "サンプルコードを変更するには、%1$sfallback language(代替え言語)%2$sを変更て下さい。5行目から7行目はマークされます。"
|
427 |
|
428 |
+
#: crayon_settings_wp.class.php:504
|
429 |
#, php-format
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "%d language has been detected."
|
432 |
msgid_plural "%d languages have been detected."
|
433 |
msgstr[0] "%dのソース言語が検出されてます。"
|
434 |
|
435 |
+
#: crayon_settings_wp.class.php:599
|
436 |
#@ crayon-syntax-highlighter
|
437 |
msgid "Capture <pre> tags as Crayons"
|
438 |
msgstr "Crayonsとして<pre>タグをキャプチャ"
|
439 |
|
440 |
+
#: crayon_settings_wp.class.php:611
|
441 |
#@ crayon-syntax-highlighter
|
442 |
msgid "Followed by your relative URL."
|
443 |
msgstr "相対URLが続きます。"
|
444 |
|
445 |
+
#: crayon_settings_wp.class.php:651
|
446 |
#@ crayon-syntax-highlighter
|
447 |
msgid "The log is currently empty."
|
448 |
msgstr "ログは現在空です。"
|
449 |
|
450 |
+
#: crayon_settings_wp.class.php:653
|
451 |
#@ crayon-syntax-highlighter
|
452 |
msgid "The log file exists and is writable."
|
453 |
msgstr "ログファイルは存在し、書き込み可能です。"
|
454 |
|
455 |
+
#: crayon_settings_wp.class.php:653
|
456 |
#@ crayon-syntax-highlighter
|
457 |
msgid "The log file exists and is not writable."
|
458 |
msgstr "ログファイルは存在するが、書き込み可能ではありません。"
|
459 |
|
460 |
+
#: crayon_settings_wp.class.php:655
|
461 |
#@ crayon-syntax-highlighter
|
462 |
msgid "The log file does not exist and is not writable."
|
463 |
msgstr "ログファイルが存在しないので書き込むことが出来ません。"
|
464 |
|
465 |
+
#: crayon_settings_wp.class.php:554
|
466 |
+
#: crayon_settings_wp.class.php:583
|
467 |
+
#: crayon_settings_wp.class.php:600
|
468 |
+
#: crayon_settings_wp.class.php:601
|
469 |
+
#: crayon_settings_wp.class.php:602
|
470 |
+
#: crayon_settings_wp.class.php:619
|
471 |
#@ crayon-syntax-highlighter
|
472 |
msgid "Learn More"
|
473 |
msgstr "詳細はこちら"
|
474 |
|
475 |
+
#: crayon_settings_wp.class.php:603
|
476 |
#@ crayon-syntax-highlighter
|
477 |
msgid "Show Mixed Language Icon (+)"
|
478 |
msgstr "混合言語のアイコンを(+)を表示"
|
479 |
|
480 |
+
#: crayon_settings_wp.class.php:602
|
481 |
#@ crayon-syntax-highlighter
|
482 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
483 |
msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
|
484 |
|
485 |
+
#: crayon_settings_wp.class.php:600
|
486 |
#@ crayon-syntax-highlighter
|
487 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
488 |
msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
|
489 |
|
490 |
+
#: crayon_settings_wp.class.php:601
|
491 |
#@ crayon-syntax-highlighter
|
492 |
msgid "Enable [plain][/plain] tag."
|
493 |
msgstr "[plain][/plain]タグを有効にします。"
|
494 |
|
495 |
+
#: crayon_settings.class.php:169
|
496 |
#@ crayon-syntax-highlighter
|
497 |
msgid "Disable Mouse Events"
|
498 |
msgstr "マウスイベントを無効にする"
|
499 |
|
500 |
+
#: crayon_settings_wp.class.php:590
|
501 |
#@ crayon-syntax-highlighter
|
502 |
msgid "Enable plain code toggling"
|
503 |
msgstr "単純なコードの切り替えを有効にする"
|
504 |
|
505 |
+
#: crayon_settings_wp.class.php:591
|
506 |
#@ crayon-syntax-highlighter
|
507 |
msgid "Show the plain code by default"
|
508 |
msgstr "デフォルトでプレインコードを表示する"
|
537 |
msgid "http://ak.net84.net/"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: crayon_settings_wp.class.php:714
|
|
|
|
|
|
|
|
|
|
|
541 |
#@ crayon-syntax-highlighter
|
542 |
msgid "Donate"
|
543 |
msgstr "寄付する"
|
544 |
|
545 |
+
#: crayon_settings_wp.class.php:219
|
546 |
#@ crayon-syntax-highlighter
|
547 |
msgid "General"
|
548 |
msgstr "一般"
|
549 |
|
550 |
+
#: crayon_settings_wp.class.php:220
|
551 |
#@ crayon-syntax-highlighter
|
552 |
msgid "Theme"
|
553 |
msgstr "テーマ"
|
554 |
|
555 |
+
#: crayon_settings_wp.class.php:221
|
556 |
#@ crayon-syntax-highlighter
|
557 |
msgid "Font"
|
558 |
msgstr "です。"
|
559 |
|
560 |
+
#: crayon_settings_wp.class.php:222
|
561 |
#@ crayon-syntax-highlighter
|
562 |
msgid "Metrics"
|
563 |
msgstr "メトリック"
|
564 |
|
565 |
+
#: crayon_settings_wp.class.php:223
|
566 |
#@ crayon-syntax-highlighter
|
567 |
msgid "Toolbar"
|
568 |
msgstr "ツールバー"
|
569 |
|
570 |
+
#: crayon_settings_wp.class.php:224
|
571 |
#@ crayon-syntax-highlighter
|
572 |
msgid "Lines"
|
573 |
msgstr "行"
|
574 |
|
575 |
+
#: crayon_settings_wp.class.php:225
|
576 |
#@ crayon-syntax-highlighter
|
577 |
msgid "Code"
|
578 |
msgstr "コードは"
|
579 |
|
580 |
+
#: crayon_settings_wp.class.php:226
|
581 |
#@ crayon-syntax-highlighter
|
582 |
msgid "Languages"
|
583 |
msgstr "言語"
|
584 |
|
585 |
+
#: crayon_settings_wp.class.php:227
|
586 |
#@ crayon-syntax-highlighter
|
587 |
msgid "Files"
|
588 |
msgstr "ファイル"
|
589 |
|
590 |
+
#: crayon_settings_wp.class.php:228
|
591 |
#@ crayon-syntax-highlighter
|
592 |
msgid "Misc"
|
593 |
msgstr "その他"
|
594 |
|
595 |
+
#: crayon_settings_wp.class.php:231
|
596 |
#@ crayon-syntax-highlighter
|
597 |
msgid "Debug"
|
598 |
msgstr "デバッグ"
|
599 |
|
600 |
+
#: crayon_settings_wp.class.php:232
|
601 |
#@ crayon-syntax-highlighter
|
602 |
msgid "Errors"
|
603 |
msgstr "エラー"
|
604 |
|
605 |
+
#: crayon_settings_wp.class.php:233
|
606 |
#@ crayon-syntax-highlighter
|
607 |
msgid "Log"
|
608 |
msgstr "ログイン"
|
609 |
|
610 |
+
#: crayon_settings_wp.class.php:236
|
611 |
#@ crayon-syntax-highlighter
|
612 |
msgid "About"
|
613 |
msgstr "について"
|
614 |
|
615 |
+
#: crayon_settings_wp.class.php:554
|
616 |
#@ crayon-syntax-highlighter
|
617 |
msgid "Enqueue themes in the header (more efficient)."
|
618 |
msgstr "ヘッダー内のエンキューテーマ(より効率的)。"
|
619 |
|
620 |
+
#: crayon_settings_wp.class.php:583
|
621 |
#@ crayon-syntax-highlighter
|
622 |
msgid "Enqueue fonts in the header (more efficient)."
|
623 |
msgstr "ヘッダー内のエンキューフォント(より効率的)。"
|
624 |
|
625 |
+
#: crayon_settings_wp.class.php:545
|
626 |
+
#@ crayon-syntax-highlighter
|
627 |
+
msgid "Loading..."
|
628 |
+
msgstr "ロード"
|
629 |
+
|
630 |
+
#: crayon_settings_wp.class.php:545
|
631 |
+
#: crayon_settings_wp.class.php:712
|
632 |
+
#: util/theme-editor/editor.php:14
|
633 |
+
#@ crayon-syntax-highlighter
|
634 |
+
msgid "Theme Editor"
|
635 |
+
msgstr "テーマエディタ"
|
636 |
+
|
637 |
+
#: crayon_settings_wp.class.php:595
|
638 |
+
#@ crayon-syntax-highlighter
|
639 |
+
msgid "Always display scrollbars"
|
640 |
+
msgstr "常にスクロールバーを表示する"
|
641 |
+
|
642 |
+
#: crayon_settings_wp.class.php:619
|
643 |
+
#@ crayon-syntax-highlighter
|
644 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
645 |
+
msgstr "ループを含む可能性のあるページテンプレートのエンキューを無効にします。"
|
646 |
+
|
647 |
+
#: crayon_settings_wp.class.php:620
|
648 |
+
#@ crayon-syntax-highlighter
|
649 |
+
msgid "Load Crayons only from the main Wordpress query"
|
650 |
+
msgstr "唯一の主要なWordpressのクエリからロードクレヨン"
|
651 |
+
|
652 |
+
#: crayon_settings_wp.class.php:668
|
653 |
+
#@ crayon-syntax-highlighter
|
654 |
+
msgid "Translators"
|
655 |
+
msgstr "翻訳者"
|
656 |
+
|
657 |
#. translators: plugin header field 'Version'
|
658 |
#: crayon_wp.class.php:0
|
659 |
#@ crayon-syntax-highlighter
|
660 |
+
msgid "1.7.25"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: util/theme-editor/editor.php:16
|
664 |
+
#@ crayon-syntax-highlighter
|
665 |
+
msgid "Back To Settings"
|
666 |
+
msgstr "バックの設定へ"
|
667 |
+
|
trans/crayon-syntax-highlighter-ru_RU.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-ru_RU.po
CHANGED
@@ -19,325 +19,324 @@ 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:164
|
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:159
|
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 "Disable Mouse Events"
|
135 |
msgstr "Запретить отслеживание событий мыши"
|
136 |
|
137 |
-
#: crayon_settings.class.php:
|
138 |
#@ crayon-syntax-highlighter
|
139 |
msgid "An error has occurred. Please try again later."
|
140 |
msgstr "Произошла ошибка. Попробуйте ещё раз позднее."
|
141 |
|
142 |
#: crayon_settings_wp.class.php:39
|
143 |
-
#: crayon_settings_wp.class.php:
|
|
|
144 |
#@ crayon-syntax-highlighter
|
145 |
msgid "Settings"
|
146 |
msgstr "Параметры"
|
147 |
|
148 |
-
#: crayon_settings_wp.class.php:
|
149 |
#@ crayon-syntax-highlighter
|
150 |
msgid "You do not have sufficient permissions to access this page."
|
151 |
msgstr "У вас недостаточно прав для доступа к этой странице."
|
152 |
|
153 |
-
#: crayon_settings_wp.class.php:
|
154 |
#@ crayon-syntax-highlighter
|
155 |
msgid "Save Changes"
|
156 |
msgstr "Сохранить параметры"
|
157 |
|
158 |
-
#: crayon_settings_wp.class.php:
|
159 |
#@ crayon-syntax-highlighter
|
160 |
msgid "Reset Settings"
|
161 |
msgstr "Параметры по умолчанию"
|
162 |
|
163 |
-
#: crayon_settings_wp.class.php:
|
164 |
#@ crayon-syntax-highlighter
|
165 |
msgid "General"
|
166 |
msgstr "Основные"
|
167 |
|
168 |
-
#: crayon_settings_wp.class.php:
|
169 |
#@ crayon-syntax-highlighter
|
170 |
msgid "Theme"
|
171 |
msgstr "Тема"
|
172 |
|
173 |
-
#: crayon_settings_wp.class.php:
|
174 |
#@ crayon-syntax-highlighter
|
175 |
msgid "Font"
|
176 |
msgstr "Шрифт"
|
177 |
|
178 |
-
#: crayon_settings_wp.class.php:
|
179 |
#@ crayon-syntax-highlighter
|
180 |
msgid "Metrics"
|
181 |
msgstr "Метрики"
|
182 |
|
183 |
-
#: crayon_settings_wp.class.php:
|
184 |
#@ crayon-syntax-highlighter
|
185 |
msgid "Toolbar"
|
186 |
msgstr "Панель инструментов"
|
187 |
|
188 |
-
#: crayon_settings_wp.class.php:
|
189 |
#@ crayon-syntax-highlighter
|
190 |
msgid "Lines"
|
191 |
msgstr "Строки"
|
192 |
|
193 |
-
#: crayon_settings_wp.class.php:
|
194 |
#@ crayon-syntax-highlighter
|
195 |
msgid "Code"
|
196 |
msgstr "Код"
|
197 |
|
198 |
-
#: crayon_settings_wp.class.php:
|
199 |
#@ crayon-syntax-highlighter
|
200 |
msgid "Languages"
|
201 |
msgstr "Языки"
|
202 |
|
203 |
-
#: crayon_settings_wp.class.php:
|
204 |
#@ crayon-syntax-highlighter
|
205 |
msgid "Files"
|
206 |
msgstr "Файлы"
|
207 |
|
208 |
-
#: crayon_settings_wp.class.php:
|
209 |
#@ crayon-syntax-highlighter
|
210 |
msgid "Misc"
|
211 |
msgstr "Разное"
|
212 |
|
213 |
-
#: crayon_settings_wp.class.php:
|
214 |
#@ crayon-syntax-highlighter
|
215 |
msgid "Debug"
|
216 |
msgstr "Отладка"
|
217 |
|
218 |
-
#: crayon_settings_wp.class.php:
|
219 |
#@ crayon-syntax-highlighter
|
220 |
msgid "Errors"
|
221 |
msgstr "Ошибки"
|
222 |
|
223 |
-
#: crayon_settings_wp.class.php:
|
224 |
#@ crayon-syntax-highlighter
|
225 |
msgid "Log"
|
226 |
msgstr "Журнал ошибок"
|
227 |
|
228 |
-
#: crayon_settings_wp.class.php:
|
229 |
#@ crayon-syntax-highlighter
|
230 |
msgid "About"
|
231 |
msgstr "О плагине"
|
232 |
|
233 |
-
#: crayon_settings_wp.class.php:
|
234 |
#@ crayon-syntax-highlighter
|
235 |
msgid "Crayon Help"
|
236 |
msgstr "Справка Crayon"
|
237 |
|
238 |
-
#: crayon_settings_wp.class.php:
|
239 |
#@ crayon-syntax-highlighter
|
240 |
msgid "Height"
|
241 |
msgstr "Высота"
|
242 |
|
243 |
-
#: crayon_settings_wp.class.php:
|
244 |
#@ crayon-syntax-highlighter
|
245 |
msgid "Width"
|
246 |
msgstr "Ширина"
|
247 |
|
248 |
-
#: crayon_settings_wp.class.php:
|
249 |
#@ crayon-syntax-highlighter
|
250 |
msgid "Top Margin"
|
251 |
msgstr "Верхний отступ"
|
252 |
|
253 |
-
#: crayon_settings_wp.class.php:
|
254 |
#@ crayon-syntax-highlighter
|
255 |
msgid "Bottom Margin"
|
256 |
msgstr "Нижний отступ"
|
257 |
|
258 |
-
#: crayon_settings_wp.class.php:
|
259 |
-
#: crayon_settings_wp.class.php:
|
260 |
#@ crayon-syntax-highlighter
|
261 |
msgid "Left Margin"
|
262 |
msgstr "Левый отступ"
|
263 |
|
264 |
-
#: crayon_settings_wp.class.php:
|
265 |
-
#: crayon_settings_wp.class.php:
|
266 |
#@ crayon-syntax-highlighter
|
267 |
msgid "Right Margin"
|
268 |
msgstr "Правый отступ"
|
269 |
|
270 |
-
#: crayon_settings_wp.class.php:
|
271 |
#@ crayon-syntax-highlighter
|
272 |
msgid "Horizontal Alignment"
|
273 |
msgstr "Выравнивание по горизонтали"
|
274 |
|
275 |
-
#: crayon_settings_wp.class.php:
|
276 |
#@ crayon-syntax-highlighter
|
277 |
msgid "Allow floating elements to surround Crayon"
|
278 |
msgstr "Разрешить плавающий режим"
|
279 |
|
280 |
-
#: crayon_settings_wp.class.php:
|
281 |
#@ crayon-syntax-highlighter
|
282 |
msgid "Display the Toolbar"
|
283 |
msgstr "Показывать панель инструментов"
|
284 |
|
285 |
-
#: crayon_settings_wp.class.php:
|
286 |
#@ crayon-syntax-highlighter
|
287 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
288 |
msgstr "Использовать, если возможно, наложение панели инструментов на панель кодов без смещения кодов вниз"
|
289 |
|
290 |
-
#: crayon_settings_wp.class.php:
|
291 |
#@ crayon-syntax-highlighter
|
292 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
293 |
msgstr "Показывать панель инструментов по клику, если она скрыта"
|
294 |
|
295 |
-
#: crayon_settings_wp.class.php:
|
296 |
#@ crayon-syntax-highlighter
|
297 |
msgid "Delay hiding the toolbar on MouseOut"
|
298 |
msgstr "Задержка исчезания панели инструментов при уходе курсора мыши за пределы панели"
|
299 |
|
300 |
-
#: crayon_settings_wp.class.php:
|
301 |
#@ crayon-syntax-highlighter
|
302 |
msgid "Display the title when provided"
|
303 |
msgstr "Показывать заголовок, если он задан"
|
304 |
|
305 |
-
#: crayon_settings_wp.class.php:
|
306 |
#@ crayon-syntax-highlighter
|
307 |
msgid "Display the language"
|
308 |
msgstr "Показывать язык кода"
|
309 |
|
310 |
-
#: crayon_settings_wp.class.php:
|
311 |
#@ crayon-syntax-highlighter
|
312 |
msgid "Display striped code lines"
|
313 |
msgstr "Использовать чередование цвета строк кода"
|
314 |
|
315 |
-
#: crayon_settings_wp.class.php:
|
316 |
#@ crayon-syntax-highlighter
|
317 |
msgid "Enable line marking for important lines"
|
318 |
msgstr "Разрешить маркировку важных строк кода"
|
319 |
|
320 |
-
#: crayon_settings_wp.class.php:
|
321 |
#@ crayon-syntax-highlighter
|
322 |
msgid "Display line numbers by default"
|
323 |
msgstr "Показывать нумерацию строк по умолчанию"
|
324 |
|
325 |
-
#: crayon_settings_wp.class.php:
|
326 |
#@ crayon-syntax-highlighter
|
327 |
msgid "Enable line number toggling"
|
328 |
msgstr "Разрешить переключение нумерации строк"
|
329 |
|
330 |
-
#: crayon_settings_wp.class.php:
|
331 |
#@ crayon-syntax-highlighter
|
332 |
msgid "Start line numbers from"
|
333 |
msgstr "Начинать нумерацию строк с"
|
334 |
|
335 |
-
#: crayon_settings_wp.class.php:
|
336 |
#@ crayon-syntax-highlighter
|
337 |
msgid "When no language is provided, use the fallback"
|
338 |
msgstr "Если язык не поддерживается, использовать"
|
339 |
|
340 |
-
#: crayon_settings_wp.class.php:
|
341 |
#, php-format
|
342 |
#@ crayon-syntax-highlighter
|
343 |
msgid "%d language has been detected."
|
@@ -346,264 +345,246 @@ msgstr[0] "Обнаружен %d язык."
|
|
346 |
msgstr[1] "Обнаружено %d языка."
|
347 |
msgstr[2] "Обнаружено %d языков."
|
348 |
|
349 |
-
#: crayon_settings_wp.class.php:
|
350 |
#@ crayon-syntax-highlighter
|
351 |
msgid "Parsing was successful"
|
352 |
msgstr "Разбор произведён успешно"
|
353 |
|
354 |
-
#: crayon_settings_wp.class.php:
|
355 |
#@ crayon-syntax-highlighter
|
356 |
msgid "Parsing was unsuccessful"
|
357 |
msgstr "Разбор закончился неудачей"
|
358 |
|
359 |
-
#: crayon_settings_wp.class.php:
|
360 |
#, php-format
|
361 |
#@ crayon-syntax-highlighter
|
362 |
msgid "The selected language with id %s could not be loaded"
|
363 |
msgstr "Выбранный язык (ID %s) не загружен."
|
364 |
|
365 |
-
#: crayon_settings_wp.class.php:
|
366 |
#@ crayon-syntax-highlighter
|
367 |
msgid "Show Languages"
|
368 |
msgstr "Показать языки"
|
369 |
|
370 |
-
#: crayon_settings_wp.class.php:
|
371 |
#@ crayon-syntax-highlighter
|
372 |
msgid "Enable Live Preview"
|
373 |
msgstr "Разрешить показ примера"
|
374 |
|
375 |
-
#: crayon_settings_wp.class.php:
|
376 |
#@ crayon-syntax-highlighter
|
377 |
msgid "Enqueue themes in the header (more efficient)."
|
378 |
msgstr "Загружать темы в заголовке страницы (более эффективно)."
|
379 |
|
380 |
-
#: crayon_settings_wp.class.php:
|
381 |
-
#: crayon_settings_wp.class.php:
|
382 |
-
#: crayon_settings_wp.class.php:
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
385 |
#@ crayon-syntax-highlighter
|
386 |
msgid "Learn More"
|
387 |
msgstr "Подробнее"
|
388 |
|
389 |
-
#: crayon_settings_wp.class.php:
|
390 |
#, php-format
|
391 |
#@ crayon-syntax-highlighter
|
392 |
msgid "The selected theme with id %s could not be loaded"
|
393 |
msgstr "Выбранная тема (ID %s) не загружена."
|
394 |
|
395 |
-
#: crayon_settings_wp.class.php:
|
396 |
-
#@ crayon-syntax-highlighter
|
397 |
-
msgid "Theme Default"
|
398 |
-
msgstr "Шрифт по умолчанию"
|
399 |
-
|
400 |
-
#: crayon_settings_wp.class.php:552
|
401 |
#@ crayon-syntax-highlighter
|
402 |
msgid "Custom Font Size"
|
403 |
msgstr "Пользовательский размер шрифта"
|
404 |
|
405 |
-
#: crayon_settings_wp.class.php:
|
406 |
#, php-format
|
407 |
#@ crayon-syntax-highlighter
|
408 |
msgid "The selected font with id %s could not be loaded"
|
409 |
msgstr "Выбранный шрифт (ID %s) не может быть загружен."
|
410 |
|
411 |
-
#: crayon_settings_wp.class.php:
|
412 |
#@ crayon-syntax-highlighter
|
413 |
msgid "Enqueue fonts in the header (more efficient)."
|
414 |
msgstr "Загружать шрифты в заголовке страницы (более эффективно)."
|
415 |
|
416 |
-
#: crayon_settings_wp.class.php:
|
417 |
#@ crayon-syntax-highlighter
|
418 |
msgid "Enable plain code view and display"
|
419 |
msgstr "Разрешить показ кода как обычного текста"
|
420 |
|
421 |
-
#: crayon_settings_wp.class.php:
|
422 |
#@ crayon-syntax-highlighter
|
423 |
msgid "Enable plain code toggling"
|
424 |
msgstr "Разрешить переключение показа кода как простого текста"
|
425 |
|
426 |
-
#: crayon_settings_wp.class.php:
|
427 |
#@ crayon-syntax-highlighter
|
428 |
msgid "Show the plain code by default"
|
429 |
msgstr "Показывать код как простой текст по умолчанию"
|
430 |
|
431 |
-
#: crayon_settings_wp.class.php:
|
432 |
#@ crayon-syntax-highlighter
|
433 |
msgid "Enable code copy/paste"
|
434 |
msgstr "Разрешить копирование/вставку кода"
|
435 |
|
436 |
-
#: crayon_settings_wp.class.php:
|
437 |
#@ crayon-syntax-highlighter
|
438 |
msgid "Enable opening code in a window"
|
439 |
msgstr "Разрешить показ кода в отдельном окне"
|
440 |
|
441 |
-
#: crayon_settings_wp.class.php:
|
442 |
-
#@ crayon-syntax-highlighter
|
443 |
-
msgid "Display scrollbars (when needed)"
|
444 |
-
msgstr "Показывать полосы прокрутки (если необходимо)"
|
445 |
-
|
446 |
-
#: crayon_settings_wp.class.php:573
|
447 |
#@ crayon-syntax-highlighter
|
448 |
msgid "Tab size in spaces"
|
449 |
msgstr "Размер табуляций в пробелах"
|
450 |
|
451 |
-
#: crayon_settings_wp.class.php:
|
452 |
#@ crayon-syntax-highlighter
|
453 |
msgid "Remove whitespace surrounding the shortcode content"
|
454 |
msgstr "Удалять пробелы окружающие контент короткого кода"
|
455 |
|
456 |
-
#: crayon_settings_wp.class.php:
|
457 |
#@ crayon-syntax-highlighter
|
458 |
msgid "Capture <pre> tags as Crayons"
|
459 |
msgstr "Определять тег <pre> как код Crayon"
|
460 |
|
461 |
-
#: crayon_settings_wp.class.php:
|
462 |
#@ crayon-syntax-highlighter
|
463 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
464 |
msgstr "Обрабатывать мини-теги, например [php][/php], как теги Crayon."
|
465 |
|
466 |
-
#: crayon_settings_wp.class.php:
|
467 |
#@ crayon-syntax-highlighter
|
468 |
msgid "Enable [plain][/plain] tag."
|
469 |
msgstr "Разрешить теги [plain][/plain]."
|
470 |
|
471 |
-
#: crayon_settings_wp.class.php:
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
474 |
msgstr "Разрешить подсветку смешанных языков."
|
475 |
|
476 |
-
#: crayon_settings_wp.class.php:
|
477 |
#@ crayon-syntax-highlighter
|
478 |
msgid "Show Mixed Language Icon (+)"
|
479 |
msgstr "Показывать иконку смешанных языков (+)"
|
480 |
|
481 |
-
#: crayon_settings_wp.class.php:
|
482 |
#@ crayon-syntax-highlighter
|
483 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
484 |
msgstr "При загрузке локальных файлов, относительный путь к файлу вычислять относительно этого URL"
|
485 |
|
486 |
-
#: crayon_settings_wp.class.php:
|
487 |
#@ crayon-syntax-highlighter
|
488 |
msgid "Followed by your relative URL."
|
489 |
msgstr "Путь будет определён относительно заданного URL."
|
490 |
|
491 |
-
#: crayon_settings_wp.class.php:
|
492 |
#@ crayon-syntax-highlighter
|
493 |
msgid "Clear the cache used to store remote code requests"
|
494 |
msgstr "Очищать кэш используемый для хранения кодов из внешних файлов"
|
495 |
|
496 |
-
#: crayon_settings_wp.class.php:
|
497 |
#@ crayon-syntax-highlighter
|
498 |
msgid "Clear Now"
|
499 |
msgstr "Очистить сейчас"
|
500 |
|
501 |
-
#: crayon_settings_wp.class.php:
|
502 |
#@ crayon-syntax-highlighter
|
503 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
504 |
msgstr "Пытаться загружать таблицы стилей (CSS) и скрипты (Javascript) плагина только тогда, когда это нужно"
|
505 |
|
506 |
-
#: crayon_settings_wp.class.php:
|
507 |
-
#@ crayon-syntax-highlighter
|
508 |
-
msgid "Why?"
|
509 |
-
msgstr "Почему?"
|
510 |
-
|
511 |
-
#: crayon_settings_wp.class.php:596
|
512 |
#@ crayon-syntax-highlighter
|
513 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
514 |
msgstr "Отключить распознавание жестов мышью для сенсорных экранов (например Наведение Мыши)"
|
515 |
|
516 |
-
#: crayon_settings_wp.class.php:
|
517 |
#@ crayon-syntax-highlighter
|
518 |
msgid "Disable animations"
|
519 |
msgstr "Запретить анимацию"
|
520 |
|
521 |
-
#: crayon_settings_wp.class.php:
|
522 |
#@ crayon-syntax-highlighter
|
523 |
msgid "Disable runtime stats"
|
524 |
msgstr "Запретить статистику выполнения"
|
525 |
|
526 |
-
#: crayon_settings_wp.class.php:
|
527 |
#@ crayon-syntax-highlighter
|
528 |
msgid "Log errors for individual Crayons"
|
529 |
msgstr "Журнал ошибок для каждого кода Crayon"
|
530 |
|
531 |
-
#: crayon_settings_wp.class.php:
|
532 |
#@ crayon-syntax-highlighter
|
533 |
msgid "Log system-wide errors"
|
534 |
msgstr "Журнал ошибок для системно-независимых ошибок"
|
535 |
|
536 |
-
#: crayon_settings_wp.class.php:
|
537 |
#@ crayon-syntax-highlighter
|
538 |
msgid "Display custom message for errors"
|
539 |
msgstr "Показывать свое сообщение об ошибках"
|
540 |
|
541 |
-
#: crayon_settings_wp.class.php:
|
542 |
#@ crayon-syntax-highlighter
|
543 |
msgid "Show Log"
|
544 |
msgstr "Показать журнал ошибок"
|
545 |
|
546 |
-
#: crayon_settings_wp.class.php:
|
547 |
#@ crayon-syntax-highlighter
|
548 |
msgid "Clear Log"
|
549 |
msgstr "Очистить журнал ошибок"
|
550 |
|
551 |
-
#: crayon_settings_wp.class.php:
|
552 |
#@ crayon-syntax-highlighter
|
553 |
msgid "Email Admin"
|
554 |
msgstr "Сообщить администратору (e-mail)"
|
555 |
|
556 |
-
#: crayon_settings_wp.class.php:
|
557 |
#@ crayon-syntax-highlighter
|
558 |
msgid "Email Developer"
|
559 |
msgstr "Сообщить разработчику (e-mail)"
|
560 |
|
561 |
-
#: crayon_settings_wp.class.php:
|
562 |
#@ crayon-syntax-highlighter
|
563 |
msgid "The log is currently empty."
|
564 |
msgstr "Журнал ошибок пуст."
|
565 |
|
566 |
-
#: crayon_settings_wp.class.php:
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "The log file exists and is writable."
|
569 |
msgstr "Файл журнала ошибок существует и в него могут заноситься записи."
|
570 |
|
571 |
-
#: crayon_settings_wp.class.php:
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "The log file exists and is not writable."
|
574 |
msgstr "Файл журнала ошибок существует, но в него не могут заноситься записи."
|
575 |
|
576 |
-
#: crayon_settings_wp.class.php:
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "The log file does not exist and is not writable."
|
579 |
msgstr "Файл журнала ошибок не существует и в него не могут заноситься записи."
|
580 |
|
581 |
-
#: crayon_settings_wp.class.php:
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Version"
|
584 |
msgstr "Версия"
|
585 |
|
586 |
-
#: crayon_settings_wp.class.php:
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Developer"
|
589 |
msgstr "Разработчик"
|
590 |
|
591 |
-
#: crayon_settings_wp.class.php:
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
594 |
msgstr "Результат бесчисленных часов тяжелой работы за многие месяцы. Это - текущий проект, поддержите мою мотивацию!"
|
595 |
|
596 |
-
#:
|
597 |
-
#@ crayon-syntax-highlighter
|
598 |
-
msgid "View Settings"
|
599 |
-
msgstr "Показать параметры"
|
600 |
-
|
601 |
-
#: crayon_wp.class.php:423
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Donate"
|
604 |
msgstr "Пожертвовать"
|
605 |
|
606 |
-
#:
|
607 |
#, php-format
|
608 |
#@ crayon-syntax-highlighter
|
609 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
@@ -625,7 +606,7 @@ msgstr ""
|
|
625 |
#: crayon_wp.class.php:0
|
626 |
#@ crayon-syntax-highlighter
|
627 |
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
628 |
-
msgstr ""
|
629 |
|
630 |
#. translators: plugin header field 'Author'
|
631 |
#: crayon_wp.class.php:0
|
@@ -639,9 +620,46 @@ msgstr ""
|
|
639 |
msgid "http://ak.net84.net/"
|
640 |
msgstr ""
|
641 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
642 |
#. translators: plugin header field 'Version'
|
643 |
#: crayon_wp.class.php:0
|
644 |
#@ crayon-syntax-highlighter
|
645 |
-
msgid "1.7.
|
646 |
msgstr ""
|
647 |
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:101
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Hourly"
|
25 |
msgstr "Каждый час"
|
26 |
|
27 |
+
#: crayon_settings.class.php:101
|
28 |
#@ crayon-syntax-highlighter
|
29 |
msgid "Daily"
|
30 |
msgstr "Ежедневно"
|
31 |
|
32 |
+
#: crayon_settings.class.php:102
|
33 |
#@ crayon-syntax-highlighter
|
34 |
msgid "Weekly"
|
35 |
msgstr "Еженедельно"
|
36 |
|
37 |
+
#: crayon_settings.class.php:102
|
38 |
#@ crayon-syntax-highlighter
|
39 |
msgid "Monthly"
|
40 |
msgstr "Ежемесячно"
|
41 |
|
42 |
+
#: crayon_settings.class.php:103
|
43 |
#@ crayon-syntax-highlighter
|
44 |
msgid "Immediately"
|
45 |
msgstr "Немедленно"
|
46 |
|
47 |
+
#: crayon_settings.class.php:130
|
48 |
+
#: crayon_settings.class.php:134
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr "Максимум"
|
52 |
|
53 |
+
#: crayon_settings.class.php:130
|
54 |
+
#: crayon_settings.class.php:134
|
55 |
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr "Минимум"
|
58 |
|
59 |
+
#: crayon_settings.class.php:130
|
60 |
+
#: crayon_settings.class.php:134
|
61 |
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr "Фиксировано"
|
64 |
|
65 |
+
#: crayon_settings.class.php:132
|
66 |
+
#: crayon_settings.class.php:136
|
67 |
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr "Пиксел"
|
70 |
|
71 |
+
#: crayon_settings.class.php:132
|
72 |
+
#: crayon_settings.class.php:136
|
73 |
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr "Процентов"
|
76 |
|
77 |
+
#: crayon_settings.class.php:145
|
78 |
#@ crayon-syntax-highlighter
|
79 |
msgid "None"
|
80 |
msgstr "Нет"
|
81 |
|
82 |
+
#: crayon_settings.class.php:145
|
83 |
#@ crayon-syntax-highlighter
|
84 |
msgid "Left"
|
85 |
msgstr "Влево"
|
86 |
|
87 |
+
#: crayon_settings.class.php:145
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Center"
|
90 |
msgstr "По центру"
|
91 |
|
92 |
+
#: crayon_settings.class.php:145
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "Right"
|
95 |
msgstr "Вправо"
|
96 |
|
97 |
+
#: crayon_settings.class.php:147
|
98 |
+
#: crayon_settings.class.php:169
|
|
|
99 |
#@ crayon-syntax-highlighter
|
100 |
msgid "On MouseOver"
|
101 |
msgstr "При наведении мыши"
|
102 |
|
103 |
+
#: crayon_settings.class.php:147
|
104 |
+
#: crayon_settings.class.php:153
|
|
|
105 |
#@ crayon-syntax-highlighter
|
106 |
msgid "Always"
|
107 |
msgstr "Всегда"
|
108 |
|
109 |
+
#: crayon_settings.class.php:147
|
110 |
+
#: crayon_settings.class.php:153
|
111 |
#@ crayon-syntax-highlighter
|
112 |
msgid "Never"
|
113 |
msgstr "Никогда"
|
114 |
|
115 |
+
#: crayon_settings.class.php:153
|
116 |
#@ crayon-syntax-highlighter
|
117 |
msgid "When Found"
|
118 |
msgstr "Если определён"
|
119 |
|
120 |
+
#: crayon_settings.class.php:169
|
121 |
#@ crayon-syntax-highlighter
|
122 |
msgid "On Double Click"
|
123 |
msgstr "При двойном клике"
|
124 |
|
125 |
+
#: crayon_settings.class.php:169
|
126 |
#@ crayon-syntax-highlighter
|
127 |
msgid "On Single Click"
|
128 |
msgstr "При клике"
|
129 |
|
130 |
+
#: crayon_settings.class.php:169
|
131 |
#@ crayon-syntax-highlighter
|
132 |
msgid "Disable Mouse Events"
|
133 |
msgstr "Запретить отслеживание событий мыши"
|
134 |
|
135 |
+
#: crayon_settings.class.php:177
|
136 |
#@ crayon-syntax-highlighter
|
137 |
msgid "An error has occurred. Please try again later."
|
138 |
msgstr "Произошла ошибка. Попробуйте ещё раз позднее."
|
139 |
|
140 |
#: crayon_settings_wp.class.php:39
|
141 |
+
#: crayon_settings_wp.class.php:82
|
142 |
+
#: crayon_settings_wp.class.php:710
|
143 |
#@ crayon-syntax-highlighter
|
144 |
msgid "Settings"
|
145 |
msgstr "Параметры"
|
146 |
|
147 |
+
#: crayon_settings_wp.class.php:73
|
148 |
#@ crayon-syntax-highlighter
|
149 |
msgid "You do not have sufficient permissions to access this page."
|
150 |
msgstr "У вас недостаточно прав для доступа к этой странице."
|
151 |
|
152 |
+
#: crayon_settings_wp.class.php:94
|
153 |
#@ crayon-syntax-highlighter
|
154 |
msgid "Save Changes"
|
155 |
msgstr "Сохранить параметры"
|
156 |
|
157 |
+
#: crayon_settings_wp.class.php:100
|
158 |
#@ crayon-syntax-highlighter
|
159 |
msgid "Reset Settings"
|
160 |
msgstr "Параметры по умолчанию"
|
161 |
|
162 |
+
#: crayon_settings_wp.class.php:219
|
163 |
#@ crayon-syntax-highlighter
|
164 |
msgid "General"
|
165 |
msgstr "Основные"
|
166 |
|
167 |
+
#: crayon_settings_wp.class.php:220
|
168 |
#@ crayon-syntax-highlighter
|
169 |
msgid "Theme"
|
170 |
msgstr "Тема"
|
171 |
|
172 |
+
#: crayon_settings_wp.class.php:221
|
173 |
#@ crayon-syntax-highlighter
|
174 |
msgid "Font"
|
175 |
msgstr "Шрифт"
|
176 |
|
177 |
+
#: crayon_settings_wp.class.php:222
|
178 |
#@ crayon-syntax-highlighter
|
179 |
msgid "Metrics"
|
180 |
msgstr "Метрики"
|
181 |
|
182 |
+
#: crayon_settings_wp.class.php:223
|
183 |
#@ crayon-syntax-highlighter
|
184 |
msgid "Toolbar"
|
185 |
msgstr "Панель инструментов"
|
186 |
|
187 |
+
#: crayon_settings_wp.class.php:224
|
188 |
#@ crayon-syntax-highlighter
|
189 |
msgid "Lines"
|
190 |
msgstr "Строки"
|
191 |
|
192 |
+
#: crayon_settings_wp.class.php:225
|
193 |
#@ crayon-syntax-highlighter
|
194 |
msgid "Code"
|
195 |
msgstr "Код"
|
196 |
|
197 |
+
#: crayon_settings_wp.class.php:226
|
198 |
#@ crayon-syntax-highlighter
|
199 |
msgid "Languages"
|
200 |
msgstr "Языки"
|
201 |
|
202 |
+
#: crayon_settings_wp.class.php:227
|
203 |
#@ crayon-syntax-highlighter
|
204 |
msgid "Files"
|
205 |
msgstr "Файлы"
|
206 |
|
207 |
+
#: crayon_settings_wp.class.php:228
|
208 |
#@ crayon-syntax-highlighter
|
209 |
msgid "Misc"
|
210 |
msgstr "Разное"
|
211 |
|
212 |
+
#: crayon_settings_wp.class.php:231
|
213 |
#@ crayon-syntax-highlighter
|
214 |
msgid "Debug"
|
215 |
msgstr "Отладка"
|
216 |
|
217 |
+
#: crayon_settings_wp.class.php:232
|
218 |
#@ crayon-syntax-highlighter
|
219 |
msgid "Errors"
|
220 |
msgstr "Ошибки"
|
221 |
|
222 |
+
#: crayon_settings_wp.class.php:233
|
223 |
#@ crayon-syntax-highlighter
|
224 |
msgid "Log"
|
225 |
msgstr "Журнал ошибок"
|
226 |
|
227 |
+
#: crayon_settings_wp.class.php:236
|
228 |
#@ crayon-syntax-highlighter
|
229 |
msgid "About"
|
230 |
msgstr "О плагине"
|
231 |
|
232 |
+
#: crayon_settings_wp.class.php:423
|
233 |
#@ crayon-syntax-highlighter
|
234 |
msgid "Crayon Help"
|
235 |
msgstr "Справка Crayon"
|
236 |
|
237 |
+
#: crayon_settings_wp.class.php:437
|
238 |
#@ crayon-syntax-highlighter
|
239 |
msgid "Height"
|
240 |
msgstr "Высота"
|
241 |
|
242 |
+
#: crayon_settings_wp.class.php:443
|
243 |
#@ crayon-syntax-highlighter
|
244 |
msgid "Width"
|
245 |
msgstr "Ширина"
|
246 |
|
247 |
+
#: crayon_settings_wp.class.php:449
|
248 |
#@ crayon-syntax-highlighter
|
249 |
msgid "Top Margin"
|
250 |
msgstr "Верхний отступ"
|
251 |
|
252 |
+
#: crayon_settings_wp.class.php:450
|
253 |
#@ crayon-syntax-highlighter
|
254 |
msgid "Bottom Margin"
|
255 |
msgstr "Нижний отступ"
|
256 |
|
257 |
+
#: crayon_settings_wp.class.php:451
|
258 |
+
#: crayon_settings_wp.class.php:456
|
259 |
#@ crayon-syntax-highlighter
|
260 |
msgid "Left Margin"
|
261 |
msgstr "Левый отступ"
|
262 |
|
263 |
+
#: crayon_settings_wp.class.php:452
|
264 |
+
#: crayon_settings_wp.class.php:456
|
265 |
#@ crayon-syntax-highlighter
|
266 |
msgid "Right Margin"
|
267 |
msgstr "Правый отступ"
|
268 |
|
269 |
+
#: crayon_settings_wp.class.php:462
|
270 |
#@ crayon-syntax-highlighter
|
271 |
msgid "Horizontal Alignment"
|
272 |
msgstr "Выравнивание по горизонтали"
|
273 |
|
274 |
+
#: crayon_settings_wp.class.php:465
|
275 |
#@ crayon-syntax-highlighter
|
276 |
msgid "Allow floating elements to surround Crayon"
|
277 |
msgstr "Разрешить плавающий режим"
|
278 |
|
279 |
+
#: crayon_settings_wp.class.php:470
|
280 |
#@ crayon-syntax-highlighter
|
281 |
msgid "Display the Toolbar"
|
282 |
msgstr "Показывать панель инструментов"
|
283 |
|
284 |
+
#: crayon_settings_wp.class.php:473
|
285 |
#@ crayon-syntax-highlighter
|
286 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
287 |
msgstr "Использовать, если возможно, наложение панели инструментов на панель кодов без смещения кодов вниз"
|
288 |
|
289 |
+
#: crayon_settings_wp.class.php:474
|
290 |
#@ crayon-syntax-highlighter
|
291 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
292 |
msgstr "Показывать панель инструментов по клику, если она скрыта"
|
293 |
|
294 |
+
#: crayon_settings_wp.class.php:475
|
295 |
#@ crayon-syntax-highlighter
|
296 |
msgid "Delay hiding the toolbar on MouseOut"
|
297 |
msgstr "Задержка исчезания панели инструментов при уходе курсора мыши за пределы панели"
|
298 |
|
299 |
+
#: crayon_settings_wp.class.php:477
|
300 |
#@ crayon-syntax-highlighter
|
301 |
msgid "Display the title when provided"
|
302 |
msgstr "Показывать заголовок, если он задан"
|
303 |
|
304 |
+
#: crayon_settings_wp.class.php:478
|
305 |
#@ crayon-syntax-highlighter
|
306 |
msgid "Display the language"
|
307 |
msgstr "Показывать язык кода"
|
308 |
|
309 |
+
#: crayon_settings_wp.class.php:483
|
310 |
#@ crayon-syntax-highlighter
|
311 |
msgid "Display striped code lines"
|
312 |
msgstr "Использовать чередование цвета строк кода"
|
313 |
|
314 |
+
#: crayon_settings_wp.class.php:484
|
315 |
#@ crayon-syntax-highlighter
|
316 |
msgid "Enable line marking for important lines"
|
317 |
msgstr "Разрешить маркировку важных строк кода"
|
318 |
|
319 |
+
#: crayon_settings_wp.class.php:485
|
320 |
#@ crayon-syntax-highlighter
|
321 |
msgid "Display line numbers by default"
|
322 |
msgstr "Показывать нумерацию строк по умолчанию"
|
323 |
|
324 |
+
#: crayon_settings_wp.class.php:486
|
325 |
#@ crayon-syntax-highlighter
|
326 |
msgid "Enable line number toggling"
|
327 |
msgstr "Разрешить переключение нумерации строк"
|
328 |
|
329 |
+
#: crayon_settings_wp.class.php:487
|
330 |
#@ crayon-syntax-highlighter
|
331 |
msgid "Start line numbers from"
|
332 |
msgstr "Начинать нумерацию строк с"
|
333 |
|
334 |
+
#: crayon_settings_wp.class.php:497
|
335 |
#@ crayon-syntax-highlighter
|
336 |
msgid "When no language is provided, use the fallback"
|
337 |
msgstr "Если язык не поддерживается, использовать"
|
338 |
|
339 |
+
#: crayon_settings_wp.class.php:504
|
340 |
#, php-format
|
341 |
#@ crayon-syntax-highlighter
|
342 |
msgid "%d language has been detected."
|
345 |
msgstr[1] "Обнаружено %d языка."
|
346 |
msgstr[2] "Обнаружено %d языков."
|
347 |
|
348 |
+
#: crayon_settings_wp.class.php:505
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Parsing was successful"
|
351 |
msgstr "Разбор произведён успешно"
|
352 |
|
353 |
+
#: crayon_settings_wp.class.php:505
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Parsing was unsuccessful"
|
356 |
msgstr "Разбор закончился неудачей"
|
357 |
|
358 |
+
#: crayon_settings_wp.class.php:511
|
359 |
#, php-format
|
360 |
#@ crayon-syntax-highlighter
|
361 |
msgid "The selected language with id %s could not be loaded"
|
362 |
msgstr "Выбранный язык (ID %s) не загружен."
|
363 |
|
364 |
+
#: crayon_settings_wp.class.php:515
|
365 |
#@ crayon-syntax-highlighter
|
366 |
msgid "Show Languages"
|
367 |
msgstr "Показать языки"
|
368 |
|
369 |
+
#: crayon_settings_wp.class.php:552
|
370 |
#@ crayon-syntax-highlighter
|
371 |
msgid "Enable Live Preview"
|
372 |
msgstr "Разрешить показ примера"
|
373 |
|
374 |
+
#: crayon_settings_wp.class.php:554
|
375 |
#@ crayon-syntax-highlighter
|
376 |
msgid "Enqueue themes in the header (more efficient)."
|
377 |
msgstr "Загружать темы в заголовке страницы (более эффективно)."
|
378 |
|
379 |
+
#: crayon_settings_wp.class.php:554
|
380 |
+
#: crayon_settings_wp.class.php:583
|
381 |
+
#: crayon_settings_wp.class.php:600
|
382 |
+
#: crayon_settings_wp.class.php:601
|
383 |
+
#: crayon_settings_wp.class.php:602
|
384 |
+
#: crayon_settings_wp.class.php:618
|
385 |
+
#: crayon_settings_wp.class.php:619
|
386 |
#@ crayon-syntax-highlighter
|
387 |
msgid "Learn More"
|
388 |
msgstr "Подробнее"
|
389 |
|
390 |
+
#: crayon_settings_wp.class.php:557
|
391 |
#, php-format
|
392 |
#@ crayon-syntax-highlighter
|
393 |
msgid "The selected theme with id %s could not be loaded"
|
394 |
msgstr "Выбранная тема (ID %s) не загружена."
|
395 |
|
396 |
+
#: crayon_settings_wp.class.php:575
|
|
|
|
|
|
|
|
|
|
|
397 |
#@ crayon-syntax-highlighter
|
398 |
msgid "Custom Font Size"
|
399 |
msgstr "Пользовательский размер шрифта"
|
400 |
|
401 |
+
#: crayon_settings_wp.class.php:580
|
402 |
#, php-format
|
403 |
#@ crayon-syntax-highlighter
|
404 |
msgid "The selected font with id %s could not be loaded"
|
405 |
msgstr "Выбранный шрифт (ID %s) не может быть загружен."
|
406 |
|
407 |
+
#: crayon_settings_wp.class.php:583
|
408 |
#@ crayon-syntax-highlighter
|
409 |
msgid "Enqueue fonts in the header (more efficient)."
|
410 |
msgstr "Загружать шрифты в заголовке страницы (более эффективно)."
|
411 |
|
412 |
+
#: crayon_settings_wp.class.php:587
|
413 |
#@ crayon-syntax-highlighter
|
414 |
msgid "Enable plain code view and display"
|
415 |
msgstr "Разрешить показ кода как обычного текста"
|
416 |
|
417 |
+
#: crayon_settings_wp.class.php:590
|
418 |
#@ crayon-syntax-highlighter
|
419 |
msgid "Enable plain code toggling"
|
420 |
msgstr "Разрешить переключение показа кода как простого текста"
|
421 |
|
422 |
+
#: crayon_settings_wp.class.php:591
|
423 |
#@ crayon-syntax-highlighter
|
424 |
msgid "Show the plain code by default"
|
425 |
msgstr "Показывать код как простой текст по умолчанию"
|
426 |
|
427 |
+
#: crayon_settings_wp.class.php:592
|
428 |
#@ crayon-syntax-highlighter
|
429 |
msgid "Enable code copy/paste"
|
430 |
msgstr "Разрешить копирование/вставку кода"
|
431 |
|
432 |
+
#: crayon_settings_wp.class.php:594
|
433 |
#@ crayon-syntax-highlighter
|
434 |
msgid "Enable opening code in a window"
|
435 |
msgstr "Разрешить показ кода в отдельном окне"
|
436 |
|
437 |
+
#: crayon_settings_wp.class.php:596
|
|
|
|
|
|
|
|
|
|
|
438 |
#@ crayon-syntax-highlighter
|
439 |
msgid "Tab size in spaces"
|
440 |
msgstr "Размер табуляций в пробелах"
|
441 |
|
442 |
+
#: crayon_settings_wp.class.php:598
|
443 |
#@ crayon-syntax-highlighter
|
444 |
msgid "Remove whitespace surrounding the shortcode content"
|
445 |
msgstr "Удалять пробелы окружающие контент короткого кода"
|
446 |
|
447 |
+
#: crayon_settings_wp.class.php:599
|
448 |
#@ crayon-syntax-highlighter
|
449 |
msgid "Capture <pre> tags as Crayons"
|
450 |
msgstr "Определять тег <pre> как код Crayon"
|
451 |
|
452 |
+
#: crayon_settings_wp.class.php:600
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
455 |
msgstr "Обрабатывать мини-теги, например [php][/php], как теги Crayon."
|
456 |
|
457 |
+
#: crayon_settings_wp.class.php:601
|
458 |
#@ crayon-syntax-highlighter
|
459 |
msgid "Enable [plain][/plain] tag."
|
460 |
msgstr "Разрешить теги [plain][/plain]."
|
461 |
|
462 |
+
#: crayon_settings_wp.class.php:602
|
463 |
#@ crayon-syntax-highlighter
|
464 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
465 |
msgstr "Разрешить подсветку смешанных языков."
|
466 |
|
467 |
+
#: crayon_settings_wp.class.php:603
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "Show Mixed Language Icon (+)"
|
470 |
msgstr "Показывать иконку смешанных языков (+)"
|
471 |
|
472 |
+
#: crayon_settings_wp.class.php:608
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
475 |
msgstr "При загрузке локальных файлов, относительный путь к файлу вычислять относительно этого URL"
|
476 |
|
477 |
+
#: crayon_settings_wp.class.php:611
|
478 |
#@ crayon-syntax-highlighter
|
479 |
msgid "Followed by your relative URL."
|
480 |
msgstr "Путь будет определён относительно заданного URL."
|
481 |
|
482 |
+
#: crayon_settings_wp.class.php:615
|
483 |
#@ crayon-syntax-highlighter
|
484 |
msgid "Clear the cache used to store remote code requests"
|
485 |
msgstr "Очищать кэш используемый для хранения кодов из внешних файлов"
|
486 |
|
487 |
+
#: crayon_settings_wp.class.php:617
|
488 |
#@ crayon-syntax-highlighter
|
489 |
msgid "Clear Now"
|
490 |
msgstr "Очистить сейчас"
|
491 |
|
492 |
+
#: crayon_settings_wp.class.php:618
|
493 |
#@ crayon-syntax-highlighter
|
494 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
495 |
msgstr "Пытаться загружать таблицы стилей (CSS) и скрипты (Javascript) плагина только тогда, когда это нужно"
|
496 |
|
497 |
+
#: crayon_settings_wp.class.php:621
|
|
|
|
|
|
|
|
|
|
|
498 |
#@ crayon-syntax-highlighter
|
499 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
500 |
msgstr "Отключить распознавание жестов мышью для сенсорных экранов (например Наведение Мыши)"
|
501 |
|
502 |
+
#: crayon_settings_wp.class.php:622
|
503 |
#@ crayon-syntax-highlighter
|
504 |
msgid "Disable animations"
|
505 |
msgstr "Запретить анимацию"
|
506 |
|
507 |
+
#: crayon_settings_wp.class.php:623
|
508 |
#@ crayon-syntax-highlighter
|
509 |
msgid "Disable runtime stats"
|
510 |
msgstr "Запретить статистику выполнения"
|
511 |
|
512 |
+
#: crayon_settings_wp.class.php:630
|
513 |
#@ crayon-syntax-highlighter
|
514 |
msgid "Log errors for individual Crayons"
|
515 |
msgstr "Журнал ошибок для каждого кода Crayon"
|
516 |
|
517 |
+
#: crayon_settings_wp.class.php:631
|
518 |
#@ crayon-syntax-highlighter
|
519 |
msgid "Log system-wide errors"
|
520 |
msgstr "Журнал ошибок для системно-независимых ошибок"
|
521 |
|
522 |
+
#: crayon_settings_wp.class.php:632
|
523 |
#@ crayon-syntax-highlighter
|
524 |
msgid "Display custom message for errors"
|
525 |
msgstr "Показывать свое сообщение об ошибках"
|
526 |
|
527 |
+
#: crayon_settings_wp.class.php:644
|
528 |
#@ crayon-syntax-highlighter
|
529 |
msgid "Show Log"
|
530 |
msgstr "Показать журнал ошибок"
|
531 |
|
532 |
+
#: crayon_settings_wp.class.php:646
|
533 |
#@ crayon-syntax-highlighter
|
534 |
msgid "Clear Log"
|
535 |
msgstr "Очистить журнал ошибок"
|
536 |
|
537 |
+
#: crayon_settings_wp.class.php:647
|
538 |
#@ crayon-syntax-highlighter
|
539 |
msgid "Email Admin"
|
540 |
msgstr "Сообщить администратору (e-mail)"
|
541 |
|
542 |
+
#: crayon_settings_wp.class.php:649
|
543 |
#@ crayon-syntax-highlighter
|
544 |
msgid "Email Developer"
|
545 |
msgstr "Сообщить разработчику (e-mail)"
|
546 |
|
547 |
+
#: crayon_settings_wp.class.php:651
|
548 |
#@ crayon-syntax-highlighter
|
549 |
msgid "The log is currently empty."
|
550 |
msgstr "Журнал ошибок пуст."
|
551 |
|
552 |
+
#: crayon_settings_wp.class.php:653
|
553 |
#@ crayon-syntax-highlighter
|
554 |
msgid "The log file exists and is writable."
|
555 |
msgstr "Файл журнала ошибок существует и в него могут заноситься записи."
|
556 |
|
557 |
+
#: crayon_settings_wp.class.php:653
|
558 |
#@ crayon-syntax-highlighter
|
559 |
msgid "The log file exists and is not writable."
|
560 |
msgstr "Файл журнала ошибок существует, но в него не могут заноситься записи."
|
561 |
|
562 |
+
#: crayon_settings_wp.class.php:655
|
563 |
#@ crayon-syntax-highlighter
|
564 |
msgid "The log file does not exist and is not writable."
|
565 |
msgstr "Файл журнала ошибок не существует и в него не могут заноситься записи."
|
566 |
|
567 |
+
#: crayon_settings_wp.class.php:665
|
568 |
#@ crayon-syntax-highlighter
|
569 |
msgid "Version"
|
570 |
msgstr "Версия"
|
571 |
|
572 |
+
#: crayon_settings_wp.class.php:667
|
573 |
#@ crayon-syntax-highlighter
|
574 |
msgid "Developer"
|
575 |
msgstr "Разработчик"
|
576 |
|
577 |
+
#: crayon_settings_wp.class.php:698
|
578 |
#@ crayon-syntax-highlighter
|
579 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
580 |
msgstr "Результат бесчисленных часов тяжелой работы за многие месяцы. Это - текущий проект, поддержите мою мотивацию!"
|
581 |
|
582 |
+
#: crayon_settings_wp.class.php:714
|
|
|
|
|
|
|
|
|
|
|
583 |
#@ crayon-syntax-highlighter
|
584 |
msgid "Donate"
|
585 |
msgstr "Пожертвовать"
|
586 |
|
587 |
+
#: crayon_settings_wp.class.php:549
|
588 |
#, php-format
|
589 |
#@ crayon-syntax-highlighter
|
590 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
606 |
#: crayon_wp.class.php:0
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
609 |
+
msgstr "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
610 |
|
611 |
#. translators: plugin header field 'Author'
|
612 |
#: crayon_wp.class.php:0
|
620 |
msgid "http://ak.net84.net/"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: crayon_settings_wp.class.php:545
|
624 |
+
#@ crayon-syntax-highlighter
|
625 |
+
msgid "Loading..."
|
626 |
+
msgstr "погрузка"
|
627 |
+
|
628 |
+
#: crayon_settings_wp.class.php:545
|
629 |
+
#: crayon_settings_wp.class.php:712
|
630 |
+
#: util/theme-editor/editor.php:14
|
631 |
+
#@ crayon-syntax-highlighter
|
632 |
+
msgid "Theme Editor"
|
633 |
+
msgstr "Тема редактор"
|
634 |
+
|
635 |
+
#: crayon_settings_wp.class.php:595
|
636 |
+
#@ crayon-syntax-highlighter
|
637 |
+
msgid "Always display scrollbars"
|
638 |
+
msgstr "Всегда отображать полосы прокрутки"
|
639 |
+
|
640 |
+
#: crayon_settings_wp.class.php:619
|
641 |
+
#@ crayon-syntax-highlighter
|
642 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
643 |
+
msgstr "Отключить постановки для шаблонов страниц, которые могут содержать Loop."
|
644 |
+
|
645 |
+
#: crayon_settings_wp.class.php:620
|
646 |
+
#@ crayon-syntax-highlighter
|
647 |
+
msgid "Load Crayons only from the main Wordpress query"
|
648 |
+
msgstr "Нагрузка Мелки только из основного запроса Wordpress"
|
649 |
+
|
650 |
+
#: crayon_settings_wp.class.php:668
|
651 |
+
#@ crayon-syntax-highlighter
|
652 |
+
msgid "Translators"
|
653 |
+
msgstr "Переводчики"
|
654 |
+
|
655 |
#. translators: plugin header field 'Version'
|
656 |
#: crayon_wp.class.php:0
|
657 |
#@ crayon-syntax-highlighter
|
658 |
+
msgid "1.7.25"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: util/theme-editor/editor.php:16
|
662 |
+
#@ crayon-syntax-highlighter
|
663 |
+
msgid "Back To Settings"
|
664 |
+
msgstr "Вернуться к настройкам"
|
665 |
+
|
util/preview.php
CHANGED
@@ -37,7 +37,7 @@ if ($theme_id != NULL) {
|
|
37 |
}
|
38 |
|
39 |
$font_id = $crayon->setting_val(CrayonSettings::FONT);
|
40 |
-
if ($font_id != NULL
|
41 |
echo CrayonResources::fonts()->get_css($font_id);
|
42 |
}
|
43 |
|
@@ -64,6 +64,6 @@ $crayon->title('Sample Code');
|
|
64 |
$crayon->marked('5-7');
|
65 |
$crayon->output($highlight = true, $nums = true, $print = true);
|
66 |
echo '</div>';
|
67 |
-
|
68 |
|
69 |
?>
|
37 |
}
|
38 |
|
39 |
$font_id = $crayon->setting_val(CrayonSettings::FONT);
|
40 |
+
if ($font_id != NULL /*&& $font_id != CrayonFonts::DEFAULT_FONT*/) {
|
41 |
echo CrayonResources::fonts()->get_css($font_id);
|
42 |
}
|
43 |
|
64 |
$crayon->marked('5-7');
|
65 |
$crayon->output($highlight = true, $nums = true, $print = true);
|
66 |
echo '</div>';
|
67 |
+
crayon_load_plugin_textdomain();
|
68 |
|
69 |
?>
|