Version Description
- Fixed a visual artifact of loading that caused the plain code to be partially visible
Download this release
Release Info
Developer | akarmenia |
Plugin | Crayon Syntax Highlighter |
Version | 1.7.10 |
Comparing to | |
See all releases |
Code changes from version 1.7.5 to 1.7.10
- crayon_formatter.class.php +9 -4
- crayon_settings.class.php +6 -2
- crayon_settings_wp.class.php +7 -5
- crayon_wp.class.php +11 -3
- css/style.css +2 -1
- js/crayon.js +20 -10
- js/crayon_admin.js +220 -207
- langs/default/default.txt +1 -1
- langs/java/java.txt +2 -2
- langs/monkey/modifier.txt +1 -0
- langs/monkey/monkey.txt +23 -0
- langs/monkey/operator.txt +10 -0
- langs/monkey/reserved.txt +8 -0
- langs/monkey/statement.txt +8 -0
- langs/objc/modifier.txt +3 -0
- langs/objc/objc.txt +2 -1
- readme.txt +22 -1
- trans/crayon-syntax-highlighter-de_DE.mo +0 -0
- trans/crayon-syntax-highlighter-de_DE.po +127 -71
- trans/crayon-syntax-highlighter-es_ES.mo +0 -0
- trans/crayon-syntax-highlighter-es_ES.po +128 -72
- trans/crayon-syntax-highlighter-fr_FR.mo +0 -0
- trans/crayon-syntax-highlighter-fr_FR.po +128 -72
- trans/crayon-syntax-highlighter-it_IT.mo +0 -0
- trans/crayon-syntax-highlighter-it_IT.po +128 -72
- trans/crayon-syntax-highlighter-ja.mo +0 -0
- trans/crayon-syntax-highlighter-ja.po +128 -72
- trans/crayon-syntax-highlighter-ru_RU.po +128 -72
- util/help.htm +19 -3
- util/preview.php +7 -1
crayon_formatter.class.php
CHANGED
@@ -186,20 +186,25 @@ class CrayonFormatter {
|
|
186 |
default :
|
187 |
$plain_settings = '';
|
188 |
}
|
|
|
|
|
|
|
189 |
$tab = $hl->setting_val(CrayonSettings::TAB_SIZE);
|
190 |
// TODO doesn't seem to work at the moment
|
191 |
$plain_style = "-moz-tab-size:$tab; -o-tab-size:$tab; -webkit-tab-size:$tab; tab-size:$tab;";
|
192 |
$readonly = $touch ? '' : 'readonly';
|
|
|
193 |
$print_plain = '<textarea class="crayon-plain" settings="' . $plain_settings . '" '. $readonly .' wrap="off" style="' . $plain_style .'">' . self::clean_code($hl->code()) . '</textarea>';
|
194 |
-
$print_plain_button = '<a href="#" class="crayon-plain-button crayon-button" title="Toggle Plain Code" onclick="CrayonSyntax.toggle_plain(\'' . $uid . '\'); return false;"></a>';
|
195 |
$print_copy_button = !$touch && $hl->setting_val(CrayonSettings::PLAIN) && $hl->setting_val(CrayonSettings::COPY) ?
|
196 |
'<a href="#" class="crayon-copy-button crayon-button" title="Copy Plain Code" onclick="CrayonSyntax.copy_plain(\'' . $uid . '\'); return false;"></a>' : '';
|
197 |
-
$print_popup_button = $hl->setting_val(CrayonSettings::POPUP) ?
|
198 |
-
'<a href="#" class="crayon-popup-button crayon-button" title="Open Code in Window" onclick="return false;"></a>' : '';
|
199 |
} else {
|
200 |
-
$print_plain = $plain_settings = $print_plain_button = $print_copy_button =
|
201 |
}
|
202 |
|
|
|
|
|
|
|
203 |
if ($hl->setting_val(CrayonSettings::NUMS_TOGGLE)) {
|
204 |
$print_nums_button = '<a href="#" class="crayon-nums-button crayon-button" title="Toggle Line Numbers" onclick="CrayonSyntax.toggle_nums(\'' . $uid . '\'); return false;"></a>';
|
205 |
} else {
|
186 |
default :
|
187 |
$plain_settings = '';
|
188 |
}
|
189 |
+
if ($hl->setting_val(CrayonSettings::SHOW_PLAIN_DEFAULT)) {
|
190 |
+
$plain_settings .= ' show-plain-default';
|
191 |
+
}
|
192 |
$tab = $hl->setting_val(CrayonSettings::TAB_SIZE);
|
193 |
// TODO doesn't seem to work at the moment
|
194 |
$plain_style = "-moz-tab-size:$tab; -o-tab-size:$tab; -webkit-tab-size:$tab; tab-size:$tab;";
|
195 |
$readonly = $touch ? '' : 'readonly';
|
196 |
+
$print_plain = $print_plain_button = '';
|
197 |
$print_plain = '<textarea class="crayon-plain" settings="' . $plain_settings . '" '. $readonly .' wrap="off" style="' . $plain_style .'">' . self::clean_code($hl->code()) . '</textarea>';
|
198 |
+
$print_plain_button = $hl->setting_val(CrayonSettings::PLAIN_TOGGLE) ? '<a href="#" class="crayon-plain-button crayon-button" title="Toggle Plain Code" onclick="CrayonSyntax.toggle_plain(\'' . $uid . '\'); return false;"></a>' : '';
|
199 |
$print_copy_button = !$touch && $hl->setting_val(CrayonSettings::PLAIN) && $hl->setting_val(CrayonSettings::COPY) ?
|
200 |
'<a href="#" class="crayon-copy-button crayon-button" title="Copy Plain Code" onclick="CrayonSyntax.copy_plain(\'' . $uid . '\'); return false;"></a>' : '';
|
|
|
|
|
201 |
} else {
|
202 |
+
$print_plain = $plain_settings = $print_plain_button = $print_copy_button = '';
|
203 |
}
|
204 |
|
205 |
+
$print_popup_button = $hl->setting_val(CrayonSettings::POPUP) ?
|
206 |
+
'<a href="#" class="crayon-popup-button crayon-button" title="Open Code in Window" onclick="return false;"></a>' : '';
|
207 |
+
|
208 |
if ($hl->setting_val(CrayonSettings::NUMS_TOGGLE)) {
|
209 |
$print_nums_button = '<a href="#" class="crayon-nums-button crayon-button" title="Toggle Line Numbers" onclick="CrayonSyntax.toggle_nums(\'' . $uid . '\'); return false;"></a>';
|
210 |
} else {
|
crayon_settings.class.php
CHANGED
@@ -56,6 +56,7 @@ class CrayonSettings {
|
|
56 |
const LOCAL_PATH = 'local-path';
|
57 |
const SCROLL = 'scroll';
|
58 |
const PLAIN = 'plain';
|
|
|
59 |
const SHOW_PLAIN = 'show-plain';
|
60 |
const DISABLE_RUNTIME = 'runtime';
|
61 |
const EXP_SCROLL = 'exp-scroll';
|
@@ -73,6 +74,7 @@ class CrayonSettings {
|
|
73 |
const MIXED = 'mixed';
|
74 |
const SHOW_MIXED = 'show_mixed';
|
75 |
const PLAIN_TAG = 'plain_tag';
|
|
|
76 |
|
77 |
private static $cache_array;
|
78 |
|
@@ -153,9 +155,11 @@ class CrayonSettings {
|
|
153 |
new CrayonSetting(self::FALLBACK_LANG, CrayonLangs::DEFAULT_LANG),
|
154 |
new CrayonSetting(self::LOCAL_PATH, ''),
|
155 |
new CrayonSetting(self::SCROLL, array(crayon__('On MouseOver'), crayon__('Always'))),
|
156 |
-
new CrayonSetting(self::PLAIN, TRUE),
|
|
|
|
|
157 |
new CrayonSetting(self::SHOW_PLAIN,
|
158 |
-
array(crayon__('On Double Click'), crayon__('On Single Click'), crayon__('On MouseOver'), crayon__('
|
159 |
new CrayonSetting(self::DISABLE_ANIM, FALSE),
|
160 |
new CrayonSetting(self::TOUCHSCREEN, TRUE),
|
161 |
new CrayonSetting(self::DISABLE_RUNTIME, FALSE),
|
56 |
const LOCAL_PATH = 'local-path';
|
57 |
const SCROLL = 'scroll';
|
58 |
const PLAIN = 'plain';
|
59 |
+
const PLAIN_TOGGLE = 'plain-toggle';
|
60 |
const SHOW_PLAIN = 'show-plain';
|
61 |
const DISABLE_RUNTIME = 'runtime';
|
62 |
const EXP_SCROLL = 'exp-scroll';
|
74 |
const MIXED = 'mixed';
|
75 |
const SHOW_MIXED = 'show_mixed';
|
76 |
const PLAIN_TAG = 'plain_tag';
|
77 |
+
const SHOW_PLAIN_DEFAULT = 'show-plain-default';
|
78 |
|
79 |
private static $cache_array;
|
80 |
|
155 |
new CrayonSetting(self::FALLBACK_LANG, CrayonLangs::DEFAULT_LANG),
|
156 |
new CrayonSetting(self::LOCAL_PATH, ''),
|
157 |
new CrayonSetting(self::SCROLL, array(crayon__('On MouseOver'), crayon__('Always'))),
|
158 |
+
new CrayonSetting(self::PLAIN, TRUE),
|
159 |
+
new CrayonSetting(self::PLAIN_TOGGLE, TRUE),
|
160 |
+
new CrayonSetting(self::SHOW_PLAIN_DEFAULT, FALSE),
|
161 |
new CrayonSetting(self::SHOW_PLAIN,
|
162 |
+
array(crayon__('On Double Click'), crayon__('On Single Click'), crayon__('On MouseOver'), crayon__('Disable Mouse Events'))),
|
163 |
new CrayonSetting(self::DISABLE_ANIM, FALSE),
|
164 |
new CrayonSetting(self::TOUCHSCREEN, TRUE),
|
165 |
new CrayonSetting(self::DISABLE_RUNTIME, FALSE),
|
crayon_settings_wp.class.php
CHANGED
@@ -59,10 +59,10 @@ class CrayonSettingsWP {
|
|
59 |
|
60 |
public static function admin_scripts() {
|
61 |
global $CRAYON_VERSION;
|
62 |
-
wp_enqueue_script('crayon_jquery', plugins_url(CRAYON_JQUERY, __FILE__), array(), $CRAYON_VERSION);
|
63 |
-
wp_enqueue_script('
|
64 |
-
wp_enqueue_script('crayon_admin_js', plugins_url(CRAYON_JS_ADMIN, __FILE__), array('
|
65 |
-
wp_enqueue_script('
|
66 |
}
|
67 |
|
68 |
public static function settings() {
|
@@ -504,7 +504,7 @@ class CrayonSettingsWP {
|
|
504 |
echo '<br/><span class="crayon-error">', sprintf(crayon__('The selected language with id %s could not be loaded'), '<strong>'.$db_fallback.'</strong>'), '. </span>';
|
505 |
}
|
506 |
// Language parsing info
|
507 |
-
echo '<a href="#" id="show-lang" onclick="show_langs(\'', plugins_url(CRAYON_LIST_LANGS_PHP, __FILE__),
|
508 |
'\'); return false;">', crayon__('Show Languages'), '</a><div id="lang-info"></div>';
|
509 |
} else {
|
510 |
echo 'No languages could be parsed.';
|
@@ -560,6 +560,8 @@ class CrayonSettingsWP {
|
|
560 |
self::checkbox(array(CrayonSettings::PLAIN, crayon__('Enable plain code view and display').': '), FALSE);
|
561 |
self::dropdown(CrayonSettings::SHOW_PLAIN);
|
562 |
echo '<span id="crayon-copy-check">';
|
|
|
|
|
563 |
self::checkbox(array(CrayonSettings::COPY, crayon__('Enable code copy/paste')));
|
564 |
echo '</span>';
|
565 |
self::checkbox(array(CrayonSettings::POPUP, crayon__('Enable opening code in a window')));
|
59 |
|
60 |
public static function admin_scripts() {
|
61 |
global $CRAYON_VERSION;
|
62 |
+
//wp_enqueue_script('crayon_jquery', plugins_url(CRAYON_JQUERY, __FILE__), array(), $CRAYON_VERSION);
|
63 |
+
wp_enqueue_script('crayon_js', plugins_url(CRAYON_JS, __FILE__), array('jquery'), $CRAYON_VERSION);
|
64 |
+
wp_enqueue_script('crayon_admin_js', plugins_url(CRAYON_JS_ADMIN, __FILE__), array('jquery'), $CRAYON_VERSION);
|
65 |
+
wp_enqueue_script('crayon_jquery_popup', plugins_url(CRAYON_JQUERY_POPUP, __FILE__), array('jquery'), $CRAYON_VERSION);
|
66 |
}
|
67 |
|
68 |
public static function settings() {
|
504 |
echo '<br/><span class="crayon-error">', sprintf(crayon__('The selected language with id %s could not be loaded'), '<strong>'.$db_fallback.'</strong>'), '. </span>';
|
505 |
}
|
506 |
// Language parsing info
|
507 |
+
echo '<a href="#" id="show-lang" onclick="CrayonSyntaxAdmin.show_langs(\'', plugins_url(CRAYON_LIST_LANGS_PHP, __FILE__),
|
508 |
'\'); return false;">', crayon__('Show Languages'), '</a><div id="lang-info"></div>';
|
509 |
} else {
|
510 |
echo 'No languages could be parsed.';
|
560 |
self::checkbox(array(CrayonSettings::PLAIN, crayon__('Enable plain code view and display').': '), FALSE);
|
561 |
self::dropdown(CrayonSettings::SHOW_PLAIN);
|
562 |
echo '<span id="crayon-copy-check">';
|
563 |
+
self::checkbox(array(CrayonSettings::PLAIN_TOGGLE, crayon__('Enable plain code toggling')));
|
564 |
+
self::checkbox(array(CrayonSettings::SHOW_PLAIN_DEFAULT, crayon__('Show the plain code by default')));
|
565 |
self::checkbox(array(CrayonSettings::COPY, crayon__('Enable code copy/paste')));
|
566 |
echo '</span>';
|
567 |
self::checkbox(array(CrayonSettings::POPUP, crayon__('Enable opening code in a window')));
|
crayon_wp.class.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Crayon Syntax Highlighter
|
4 |
-
Plugin URI: http://ak.net84.net/
|
5 |
-
Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
|
6 |
-
Version: 1.7.
|
7 |
Author: Aram Kocharyan
|
8 |
Author URI: http://ak.net84.net/
|
9 |
Text Domain: crayon-syntax-highlighter
|
@@ -363,6 +363,12 @@ class CrayonWP {
|
|
363 |
load_plugin_textdomain(CRAYON_DOMAIN, false, CRAYON_DIR.CRAYON_TRANS_DIR);
|
364 |
}
|
365 |
|
|
|
|
|
|
|
|
|
|
|
|
|
366 |
public static function install() {
|
367 |
|
368 |
}
|
@@ -384,5 +390,7 @@ if (defined('ABSPATH')) {
|
|
384 |
add_filter('the_content', 'CrayonWP::the_content');
|
385 |
add_filter('the_excerpt', 'CrayonWP::the_excerpt');
|
386 |
add_action('template_redirect', 'CrayonWP::wp_head');
|
|
|
|
|
387 |
}
|
388 |
?>
|
1 |
<?php
|
2 |
/*
|
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.10
|
7 |
Author: Aram Kocharyan
|
8 |
Author URI: http://ak.net84.net/
|
9 |
Text Domain: crayon-syntax-highlighter
|
363 |
load_plugin_textdomain(CRAYON_DOMAIN, false, CRAYON_DIR.CRAYON_TRANS_DIR);
|
364 |
}
|
365 |
|
366 |
+
public static function plugin_row_meta($meta) {
|
367 |
+
$meta[] = '<a href="options-general.php?page=crayon_settings">' . crayon__('View Settings') . '</a>';
|
368 |
+
$meta[] = '<a href="http://ak.net84.net/files/donate.php" target="_blank">' . crayon__('Donate') . '</a>';
|
369 |
+
return $meta;
|
370 |
+
}
|
371 |
+
|
372 |
public static function install() {
|
373 |
|
374 |
}
|
390 |
add_filter('the_content', 'CrayonWP::the_content');
|
391 |
add_filter('the_excerpt', 'CrayonWP::the_excerpt');
|
392 |
add_action('template_redirect', 'CrayonWP::wp_head');
|
393 |
+
|
394 |
+
add_filter('plugin_row_meta', 'CrayonWP::plugin_row_meta');
|
395 |
}
|
396 |
?>
|
css/style.css
CHANGED
@@ -256,8 +256,9 @@ coloring etc.
|
|
256 |
}
|
257 |
|
258 |
.crayon-syntax .crayon-plain {
|
|
|
|
|
259 |
padding: 0 5px;
|
260 |
-
display: none;
|
261 |
margin: 0px;
|
262 |
resize: none; /* vertical */
|
263 |
border: none;
|
256 |
}
|
257 |
|
258 |
.crayon-syntax .crayon-plain {
|
259 |
+
position: absolute;
|
260 |
+
opacity: 0;
|
261 |
padding: 0 5px;
|
|
|
262 |
margin: 0px;
|
263 |
resize: none; /* vertical */
|
264 |
border: none;
|
js/crayon.js
CHANGED
@@ -2,9 +2,17 @@
|
|
2 |
// Crayon Syntax Highlighter JavaScript
|
3 |
|
4 |
// Contants
|
5 |
-
|
6 |
-
var
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
// jQuery
|
10 |
|
@@ -73,7 +81,6 @@ var CrayonSyntax = new function() {
|
|
73 |
crayon[uid].time = 1;
|
74 |
|
75 |
// Set plain
|
76 |
-
jQuery(CRAYON_PLAIN).css('position', 'absolute');
|
77 |
jQuery(CRAYON_PLAIN).css('z-index', 0);
|
78 |
|
79 |
// Remember CSS dimensions
|
@@ -96,6 +103,10 @@ var CrayonSyntax = new function() {
|
|
96 |
crayon[uid].scroll_block_fix = true;
|
97 |
}
|
98 |
|
|
|
|
|
|
|
|
|
99 |
// If nums hidden by default
|
100 |
if (nums.filter('[settings~="hide"]').length != 0) {
|
101 |
nums_content.ready(function() {
|
@@ -189,6 +200,9 @@ var CrayonSyntax = new function() {
|
|
189 |
.mouseleave(function() { CrayonSyntax.toggle_plain(uid, false); });
|
190 |
nums_button.hide();
|
191 |
}
|
|
|
|
|
|
|
192 |
}
|
193 |
// Scrollbar show events
|
194 |
if (!touchscreen && jQuery(this).filter('[settings~="scroll-mouseover"]').length != 0) {
|
@@ -258,7 +272,7 @@ var CrayonSyntax = new function() {
|
|
258 |
toolbar_toggle(uid, true);
|
259 |
|
260 |
key = crayon[uid].mac ? '\u2318' : 'CTRL';
|
261 |
-
text = 'Press ' + key + '+C to Copy, ' + key + '+
|
262 |
crayon_info(uid, text);
|
263 |
}
|
264 |
|
@@ -349,10 +363,6 @@ var CrayonSyntax = new function() {
|
|
349 |
var plain = crayon[uid].plain;
|
350 |
var plain_button = crayon[uid].plain_button;
|
351 |
|
352 |
-
// Reconsile height
|
353 |
-
plain.height(main.height());
|
354 |
-
plain.width(main.width());
|
355 |
-
|
356 |
if ( (main.is(':animated') || plain.is(':animated')) && typeof hover == 'undefined' ) {
|
357 |
return;
|
358 |
}
|
@@ -378,7 +388,7 @@ var CrayonSyntax = new function() {
|
|
378 |
//crayon[uid].plain_visible = false;
|
379 |
}
|
380 |
}
|
381 |
-
|
382 |
crayon[uid].plain_visible = (hidden == plain);
|
383 |
|
384 |
// Remember scroll positions of visible
|
2 |
// Crayon Syntax Highlighter JavaScript
|
3 |
|
4 |
// Contants
|
5 |
+
if (typeof DEBUG == 'undefined') {
|
6 |
+
var DEBUG = false;
|
7 |
+
}
|
8 |
+
|
9 |
+
if (typeof crayon_log == 'undefined') {
|
10 |
+
function crayon_log(string) {
|
11 |
+
if (typeof console != 'undefined' && DEBUG) {
|
12 |
+
console.log(string);
|
13 |
+
}
|
14 |
+
}
|
15 |
+
}
|
16 |
|
17 |
// jQuery
|
18 |
|
81 |
crayon[uid].time = 1;
|
82 |
|
83 |
// Set plain
|
|
|
84 |
jQuery(CRAYON_PLAIN).css('z-index', 0);
|
85 |
|
86 |
// Remember CSS dimensions
|
103 |
crayon[uid].scroll_block_fix = true;
|
104 |
}
|
105 |
|
106 |
+
// Reconsile dimensions
|
107 |
+
plain.height(main.height());
|
108 |
+
plain.width(main.width());
|
109 |
+
|
110 |
// If nums hidden by default
|
111 |
if (nums.filter('[settings~="hide"]').length != 0) {
|
112 |
nums_content.ready(function() {
|
200 |
.mouseleave(function() { CrayonSyntax.toggle_plain(uid, false); });
|
201 |
nums_button.hide();
|
202 |
}
|
203 |
+
if (plain.filter('[settings~="show-plain-default"]').length != 0) {
|
204 |
+
CrayonSyntax.toggle_plain(uid, true);
|
205 |
+
}
|
206 |
}
|
207 |
// Scrollbar show events
|
208 |
if (!touchscreen && jQuery(this).filter('[settings~="scroll-mouseover"]').length != 0) {
|
272 |
toolbar_toggle(uid, true);
|
273 |
|
274 |
key = crayon[uid].mac ? '\u2318' : 'CTRL';
|
275 |
+
text = 'Press ' + key + '+C to Copy, ' + key + '+V to Paste :)';
|
276 |
crayon_info(uid, text);
|
277 |
}
|
278 |
|
363 |
var plain = crayon[uid].plain;
|
364 |
var plain_button = crayon[uid].plain_button;
|
365 |
|
|
|
|
|
|
|
|
|
366 |
if ( (main.is(':animated') || plain.is(':animated')) && typeof hover == 'undefined' ) {
|
367 |
return;
|
368 |
}
|
388 |
//crayon[uid].plain_visible = false;
|
389 |
}
|
390 |
}
|
391 |
+
|
392 |
crayon[uid].plain_visible = (hidden == plain);
|
393 |
|
394 |
// Remember scroll positions of visible
|
js/crayon_admin.js
CHANGED
@@ -1,15 +1,19 @@
|
|
1 |
<!--
|
2 |
// Crayon Syntax Highlighter Admin JavaScript
|
3 |
|
4 |
-
|
|
|
|
|
5 |
|
6 |
// Disables $ for referencing jQuery
|
7 |
jQuery.noConflict();
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
|
|
13 |
}
|
14 |
|
15 |
// Not used, # is left unencoded
|
@@ -24,8 +28,8 @@ function crayon_escape(string) {
|
|
24 |
}
|
25 |
|
26 |
jQuery(document).ready(function() {
|
27 |
-
|
28 |
-
|
29 |
});
|
30 |
|
31 |
// Preview
|
@@ -44,225 +48,234 @@ var msg_cbox, msg;
|
|
44 |
// Log
|
45 |
var log_button, log_text, log;
|
46 |
|
47 |
-
function
|
48 |
-
// Help
|
49 |
-
help = jQuery('.crayon-help-close');
|
50 |
-
help.click(function() {
|
51 |
-
jQuery('.crayon-help').hide();
|
52 |
-
jQuery.get(help.attr('url'));
|
53 |
-
});
|
54 |
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
});
|
110 |
-
}
|
111 |
-
|
112 |
-
/* Whenever a control changes preview */
|
113 |
-
function preview_update() {
|
114 |
-
//crayon_log('preview_update');
|
115 |
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
for (i = 0; i < preview_obj_names.length; i++) {
|
120 |
-
obj = preview_objs[i];
|
121 |
-
if (obj.attr('type') == 'checkbox') {
|
122 |
-
val = obj.is(':checked');
|
123 |
} else {
|
124 |
-
|
125 |
}
|
126 |
-
preview_get += preview_obj_names[i] + '=' + crayon_escape(val) + "&";
|
127 |
}
|
128 |
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
preview_timer = setInterval(function() {
|
138 |
-
preview.css('height', '');
|
139 |
-
preview.css('overflow', 'visible');
|
140 |
-
clearInterval(preview_timer);
|
141 |
-
}, 1000);
|
142 |
-
|
143 |
-
// Load Data
|
144 |
-
jQuery.get(preview_url + preview_get, function(data) {
|
145 |
-
preview.html(data);
|
146 |
-
});
|
147 |
-
}
|
148 |
-
|
149 |
-
function bool_to_int(bool) {
|
150 |
-
if (bool == true) {
|
151 |
-
return 1;
|
152 |
-
} else {
|
153 |
-
return 0;
|
154 |
}
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
preview.hide();
|
163 |
-
}
|
164 |
-
}
|
165 |
-
|
166 |
-
function float_toggle() {
|
167 |
-
if ( align_drop.val() != 0 ) {
|
168 |
-
float.show();
|
169 |
-
} else {
|
170 |
-
float.hide();
|
171 |
-
}
|
172 |
-
}
|
173 |
-
|
174 |
-
// List of callbacks
|
175 |
-
var preview_callback;
|
176 |
-
var preview_txt_change;
|
177 |
-
var preview_txt_callback; // Only updates if text value changed
|
178 |
-
var preview_txt_callback_delayed;
|
179 |
-
//var height_set;
|
180 |
-
|
181 |
-
// Register all event handlers for preview objects
|
182 |
-
function preview_register() {
|
183 |
-
var obj;
|
184 |
-
preview_get = '?';
|
185 |
-
|
186 |
-
// Instant callback
|
187 |
-
preview_callback = function() {
|
188 |
-
preview_update();
|
189 |
}
|
190 |
|
191 |
-
//
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
|
199 |
-
|
200 |
-
//
|
201 |
-
|
202 |
-
|
203 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
}
|
206 |
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
|
|
|
|
211 |
}
|
212 |
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
|
|
|
|
225 |
}
|
226 |
|
227 |
-
// Retreive preview objects
|
228 |
-
jQuery('[crayon-preview="1"]').each(function(i) {
|
229 |
-
var obj = jQuery(this);
|
230 |
-
preview_obj_names[i] = obj.attr('id');
|
231 |
-
preview_objs[i] = obj;
|
232 |
-
// To capture key up events when typing
|
233 |
-
if (obj.attr('type') == 'text') {
|
234 |
-
preview_last_values[obj.attr('id')] = obj.val();
|
235 |
-
obj.bind('keyup', preview_txt_callback_delayed);
|
236 |
-
obj.change(preview_txt_callback);
|
237 |
-
} else {
|
238 |
-
// For all other objects
|
239 |
-
obj.change(preview_callback);
|
240 |
-
}
|
241 |
-
});
|
242 |
-
}
|
243 |
-
|
244 |
-
function toggle_error() {
|
245 |
-
if ( msg_cbox.is(':checked') ) {
|
246 |
-
msg.show();
|
247 |
-
} else {
|
248 |
-
msg.hide();
|
249 |
-
}
|
250 |
-
}
|
251 |
-
|
252 |
-
function toggle_toolbar() {
|
253 |
-
if ( toolbar.val() == 0 ) {
|
254 |
-
overlay.show();
|
255 |
-
} else {
|
256 |
-
overlay.hide();
|
257 |
-
}
|
258 |
-
}
|
259 |
-
|
260 |
-
function show_langs(url) {
|
261 |
-
jQuery('#show-lang').hide();
|
262 |
-
jQuery.get(url, function(data) {
|
263 |
-
jQuery('#lang-info').show();
|
264 |
-
jQuery('#lang-info').html(data);
|
265 |
-
});
|
266 |
}
|
267 |
|
268 |
//-->
|
1 |
<!--
|
2 |
// Crayon Syntax Highlighter Admin JavaScript
|
3 |
|
4 |
+
if (typeof DEBUG == 'undefined') {
|
5 |
+
var DEBUG = false;
|
6 |
+
}
|
7 |
|
8 |
// Disables $ for referencing jQuery
|
9 |
jQuery.noConflict();
|
10 |
|
11 |
+
if (typeof crayon_log == 'undefined') {
|
12 |
+
function crayon_log(string) {
|
13 |
+
if (typeof console != 'undefined' && DEBUG) {
|
14 |
+
console.log(string);
|
15 |
+
}
|
16 |
+
}
|
17 |
}
|
18 |
|
19 |
// Not used, # is left unencoded
|
28 |
}
|
29 |
|
30 |
jQuery(document).ready(function() {
|
31 |
+
crayon_log('admin loaded');
|
32 |
+
CrayonSyntaxAdmin.init();
|
33 |
});
|
34 |
|
35 |
// Preview
|
48 |
// Log
|
49 |
var log_button, log_text, log;
|
50 |
|
51 |
+
var CrayonSyntaxAdmin = new function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
+
this.init = function() {
|
54 |
+
crayon_log('admin init');
|
55 |
+
// Help
|
56 |
+
help = jQuery('.crayon-help-close');
|
57 |
+
help.click(function() {
|
58 |
+
jQuery('.crayon-help').hide();
|
59 |
+
jQuery.get(help.attr('url'));
|
60 |
+
});
|
61 |
+
|
62 |
+
// Preview
|
63 |
+
preview = jQuery('#crayon-preview');
|
64 |
+
preview_url = preview.attr('url');
|
65 |
+
preview_cbox = jQuery('#preview');
|
66 |
+
preview_register();
|
67 |
+
preview.ready(function() {
|
68 |
+
preview_toggle();
|
69 |
+
});
|
70 |
+
preview_cbox.change(function() { preview_toggle(); });
|
71 |
+
|
72 |
+
// Alignment
|
73 |
+
align_drop = jQuery('#h_align');
|
74 |
+
float = jQuery('#crayon-float');
|
75 |
+
align_drop.change(function() { float_toggle(); });
|
76 |
+
align_drop.ready(function() { float_toggle(); });
|
77 |
+
|
78 |
+
// Custom Error
|
79 |
+
msg_cbox = jQuery('#error_msg_show');
|
80 |
+
msg = jQuery('#error_msg');
|
81 |
+
toggle_error();
|
82 |
+
msg_cbox.change(function() { toggle_error(); });
|
83 |
|
84 |
+
// Toolbar
|
85 |
+
overlay = jQuery('#toolbar_overlay');
|
86 |
+
toolbar = jQuery('#toolbar');
|
87 |
+
toggle_toolbar();
|
88 |
+
toolbar.change(function() { toggle_toolbar(); });
|
89 |
+
|
90 |
+
// Copy
|
91 |
+
plain = jQuery('#plain');
|
92 |
+
copy = jQuery('#crayon-copy-check');
|
93 |
+
plain.change(function() {
|
94 |
+
if (plain.is(':checked')) {
|
95 |
+
copy.show();
|
96 |
+
} else {
|
97 |
+
copy.hide();
|
98 |
+
}
|
99 |
+
});
|
100 |
+
|
101 |
+
// Log
|
102 |
+
var show_log = 'Show Log';
|
103 |
+
var hide_log = 'Hide Log';
|
104 |
+
log_wrapper = jQuery('#crayon-log-wrapper');
|
105 |
+
log_button = jQuery('#crayon-log-toggle');
|
106 |
+
log_text = jQuery('#crayon-log-text');
|
107 |
+
clog = jQuery('#crayon-log');
|
108 |
+
log_button.val(show_log);
|
109 |
+
log_button.click(function() {
|
110 |
+
clog.width(log_wrapper.width());
|
111 |
+
clog.toggle();
|
112 |
+
// Scrolls content
|
113 |
+
clog.scrollTop(log_text.height());
|
114 |
+
var text = ( log_button.val() == show_log ? hide_log : show_log );
|
115 |
+
log_button.val(text);
|
116 |
+
});
|
117 |
+
}
|
118 |
|
119 |
+
/* Whenever a control changes preview */
|
120 |
+
var preview_update = function() {
|
121 |
+
crayon_log('preview_update');
|
122 |
+
preview_get = '?';
|
123 |
+
var val = 0;
|
124 |
+
var obj;
|
125 |
+
for (i = 0; i < preview_obj_names.length; i++) {
|
126 |
+
obj = preview_objs[i];
|
127 |
+
if (obj.attr('type') == 'checkbox') {
|
128 |
+
val = obj.is(':checked');
|
129 |
+
} else {
|
130 |
+
val = obj.val();
|
131 |
+
}
|
132 |
+
preview_get += preview_obj_names[i] + '=' + crayon_escape(val) + "&";
|
133 |
+
}
|
134 |
+
|
135 |
+
// XXX Scroll to top of themes
|
136 |
+
// Disabled for now, too annoying
|
137 |
+
//var top = jQuery('a[name="crayon-theme"]');
|
138 |
+
//jQuery(window).scrollTop(top.position().top);
|
139 |
+
|
140 |
+
// Delay resize
|
141 |
+
preview.css('height', preview.height());
|
142 |
+
preview.css('overflow', 'hidden');
|
143 |
+
preview_timer = setInterval(function() {
|
144 |
+
preview.css('height', '');
|
145 |
+
preview.css('overflow', 'visible');
|
146 |
+
clearInterval(preview_timer);
|
147 |
+
}, 1000);
|
148 |
+
|
149 |
+
// Load Data
|
150 |
+
jQuery.get(preview_url + preview_get, function(data) {
|
151 |
+
//crayon_log(data);
|
152 |
+
preview.html(data);
|
153 |
+
// Important! Calls the crayon.js init
|
154 |
+
CrayonSyntax.init();
|
155 |
+
});
|
156 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
|
158 |
+
var bool_to_int = function(bool) {
|
159 |
+
if (bool == true) {
|
160 |
+
return 1;
|
|
|
|
|
|
|
|
|
161 |
} else {
|
162 |
+
return 0;
|
163 |
}
|
|
|
164 |
}
|
165 |
|
166 |
+
var preview_toggle = function() {
|
167 |
+
crayon_log('preview_toggle');
|
168 |
+
if ( preview_cbox.is(':checked') ) {
|
169 |
+
preview.show();
|
170 |
+
preview_update();
|
171 |
+
} else {
|
172 |
+
preview.hide();
|
173 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
}
|
175 |
+
|
176 |
+
var float_toggle = function() {
|
177 |
+
if ( align_drop.val() != 0 ) {
|
178 |
+
float.show();
|
179 |
+
} else {
|
180 |
+
float.hide();
|
181 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
}
|
183 |
|
184 |
+
// List of callbacks
|
185 |
+
var preview_callback;
|
186 |
+
var preview_txt_change;
|
187 |
+
var preview_txt_callback; // Only updates if text value changed
|
188 |
+
var preview_txt_callback_delayed;
|
189 |
+
//var height_set;
|
190 |
+
|
191 |
+
// Register all event handlers for preview objects
|
192 |
+
var preview_register = function() {
|
193 |
+
crayon_log('preview_register');
|
194 |
+
var obj;
|
195 |
+
preview_get = '?';
|
196 |
+
|
197 |
+
// Instant callback
|
198 |
+
preview_callback = function() {
|
199 |
+
preview_update();
|
200 |
+
}
|
201 |
+
|
202 |
+
// Checks if the text input is changed, if so, runs the callback with given event
|
203 |
+
preview_txt_change = function(callback, event) {
|
204 |
+
//crayon_log('checking if changed');
|
205 |
+
var obj = event.target;
|
206 |
+
var last = preview_last_values[obj.id];
|
207 |
+
//crayon_log('last' + preview_last_values[obj.id]);
|
208 |
+
|
209 |
+
if (obj.value != last) {
|
210 |
+
//crayon_log('changed');
|
211 |
+
// Update last value to current
|
212 |
+
preview_last_values[obj.id] = obj.value;
|
213 |
+
// Run callback with event
|
214 |
+
callback(event);
|
215 |
+
}
|
216 |
+
}
|
217 |
+
|
218 |
+
// Only updates when text is changed
|
219 |
+
preview_txt_callback = function(event) {
|
220 |
+
//crayon_log('txt callback');
|
221 |
+
preview_txt_change(preview_update, event);
|
222 |
+
}
|
223 |
|
224 |
+
// Only updates when text is changed, but callback
|
225 |
+
preview_txt_callback_delayed = function(event) {
|
226 |
+
//crayon_log('txt delayed');
|
227 |
+
|
228 |
+
preview_txt_change(function() {
|
229 |
+
clearInterval(preview_delay_timer);
|
230 |
+
preview_delay_timer = setInterval(function() {
|
231 |
+
//crayon_log('delayed update');
|
232 |
+
preview_update();
|
233 |
+
clearInterval(preview_delay_timer);
|
234 |
+
}, 500);
|
235 |
+
}, event);
|
236 |
}
|
237 |
+
|
238 |
+
// Retreive preview objects
|
239 |
+
jQuery('[crayon-preview="1"]').each(function(i) {
|
240 |
+
var obj = jQuery(this);
|
241 |
+
preview_obj_names[i] = obj.attr('id');
|
242 |
+
preview_objs[i] = obj;
|
243 |
+
// To capture key up events when typing
|
244 |
+
if (obj.attr('type') == 'text') {
|
245 |
+
preview_last_values[obj.attr('id')] = obj.val();
|
246 |
+
obj.bind('keyup', preview_txt_callback_delayed);
|
247 |
+
obj.change(preview_txt_callback);
|
248 |
+
} else {
|
249 |
+
// For all other objects
|
250 |
+
obj.change(preview_callback);
|
251 |
+
}
|
252 |
+
});
|
253 |
}
|
254 |
|
255 |
+
var toggle_error = function() {
|
256 |
+
if ( msg_cbox.is(':checked') ) {
|
257 |
+
msg.show();
|
258 |
+
} else {
|
259 |
+
msg.hide();
|
260 |
+
}
|
261 |
}
|
262 |
|
263 |
+
var toggle_toolbar = function() {
|
264 |
+
if ( toolbar.val() == 0 ) {
|
265 |
+
overlay.show();
|
266 |
+
} else {
|
267 |
+
overlay.hide();
|
268 |
+
}
|
269 |
+
}
|
270 |
+
|
271 |
+
this.show_langs = function(url) {
|
272 |
+
jQuery('#show-lang').hide();
|
273 |
+
jQuery.get(url, function(data) {
|
274 |
+
jQuery('#lang-info').show();
|
275 |
+
jQuery('#lang-info').html(data);
|
276 |
+
});
|
277 |
}
|
278 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
}
|
280 |
|
281 |
//-->
|
langs/default/default.txt
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
TYPE \b(?alt:type.txt)\b
|
14 |
MODIFIER \b(?alt:modifier.txt)\b
|
15 |
|
16 |
-
ENTITY (\b[a-z_]\w*\b(?=\s*\([^\)]*\)))|((?<!\.)(\b[a-z_]\w*\b)(?=[^},.:;\)]*{))|(\b[a-z_]\w+\b\s+(?=\b[a-z_]\w+\b))
|
17 |
VARIABLE \b(?<=\.)\s*[A-Za-z_]\w*
|
18 |
IDENTIFIER \b[A-Za-z_]\w*\b
|
19 |
CONSTANT (?<!\w)\.?[0-9][\w]*
|
13 |
TYPE \b(?alt:type.txt)\b
|
14 |
MODIFIER \b(?alt:modifier.txt)\b
|
15 |
|
16 |
+
ENTITY (\b[a-z_]\w*\b(?=\s*\([^\)]*\)))|((?<!\.)(\b[a-z_]\w*\b)(?=[^},.:;\)]*{))|(\b[a-z_]\w+\b\s+(?=\b[a-z_]\w+\b))|(\b[a-z_]\w*\s*\*)
|
17 |
VARIABLE \b(?<=\.)\s*[A-Za-z_]\w*
|
18 |
IDENTIFIER \b[A-Za-z_]\w*\b
|
19 |
CONSTANT (?<!\w)\.?[0-9][\w]*
|
langs/java/java.txt
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME Java
|
6 |
-
VERSION 1.
|
7 |
|
8 |
COMMENT (?default)
|
9 |
STRING (?default)
|
@@ -14,7 +14,7 @@
|
|
14 |
TYPE (?default)
|
15 |
MODIFIER (?default)|\b(?alt:modifier.txt)\b
|
16 |
|
17 |
-
ENTITY (?default)
|
18 |
VARIABLE (?default)
|
19 |
GENERIC:ENTITY <\w+>
|
20 |
IDENTIFIER (?default)
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME Java
|
6 |
+
VERSION 1.7.6
|
7 |
|
8 |
COMMENT (?default)
|
9 |
STRING (?default)
|
14 |
TYPE (?default)
|
15 |
MODIFIER (?default)|\b(?alt:modifier.txt)\b
|
16 |
|
17 |
+
ENTITY (?default)|\b[a-z_]\w+\s*\|\s*[a-z_]\w+\b\s+(?=\b[a-z_]\w+\b)
|
18 |
VARIABLE (?default)
|
19 |
GENERIC:ENTITY <\w+>
|
20 |
IDENTIFIER (?default)
|
langs/monkey/modifier.txt
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
local
|
langs/monkey/monkey.txt
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
### MONKEY LANGUAGE ###
|
2 |
+
|
3 |
+
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
+
|
5 |
+
NAME Monkey
|
6 |
+
VERSION 1.0
|
7 |
+
|
8 |
+
COMMENT (#rem.*?#end)|('.*?$)
|
9 |
+
STRING ((?<!\\)".*?(?<!\\)")
|
10 |
+
|
11 |
+
NOTATION \summary:[\w-]+
|
12 |
+
STATEMENT (?default)|\b(?alt:statement.txt)\b
|
13 |
+
RESERVED (?default)|\b(?alt:reserved.txt)\b
|
14 |
+
TYPE (?default)
|
15 |
+
MODIFIER (?default)|\b(?alt:modifier.txt)\b
|
16 |
+
|
17 |
+
ENTITY (?default)
|
18 |
+
VARIABLE (?default)
|
19 |
+
GENERIC:ENTITY <\w+>
|
20 |
+
IDENTIFIER (?default)
|
21 |
+
CONSTANT (?default)
|
22 |
+
OPERATOR (?default)|\b(?alt:operator.txt)\b
|
23 |
+
SYMBOL (?default)
|
langs/monkey/operator.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Grouped operators
|
2 |
+
shl=
|
3 |
+
shr=
|
4 |
+
mod=
|
5 |
+
:=
|
6 |
+
|
7 |
+
# Single operators
|
8 |
+
mod
|
9 |
+
shl
|
10 |
+
shr
|
langs/monkey/reserved.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
include
|
2 |
+
import
|
3 |
+
strict
|
4 |
+
inline
|
5 |
+
extern
|
6 |
+
module
|
7 |
+
inline
|
8 |
+
field
|
langs/monkey/statement.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
endselect
|
2 |
+
forever
|
3 |
+
select
|
4 |
+
repeat
|
5 |
+
eachin
|
6 |
+
step
|
7 |
+
next
|
8 |
+
exit
|
langs/objc/modifier.txt
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
volatile
|
|
|
|
|
2 |
nonatomic
|
3 |
register
|
4 |
restrict
|
@@ -9,6 +11,7 @@ atomic
|
|
9 |
extern
|
10 |
inline
|
11 |
static
|
|
|
12 |
const
|
13 |
inout
|
14 |
byref
|
1 |
volatile
|
2 |
+
readonly
|
3 |
+
readwrite
|
4 |
nonatomic
|
5 |
register
|
6 |
restrict
|
11 |
extern
|
12 |
inline
|
13 |
static
|
14 |
+
assign
|
15 |
const
|
16 |
inout
|
17 |
byref
|
langs/objc/objc.txt
CHANGED
@@ -7,13 +7,14 @@
|
|
7 |
|
8 |
COMMENT (?default)|(#.*?$)
|
9 |
STRING (@?(?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
|
|
|
10 |
|
11 |
STATEMENT (?alt:statement_at.txt)\b|\b(?alt:statement.txt)\b
|
12 |
RESERVED (?alt:reserved_at.txt)\b|\b(?alt:reserved.txt)\b
|
13 |
TYPE \b(?alt:type.txt)\b
|
14 |
MODIFIER (?alt:modifier_at.txt)\b|\b(?alt:modifier.txt)\b
|
15 |
|
16 |
-
ENTITY (
|
17 |
VARIABLE (?default)|(\*\w+)
|
18 |
IDENTIFIER (?default)
|
19 |
CONSTANT (?default)|\b(?alt:constant.txt)\b
|
7 |
|
8 |
COMMENT (?default)|(#.*?$)
|
9 |
STRING (@?(?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
|
10 |
+
NOTATION \<.+\>
|
11 |
|
12 |
STATEMENT (?alt:statement_at.txt)\b|\b(?alt:statement.txt)\b
|
13 |
RESERVED (?alt:reserved_at.txt)\b|\b(?alt:reserved.txt)\b
|
14 |
TYPE \b(?alt:type.txt)\b
|
15 |
MODIFIER (?alt:modifier_at.txt)\b|\b(?alt:modifier.txt)\b
|
16 |
|
17 |
+
ENTITY (\b[a-z_]\w*\b(?=\s*\([^\)]*\)))|((?<!\.)(\b[a-z_]\w*\b)(?=[^},.:;\)]*{))|(\b[a-z_]\w+\b\s+(?=\b[a-z_][\w]+\b(?!\s*\:)))|(\b[a-z_]\w*\s*\*)|(?-i:NS[\w]+)
|
18 |
VARIABLE (?default)|(\*\w+)
|
19 |
IDENTIFIER (?default)
|
20 |
CONSTANT (?default)|\b(?alt:constant.txt)\b
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: akarmenia
|
|
3 |
Donate link: http://ak.net84.net/files/donate.php
|
4 |
Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.3
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Syntax Highlighter supporting multiple languages, themes, fonts, highlighting from a URL, local file or post text.
|
@@ -49,6 +49,7 @@ See http://ak.net84.net/projects/crayon-language-file-specification/ to learn ho
|
|
49 |
* C++
|
50 |
* CSS
|
51 |
* HTML (XML/XHTML)
|
|
|
52 |
* Java
|
53 |
* JavaScript
|
54 |
* Objective-C
|
@@ -118,6 +119,26 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
|
|
118 |
|
119 |
== Changelog ==
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
= 1.7.5 =
|
122 |
* Removed jQuery.noConflict() from crayon.js. This must have been causing some trouble if anything used $.
|
123 |
|
3 |
Donate link: http://ak.net84.net/files/donate.php
|
4 |
Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.3.1
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Syntax Highlighter supporting multiple languages, themes, fonts, highlighting from a URL, local file or post text.
|
49 |
* C++
|
50 |
* CSS
|
51 |
* HTML (XML/XHTML)
|
52 |
+
* Monkey
|
53 |
* Java
|
54 |
* JavaScript
|
55 |
* Objective-C
|
119 |
|
120 |
== Changelog ==
|
121 |
|
122 |
+
= 1.7.10 =
|
123 |
+
* Fixed a visual artifact of loading that caused the plain code to be partially visible
|
124 |
+
|
125 |
+
= 1.7.9 =
|
126 |
+
* Added Monkey language thanks to https://github.com/devolonter/
|
127 |
+
|
128 |
+
= 1.7.8 =
|
129 |
+
* Fixed a JavaScript bug in admin preventing language list loading
|
130 |
+
* Fixed an issue causing plain code to load invisible the first time if set to default view
|
131 |
+
* Added translations for 1.7.7 features
|
132 |
+
|
133 |
+
= 1.7.7 =
|
134 |
+
* Added plain code toggling and ability to set plain code as default view
|
135 |
+
* Minor improvements to Objective-C
|
136 |
+
* Fixed some JavaScript bugs in the admin preview
|
137 |
+
* Fixed copy/paste key combinations. Thanks to http://wordpress.org/support/profile/nickelfault.
|
138 |
+
|
139 |
+
= 1.7.6 =
|
140 |
+
* Added highlight support for catching multiple exceptions in Java
|
141 |
+
|
142 |
= 1.7.5 =
|
143 |
* Removed jQuery.noConflict() from crayon.js. This must have been causing some trouble if anything used $.
|
144 |
|
trans/crayon-syntax-highlighter-de_DE.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-de_DE.po
CHANGED
@@ -19,97 +19,92 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
-
#: crayon_settings.class.php:
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
#: crayon_settings.class.php:
|
29 |
-
#: crayon_settings.class.php:
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
#: crayon_settings.class.php:
|
35 |
-
#: crayon_settings.class.php:
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statisch"
|
39 |
|
40 |
-
#: crayon_settings.class.php:
|
41 |
-
#: crayon_settings.class.php:
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
-
#: crayon_settings.class.php:
|
47 |
-
#: crayon_settings.class.php:
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Prozent"
|
51 |
|
52 |
-
#: crayon_settings.class.php:
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Keiner"
|
56 |
|
57 |
-
#: crayon_settings.class.php:
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Links"
|
61 |
|
62 |
-
#: crayon_settings.class.php:
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Center"
|
66 |
|
67 |
-
#: crayon_settings.class.php:
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Rechts"
|
71 |
|
72 |
-
#: crayon_settings.class.php:
|
73 |
-
#: crayon_settings.class.php:
|
74 |
-
#: crayon_settings.class.php:
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Auf MouseOver"
|
78 |
|
79 |
-
#: crayon_settings.class.php:
|
80 |
-
#: crayon_settings.class.php:
|
81 |
-
#: crayon_settings.class.php:
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Immer"
|
85 |
|
86 |
-
#: crayon_settings.class.php:
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Nie"
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Wenn Sie Gefunden"
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Auf Doppelklick"
|
101 |
|
102 |
-
#: crayon_settings.class.php:
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Auf Mausklick"
|
106 |
|
107 |
-
#: crayon_settings.class.php:
|
108 |
-
#@ crayon-syntax-highlighter
|
109 |
-
msgid "Only Using Toggle"
|
110 |
-
msgstr "Nur Mit Toggle"
|
111 |
-
|
112 |
-
#: crayon_settings.class.php:166
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "An error has occurred. Please try again later."
|
115 |
msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
|
@@ -290,107 +285,107 @@ msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
|
|
290 |
msgid "Enable plain code view and display"
|
291 |
msgstr "Aktivieren Sie einfach Code-Ansicht und Anzeige"
|
292 |
|
293 |
-
#: crayon_settings_wp.class.php:
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable code copy/paste"
|
296 |
msgstr "Aktivieren Code kopieren/einfügen"
|
297 |
|
298 |
-
#: crayon_settings_wp.class.php:
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Enable opening code in a window"
|
301 |
msgstr "Aktivieren Öffnungscode in einem Fenster"
|
302 |
|
303 |
-
#: crayon_settings_wp.class.php:
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Display scrollbars (when needed)"
|
306 |
msgstr "Anzeigen Scrollbalken (bei Bedarf)"
|
307 |
|
308 |
-
#: crayon_settings_wp.class.php:
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Tab size in spaces"
|
311 |
msgstr "Tab-Größe in Räumen"
|
312 |
|
313 |
-
#: crayon_settings_wp.class.php:
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "Remove whitespace surrounding the shortcode content"
|
316 |
msgstr "Entfernen Sie Leerzeichen um den Shortcode Inhalt"
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
321 |
msgstr "Beim Laden von lokalen Dateien und ein relativer Pfad ist für die URL angegeben, verwenden Sie den absoluten Pfad"
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear the cache used to store remote code requests"
|
326 |
msgstr "Leeren Sie den Cache verwendet werden, um Remote-Code-Abfragen speichern"
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Clear Now"
|
331 |
msgstr "Jetzt löschen"
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
336 |
msgstr "Deaktivieren Mausgesten für Touchscreen-Geräte (zB MouseOver)"
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable animations"
|
341 |
msgstr "Deaktivieren Animationen"
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Disable runtime stats"
|
346 |
msgstr "Deaktivieren Laufzeit stats"
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log errors for individual Crayons"
|
351 |
msgstr "Log Fehler für einzelne Crayons"
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Log system-wide errors"
|
356 |
msgstr "Log systemweite Fehler"
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Display custom message for errors"
|
361 |
msgstr "Anzeige benutzerdefinierte Meldungen für Fehler"
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Show Log"
|
366 |
msgstr "Show Protokoll"
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Clear Log"
|
371 |
msgstr "Klare Protokoll"
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Admin"
|
376 |
msgstr "E-Mail Admin"
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Email Developer"
|
381 |
msgstr "E-Mail Entwickler"
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Version"
|
386 |
msgstr "Version"
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Developer"
|
391 |
msgstr "Entwickler"
|
392 |
|
393 |
-
#: crayon_settings_wp.class.php:
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
396 |
msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es ist ein laufendes Projekt, halt mich motiviert!"
|
@@ -401,27 +396,27 @@ msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es is
|
|
401 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
402 |
msgstr "Ändern Sie den %1$sFallback-Sprache%2$s , um den Beispielcode ändern. Zeilen 5-7 sind markiert."
|
403 |
|
404 |
-
#: crayon_settings.class.php:
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Hourly"
|
407 |
msgstr "Stündlich"
|
408 |
|
409 |
-
#: crayon_settings.class.php:
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Daily"
|
412 |
msgstr "Täglich"
|
413 |
|
414 |
-
#: crayon_settings.class.php:
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Weekly"
|
417 |
msgstr "Wöchentlich"
|
418 |
|
419 |
-
#: crayon_settings.class.php:
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Monthly"
|
422 |
msgstr "Monatlich"
|
423 |
|
424 |
-
#: crayon_settings.class.php:
|
425 |
#@ crayon-syntax-highlighter
|
426 |
msgid "Immediately"
|
427 |
msgstr "Sofort"
|
@@ -431,37 +426,37 @@ msgstr "Sofort"
|
|
431 |
msgid "Crayon Help"
|
432 |
msgstr "Crayon Hilfe"
|
433 |
|
434 |
-
#: crayon_settings_wp.class.php:
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
437 |
msgstr "Versuchen Sie, Crayon ist CSS und JavaScript nur laden, wenn nötig"
|
438 |
|
439 |
-
#: crayon_settings_wp.class.php:
|
440 |
#@ crayon-syntax-highlighter
|
441 |
msgid "Why?"
|
442 |
msgstr "Warum?"
|
443 |
|
444 |
-
#: crayon_settings_wp.class.php:
|
445 |
#@ crayon-syntax-highlighter
|
446 |
msgid "Followed by your relative URL."
|
447 |
msgstr "Gefolgt von Ihrem relative URL."
|
448 |
|
449 |
-
#: crayon_settings_wp.class.php:
|
450 |
#@ crayon-syntax-highlighter
|
451 |
msgid "The log is currently empty."
|
452 |
msgstr "Das Protokoll ist derzeit leer."
|
453 |
|
454 |
-
#: crayon_settings_wp.class.php:
|
455 |
#@ crayon-syntax-highlighter
|
456 |
msgid "The log file exists and is writable."
|
457 |
msgstr "Die Log-Datei existiert und beschreibbar ist."
|
458 |
|
459 |
-
#: crayon_settings_wp.class.php:
|
460 |
#@ crayon-syntax-highlighter
|
461 |
msgid "The log file exists and is not writable."
|
462 |
msgstr "Die Log-Datei existiert und ist nicht beschreibbar."
|
463 |
|
464 |
-
#: crayon_settings_wp.class.php:
|
465 |
#@ crayon-syntax-highlighter
|
466 |
msgid "The log file does not exist and is not writable."
|
467 |
msgstr "Die Log-Datei nicht existiert und ist nicht beschreibbar."
|
@@ -474,35 +469,96 @@ msgid_plural "%d languages have been detected."
|
|
474 |
msgstr[0] "%d sprache erkannt wurde."
|
475 |
msgstr[1] "%d sprachen nachgewiesen worden."
|
476 |
|
477 |
-
#: crayon_settings_wp.class.php:
|
478 |
#@ crayon-syntax-highlighter
|
479 |
msgid "Capture <pre> tags as Crayons"
|
480 |
msgstr "Erfassen <pre> tags wie Crayons"
|
481 |
|
482 |
-
#: crayon_settings_wp.class.php:572
|
483 |
-
#: crayon_settings_wp.class.php:573
|
484 |
#: crayon_settings_wp.class.php:574
|
|
|
|
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Learn More"
|
487 |
msgstr "Erfahren Sie mehr"
|
488 |
|
489 |
-
#: crayon_settings_wp.class.php:
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Show Mixed Language Icon (+)"
|
492 |
msgstr "Zeige gemischte Sprache Symbol (+)"
|
493 |
|
494 |
-
#: crayon_settings_wp.class.php:
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
497 |
msgstr "Lassen gemischte Sprache Hervorhebung mit Trennzeichen und Tags."
|
498 |
|
499 |
-
#: crayon_settings_wp.class.php:
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
502 |
msgstr "Erfassen Mini Tags wie [php][/php] als Crayons."
|
503 |
|
504 |
-
#: crayon_settings_wp.class.php:
|
505 |
#@ crayon-syntax-highlighter
|
506 |
msgid "Enable [plain][/plain] tag."
|
507 |
msgstr "Aktivieren [plain][/plain] Tag."
|
508 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:123
|
23 |
+
#: crayon_settings.class.php:127
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:123
|
29 |
+
#: crayon_settings.class.php:127
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:123
|
35 |
+
#: crayon_settings.class.php:127
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statisch"
|
39 |
|
40 |
+
#: crayon_settings.class.php:125
|
41 |
+
#: crayon_settings.class.php:129
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
+
#: crayon_settings.class.php:125
|
47 |
+
#: crayon_settings.class.php:129
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Prozent"
|
51 |
|
52 |
+
#: crayon_settings.class.php:138
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Keiner"
|
56 |
|
57 |
+
#: crayon_settings.class.php:138
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Links"
|
61 |
|
62 |
+
#: crayon_settings.class.php:138
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Center"
|
66 |
|
67 |
+
#: crayon_settings.class.php:138
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Rechts"
|
71 |
|
72 |
+
#: crayon_settings.class.php:140
|
73 |
+
#: crayon_settings.class.php:157
|
74 |
+
#: crayon_settings.class.php:162
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Auf MouseOver"
|
78 |
|
79 |
+
#: crayon_settings.class.php:140
|
80 |
+
#: crayon_settings.class.php:146
|
81 |
+
#: crayon_settings.class.php:157
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Immer"
|
85 |
|
86 |
+
#: crayon_settings.class.php:140
|
87 |
+
#: crayon_settings.class.php:146
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Nie"
|
91 |
|
92 |
+
#: crayon_settings.class.php:146
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Wenn Sie Gefunden"
|
96 |
|
97 |
+
#: crayon_settings.class.php:162
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Auf Doppelklick"
|
101 |
|
102 |
+
#: crayon_settings.class.php:162
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Auf Mausklick"
|
106 |
|
107 |
+
#: crayon_settings.class.php:170
|
|
|
|
|
|
|
|
|
|
|
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."
|
285 |
msgid "Enable plain code view and display"
|
286 |
msgstr "Aktivieren Sie einfach Code-Ansicht und Anzeige"
|
287 |
|
288 |
+
#: crayon_settings_wp.class.php:565
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Aktivieren Code kopieren/einfügen"
|
292 |
|
293 |
+
#: crayon_settings_wp.class.php:567
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable opening code in a window"
|
296 |
msgstr "Aktivieren Öffnungscode in einem Fenster"
|
297 |
|
298 |
+
#: crayon_settings_wp.class.php:568
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Display scrollbars (when needed)"
|
301 |
msgstr "Anzeigen Scrollbalken (bei Bedarf)"
|
302 |
|
303 |
+
#: crayon_settings_wp.class.php:570
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Tab-Größe in Räumen"
|
307 |
|
308 |
+
#: crayon_settings_wp.class.php:572
|
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:582
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
316 |
msgstr "Beim Laden von lokalen Dateien und ein relativer Pfad ist für die URL angegeben, verwenden Sie den absoluten Pfad"
|
317 |
|
318 |
+
#: crayon_settings_wp.class.php:589
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Clear the cache used to store remote code requests"
|
321 |
msgstr "Leeren Sie den Cache verwendet werden, um Remote-Code-Abfragen speichern"
|
322 |
|
323 |
+
#: crayon_settings_wp.class.php:591
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Jetzt löschen"
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:593
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
331 |
msgstr "Deaktivieren Mausgesten für Touchscreen-Geräte (zB MouseOver)"
|
332 |
|
333 |
+
#: crayon_settings_wp.class.php:594
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Deaktivieren Animationen"
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:595
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Deaktivieren Laufzeit stats"
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:602
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Log errors for individual Crayons"
|
346 |
msgstr "Log Fehler für einzelne Crayons"
|
347 |
|
348 |
+
#: crayon_settings_wp.class.php:603
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log system-wide errors"
|
351 |
msgstr "Log systemweite Fehler"
|
352 |
|
353 |
+
#: crayon_settings_wp.class.php:604
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Display custom message for errors"
|
356 |
msgstr "Anzeige benutzerdefinierte Meldungen für Fehler"
|
357 |
|
358 |
+
#: crayon_settings_wp.class.php:616
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Show Protokoll"
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:618
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Klare Protokoll"
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:619
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "E-Mail Admin"
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:621
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "E-Mail Entwickler"
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:637
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Version"
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:639
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Entwickler"
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:663
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "Das Ergebnis unzähliger Stunden harter Arbeit über viele Monate. Es ist ein laufendes Projekt, halt mich motiviert!"
|
396 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
397 |
msgstr "Ändern Sie den %1$sFallback-Sprache%2$s , um den Beispielcode ändern. Zeilen 5-7 sind markiert."
|
398 |
|
399 |
+
#: crayon_settings.class.php:97
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Stündlich"
|
403 |
|
404 |
+
#: crayon_settings.class.php:97
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Täglich"
|
408 |
|
409 |
+
#: crayon_settings.class.php:98
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Wöchentlich"
|
413 |
|
414 |
+
#: crayon_settings.class.php:98
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Monatlich"
|
418 |
|
419 |
+
#: crayon_settings.class.php:99
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Sofort"
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Crayon Hilfe"
|
428 |
|
429 |
+
#: crayon_settings_wp.class.php:592
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr "Versuchen Sie, Crayon ist CSS und JavaScript nur laden, wenn nötig"
|
433 |
|
434 |
+
#: crayon_settings_wp.class.php:592
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "Warum?"
|
438 |
|
439 |
+
#: crayon_settings_wp.class.php:585
|
440 |
#@ crayon-syntax-highlighter
|
441 |
msgid "Followed by your relative URL."
|
442 |
msgstr "Gefolgt von Ihrem relative URL."
|
443 |
|
444 |
+
#: crayon_settings_wp.class.php:623
|
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:625
|
450 |
#@ crayon-syntax-highlighter
|
451 |
msgid "The log file exists and is writable."
|
452 |
msgstr "Die Log-Datei existiert und beschreibbar ist."
|
453 |
|
454 |
+
#: crayon_settings_wp.class.php:625
|
455 |
#@ crayon-syntax-highlighter
|
456 |
msgid "The log file exists and is not writable."
|
457 |
msgstr "Die Log-Datei existiert und ist nicht beschreibbar."
|
458 |
|
459 |
+
#: crayon_settings_wp.class.php:627
|
460 |
#@ crayon-syntax-highlighter
|
461 |
msgid "The log file does not exist and is not writable."
|
462 |
msgstr "Die Log-Datei nicht existiert und ist nicht beschreibbar."
|
469 |
msgstr[0] "%d sprache erkannt wurde."
|
470 |
msgstr[1] "%d sprachen nachgewiesen worden."
|
471 |
|
472 |
+
#: crayon_settings_wp.class.php:573
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "Capture <pre> tags as Crayons"
|
475 |
msgstr "Erfassen <pre> tags wie Crayons"
|
476 |
|
|
|
|
|
477 |
#: crayon_settings_wp.class.php:574
|
478 |
+
#: crayon_settings_wp.class.php:575
|
479 |
+
#: crayon_settings_wp.class.php:576
|
480 |
#@ crayon-syntax-highlighter
|
481 |
msgid "Learn More"
|
482 |
msgstr "Erfahren Sie mehr"
|
483 |
|
484 |
+
#: crayon_settings_wp.class.php:577
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Show Mixed Language Icon (+)"
|
487 |
msgstr "Zeige gemischte Sprache Symbol (+)"
|
488 |
|
489 |
+
#: crayon_settings_wp.class.php:576
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
492 |
msgstr "Lassen gemischte Sprache Hervorhebung mit Trennzeichen und Tags."
|
493 |
|
494 |
+
#: crayon_settings_wp.class.php:574
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
497 |
msgstr "Erfassen Mini Tags wie [php][/php] als Crayons."
|
498 |
|
499 |
+
#: crayon_settings_wp.class.php:575
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Enable [plain][/plain] tag."
|
502 |
msgstr "Aktivieren [plain][/plain] Tag."
|
503 |
|
504 |
+
#: crayon_settings.class.php:162
|
505 |
+
#@ crayon-syntax-highlighter
|
506 |
+
msgid "Disable Mouse Events"
|
507 |
+
msgstr "Deaktivieren Mausereignisse"
|
508 |
+
|
509 |
+
#: crayon_settings_wp.class.php:563
|
510 |
+
#@ crayon-syntax-highlighter
|
511 |
+
msgid "Enable plain code toggling"
|
512 |
+
msgstr "Aktivieren Sie einfach Code Makeln"
|
513 |
+
|
514 |
+
#: crayon_settings_wp.class.php:564
|
515 |
+
#@ crayon-syntax-highlighter
|
516 |
+
msgid "Show the plain code by default"
|
517 |
+
msgstr "Zeige die Ebene Code standardmäßig"
|
518 |
+
|
519 |
+
#. translators: plugin header field 'Name'
|
520 |
+
#: crayon_wp.class.php:0
|
521 |
+
#@ crayon-syntax-highlighter
|
522 |
+
msgid "Crayon Syntax Highlighter"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#. translators: plugin header field 'AuthorURI'
|
526 |
+
#: crayon_wp.class.php:0
|
527 |
+
#@ crayon-syntax-highlighter
|
528 |
+
msgid "http://ak.net84.net/"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#. translators: plugin header field 'Author'
|
532 |
+
#: crayon_wp.class.php:0
|
533 |
+
#@ crayon-syntax-highlighter
|
534 |
+
msgid "Aram Kocharyan"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#. translators: plugin header field 'Version'
|
538 |
+
#: crayon_wp.class.php:0
|
539 |
+
#@ crayon-syntax-highlighter
|
540 |
+
msgid "1.7.7"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#. translators: plugin header field 'PluginURI'
|
544 |
+
#: crayon_wp.class.php:0
|
545 |
+
#@ crayon-syntax-highlighter
|
546 |
+
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#. translators: plugin header field 'Description'
|
550 |
+
#: crayon_wp.class.php:0
|
551 |
+
#@ crayon-syntax-highlighter
|
552 |
+
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
553 |
+
msgstr "Unterstützt mehrere Sprachen, Themen, Hervorhebung von einer URL, lokale Datei oder per Post Text."
|
554 |
+
|
555 |
+
#: crayon_wp.class.php:367
|
556 |
+
#@ crayon-syntax-highlighter
|
557 |
+
msgid "View Settings"
|
558 |
+
msgstr "Einstellungen anzeigen"
|
559 |
+
|
560 |
+
#: crayon_wp.class.php:368
|
561 |
+
#@ crayon-syntax-highlighter
|
562 |
+
msgid "Donate"
|
563 |
+
msgstr "Spenden"
|
564 |
+
|
trans/crayon-syntax-highlighter-es_ES.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-es_ES.po
CHANGED
@@ -19,97 +19,92 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
-
#: crayon_settings.class.php:
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
#: crayon_settings.class.php:
|
29 |
-
#: crayon_settings.class.php:
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
#: crayon_settings.class.php:
|
35 |
-
#: crayon_settings.class.php:
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Estático"
|
39 |
|
40 |
-
#: crayon_settings.class.php:
|
41 |
-
#: crayon_settings.class.php:
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Píxeles"
|
45 |
|
46 |
-
#: crayon_settings.class.php:
|
47 |
-
#: crayon_settings.class.php:
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Por ciento"
|
51 |
|
52 |
-
#: crayon_settings.class.php:
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Ninguno"
|
56 |
|
57 |
-
#: crayon_settings.class.php:
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Izquierda"
|
61 |
|
62 |
-
#: crayon_settings.class.php:
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centro"
|
66 |
|
67 |
-
#: crayon_settings.class.php:
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Derecho"
|
71 |
|
72 |
-
#: crayon_settings.class.php:
|
73 |
-
#: crayon_settings.class.php:
|
74 |
-
#: crayon_settings.class.php:
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Se mueve el ratón"
|
78 |
|
79 |
-
#: crayon_settings.class.php:
|
80 |
-
#: crayon_settings.class.php:
|
81 |
-
#: crayon_settings.class.php:
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Siempre"
|
85 |
|
86 |
-
#: crayon_settings.class.php:
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Nunca"
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Cuando se encuentra"
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Haga doble click en"
|
101 |
|
102 |
-
#: crayon_settings.class.php:
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "En solo clic"
|
106 |
|
107 |
-
#: crayon_settings.class.php:
|
108 |
-
#@ crayon-syntax-highlighter
|
109 |
-
msgid "Only Using Toggle"
|
110 |
-
msgstr "Con sólo Cambia"
|
111 |
-
|
112 |
-
#: crayon_settings.class.php:166
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "An error has occurred. Please try again later."
|
115 |
msgstr "Se produjo un error. Por favor, inténtelo de nuevo más tarde."
|
@@ -290,138 +285,138 @@ msgstr "La fuente seleccionada con id %s no se pudo cargar"
|
|
290 |
msgid "Enable plain code view and display"
|
291 |
msgstr "Permiten ver el código normal y la pantalla"
|
292 |
|
293 |
-
#: crayon_settings_wp.class.php:
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable code copy/paste"
|
296 |
msgstr "Permiten copiar el código / pegar"
|
297 |
|
298 |
-
#: crayon_settings_wp.class.php:
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Enable opening code in a window"
|
301 |
msgstr "Permitir que el código de apertura de una ventana"
|
302 |
|
303 |
-
#: crayon_settings_wp.class.php:
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Display scrollbars (when needed)"
|
306 |
msgstr "Barras de desplazamiento de la pantalla (si es necesario)"
|
307 |
|
308 |
-
#: crayon_settings_wp.class.php:
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Tab size in spaces"
|
311 |
msgstr "Tab tamaño en espacios"
|
312 |
|
313 |
-
#: crayon_settings_wp.class.php:
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "Remove whitespace surrounding the shortcode content"
|
316 |
msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
321 |
msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear the cache used to store remote code requests"
|
326 |
msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Clear Now"
|
331 |
msgstr "Limpiar ahora"
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
336 |
msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable animations"
|
341 |
msgstr "Desactivar las animaciones"
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Disable runtime stats"
|
346 |
msgstr "Desactivar tiempo de ejecución de las estadísticas"
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log errors for individual Crayons"
|
351 |
msgstr "Errores de registro para cada Crayon"
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Log system-wide errors"
|
356 |
msgstr "Registro de todo el sistema de los errores"
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Display custom message for errors"
|
361 |
msgstr "Mostrar mensajes personalizados para los errores"
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Show Log"
|
366 |
msgstr "Mostrar Registro"
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Clear Log"
|
371 |
msgstr "Borrar Registro"
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Admin"
|
376 |
msgstr "Admin Email"
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Email Developer"
|
381 |
msgstr "Correo electrónico del desarrollador"
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Version"
|
386 |
msgstr "Versión"
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Developer"
|
391 |
msgstr "Promotor"
|
392 |
|
393 |
-
#: crayon_settings_wp.class.php:
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
396 |
msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
|
397 |
|
398 |
-
#: util/preview.php:
|
399 |
#, php-format
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
402 |
msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
|
403 |
|
404 |
-
#: crayon_settings.class.php:
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Hourly"
|
407 |
msgstr "Cada hora"
|
408 |
|
409 |
-
#: crayon_settings.class.php:
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Daily"
|
412 |
msgstr "Diario"
|
413 |
|
414 |
-
#: crayon_settings.class.php:
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Weekly"
|
417 |
msgstr "Semanal"
|
418 |
|
419 |
-
#: crayon_settings.class.php:
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Monthly"
|
422 |
msgstr "Mensual"
|
423 |
|
424 |
-
#: crayon_settings.class.php:
|
425 |
#@ crayon-syntax-highlighter
|
426 |
msgid "Immediately"
|
427 |
msgstr "Inmediatamente"
|
@@ -431,12 +426,12 @@ msgstr "Inmediatamente"
|
|
431 |
msgid "Crayon Help"
|
432 |
msgstr "Crayon Ayuda"
|
433 |
|
434 |
-
#: crayon_settings_wp.class.php:
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
437 |
msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
|
438 |
|
439 |
-
#: crayon_settings_wp.class.php:
|
440 |
#@ crayon-syntax-highlighter
|
441 |
msgid "Why?"
|
442 |
msgstr "¿Por qué?"
|
@@ -449,60 +444,121 @@ msgid_plural "%d languages have been detected."
|
|
449 |
msgstr[0] "%d lenguaje que se ha detectado."
|
450 |
msgstr[1] "%d idiomas se han detectado."
|
451 |
|
452 |
-
#: crayon_settings_wp.class.php:
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "Followed by your relative URL."
|
455 |
msgstr "Seguido de su dirección URL relativa\t."
|
456 |
|
457 |
-
#: crayon_settings_wp.class.php:
|
458 |
#@ crayon-syntax-highlighter
|
459 |
msgid "The log is currently empty."
|
460 |
msgstr "El registro está actualmente vacía."
|
461 |
|
462 |
-
#: crayon_settings_wp.class.php:
|
463 |
#@ crayon-syntax-highlighter
|
464 |
msgid "The log file exists and is writable."
|
465 |
msgstr "El archivo de registro existe y se puede escribir."
|
466 |
|
467 |
-
#: crayon_settings_wp.class.php:
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "The log file exists and is not writable."
|
470 |
msgstr "El archivo de registro existe y no es modificable."
|
471 |
|
472 |
-
#: crayon_settings_wp.class.php:
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "The log file does not exist and is not writable."
|
475 |
msgstr "El archivo de registro no existe y no es modificable."
|
476 |
|
477 |
-
#: crayon_settings_wp.class.php:
|
478 |
#@ crayon-syntax-highlighter
|
479 |
msgid "Capture <pre> tags as Crayons"
|
480 |
msgstr "Captura de etiquetas <pre> como Crayons"
|
481 |
|
482 |
-
#: crayon_settings_wp.class.php:572
|
483 |
-
#: crayon_settings_wp.class.php:573
|
484 |
#: crayon_settings_wp.class.php:574
|
|
|
|
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Learn More"
|
487 |
msgstr "Más información"
|
488 |
|
489 |
-
#: crayon_settings_wp.class.php:
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Show Mixed Language Icon (+)"
|
492 |
msgstr "Mostrar el icono del lenguaje mixto (+)"
|
493 |
|
494 |
-
#: crayon_settings_wp.class.php:
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
497 |
msgstr "Permiten destacar mixto del lenguaje con delimitadores y etiquetas."
|
498 |
|
499 |
-
#: crayon_settings_wp.class.php:
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
502 |
msgstr "Captura Tags Mini como [php][/php] como Crayons."
|
503 |
|
504 |
-
#: crayon_settings_wp.class.php:
|
505 |
#@ crayon-syntax-highlighter
|
506 |
msgid "Enable [plain][/plain] tag."
|
507 |
msgstr "Activar etiqueta [plain][/plain]."
|
508 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:123
|
23 |
+
#: crayon_settings.class.php:127
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:123
|
29 |
+
#: crayon_settings.class.php:127
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:123
|
35 |
+
#: crayon_settings.class.php:127
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Estático"
|
39 |
|
40 |
+
#: crayon_settings.class.php:125
|
41 |
+
#: crayon_settings.class.php:129
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Píxeles"
|
45 |
|
46 |
+
#: crayon_settings.class.php:125
|
47 |
+
#: crayon_settings.class.php:129
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Por ciento"
|
51 |
|
52 |
+
#: crayon_settings.class.php:138
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Ninguno"
|
56 |
|
57 |
+
#: crayon_settings.class.php:138
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Izquierda"
|
61 |
|
62 |
+
#: crayon_settings.class.php:138
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centro"
|
66 |
|
67 |
+
#: crayon_settings.class.php:138
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Derecho"
|
71 |
|
72 |
+
#: crayon_settings.class.php:140
|
73 |
+
#: crayon_settings.class.php:157
|
74 |
+
#: crayon_settings.class.php:162
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Se mueve el ratón"
|
78 |
|
79 |
+
#: crayon_settings.class.php:140
|
80 |
+
#: crayon_settings.class.php:146
|
81 |
+
#: crayon_settings.class.php:157
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Siempre"
|
85 |
|
86 |
+
#: crayon_settings.class.php:140
|
87 |
+
#: crayon_settings.class.php:146
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Nunca"
|
91 |
|
92 |
+
#: crayon_settings.class.php:146
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Cuando se encuentra"
|
96 |
|
97 |
+
#: crayon_settings.class.php:162
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Haga doble click en"
|
101 |
|
102 |
+
#: crayon_settings.class.php:162
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "En solo clic"
|
106 |
|
107 |
+
#: crayon_settings.class.php:170
|
|
|
|
|
|
|
|
|
|
|
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."
|
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:565
|
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:567
|
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:568
|
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:570
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Tab tamaño en espacios"
|
307 |
|
308 |
+
#: crayon_settings_wp.class.php:572
|
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:582
|
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:589
|
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:591
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Limpiar ahora"
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:593
|
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:594
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Desactivar las animaciones"
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:595
|
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:602
|
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:603
|
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:604
|
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:616
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Mostrar Registro"
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:618
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Borrar Registro"
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:619
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "Admin Email"
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:621
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "Correo electrónico del desarrollador"
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:637
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Versión"
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:639
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Promotor"
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:663
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
|
392 |
|
393 |
+
#: util/preview.php:61
|
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:97
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Cada hora"
|
403 |
|
404 |
+
#: crayon_settings.class.php:97
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Diario"
|
408 |
|
409 |
+
#: crayon_settings.class.php:98
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Semanal"
|
413 |
|
414 |
+
#: crayon_settings.class.php:98
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Mensual"
|
418 |
|
419 |
+
#: crayon_settings.class.php:99
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Inmediatamente"
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Crayon Ayuda"
|
428 |
|
429 |
+
#: crayon_settings_wp.class.php:592
|
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:592
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "¿Por qué?"
|
444 |
msgstr[0] "%d lenguaje que se ha detectado."
|
445 |
msgstr[1] "%d idiomas se han detectado."
|
446 |
|
447 |
+
#: crayon_settings_wp.class.php:585
|
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:623
|
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:625
|
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:625
|
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:627
|
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:573
|
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:574
|
478 |
+
#: crayon_settings_wp.class.php:575
|
479 |
+
#: crayon_settings_wp.class.php:576
|
480 |
#@ crayon-syntax-highlighter
|
481 |
msgid "Learn More"
|
482 |
msgstr "Más información"
|
483 |
|
484 |
+
#: crayon_settings_wp.class.php:577
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Show Mixed Language Icon (+)"
|
487 |
msgstr "Mostrar el icono del lenguaje mixto (+)"
|
488 |
|
489 |
+
#: crayon_settings_wp.class.php:576
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
492 |
msgstr "Permiten destacar mixto del lenguaje con delimitadores y etiquetas."
|
493 |
|
494 |
+
#: crayon_settings_wp.class.php:574
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
497 |
msgstr "Captura Tags Mini como [php][/php] como Crayons."
|
498 |
|
499 |
+
#: crayon_settings_wp.class.php:575
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Enable [plain][/plain] tag."
|
502 |
msgstr "Activar etiqueta [plain][/plain]."
|
503 |
|
504 |
+
#: crayon_settings.class.php:162
|
505 |
+
#@ crayon-syntax-highlighter
|
506 |
+
msgid "Disable Mouse Events"
|
507 |
+
msgstr "Desactivar Los Eventos De Ratón"
|
508 |
+
|
509 |
+
#: crayon_settings_wp.class.php:563
|
510 |
+
#@ crayon-syntax-highlighter
|
511 |
+
msgid "Enable plain code toggling"
|
512 |
+
msgstr "Permiten alternar código normal"
|
513 |
+
|
514 |
+
#: crayon_settings_wp.class.php:564
|
515 |
+
#@ crayon-syntax-highlighter
|
516 |
+
msgid "Show the plain code by default"
|
517 |
+
msgstr "Mostrar el código sin formato por defecto"
|
518 |
+
|
519 |
+
#. translators: plugin header field 'Name'
|
520 |
+
#: crayon_wp.class.php:0
|
521 |
+
#@ crayon-syntax-highlighter
|
522 |
+
msgid "Crayon Syntax Highlighter"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#. translators: plugin header field 'PluginURI'
|
526 |
+
#: crayon_wp.class.php:0
|
527 |
+
#@ crayon-syntax-highlighter
|
528 |
+
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#. translators: plugin header field 'Description'
|
532 |
+
#: crayon_wp.class.php:0
|
533 |
+
#@ crayon-syntax-highlighter
|
534 |
+
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
535 |
+
msgstr "Soporta múltiples idiomas, temas, destacando a partir de una URL, archivos locales o el texto posterior."
|
536 |
+
|
537 |
+
#. translators: plugin header field 'Author'
|
538 |
+
#: crayon_wp.class.php:0
|
539 |
+
#@ crayon-syntax-highlighter
|
540 |
+
msgid "Aram Kocharyan"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#. translators: plugin header field 'AuthorURI'
|
544 |
+
#: crayon_wp.class.php:0
|
545 |
+
#@ crayon-syntax-highlighter
|
546 |
+
msgid "http://ak.net84.net/"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#. translators: plugin header field 'Version'
|
550 |
+
#: crayon_wp.class.php:0
|
551 |
+
#@ crayon-syntax-highlighter
|
552 |
+
msgid "1.7.7"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: crayon_wp.class.php:367
|
556 |
+
#@ crayon-syntax-highlighter
|
557 |
+
msgid "View Settings"
|
558 |
+
msgstr "Ver Configuración"
|
559 |
+
|
560 |
+
#: crayon_wp.class.php:368
|
561 |
+
#@ crayon-syntax-highlighter
|
562 |
+
msgid "Donate"
|
563 |
+
msgstr "Donar"
|
564 |
+
|
trans/crayon-syntax-highlighter-fr_FR.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-fr_FR.po
CHANGED
@@ -19,97 +19,92 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
-
#: crayon_settings.class.php:
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
#: crayon_settings.class.php:
|
29 |
-
#: crayon_settings.class.php:
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
#: crayon_settings.class.php:
|
35 |
-
#: crayon_settings.class.php:
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statique"
|
39 |
|
40 |
-
#: crayon_settings.class.php:
|
41 |
-
#: crayon_settings.class.php:
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
-
#: crayon_settings.class.php:
|
47 |
-
#: crayon_settings.class.php:
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Pour cent"
|
51 |
|
52 |
-
#: crayon_settings.class.php:
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Aucun"
|
56 |
|
57 |
-
#: crayon_settings.class.php:
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Gauche"
|
61 |
|
62 |
-
#: crayon_settings.class.php:
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centre"
|
66 |
|
67 |
-
#: crayon_settings.class.php:
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Droite"
|
71 |
|
72 |
-
#: crayon_settings.class.php:
|
73 |
-
#: crayon_settings.class.php:
|
74 |
-
#: crayon_settings.class.php:
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Sur MouseOver"
|
78 |
|
79 |
-
#: crayon_settings.class.php:
|
80 |
-
#: crayon_settings.class.php:
|
81 |
-
#: crayon_settings.class.php:
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Toujours"
|
85 |
|
86 |
-
#: crayon_settings.class.php:
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Jamais"
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Une fois trouvé"
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Le double-clic"
|
101 |
|
102 |
-
#: crayon_settings.class.php:
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Le Single Cliquez"
|
106 |
|
107 |
-
#: crayon_settings.class.php:
|
108 |
-
#@ crayon-syntax-highlighter
|
109 |
-
msgid "Only Using Toggle"
|
110 |
-
msgstr "Seule l'aide Bascule"
|
111 |
-
|
112 |
-
#: crayon_settings.class.php:166
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "An error has occurred. Please try again later."
|
115 |
msgstr "Une erreur s'est produite. S'il vous plaît essayez de nouveau plus tard."
|
@@ -290,138 +285,138 @@ msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
|
|
290 |
msgid "Enable plain code view and display"
|
291 |
msgstr "Activer le mode code clair et d'affichage"
|
292 |
|
293 |
-
#: crayon_settings_wp.class.php:
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable code copy/paste"
|
296 |
msgstr "Activer copiez le code/coller"
|
297 |
|
298 |
-
#: crayon_settings_wp.class.php:
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Enable opening code in a window"
|
301 |
msgstr "Activer code d'ouverture dans une fenêtre"
|
302 |
|
303 |
-
#: crayon_settings_wp.class.php:
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Display scrollbars (when needed)"
|
306 |
msgstr "Affichage des barres de défilement (si nécessaire)"
|
307 |
|
308 |
-
#: crayon_settings_wp.class.php:
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Tab size in spaces"
|
311 |
msgstr "Taille des tabulations dans les espaces"
|
312 |
|
313 |
-
#: crayon_settings_wp.class.php:
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "Remove whitespace surrounding the shortcode content"
|
316 |
msgstr "Enlevez les espaces entourant le contenu shortcode"
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
321 |
msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear the cache used to store remote code requests"
|
326 |
msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Clear Now"
|
331 |
msgstr "Effacer maintenant"
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
336 |
msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable animations"
|
341 |
msgstr "Désactiver les animations"
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Disable runtime stats"
|
346 |
msgstr "Désactiver l'exécution stats"
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log errors for individual Crayons"
|
351 |
msgstr "Connexion pour les erreurs individuelles Crayons"
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Log system-wide errors"
|
356 |
msgstr "Connexion échelle du système des erreurs"
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Display custom message for errors"
|
361 |
msgstr "Afficher un message personnalisé pour les erreurs"
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Show Log"
|
366 |
msgstr "Afficher le journal"
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Clear Log"
|
371 |
msgstr "Effacer le journal"
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Admin"
|
376 |
msgstr "Admin Email"
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Email Developer"
|
381 |
msgstr "Développeur Email"
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Version"
|
386 |
msgstr "Version"
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Developer"
|
391 |
msgstr "Développeur"
|
392 |
|
393 |
-
#: crayon_settings_wp.class.php:
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
396 |
msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
|
397 |
|
398 |
-
#: util/preview.php:
|
399 |
#, php-format
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
402 |
msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
|
403 |
|
404 |
-
#: crayon_settings.class.php:
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Hourly"
|
407 |
msgstr "Horaires"
|
408 |
|
409 |
-
#: crayon_settings.class.php:
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Daily"
|
412 |
msgstr "Daily"
|
413 |
|
414 |
-
#: crayon_settings.class.php:
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Weekly"
|
417 |
msgstr "Hebdomadaire"
|
418 |
|
419 |
-
#: crayon_settings.class.php:
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Monthly"
|
422 |
msgstr "Mensuel"
|
423 |
|
424 |
-
#: crayon_settings.class.php:
|
425 |
#@ crayon-syntax-highlighter
|
426 |
msgid "Immediately"
|
427 |
msgstr "Immédiatement"
|
@@ -431,12 +426,12 @@ msgstr "Immédiatement"
|
|
431 |
msgid "Crayon Help"
|
432 |
msgstr "Aide Crayon"
|
433 |
|
434 |
-
#: crayon_settings_wp.class.php:
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
437 |
msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
|
438 |
|
439 |
-
#: crayon_settings_wp.class.php:
|
440 |
#@ crayon-syntax-highlighter
|
441 |
msgid "Why?"
|
442 |
msgstr "Pourquoi?"
|
@@ -449,60 +444,121 @@ msgid_plural "%d languages have been detected."
|
|
449 |
msgstr[0] "%d la langue a été détectée."
|
450 |
msgstr[1] "%d langues ont été détectés."
|
451 |
|
452 |
-
#: crayon_settings_wp.class.php:
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "Followed by your relative URL."
|
455 |
msgstr "Suivi de votre URL relative."
|
456 |
|
457 |
-
#: crayon_settings_wp.class.php:
|
458 |
#@ crayon-syntax-highlighter
|
459 |
msgid "The log is currently empty."
|
460 |
msgstr "Le journal est actuellement vide."
|
461 |
|
462 |
-
#: crayon_settings_wp.class.php:
|
463 |
#@ crayon-syntax-highlighter
|
464 |
msgid "The log file exists and is writable."
|
465 |
msgstr "Le fichier journal existe et est accessible en écriture."
|
466 |
|
467 |
-
#: crayon_settings_wp.class.php:
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "The log file exists and is not writable."
|
470 |
msgstr "Le fichier journal existe et n'est pas accessible en écriture."
|
471 |
|
472 |
-
#: crayon_settings_wp.class.php:
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "The log file does not exist and is not writable."
|
475 |
msgstr "Le fichier journal n'existe pas et n'est pas modifiable."
|
476 |
|
477 |
-
#: crayon_settings_wp.class.php:
|
478 |
#@ crayon-syntax-highlighter
|
479 |
msgid "Capture <pre> tags as Crayons"
|
480 |
msgstr "Capturez balises <pre> que Crayons"
|
481 |
|
482 |
-
#: crayon_settings_wp.class.php:572
|
483 |
-
#: crayon_settings_wp.class.php:573
|
484 |
#: crayon_settings_wp.class.php:574
|
|
|
|
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Learn More"
|
487 |
msgstr "En savoir plus"
|
488 |
|
489 |
-
#: crayon_settings_wp.class.php:
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Show Mixed Language Icon (+)"
|
492 |
msgstr "Afficher l'icône Langue mixte (+)"
|
493 |
|
494 |
-
#: crayon_settings_wp.class.php:
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
497 |
msgstr "Autoriser Soulignant langue mélangée avec des délimiteurs et des tags."
|
498 |
|
499 |
-
#: crayon_settings_wp.class.php:
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
502 |
msgstr "Capturez Balises Mini tels que [php][/php] Crayons."
|
503 |
|
504 |
-
#: crayon_settings_wp.class.php:
|
505 |
#@ crayon-syntax-highlighter
|
506 |
msgid "Enable [plain][/plain] tag."
|
507 |
msgstr "Activer tag [plain][/plain]."
|
508 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:123
|
23 |
+
#: crayon_settings.class.php:127
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:123
|
29 |
+
#: crayon_settings.class.php:127
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:123
|
35 |
+
#: crayon_settings.class.php:127
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statique"
|
39 |
|
40 |
+
#: crayon_settings.class.php:125
|
41 |
+
#: crayon_settings.class.php:129
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
+
#: crayon_settings.class.php:125
|
47 |
+
#: crayon_settings.class.php:129
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Pour cent"
|
51 |
|
52 |
+
#: crayon_settings.class.php:138
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Aucun"
|
56 |
|
57 |
+
#: crayon_settings.class.php:138
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Gauche"
|
61 |
|
62 |
+
#: crayon_settings.class.php:138
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centre"
|
66 |
|
67 |
+
#: crayon_settings.class.php:138
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Droite"
|
71 |
|
72 |
+
#: crayon_settings.class.php:140
|
73 |
+
#: crayon_settings.class.php:157
|
74 |
+
#: crayon_settings.class.php:162
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Sur MouseOver"
|
78 |
|
79 |
+
#: crayon_settings.class.php:140
|
80 |
+
#: crayon_settings.class.php:146
|
81 |
+
#: crayon_settings.class.php:157
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Toujours"
|
85 |
|
86 |
+
#: crayon_settings.class.php:140
|
87 |
+
#: crayon_settings.class.php:146
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Jamais"
|
91 |
|
92 |
+
#: crayon_settings.class.php:146
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Une fois trouvé"
|
96 |
|
97 |
+
#: crayon_settings.class.php:162
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Le double-clic"
|
101 |
|
102 |
+
#: crayon_settings.class.php:162
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Le Single Cliquez"
|
106 |
|
107 |
+
#: crayon_settings.class.php:170
|
|
|
|
|
|
|
|
|
|
|
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."
|
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:565
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Activer copiez le code/coller"
|
292 |
|
293 |
+
#: crayon_settings_wp.class.php:567
|
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:568
|
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:570
|
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:572
|
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:582
|
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:589
|
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:591
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Effacer maintenant"
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:593
|
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:594
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Désactiver les animations"
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:595
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Désactiver l'exécution stats"
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:602
|
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:603
|
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:604
|
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:616
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Afficher le journal"
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:618
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Effacer le journal"
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:619
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "Admin Email"
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:621
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "Développeur Email"
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:637
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Version"
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:639
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Développeur"
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:663
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
|
392 |
|
393 |
+
#: util/preview.php:61
|
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:97
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Horaires"
|
403 |
|
404 |
+
#: crayon_settings.class.php:97
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Daily"
|
408 |
|
409 |
+
#: crayon_settings.class.php:98
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Hebdomadaire"
|
413 |
|
414 |
+
#: crayon_settings.class.php:98
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Mensuel"
|
418 |
|
419 |
+
#: crayon_settings.class.php:99
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Immédiatement"
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Aide Crayon"
|
428 |
|
429 |
+
#: crayon_settings_wp.class.php:592
|
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:592
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "Pourquoi?"
|
444 |
msgstr[0] "%d la langue a été détectée."
|
445 |
msgstr[1] "%d langues ont été détectés."
|
446 |
|
447 |
+
#: crayon_settings_wp.class.php:585
|
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:623
|
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:625
|
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:625
|
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:627
|
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:573
|
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:574
|
478 |
+
#: crayon_settings_wp.class.php:575
|
479 |
+
#: crayon_settings_wp.class.php:576
|
480 |
#@ crayon-syntax-highlighter
|
481 |
msgid "Learn More"
|
482 |
msgstr "En savoir plus"
|
483 |
|
484 |
+
#: crayon_settings_wp.class.php:577
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Show Mixed Language Icon (+)"
|
487 |
msgstr "Afficher l'icône Langue mixte (+)"
|
488 |
|
489 |
+
#: crayon_settings_wp.class.php:576
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
492 |
msgstr "Autoriser Soulignant langue mélangée avec des délimiteurs et des tags."
|
493 |
|
494 |
+
#: crayon_settings_wp.class.php:574
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
497 |
msgstr "Capturez Balises Mini tels que [php][/php] Crayons."
|
498 |
|
499 |
+
#: crayon_settings_wp.class.php:575
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Enable [plain][/plain] tag."
|
502 |
msgstr "Activer tag [plain][/plain]."
|
503 |
|
504 |
+
#: crayon_settings.class.php:162
|
505 |
+
#@ crayon-syntax-highlighter
|
506 |
+
msgid "Disable Mouse Events"
|
507 |
+
msgstr "Désactiver les événements souris"
|
508 |
+
|
509 |
+
#: crayon_settings_wp.class.php:563
|
510 |
+
#@ crayon-syntax-highlighter
|
511 |
+
msgid "Enable plain code toggling"
|
512 |
+
msgstr "Activer le code basculer plaine"
|
513 |
+
|
514 |
+
#: crayon_settings_wp.class.php:564
|
515 |
+
#@ crayon-syntax-highlighter
|
516 |
+
msgid "Show the plain code by default"
|
517 |
+
msgstr "Montrer le code brut par défaut"
|
518 |
+
|
519 |
+
#. translators: plugin header field 'Name'
|
520 |
+
#: crayon_wp.class.php:0
|
521 |
+
#@ crayon-syntax-highlighter
|
522 |
+
msgid "Crayon Syntax Highlighter"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#. translators: plugin header field 'PluginURI'
|
526 |
+
#: crayon_wp.class.php:0
|
527 |
+
#@ crayon-syntax-highlighter
|
528 |
+
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#. translators: plugin header field 'Description'
|
532 |
+
#: crayon_wp.class.php:0
|
533 |
+
#@ crayon-syntax-highlighter
|
534 |
+
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
535 |
+
msgstr "Supporte plusieurs langues, des thèmes, en soulignant partir d'une URL, fichier local ou d'un texte post."
|
536 |
+
|
537 |
+
#. translators: plugin header field 'Author'
|
538 |
+
#: crayon_wp.class.php:0
|
539 |
+
#@ crayon-syntax-highlighter
|
540 |
+
msgid "Aram Kocharyan"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#. translators: plugin header field 'AuthorURI'
|
544 |
+
#: crayon_wp.class.php:0
|
545 |
+
#@ crayon-syntax-highlighter
|
546 |
+
msgid "http://ak.net84.net/"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#. translators: plugin header field 'Version'
|
550 |
+
#: crayon_wp.class.php:0
|
551 |
+
#@ crayon-syntax-highlighter
|
552 |
+
msgid "1.7.7"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: crayon_wp.class.php:367
|
556 |
+
#@ crayon-syntax-highlighter
|
557 |
+
msgid "View Settings"
|
558 |
+
msgstr "Paramètres d'affichage"
|
559 |
+
|
560 |
+
#: crayon_wp.class.php:368
|
561 |
+
#@ crayon-syntax-highlighter
|
562 |
+
msgid "Donate"
|
563 |
+
msgstr "Faire un don"
|
564 |
+
|
trans/crayon-syntax-highlighter-it_IT.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-it_IT.po
CHANGED
@@ -19,97 +19,92 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
-
#: crayon_settings.class.php:
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
#: crayon_settings.class.php:
|
29 |
-
#: crayon_settings.class.php:
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
#: crayon_settings.class.php:
|
35 |
-
#: crayon_settings.class.php:
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statico"
|
39 |
|
40 |
-
#: crayon_settings.class.php:
|
41 |
-
#: crayon_settings.class.php:
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
-
#: crayon_settings.class.php:
|
47 |
-
#: crayon_settings.class.php:
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Per cento"
|
51 |
|
52 |
-
#: crayon_settings.class.php:
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Nessuno"
|
56 |
|
57 |
-
#: crayon_settings.class.php:
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Sinistra"
|
61 |
|
62 |
-
#: crayon_settings.class.php:
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centro"
|
66 |
|
67 |
-
#: crayon_settings.class.php:
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Destra"
|
71 |
|
72 |
-
#: crayon_settings.class.php:
|
73 |
-
#: crayon_settings.class.php:
|
74 |
-
#: crayon_settings.class.php:
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Al passaggio del mouse"
|
78 |
|
79 |
-
#: crayon_settings.class.php:
|
80 |
-
#: crayon_settings.class.php:
|
81 |
-
#: crayon_settings.class.php:
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Sempre"
|
85 |
|
86 |
-
#: crayon_settings.class.php:
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Mai"
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Quando Trovato"
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Su doppio click"
|
101 |
|
102 |
-
#: crayon_settings.class.php:
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Il singolo click"
|
106 |
|
107 |
-
#: crayon_settings.class.php:
|
108 |
-
#@ crayon-syntax-highlighter
|
109 |
-
msgid "Only Using Toggle"
|
110 |
-
msgstr "Utilizzando solo passare"
|
111 |
-
|
112 |
-
#: crayon_settings.class.php:166
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "An error has occurred. Please try again later."
|
115 |
msgstr "È verificato un errore. Riprova più tardi."
|
@@ -290,138 +285,138 @@ msgstr "La font selezionata con id %s non può essere caricato"
|
|
290 |
msgid "Enable plain code view and display"
|
291 |
msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
|
292 |
|
293 |
-
#: crayon_settings_wp.class.php:
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Enable code copy/paste"
|
296 |
msgstr "Abilita copiare il codice/incolla"
|
297 |
|
298 |
-
#: crayon_settings_wp.class.php:
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Enable opening code in a window"
|
301 |
msgstr "Abilita il codice di apertura in una finestra"
|
302 |
|
303 |
-
#: crayon_settings_wp.class.php:
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Display scrollbars (when needed)"
|
306 |
msgstr "Barre di scorrimento del display (quando necessario)"
|
307 |
|
308 |
-
#: crayon_settings_wp.class.php:
|
309 |
#@ crayon-syntax-highlighter
|
310 |
msgid "Tab size in spaces"
|
311 |
msgstr "Dimensione tabulazione in spazi"
|
312 |
|
313 |
-
#: crayon_settings_wp.class.php:
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "Remove whitespace surrounding the shortcode content"
|
316 |
msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
321 |
msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear the cache used to store remote code requests"
|
326 |
msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Clear Now"
|
331 |
msgstr "Svuota adesso"
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
336 |
msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable animations"
|
341 |
msgstr "Disattivare le animazioni"
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Disable runtime stats"
|
346 |
msgstr "Disabilitare runtime stats"
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Log errors for individual Crayons"
|
351 |
msgstr "Errori nel registro di Crayons singoli"
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Log system-wide errors"
|
356 |
msgstr "Log di sistema a livello di errori"
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Display custom message for errors"
|
361 |
msgstr "Display messaggio personalizzato per gli errori"
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Show Log"
|
366 |
msgstr "Mostra registro"
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Clear Log"
|
371 |
msgstr "Cancella registro"
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Admin"
|
376 |
msgstr "E-mail Admin"
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Email Developer"
|
381 |
msgstr "Email Developer"
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Version"
|
386 |
msgstr "Versione"
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Developer"
|
391 |
msgstr "Sviluppatore"
|
392 |
|
393 |
-
#: crayon_settings_wp.class.php:
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
396 |
msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
|
397 |
|
398 |
-
#: util/preview.php:
|
399 |
#, php-format
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
402 |
msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
|
403 |
|
404 |
-
#: crayon_settings.class.php:
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Hourly"
|
407 |
msgstr "Ogni ora"
|
408 |
|
409 |
-
#: crayon_settings.class.php:
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Daily"
|
412 |
msgstr "Quotidiano"
|
413 |
|
414 |
-
#: crayon_settings.class.php:
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Weekly"
|
417 |
msgstr "Settimanale"
|
418 |
|
419 |
-
#: crayon_settings.class.php:
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Monthly"
|
422 |
msgstr "Mensile"
|
423 |
|
424 |
-
#: crayon_settings.class.php:
|
425 |
#@ crayon-syntax-highlighter
|
426 |
msgid "Immediately"
|
427 |
msgstr "Immediatamente"
|
@@ -431,12 +426,12 @@ msgstr "Immediatamente"
|
|
431 |
msgid "Crayon Help"
|
432 |
msgstr "Crayon Aiuto"
|
433 |
|
434 |
-
#: crayon_settings_wp.class.php:
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
437 |
msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
|
438 |
|
439 |
-
#: crayon_settings_wp.class.php:
|
440 |
#@ crayon-syntax-highlighter
|
441 |
msgid "Why?"
|
442 |
msgstr "Perché?"
|
@@ -449,60 +444,121 @@ msgid_plural "%d languages have been detected."
|
|
449 |
msgstr[0] "%d lingua è stata rilevata."
|
450 |
msgstr[1] "%d lingue sono state rilevate."
|
451 |
|
452 |
-
#: crayon_settings_wp.class.php:
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "Followed by your relative URL."
|
455 |
msgstr "Seguito dal relativo URL."
|
456 |
|
457 |
-
#: crayon_settings_wp.class.php:
|
458 |
#@ crayon-syntax-highlighter
|
459 |
msgid "The log is currently empty."
|
460 |
msgstr "Il registro è vuoto."
|
461 |
|
462 |
-
#: crayon_settings_wp.class.php:
|
463 |
#@ crayon-syntax-highlighter
|
464 |
msgid "The log file exists and is writable."
|
465 |
msgstr "Il file di registro esiste ed è scrivibile."
|
466 |
|
467 |
-
#: crayon_settings_wp.class.php:
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "The log file exists and is not writable."
|
470 |
msgstr "Il file di registro esiste e non è scrivibile."
|
471 |
|
472 |
-
#: crayon_settings_wp.class.php:
|
473 |
#@ crayon-syntax-highlighter
|
474 |
msgid "The log file does not exist and is not writable."
|
475 |
msgstr "Il file di registro non esiste e non è scrivibile."
|
476 |
|
477 |
-
#: crayon_settings_wp.class.php:
|
478 |
#@ crayon-syntax-highlighter
|
479 |
msgid "Capture <pre> tags as Crayons"
|
480 |
msgstr "Cattura tag <pre> come Crayons"
|
481 |
|
482 |
-
#: crayon_settings_wp.class.php:572
|
483 |
-
#: crayon_settings_wp.class.php:573
|
484 |
#: crayon_settings_wp.class.php:574
|
|
|
|
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Learn More"
|
487 |
msgstr "Approfondisci"
|
488 |
|
489 |
-
#: crayon_settings_wp.class.php:
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Show Mixed Language Icon (+)"
|
492 |
msgstr "Mostra icona misto di lingua (+)"
|
493 |
|
494 |
-
#: crayon_settings_wp.class.php:
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
497 |
msgstr "Lasciare Evidenziando Lingua mista con delimitatori e tag."
|
498 |
|
499 |
-
#: crayon_settings_wp.class.php:
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
502 |
msgstr "Cattura Tags come Mini [php][/php] come Crayons."
|
503 |
|
504 |
-
#: crayon_settings_wp.class.php:
|
505 |
#@ crayon-syntax-highlighter
|
506 |
msgid "Enable [plain][/plain] tag."
|
507 |
msgstr "Abilita tag [plain][/plain]."
|
508 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:123
|
23 |
+
#: crayon_settings.class.php:127
|
24 |
#@ crayon-syntax-highlighter
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
+
#: crayon_settings.class.php:123
|
29 |
+
#: crayon_settings.class.php:127
|
30 |
#@ crayon-syntax-highlighter
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
+
#: crayon_settings.class.php:123
|
35 |
+
#: crayon_settings.class.php:127
|
36 |
#@ crayon-syntax-highlighter
|
37 |
msgid "Static"
|
38 |
msgstr "Statico"
|
39 |
|
40 |
+
#: crayon_settings.class.php:125
|
41 |
+
#: crayon_settings.class.php:129
|
42 |
#@ crayon-syntax-highlighter
|
43 |
msgid "Pixels"
|
44 |
msgstr "Pixels"
|
45 |
|
46 |
+
#: crayon_settings.class.php:125
|
47 |
+
#: crayon_settings.class.php:129
|
48 |
#@ crayon-syntax-highlighter
|
49 |
msgid "Percent"
|
50 |
msgstr "Per cento"
|
51 |
|
52 |
+
#: crayon_settings.class.php:138
|
53 |
#@ crayon-syntax-highlighter
|
54 |
msgid "None"
|
55 |
msgstr "Nessuno"
|
56 |
|
57 |
+
#: crayon_settings.class.php:138
|
58 |
#@ crayon-syntax-highlighter
|
59 |
msgid "Left"
|
60 |
msgstr "Sinistra"
|
61 |
|
62 |
+
#: crayon_settings.class.php:138
|
63 |
#@ crayon-syntax-highlighter
|
64 |
msgid "Center"
|
65 |
msgstr "Centro"
|
66 |
|
67 |
+
#: crayon_settings.class.php:138
|
68 |
#@ crayon-syntax-highlighter
|
69 |
msgid "Right"
|
70 |
msgstr "Destra"
|
71 |
|
72 |
+
#: crayon_settings.class.php:140
|
73 |
+
#: crayon_settings.class.php:157
|
74 |
+
#: crayon_settings.class.php:162
|
75 |
#@ crayon-syntax-highlighter
|
76 |
msgid "On MouseOver"
|
77 |
msgstr "Al passaggio del mouse"
|
78 |
|
79 |
+
#: crayon_settings.class.php:140
|
80 |
+
#: crayon_settings.class.php:146
|
81 |
+
#: crayon_settings.class.php:157
|
82 |
#@ crayon-syntax-highlighter
|
83 |
msgid "Always"
|
84 |
msgstr "Sempre"
|
85 |
|
86 |
+
#: crayon_settings.class.php:140
|
87 |
+
#: crayon_settings.class.php:146
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Never"
|
90 |
msgstr "Mai"
|
91 |
|
92 |
+
#: crayon_settings.class.php:146
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "When Found"
|
95 |
msgstr "Quando Trovato"
|
96 |
|
97 |
+
#: crayon_settings.class.php:162
|
98 |
#@ crayon-syntax-highlighter
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Su doppio click"
|
101 |
|
102 |
+
#: crayon_settings.class.php:162
|
103 |
#@ crayon-syntax-highlighter
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Il singolo click"
|
106 |
|
107 |
+
#: crayon_settings.class.php:170
|
|
|
|
|
|
|
|
|
|
|
108 |
#@ crayon-syntax-highlighter
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "È verificato un errore. Riprova più tardi."
|
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:565
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Enable code copy/paste"
|
291 |
msgstr "Abilita copiare il codice/incolla"
|
292 |
|
293 |
+
#: crayon_settings_wp.class.php:567
|
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:568
|
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:570
|
304 |
#@ crayon-syntax-highlighter
|
305 |
msgid "Tab size in spaces"
|
306 |
msgstr "Dimensione tabulazione in spazi"
|
307 |
|
308 |
+
#: crayon_settings_wp.class.php:572
|
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:582
|
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:589
|
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:591
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Clear Now"
|
326 |
msgstr "Svuota adesso"
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:593
|
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:594
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Disable animations"
|
336 |
msgstr "Disattivare le animazioni"
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:595
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Disable runtime stats"
|
341 |
msgstr "Disabilitare runtime stats"
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:602
|
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:603
|
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:604
|
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:616
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Show Log"
|
361 |
msgstr "Mostra registro"
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:618
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Clear Log"
|
366 |
msgstr "Cancella registro"
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:619
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Email Admin"
|
371 |
msgstr "E-mail Admin"
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:621
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Email Developer"
|
376 |
msgstr "Email Developer"
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:637
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Version"
|
381 |
msgstr "Versione"
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:639
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Developer"
|
386 |
msgstr "Sviluppatore"
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:663
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
391 |
msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
|
392 |
|
393 |
+
#: util/preview.php:61
|
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:97
|
400 |
#@ crayon-syntax-highlighter
|
401 |
msgid "Hourly"
|
402 |
msgstr "Ogni ora"
|
403 |
|
404 |
+
#: crayon_settings.class.php:97
|
405 |
#@ crayon-syntax-highlighter
|
406 |
msgid "Daily"
|
407 |
msgstr "Quotidiano"
|
408 |
|
409 |
+
#: crayon_settings.class.php:98
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "Weekly"
|
412 |
msgstr "Settimanale"
|
413 |
|
414 |
+
#: crayon_settings.class.php:98
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Monthly"
|
417 |
msgstr "Mensile"
|
418 |
|
419 |
+
#: crayon_settings.class.php:99
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Immediately"
|
422 |
msgstr "Immediatamente"
|
426 |
msgid "Crayon Help"
|
427 |
msgstr "Crayon Aiuto"
|
428 |
|
429 |
+
#: crayon_settings_wp.class.php:592
|
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:592
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr "Perché?"
|
444 |
msgstr[0] "%d lingua è stata rilevata."
|
445 |
msgstr[1] "%d lingue sono state rilevate."
|
446 |
|
447 |
+
#: crayon_settings_wp.class.php:585
|
448 |
#@ crayon-syntax-highlighter
|
449 |
msgid "Followed by your relative URL."
|
450 |
msgstr "Seguito dal relativo URL."
|
451 |
|
452 |
+
#: crayon_settings_wp.class.php:623
|
453 |
#@ crayon-syntax-highlighter
|
454 |
msgid "The log is currently empty."
|
455 |
msgstr "Il registro è vuoto."
|
456 |
|
457 |
+
#: crayon_settings_wp.class.php:625
|
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:625
|
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:627
|
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:573
|
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:574
|
478 |
+
#: crayon_settings_wp.class.php:575
|
479 |
+
#: crayon_settings_wp.class.php:576
|
480 |
#@ crayon-syntax-highlighter
|
481 |
msgid "Learn More"
|
482 |
msgstr "Approfondisci"
|
483 |
|
484 |
+
#: crayon_settings_wp.class.php:577
|
485 |
#@ crayon-syntax-highlighter
|
486 |
msgid "Show Mixed Language Icon (+)"
|
487 |
msgstr "Mostra icona misto di lingua (+)"
|
488 |
|
489 |
+
#: crayon_settings_wp.class.php:576
|
490 |
#@ crayon-syntax-highlighter
|
491 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
492 |
msgstr "Lasciare Evidenziando Lingua mista con delimitatori e tag."
|
493 |
|
494 |
+
#: crayon_settings_wp.class.php:574
|
495 |
#@ crayon-syntax-highlighter
|
496 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
497 |
msgstr "Cattura Tags come Mini [php][/php] come Crayons."
|
498 |
|
499 |
+
#: crayon_settings_wp.class.php:575
|
500 |
#@ crayon-syntax-highlighter
|
501 |
msgid "Enable [plain][/plain] tag."
|
502 |
msgstr "Abilita tag [plain][/plain]."
|
503 |
|
504 |
+
#: crayon_settings.class.php:162
|
505 |
+
#@ crayon-syntax-highlighter
|
506 |
+
msgid "Disable Mouse Events"
|
507 |
+
msgstr "Disabilitare eventi di mouse"
|
508 |
+
|
509 |
+
#: crayon_settings_wp.class.php:563
|
510 |
+
#@ crayon-syntax-highlighter
|
511 |
+
msgid "Enable plain code toggling"
|
512 |
+
msgstr "Abilita commutazione del semplice codice"
|
513 |
+
|
514 |
+
#: crayon_settings_wp.class.php:564
|
515 |
+
#@ crayon-syntax-highlighter
|
516 |
+
msgid "Show the plain code by default"
|
517 |
+
msgstr "Mostrare il codice normale per impostazione predefinita"
|
518 |
+
|
519 |
+
#. translators: plugin header field 'Name'
|
520 |
+
#: crayon_wp.class.php:0
|
521 |
+
#@ crayon-syntax-highlighter
|
522 |
+
msgid "Crayon Syntax Highlighter"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#. translators: plugin header field 'PluginURI'
|
526 |
+
#: crayon_wp.class.php:0
|
527 |
+
#@ crayon-syntax-highlighter
|
528 |
+
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#. translators: plugin header field 'Description'
|
532 |
+
#: crayon_wp.class.php:0
|
533 |
+
#@ crayon-syntax-highlighter
|
534 |
+
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
535 |
+
msgstr "Supporta più lingue, temi, evidenziando da un file di URL, locale o testo del messaggio."
|
536 |
+
|
537 |
+
#. translators: plugin header field 'Author'
|
538 |
+
#: crayon_wp.class.php:0
|
539 |
+
#@ crayon-syntax-highlighter
|
540 |
+
msgid "Aram Kocharyan"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#. translators: plugin header field 'AuthorURI'
|
544 |
+
#: crayon_wp.class.php:0
|
545 |
+
#@ crayon-syntax-highlighter
|
546 |
+
msgid "http://ak.net84.net/"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#. translators: plugin header field 'Version'
|
550 |
+
#: crayon_wp.class.php:0
|
551 |
+
#@ crayon-syntax-highlighter
|
552 |
+
msgid "1.7.7"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: crayon_wp.class.php:367
|
556 |
+
#@ crayon-syntax-highlighter
|
557 |
+
msgid "View Settings"
|
558 |
+
msgstr "Visualizza impostazioni"
|
559 |
+
|
560 |
+
#: crayon_wp.class.php:368
|
561 |
+
#@ crayon-syntax-highlighter
|
562 |
+
msgid "Donate"
|
563 |
+
msgstr "Donare"
|
564 |
+
|
trans/crayon-syntax-highlighter-ja.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-ja.po
CHANGED
@@ -19,122 +19,117 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Hourly"
|
25 |
msgstr "毎時間"
|
26 |
|
27 |
-
#: crayon_settings.class.php:
|
28 |
#@ crayon-syntax-highlighter
|
29 |
msgid "Daily"
|
30 |
msgstr "毎日"
|
31 |
|
32 |
-
#: crayon_settings.class.php:
|
33 |
#@ crayon-syntax-highlighter
|
34 |
msgid "Weekly"
|
35 |
msgstr "毎週"
|
36 |
|
37 |
-
#: crayon_settings.class.php:
|
38 |
#@ crayon-syntax-highlighter
|
39 |
msgid "Monthly"
|
40 |
msgstr "毎月"
|
41 |
|
42 |
-
#: crayon_settings.class.php:
|
43 |
#@ crayon-syntax-highlighter
|
44 |
msgid "Immediately"
|
45 |
msgstr "直後に"
|
46 |
|
47 |
-
#: crayon_settings.class.php:
|
48 |
-
#: crayon_settings.class.php:
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr "最大"
|
52 |
|
53 |
-
#: crayon_settings.class.php:
|
54 |
-
#: crayon_settings.class.php:
|
55 |
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr "最小"
|
58 |
|
59 |
-
#: crayon_settings.class.php:
|
60 |
-
#: crayon_settings.class.php:
|
61 |
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr "固定"
|
64 |
|
65 |
-
#: crayon_settings.class.php:
|
66 |
-
#: crayon_settings.class.php:
|
67 |
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr "ピクセル"
|
70 |
|
71 |
-
#: crayon_settings.class.php:
|
72 |
-
#: crayon_settings.class.php:
|
73 |
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr "パーセント"
|
76 |
|
77 |
-
#: crayon_settings.class.php:
|
78 |
#@ crayon-syntax-highlighter
|
79 |
msgid "None"
|
80 |
msgstr "なし"
|
81 |
|
82 |
-
#: crayon_settings.class.php:
|
83 |
#@ crayon-syntax-highlighter
|
84 |
msgid "Left"
|
85 |
msgstr "左"
|
86 |
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Center"
|
90 |
msgstr "中央"
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "Right"
|
95 |
msgstr "右"
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
-
#: crayon_settings.class.php:
|
99 |
-
#: crayon_settings.class.php:
|
100 |
#@ crayon-syntax-highlighter
|
101 |
msgid "On MouseOver"
|
102 |
msgstr "マウスオーバー時"
|
103 |
|
104 |
-
#: crayon_settings.class.php:
|
105 |
-
#: crayon_settings.class.php:
|
106 |
-
#: crayon_settings.class.php:
|
107 |
#@ crayon-syntax-highlighter
|
108 |
msgid "Always"
|
109 |
msgstr "常に表示"
|
110 |
|
111 |
-
#: crayon_settings.class.php:
|
112 |
-
#: crayon_settings.class.php:
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Never"
|
115 |
msgstr "表示しない"
|
116 |
|
117 |
-
#: crayon_settings.class.php:
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "When Found"
|
120 |
msgstr "言語が判明した場合"
|
121 |
|
122 |
-
#: crayon_settings.class.php:
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "On Double Click"
|
125 |
msgstr "ダブルクリック時"
|
126 |
|
127 |
-
#: crayon_settings.class.php:
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "On Single Click"
|
130 |
msgstr "シングルクリック時"
|
131 |
|
132 |
-
#: crayon_settings.class.php:
|
133 |
-
#@ crayon-syntax-highlighter
|
134 |
-
msgid "Only Using Toggle"
|
135 |
-
msgstr "切り替え使用時のみ"
|
136 |
-
|
137 |
-
#: crayon_settings.class.php:166
|
138 |
#@ crayon-syntax-highlighter
|
139 |
msgid "An error has occurred. Please try again later."
|
140 |
msgstr "エラーが発生しました。後でもう一度やり直してください。"
|
@@ -320,122 +315,122 @@ msgstr "ID %s の選択されたフォントをロードできませんでした
|
|
320 |
msgid "Enable plain code view and display"
|
321 |
msgstr "単純なコードビューを有効にする"
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Enable code copy/paste"
|
326 |
msgstr "コードのコピー/貼り付けを有効にする"
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Enable opening code in a window"
|
331 |
msgstr "新しいウインドウでコードを開くを有効にする"
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Display scrollbars (when needed)"
|
336 |
msgstr "必要に応じたスクロールバーの表示"
|
337 |
|
338 |
-
#: crayon_settings_wp.class.php:
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Tab size in spaces"
|
341 |
msgstr "tab挿入の空白代替え数(単純コードビュー)"
|
342 |
|
343 |
-
#: crayon_settings_wp.class.php:
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Remove whitespace surrounding the shortcode content"
|
346 |
msgstr "ショートコードの内容を囲む空白の部分を削除します"
|
347 |
|
348 |
-
#: crayon_settings_wp.class.php:
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
351 |
msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
|
352 |
|
353 |
-
#: crayon_settings_wp.class.php:
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Clear the cache used to store remote code requests"
|
356 |
msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
|
357 |
|
358 |
-
#: crayon_settings_wp.class.php:
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Clear Now"
|
361 |
msgstr "今すぐクリア"
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
366 |
msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Why?"
|
371 |
msgstr "なぜ試みるのか?"
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
376 |
msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Disable animations"
|
381 |
msgstr "アニメーションを無効にする"
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Disable runtime stats"
|
386 |
msgstr "プログラム実行時の統計を無効にする"
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Log errors for individual Crayons"
|
391 |
msgstr "個々設置(Crayon)のエラーを記録"
|
392 |
|
393 |
-
#: crayon_settings_wp.class.php:
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Log system-wide errors"
|
396 |
msgstr "システム全体のエラーを記録"
|
397 |
|
398 |
-
#: crayon_settings_wp.class.php:
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Display custom message for errors"
|
401 |
msgstr "カスタムエラーメッセージを表示する"
|
402 |
|
403 |
-
#: crayon_settings_wp.class.php:
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Show Log"
|
406 |
msgstr "ログを見る"
|
407 |
|
408 |
-
#: crayon_settings_wp.class.php:
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Clear Log"
|
411 |
msgstr "ログをクリア"
|
412 |
|
413 |
-
#: crayon_settings_wp.class.php:
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "Email Admin"
|
416 |
msgstr "管理者にEメールを送信"
|
417 |
|
418 |
-
#: crayon_settings_wp.class.php:
|
419 |
#@ crayon-syntax-highlighter
|
420 |
msgid "Email Developer"
|
421 |
msgstr "開発者にEメールを送信"
|
422 |
|
423 |
-
#: crayon_settings_wp.class.php:
|
424 |
#@ crayon-syntax-highlighter
|
425 |
msgid "Version"
|
426 |
msgstr "バージョン"
|
427 |
|
428 |
-
#: crayon_settings_wp.class.php:
|
429 |
#@ crayon-syntax-highlighter
|
430 |
msgid "Developer"
|
431 |
msgstr "開発者"
|
432 |
|
433 |
-
#: crayon_settings_wp.class.php:
|
434 |
#@ crayon-syntax-highlighter
|
435 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
436 |
msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
|
437 |
|
438 |
-
#: util/preview.php:
|
439 |
#, php-format
|
440 |
#@ crayon-syntax-highlighter
|
441 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
@@ -448,60 +443,121 @@ msgid "%d language has been detected."
|
|
448 |
msgid_plural "%d languages have been detected."
|
449 |
msgstr[0] "%dのソース言語が検出されてます。"
|
450 |
|
451 |
-
#: crayon_settings_wp.class.php:
|
452 |
#@ crayon-syntax-highlighter
|
453 |
msgid "Capture <pre> tags as Crayons"
|
454 |
msgstr "Crayonsとして<pre>タグをキャプチャ"
|
455 |
|
456 |
-
#: crayon_settings_wp.class.php:
|
457 |
#@ crayon-syntax-highlighter
|
458 |
msgid "Followed by your relative URL."
|
459 |
msgstr "相対URLが続きます。"
|
460 |
|
461 |
-
#: crayon_settings_wp.class.php:
|
462 |
#@ crayon-syntax-highlighter
|
463 |
msgid "The log is currently empty."
|
464 |
msgstr "ログは現在空です。"
|
465 |
|
466 |
-
#: crayon_settings_wp.class.php:
|
467 |
#@ crayon-syntax-highlighter
|
468 |
msgid "The log file exists and is writable."
|
469 |
msgstr "ログファイルは存在し、書き込み可能です。"
|
470 |
|
471 |
-
#: crayon_settings_wp.class.php:
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "The log file exists and is not writable."
|
474 |
msgstr "ログファイルは存在するが、書き込み可能ではありません。"
|
475 |
|
476 |
-
#: crayon_settings_wp.class.php:
|
477 |
#@ crayon-syntax-highlighter
|
478 |
msgid "The log file does not exist and is not writable."
|
479 |
msgstr "ログファイルが存在しないので書き込むことが出来ません。"
|
480 |
|
481 |
-
#: crayon_settings_wp.class.php:572
|
482 |
-
#: crayon_settings_wp.class.php:573
|
483 |
#: crayon_settings_wp.class.php:574
|
|
|
|
|
484 |
#@ crayon-syntax-highlighter
|
485 |
msgid "Learn More"
|
486 |
msgstr "詳細はこちら"
|
487 |
|
488 |
-
#: crayon_settings_wp.class.php:
|
489 |
#@ crayon-syntax-highlighter
|
490 |
msgid "Show Mixed Language Icon (+)"
|
491 |
msgstr "混合言語のアイコンを(+)を表示"
|
492 |
|
493 |
-
#: crayon_settings_wp.class.php:
|
494 |
#@ crayon-syntax-highlighter
|
495 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
496 |
msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
|
497 |
|
498 |
-
#: crayon_settings_wp.class.php:
|
499 |
#@ crayon-syntax-highlighter
|
500 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
501 |
msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
|
502 |
|
503 |
-
#: crayon_settings_wp.class.php:
|
504 |
#@ crayon-syntax-highlighter
|
505 |
msgid "Enable [plain][/plain] tag."
|
506 |
msgstr "[plain][/plain]タグを有効にします。"
|
507 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:97
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Hourly"
|
25 |
msgstr "毎時間"
|
26 |
|
27 |
+
#: crayon_settings.class.php:97
|
28 |
#@ crayon-syntax-highlighter
|
29 |
msgid "Daily"
|
30 |
msgstr "毎日"
|
31 |
|
32 |
+
#: crayon_settings.class.php:98
|
33 |
#@ crayon-syntax-highlighter
|
34 |
msgid "Weekly"
|
35 |
msgstr "毎週"
|
36 |
|
37 |
+
#: crayon_settings.class.php:98
|
38 |
#@ crayon-syntax-highlighter
|
39 |
msgid "Monthly"
|
40 |
msgstr "毎月"
|
41 |
|
42 |
+
#: crayon_settings.class.php:99
|
43 |
#@ crayon-syntax-highlighter
|
44 |
msgid "Immediately"
|
45 |
msgstr "直後に"
|
46 |
|
47 |
+
#: crayon_settings.class.php:123
|
48 |
+
#: crayon_settings.class.php:127
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr "最大"
|
52 |
|
53 |
+
#: crayon_settings.class.php:123
|
54 |
+
#: crayon_settings.class.php:127
|
55 |
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr "最小"
|
58 |
|
59 |
+
#: crayon_settings.class.php:123
|
60 |
+
#: crayon_settings.class.php:127
|
61 |
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr "固定"
|
64 |
|
65 |
+
#: crayon_settings.class.php:125
|
66 |
+
#: crayon_settings.class.php:129
|
67 |
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr "ピクセル"
|
70 |
|
71 |
+
#: crayon_settings.class.php:125
|
72 |
+
#: crayon_settings.class.php:129
|
73 |
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr "パーセント"
|
76 |
|
77 |
+
#: crayon_settings.class.php:138
|
78 |
#@ crayon-syntax-highlighter
|
79 |
msgid "None"
|
80 |
msgstr "なし"
|
81 |
|
82 |
+
#: crayon_settings.class.php:138
|
83 |
#@ crayon-syntax-highlighter
|
84 |
msgid "Left"
|
85 |
msgstr "左"
|
86 |
|
87 |
+
#: crayon_settings.class.php:138
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Center"
|
90 |
msgstr "中央"
|
91 |
|
92 |
+
#: crayon_settings.class.php:138
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "Right"
|
95 |
msgstr "右"
|
96 |
|
97 |
+
#: crayon_settings.class.php:140
|
98 |
+
#: crayon_settings.class.php:157
|
99 |
+
#: crayon_settings.class.php:162
|
100 |
#@ crayon-syntax-highlighter
|
101 |
msgid "On MouseOver"
|
102 |
msgstr "マウスオーバー時"
|
103 |
|
104 |
+
#: crayon_settings.class.php:140
|
105 |
+
#: crayon_settings.class.php:146
|
106 |
+
#: crayon_settings.class.php:157
|
107 |
#@ crayon-syntax-highlighter
|
108 |
msgid "Always"
|
109 |
msgstr "常に表示"
|
110 |
|
111 |
+
#: crayon_settings.class.php:140
|
112 |
+
#: crayon_settings.class.php:146
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Never"
|
115 |
msgstr "表示しない"
|
116 |
|
117 |
+
#: crayon_settings.class.php:146
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "When Found"
|
120 |
msgstr "言語が判明した場合"
|
121 |
|
122 |
+
#: crayon_settings.class.php:162
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "On Double Click"
|
125 |
msgstr "ダブルクリック時"
|
126 |
|
127 |
+
#: crayon_settings.class.php:162
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "On Single Click"
|
130 |
msgstr "シングルクリック時"
|
131 |
|
132 |
+
#: crayon_settings.class.php:170
|
|
|
|
|
|
|
|
|
|
|
133 |
#@ crayon-syntax-highlighter
|
134 |
msgid "An error has occurred. Please try again later."
|
135 |
msgstr "エラーが発生しました。後でもう一度やり直してください。"
|
315 |
msgid "Enable plain code view and display"
|
316 |
msgstr "単純なコードビューを有効にする"
|
317 |
|
318 |
+
#: crayon_settings_wp.class.php:565
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Enable code copy/paste"
|
321 |
msgstr "コードのコピー/貼り付けを有効にする"
|
322 |
|
323 |
+
#: crayon_settings_wp.class.php:567
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Enable opening code in a window"
|
326 |
msgstr "新しいウインドウでコードを開くを有効にする"
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:568
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Display scrollbars (when needed)"
|
331 |
msgstr "必要に応じたスクロールバーの表示"
|
332 |
|
333 |
+
#: crayon_settings_wp.class.php:570
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Tab size in spaces"
|
336 |
msgstr "tab挿入の空白代替え数(単純コードビュー)"
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:572
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "Remove whitespace surrounding the shortcode content"
|
341 |
msgstr "ショートコードの内容を囲む空白の部分を削除します"
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:582
|
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:589
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Clear the cache used to store remote code requests"
|
351 |
msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
|
352 |
|
353 |
+
#: crayon_settings_wp.class.php:591
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Clear Now"
|
356 |
msgstr "今すぐクリア"
|
357 |
|
358 |
+
#: crayon_settings_wp.class.php:592
|
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:592
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Why?"
|
366 |
msgstr "なぜ試みるのか?"
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:593
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
371 |
msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:594
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Disable animations"
|
376 |
msgstr "アニメーションを無効にする"
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:595
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Disable runtime stats"
|
381 |
msgstr "プログラム実行時の統計を無効にする"
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:602
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Log errors for individual Crayons"
|
386 |
msgstr "個々設置(Crayon)のエラーを記録"
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:603
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Log system-wide errors"
|
391 |
msgstr "システム全体のエラーを記録"
|
392 |
|
393 |
+
#: crayon_settings_wp.class.php:604
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Display custom message for errors"
|
396 |
msgstr "カスタムエラーメッセージを表示する"
|
397 |
|
398 |
+
#: crayon_settings_wp.class.php:616
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Show Log"
|
401 |
msgstr "ログを見る"
|
402 |
|
403 |
+
#: crayon_settings_wp.class.php:618
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Clear Log"
|
406 |
msgstr "ログをクリア"
|
407 |
|
408 |
+
#: crayon_settings_wp.class.php:619
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Email Admin"
|
411 |
msgstr "管理者にEメールを送信"
|
412 |
|
413 |
+
#: crayon_settings_wp.class.php:621
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "Email Developer"
|
416 |
msgstr "開発者にEメールを送信"
|
417 |
|
418 |
+
#: crayon_settings_wp.class.php:637
|
419 |
#@ crayon-syntax-highlighter
|
420 |
msgid "Version"
|
421 |
msgstr "バージョン"
|
422 |
|
423 |
+
#: crayon_settings_wp.class.php:639
|
424 |
#@ crayon-syntax-highlighter
|
425 |
msgid "Developer"
|
426 |
msgstr "開発者"
|
427 |
|
428 |
+
#: crayon_settings_wp.class.php:663
|
429 |
#@ crayon-syntax-highlighter
|
430 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
431 |
msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
|
432 |
|
433 |
+
#: util/preview.php:61
|
434 |
#, php-format
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
443 |
msgid_plural "%d languages have been detected."
|
444 |
msgstr[0] "%dのソース言語が検出されてます。"
|
445 |
|
446 |
+
#: crayon_settings_wp.class.php:573
|
447 |
#@ crayon-syntax-highlighter
|
448 |
msgid "Capture <pre> tags as Crayons"
|
449 |
msgstr "Crayonsとして<pre>タグをキャプチャ"
|
450 |
|
451 |
+
#: crayon_settings_wp.class.php:585
|
452 |
#@ crayon-syntax-highlighter
|
453 |
msgid "Followed by your relative URL."
|
454 |
msgstr "相対URLが続きます。"
|
455 |
|
456 |
+
#: crayon_settings_wp.class.php:623
|
457 |
#@ crayon-syntax-highlighter
|
458 |
msgid "The log is currently empty."
|
459 |
msgstr "ログは現在空です。"
|
460 |
|
461 |
+
#: crayon_settings_wp.class.php:625
|
462 |
#@ crayon-syntax-highlighter
|
463 |
msgid "The log file exists and is writable."
|
464 |
msgstr "ログファイルは存在し、書き込み可能です。"
|
465 |
|
466 |
+
#: crayon_settings_wp.class.php:625
|
467 |
#@ crayon-syntax-highlighter
|
468 |
msgid "The log file exists and is not writable."
|
469 |
msgstr "ログファイルは存在するが、書き込み可能ではありません。"
|
470 |
|
471 |
+
#: crayon_settings_wp.class.php:627
|
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:574
|
477 |
+
#: crayon_settings_wp.class.php:575
|
478 |
+
#: crayon_settings_wp.class.php:576
|
479 |
#@ crayon-syntax-highlighter
|
480 |
msgid "Learn More"
|
481 |
msgstr "詳細はこちら"
|
482 |
|
483 |
+
#: crayon_settings_wp.class.php:577
|
484 |
#@ crayon-syntax-highlighter
|
485 |
msgid "Show Mixed Language Icon (+)"
|
486 |
msgstr "混合言語のアイコンを(+)を表示"
|
487 |
|
488 |
+
#: crayon_settings_wp.class.php:576
|
489 |
#@ crayon-syntax-highlighter
|
490 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
491 |
msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
|
492 |
|
493 |
+
#: crayon_settings_wp.class.php:574
|
494 |
#@ crayon-syntax-highlighter
|
495 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
496 |
msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
|
497 |
|
498 |
+
#: crayon_settings_wp.class.php:575
|
499 |
#@ crayon-syntax-highlighter
|
500 |
msgid "Enable [plain][/plain] tag."
|
501 |
msgstr "[plain][/plain]タグを有効にします。"
|
502 |
|
503 |
+
#: crayon_settings.class.php:162
|
504 |
+
#@ crayon-syntax-highlighter
|
505 |
+
msgid "Disable Mouse Events"
|
506 |
+
msgstr "マウスイベントを無効にする"
|
507 |
+
|
508 |
+
#: crayon_settings_wp.class.php:563
|
509 |
+
#@ crayon-syntax-highlighter
|
510 |
+
msgid "Enable plain code toggling"
|
511 |
+
msgstr "単純なコードの切り替えを有効にする"
|
512 |
+
|
513 |
+
#: crayon_settings_wp.class.php:564
|
514 |
+
#@ crayon-syntax-highlighter
|
515 |
+
msgid "Show the plain code by default"
|
516 |
+
msgstr "デフォルトでプレインコードを表示する"
|
517 |
+
|
518 |
+
#. translators: plugin header field 'Name'
|
519 |
+
#: crayon_wp.class.php:0
|
520 |
+
#@ crayon-syntax-highlighter
|
521 |
+
msgid "Crayon Syntax Highlighter"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#. translators: plugin header field 'PluginURI'
|
525 |
+
#: crayon_wp.class.php:0
|
526 |
+
#@ crayon-syntax-highlighter
|
527 |
+
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#. translators: plugin header field 'Description'
|
531 |
+
#: crayon_wp.class.php:0
|
532 |
+
#@ crayon-syntax-highlighter
|
533 |
+
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
534 |
+
msgstr "URL、ローカルファイルまたはポストのテキストからハイライト複数の言語、テーマを、サポートしています。"
|
535 |
+
|
536 |
+
#. translators: plugin header field 'Author'
|
537 |
+
#: crayon_wp.class.php:0
|
538 |
+
#@ crayon-syntax-highlighter
|
539 |
+
msgid "Aram Kocharyan"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#. translators: plugin header field 'AuthorURI'
|
543 |
+
#: crayon_wp.class.php:0
|
544 |
+
#@ crayon-syntax-highlighter
|
545 |
+
msgid "http://ak.net84.net/"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#. translators: plugin header field 'Version'
|
549 |
+
#: crayon_wp.class.php:0
|
550 |
+
#@ crayon-syntax-highlighter
|
551 |
+
msgid "1.7.7"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: crayon_wp.class.php:367
|
555 |
+
#@ crayon-syntax-highlighter
|
556 |
+
msgid "View Settings"
|
557 |
+
msgstr "ビューの設定"
|
558 |
+
|
559 |
+
#: crayon_wp.class.php:368
|
560 |
+
#@ crayon-syntax-highlighter
|
561 |
+
msgid "Donate"
|
562 |
+
msgstr "寄付する"
|
563 |
+
|
trans/crayon-syntax-highlighter-ru_RU.po
CHANGED
@@ -19,122 +19,117 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Hourly"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: crayon_settings.class.php:
|
28 |
#@ crayon-syntax-highlighter
|
29 |
msgid "Daily"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: crayon_settings.class.php:
|
33 |
#@ crayon-syntax-highlighter
|
34 |
msgid "Weekly"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: crayon_settings.class.php:
|
38 |
#@ crayon-syntax-highlighter
|
39 |
msgid "Monthly"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: crayon_settings.class.php:
|
43 |
#@ crayon-syntax-highlighter
|
44 |
msgid "Immediately"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: crayon_settings.class.php:
|
48 |
-
#: crayon_settings.class.php:
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: crayon_settings.class.php:
|
54 |
-
#: crayon_settings.class.php:
|
55 |
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: crayon_settings.class.php:
|
60 |
-
#: crayon_settings.class.php:
|
61 |
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: crayon_settings.class.php:
|
66 |
-
#: crayon_settings.class.php:
|
67 |
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: crayon_settings.class.php:
|
72 |
-
#: crayon_settings.class.php:
|
73 |
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: crayon_settings.class.php:
|
78 |
#@ crayon-syntax-highlighter
|
79 |
msgid "None"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: crayon_settings.class.php:
|
83 |
#@ crayon-syntax-highlighter
|
84 |
msgid "Left"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: crayon_settings.class.php:
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Center"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: crayon_settings.class.php:
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "Right"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: crayon_settings.class.php:
|
98 |
-
#: crayon_settings.class.php:
|
99 |
-
#: crayon_settings.class.php:
|
100 |
#@ crayon-syntax-highlighter
|
101 |
msgid "On MouseOver"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: crayon_settings.class.php:
|
105 |
-
#: crayon_settings.class.php:
|
106 |
-
#: crayon_settings.class.php:
|
107 |
#@ crayon-syntax-highlighter
|
108 |
msgid "Always"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: crayon_settings.class.php:
|
112 |
-
#: crayon_settings.class.php:
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Never"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: crayon_settings.class.php:
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "When Found"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: crayon_settings.class.php:
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "On Double Click"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: crayon_settings.class.php:
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "On Single Click"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: crayon_settings.class.php:
|
133 |
-
#@ crayon-syntax-highlighter
|
134 |
-
msgid "Only Using Toggle"
|
135 |
-
msgstr ""
|
136 |
-
|
137 |
-
#: crayon_settings.class.php:166
|
138 |
#@ crayon-syntax-highlighter
|
139 |
msgid "An error has occurred. Please try again later."
|
140 |
msgstr ""
|
@@ -315,112 +310,112 @@ msgstr ""
|
|
315 |
msgid "Enable plain code view and display"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: crayon_settings_wp.class.php:
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Enable code copy/paste"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: crayon_settings_wp.class.php:
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Enable opening code in a window"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: crayon_settings_wp.class.php:
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Display scrollbars (when needed)"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: crayon_settings_wp.class.php:
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Tab size in spaces"
|
336 |
msgstr ""
|
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 ""
|
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 "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: crayon_settings_wp.class.php:
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Disable animations"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: crayon_settings_wp.class.php:
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Disable runtime stats"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: crayon_settings_wp.class.php:
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Log errors for individual Crayons"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: crayon_settings_wp.class.php:
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Log system-wide errors"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: crayon_settings_wp.class.php:
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Display custom message for errors"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: crayon_settings_wp.class.php:
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Show Log"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: crayon_settings_wp.class.php:
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Clear Log"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: crayon_settings_wp.class.php:
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Email Admin"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: crayon_settings_wp.class.php:
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Email Developer"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: crayon_settings_wp.class.php:
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Version"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: crayon_settings_wp.class.php:
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "Developer"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: crayon_settings_wp.class.php:
|
419 |
#@ crayon-syntax-highlighter
|
420 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: util/preview.php:
|
424 |
#, php-format
|
425 |
#@ crayon-syntax-highlighter
|
426 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
@@ -431,12 +426,12 @@ msgstr ""
|
|
431 |
msgid "Crayon Help"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: crayon_settings_wp.class.php:
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: crayon_settings_wp.class.php:
|
440 |
#@ crayon-syntax-highlighter
|
441 |
msgid "Why?"
|
442 |
msgstr ""
|
@@ -450,60 +445,121 @@ msgstr[0] ""
|
|
450 |
msgstr[1] ""
|
451 |
msgstr[2] ""
|
452 |
|
453 |
-
#: crayon_settings_wp.class.php:
|
454 |
#@ crayon-syntax-highlighter
|
455 |
msgid "Followed by your relative URL."
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: crayon_settings_wp.class.php:
|
459 |
#@ crayon-syntax-highlighter
|
460 |
msgid "The log is currently empty."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: crayon_settings_wp.class.php:
|
464 |
#@ crayon-syntax-highlighter
|
465 |
msgid "The log file exists and is writable."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: crayon_settings_wp.class.php:
|
469 |
#@ crayon-syntax-highlighter
|
470 |
msgid "The log file exists and is not writable."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: crayon_settings_wp.class.php:
|
474 |
#@ crayon-syntax-highlighter
|
475 |
msgid "The log file does not exist and is not writable."
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: crayon_settings_wp.class.php:
|
479 |
#@ crayon-syntax-highlighter
|
480 |
msgid "Capture <pre> tags as Crayons"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: crayon_settings_wp.class.php:572
|
484 |
-
#: crayon_settings_wp.class.php:573
|
485 |
#: crayon_settings_wp.class.php:574
|
|
|
|
|
486 |
#@ crayon-syntax-highlighter
|
487 |
msgid "Learn More"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: crayon_settings_wp.class.php:
|
491 |
#@ crayon-syntax-highlighter
|
492 |
msgid "Show Mixed Language Icon (+)"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: crayon_settings_wp.class.php:
|
496 |
#@ crayon-syntax-highlighter
|
497 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: crayon_settings_wp.class.php:
|
501 |
#@ crayon-syntax-highlighter
|
502 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: crayon_settings_wp.class.php:
|
506 |
#@ crayon-syntax-highlighter
|
507 |
msgid "Enable [plain][/plain] tag."
|
508 |
msgstr ""
|
509 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_settings.class.php:97
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Hourly"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: crayon_settings.class.php:97
|
28 |
#@ crayon-syntax-highlighter
|
29 |
msgid "Daily"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: crayon_settings.class.php:98
|
33 |
#@ crayon-syntax-highlighter
|
34 |
msgid "Weekly"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: crayon_settings.class.php:98
|
38 |
#@ crayon-syntax-highlighter
|
39 |
msgid "Monthly"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: crayon_settings.class.php:99
|
43 |
#@ crayon-syntax-highlighter
|
44 |
msgid "Immediately"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: crayon_settings.class.php:123
|
48 |
+
#: crayon_settings.class.php:127
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: crayon_settings.class.php:123
|
54 |
+
#: crayon_settings.class.php:127
|
55 |
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: crayon_settings.class.php:123
|
60 |
+
#: crayon_settings.class.php:127
|
61 |
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: crayon_settings.class.php:125
|
66 |
+
#: crayon_settings.class.php:129
|
67 |
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: crayon_settings.class.php:125
|
72 |
+
#: crayon_settings.class.php:129
|
73 |
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: crayon_settings.class.php:138
|
78 |
#@ crayon-syntax-highlighter
|
79 |
msgid "None"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: crayon_settings.class.php:138
|
83 |
#@ crayon-syntax-highlighter
|
84 |
msgid "Left"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: crayon_settings.class.php:138
|
88 |
#@ crayon-syntax-highlighter
|
89 |
msgid "Center"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: crayon_settings.class.php:138
|
93 |
#@ crayon-syntax-highlighter
|
94 |
msgid "Right"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: crayon_settings.class.php:140
|
98 |
+
#: crayon_settings.class.php:157
|
99 |
+
#: crayon_settings.class.php:162
|
100 |
#@ crayon-syntax-highlighter
|
101 |
msgid "On MouseOver"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: crayon_settings.class.php:140
|
105 |
+
#: crayon_settings.class.php:146
|
106 |
+
#: crayon_settings.class.php:157
|
107 |
#@ crayon-syntax-highlighter
|
108 |
msgid "Always"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: crayon_settings.class.php:140
|
112 |
+
#: crayon_settings.class.php:146
|
113 |
#@ crayon-syntax-highlighter
|
114 |
msgid "Never"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: crayon_settings.class.php:146
|
118 |
#@ crayon-syntax-highlighter
|
119 |
msgid "When Found"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: crayon_settings.class.php:162
|
123 |
#@ crayon-syntax-highlighter
|
124 |
msgid "On Double Click"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: crayon_settings.class.php:162
|
128 |
#@ crayon-syntax-highlighter
|
129 |
msgid "On Single Click"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: crayon_settings.class.php:170
|
|
|
|
|
|
|
|
|
|
|
133 |
#@ crayon-syntax-highlighter
|
134 |
msgid "An error has occurred. Please try again later."
|
135 |
msgstr ""
|
310 |
msgid "Enable plain code view and display"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: crayon_settings_wp.class.php:565
|
314 |
#@ crayon-syntax-highlighter
|
315 |
msgid "Enable code copy/paste"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: crayon_settings_wp.class.php:567
|
319 |
#@ crayon-syntax-highlighter
|
320 |
msgid "Enable opening code in a window"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: crayon_settings_wp.class.php:568
|
324 |
#@ crayon-syntax-highlighter
|
325 |
msgid "Display scrollbars (when needed)"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: crayon_settings_wp.class.php:570
|
329 |
#@ crayon-syntax-highlighter
|
330 |
msgid "Tab size in spaces"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: crayon_settings_wp.class.php:572
|
334 |
#@ crayon-syntax-highlighter
|
335 |
msgid "Remove whitespace surrounding the shortcode content"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: crayon_settings_wp.class.php:582
|
339 |
#@ crayon-syntax-highlighter
|
340 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: crayon_settings_wp.class.php:589
|
344 |
#@ crayon-syntax-highlighter
|
345 |
msgid "Clear the cache used to store remote code requests"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: crayon_settings_wp.class.php:591
|
349 |
#@ crayon-syntax-highlighter
|
350 |
msgid "Clear Now"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: crayon_settings_wp.class.php:593
|
354 |
#@ crayon-syntax-highlighter
|
355 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: crayon_settings_wp.class.php:594
|
359 |
#@ crayon-syntax-highlighter
|
360 |
msgid "Disable animations"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: crayon_settings_wp.class.php:595
|
364 |
#@ crayon-syntax-highlighter
|
365 |
msgid "Disable runtime stats"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: crayon_settings_wp.class.php:602
|
369 |
#@ crayon-syntax-highlighter
|
370 |
msgid "Log errors for individual Crayons"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: crayon_settings_wp.class.php:603
|
374 |
#@ crayon-syntax-highlighter
|
375 |
msgid "Log system-wide errors"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: crayon_settings_wp.class.php:604
|
379 |
#@ crayon-syntax-highlighter
|
380 |
msgid "Display custom message for errors"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: crayon_settings_wp.class.php:616
|
384 |
#@ crayon-syntax-highlighter
|
385 |
msgid "Show Log"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: crayon_settings_wp.class.php:618
|
389 |
#@ crayon-syntax-highlighter
|
390 |
msgid "Clear Log"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: crayon_settings_wp.class.php:619
|
394 |
#@ crayon-syntax-highlighter
|
395 |
msgid "Email Admin"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: crayon_settings_wp.class.php:621
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Email Developer"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: crayon_settings_wp.class.php:637
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Version"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: crayon_settings_wp.class.php:639
|
409 |
#@ crayon-syntax-highlighter
|
410 |
msgid "Developer"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: crayon_settings_wp.class.php:663
|
414 |
#@ crayon-syntax-highlighter
|
415 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: util/preview.php:61
|
419 |
#, php-format
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
426 |
msgid "Crayon Help"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: crayon_settings_wp.class.php:592
|
430 |
#@ crayon-syntax-highlighter
|
431 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: crayon_settings_wp.class.php:592
|
435 |
#@ crayon-syntax-highlighter
|
436 |
msgid "Why?"
|
437 |
msgstr ""
|
445 |
msgstr[1] ""
|
446 |
msgstr[2] ""
|
447 |
|
448 |
+
#: crayon_settings_wp.class.php:585
|
449 |
#@ crayon-syntax-highlighter
|
450 |
msgid "Followed by your relative URL."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: crayon_settings_wp.class.php:623
|
454 |
#@ crayon-syntax-highlighter
|
455 |
msgid "The log is currently empty."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: crayon_settings_wp.class.php:625
|
459 |
#@ crayon-syntax-highlighter
|
460 |
msgid "The log file exists and is writable."
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: crayon_settings_wp.class.php:625
|
464 |
#@ crayon-syntax-highlighter
|
465 |
msgid "The log file exists and is not writable."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: crayon_settings_wp.class.php:627
|
469 |
#@ crayon-syntax-highlighter
|
470 |
msgid "The log file does not exist and is not writable."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: crayon_settings_wp.class.php:573
|
474 |
#@ crayon-syntax-highlighter
|
475 |
msgid "Capture <pre> tags as Crayons"
|
476 |
msgstr ""
|
477 |
|
|
|
|
|
478 |
#: crayon_settings_wp.class.php:574
|
479 |
+
#: crayon_settings_wp.class.php:575
|
480 |
+
#: crayon_settings_wp.class.php:576
|
481 |
#@ crayon-syntax-highlighter
|
482 |
msgid "Learn More"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: crayon_settings_wp.class.php:577
|
486 |
#@ crayon-syntax-highlighter
|
487 |
msgid "Show Mixed Language Icon (+)"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: crayon_settings_wp.class.php:576
|
491 |
#@ crayon-syntax-highlighter
|
492 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: crayon_settings_wp.class.php:574
|
496 |
#@ crayon-syntax-highlighter
|
497 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: crayon_settings_wp.class.php:575
|
501 |
#@ crayon-syntax-highlighter
|
502 |
msgid "Enable [plain][/plain] tag."
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: crayon_settings.class.php:162
|
506 |
+
#@ crayon-syntax-highlighter
|
507 |
+
msgid "Disable Mouse Events"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: crayon_settings_wp.class.php:563
|
511 |
+
#@ crayon-syntax-highlighter
|
512 |
+
msgid "Enable plain code toggling"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: crayon_settings_wp.class.php:564
|
516 |
+
#@ crayon-syntax-highlighter
|
517 |
+
msgid "Show the plain code by default"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#. translators: plugin header field 'Name'
|
521 |
+
#: crayon_wp.class.php:0
|
522 |
+
#@ crayon-syntax-highlighter
|
523 |
+
msgid "Crayon Syntax Highlighter"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#. translators: plugin header field 'PluginURI'
|
527 |
+
#: crayon_wp.class.php:0
|
528 |
+
#@ crayon-syntax-highlighter
|
529 |
+
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#. translators: plugin header field 'Description'
|
533 |
+
#: crayon_wp.class.php:0
|
534 |
+
#@ crayon-syntax-highlighter
|
535 |
+
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#. translators: plugin header field 'Author'
|
539 |
+
#: crayon_wp.class.php:0
|
540 |
+
#@ crayon-syntax-highlighter
|
541 |
+
msgid "Aram Kocharyan"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#. translators: plugin header field 'AuthorURI'
|
545 |
+
#: crayon_wp.class.php:0
|
546 |
+
#@ crayon-syntax-highlighter
|
547 |
+
msgid "http://ak.net84.net/"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#. translators: plugin header field 'Version'
|
551 |
+
#: crayon_wp.class.php:0
|
552 |
+
#@ crayon-syntax-highlighter
|
553 |
+
msgid "1.7.7"
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: crayon_wp.class.php:367
|
557 |
+
#@ crayon-syntax-highlighter
|
558 |
+
msgid "View Settings"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: crayon_wp.class.php:368
|
562 |
+
#@ crayon-syntax-highlighter
|
563 |
+
msgid "Donate"
|
564 |
+
msgstr ""
|
565 |
+
|
util/help.htm
CHANGED
@@ -33,7 +33,8 @@
|
|
33 |
<p>You can even use Mini Tags like:</p>
|
34 |
<p align="center"><code>[html]<strong>some code</strong>[/html]</code><br />
|
35 |
<code>[php]echo "whassup?";[/php]</code></p>
|
36 |
-
<p>The short name in brackets you use are called IDs and Aliases. For example, <code>xml</code> and <code>hxml</code> are Aliases to the language ID <code>xhtml</code>. The IDs and their Aliases are under:</p
|
|
|
37 |
</pre>
|
38 |
<p>Perhaps best of all, you can mix code together like on a real HTML page, by having <code><script></code>, <code><style></code> and <code><?php...?></code> tags all in a single Crayon. Find out more <a href="http://bit.ly/ukwts2" target="_blank">here</a>.</p>
|
39 |
<p>You can also display a quick unhighlighted snapshot of code using the <code>[plain]...[/plain]</code> tag. The code will look like it does in the HTML view of the post editor.</p>
|
@@ -160,6 +161,21 @@
|
|
160 |
<td>true/false</td>
|
161 |
<td>Enable line number toggling</td>
|
162 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
<tr>
|
164 |
<td>start-line</td>
|
165 |
<td>number >= 0</td>
|
@@ -219,9 +235,9 @@
|
|
219 |
<p>Here's a simple example of attributes:</p><p><code>[crayon lang="html" font-size="20" mark="1" width="200px" toolbar="false"] <strong>This is great!</strong> [/crayon] </code></p>
|
220 |
<p>If you want to prevent the <code>[crayon]</code> shortcode from turning into a Crayon, use: <code>$[crayon]...[/crayon]</code>. If you want to prevent a <code>[/crayon]</code> from ending a Crayon (say if you wanted to have the Crayon shortcode appear in a Crayon itself), then use <code>$[crayon]...[/crayon]$</code>. The same applies to <code><pre></code> and Mini Tags.</p>
|
221 |
<p><strong>Themes</strong></p>
|
222 |
-
<p>Crayon comes with built-in Themes to style your code.
|
223 |
<p><strong>Languages</strong></p>
|
224 |
-
<p>You can customize and create new languages and define how to capture each element (keywords, comments, strings, etc.) with regular expressions. Languages are structured <code>/langs/lang-name/lang-name.txt</code>. Take a look at <code>/langs/default/default.txt</code> and check out the neat regex of the default/generic language. I've also spent considerable time putting together a <a href="
|
225 |
<p><strong>Fonts</strong></p>
|
226 |
<p>You can define fonts and font-sizes within Themes, but you can also override the theme's font with those inside <code>/fonts/</code> and also provide @font-face fonts just like in themes - it's just CSS after all.</p>
|
227 |
<p><strong>Disabling Highlight</strong></p>
|
33 |
<p>You can even use Mini Tags like:</p>
|
34 |
<p align="center"><code>[html]<strong>some code</strong>[/html]</code><br />
|
35 |
<code>[php]echo "whassup?";[/php]</code></p>
|
36 |
+
<p>The short name in brackets you use are called IDs and Aliases. For example, <code>xml</code> and <code>hxml</code> are Aliases to the language ID <code>xhtml</code>. The IDs and their Aliases are under:</p>
|
37 |
+
<pre style="text-align:center;">Settings > Crayon > Languages > Show Languages
|
38 |
</pre>
|
39 |
<p>Perhaps best of all, you can mix code together like on a real HTML page, by having <code><script></code>, <code><style></code> and <code><?php...?></code> tags all in a single Crayon. Find out more <a href="http://bit.ly/ukwts2" target="_blank">here</a>.</p>
|
40 |
<p>You can also display a quick unhighlighted snapshot of code using the <code>[plain]...[/plain]</code> tag. The code will look like it does in the HTML view of the post editor.</p>
|
161 |
<td>true/false</td>
|
162 |
<td>Enable line number toggling</td>
|
163 |
</tr>
|
164 |
+
<tr>
|
165 |
+
<td>plain</td>
|
166 |
+
<td>true/false</td>
|
167 |
+
<td>Enable plain code. Disabling will also disable plain toggling and copy/paste which use the plain code.</td>
|
168 |
+
</tr>
|
169 |
+
<tr>
|
170 |
+
<td>plain-toggle</td>
|
171 |
+
<td>true/false</td>
|
172 |
+
<td>Enable plain code toggling</td>
|
173 |
+
</tr>
|
174 |
+
<tr>
|
175 |
+
<td>show-plain-default</td>
|
176 |
+
<td>true/false</td>
|
177 |
+
<td>Show the plain code by default instead of the highlighted code</td>
|
178 |
+
</tr>
|
179 |
<tr>
|
180 |
<td>start-line</td>
|
181 |
<td>number >= 0</td>
|
235 |
<p>Here's a simple example of attributes:</p><p><code>[crayon lang="html" font-size="20" mark="1" width="200px" toolbar="false"] <strong>This is great!</strong> [/crayon] </code></p>
|
236 |
<p>If you want to prevent the <code>[crayon]</code> shortcode from turning into a Crayon, use: <code>$[crayon]...[/crayon]</code>. If you want to prevent a <code>[/crayon]</code> from ending a Crayon (say if you wanted to have the Crayon shortcode appear in a Crayon itself), then use <code>$[crayon]...[/crayon]$</code>. The same applies to <code><pre></code> and Mini Tags.</p>
|
237 |
<p><strong>Themes</strong></p>
|
238 |
+
<p>Crayon comes with built-in Themes to style your code. Themes are structured <code>/themes/theme-name/theme-name.css</code>. If you know CSS, take a look at <code>/themes/default/default.css</code> to get an idea of how they work and how you can change/create them.</p>
|
239 |
<p><strong>Languages</strong></p>
|
240 |
+
<p>You can customize and create new languages and define how to capture each element (keywords, comments, strings, etc.) with regular expressions. Languages are structured <code>/langs/lang-name/lang-name.txt</code>. Take a look at <code>/langs/default/default.txt</code> and check out the neat regex of the default/generic language. I've also spent considerable time putting together a <a href="http://ak.net84.net/projects/crayon-language-file-specification/" target="_blank">quick guide</a> in <code>/langs/readme.txt</code> that will be added to the online docs. If your language is missing, send me an <a href="#info" target="_blank">email</a>. There will be more languages added over time, of course.</p>
|
241 |
<p><strong>Fonts</strong></p>
|
242 |
<p>You can define fonts and font-sizes within Themes, but you can also override the theme's font with those inside <code>/fonts/</code> and also provide @font-face fonts just like in themes - it's just CSS after all.</p>
|
243 |
<p><strong>Disabling Highlight</strong></p>
|
util/preview.php
CHANGED
@@ -7,7 +7,13 @@ require_once ($wp_root_path . 'wp-load.php');
|
|
7 |
|
8 |
echo '<link rel="stylesheet" href="', plugins_url(CRAYON_STYLE, dirname(__FILE__)),
|
9 |
'?ver=', $CRAYON_VERSION, '" type="text/css" media="all" />';
|
10 |
-
echo '<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
echo '<div id="content">';
|
12 |
CrayonSettingsWP::load_settings(); // Run first to ensure global settings loaded
|
13 |
|
7 |
|
8 |
echo '<link rel="stylesheet" href="', plugins_url(CRAYON_STYLE, dirname(__FILE__)),
|
9 |
'?ver=', $CRAYON_VERSION, '" type="text/css" media="all" />';
|
10 |
+
echo '<script type="text/javascript">
|
11 |
+
|
12 |
+
jQuery(document).ready(function() {
|
13 |
+
//CrayonSyntax.init();
|
14 |
+
});
|
15 |
+
|
16 |
+
</script>';
|
17 |
echo '<div id="content">';
|
18 |
CrayonSettingsWP::load_settings(); // Run first to ensure global settings loaded
|
19 |
|