Version Description
- Added PostgreSQL thanks to Emiliano Leporati and Alessandro Venezia from http://bitorchestra.com/
- Added ActionScript
- Thanks to Thomas Tan for finding and fixing IE6 compatibility bugs in crayon.js!
- Improved Objective-C, XHTML and default language
- ?alt: tag now supports spaces in language files, treats then as \s+
- Added support for single quotes in CSS and JS
Download this release
Release Info
Developer | akarmenia |
Plugin | Crayon Syntax Highlighter |
Version | 1.8.0 |
Comparing to | |
See all releases |
Code changes from version 1.7.25 to 1.8.0
- crayon_formatter.class.php +70 -24
- crayon_highlighter.class.php +10 -106
- crayon_langs.class.php +7 -6
- crayon_parser.class.php +3 -1
- crayon_settings_wp.class.php +7 -5
- crayon_wp.class.php +3 -2
- css/admin_style.css +5 -1
- global.php +1 -1
- js/crayon.js +28 -23
- js/crayon_admin.js +4 -4
- langs/aliases.txt +3 -0
- langs/as/as.txt +22 -0
- langs/as/library.txt +16 -0
- langs/as/reserved.txt +8 -0
- langs/as/statement.txt +1 -0
- langs/c/sh.txt +0 -20
- langs/c/statement.txt +0 -5
- langs/css/css.txt +2 -2
- langs/default/default.txt +11 -6
- langs/delimiters.txt +0 -1
- langs/extensions.txt +1 -0
- langs/ilogic/ilogic.txt +24 -0
- langs/ilogic/modifier.txt +0 -0
- langs/ilogic/operator.txt +10 -0
- langs/ilogic/reserved.txt +39 -0
- langs/ilogic/special.txt +10 -0
- langs/ilogic/statement.txt +18 -0
- langs/ilogic/type.txt +6 -0
- langs/js/js.txt +1 -1
- langs/objc/objc.txt +7 -3
- langs/pgsql/built.in.func.txt +219 -0
- langs/pgsql/operator.txt +60 -0
- langs/pgsql/pgsql.txt +18 -0
- langs/pgsql/reserved.txt +369 -0
- langs/pgsql/statement.txt +95 -0
- langs/pgsql/type.txt +78 -0
- langs/xhtml/xhtml.txt +4 -6
- readme.txt +39 -7
- trans/crayon-syntax-highlighter-de_DE.mo +0 -0
- trans/crayon-syntax-highlighter-de_DE.po +700 -668
- trans/crayon-syntax-highlighter-es_ES.mo +0 -0
- trans/crayon-syntax-highlighter-es_ES.po +41 -9
- trans/crayon-syntax-highlighter-fr_FR.mo +0 -0
- trans/crayon-syntax-highlighter-fr_FR.po +41 -9
- trans/crayon-syntax-highlighter-it_IT.mo +0 -0
- trans/crayon-syntax-highlighter-it_IT.po +41 -9
- trans/crayon-syntax-highlighter-ja.mo +0 -0
- trans/crayon-syntax-highlighter-ja.po +177 -145
- trans/crayon-syntax-highlighter-ru_RU.mo +0 -0
- trans/crayon-syntax-highlighter-ru_RU.po +40 -4
- trans/crayon-syntax-highlighter-tr_TR.mo +0 -0
- trans/crayon-syntax-highlighter-tr_TR.po +699 -0
- trans/crayon-syntax-highlighter-zh_CN.mo +0 -0
- trans/crayon-syntax-highlighter-zh_CN.po +699 -0
- util/crayon_util.class.php +5 -0
- util/sample/as.txt +9 -0
- util/sample/ilogic.txt +10 -0
- util/sample/monkey.txt +8 -0
- util/sample/pgsql.txt +8 -0
- util/sample/ruby.txt +9 -0
- util/sample/xhtml.txt +12 -0
crayon_formatter.class.php
CHANGED
@@ -13,6 +13,13 @@ class CrayonFormatter {
|
|
13 |
accordingly. This must be static for preg_replace_callback() to access it.*/
|
14 |
private static $elements = array();
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
// Methods ================================================================
|
17 |
private function __construct() {}
|
18 |
|
@@ -23,10 +30,10 @@ class CrayonFormatter {
|
|
23 |
/* Perform the replace on the code using the regex, pass the captured matches for
|
24 |
formatting before they are replaced */
|
25 |
try {
|
|
|
26 |
// Match language regex
|
27 |
$elements = $language->elements();
|
28 |
$regex = $language->regex();
|
29 |
-
|
30 |
if (!empty($regex) && !empty($elements)) {
|
31 |
// Get array of CrayonElements
|
32 |
self::$elements = array_values($elements);
|
@@ -38,13 +45,13 @@ class CrayonFormatter {
|
|
38 |
}
|
39 |
|
40 |
return $code;
|
41 |
-
} else {
|
42 |
return self::clean_code($code);
|
43 |
}
|
44 |
}
|
45 |
|
46 |
/* Performs a replace to format each match based on the captured element. */
|
47 |
-
private static function format_match($matches) {
|
48 |
/* First index in $matches is full match, subsequent indices are groups.
|
49 |
* Minimum number of elements in array is 2, so minimum captured group is 0. */
|
50 |
$captured_group_number = count($matches) - 2;
|
@@ -200,25 +207,25 @@ class CrayonFormatter {
|
|
200 |
$readonly = $touch ? '' : 'readonly';
|
201 |
$print_plain = $print_plain_button = '';
|
202 |
$print_plain = '<textarea class="crayon-plain" settings="' . $plain_settings . '" '. $readonly .' wrap="off" style="' . $plain_style .'">' . self::clean_code($hl->code()) . '</textarea>';
|
203 |
-
$print_plain_button = $hl->setting_val(CrayonSettings::PLAIN_TOGGLE) ? '<a class="crayon-plain-button crayon-button" title="Toggle Plain Code"></a>' : '';
|
204 |
$print_copy_button = !$touch && $hl->setting_val(CrayonSettings::PLAIN) && $hl->setting_val(CrayonSettings::COPY) ?
|
205 |
-
'<a class="crayon-copy-button crayon-button" title="Copy Plain Code"></a>' : '';
|
206 |
} else {
|
207 |
$print_plain = $plain_settings = $print_plain_button = $print_copy_button = '';
|
208 |
}
|
209 |
|
210 |
$print_popup_button = $hl->setting_val(CrayonSettings::POPUP) ?
|
211 |
-
'<a class="crayon-popup-button crayon-button" title="Open Code
|
212 |
|
213 |
if ($hl->setting_val(CrayonSettings::NUMS_TOGGLE)) {
|
214 |
-
$print_nums_button = '<a class="crayon-nums-button crayon-button" title="Toggle Line Numbers"></a>';
|
215 |
} else {
|
216 |
$print_nums_button = '';
|
217 |
}
|
218 |
/* The table is rendered invisible by CSS and enabled with JS when asked to. If JS
|
219 |
is not enabled or fails, the toolbar won't work so there is no point to display it. */
|
220 |
|
221 |
-
$print_plus = $hl->is_mixed() && $hl->setting_val(CrayonSettings::SHOW_MIXED) ? '<span class="crayon-mixed-highlight" title="Contains Mixed Languages"></span>' : '';
|
222 |
$buttons = $print_plus.$print_nums_button.$print_copy_button.$print_popup_button.$print_plain_button.$print_lang;
|
223 |
$button_preload = '';
|
224 |
foreach (array('nums', 'copy', 'popup', 'plain') as $name) {
|
@@ -258,12 +265,9 @@ class CrayonFormatter {
|
|
258 |
$font_id = $hl->setting_val(CrayonSettings::FONT);
|
259 |
$font_id_dashed = CrayonUtil::space_to_hyphen($font_id);
|
260 |
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
}
|
265 |
-
// $font_id_dashed = 'crayon-font-' . CrayonUtil::space_to_hyphen($font_id);
|
266 |
-
// }
|
267 |
|
268 |
// Determine font size
|
269 |
// TODO improve logic
|
@@ -285,14 +289,7 @@ class CrayonFormatter {
|
|
285 |
|
286 |
// Determine scrollbar visibility
|
287 |
$code_settings .= $hl->setting_val(CrayonSettings::SCROLL) && !$touch ? ' scroll-always' : ' scroll-mouseover';
|
288 |
-
|
289 |
-
// case 0 :
|
290 |
-
// $code_settings .= ' scroll-mouseover';
|
291 |
-
// break;
|
292 |
-
// default :
|
293 |
-
// $code_settings .= ' scroll-always';
|
294 |
-
// }
|
295 |
-
|
296 |
// Disable animations
|
297 |
if ($hl->setting_val(CrayonSettings::DISABLE_ANIM)) {
|
298 |
$code_settings .= ' disable-anim';
|
@@ -355,14 +352,14 @@ class CrayonFormatter {
|
|
355 |
$crayon_os = CrayonUtil::is_mac() ? 'mac' : 'pc';
|
356 |
|
357 |
// Produce style for individual crayon
|
358 |
-
$output .= '<style type="text/css">'.$font_style.'</style>';
|
359 |
|
360 |
// Produce output
|
361 |
$output .= '
|
362 |
<div id="'.$uid.'" class="crayon-syntax crayon-theme-'.$theme_id_dashed.' crayon-font-'.$font_id_dashed.'" crayon-os="'.$crayon_os.'" settings="'.$code_settings.'" style="'.$code_style.'">
|
363 |
'.$toolbar.'
|
364 |
<div class="crayon-main" style="'.$main_style.'">
|
365 |
-
<table class="crayon-table"
|
366 |
<tr class="crayon-row">';
|
367 |
|
368 |
if ($print_nums !== FALSE) {
|
@@ -408,6 +405,55 @@ class CrayonFormatter {
|
|
408 |
return self::print_code($hl, $error, $line_numbers, $print);
|
409 |
}
|
410 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
// Auxiliary Methods ======================================================
|
412 |
/* Prepares code for formatting. */
|
413 |
public static function clean_code($code) {
|
13 |
accordingly. This must be static for preg_replace_callback() to access it.*/
|
14 |
private static $elements = array();
|
15 |
|
16 |
+
// Delimiters
|
17 |
+
// Current crayon undergoing delimiter replace
|
18 |
+
private static $curr;
|
19 |
+
private static $delimiters;
|
20 |
+
private static $delim_regex;
|
21 |
+
private static $delim_pieces;
|
22 |
+
|
23 |
// Methods ================================================================
|
24 |
private function __construct() {}
|
25 |
|
30 |
/* Perform the replace on the code using the regex, pass the captured matches for
|
31 |
formatting before they are replaced */
|
32 |
try {
|
33 |
+
CrayonParser::parse($language->id());
|
34 |
// Match language regex
|
35 |
$elements = $language->elements();
|
36 |
$regex = $language->regex();
|
|
|
37 |
if (!empty($regex) && !empty($elements)) {
|
38 |
// Get array of CrayonElements
|
39 |
self::$elements = array_values($elements);
|
45 |
}
|
46 |
|
47 |
return $code;
|
48 |
+
} else {
|
49 |
return self::clean_code($code);
|
50 |
}
|
51 |
}
|
52 |
|
53 |
/* Performs a replace to format each match based on the captured element. */
|
54 |
+
private static function format_match($matches) {
|
55 |
/* First index in $matches is full match, subsequent indices are groups.
|
56 |
* Minimum number of elements in array is 2, so minimum captured group is 0. */
|
57 |
$captured_group_number = count($matches) - 2;
|
207 |
$readonly = $touch ? '' : 'readonly';
|
208 |
$print_plain = $print_plain_button = '';
|
209 |
$print_plain = '<textarea class="crayon-plain" settings="' . $plain_settings . '" '. $readonly .' wrap="off" style="' . $plain_style .'">' . self::clean_code($hl->code()) . '</textarea>';
|
210 |
+
$print_plain_button = $hl->setting_val(CrayonSettings::PLAIN_TOGGLE) ? '<a class="crayon-plain-button crayon-button" title="'.crayon__('Toggle Plain Code').'"></a>' : '';
|
211 |
$print_copy_button = !$touch && $hl->setting_val(CrayonSettings::PLAIN) && $hl->setting_val(CrayonSettings::COPY) ?
|
212 |
+
'<a class="crayon-copy-button crayon-button" show_txt="'.crayon__('Press %s to Copy, %s to Paste').'" title="'.crayon__('Copy Plain Code').'"></a>' : '';
|
213 |
} else {
|
214 |
$print_plain = $plain_settings = $print_plain_button = $print_copy_button = '';
|
215 |
}
|
216 |
|
217 |
$print_popup_button = $hl->setting_val(CrayonSettings::POPUP) ?
|
218 |
+
'<a class="crayon-popup-button crayon-button" title="'.crayon__('Open Code In New Window').'" onclick="return false;"></a>' : '';
|
219 |
|
220 |
if ($hl->setting_val(CrayonSettings::NUMS_TOGGLE)) {
|
221 |
+
$print_nums_button = '<a class="crayon-nums-button crayon-button" title="'.crayon__('Toggle Line Numbers').'"></a>';
|
222 |
} else {
|
223 |
$print_nums_button = '';
|
224 |
}
|
225 |
/* The table is rendered invisible by CSS and enabled with JS when asked to. If JS
|
226 |
is not enabled or fails, the toolbar won't work so there is no point to display it. */
|
227 |
|
228 |
+
$print_plus = $hl->is_mixed() && $hl->setting_val(CrayonSettings::SHOW_MIXED) ? '<span class="crayon-mixed-highlight" title="'.crayon__('Contains Mixed Languages').'"></span>' : '';
|
229 |
$buttons = $print_plus.$print_nums_button.$print_copy_button.$print_popup_button.$print_plain_button.$print_lang;
|
230 |
$button_preload = '';
|
231 |
foreach (array('nums', 'copy', 'popup', 'plain') as $name) {
|
265 |
$font_id = $hl->setting_val(CrayonSettings::FONT);
|
266 |
$font_id_dashed = CrayonUtil::space_to_hyphen($font_id);
|
267 |
|
268 |
+
if (!$hl->setting_val(CrayonSettings::ENQUEUE_FONTS)) {
|
269 |
+
$output .= CrayonResources::fonts()->get_css($font_id);
|
270 |
+
}
|
|
|
|
|
|
|
271 |
|
272 |
// Determine font size
|
273 |
// TODO improve logic
|
289 |
|
290 |
// Determine scrollbar visibility
|
291 |
$code_settings .= $hl->setting_val(CrayonSettings::SCROLL) && !$touch ? ' scroll-always' : ' scroll-mouseover';
|
292 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
// Disable animations
|
294 |
if ($hl->setting_val(CrayonSettings::DISABLE_ANIM)) {
|
295 |
$code_settings .= ' disable-anim';
|
352 |
$crayon_os = CrayonUtil::is_mac() ? 'mac' : 'pc';
|
353 |
|
354 |
// Produce style for individual crayon
|
355 |
+
$output .= '<style type="text/css" media="all">'.$font_style.'</style>';
|
356 |
|
357 |
// Produce output
|
358 |
$output .= '
|
359 |
<div id="'.$uid.'" class="crayon-syntax crayon-theme-'.$theme_id_dashed.' crayon-font-'.$font_id_dashed.'" crayon-os="'.$crayon_os.'" settings="'.$code_settings.'" style="'.$code_style.'">
|
360 |
'.$toolbar.'
|
361 |
<div class="crayon-main" style="'.$main_style.'">
|
362 |
+
<table class="crayon-table" cellspacing="0" cellpadding="0">
|
363 |
<tr class="crayon-row">';
|
364 |
|
365 |
if ($print_nums !== FALSE) {
|
405 |
return self::print_code($hl, $error, $line_numbers, $print);
|
406 |
}
|
407 |
|
408 |
+
// Delimiters =============================================================
|
409 |
+
|
410 |
+
public static function format_mixed_code($code, $language, $highlight = TRUE, $hl = NULL) {
|
411 |
+
if (!$highlight) {
|
412 |
+
return self::format_code($code, $language, $highlight, $hl);
|
413 |
+
}
|
414 |
+
self::$curr = $hl;
|
415 |
+
self::$delim_pieces = array();
|
416 |
+
// Remove crayon internal element from INPUT code
|
417 |
+
$code = preg_replace('#'.CrayonParser::CRAYON_ELEMENT_REGEX_CAPTURE.'#msi', '', $code);
|
418 |
+
|
419 |
+
if (self::$delimiters == NULL) {
|
420 |
+
self::$delimiters = CrayonResources::langs()->delimiters();
|
421 |
+
}
|
422 |
+
|
423 |
+
// Find all delimiters in all languages
|
424 |
+
if (self::$delim_regex == NULL) {
|
425 |
+
self::$delim_regex = '#(' . implode(')|(', array_values(self::$delimiters)) . ')#msi';
|
426 |
+
}
|
427 |
+
|
428 |
+
// Extract delimited code, replace with internal elements
|
429 |
+
$internal_code = preg_replace_callback(self::$delim_regex, 'CrayonFormatter::delim_to_internal', $code);
|
430 |
+
|
431 |
+
// Format with given language
|
432 |
+
$formatted_code = CrayonFormatter::format_code($internal_code, $language, TRUE, $hl);
|
433 |
+
|
434 |
+
// Replace internal elements with delimited pieces
|
435 |
+
$formatted_code = preg_replace_callback('#\{\{crayon-internal:(\d+)\}\}#', 'CrayonFormatter::internal_to_code', $formatted_code);
|
436 |
+
|
437 |
+
return $formatted_code;
|
438 |
+
}
|
439 |
+
|
440 |
+
public static function delim_to_internal($matches) {
|
441 |
+
self::$curr->is_mixed(TRUE);
|
442 |
+
$capture_group = count($matches) - 2;
|
443 |
+
$capture_groups = array_keys(self::$delimiters);
|
444 |
+
$lang_id = $capture_groups[$capture_group];
|
445 |
+
if ( ($lang = CrayonResources::langs()->get($lang_id)) === NULL ) {
|
446 |
+
return $matches[0];
|
447 |
+
}
|
448 |
+
$internal = sprintf('{{crayon-internal:%d}}', count(self::$delim_pieces));
|
449 |
+
self::$delim_pieces[] = CrayonFormatter::format_code($matches[0], $lang, TRUE, self::$curr);
|
450 |
+
return $internal;
|
451 |
+
}
|
452 |
+
|
453 |
+
public static function internal_to_code($matches) {
|
454 |
+
return self::$delim_pieces[intval($matches[1])];
|
455 |
+
}
|
456 |
+
|
457 |
// Auxiliary Methods ======================================================
|
458 |
/* Prepares code for formatting. */
|
459 |
public static function clean_code($code) {
|
crayon_highlighter.class.php
CHANGED
@@ -19,7 +19,6 @@ class CrayonHighlighter {
|
|
19 |
private $error = '';
|
20 |
// Determine whether the code needs to be loaded, parsed or formatted
|
21 |
private $needs_load = TRUE;
|
22 |
-
private $needs_parse = TRUE;
|
23 |
private $needs_format = TRUE;
|
24 |
// Record the script run times
|
25 |
private $runtime = array();
|
@@ -146,117 +145,19 @@ class CrayonHighlighter {
|
|
146 |
// Disable highlighting for errors and empty code
|
147 |
return;
|
148 |
}
|
149 |
-
|
150 |
-
|
151 |
-
$tmr->start();
|
152 |
-
if (empty($this->language)) {
|
153 |
-
$this->language($this->setting_val(CrayonSettings::FALLBACK_LANG));
|
154 |
-
}
|
155 |
-
|
156 |
-
if ( $this->language != NULL && !$this->language->is_default() && !$this->language->is_parsed()) {
|
157 |
-
CrayonParser::parse($this->language()->id());
|
158 |
-
}
|
159 |
-
$this->needs_parse = FALSE;
|
160 |
-
$this->runtime[CRAYON_PARSE_TIME] = $tmr->stop();
|
161 |
}
|
162 |
if ($this->needs_format) {
|
163 |
$tmr->start();
|
164 |
try {
|
165 |
-
|
166 |
if (!$this->setting_val(CrayonSettings::MIXED)) {
|
167 |
// Format the code with the generated regex and elements
|
168 |
$this->formatted_code = CrayonFormatter::format_code($this->code, $this->language, $highlight, $this);
|
169 |
} else {
|
170 |
-
|
171 |
-
|
172 |
-
$this->code = preg_replace('#'.CrayonParser::CRAYON_ELEMENT_REGEX_CAPTURE.'#msi', '', $this->code);
|
173 |
-
|
174 |
-
/* Stores the pieces of code in different languages.
|
175 |
-
* Each element is array($start_index, $end_index, $code)
|
176 |
-
* More than one language can add matches, so we need to keep this array sorted by $start_index
|
177 |
-
* and also ensure there is no overlap between matches as we add more matches. We then use the indicies
|
178 |
-
* to concatenate the highlighted code and the code left over is used as glue between them.
|
179 |
-
*/
|
180 |
-
$pieces = array();
|
181 |
-
$orignal_code = $this->code;
|
182 |
-
$delimiters = CrayonResources::langs()->delimiters();
|
183 |
-
$piece_id = 1;
|
184 |
-
|
185 |
-
// Find all delimiters in all languages
|
186 |
-
foreach ($delimiters as $lang_id=>$delim_regex) {
|
187 |
-
if ( ($lang = CrayonResources::langs()->get($lang_id)) === NULL ) {
|
188 |
-
continue;
|
189 |
-
}
|
190 |
-
|
191 |
-
// Get the regex and find matches
|
192 |
-
preg_match_all($delim_regex, $orignal_code, $delim_matches, PREG_OFFSET_CAPTURE);
|
193 |
-
$length_offset = 0;
|
194 |
-
|
195 |
-
// No instance of delimiter used
|
196 |
-
if (empty($delim_matches[0])) {
|
197 |
-
continue;
|
198 |
-
}
|
199 |
-
|
200 |
-
CrayonParser::parse($lang_id);
|
201 |
-
foreach ($delim_matches[0] as $match) {
|
202 |
-
$code = $match[0];
|
203 |
-
|
204 |
-
if (strlen($code) == 0) {
|
205 |
-
continue;
|
206 |
-
}
|
207 |
-
|
208 |
-
$start_index = $match[1] + $length_offset;
|
209 |
-
$length = strlen($code);
|
210 |
-
$end_index = $start_index + strlen($code)-1;
|
211 |
-
|
212 |
-
$formatted_code = CrayonFormatter::format_code($code, $lang, $highlight, $this);
|
213 |
-
|
214 |
-
$pieces[$piece_id] = $formatted_code;
|
215 |
-
$crayon_element = sprintf('{{crayon-internal:%d}}', $piece_id);
|
216 |
-
|
217 |
-
// Replace the code in the original code with the internal element for now
|
218 |
-
$orignal_code = substr_replace($orignal_code, $crayon_element, $start_index, $length);
|
219 |
-
|
220 |
-
// Replacing the code with the internal element will invalidate $match[1] index
|
221 |
-
$length_offset += strlen($crayon_element) - $length;
|
222 |
-
$piece_id++;
|
223 |
-
$this->is_mixed = TRUE;
|
224 |
-
}
|
225 |
-
}
|
226 |
-
|
227 |
-
// Format the non-delimited code under the given language
|
228 |
-
$orignal_code = CrayonFormatter::format_code($orignal_code, $this->language, $highlight, $this);
|
229 |
-
|
230 |
-
if ($this->is_mixed) {
|
231 |
-
preg_match_all('#'.CrayonParser::CRAYON_ELEMENT_REGEX_CAPTURE.'#msi', $orignal_code, $delim_matches, PREG_OFFSET_CAPTURE);
|
232 |
-
|
233 |
-
// Replace the crayon elements with the formatted code pieces
|
234 |
-
$length_offset = 0;
|
235 |
-
for ($i = 0; $i < count($delim_matches[0]); $i++) {
|
236 |
-
$crayon_element = $delim_matches[0][$i][0];
|
237 |
-
$start_index = $delim_matches[0][$i][1] + $length_offset;
|
238 |
-
$length = strlen($crayon_element);
|
239 |
-
|
240 |
-
$piece_id = intval($delim_matches[1][$i][0]);
|
241 |
-
if ($piece_id < 1 || !array_key_exists($piece_id, $pieces)) {
|
242 |
-
// Not a valid piece id
|
243 |
-
continue;
|
244 |
-
}
|
245 |
-
|
246 |
-
$formatted_code = $pieces[$piece_id];
|
247 |
-
|
248 |
-
// Replace the internal element in the formatted code with the formatted delimited formatted
|
249 |
-
$orignal_code = substr_replace($orignal_code, $formatted_code, $start_index, $length);
|
250 |
-
|
251 |
-
// Replacing will invalidate index
|
252 |
-
$length_offset += strlen($formatted_code) - $length;
|
253 |
-
}
|
254 |
-
}
|
255 |
-
|
256 |
-
// Apply the changes
|
257 |
-
$this->formatted_code = $orignal_code;
|
258 |
}
|
259 |
-
|
260 |
} catch (Exception $e) {
|
261 |
$this->error($e->message());
|
262 |
return;
|
@@ -391,7 +292,6 @@ class CrayonHighlighter {
|
|
391 |
$this->log($string);
|
392 |
// Add the error string and ensure no further processing occurs
|
393 |
$this->needs_load = FALSE;
|
394 |
-
$this->needs_parse = FALSE;
|
395 |
$this->needs_format = FALSE;
|
396 |
}
|
397 |
|
@@ -452,8 +352,12 @@ class CrayonHighlighter {
|
|
452 |
return $this->runtime;
|
453 |
}
|
454 |
|
455 |
-
function is_mixed() {
|
456 |
-
|
|
|
|
|
|
|
|
|
457 |
}
|
458 |
}
|
459 |
?>
|
19 |
private $error = '';
|
20 |
// Determine whether the code needs to be loaded, parsed or formatted
|
21 |
private $needs_load = TRUE;
|
|
|
22 |
private $needs_format = TRUE;
|
23 |
// Record the script run times
|
24 |
private $runtime = array();
|
145 |
// Disable highlighting for errors and empty code
|
146 |
return;
|
147 |
}
|
148 |
+
if ($this->language === NULL) {
|
149 |
+
$this->language($this->setting_val(CrayonSettings::FALLBACK_LANG));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
}
|
151 |
if ($this->needs_format) {
|
152 |
$tmr->start();
|
153 |
try {
|
|
|
154 |
if (!$this->setting_val(CrayonSettings::MIXED)) {
|
155 |
// Format the code with the generated regex and elements
|
156 |
$this->formatted_code = CrayonFormatter::format_code($this->code, $this->language, $highlight, $this);
|
157 |
} else {
|
158 |
+
// Format the code with Mixed Highlighting
|
159 |
+
$this->formatted_code = CrayonFormatter::format_mixed_code($this->code, $this->language, $highlight, $this);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
}
|
|
|
161 |
} catch (Exception $e) {
|
162 |
$this->error($e->message());
|
163 |
return;
|
292 |
$this->log($string);
|
293 |
// Add the error string and ensure no further processing occurs
|
294 |
$this->needs_load = FALSE;
|
|
|
295 |
$this->needs_format = FALSE;
|
296 |
}
|
297 |
|
352 |
return $this->runtime;
|
353 |
}
|
354 |
|
355 |
+
function is_mixed($mixed = NULL) {
|
356 |
+
if ($mixed === NULL) {
|
357 |
+
return $this->is_mixed;
|
358 |
+
} else {
|
359 |
+
$this->is_mixed = $mixed;
|
360 |
+
}
|
361 |
}
|
362 |
}
|
363 |
?>
|
crayon_langs.class.php
CHANGED
@@ -22,10 +22,7 @@ class CrayonLangs extends CrayonResourceCollection {
|
|
22 |
const RESOURCE_TYPE = 'CrayonLangsResourceType';
|
23 |
|
24 |
// Used to cache the objects, since they are unlikely to change during a single run
|
25 |
-
private static $resource_cache = array();
|
26 |
-
// private static $extensions = NULL;
|
27 |
-
// private static $aliases = NULL;
|
28 |
-
// private static $delimiters = NULL;
|
29 |
|
30 |
// Methods ================================================================
|
31 |
public function __construct() {
|
@@ -331,9 +328,13 @@ class CrayonLang extends CrayonVersionResource {
|
|
331 |
return $this->delimiters;
|
332 |
// Convert to regex for capturing delimiters
|
333 |
} else if (is_string($delim) && !empty($delim)) {
|
334 |
-
$this->delimiters = '
|
335 |
} else if (is_array($delim) && !empty($delim)) {
|
336 |
-
$
|
|
|
|
|
|
|
|
|
337 |
}
|
338 |
}
|
339 |
|
22 |
const RESOURCE_TYPE = 'CrayonLangsResourceType';
|
23 |
|
24 |
// Used to cache the objects, since they are unlikely to change during a single run
|
25 |
+
private static $resource_cache = array();
|
|
|
|
|
|
|
26 |
|
27 |
// Methods ================================================================
|
28 |
public function __construct() {
|
328 |
return $this->delimiters;
|
329 |
// Convert to regex for capturing delimiters
|
330 |
} else if (is_string($delim) && !empty($delim)) {
|
331 |
+
$this->delimiters = '(?:'.$delim.')';
|
332 |
} else if (is_array($delim) && !empty($delim)) {
|
333 |
+
for ($i = 0; $i < count($delim); $i++) {
|
334 |
+
$delim[$i] = CrayonUtil::esc_atomic($delim[$i]);
|
335 |
+
}
|
336 |
+
|
337 |
+
$this->delimiters = '(?:'.implode(')|(?:', $delim).')';
|
338 |
}
|
339 |
}
|
340 |
|
crayon_parser.class.php
CHANGED
@@ -163,6 +163,8 @@ class CrayonParser {
|
|
163 |
$file_lines = CrayonUtil::lines(dirname($element->path()) . crayon_s() . $file[1][$i], 'rcwh');
|
164 |
if ($file_lines !== FALSE) {
|
165 |
$file_lines = implode('|', $file_lines);
|
|
|
|
|
166 |
$regex = str_replace($file[0][$i], "(?:$file_lines)", $regex);
|
167 |
} else {
|
168 |
CrayonLog::syslog("Parsing of '{$element->path()}' failed, an (?alt) tag failed for the element '{$element->name()}'" );
|
@@ -203,7 +205,7 @@ class CrayonParser {
|
|
203 |
}
|
204 |
|
205 |
// Ensure all parenthesis are atomic to avoid conflicting with element matches
|
206 |
-
$regex =
|
207 |
|
208 |
// Escape #, this is our delimiter
|
209 |
$regex = CrayonUtil::esc_hash($regex);
|
163 |
$file_lines = CrayonUtil::lines(dirname($element->path()) . crayon_s() . $file[1][$i], 'rcwh');
|
164 |
if ($file_lines !== FALSE) {
|
165 |
$file_lines = implode('|', $file_lines);
|
166 |
+
// If any spaces exist, treat them as whitespace
|
167 |
+
$file_lines = preg_replace('#[ \t]+#msi', '\s+', $file_lines);
|
168 |
$regex = str_replace($file[0][$i], "(?:$file_lines)", $regex);
|
169 |
} else {
|
170 |
CrayonLog::syslog("Parsing of '{$element->path()}' failed, an (?alt) tag failed for the element '{$element->name()}'" );
|
205 |
}
|
206 |
|
207 |
// Ensure all parenthesis are atomic to avoid conflicting with element matches
|
208 |
+
$regex = CrayonUtil::esc_atomic($regex);
|
209 |
|
210 |
// Escape #, this is our delimiter
|
211 |
$regex = CrayonUtil::esc_hash($regex);
|
crayon_settings_wp.class.php
CHANGED
@@ -511,8 +511,8 @@ class CrayonSettingsWP {
|
|
511 |
echo '<br/><span class="crayon-error">', sprintf(crayon__('The selected language with id %s could not be loaded'), '<strong>'.$db_fallback.'</strong>'), '. </span>';
|
512 |
}
|
513 |
// Language parsing info
|
514 |
-
echo '<a id="show-lang" onclick="CrayonSyntaxAdmin.show_langs(\'', plugins_url(CRAYON_LIST_LANGS_PHP, __FILE__),
|
515 |
-
'\');">', crayon__('Show Languages'), '</a
|
516 |
} else {
|
517 |
echo 'No languages could be parsed.';
|
518 |
}
|
@@ -641,7 +641,7 @@ class CrayonSettingsWP {
|
|
641 |
if (!empty($log)) {
|
642 |
echo '<div id="crayon-log-wrapper">', '<div id="crayon-log"><div id="crayon-log-text">', $log,
|
643 |
'</div></div>', '<div id="crayon-log-controls">',
|
644 |
-
'<input type="button" id="crayon-log-toggle" class="button-secondary" value="', crayon__('Show Log'), '"> ',
|
645 |
'<input type="submit" id="crayon-log-clear" name="', self::LOG_CLEAR ,
|
646 |
'" class="button-secondary" value="', crayon__('Clear Log'), '"> ', '<input type="submit" id="crayon-log-email" name="',
|
647 |
self::LOG_EMAIL_ADMIN . '" class="button-secondary" value="', crayon__('Email Admin'), '"> ',
|
@@ -666,9 +666,11 @@ class CrayonSettingsWP {
|
|
666 |
$date = $CRAYON_DATE;
|
667 |
$developer = '<strong>'.crayon__('Developer').':</strong> ' . '<a href="'.$CRAYON_AUTHOR_SITE.'" target="_blank">' . $CRAYON_AUTHOR . '</a>';
|
668 |
$translators = '<strong>'.crayon__('Translators').':</strong> ' .
|
669 |
-
'
|
|
|
670 |
Japanese (<a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>),
|
671 |
-
Russian (<a href="http://simplelib.com/" target="_blank">Minimus</a>)
|
|
|
672 |
|
673 |
/*$paypal = '<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
674 |
<input type="hidden" name="cmd" value="_s-xclick">
|
511 |
echo '<br/><span class="crayon-error">', sprintf(crayon__('The selected language with id %s could not be loaded'), '<strong>'.$db_fallback.'</strong>'), '. </span>';
|
512 |
}
|
513 |
// Language parsing info
|
514 |
+
echo CRAYON_BR, '<div id="lang-info"><div><a id="show-lang" class="button-primary" onclick="CrayonSyntaxAdmin.show_langs(\'', plugins_url(CRAYON_LIST_LANGS_PHP, __FILE__),
|
515 |
+
'\');">', crayon__('Show Languages'), '</a></div></div>';
|
516 |
} else {
|
517 |
echo 'No languages could be parsed.';
|
518 |
}
|
641 |
if (!empty($log)) {
|
642 |
echo '<div id="crayon-log-wrapper">', '<div id="crayon-log"><div id="crayon-log-text">', $log,
|
643 |
'</div></div>', '<div id="crayon-log-controls">',
|
644 |
+
'<input type="button" id="crayon-log-toggle" show_txt="',crayon__('Show Log'),'" hide_txt="',crayon__('Hide Log'),'" class="button-secondary" value="', crayon__('Show Log'), '"> ',
|
645 |
'<input type="submit" id="crayon-log-clear" name="', self::LOG_CLEAR ,
|
646 |
'" class="button-secondary" value="', crayon__('Clear Log'), '"> ', '<input type="submit" id="crayon-log-email" name="',
|
647 |
self::LOG_EMAIL_ADMIN . '" class="button-secondary" value="', crayon__('Email Admin'), '"> ',
|
666 |
$date = $CRAYON_DATE;
|
667 |
$developer = '<strong>'.crayon__('Developer').':</strong> ' . '<a href="'.$CRAYON_AUTHOR_SITE.'" target="_blank">' . $CRAYON_AUTHOR . '</a>';
|
668 |
$translators = '<strong>'.crayon__('Translators').':</strong> ' .
|
669 |
+
'Chinese (<a href="http://smerpup.com/" target="_blank">Dezhi Liu</a>),
|
670 |
+
German (<a href="http://www.technologyblog.de/" target="_blank">Stephan Knauß</a>),
|
671 |
Japanese (<a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>),
|
672 |
+
Russian (<a href="http://simplelib.com/" target="_blank">Minimus</a>),
|
673 |
+
Turkish (<a href="http://kazancexpert.com" target="_blank">Hakan</a>)';
|
674 |
|
675 |
/*$paypal = '<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
676 |
<input type="hidden" name="cmd" value="_s-xclick">
|
crayon_wp.class.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Crayon Syntax Highlighter
|
4 |
Plugin URI: http://ak.net84.net/projects/crayon-syntax-highlighter
|
5 |
Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
|
6 |
-
Version: 1.
|
7 |
Author: Aram Kocharyan
|
8 |
Author URI: http://ak.net84.net/
|
9 |
Text Domain: crayon-syntax-highlighter
|
@@ -239,7 +239,8 @@ class CrayonWP {
|
|
239 |
}
|
240 |
|
241 |
// Capture attributes
|
242 |
-
preg_match_all('#([^="\'\s]+)[\t ]*=[\t ]*("|\')(
|
|
|
243 |
$atts_array = array();
|
244 |
if ( count($att_matches[0]) != 0 ) {
|
245 |
for ($j = 0; $j < count($att_matches[1]); $j++) {
|
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.8.0
|
7 |
Author: Aram Kocharyan
|
8 |
Author URI: http://ak.net84.net/
|
9 |
Text Domain: crayon-syntax-highlighter
|
239 |
}
|
240 |
|
241 |
// Capture attributes
|
242 |
+
preg_match_all('#([^="\'\s]+)[\t ]*=[\t ]*("|\')(.*?)\2#', $atts, $att_matches);
|
243 |
+
|
244 |
$atts_array = array();
|
245 |
if ( count($att_matches[0]) != 0 ) {
|
246 |
for ($j = 0; $j < count($att_matches[1]); $j++) {
|
css/admin_style.css
CHANGED
@@ -126,8 +126,12 @@
|
|
126 |
border: 0;
|
127 |
}
|
128 |
|
129 |
-
|
130 |
display: none;
|
|
|
|
|
|
|
|
|
131 |
}
|
132 |
|
133 |
.crayon-table .not-parsed {
|
126 |
border: 0;
|
127 |
}
|
128 |
|
129 |
+
/*#lang-info {
|
130 |
display: none;
|
131 |
+
}*/
|
132 |
+
|
133 |
+
#lang-info div {
|
134 |
+
padding: 5px 0px;
|
135 |
}
|
136 |
|
137 |
.crayon-table .not-parsed {
|
global.php
CHANGED
@@ -94,7 +94,7 @@ define('CRAYON_THEME_EDITOR_PHP', CRAYON_UTIL_DIR . CRAYON_THEME_EDITOR_DIR . 'e
|
|
94 |
// Script time
|
95 |
|
96 |
define('CRAYON_LOAD_TIME', 'Load Time');
|
97 |
-
define('CRAYON_PARSE_TIME', 'Parse Time');
|
98 |
define('CRAYON_FORMAT_TIME', 'Format Time');
|
99 |
|
100 |
// Printing
|
94 |
// Script time
|
95 |
|
96 |
define('CRAYON_LOAD_TIME', 'Load Time');
|
97 |
+
//define('CRAYON_PARSE_TIME', 'Parse Time');
|
98 |
define('CRAYON_FORMAT_TIME', 'Format Time');
|
99 |
|
100 |
// Printing
|
js/crayon.js
CHANGED
@@ -19,27 +19,30 @@ jQuery.fn.exists = function () {
|
|
19 |
}
|
20 |
|
21 |
// For those who need them (< IE 9), add support for CSS functions
|
22 |
-
var isStyleFuncSupported =
|
23 |
-
if (
|
24 |
-
CSSStyleDeclaration.prototype.getPropertyValue
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
43 |
}
|
44 |
|
45 |
// Escape regex chars with \
|
@@ -230,7 +233,7 @@ var CrayonSyntax = new function() {
|
|
230 |
left:50,
|
231 |
scrollbars:1,
|
232 |
windowURL:'',
|
233 |
-
data:''
|
234 |
}, function() {
|
235 |
code_popup(uid);
|
236 |
}, function() {
|
@@ -360,7 +363,9 @@ var CrayonSyntax = new function() {
|
|
360 |
toolbar_toggle(uid, true);
|
361 |
|
362 |
key = crayon[uid].mac ? '\u2318' : 'CTRL';
|
363 |
-
text = '
|
|
|
|
|
364 |
crayon_info(uid, text);
|
365 |
return false;
|
366 |
}
|
19 |
}
|
20 |
|
21 |
// For those who need them (< IE 9), add support for CSS functions
|
22 |
+
var isStyleFuncSupported = null;
|
23 |
+
if (typeof(CSSStyleDeclaration) != 'undefined') {
|
24 |
+
isStyleFuncSupported = CSSStyleDeclaration.prototype.getPropertyValue != null;
|
25 |
+
if (!isStyleFuncSupported) {
|
26 |
+
CSSStyleDeclaration.prototype.getPropertyValue = function(a) {
|
27 |
+
return this.getAttribute(a);
|
28 |
+
};
|
29 |
+
CSSStyleDeclaration.prototype.setProperty = function(styleName, value, priority) {
|
30 |
+
this.setAttribute(styleName,value);
|
31 |
+
var priority = typeof priority != 'undefined' ? priority : '';
|
32 |
+
if (priority != '') {
|
33 |
+
// Add priority manually
|
34 |
+
var rule = new RegExp(RegExp.escape(styleName) + '\\s*:\\s*' + RegExp.escape(value) + '(\\s*;)?', 'gmi');
|
35 |
+
this.cssText = this.cssText.replace(rule, styleName + ': ' + value + ' !' + priority + ';');
|
36 |
+
}
|
37 |
+
}
|
38 |
+
CSSStyleDeclaration.prototype.removeProperty = function(a) {
|
39 |
+
return this.removeAttribute(a);
|
40 |
+
}
|
41 |
+
CSSStyleDeclaration.prototype.getPropertyPriority = function(styleName) {
|
42 |
+
var rule = new RegExp(RegExp.escape(styleName) + '\\s*:\\s*[^\\s]*\\s*!important(\\s*;)?', 'gmi');
|
43 |
+
return rule.test(this.cssText) ? 'important' : '';
|
44 |
+
}
|
45 |
+
}
|
46 |
}
|
47 |
|
48 |
// Escape regex chars with \
|
233 |
left:50,
|
234 |
scrollbars:1,
|
235 |
windowURL:'',
|
236 |
+
data:'' // Data overrides URL
|
237 |
}, function() {
|
238 |
code_popup(uid);
|
239 |
}, function() {
|
363 |
toolbar_toggle(uid, true);
|
364 |
|
365 |
key = crayon[uid].mac ? '\u2318' : 'CTRL';
|
366 |
+
var text = crayon[uid].copy_button.attr('show_txt');
|
367 |
+
text = text.replace(/%s/, key + '+C');
|
368 |
+
text = text.replace(/%s/, key + '+V');
|
369 |
crayon_info(uid, text);
|
370 |
return false;
|
371 |
}
|
js/crayon_admin.js
CHANGED
@@ -116,11 +116,11 @@ var CrayonSyntaxAdmin = new function() {
|
|
116 |
});
|
117 |
|
118 |
// Log
|
119 |
-
var show_log = 'Show Log';
|
120 |
-
var hide_log = 'Hide Log';
|
121 |
log_wrapper = jQuery('#crayon-log-wrapper');
|
122 |
log_button = jQuery('#crayon-log-toggle');
|
123 |
log_text = jQuery('#crayon-log-text');
|
|
|
|
|
124 |
clog = jQuery('#crayon-log');
|
125 |
log_button.val(show_log);
|
126 |
log_button.click(function() {
|
@@ -288,9 +288,9 @@ var CrayonSyntaxAdmin = new function() {
|
|
288 |
}
|
289 |
|
290 |
this.show_langs = function(url) {
|
291 |
-
jQuery('#show-lang').hide();
|
292 |
jQuery.get(url, function(data) {
|
293 |
-
jQuery('#lang-info').show();
|
294 |
jQuery('#lang-info').html(data);
|
295 |
});
|
296 |
return false;
|
116 |
});
|
117 |
|
118 |
// Log
|
|
|
|
|
119 |
log_wrapper = jQuery('#crayon-log-wrapper');
|
120 |
log_button = jQuery('#crayon-log-toggle');
|
121 |
log_text = jQuery('#crayon-log-text');
|
122 |
+
var show_log = log_button.attr('show_txt');
|
123 |
+
var hide_log = log_button.attr('hide_txt');
|
124 |
clog = jQuery('#crayon-log');
|
125 |
log_button.val(show_log);
|
126 |
log_button.click(function() {
|
288 |
}
|
289 |
|
290 |
this.show_langs = function(url) {
|
291 |
+
// jQuery('#show-lang').hide();
|
292 |
jQuery.get(url, function(data) {
|
293 |
+
// jQuery('#lang-info').show();
|
294 |
jQuery('#lang-info').html(data);
|
295 |
});
|
296 |
return false;
|
langs/aliases.txt
CHANGED
@@ -10,3 +10,6 @@ vb vbs
|
|
10 |
js javascript
|
11 |
sh shell unix bash
|
12 |
ruby rb
|
|
|
|
|
|
10 |
js javascript
|
11 |
sh shell unix bash
|
12 |
ruby rb
|
13 |
+
ilogic logic inventor inv ilog
|
14 |
+
pgsql sql mysql
|
15 |
+
as flash swf fla
|
langs/as/as.txt
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
### ACTIONSCRIPT LANGUAGE ###
|
2 |
+
|
3 |
+
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
+
|
5 |
+
NAME ActionScript
|
6 |
+
VERSION 1.8.0
|
7 |
+
|
8 |
+
COMMENT (?default)
|
9 |
+
STRING (?default)
|
10 |
+
|
11 |
+
STATEMENT (?default)|\b(?alt:statement.txt)\b
|
12 |
+
RESERVED (?default)|\b(?<![:\.])(?-i:(?alt:reserved.txt))(?![:\.])\b
|
13 |
+
TYPE (?default)
|
14 |
+
MODIFIER (?default)
|
15 |
+
|
16 |
+
ENTITY (?default)
|
17 |
+
LIBRARY:ENTITY \b(?alt:library.txt)\b
|
18 |
+
VARIABLE (?default)
|
19 |
+
IDENTIFIER (?default)
|
20 |
+
CONSTANT (?default)
|
21 |
+
OPERATOR (?default)
|
22 |
+
SYMBOL (?default)
|
langs/as/library.txt
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
flash.xml
|
2 |
+
flash.utils
|
3 |
+
flash.ui
|
4 |
+
flash.text
|
5 |
+
flash.system
|
6 |
+
flash.profiler
|
7 |
+
flash.printing
|
8 |
+
flash.net,
|
9 |
+
flash.media
|
10 |
+
flash.geom
|
11 |
+
flash.filters
|
12 |
+
flash.external
|
13 |
+
flash.events
|
14 |
+
flash.errors
|
15 |
+
flash.display
|
16 |
+
flash.accessibility
|
langs/as/reserved.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
instanceof
|
2 |
+
undefined
|
3 |
+
typeof
|
4 |
+
import
|
5 |
+
set
|
6 |
+
get
|
7 |
+
internal
|
8 |
+
delete
|
langs/as/statement.txt
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
with
|
langs/c/sh.txt
DELETED
@@ -1,20 +0,0 @@
|
|
1 |
-
### SHELL LANGUAGE ###
|
2 |
-
|
3 |
-
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
-
|
5 |
-
NAME Shell Script
|
6 |
-
VERSION 1.0
|
7 |
-
|
8 |
-
COMMENT (?default)|(#.*?$)
|
9 |
-
STRING (?default)
|
10 |
-
|
11 |
-
STATEMENT (?default)|\b(?alt:statement.txt)\b
|
12 |
-
RESERVED (?default)|\b(?alt:reserved.txt)\b
|
13 |
-
TYPE (?default)
|
14 |
-
|
15 |
-
ENTITY (?default)|(\.[a-z_]\w*\b)
|
16 |
-
VARIABLE (?default)|(\$[a-z_]\w*\b)
|
17 |
-
IDENTIFIER (?default)
|
18 |
-
CONSTANT (?default)
|
19 |
-
OPERATOR (?default)
|
20 |
-
SYMBOL (?default)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
langs/c/statement.txt
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
until
|
2 |
-
esac
|
3 |
-
done
|
4 |
-
elif
|
5 |
-
fi
|
|
|
|
|
|
|
|
|
|
langs/css/css.txt
CHANGED
@@ -11,8 +11,8 @@
|
|
11 |
|
12 |
# For the <script> tag
|
13 |
ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
|
14 |
-
TAG (</?\s*[^<\s>]+\s*>?)|(\s*>)
|
15 |
-
ATTR:ENTITY [\w-]+(?=\s
|
16 |
|
17 |
SELECTOR:KEYWORD [^\s\;\{\}][^\;\{\}]*(?=\{)
|
18 |
PROPERTY:ENTITY \b[A-Za-z_][\w-]*(?=\s*:)
|
11 |
|
12 |
# For the <script> tag
|
13 |
ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
|
14 |
+
TAG (</?\s*[^<\s>]+\s*>?)|(\s*>)
|
15 |
+
ATTR:ENTITY [\w-]+(?=\s*=\s*["'])
|
16 |
|
17 |
SELECTOR:KEYWORD [^\s\;\{\}][^\;\{\}]*(?=\{)
|
18 |
PROPERTY:ENTITY \b[A-Za-z_][\w-]*(?=\s*:)
|
langs/default/default.txt
CHANGED
@@ -3,20 +3,25 @@
|
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME Default
|
6 |
-
VERSION 1.
|
7 |
|
8 |
COMMENT (/\*.*?\*/)|(//.*?$)
|
9 |
STRING ((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
|
10 |
|
11 |
-
STATEMENT \b(?alt:statement.txt)\b
|
12 |
-
RESERVED \b(?<![:\.])(?alt:reserved.txt)
|
|
|
13 |
TYPE \b(?alt:type.txt)\b
|
14 |
MODIFIER \b(?alt:modifier.txt)\b
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
VARIABLE \b(?<=\.)\s*[A-Za-z_]\w*
|
18 |
IDENTIFIER \b[A-Za-z_]\w*\b
|
19 |
-
CONSTANT (?<!\w)
|
20 |
OPERATOR (?alt:operator.txt)
|
21 |
SYMBOL &[^;]+;|(?alt:symbol.txt)
|
22 |
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME Default
|
6 |
+
VERSION 1.8.0
|
7 |
|
8 |
COMMENT (/\*.*?\*/)|(//.*?$)
|
9 |
STRING ((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
|
10 |
|
11 |
+
STATEMENT \b(?alt:statement.txt)\b
|
12 |
+
RESERVED \b(?<![:\.])(?alt:reserved.txt)\b
|
13 |
+
# \b(?<![:\.])(?alt:reserved.txt)(?![:\.])\b
|
14 |
TYPE \b(?alt:type.txt)\b
|
15 |
MODIFIER \b(?alt:modifier.txt)\b
|
16 |
+
|
17 |
+
# func() | func { | (Type) Var
|
18 |
+
ENTITY (\b[a-z_]\w*\b(?=\s*\([^\)]*\)))|((?<!\.)(\b[a-z_]\w*\b)(?=[^},.:;"'\)]*{))|(\b[a-z_]\w+\b\s+(?=\b[a-z_]\w+\b))
|
19 |
+
# C variants only: String *
|
20 |
+
POINTER_TYPE:ENTITY (\b[a-z_]\w*\s*\*)
|
21 |
+
|
22 |
VARIABLE \b(?<=\.)\s*[A-Za-z_]\w*
|
23 |
IDENTIFIER \b[A-Za-z_]\w*\b
|
24 |
+
CONSTANT (?<!\w)[0-9][\.\w]*
|
25 |
OPERATOR (?alt:operator.txt)
|
26 |
SYMBOL &[^;]+;|(?alt:symbol.txt)
|
27 |
|
langs/delimiters.txt
CHANGED
@@ -6,4 +6,3 @@ php <\?(?:php)?.*?\?\>
|
|
6 |
js <script\b[^\>]*>.*?</script>
|
7 |
css <style\b[^\>]*>.*?</style>
|
8 |
ruby (<%.*?%>)|(^%.*?[\r\n])
|
9 |
-
xhtml <x?html\b[^\>]*>.*?</x?html>
|
6 |
js <script\b[^\>]*>.*?</script>
|
7 |
css <style\b[^\>]*>.*?</style>
|
8 |
ruby (<%.*?%>)|(^%.*?[\r\n])
|
|
langs/extensions.txt
CHANGED
@@ -12,3 +12,4 @@ objc m mm
|
|
12 |
python py pyw pyc pyo pyd
|
13 |
vb vbs
|
14 |
ruby rb rbx rhtml
|
|
12 |
python py pyw pyc pyo pyd
|
13 |
vb vbs
|
14 |
ruby rb rbx rhtml
|
15 |
+
as swf fla
|
langs/ilogic/ilogic.txt
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
### INVENTOR ILOGIC LANGUAGE ###
|
2 |
+
|
3 |
+
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
+
|
5 |
+
NAME Inventor iLogic
|
6 |
+
VERSION 1.7.30
|
7 |
+
|
8 |
+
COMMENT (?default)|('[^\r\n]*)
|
9 |
+
STRING (?default)
|
10 |
+
|
11 |
+
KEYWORD (\b\w+\b)\.(?=[a-z])|((?<![^\s])\b\w+\b(?=\s*\())
|
12 |
+
STATEMENT \b(?alt:statement.txt)\b
|
13 |
+
#Not used since keyword matches well
|
14 |
+
#RESERVED (?default)|\b(?alt:reserved.txt)\b
|
15 |
+
TYPE (?default)|\b(?alt:type.txt)\b
|
16 |
+
MODIFIER (?default)|\b(?alt:modifier.txt)\b
|
17 |
+
SPECIAL:CONSTANT \b(?alt:special.txt)\b
|
18 |
+
|
19 |
+
ENTITY (?default)
|
20 |
+
VARIABLE (?default)
|
21 |
+
IDENTIFIER (?default)
|
22 |
+
CONSTANT (?default)
|
23 |
+
OPERATOR (?default)|\b(?alt:operator.txt)\b
|
24 |
+
SYMBOL (?default)
|
langs/ilogic/modifier.txt
ADDED
File without changes
|
langs/ilogic/operator.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
^
|
2 |
+
Mod
|
3 |
+
<>
|
4 |
+
and
|
5 |
+
or
|
6 |
+
andalso
|
7 |
+
orelse
|
8 |
+
not
|
9 |
+
is
|
10 |
+
isnot
|
langs/ilogic/reserved.txt
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*# Main functions
|
2 |
+
Parameter
|
3 |
+
MultiValue
|
4 |
+
GoExcel
|
5 |
+
iLogicVb
|
6 |
+
Feature
|
7 |
+
Component
|
8 |
+
ThisDoc
|
9 |
+
MakePath
|
10 |
+
|
11 |
+
# Sub functions
|
12 |
+
SetList
|
13 |
+
SetValueOptions
|
14 |
+
List
|
15 |
+
CellValues
|
16 |
+
FindValue
|
17 |
+
Param
|
18 |
+
Tolerance
|
19 |
+
SetListInComponent
|
20 |
+
ValueForEquals
|
21 |
+
Quiet
|
22 |
+
UpdateAfterChange
|
23 |
+
Automation
|
24 |
+
Document
|
25 |
+
SetThread
|
26 |
+
IsActive
|
27 |
+
Color
|
28 |
+
ThreadDesignation
|
29 |
+
ThreadClass
|
30 |
+
ThreadType
|
31 |
+
Replace
|
32 |
+
ReplaceiPart
|
33 |
+
Color
|
34 |
+
Visible
|
35 |
+
SkipDocumentSave
|
36 |
+
iProperties
|
37 |
+
Value
|
38 |
+
StylesInEnglish
|
39 |
+
*/
|
langs/ilogic/special.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
dim
|
2 |
+
as
|
3 |
+
addvbrule
|
4 |
+
addreference
|
5 |
+
addvbfile
|
6 |
+
addresources
|
7 |
+
on
|
8 |
+
off
|
9 |
+
ilogicoption
|
10 |
+
doubleforequals
|
langs/ilogic/statement.txt
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
select
|
2 |
+
case
|
3 |
+
else
|
4 |
+
end
|
5 |
+
while
|
6 |
+
sub
|
7 |
+
main
|
8 |
+
exit
|
9 |
+
return
|
10 |
+
class
|
11 |
+
thisrule
|
12 |
+
if
|
13 |
+
then
|
14 |
+
for
|
15 |
+
each
|
16 |
+
next
|
17 |
+
continue
|
18 |
+
break
|
langs/ilogic/type.txt
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
string
|
2 |
+
double
|
3 |
+
integer
|
4 |
+
string
|
5 |
+
object
|
6 |
+
arraylist
|
langs/js/js.txt
CHANGED
@@ -17,7 +17,7 @@
|
|
17 |
# For the <script> tag
|
18 |
ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
|
19 |
TAG (</?\s*[^<\s>]+\s*>?)|(\s*>)
|
20 |
-
ATTR:ENTITY [\w-]+(?=\s
|
21 |
|
22 |
ENTITY (?default)
|
23 |
VARIABLE (?default)|\b\s*[A-Za-z_]\w*\s*\:
|
17 |
# For the <script> tag
|
18 |
ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
|
19 |
TAG (</?\s*[^<\s>]+\s*>?)|(\s*>)
|
20 |
+
ATTR:ENTITY [\w-]+(?=\s*=\s*["'])
|
21 |
|
22 |
ENTITY (?default)
|
23 |
VARIABLE (?default)|\b\s*[A-Za-z_]\w*\s*\:
|
langs/objc/objc.txt
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME Objective-C
|
6 |
-
VERSION 1.0
|
7 |
|
8 |
COMMENT (?default)|(#.*?$)
|
9 |
STRING (@?(?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
|
@@ -11,11 +11,15 @@
|
|
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 |
CONSTANT (?default)|\b(?alt:constant.txt)\b
|
18 |
-
ENTITY (\b[a-z_]\w*\b(?=\s*\([^\)]*\)))|(
|
|
|
|
|
|
|
|
|
19 |
VARIABLE (?default)|(\*\w+)
|
20 |
IDENTIFIER (?default)
|
21 |
OPERATOR (?default)
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME Objective-C
|
6 |
+
VERSION 1.8.0
|
7 |
|
8 |
COMMENT (?default)|(#.*?$)
|
9 |
STRING (@?(?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)')
|
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|(\b[a-z_]\w+\b\s+(?=\b[a-z_][\w]+\b(?!\s*\:)))
|
15 |
MODIFIER (?alt:modifier_at.txt)\b|\b(?alt:modifier.txt)\b
|
16 |
|
17 |
CONSTANT (?default)|\b(?alt:constant.txt)\b
|
18 |
+
ENTITY (\b[a-z_]\w*\b(?=\s*\([^\)]*\)))|(\b[a-z_]\w+\b\s+(?=\b[a-z_][\w]+\b(?!\s*\:)))|(?-i:NS[\w]+)
|
19 |
+
FUNC:ENTITY \b\w+\b\s*(?=:[^;]*[\{;])
|
20 |
+
POINTER_TYPE:TYPE (\b[a-z_]\w*\s*(?=\*)|\*(?=\s*\)))
|
21 |
+
RETURN:TYPE \b\w+\b(?=\s*\)\s*\w+\s*[:;\{])
|
22 |
+
|
23 |
VARIABLE (?default)|(\*\w+)
|
24 |
IDENTIFIER (?default)
|
25 |
OPERATOR (?default)
|
langs/pgsql/built.in.func.txt
ADDED
@@ -0,0 +1,219 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
tsvector_update_trigger_column
|
2 |
+
database_to_xml_and_xmlschema
|
3 |
+
schema_to_xml_and_xmlschema
|
4 |
+
table_to_xml_and_xmlschema
|
5 |
+
query_to_xml_and_xmlschema
|
6 |
+
tsvector_update_trigger
|
7 |
+
regexp_split_to_array
|
8 |
+
regexp_split_to_table
|
9 |
+
transaction_timestamp
|
10 |
+
get_current_ts_config
|
11 |
+
database_to_xmlschema
|
12 |
+
statement_timestamp
|
13 |
+
cursor_to_xmlschema
|
14 |
+
schema_to_xmlschema
|
15 |
+
generate_subscripts
|
16 |
+
pg_client_encoding
|
17 |
+
table_to_xmlschema
|
18 |
+
query_to_xmlschema
|
19 |
+
character_length
|
20 |
+
justify_interval
|
21 |
+
clock_timestamp
|
22 |
+
plainto_tsquery
|
23 |
+
database_to_xml
|
24 |
+
array_to_string
|
25 |
+
string_to_array
|
26 |
+
generate_series
|
27 |
+
quote_nullable
|
28 |
+
regexp_matches
|
29 |
+
regexp_replace
|
30 |
+
regr_intercept
|
31 |
+
quote_literal
|
32 |
+
justify_hours
|
33 |
+
ts_token_type
|
34 |
+
schema_to_xml
|
35 |
+
array_prepend
|
36 |
+
width_bucket
|
37 |
+
octet_length
|
38 |
+
convert_from
|
39 |
+
to_timestamp
|
40 |
+
justify_days
|
41 |
+
array_append
|
42 |
+
array_length
|
43 |
+
percent_rank
|
44 |
+
char_length
|
45 |
+
quote_ident
|
46 |
+
set_masklen
|
47 |
+
to_tsvector
|
48 |
+
ts_headline
|
49 |
+
array_ndims
|
50 |
+
array_lower
|
51 |
+
array_upper
|
52 |
+
stddev_samp
|
53 |
+
first_value
|
54 |
+
bit_length
|
55 |
+
convert_to
|
56 |
+
split_part
|
57 |
+
date_trunc
|
58 |
+
enum_first
|
59 |
+
enum_range
|
60 |
+
to_tsquery
|
61 |
+
ts_rank_cd
|
62 |
+
ts_rewrite
|
63 |
+
xmlcomment
|
64 |
+
xmlelement
|
65 |
+
array_dims
|
66 |
+
array_fill
|
67 |
+
string_agg
|
68 |
+
covar_samp
|
69 |
+
regr_count
|
70 |
+
regr_slope
|
71 |
+
stddev_pop
|
72 |
+
row_number
|
73 |
+
dense_rank
|
74 |
+
last_value
|
75 |
+
substring
|
76 |
+
translate
|
77 |
+
to_number
|
78 |
+
date_part
|
79 |
+
timeofday
|
80 |
+
enum_last
|
81 |
+
broadcast
|
82 |
+
setweight
|
83 |
+
querytree
|
84 |
+
ts_lexise
|
85 |
+
xmlconcat
|
86 |
+
xmlforest
|
87 |
+
array_cat
|
88 |
+
array_agg
|
89 |
+
covar_pop
|
90 |
+
regr_avgx
|
91 |
+
regr_avgy
|
92 |
+
cume_dist
|
93 |
+
nth_value
|
94 |
+
position
|
95 |
+
to_ascii
|
96 |
+
get_byte
|
97 |
+
set_byte
|
98 |
+
isfinite
|
99 |
+
diameter
|
100 |
+
isclosed
|
101 |
+
hostmask
|
102 |
+
ts_debug
|
103 |
+
ts_parse
|
104 |
+
coalesce
|
105 |
+
greatest
|
106 |
+
bool_and
|
107 |
+
regr_sxx
|
108 |
+
regr_sxy
|
109 |
+
regr_syy
|
110 |
+
variance
|
111 |
+
var_samp
|
112 |
+
ceiling
|
113 |
+
degrees
|
114 |
+
radians
|
115 |
+
setseed
|
116 |
+
convert
|
117 |
+
initcap
|
118 |
+
get_bit
|
119 |
+
set_bit
|
120 |
+
to_char
|
121 |
+
to_date
|
122 |
+
extract
|
123 |
+
npoints
|
124 |
+
polygon
|
125 |
+
masklen
|
126 |
+
netmask
|
127 |
+
network
|
128 |
+
numnode
|
129 |
+
ts_rank
|
130 |
+
ts_stat
|
131 |
+
xmlroot
|
132 |
+
currval
|
133 |
+
lastval
|
134 |
+
nextval
|
135 |
+
bit_and
|
136 |
+
bool_or
|
137 |
+
regr_r2
|
138 |
+
var_pop
|
139 |
+
random
|
140 |
+
decode
|
141 |
+
encode
|
142 |
+
length
|
143 |
+
repeat
|
144 |
+
strpos
|
145 |
+
substr
|
146 |
+
to_hex
|
147 |
+
center
|
148 |
+
height
|
149 |
+
isopen
|
150 |
+
pclose
|
151 |
+
radius
|
152 |
+
circle
|
153 |
+
abbrev
|
154 |
+
family
|
155 |
+
xmlagg
|
156 |
+
setval
|
157 |
+
nullif
|
158 |
+
unnest
|
159 |
+
bit_or
|
160 |
+
stddev
|
161 |
+
floor
|
162 |
+
power
|
163 |
+
round
|
164 |
+
trunc
|
165 |
+
atan2
|
166 |
+
lower
|
167 |
+
upper
|
168 |
+
ascii
|
169 |
+
btrim
|
170 |
+
ltrim
|
171 |
+
rtrim
|
172 |
+
popen
|
173 |
+
width
|
174 |
+
point
|
175 |
+
strip
|
176 |
+
xmlpi
|
177 |
+
xpath
|
178 |
+
least
|
179 |
+
count
|
180 |
+
every
|
181 |
+
ntile
|
182 |
+
cbrt
|
183 |
+
ceil
|
184 |
+
sign
|
185 |
+
sqrt
|
186 |
+
acos
|
187 |
+
asin
|
188 |
+
atan
|
189 |
+
trim
|
190 |
+
lpad
|
191 |
+
rpad
|
192 |
+
area
|
193 |
+
lseg
|
194 |
+
path
|
195 |
+
host
|
196 |
+
corr
|
197 |
+
rank
|
198 |
+
lead
|
199 |
+
abs
|
200 |
+
div
|
201 |
+
exp
|
202 |
+
log
|
203 |
+
mod
|
204 |
+
cos
|
205 |
+
cot
|
206 |
+
sin
|
207 |
+
tan
|
208 |
+
chr
|
209 |
+
md5
|
210 |
+
age
|
211 |
+
now
|
212 |
+
box
|
213 |
+
avg
|
214 |
+
max
|
215 |
+
min
|
216 |
+
sum
|
217 |
+
lag
|
218 |
+
ln
|
219 |
+
pi
|
langs/pgsql/operator.txt
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# logical
|
2 |
+
AND
|
3 |
+
OR
|
4 |
+
NOT
|
5 |
+
# comparison
|
6 |
+
<=
|
7 |
+
>=
|
8 |
+
!=
|
9 |
+
<>
|
10 |
+
<
|
11 |
+
>
|
12 |
+
=
|
13 |
+
# math
|
14 |
+
||/
|
15 |
+
|/
|
16 |
+
!!
|
17 |
+
<<
|
18 |
+
>>
|
19 |
+
+
|
20 |
+
-
|
21 |
+
*
|
22 |
+
/
|
23 |
+
%
|
24 |
+
^
|
25 |
+
!
|
26 |
+
@
|
27 |
+
&
|
28 |
+
|
|
29 |
+
#
|
30 |
+
~
|
31 |
+
# string
|
32 |
+
!~*
|
33 |
+
!~
|
34 |
+
~*
|
35 |
+
||
|
36 |
+
# geo
|
37 |
+
@-@
|
38 |
+
<->
|
39 |
+
<<|
|
40 |
+
|>>
|
41 |
+
&<|
|
42 |
+
|&>
|
43 |
+
?-|
|
44 |
+
?||
|
45 |
+
@@
|
46 |
+
##
|
47 |
+
&&
|
48 |
+
&<
|
49 |
+
&>
|
50 |
+
<^
|
51 |
+
>^
|
52 |
+
?#
|
53 |
+
?-
|
54 |
+
?|
|
55 |
+
@>
|
56 |
+
<@
|
57 |
+
~=
|
58 |
+
# network
|
59 |
+
<<=
|
60 |
+
>>=
|
langs/pgsql/pgsql.txt
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
### PgSQL LANGUAGE ###
|
2 |
+
|
3 |
+
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
+
|
5 |
+
NAME PgSQL
|
6 |
+
VERSION 1.8.0
|
7 |
+
|
8 |
+
COMMENT (/\*.*?\*/)|(--.*?$)
|
9 |
+
STRING ((?<!\\)'.*?(?<!\\)')
|
10 |
+
|
11 |
+
STATEMENT \b(?alt:statement.txt)\b
|
12 |
+
RESERVED \b(?alt:reserved.txt)\b
|
13 |
+
TYPE \b(?alt:type.txt)\b
|
14 |
+
|
15 |
+
BUILT_IN:ENTITY \b(?alt:built.in.func.txt)\b
|
16 |
+
IDENTIFIER ((?<!\\)".*?(?<!\\)")
|
17 |
+
OPERATOR \b(?alt:operator.txt)\b
|
18 |
+
|
langs/pgsql/reserved.txt
ADDED
@@ -0,0 +1,369 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
returns null on null input
|
2 |
+
current_timestamp
|
3 |
+
characteristics
|
4 |
+
current_catalog
|
5 |
+
current_schema
|
6 |
+
localtimestamp
|
7 |
+
authorization
|
8 |
+
configuration
|
9 |
+
xmlattributes
|
10 |
+
concurrently
|
11 |
+
current_date
|
12 |
+
current_role
|
13 |
+
current_time
|
14 |
+
current_user
|
15 |
+
nocreaterole
|
16 |
+
nocreateuser
|
17 |
+
serializable
|
18 |
+
session_user
|
19 |
+
xmlserialize
|
20 |
+
constraints
|
21 |
+
nulls first
|
22 |
+
constraints
|
23 |
+
insensitive
|
24 |
+
lancompiler
|
25 |
+
nosuperuser
|
26 |
+
uncommitted
|
27 |
+
unencrypted
|
28 |
+
conversion
|
29 |
+
privileges
|
30 |
+
tablespace
|
31 |
+
constraint
|
32 |
+
references
|
33 |
+
nulls last
|
34 |
+
assignment
|
35 |
+
asymmetric
|
36 |
+
connection
|
37 |
+
constraint
|
38 |
+
conversion
|
39 |
+
createrole
|
40 |
+
createuser
|
41 |
+
deferrable
|
42 |
+
delimiters
|
43 |
+
dictionary
|
44 |
+
lc_collate
|
45 |
+
nocreatedb
|
46 |
+
privileges
|
47 |
+
procedural
|
48 |
+
references
|
49 |
+
repeatable
|
50 |
+
standalone
|
51 |
+
statistics
|
52 |
+
tablespace
|
53 |
+
whitespace
|
54 |
+
xmlelement
|
55 |
+
aggregate
|
56 |
+
collation
|
57 |
+
extension
|
58 |
+
including
|
59 |
+
no action
|
60 |
+
immutable
|
61 |
+
aggregate
|
62 |
+
assertion
|
63 |
+
committed
|
64 |
+
delimiter
|
65 |
+
encrypted
|
66 |
+
excluding
|
67 |
+
exclusive
|
68 |
+
following
|
69 |
+
immediate
|
70 |
+
immutable
|
71 |
+
including
|
72 |
+
increment
|
73 |
+
initially
|
74 |
+
isolation
|
75 |
+
localtime
|
76 |
+
noinherit
|
77 |
+
partition
|
78 |
+
preceding
|
79 |
+
precision
|
80 |
+
procedure
|
81 |
+
statement
|
82 |
+
superuser
|
83 |
+
symmetric
|
84 |
+
temporary
|
85 |
+
unbounded
|
86 |
+
validator
|
87 |
+
xmlconcat
|
88 |
+
xmlforest
|
89 |
+
database
|
90 |
+
function
|
91 |
+
language
|
92 |
+
operator
|
93 |
+
sequence
|
94 |
+
not null
|
95 |
+
defaults
|
96 |
+
inherits
|
97 |
+
set null
|
98 |
+
restrict
|
99 |
+
volatile
|
100 |
+
distinct
|
101 |
+
absolute
|
102 |
+
backward
|
103 |
+
cascaded
|
104 |
+
continue
|
105 |
+
createdb
|
106 |
+
database
|
107 |
+
defaults
|
108 |
+
deferred
|
109 |
+
distinct
|
110 |
+
document
|
111 |
+
encoding
|
112 |
+
external
|
113 |
+
function
|
114 |
+
identity
|
115 |
+
implicit
|
116 |
+
inherits
|
117 |
+
language
|
118 |
+
lc_ctype
|
119 |
+
location
|
120 |
+
maxvalue
|
121 |
+
minvalue
|
122 |
+
national
|
123 |
+
operator
|
124 |
+
overlaps
|
125 |
+
password
|
126 |
+
position
|
127 |
+
prepared
|
128 |
+
preserve
|
129 |
+
reassign
|
130 |
+
relative
|
131 |
+
restrict
|
132 |
+
security
|
133 |
+
sequence
|
134 |
+
template
|
135 |
+
trailing
|
136 |
+
variadic
|
137 |
+
volatile
|
138 |
+
xmlparse
|
139 |
+
default
|
140 |
+
foreign
|
141 |
+
wrapper
|
142 |
+
trigger
|
143 |
+
mapping
|
144 |
+
primary
|
145 |
+
cascade
|
146 |
+
returns
|
147 |
+
plpgsql
|
148 |
+
extract
|
149 |
+
analyse
|
150 |
+
between
|
151 |
+
cascade
|
152 |
+
catalog
|
153 |
+
collate
|
154 |
+
content
|
155 |
+
current
|
156 |
+
default
|
157 |
+
definer
|
158 |
+
disable
|
159 |
+
extract
|
160 |
+
foreign
|
161 |
+
forward
|
162 |
+
granted
|
163 |
+
handler
|
164 |
+
indexes
|
165 |
+
inherit
|
166 |
+
invoker
|
167 |
+
leading
|
168 |
+
mapping
|
169 |
+
natural
|
170 |
+
nologin
|
171 |
+
nothing
|
172 |
+
notnull
|
173 |
+
numeric
|
174 |
+
options
|
175 |
+
overlay
|
176 |
+
partial
|
177 |
+
placing
|
178 |
+
primary
|
179 |
+
recheck
|
180 |
+
release
|
181 |
+
replica
|
182 |
+
restart
|
183 |
+
returns
|
184 |
+
session
|
185 |
+
similar
|
186 |
+
storage
|
187 |
+
trigger
|
188 |
+
trusted
|
189 |
+
unknown
|
190 |
+
verbose
|
191 |
+
version
|
192 |
+
without
|
193 |
+
wrapper
|
194 |
+
xmlroot
|
195 |
+
domain
|
196 |
+
object
|
197 |
+
family
|
198 |
+
schema
|
199 |
+
server
|
200 |
+
unique
|
201 |
+
stable
|
202 |
+
strict
|
203 |
+
offset
|
204 |
+
access
|
205 |
+
action
|
206 |
+
always
|
207 |
+
called
|
208 |
+
column
|
209 |
+
cursor
|
210 |
+
domain
|
211 |
+
double
|
212 |
+
enable
|
213 |
+
escape
|
214 |
+
family
|
215 |
+
freeze
|
216 |
+
global
|
217 |
+
header
|
218 |
+
isnull
|
219 |
+
minute
|
220 |
+
nowait
|
221 |
+
object
|
222 |
+
offset
|
223 |
+
option
|
224 |
+
parser
|
225 |
+
rename
|
226 |
+
return
|
227 |
+
revoke
|
228 |
+
schema
|
229 |
+
scroll
|
230 |
+
search
|
231 |
+
second
|
232 |
+
server
|
233 |
+
simple
|
234 |
+
stable
|
235 |
+
stdout
|
236 |
+
strict
|
237 |
+
system
|
238 |
+
unique
|
239 |
+
window
|
240 |
+
table
|
241 |
+
group
|
242 |
+
index
|
243 |
+
large
|
244 |
+
class
|
245 |
+
limit
|
246 |
+
check
|
247 |
+
abort
|
248 |
+
admin
|
249 |
+
cache
|
250 |
+
chain
|
251 |
+
check
|
252 |
+
class
|
253 |
+
cross
|
254 |
+
cycle
|
255 |
+
FALSE
|
256 |
+
fetch
|
257 |
+
first
|
258 |
+
force
|
259 |
+
group
|
260 |
+
ilike
|
261 |
+
index
|
262 |
+
inner
|
263 |
+
inout
|
264 |
+
input
|
265 |
+
large
|
266 |
+
level
|
267 |
+
limit
|
268 |
+
local
|
269 |
+
login
|
270 |
+
match
|
271 |
+
month
|
272 |
+
names
|
273 |
+
nulls
|
274 |
+
order
|
275 |
+
outer
|
276 |
+
owned
|
277 |
+
owner
|
278 |
+
plans
|
279 |
+
prior
|
280 |
+
quote
|
281 |
+
range
|
282 |
+
reset
|
283 |
+
right
|
284 |
+
setof
|
285 |
+
share
|
286 |
+
start
|
287 |
+
stdin
|
288 |
+
strip
|
289 |
+
sysid
|
290 |
+
table
|
291 |
+
treat
|
292 |
+
until
|
293 |
+
valid
|
294 |
+
value
|
295 |
+
while
|
296 |
+
write
|
297 |
+
xmlpi
|
298 |
+
data
|
299 |
+
role
|
300 |
+
type
|
301 |
+
user
|
302 |
+
null
|
303 |
+
like
|
304 |
+
only
|
305 |
+
desc
|
306 |
+
both
|
307 |
+
cast
|
308 |
+
cost
|
309 |
+
data
|
310 |
+
desc
|
311 |
+
each
|
312 |
+
full
|
313 |
+
hold
|
314 |
+
hour
|
315 |
+
last
|
316 |
+
left
|
317 |
+
like
|
318 |
+
mode
|
319 |
+
name
|
320 |
+
next
|
321 |
+
none
|
322 |
+
null
|
323 |
+
oids
|
324 |
+
only
|
325 |
+
over
|
326 |
+
read
|
327 |
+
role
|
328 |
+
rows
|
329 |
+
show
|
330 |
+
temp
|
331 |
+
TRUE
|
332 |
+
type
|
333 |
+
user
|
334 |
+
view
|
335 |
+
work
|
336 |
+
year
|
337 |
+
zone
|
338 |
+
key
|
339 |
+
add
|
340 |
+
sql
|
341 |
+
asc
|
342 |
+
new
|
343 |
+
old
|
344 |
+
add
|
345 |
+
and
|
346 |
+
asc
|
347 |
+
csv
|
348 |
+
day
|
349 |
+
dec
|
350 |
+
key
|
351 |
+
new
|
352 |
+
not
|
353 |
+
off
|
354 |
+
old
|
355 |
+
out
|
356 |
+
row
|
357 |
+
yes
|
358 |
+
as
|
359 |
+
on
|
360 |
+
to
|
361 |
+
as
|
362 |
+
at
|
363 |
+
by
|
364 |
+
is
|
365 |
+
no
|
366 |
+
of
|
367 |
+
on
|
368 |
+
or
|
369 |
+
to
|
langs/pgsql/statement.txt
ADDED
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
natural right outer join
|
2 |
+
natural left outer join
|
3 |
+
natural full outer join
|
4 |
+
natural inner join
|
5 |
+
natural right join
|
6 |
+
natural cross join
|
7 |
+
natural left join
|
8 |
+
natural full join
|
9 |
+
right outer join
|
10 |
+
left outer join
|
11 |
+
full outer join
|
12 |
+
natural join
|
13 |
+
transaction
|
14 |
+
checkpoint
|
15 |
+
deallocate
|
16 |
+
inner join
|
17 |
+
right join
|
18 |
+
cross join
|
19 |
+
savepoint
|
20 |
+
recursive
|
21 |
+
left join
|
22 |
+
full join
|
23 |
+
intersect
|
24 |
+
returning
|
25 |
+
rollback
|
26 |
+
truncate
|
27 |
+
unlisten
|
28 |
+
group by
|
29 |
+
coalesce
|
30 |
+
greatest
|
31 |
+
end loop
|
32 |
+
replace
|
33 |
+
analyze
|
34 |
+
cluster
|
35 |
+
comment
|
36 |
+
declare
|
37 |
+
discard
|
38 |
+
execute
|
39 |
+
explain
|
40 |
+
prepare
|
41 |
+
reindex
|
42 |
+
instead
|
43 |
+
create
|
44 |
+
commit
|
45 |
+
delete
|
46 |
+
insert
|
47 |
+
listen
|
48 |
+
notify
|
49 |
+
select
|
50 |
+
except
|
51 |
+
update
|
52 |
+
vacuum
|
53 |
+
values
|
54 |
+
having
|
55 |
+
nullif
|
56 |
+
exists
|
57 |
+
not in
|
58 |
+
end if
|
59 |
+
before
|
60 |
+
alter
|
61 |
+
begin
|
62 |
+
close
|
63 |
+
fatch
|
64 |
+
grant
|
65 |
+
using
|
66 |
+
union
|
67 |
+
where
|
68 |
+
least
|
69 |
+
elsif
|
70 |
+
after
|
71 |
+
drop
|
72 |
+
copy
|
73 |
+
load
|
74 |
+
lock
|
75 |
+
move
|
76 |
+
with
|
77 |
+
join
|
78 |
+
from
|
79 |
+
case
|
80 |
+
when
|
81 |
+
then
|
82 |
+
else
|
83 |
+
some
|
84 |
+
loop
|
85 |
+
rule
|
86 |
+
also
|
87 |
+
into
|
88 |
+
end
|
89 |
+
set
|
90 |
+
any
|
91 |
+
all
|
92 |
+
for
|
93 |
+
do
|
94 |
+
in
|
95 |
+
if
|
langs/pgsql/type.txt
ADDED
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
time with time zone
|
2 |
+
character varying
|
3 |
+
double precision
|
4 |
+
txid_snapshot
|
5 |
+
bit varying
|
6 |
+
timestamptz
|
7 |
+
bigserial
|
8 |
+
character
|
9 |
+
timestamp
|
10 |
+
bigserial
|
11 |
+
character
|
12 |
+
timestamp
|
13 |
+
interval
|
14 |
+
smallint
|
15 |
+
interval
|
16 |
+
smallint
|
17 |
+
tsvector
|
18 |
+
abstime
|
19 |
+
boolean
|
20 |
+
decimal
|
21 |
+
integer
|
22 |
+
varchar
|
23 |
+
serial8
|
24 |
+
boolean
|
25 |
+
varchar
|
26 |
+
integer
|
27 |
+
macaddr
|
28 |
+
numeric
|
29 |
+
polygon
|
30 |
+
serial4
|
31 |
+
tsquery
|
32 |
+
bigint
|
33 |
+
binary
|
34 |
+
circle
|
35 |
+
bigint
|
36 |
+
varbit
|
37 |
+
circle
|
38 |
+
float8
|
39 |
+
float4
|
40 |
+
serial
|
41 |
+
array
|
42 |
+
bytea
|
43 |
+
float
|
44 |
+
nchar
|
45 |
+
bytea
|
46 |
+
money
|
47 |
+
point
|
48 |
+
char
|
49 |
+
cidr
|
50 |
+
date
|
51 |
+
enum
|
52 |
+
inet
|
53 |
+
real
|
54 |
+
text
|
55 |
+
time
|
56 |
+
int8
|
57 |
+
bool
|
58 |
+
char
|
59 |
+
cidr
|
60 |
+
date
|
61 |
+
inet
|
62 |
+
int4
|
63 |
+
line
|
64 |
+
lseg
|
65 |
+
path
|
66 |
+
real
|
67 |
+
int2
|
68 |
+
text
|
69 |
+
time
|
70 |
+
uuid
|
71 |
+
bit
|
72 |
+
box
|
73 |
+
int
|
74 |
+
xml
|
75 |
+
bit
|
76 |
+
box
|
77 |
+
int
|
78 |
+
xml
|
langs/xhtml/xhtml.txt
CHANGED
@@ -3,19 +3,17 @@
|
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME XHTML
|
6 |
-
VERSION 1.
|
7 |
|
8 |
COMMENT \<!--.*?--\>
|
9 |
ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
|
10 |
NOTATION <!.*?>
|
11 |
|
12 |
-
HTML_TAG:
|
13 |
-
|
14 |
-
#</?\s*[^<\s>]+\s*>?
|
15 |
|
16 |
-
ATTR:ENTITY [\w-]+(?=\s
|
17 |
TEXT:IDENTIFIER (?<=\>)[^\<\>]*(?=\<)
|
18 |
-
OPERATOR
|
19 |
SYMBOL (?default)
|
20 |
|
21 |
# OTHER:CONSTANT (?default:identifier)
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME XHTML
|
6 |
+
VERSION 1.8.0
|
7 |
|
8 |
COMMENT \<!--.*?--\>
|
9 |
ATT_STR:STRING (((?<!\\)".*?(?<!\\)")|((?<!\\)'.*?(?<!\\)'))
|
10 |
NOTATION <!.*?>
|
11 |
|
12 |
+
HTML_TAG:RESERVED (</?\s*[^<\s>]+\s*>?)|(\s*/?>)
|
|
|
|
|
13 |
|
14 |
+
ATTR:ENTITY [\w-]+(?=\s*=\s*["'])
|
15 |
TEXT:IDENTIFIER (?<=\>)[^\<\>]*(?=\<)
|
16 |
+
OPERATOR (?default)
|
17 |
SYMBOL (?default)
|
18 |
|
19 |
# OTHER:CONSTANT (?default:identifier)
|
readme.txt
CHANGED
@@ -44,6 +44,7 @@ Languages are defined in language files using Regular Expressions to capture ele
|
|
44 |
See http://ak.net84.net/projects/crayon-language-file-specification/ to learn how to make your own.
|
45 |
|
46 |
* Default Langauge (one size fits all, highlights generic code)
|
|
|
47 |
* C
|
48 |
* C#
|
49 |
* C++
|
@@ -54,6 +55,7 @@ See http://ak.net84.net/projects/crayon-language-file-specification/ to learn ho
|
|
54 |
* JavaScript
|
55 |
* Objective-C
|
56 |
* PHP
|
|
|
57 |
* Python
|
58 |
* Ruby
|
59 |
* Shell (Unix)
|
@@ -67,13 +69,15 @@ Please Thank Me With <a href="http://ak.net84.net/files/donate.php" target="_bla
|
|
67 |
|
68 |
**International Languages**
|
69 |
|
|
|
70 |
* French
|
71 |
-
* German (thanks to Stephan Knau
|
72 |
* Italian
|
73 |
* Spanish
|
74 |
-
* Japanese (thanks to
|
75 |
-
* Russian (thanks to
|
76 |
-
*
|
|
|
77 |
|
78 |
**Articles**
|
79 |
|
@@ -86,7 +90,7 @@ These are helpful for discovering new features.
|
|
86 |
**Planned Features**
|
87 |
|
88 |
* AutoIt support
|
89 |
-
*
|
90 |
* Highlighting in sentences
|
91 |
* Highlighting in comments
|
92 |
* Visual Editor Support
|
@@ -128,10 +132,37 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
|
|
128 |
== Changelog ==
|
129 |
|
130 |
= 1.8.0 =
|
131 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
|
133 |
= 1.7.25 =
|
134 |
-
* German translation improved by Stephan Knau
|
135 |
* Added missing translations in other languages and fixed bug preventing dropdowns from being translated
|
136 |
* Added translators to the about page
|
137 |
* Oh, added <code><html>...</html></code> tag into the delimiters
|
@@ -421,3 +452,4 @@ Thanks to all those who donate to my project!
|
|
421 |
* Nick Weisser (http://www.openstream.ch/), Switzerland
|
422 |
* Perry Bonewell (http://pointatthemoon.co.uk/), United Kingdom
|
423 |
* Andrew McDonnell (http://blog.oldcomputerjunk.net/), Australia
|
|
44 |
See http://ak.net84.net/projects/crayon-language-file-specification/ to learn how to make your own.
|
45 |
|
46 |
* Default Langauge (one size fits all, highlights generic code)
|
47 |
+
* ActionScript
|
48 |
* C
|
49 |
* C#
|
50 |
* C++
|
55 |
* JavaScript
|
56 |
* Objective-C
|
57 |
* PHP
|
58 |
+
* PostgreSQL (thanks to <a href="http://bitorchestra.com/" target="_blank">http://bitorchestra.com/</a>)
|
59 |
* Python
|
60 |
* Ruby
|
61 |
* Shell (Unix)
|
69 |
|
70 |
**International Languages**
|
71 |
|
72 |
+
* Chinese (Simplified, thanks to <a href="http://smerpup.com/" target="_blank">Dezhi Liu</a>)
|
73 |
* French
|
74 |
+
* German (thanks to <a href="http://www.technologyblog.de/" target="_blank">Stephan Knauß</a>)
|
75 |
* Italian
|
76 |
* Spanish
|
77 |
+
* Japanese (thanks to <a href="https://twitter.com/#!/west_323" target="_blank">@west_323</a>)
|
78 |
+
* Russian (thanks to <a href="http://simplelib.com" target="_blank">Minimus</a>)
|
79 |
+
* Turkish (thanks to <a href="http://kazancexpert.com" target="_blank">Hakan</a>)
|
80 |
+
* Help from translators at improving/adding to this list greatly appreciated!
|
81 |
|
82 |
**Articles**
|
83 |
|
90 |
**Planned Features**
|
91 |
|
92 |
* AutoIt support
|
93 |
+
* PowerShell support
|
94 |
* Highlighting in sentences
|
95 |
* Highlighting in comments
|
96 |
* Visual Editor Support
|
132 |
== Changelog ==
|
133 |
|
134 |
= 1.8.0 =
|
135 |
+
* Added PostgreSQL thanks to Emiliano Leporati and Alessandro Venezia from http://bitorchestra.com/
|
136 |
+
* Added ActionScript
|
137 |
+
* Thanks to Thomas Tan for finding and fixing IE6 compatibility bugs in crayon.js!
|
138 |
+
* Improved Objective-C, XHTML and default language
|
139 |
+
* ?alt: tag now supports spaces in language files, treats then as \s+
|
140 |
+
* Added support for single quotes in CSS and JS
|
141 |
+
|
142 |
+
= 1.7.30 =
|
143 |
+
* Added Inventor iLogic as a language
|
144 |
+
* Added cellspacing and cellpadding back into table due to spacing issue after trying to conform to W3C standards...
|
145 |
+
* Improved default language constants
|
146 |
+
* Added missing language samples for live preview (ruby, monkey and ilogic)
|
147 |
+
* More prominent "show language" button
|
148 |
+
|
149 |
+
= 1.7.29 =
|
150 |
+
* Thanks to @west_323 for updating the Japanese translation
|
151 |
+
|
152 |
+
= 1.7.28 =
|
153 |
+
* Fixed a bug prevent attributes from being detected since 1.7.24
|
154 |
+
* Added Turkish languge thanks to Hakan (http://kazancexpert.com)
|
155 |
+
|
156 |
+
= 1.7.27 =
|
157 |
+
* Recommended update for everyone. This fixes a bug in 1.7.25 where Mixed Highlighting would fail inside an html tag
|
158 |
+
* Greatly simplified the mixed highlighting method, more robust
|
159 |
+
* Made it impossible to nest delimiters, which mimics the behaviour in supported languages.
|
160 |
+
|
161 |
+
= 1.7.26 =
|
162 |
+
* Added translations to the tooltips and copy notification in the toolbar
|
163 |
|
164 |
= 1.7.25 =
|
165 |
+
* German translation improved by Stephan Knauß;
|
166 |
* Added missing translations in other languages and fixed bug preventing dropdowns from being translated
|
167 |
* Added translators to the about page
|
168 |
* Oh, added <code><html>...</html></code> tag into the delimiters
|
452 |
* Nick Weisser (http://www.openstream.ch/), Switzerland
|
453 |
* Perry Bonewell (http://pointatthemoon.co.uk/), United Kingdom
|
454 |
* Andrew McDonnell (http://blog.oldcomputerjunk.net/), Australia
|
455 |
+
* Waimanu Solutions (http://daveblog.waimanu.web44.net/), USA
|
trans/crayon-syntax-highlighter-de_DE.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-de_DE.po
CHANGED
@@ -1,668 +1,700 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: crayon-syntax-highlighter\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-12-10 17:11+1000\n"
|
6 |
-
"PO-Revision-Date: 2011-12-10 17:17+1000\n"
|
7 |
-
"Last-Translator: \n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: German\n"
|
14 |
-
"X-Poedit-Country: Germany\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-Bookmarks: \n"
|
19 |
-
"X-Poedit-SearchPath-0: ..\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
-
|
22 |
-
#: crayon_settings.class.php:130
|
23 |
-
#: crayon_settings.class.php:134
|
24 |
-
#@ crayon-syntax-highlighter
|
25 |
-
msgid "Max"
|
26 |
-
msgstr "Max"
|
27 |
-
|
28 |
-
#: crayon_settings.class.php:130
|
29 |
-
#: crayon_settings.class.php:134
|
30 |
-
#@ crayon-syntax-highlighter
|
31 |
-
msgid "Min"
|
32 |
-
msgstr "Min"
|
33 |
-
|
34 |
-
#: crayon_settings.class.php:130
|
35 |
-
#: crayon_settings.class.php:134
|
36 |
-
#@ crayon-syntax-highlighter
|
37 |
-
msgid "Static"
|
38 |
-
msgstr "Fix"
|
39 |
-
|
40 |
-
#: crayon_settings.class.php:132
|
41 |
-
#: crayon_settings.class.php:136
|
42 |
-
#@ crayon-syntax-highlighter
|
43 |
-
msgid "Pixels"
|
44 |
-
msgstr "Pixels"
|
45 |
-
|
46 |
-
#: crayon_settings.class.php:132
|
47 |
-
#: crayon_settings.class.php:136
|
48 |
-
#@ crayon-syntax-highlighter
|
49 |
-
msgid "Percent"
|
50 |
-
msgstr "Prozent"
|
51 |
-
|
52 |
-
#: crayon_settings.class.php:145
|
53 |
-
#@ crayon-syntax-highlighter
|
54 |
-
msgid "None"
|
55 |
-
msgstr "Keine"
|
56 |
-
|
57 |
-
#: crayon_settings.class.php:145
|
58 |
-
#@ crayon-syntax-highlighter
|
59 |
-
msgid "Left"
|
60 |
-
msgstr "Links"
|
61 |
-
|
62 |
-
#: crayon_settings.class.php:145
|
63 |
-
#@ crayon-syntax-highlighter
|
64 |
-
msgid "Center"
|
65 |
-
msgstr "Mitte"
|
66 |
-
|
67 |
-
#: crayon_settings.class.php:145
|
68 |
-
#@ crayon-syntax-highlighter
|
69 |
-
msgid "Right"
|
70 |
-
msgstr "Rechts"
|
71 |
-
|
72 |
-
#: crayon_settings.class.php:147
|
73 |
-
#: crayon_settings.class.php:169
|
74 |
-
#@ crayon-syntax-highlighter
|
75 |
-
msgid "On MouseOver"
|
76 |
-
msgstr "Bei MouseOver"
|
77 |
-
|
78 |
-
#: crayon_settings.class.php:147
|
79 |
-
#: crayon_settings.class.php:153
|
80 |
-
#@ crayon-syntax-highlighter
|
81 |
-
msgid "Always"
|
82 |
-
msgstr "Immer"
|
83 |
-
|
84 |
-
#: crayon_settings.class.php:147
|
85 |
-
#: crayon_settings.class.php:153
|
86 |
-
#@ crayon-syntax-highlighter
|
87 |
-
msgid "Never"
|
88 |
-
msgstr "Nie"
|
89 |
-
|
90 |
-
#: crayon_settings.class.php:153
|
91 |
-
#@ crayon-syntax-highlighter
|
92 |
-
msgid "When Found"
|
93 |
-
msgstr "Wenn gefunden"
|
94 |
-
|
95 |
-
#: crayon_settings.class.php:169
|
96 |
-
#@ crayon-syntax-highlighter
|
97 |
-
msgid "On Double Click"
|
98 |
-
msgstr "Bei Doppelklick"
|
99 |
-
|
100 |
-
#: crayon_settings.class.php:169
|
101 |
-
#@ crayon-syntax-highlighter
|
102 |
-
msgid "On Single Click"
|
103 |
-
msgstr "Bei Mausklick"
|
104 |
-
|
105 |
-
#: crayon_settings.class.php:177
|
106 |
-
#@ crayon-syntax-highlighter
|
107 |
-
msgid "An error has occurred. Please try again later."
|
108 |
-
msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
|
109 |
-
|
110 |
-
#: crayon_settings_wp.class.php:39
|
111 |
-
#: crayon_settings_wp.class.php:82
|
112 |
-
#: crayon_settings_wp.class.php:710
|
113 |
-
#@ crayon-syntax-highlighter
|
114 |
-
msgid "Settings"
|
115 |
-
msgstr "Einstellungen"
|
116 |
-
|
117 |
-
#: crayon_settings_wp.class.php:73
|
118 |
-
#@ crayon-syntax-highlighter
|
119 |
-
msgid "You do not have sufficient permissions to access this page."
|
120 |
-
msgstr "Sie verfügen nicht über ausreichende Berechtigungen um diese Seite zu betreten."
|
121 |
-
|
122 |
-
#: crayon_settings_wp.class.php:94
|
123 |
-
#@ crayon-syntax-highlighter
|
124 |
-
msgid "Save Changes"
|
125 |
-
msgstr "Änderungen speichern"
|
126 |
-
|
127 |
-
#: crayon_settings_wp.class.php:100
|
128 |
-
#@ crayon-syntax-highlighter
|
129 |
-
msgid "Reset Settings"
|
130 |
-
msgstr "Einstellungen zurücksetzen"
|
131 |
-
|
132 |
-
#: crayon_settings_wp.class.php:437
|
133 |
-
#@ crayon-syntax-highlighter
|
134 |
-
msgid "Height"
|
135 |
-
msgstr "Höhe"
|
136 |
-
|
137 |
-
#: crayon_settings_wp.class.php:443
|
138 |
-
#@ crayon-syntax-highlighter
|
139 |
-
msgid "Width"
|
140 |
-
msgstr "Breite"
|
141 |
-
|
142 |
-
#: crayon_settings_wp.class.php:449
|
143 |
-
#@ crayon-syntax-highlighter
|
144 |
-
msgid "Top Margin"
|
145 |
-
msgstr "Oberer Rand"
|
146 |
-
|
147 |
-
#: crayon_settings_wp.class.php:450
|
148 |
-
#@ crayon-syntax-highlighter
|
149 |
-
msgid "Bottom Margin"
|
150 |
-
msgstr "Unterer Rand"
|
151 |
-
|
152 |
-
#: crayon_settings_wp.class.php:451
|
153 |
-
#: crayon_settings_wp.class.php:456
|
154 |
-
#@ crayon-syntax-highlighter
|
155 |
-
msgid "Left Margin"
|
156 |
-
msgstr "Linker Rand"
|
157 |
-
|
158 |
-
#: crayon_settings_wp.class.php:452
|
159 |
-
#: crayon_settings_wp.class.php:456
|
160 |
-
#@ crayon-syntax-highlighter
|
161 |
-
msgid "Right Margin"
|
162 |
-
msgstr "Rechter Rand"
|
163 |
-
|
164 |
-
#: crayon_settings_wp.class.php:462
|
165 |
-
#@ crayon-syntax-highlighter
|
166 |
-
msgid "Horizontal Alignment"
|
167 |
-
msgstr "Horizontale Ausrichtung"
|
168 |
-
|
169 |
-
#: crayon_settings_wp.class.php:465
|
170 |
-
#@ crayon-syntax-highlighter
|
171 |
-
msgid "Allow floating elements to surround Crayon"
|
172 |
-
msgstr "Crayon in Floating Elemente einbetten"
|
173 |
-
|
174 |
-
#: crayon_settings_wp.class.php:470
|
175 |
-
#@ crayon-syntax-highlighter
|
176 |
-
msgid "Display the Toolbar"
|
177 |
-
msgstr "Symbolleiste anzeigen"
|
178 |
-
|
179 |
-
#: crayon_settings_wp.class.php:473
|
180 |
-
#@ crayon-syntax-highlighter
|
181 |
-
msgid "Overlay the toolbar on code rather than push it down when possible"
|
182 |
-
msgstr "Versuchen mit Symbolleiste Code zu überlagern statt zu verschieben"
|
183 |
-
|
184 |
-
#: crayon_settings_wp.class.php:474
|
185 |
-
#@ crayon-syntax-highlighter
|
186 |
-
msgid "Toggle the toolbar on single click when it is overlayed"
|
187 |
-
msgstr "Symbolleiste mit Klick umschalten wenn als Overlay"
|
188 |
-
|
189 |
-
#: crayon_settings_wp.class.php:475
|
190 |
-
#@ crayon-syntax-highlighter
|
191 |
-
msgid "Delay hiding the toolbar on MouseOut"
|
192 |
-
msgstr "Nach MouseOut Symbolleiste verzögert ausblenden"
|
193 |
-
|
194 |
-
#: crayon_settings_wp.class.php:477
|
195 |
-
#@ crayon-syntax-highlighter
|
196 |
-
msgid "Display the title when provided"
|
197 |
-
msgstr "Titel anzeigen wenn vorhanden"
|
198 |
-
|
199 |
-
#: crayon_settings_wp.class.php:478
|
200 |
-
#@ crayon-syntax-highlighter
|
201 |
-
msgid "Display the language"
|
202 |
-
msgstr "Anzeige der Sprache"
|
203 |
-
|
204 |
-
#: crayon_settings_wp.class.php:483
|
205 |
-
#@ crayon-syntax-highlighter
|
206 |
-
msgid "Display striped code lines"
|
207 |
-
msgstr "Anzeige gestreifte Codezeilen"
|
208 |
-
|
209 |
-
#: crayon_settings_wp.class.php:484
|
210 |
-
#@ crayon-syntax-highlighter
|
211 |
-
msgid "Enable line marking for important lines"
|
212 |
-
msgstr "wichtige Zeilen markieren"
|
213 |
-
|
214 |
-
#: crayon_settings_wp.class.php:485
|
215 |
-
#@ crayon-syntax-highlighter
|
216 |
-
msgid "Display line numbers by default"
|
217 |
-
msgstr "Zeilennummern standardmäßig anzeigen"
|
218 |
-
|
219 |
-
#: crayon_settings_wp.class.php:486
|
220 |
-
#@ crayon-syntax-highlighter
|
221 |
-
msgid "Enable line number toggling"
|
222 |
-
msgstr "Zeilennummern
|
223 |
-
|
224 |
-
#: crayon_settings_wp.class.php:487
|
225 |
-
#@ crayon-syntax-highlighter
|
226 |
-
msgid "Start line numbers from"
|
227 |
-
msgstr "Erste Zeilennummer"
|
228 |
-
|
229 |
-
#: crayon_settings_wp.class.php:497
|
230 |
-
#@ crayon-syntax-highlighter
|
231 |
-
msgid "When no language is provided, use the fallback"
|
232 |
-
msgstr "Wenn keine Sprache festgelegt wird als Standard verwenden"
|
233 |
-
|
234 |
-
#: crayon_settings_wp.class.php:505
|
235 |
-
#@ crayon-syntax-highlighter
|
236 |
-
msgid "Parsing was successful"
|
237 |
-
msgstr "Laden erfolgreich"
|
238 |
-
|
239 |
-
#: crayon_settings_wp.class.php:505
|
240 |
-
#@ crayon-syntax-highlighter
|
241 |
-
msgid "Parsing was unsuccessful"
|
242 |
-
msgstr "Laden fehlgeschlagen"
|
243 |
-
|
244 |
-
#: crayon_settings_wp.class.php:511
|
245 |
-
#, php-format
|
246 |
-
#@ crayon-syntax-highlighter
|
247 |
-
msgid "The selected language with id %s could not be loaded"
|
248 |
-
msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
|
249 |
-
|
250 |
-
#: crayon_settings_wp.class.php:515
|
251 |
-
#@ crayon-syntax-highlighter
|
252 |
-
msgid "Show Languages"
|
253 |
-
msgstr "Zeige Sprachen"
|
254 |
-
|
255 |
-
#: crayon_settings_wp.class.php:552
|
256 |
-
#@ crayon-syntax-highlighter
|
257 |
-
msgid "Enable Live Preview"
|
258 |
-
msgstr "Live-Vorschau aktivieren"
|
259 |
-
|
260 |
-
#: crayon_settings_wp.class.php:557
|
261 |
-
#, php-format
|
262 |
-
#@ crayon-syntax-highlighter
|
263 |
-
msgid "The selected theme with id %s could not be loaded"
|
264 |
-
msgstr "Das gewählte Theme mit id %s konnte nicht geladen werden"
|
265 |
-
|
266 |
-
#: crayon_settings_wp.class.php:575
|
267 |
-
#@ crayon-syntax-highlighter
|
268 |
-
msgid "Custom Font Size"
|
269 |
-
msgstr "Benutzerdefinierte Schriftgröße"
|
270 |
-
|
271 |
-
#: crayon_settings_wp.class.php:580
|
272 |
-
#, php-format
|
273 |
-
#@ crayon-syntax-highlighter
|
274 |
-
msgid "The selected font with id %s could not be loaded"
|
275 |
-
msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
|
276 |
-
|
277 |
-
#: crayon_settings_wp.class.php:587
|
278 |
-
#@ crayon-syntax-highlighter
|
279 |
-
msgid "Enable plain code view and display"
|
280 |
-
msgstr "Unformatierte Code-Ansicht
|
281 |
-
|
282 |
-
#: crayon_settings_wp.class.php:592
|
283 |
-
#@ crayon-syntax-highlighter
|
284 |
-
msgid "Enable code copy/paste"
|
285 |
-
msgstr "Code kopieren/einfügen ermöglichen"
|
286 |
-
|
287 |
-
#: crayon_settings_wp.class.php:594
|
288 |
-
#@ crayon-syntax-highlighter
|
289 |
-
msgid "Enable opening code in a window"
|
290 |
-
msgstr "Code in neuem Fenster anzeigbar machen"
|
291 |
-
|
292 |
-
#: crayon_settings_wp.class.php:596
|
293 |
-
#@ crayon-syntax-highlighter
|
294 |
-
msgid "Tab size in spaces"
|
295 |
-
msgstr "Anzahl Leerzeichen für Tabulator"
|
296 |
-
|
297 |
-
#: crayon_settings_wp.class.php:598
|
298 |
-
#@ crayon-syntax-highlighter
|
299 |
-
msgid "Remove whitespace surrounding the shortcode content"
|
300 |
-
msgstr "
|
301 |
-
|
302 |
-
#: crayon_settings_wp.class.php:608
|
303 |
-
#@ crayon-syntax-highlighter
|
304 |
-
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
305 |
-
msgstr "Wenn beim Laden von lokalen Dateien ein relativer Pfad für die URL angegeben ist den absoluten Pfad verwenden"
|
306 |
-
|
307 |
-
#: crayon_settings_wp.class.php:615
|
308 |
-
#@ crayon-syntax-highlighter
|
309 |
-
msgid "Clear the cache used to store remote code requests"
|
310 |
-
msgstr "Cache für Remote Code Requests leeren"
|
311 |
-
|
312 |
-
#: crayon_settings_wp.class.php:617
|
313 |
-
#@ crayon-syntax-highlighter
|
314 |
-
msgid "Clear Now"
|
315 |
-
msgstr "Jetzt löschen"
|
316 |
-
|
317 |
-
#: crayon_settings_wp.class.php:621
|
318 |
-
#@ crayon-syntax-highlighter
|
319 |
-
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
320 |
-
msgstr "Deaktiviere Mausgesten für Touchscreen-Geräte (z.B. MouseOver)"
|
321 |
-
|
322 |
-
#: crayon_settings_wp.class.php:622
|
323 |
-
#@ crayon-syntax-highlighter
|
324 |
-
msgid "Disable animations"
|
325 |
-
msgstr "Deaktiviere Animationen"
|
326 |
-
|
327 |
-
#: crayon_settings_wp.class.php:623
|
328 |
-
#@ crayon-syntax-highlighter
|
329 |
-
msgid "Disable runtime stats"
|
330 |
-
msgstr "Deaktiviere Laufzeit Statistiken"
|
331 |
-
|
332 |
-
#: crayon_settings_wp.class.php:630
|
333 |
-
#@ crayon-syntax-highlighter
|
334 |
-
msgid "Log errors for individual Crayons"
|
335 |
-
msgstr "Protokolliere Fehler für individuelle Crayons"
|
336 |
-
|
337 |
-
#: crayon_settings_wp.class.php:631
|
338 |
-
#@ crayon-syntax-highlighter
|
339 |
-
msgid "Log system-wide errors"
|
340 |
-
msgstr "Protokolliere systemweite Fehler"
|
341 |
-
|
342 |
-
#: crayon_settings_wp.class.php:632
|
343 |
-
#@ crayon-syntax-highlighter
|
344 |
-
msgid "Display custom message for errors"
|
345 |
-
msgstr "Benutzerdefinierte Meldungen für Fehler anzeigen"
|
346 |
-
|
347 |
-
#: crayon_settings_wp.class.php:644
|
348 |
-
#@ crayon-syntax-highlighter
|
349 |
-
msgid "Show Log"
|
350 |
-
msgstr "Protokoll anzeigen"
|
351 |
-
|
352 |
-
#: crayon_settings_wp.class.php:646
|
353 |
-
#@ crayon-syntax-highlighter
|
354 |
-
msgid "Clear Log"
|
355 |
-
msgstr "Protokoll löschen"
|
356 |
-
|
357 |
-
#: crayon_settings_wp.class.php:647
|
358 |
-
#@ crayon-syntax-highlighter
|
359 |
-
msgid "Email Admin"
|
360 |
-
msgstr "E-Mail Admin"
|
361 |
-
|
362 |
-
#: crayon_settings_wp.class.php:649
|
363 |
-
#@ crayon-syntax-highlighter
|
364 |
-
msgid "Email Developer"
|
365 |
-
msgstr "E-Mail Entwickler"
|
366 |
-
|
367 |
-
#: crayon_settings_wp.class.php:665
|
368 |
-
#@ crayon-syntax-highlighter
|
369 |
-
msgid "Version"
|
370 |
-
msgstr "Version"
|
371 |
-
|
372 |
-
#: crayon_settings_wp.class.php:667
|
373 |
-
#@ crayon-syntax-highlighter
|
374 |
-
msgid "Developer"
|
375 |
-
msgstr "Entwickler"
|
376 |
-
|
377 |
-
#: crayon_settings_wp.class.php:698
|
378 |
-
#@ crayon-syntax-highlighter
|
379 |
-
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
380 |
-
msgstr "Crayon ist das Ergebnis unzähliger Stunden harter Arbeit über viele Monate hinweg. Das Plugin wird laufend weiterentwickelt. Schreib mir wenn es Dir gefällt!"
|
381 |
-
|
382 |
-
#: crayon_settings_wp.class.php:549
|
383 |
-
#, php-format
|
384 |
-
#@ crayon-syntax-highlighter
|
385 |
-
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
386 |
-
msgstr "Ändern Sie die %1$sStandard Sprache%2$s um den Beispielcode zu ändern. Zeilen 5-7 sind markiert."
|
387 |
-
|
388 |
-
#: crayon_settings.class.php:101
|
389 |
-
#@ crayon-syntax-highlighter
|
390 |
-
msgid "Hourly"
|
391 |
-
msgstr "Stündlich"
|
392 |
-
|
393 |
-
#: crayon_settings.class.php:101
|
394 |
-
#@ crayon-syntax-highlighter
|
395 |
-
msgid "Daily"
|
396 |
-
msgstr "Täglich"
|
397 |
-
|
398 |
-
#: crayon_settings.class.php:102
|
399 |
-
#@ crayon-syntax-highlighter
|
400 |
-
msgid "Weekly"
|
401 |
-
msgstr "Wöchentlich"
|
402 |
-
|
403 |
-
#: crayon_settings.class.php:102
|
404 |
-
#@ crayon-syntax-highlighter
|
405 |
-
msgid "Monthly"
|
406 |
-
msgstr "Monatlich"
|
407 |
-
|
408 |
-
#: crayon_settings.class.php:103
|
409 |
-
#@ crayon-syntax-highlighter
|
410 |
-
msgid "Immediately"
|
411 |
-
msgstr "Sofort"
|
412 |
-
|
413 |
-
#: crayon_settings_wp.class.php:423
|
414 |
-
#@ crayon-syntax-highlighter
|
415 |
-
msgid "Crayon Help"
|
416 |
-
msgstr "Crayon Hilfe"
|
417 |
-
|
418 |
-
#: crayon_settings_wp.class.php:618
|
419 |
-
#@ crayon-syntax-highlighter
|
420 |
-
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
-
msgstr "Versuchen Crayon CSS und JavaScript nur bei Bedarf zu laden"
|
422 |
-
|
423 |
-
#: crayon_settings_wp.class.php:
|
424 |
-
#@ crayon-syntax-highlighter
|
425 |
-
msgid "
|
426 |
-
msgstr "
|
427 |
-
|
428 |
-
#: crayon_settings_wp.class.php:
|
429 |
-
#@ crayon-syntax-highlighter
|
430 |
-
msgid "
|
431 |
-
msgstr "
|
432 |
-
|
433 |
-
#: crayon_settings_wp.class.php:
|
434 |
-
#@ crayon-syntax-highlighter
|
435 |
-
msgid "The log is
|
436 |
-
msgstr "
|
437 |
-
|
438 |
-
#: crayon_settings_wp.class.php:653
|
439 |
-
#@ crayon-syntax-highlighter
|
440 |
-
msgid "The log file exists and is writable."
|
441 |
-
msgstr "Die Protokolldatei existiert und ist beschreibbar."
|
442 |
-
|
443 |
-
#: crayon_settings_wp.class.php:
|
444 |
-
#@ crayon-syntax-highlighter
|
445 |
-
msgid "The log file
|
446 |
-
msgstr "Die Protokolldatei existiert und ist nicht
|
447 |
-
|
448 |
-
#: crayon_settings_wp.class.php:
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
msgstr
|
460 |
-
|
461 |
-
#: crayon_settings_wp.class.php:
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
#: crayon_settings_wp.class.php:
|
467 |
-
#: crayon_settings_wp.class.php:
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
#:
|
665 |
-
#@ crayon-syntax-highlighter
|
666 |
-
msgid "
|
667 |
-
msgstr ""
|
668 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: crayon-syntax-highlighter\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-12-10 17:11+1000\n"
|
6 |
+
"PO-Revision-Date: 2011-12-10 17:17+1000\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: German\n"
|
14 |
+
"X-Poedit-Country: Germany\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: ..\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: crayon_settings.class.php:130
|
23 |
+
#: crayon_settings.class.php:134
|
24 |
+
#@ crayon-syntax-highlighter
|
25 |
+
msgid "Max"
|
26 |
+
msgstr "Max"
|
27 |
+
|
28 |
+
#: crayon_settings.class.php:130
|
29 |
+
#: crayon_settings.class.php:134
|
30 |
+
#@ crayon-syntax-highlighter
|
31 |
+
msgid "Min"
|
32 |
+
msgstr "Min"
|
33 |
+
|
34 |
+
#: crayon_settings.class.php:130
|
35 |
+
#: crayon_settings.class.php:134
|
36 |
+
#@ crayon-syntax-highlighter
|
37 |
+
msgid "Static"
|
38 |
+
msgstr "Fix"
|
39 |
+
|
40 |
+
#: crayon_settings.class.php:132
|
41 |
+
#: crayon_settings.class.php:136
|
42 |
+
#@ crayon-syntax-highlighter
|
43 |
+
msgid "Pixels"
|
44 |
+
msgstr "Pixels"
|
45 |
+
|
46 |
+
#: crayon_settings.class.php:132
|
47 |
+
#: crayon_settings.class.php:136
|
48 |
+
#@ crayon-syntax-highlighter
|
49 |
+
msgid "Percent"
|
50 |
+
msgstr "Prozent"
|
51 |
+
|
52 |
+
#: crayon_settings.class.php:145
|
53 |
+
#@ crayon-syntax-highlighter
|
54 |
+
msgid "None"
|
55 |
+
msgstr "Keine"
|
56 |
+
|
57 |
+
#: crayon_settings.class.php:145
|
58 |
+
#@ crayon-syntax-highlighter
|
59 |
+
msgid "Left"
|
60 |
+
msgstr "Links"
|
61 |
+
|
62 |
+
#: crayon_settings.class.php:145
|
63 |
+
#@ crayon-syntax-highlighter
|
64 |
+
msgid "Center"
|
65 |
+
msgstr "Mitte"
|
66 |
+
|
67 |
+
#: crayon_settings.class.php:145
|
68 |
+
#@ crayon-syntax-highlighter
|
69 |
+
msgid "Right"
|
70 |
+
msgstr "Rechts"
|
71 |
+
|
72 |
+
#: crayon_settings.class.php:147
|
73 |
+
#: crayon_settings.class.php:169
|
74 |
+
#@ crayon-syntax-highlighter
|
75 |
+
msgid "On MouseOver"
|
76 |
+
msgstr "Bei MouseOver"
|
77 |
+
|
78 |
+
#: crayon_settings.class.php:147
|
79 |
+
#: crayon_settings.class.php:153
|
80 |
+
#@ crayon-syntax-highlighter
|
81 |
+
msgid "Always"
|
82 |
+
msgstr "Immer"
|
83 |
+
|
84 |
+
#: crayon_settings.class.php:147
|
85 |
+
#: crayon_settings.class.php:153
|
86 |
+
#@ crayon-syntax-highlighter
|
87 |
+
msgid "Never"
|
88 |
+
msgstr "Nie"
|
89 |
+
|
90 |
+
#: crayon_settings.class.php:153
|
91 |
+
#@ crayon-syntax-highlighter
|
92 |
+
msgid "When Found"
|
93 |
+
msgstr "Wenn gefunden"
|
94 |
+
|
95 |
+
#: crayon_settings.class.php:169
|
96 |
+
#@ crayon-syntax-highlighter
|
97 |
+
msgid "On Double Click"
|
98 |
+
msgstr "Bei Doppelklick"
|
99 |
+
|
100 |
+
#: crayon_settings.class.php:169
|
101 |
+
#@ crayon-syntax-highlighter
|
102 |
+
msgid "On Single Click"
|
103 |
+
msgstr "Bei Mausklick"
|
104 |
+
|
105 |
+
#: crayon_settings.class.php:177
|
106 |
+
#@ crayon-syntax-highlighter
|
107 |
+
msgid "An error has occurred. Please try again later."
|
108 |
+
msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
|
109 |
+
|
110 |
+
#: crayon_settings_wp.class.php:39
|
111 |
+
#: crayon_settings_wp.class.php:82
|
112 |
+
#: crayon_settings_wp.class.php:710
|
113 |
+
#@ crayon-syntax-highlighter
|
114 |
+
msgid "Settings"
|
115 |
+
msgstr "Einstellungen"
|
116 |
+
|
117 |
+
#: crayon_settings_wp.class.php:73
|
118 |
+
#@ crayon-syntax-highlighter
|
119 |
+
msgid "You do not have sufficient permissions to access this page."
|
120 |
+
msgstr "Sie verfügen nicht über ausreichende Berechtigungen um diese Seite zu betreten."
|
121 |
+
|
122 |
+
#: crayon_settings_wp.class.php:94
|
123 |
+
#@ crayon-syntax-highlighter
|
124 |
+
msgid "Save Changes"
|
125 |
+
msgstr "Änderungen speichern"
|
126 |
+
|
127 |
+
#: crayon_settings_wp.class.php:100
|
128 |
+
#@ crayon-syntax-highlighter
|
129 |
+
msgid "Reset Settings"
|
130 |
+
msgstr "Einstellungen zurücksetzen"
|
131 |
+
|
132 |
+
#: crayon_settings_wp.class.php:437
|
133 |
+
#@ crayon-syntax-highlighter
|
134 |
+
msgid "Height"
|
135 |
+
msgstr "Höhe"
|
136 |
+
|
137 |
+
#: crayon_settings_wp.class.php:443
|
138 |
+
#@ crayon-syntax-highlighter
|
139 |
+
msgid "Width"
|
140 |
+
msgstr "Breite"
|
141 |
+
|
142 |
+
#: crayon_settings_wp.class.php:449
|
143 |
+
#@ crayon-syntax-highlighter
|
144 |
+
msgid "Top Margin"
|
145 |
+
msgstr "Oberer Rand"
|
146 |
+
|
147 |
+
#: crayon_settings_wp.class.php:450
|
148 |
+
#@ crayon-syntax-highlighter
|
149 |
+
msgid "Bottom Margin"
|
150 |
+
msgstr "Unterer Rand"
|
151 |
+
|
152 |
+
#: crayon_settings_wp.class.php:451
|
153 |
+
#: crayon_settings_wp.class.php:456
|
154 |
+
#@ crayon-syntax-highlighter
|
155 |
+
msgid "Left Margin"
|
156 |
+
msgstr "Linker Rand"
|
157 |
+
|
158 |
+
#: crayon_settings_wp.class.php:452
|
159 |
+
#: crayon_settings_wp.class.php:456
|
160 |
+
#@ crayon-syntax-highlighter
|
161 |
+
msgid "Right Margin"
|
162 |
+
msgstr "Rechter Rand"
|
163 |
+
|
164 |
+
#: crayon_settings_wp.class.php:462
|
165 |
+
#@ crayon-syntax-highlighter
|
166 |
+
msgid "Horizontal Alignment"
|
167 |
+
msgstr "Horizontale Ausrichtung"
|
168 |
+
|
169 |
+
#: crayon_settings_wp.class.php:465
|
170 |
+
#@ crayon-syntax-highlighter
|
171 |
+
msgid "Allow floating elements to surround Crayon"
|
172 |
+
msgstr "Crayon in Floating Elemente einbetten"
|
173 |
+
|
174 |
+
#: crayon_settings_wp.class.php:470
|
175 |
+
#@ crayon-syntax-highlighter
|
176 |
+
msgid "Display the Toolbar"
|
177 |
+
msgstr "Symbolleiste anzeigen"
|
178 |
+
|
179 |
+
#: crayon_settings_wp.class.php:473
|
180 |
+
#@ crayon-syntax-highlighter
|
181 |
+
msgid "Overlay the toolbar on code rather than push it down when possible"
|
182 |
+
msgstr "Versuchen mit Symbolleiste Code zu überlagern statt zu verschieben"
|
183 |
+
|
184 |
+
#: crayon_settings_wp.class.php:474
|
185 |
+
#@ crayon-syntax-highlighter
|
186 |
+
msgid "Toggle the toolbar on single click when it is overlayed"
|
187 |
+
msgstr "Symbolleiste mit Klick umschalten wenn als Overlay"
|
188 |
+
|
189 |
+
#: crayon_settings_wp.class.php:475
|
190 |
+
#@ crayon-syntax-highlighter
|
191 |
+
msgid "Delay hiding the toolbar on MouseOut"
|
192 |
+
msgstr "Nach MouseOut Symbolleiste verzögert ausblenden"
|
193 |
+
|
194 |
+
#: crayon_settings_wp.class.php:477
|
195 |
+
#@ crayon-syntax-highlighter
|
196 |
+
msgid "Display the title when provided"
|
197 |
+
msgstr "Titel anzeigen wenn vorhanden"
|
198 |
+
|
199 |
+
#: crayon_settings_wp.class.php:478
|
200 |
+
#@ crayon-syntax-highlighter
|
201 |
+
msgid "Display the language"
|
202 |
+
msgstr "Anzeige der Sprache"
|
203 |
+
|
204 |
+
#: crayon_settings_wp.class.php:483
|
205 |
+
#@ crayon-syntax-highlighter
|
206 |
+
msgid "Display striped code lines"
|
207 |
+
msgstr "Anzeige gestreifte Codezeilen"
|
208 |
+
|
209 |
+
#: crayon_settings_wp.class.php:484
|
210 |
+
#@ crayon-syntax-highlighter
|
211 |
+
msgid "Enable line marking for important lines"
|
212 |
+
msgstr "wichtige Zeilen markieren"
|
213 |
+
|
214 |
+
#: crayon_settings_wp.class.php:485
|
215 |
+
#@ crayon-syntax-highlighter
|
216 |
+
msgid "Display line numbers by default"
|
217 |
+
msgstr "Zeilennummern standardmäßig anzeigen"
|
218 |
+
|
219 |
+
#: crayon_settings_wp.class.php:486
|
220 |
+
#@ crayon-syntax-highlighter
|
221 |
+
msgid "Enable line number toggling"
|
222 |
+
msgstr "Zeilennummern umschaltbar"
|
223 |
+
|
224 |
+
#: crayon_settings_wp.class.php:487
|
225 |
+
#@ crayon-syntax-highlighter
|
226 |
+
msgid "Start line numbers from"
|
227 |
+
msgstr "Erste Zeilennummer"
|
228 |
+
|
229 |
+
#: crayon_settings_wp.class.php:497
|
230 |
+
#@ crayon-syntax-highlighter
|
231 |
+
msgid "When no language is provided, use the fallback"
|
232 |
+
msgstr "Wenn keine Sprache festgelegt wird als Standard verwenden"
|
233 |
+
|
234 |
+
#: crayon_settings_wp.class.php:505
|
235 |
+
#@ crayon-syntax-highlighter
|
236 |
+
msgid "Parsing was successful"
|
237 |
+
msgstr "Laden erfolgreich"
|
238 |
+
|
239 |
+
#: crayon_settings_wp.class.php:505
|
240 |
+
#@ crayon-syntax-highlighter
|
241 |
+
msgid "Parsing was unsuccessful"
|
242 |
+
msgstr "Laden fehlgeschlagen"
|
243 |
+
|
244 |
+
#: crayon_settings_wp.class.php:511
|
245 |
+
#, php-format
|
246 |
+
#@ crayon-syntax-highlighter
|
247 |
+
msgid "The selected language with id %s could not be loaded"
|
248 |
+
msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
|
249 |
+
|
250 |
+
#: crayon_settings_wp.class.php:515
|
251 |
+
#@ crayon-syntax-highlighter
|
252 |
+
msgid "Show Languages"
|
253 |
+
msgstr "Zeige Sprachen"
|
254 |
+
|
255 |
+
#: crayon_settings_wp.class.php:552
|
256 |
+
#@ crayon-syntax-highlighter
|
257 |
+
msgid "Enable Live Preview"
|
258 |
+
msgstr "Live-Vorschau aktivieren"
|
259 |
+
|
260 |
+
#: crayon_settings_wp.class.php:557
|
261 |
+
#, php-format
|
262 |
+
#@ crayon-syntax-highlighter
|
263 |
+
msgid "The selected theme with id %s could not be loaded"
|
264 |
+
msgstr "Das gewählte Theme mit id %s konnte nicht geladen werden"
|
265 |
+
|
266 |
+
#: crayon_settings_wp.class.php:575
|
267 |
+
#@ crayon-syntax-highlighter
|
268 |
+
msgid "Custom Font Size"
|
269 |
+
msgstr "Benutzerdefinierte Schriftgröße"
|
270 |
+
|
271 |
+
#: crayon_settings_wp.class.php:580
|
272 |
+
#, php-format
|
273 |
+
#@ crayon-syntax-highlighter
|
274 |
+
msgid "The selected font with id %s could not be loaded"
|
275 |
+
msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
|
276 |
+
|
277 |
+
#: crayon_settings_wp.class.php:587
|
278 |
+
#@ crayon-syntax-highlighter
|
279 |
+
msgid "Enable plain code view and display"
|
280 |
+
msgstr "Unformatierte Code-Ansicht ermöglichen"
|
281 |
+
|
282 |
+
#: crayon_settings_wp.class.php:592
|
283 |
+
#@ crayon-syntax-highlighter
|
284 |
+
msgid "Enable code copy/paste"
|
285 |
+
msgstr "Code kopieren/einfügen ermöglichen"
|
286 |
+
|
287 |
+
#: crayon_settings_wp.class.php:594
|
288 |
+
#@ crayon-syntax-highlighter
|
289 |
+
msgid "Enable opening code in a window"
|
290 |
+
msgstr "Code in neuem Fenster anzeigbar machen"
|
291 |
+
|
292 |
+
#: crayon_settings_wp.class.php:596
|
293 |
+
#@ crayon-syntax-highlighter
|
294 |
+
msgid "Tab size in spaces"
|
295 |
+
msgstr "Anzahl Leerzeichen für Tabulator"
|
296 |
+
|
297 |
+
#: crayon_settings_wp.class.php:598
|
298 |
+
#@ crayon-syntax-highlighter
|
299 |
+
msgid "Remove whitespace surrounding the shortcode content"
|
300 |
+
msgstr "Leerzeichen um den Shortcode Inhalt entfernen"
|
301 |
+
|
302 |
+
#: crayon_settings_wp.class.php:608
|
303 |
+
#@ crayon-syntax-highlighter
|
304 |
+
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
305 |
+
msgstr "Wenn beim Laden von lokalen Dateien ein relativer Pfad für die URL angegeben ist den absoluten Pfad verwenden"
|
306 |
+
|
307 |
+
#: crayon_settings_wp.class.php:615
|
308 |
+
#@ crayon-syntax-highlighter
|
309 |
+
msgid "Clear the cache used to store remote code requests"
|
310 |
+
msgstr "Cache für Remote Code Requests leeren"
|
311 |
+
|
312 |
+
#: crayon_settings_wp.class.php:617
|
313 |
+
#@ crayon-syntax-highlighter
|
314 |
+
msgid "Clear Now"
|
315 |
+
msgstr "Jetzt löschen"
|
316 |
+
|
317 |
+
#: crayon_settings_wp.class.php:621
|
318 |
+
#@ crayon-syntax-highlighter
|
319 |
+
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
320 |
+
msgstr "Deaktiviere Mausgesten für Touchscreen-Geräte (z.B. MouseOver)"
|
321 |
+
|
322 |
+
#: crayon_settings_wp.class.php:622
|
323 |
+
#@ crayon-syntax-highlighter
|
324 |
+
msgid "Disable animations"
|
325 |
+
msgstr "Deaktiviere Animationen"
|
326 |
+
|
327 |
+
#: crayon_settings_wp.class.php:623
|
328 |
+
#@ crayon-syntax-highlighter
|
329 |
+
msgid "Disable runtime stats"
|
330 |
+
msgstr "Deaktiviere Laufzeit Statistiken"
|
331 |
+
|
332 |
+
#: crayon_settings_wp.class.php:630
|
333 |
+
#@ crayon-syntax-highlighter
|
334 |
+
msgid "Log errors for individual Crayons"
|
335 |
+
msgstr "Protokolliere Fehler für individuelle Crayons"
|
336 |
+
|
337 |
+
#: crayon_settings_wp.class.php:631
|
338 |
+
#@ crayon-syntax-highlighter
|
339 |
+
msgid "Log system-wide errors"
|
340 |
+
msgstr "Protokolliere systemweite Fehler"
|
341 |
+
|
342 |
+
#: crayon_settings_wp.class.php:632
|
343 |
+
#@ crayon-syntax-highlighter
|
344 |
+
msgid "Display custom message for errors"
|
345 |
+
msgstr "Benutzerdefinierte Meldungen für Fehler anzeigen"
|
346 |
+
|
347 |
+
#: crayon_settings_wp.class.php:644
|
348 |
+
#@ crayon-syntax-highlighter
|
349 |
+
msgid "Show Log"
|
350 |
+
msgstr "Protokoll anzeigen"
|
351 |
+
|
352 |
+
#: crayon_settings_wp.class.php:646
|
353 |
+
#@ crayon-syntax-highlighter
|
354 |
+
msgid "Clear Log"
|
355 |
+
msgstr "Protokoll löschen"
|
356 |
+
|
357 |
+
#: crayon_settings_wp.class.php:647
|
358 |
+
#@ crayon-syntax-highlighter
|
359 |
+
msgid "Email Admin"
|
360 |
+
msgstr "E-Mail Admin"
|
361 |
+
|
362 |
+
#: crayon_settings_wp.class.php:649
|
363 |
+
#@ crayon-syntax-highlighter
|
364 |
+
msgid "Email Developer"
|
365 |
+
msgstr "E-Mail Entwickler"
|
366 |
+
|
367 |
+
#: crayon_settings_wp.class.php:665
|
368 |
+
#@ crayon-syntax-highlighter
|
369 |
+
msgid "Version"
|
370 |
+
msgstr "Version"
|
371 |
+
|
372 |
+
#: crayon_settings_wp.class.php:667
|
373 |
+
#@ crayon-syntax-highlighter
|
374 |
+
msgid "Developer"
|
375 |
+
msgstr "Entwickler"
|
376 |
+
|
377 |
+
#: crayon_settings_wp.class.php:698
|
378 |
+
#@ crayon-syntax-highlighter
|
379 |
+
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
380 |
+
msgstr "Crayon ist das Ergebnis unzähliger Stunden harter Arbeit über viele Monate hinweg. Das Plugin wird laufend weiterentwickelt. Schreib mir wenn es Dir gefällt!"
|
381 |
+
|
382 |
+
#: crayon_settings_wp.class.php:549
|
383 |
+
#, php-format
|
384 |
+
#@ crayon-syntax-highlighter
|
385 |
+
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
386 |
+
msgstr "Ändern Sie die %1$sStandard Sprache%2$s um den Beispielcode zu ändern. Zeilen 5-7 sind markiert."
|
387 |
+
|
388 |
+
#: crayon_settings.class.php:101
|
389 |
+
#@ crayon-syntax-highlighter
|
390 |
+
msgid "Hourly"
|
391 |
+
msgstr "Stündlich"
|
392 |
+
|
393 |
+
#: crayon_settings.class.php:101
|
394 |
+
#@ crayon-syntax-highlighter
|
395 |
+
msgid "Daily"
|
396 |
+
msgstr "Täglich"
|
397 |
+
|
398 |
+
#: crayon_settings.class.php:102
|
399 |
+
#@ crayon-syntax-highlighter
|
400 |
+
msgid "Weekly"
|
401 |
+
msgstr "Wöchentlich"
|
402 |
+
|
403 |
+
#: crayon_settings.class.php:102
|
404 |
+
#@ crayon-syntax-highlighter
|
405 |
+
msgid "Monthly"
|
406 |
+
msgstr "Monatlich"
|
407 |
+
|
408 |
+
#: crayon_settings.class.php:103
|
409 |
+
#@ crayon-syntax-highlighter
|
410 |
+
msgid "Immediately"
|
411 |
+
msgstr "Sofort"
|
412 |
+
|
413 |
+
#: crayon_settings_wp.class.php:423
|
414 |
+
#@ crayon-syntax-highlighter
|
415 |
+
msgid "Crayon Help"
|
416 |
+
msgstr "Crayon Hilfe"
|
417 |
+
|
418 |
+
#: crayon_settings_wp.class.php:618
|
419 |
+
#@ crayon-syntax-highlighter
|
420 |
+
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
+
msgstr "Versuchen Crayon CSS und JavaScript nur bei Bedarf zu laden"
|
422 |
+
|
423 |
+
#: crayon_settings_wp.class.php:611
|
424 |
+
#@ crayon-syntax-highlighter
|
425 |
+
msgid "Followed by your relative URL."
|
426 |
+
msgstr "Gefolgt von Ihrer relativen URL."
|
427 |
+
|
428 |
+
#: crayon_settings_wp.class.php:651
|
429 |
+
#@ crayon-syntax-highlighter
|
430 |
+
msgid "The log is currently empty."
|
431 |
+
msgstr "Das Protokoll ist derzeit leer."
|
432 |
+
|
433 |
+
#: crayon_settings_wp.class.php:653
|
434 |
+
#@ crayon-syntax-highlighter
|
435 |
+
msgid "The log file exists and is writable."
|
436 |
+
msgstr "Die Protokolldatei existiert und ist beschreibbar."
|
437 |
+
|
438 |
+
#: crayon_settings_wp.class.php:653
|
439 |
+
#@ crayon-syntax-highlighter
|
440 |
+
msgid "The log file exists and is not writable."
|
441 |
+
msgstr "Die Protokolldatei existiert und ist nicht beschreibbar."
|
442 |
+
|
443 |
+
#: crayon_settings_wp.class.php:655
|
444 |
+
#@ crayon-syntax-highlighter
|
445 |
+
msgid "The log file does not exist and is not writable."
|
446 |
+
msgstr "Die Protokolldatei existiert nicht und ist nicht schreibbar."
|
447 |
+
|
448 |
+
#: crayon_settings_wp.class.php:504
|
449 |
+
#, php-format
|
450 |
+
#@ crayon-syntax-highlighter
|
451 |
+
msgid "%d language has been detected."
|
452 |
+
msgid_plural "%d languages have been detected."
|
453 |
+
msgstr[0] "%d Sprache wurde erkannt."
|
454 |
+
msgstr[1] "%d Sprachen wurden erkannt."
|
455 |
+
|
456 |
+
#: crayon_settings_wp.class.php:599
|
457 |
+
#@ crayon-syntax-highlighter
|
458 |
+
msgid "Capture <pre> tags as Crayons"
|
459 |
+
msgstr "<pre> tags wie Crayons behandeln"
|
460 |
+
|
461 |
+
#: crayon_settings_wp.class.php:554
|
462 |
+
#: crayon_settings_wp.class.php:583
|
463 |
+
#: crayon_settings_wp.class.php:600
|
464 |
+
#: crayon_settings_wp.class.php:601
|
465 |
+
#: crayon_settings_wp.class.php:602
|
466 |
+
#: crayon_settings_wp.class.php:618
|
467 |
+
#: crayon_settings_wp.class.php:619
|
468 |
+
#@ crayon-syntax-highlighter
|
469 |
+
msgid "Learn More"
|
470 |
+
msgstr "Erfahren Sie mehr"
|
471 |
+
|
472 |
+
#: crayon_settings_wp.class.php:603
|
473 |
+
#@ crayon-syntax-highlighter
|
474 |
+
msgid "Show Mixed Language Icon (+)"
|
475 |
+
msgstr "Zeige gemischte Sprachen Symbol (+)"
|
476 |
+
|
477 |
+
#: crayon_settings_wp.class.php:602
|
478 |
+
#@ crayon-syntax-highlighter
|
479 |
+
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
480 |
+
msgstr "Erlaube Hervorhebung gemischter Sprachen mit Trennzeichen und Tags."
|
481 |
+
|
482 |
+
#: crayon_settings_wp.class.php:600
|
483 |
+
#@ crayon-syntax-highlighter
|
484 |
+
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
485 |
+
msgstr "Mini Tags wie [php][/php] als Crayons behandeln."
|
486 |
+
|
487 |
+
#: crayon_settings_wp.class.php:601
|
488 |
+
#@ crayon-syntax-highlighter
|
489 |
+
msgid "Enable [plain][/plain] tag."
|
490 |
+
msgstr "Aktiviere [plain][/plain] Tag."
|
491 |
+
|
492 |
+
#: crayon_settings.class.php:169
|
493 |
+
#@ crayon-syntax-highlighter
|
494 |
+
msgid "Disable Mouse Events"
|
495 |
+
msgstr "Mausereignisse deaktivieren"
|
496 |
+
|
497 |
+
#: crayon_settings_wp.class.php:590
|
498 |
+
#@ crayon-syntax-highlighter
|
499 |
+
msgid "Enable plain code toggling"
|
500 |
+
msgstr "Umschaltung auf unformatierte Anzeige ermöglichen"
|
501 |
+
|
502 |
+
#: crayon_settings_wp.class.php:591
|
503 |
+
#@ crayon-syntax-highlighter
|
504 |
+
msgid "Show the plain code by default"
|
505 |
+
msgstr "Unformatierten Code standardmäßig anzeigen"
|
506 |
+
|
507 |
+
#. translators: plugin header field 'Name'
|
508 |
+
#: crayon_wp.class.php:0
|
509 |
+
#@ crayon-syntax-highlighter
|
510 |
+
msgid "Crayon Syntax Highlighter"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#. translators: plugin header field 'AuthorURI'
|
514 |
+
#: crayon_wp.class.php:0
|
515 |
+
#@ crayon-syntax-highlighter
|
516 |
+
msgid "http://ak.net84.net/"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#. translators: plugin header field 'Author'
|
520 |
+
#: crayon_wp.class.php:0
|
521 |
+
#@ crayon-syntax-highlighter
|
522 |
+
msgid "Aram Kocharyan"
|
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 "Unterstützt mehrere Sprachen und Themes. Hervorhebung von Code aus einer URL, lokalen Datei oder Artikeltext."
|
536 |
+
|
537 |
+
#: crayon_settings_wp.class.php:714
|
538 |
+
#@ crayon-syntax-highlighter
|
539 |
+
msgid "Donate"
|
540 |
+
msgstr "Spenden"
|
541 |
+
|
542 |
+
#: crayon_settings_wp.class.php:219
|
543 |
+
#@ crayon-syntax-highlighter
|
544 |
+
msgid "General"
|
545 |
+
msgstr "Allgemein"
|
546 |
+
|
547 |
+
#: crayon_settings_wp.class.php:220
|
548 |
+
#@ crayon-syntax-highlighter
|
549 |
+
msgid "Theme"
|
550 |
+
msgstr "Theme"
|
551 |
+
|
552 |
+
#: crayon_settings_wp.class.php:221
|
553 |
+
#@ crayon-syntax-highlighter
|
554 |
+
msgid "Font"
|
555 |
+
msgstr "Schriftart"
|
556 |
+
|
557 |
+
#: crayon_settings_wp.class.php:222
|
558 |
+
#@ crayon-syntax-highlighter
|
559 |
+
msgid "Metrics"
|
560 |
+
msgstr "Layout"
|
561 |
+
|
562 |
+
#: crayon_settings_wp.class.php:223
|
563 |
+
#@ crayon-syntax-highlighter
|
564 |
+
msgid "Toolbar"
|
565 |
+
msgstr "Symbolleiste"
|
566 |
+
|
567 |
+
#: crayon_settings_wp.class.php:224
|
568 |
+
#@ crayon-syntax-highlighter
|
569 |
+
msgid "Lines"
|
570 |
+
msgstr "Zeilen"
|
571 |
+
|
572 |
+
#: crayon_settings_wp.class.php:225
|
573 |
+
#@ crayon-syntax-highlighter
|
574 |
+
msgid "Code"
|
575 |
+
msgstr "Code"
|
576 |
+
|
577 |
+
#: crayon_settings_wp.class.php:226
|
578 |
+
#@ crayon-syntax-highlighter
|
579 |
+
msgid "Languages"
|
580 |
+
msgstr "Sprachen"
|
581 |
+
|
582 |
+
#: crayon_settings_wp.class.php:227
|
583 |
+
#@ crayon-syntax-highlighter
|
584 |
+
msgid "Files"
|
585 |
+
msgstr "Dateien"
|
586 |
+
|
587 |
+
#: crayon_settings_wp.class.php:228
|
588 |
+
#@ crayon-syntax-highlighter
|
589 |
+
msgid "Misc"
|
590 |
+
msgstr "Sonstiges"
|
591 |
+
|
592 |
+
#: crayon_settings_wp.class.php:231
|
593 |
+
#@ crayon-syntax-highlighter
|
594 |
+
msgid "Debug"
|
595 |
+
msgstr "Debuggen"
|
596 |
+
|
597 |
+
#: crayon_settings_wp.class.php:232
|
598 |
+
#@ crayon-syntax-highlighter
|
599 |
+
msgid "Errors"
|
600 |
+
msgstr "Fehler"
|
601 |
+
|
602 |
+
#: crayon_settings_wp.class.php:233
|
603 |
+
#@ crayon-syntax-highlighter
|
604 |
+
msgid "Log"
|
605 |
+
msgstr "Protokoll"
|
606 |
+
|
607 |
+
#: crayon_settings_wp.class.php:236
|
608 |
+
#@ crayon-syntax-highlighter
|
609 |
+
msgid "About"
|
610 |
+
msgstr "Über"
|
611 |
+
|
612 |
+
#: crayon_settings_wp.class.php:554
|
613 |
+
#@ crayon-syntax-highlighter
|
614 |
+
msgid "Enqueue themes in the header (more efficient)."
|
615 |
+
msgstr "Themes im Header laden (effizienter)."
|
616 |
+
|
617 |
+
#: crayon_settings_wp.class.php:583
|
618 |
+
#@ crayon-syntax-highlighter
|
619 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
620 |
+
msgstr "Schriftarten im Header laden (effizienter)."
|
621 |
+
|
622 |
+
#: crayon_settings_wp.class.php:545
|
623 |
+
#@ crayon-syntax-highlighter
|
624 |
+
msgid "Loading..."
|
625 |
+
msgstr "Lade..."
|
626 |
+
|
627 |
+
#: crayon_settings_wp.class.php:545
|
628 |
+
#: crayon_settings_wp.class.php:712
|
629 |
+
#: util/theme-editor/editor.php:14
|
630 |
+
#@ crayon-syntax-highlighter
|
631 |
+
msgid "Theme Editor"
|
632 |
+
msgstr "Thema Editor"
|
633 |
+
|
634 |
+
#: crayon_settings_wp.class.php:595
|
635 |
+
#@ crayon-syntax-highlighter
|
636 |
+
msgid "Always display scrollbars"
|
637 |
+
msgstr "Immer Scrollbalken anzeigen"
|
638 |
+
|
639 |
+
#: crayon_settings_wp.class.php:619
|
640 |
+
#@ crayon-syntax-highlighter
|
641 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
642 |
+
msgstr "Deaktiviere Laden im Header für Themes die The Loop verwenden"
|
643 |
+
|
644 |
+
#: crayon_settings_wp.class.php:620
|
645 |
+
#@ crayon-syntax-highlighter
|
646 |
+
msgid "Load Crayons only from the main Wordpress query"
|
647 |
+
msgstr "Crayons nur aus der main Wordpress query laden"
|
648 |
+
|
649 |
+
#: util/theme-editor/editor.php:16
|
650 |
+
#@ crayon-syntax-highlighter
|
651 |
+
msgid "Back To Settings"
|
652 |
+
msgstr "Zurück zu Einstellungen"
|
653 |
+
|
654 |
+
#: crayon_settings_wp.class.php:668
|
655 |
+
#@ crayon-syntax-highlighter
|
656 |
+
msgid "Translators"
|
657 |
+
msgstr "Übersetzer"
|
658 |
+
|
659 |
+
#: crayon_formatter.class.php:203
|
660 |
+
#@ crayon-syntax-highlighter
|
661 |
+
msgid "Toggle Plain Code"
|
662 |
+
msgstr "Unformatierte Code-Ansicht"
|
663 |
+
|
664 |
+
#: crayon_formatter.class.php:205
|
665 |
+
#@ crayon-syntax-highlighter
|
666 |
+
msgid "Copy Plain Code"
|
667 |
+
msgstr "Unformatierten Code kopieren"
|
668 |
+
|
669 |
+
#: crayon_formatter.class.php:211
|
670 |
+
#@ crayon-syntax-highlighter
|
671 |
+
msgid "Open Code In New Window"
|
672 |
+
msgstr "Code in einem neuen Fenster anzeigen"
|
673 |
+
|
674 |
+
#: crayon_formatter.class.php:214
|
675 |
+
#@ crayon-syntax-highlighter
|
676 |
+
msgid "Toggle Line Numbers"
|
677 |
+
msgstr "Zeilennummern"
|
678 |
+
|
679 |
+
#: crayon_formatter.class.php:221
|
680 |
+
#@ crayon-syntax-highlighter
|
681 |
+
msgid "Contains Mixed Languages"
|
682 |
+
msgstr "Enthält verschiedene Sprachen"
|
683 |
+
|
684 |
+
#: crayon_settings_wp.class.php:644
|
685 |
+
#@ crayon-syntax-highlighter
|
686 |
+
msgid "Hide Log"
|
687 |
+
msgstr "Protokoll ausblenden"
|
688 |
+
|
689 |
+
#. translators: plugin header field 'Version'
|
690 |
+
#: crayon_wp.class.php:0
|
691 |
+
#@ crayon-syntax-highlighter
|
692 |
+
msgid "1.7.26"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: crayon_formatter.class.php:205
|
696 |
+
#, php-format
|
697 |
+
#@ crayon-syntax-highlighter
|
698 |
+
msgid "Press %s to Copy, %s to Paste"
|
699 |
+
msgstr "Drücken Sie %s zum Kopieren, %s zum Einfügen"
|
700 |
+
|
trans/crayon-syntax-highlighter-es_ES.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-es_ES.po
CHANGED
@@ -420,11 +420,6 @@ msgstr "Crayon Ayuda"
|
|
420 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
|
422 |
|
423 |
-
#: crayon_settings_wp.class.php:618
|
424 |
-
#@ crayon-syntax-highlighter
|
425 |
-
msgid "Why?"
|
426 |
-
msgstr "¿Por qué?"
|
427 |
-
|
428 |
#: crayon_settings_wp.class.php:504
|
429 |
#, php-format
|
430 |
#@ crayon-syntax-highlighter
|
@@ -468,6 +463,7 @@ msgstr "Captura de etiquetas <pre> como Crayons"
|
|
468 |
#: crayon_settings_wp.class.php:600
|
469 |
#: crayon_settings_wp.class.php:601
|
470 |
#: crayon_settings_wp.class.php:602
|
|
|
471 |
#: crayon_settings_wp.class.php:619
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "Learn More"
|
@@ -655,14 +651,50 @@ msgstr "Lápices de colores única carga de la principal consulta de Wordpress"
|
|
655 |
msgid "Translators"
|
656 |
msgstr "Traductores"
|
657 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
658 |
#. translators: plugin header field 'Version'
|
659 |
#: crayon_wp.class.php:0
|
660 |
#@ crayon-syntax-highlighter
|
661 |
-
msgid "1.7.
|
662 |
msgstr ""
|
663 |
|
664 |
-
#:
|
|
|
665 |
#@ crayon-syntax-highlighter
|
666 |
-
msgid "
|
667 |
-
msgstr "
|
668 |
|
420 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
|
422 |
|
|
|
|
|
|
|
|
|
|
|
423 |
#: crayon_settings_wp.class.php:504
|
424 |
#, php-format
|
425 |
#@ crayon-syntax-highlighter
|
463 |
#: crayon_settings_wp.class.php:600
|
464 |
#: crayon_settings_wp.class.php:601
|
465 |
#: crayon_settings_wp.class.php:602
|
466 |
+
#: crayon_settings_wp.class.php:618
|
467 |
#: crayon_settings_wp.class.php:619
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "Learn More"
|
651 |
msgid "Translators"
|
652 |
msgstr "Traductores"
|
653 |
|
654 |
+
#: util/theme-editor/editor.php:16
|
655 |
+
#@ crayon-syntax-highlighter
|
656 |
+
msgid "Back To Settings"
|
657 |
+
msgstr "Volver a la configuración"
|
658 |
+
|
659 |
+
#: crayon_formatter.class.php:203
|
660 |
+
#@ crayon-syntax-highlighter
|
661 |
+
msgid "Toggle Plain Code"
|
662 |
+
msgstr "Código normal cambiar"
|
663 |
+
|
664 |
+
#: crayon_formatter.class.php:205
|
665 |
+
#@ crayon-syntax-highlighter
|
666 |
+
msgid "Copy Plain Code"
|
667 |
+
msgstr "Copia simple código"
|
668 |
+
|
669 |
+
#: crayon_formatter.class.php:211
|
670 |
+
#@ crayon-syntax-highlighter
|
671 |
+
msgid "Open Code In New Window"
|
672 |
+
msgstr "Código abierto en una ventana nueva"
|
673 |
+
|
674 |
+
#: crayon_formatter.class.php:214
|
675 |
+
#@ crayon-syntax-highlighter
|
676 |
+
msgid "Toggle Line Numbers"
|
677 |
+
msgstr "Números de cambiar de línea"
|
678 |
+
|
679 |
+
#: crayon_formatter.class.php:221
|
680 |
+
#@ crayon-syntax-highlighter
|
681 |
+
msgid "Contains Mixed Languages"
|
682 |
+
msgstr "Contiene Idiomas mixtos"
|
683 |
+
|
684 |
+
#: crayon_settings_wp.class.php:644
|
685 |
+
#@ crayon-syntax-highlighter
|
686 |
+
msgid "Hide Log"
|
687 |
+
msgstr "Ocultar Conectarse"
|
688 |
+
|
689 |
#. translators: plugin header field 'Version'
|
690 |
#: crayon_wp.class.php:0
|
691 |
#@ crayon-syntax-highlighter
|
692 |
+
msgid "1.7.26"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: crayon_formatter.class.php:205
|
696 |
+
#, php-format
|
697 |
#@ crayon-syntax-highlighter
|
698 |
+
msgid "Press %s to Copy, %s to Paste"
|
699 |
+
msgstr "Prensa %s para copiar, pegar a %s"
|
700 |
|
trans/crayon-syntax-highlighter-fr_FR.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-fr_FR.po
CHANGED
@@ -420,11 +420,6 @@ msgstr "Aide Crayon"
|
|
420 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
|
422 |
|
423 |
-
#: crayon_settings_wp.class.php:618
|
424 |
-
#@ crayon-syntax-highlighter
|
425 |
-
msgid "Why?"
|
426 |
-
msgstr "Pourquoi?"
|
427 |
-
|
428 |
#: crayon_settings_wp.class.php:504
|
429 |
#, php-format
|
430 |
#@ crayon-syntax-highlighter
|
@@ -468,6 +463,7 @@ msgstr "Capturez balises <pre> que Crayons"
|
|
468 |
#: crayon_settings_wp.class.php:600
|
469 |
#: crayon_settings_wp.class.php:601
|
470 |
#: crayon_settings_wp.class.php:602
|
|
|
471 |
#: crayon_settings_wp.class.php:619
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "Learn More"
|
@@ -655,14 +651,50 @@ msgstr "Crayons Charge seulement de la requête principale Wordpress"
|
|
655 |
msgid "Translators"
|
656 |
msgstr "Traducteurs"
|
657 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
658 |
#. translators: plugin header field 'Version'
|
659 |
#: crayon_wp.class.php:0
|
660 |
#@ crayon-syntax-highlighter
|
661 |
-
msgid "1.7.
|
662 |
msgstr ""
|
663 |
|
664 |
-
#:
|
|
|
665 |
#@ crayon-syntax-highlighter
|
666 |
-
msgid "
|
667 |
-
msgstr "
|
668 |
|
420 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
|
422 |
|
|
|
|
|
|
|
|
|
|
|
423 |
#: crayon_settings_wp.class.php:504
|
424 |
#, php-format
|
425 |
#@ crayon-syntax-highlighter
|
463 |
#: crayon_settings_wp.class.php:600
|
464 |
#: crayon_settings_wp.class.php:601
|
465 |
#: crayon_settings_wp.class.php:602
|
466 |
+
#: crayon_settings_wp.class.php:618
|
467 |
#: crayon_settings_wp.class.php:619
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "Learn More"
|
651 |
msgid "Translators"
|
652 |
msgstr "Traducteurs"
|
653 |
|
654 |
+
#: util/theme-editor/editor.php:16
|
655 |
+
#@ crayon-syntax-highlighter
|
656 |
+
msgid "Back To Settings"
|
657 |
+
msgstr "Retour aux réglages"
|
658 |
+
|
659 |
+
#: crayon_formatter.class.php:203
|
660 |
+
#@ crayon-syntax-highlighter
|
661 |
+
msgid "Toggle Plain Code"
|
662 |
+
msgstr "Basculer code plaine"
|
663 |
+
|
664 |
+
#: crayon_formatter.class.php:205
|
665 |
+
#@ crayon-syntax-highlighter
|
666 |
+
msgid "Copy Plain Code"
|
667 |
+
msgstr "Copier le code ordinaire"
|
668 |
+
|
669 |
+
#: crayon_formatter.class.php:211
|
670 |
+
#@ crayon-syntax-highlighter
|
671 |
+
msgid "Open Code In New Window"
|
672 |
+
msgstr "Code dans la nouvelle fenêtre"
|
673 |
+
|
674 |
+
#: crayon_formatter.class.php:214
|
675 |
+
#@ crayon-syntax-highlighter
|
676 |
+
msgid "Toggle Line Numbers"
|
677 |
+
msgstr "Numéros de ligne Basculer"
|
678 |
+
|
679 |
+
#: crayon_formatter.class.php:221
|
680 |
+
#@ crayon-syntax-highlighter
|
681 |
+
msgid "Contains Mixed Languages"
|
682 |
+
msgstr "Contient un mélange de langues"
|
683 |
+
|
684 |
+
#: crayon_settings_wp.class.php:644
|
685 |
+
#@ crayon-syntax-highlighter
|
686 |
+
msgid "Hide Log"
|
687 |
+
msgstr "Cacher Connexion"
|
688 |
+
|
689 |
#. translators: plugin header field 'Version'
|
690 |
#: crayon_wp.class.php:0
|
691 |
#@ crayon-syntax-highlighter
|
692 |
+
msgid "1.7.26"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: crayon_formatter.class.php:205
|
696 |
+
#, php-format
|
697 |
#@ crayon-syntax-highlighter
|
698 |
+
msgid "Press %s to Copy, %s to Paste"
|
699 |
+
msgstr "Presse %s à Copier, Coller à %s"
|
700 |
|
trans/crayon-syntax-highlighter-it_IT.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-it_IT.po
CHANGED
@@ -420,11 +420,6 @@ msgstr "Crayon Aiuto"
|
|
420 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
|
422 |
|
423 |
-
#: crayon_settings_wp.class.php:618
|
424 |
-
#@ crayon-syntax-highlighter
|
425 |
-
msgid "Why?"
|
426 |
-
msgstr "Perché?"
|
427 |
-
|
428 |
#: crayon_settings_wp.class.php:504
|
429 |
#, php-format
|
430 |
#@ crayon-syntax-highlighter
|
@@ -468,6 +463,7 @@ msgstr "Cattura tag <pre> come Crayons"
|
|
468 |
#: crayon_settings_wp.class.php:600
|
469 |
#: crayon_settings_wp.class.php:601
|
470 |
#: crayon_settings_wp.class.php:602
|
|
|
471 |
#: crayon_settings_wp.class.php:619
|
472 |
#@ crayon-syntax-highlighter
|
473 |
msgid "Learn More"
|
@@ -655,14 +651,50 @@ msgstr "Pastelli carico solo dalla query principale Wordpress"
|
|
655 |
msgid "Translators"
|
656 |
msgstr "Traduttori"
|
657 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
658 |
#. translators: plugin header field 'Version'
|
659 |
#: crayon_wp.class.php:0
|
660 |
#@ crayon-syntax-highlighter
|
661 |
-
msgid "1.7.
|
662 |
msgstr ""
|
663 |
|
664 |
-
#:
|
|
|
665 |
#@ crayon-syntax-highlighter
|
666 |
-
msgid "
|
667 |
-
msgstr "
|
668 |
|
420 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
421 |
msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
|
422 |
|
|
|
|
|
|
|
|
|
|
|
423 |
#: crayon_settings_wp.class.php:504
|
424 |
#, php-format
|
425 |
#@ crayon-syntax-highlighter
|
463 |
#: crayon_settings_wp.class.php:600
|
464 |
#: crayon_settings_wp.class.php:601
|
465 |
#: crayon_settings_wp.class.php:602
|
466 |
+
#: crayon_settings_wp.class.php:618
|
467 |
#: crayon_settings_wp.class.php:619
|
468 |
#@ crayon-syntax-highlighter
|
469 |
msgid "Learn More"
|
651 |
msgid "Translators"
|
652 |
msgstr "Traduttori"
|
653 |
|
654 |
+
#: util/theme-editor/editor.php:16
|
655 |
+
#@ crayon-syntax-highlighter
|
656 |
+
msgid "Back To Settings"
|
657 |
+
msgstr "Torna in Impostazioni"
|
658 |
+
|
659 |
+
#: crayon_formatter.class.php:203
|
660 |
+
#@ crayon-syntax-highlighter
|
661 |
+
msgid "Toggle Plain Code"
|
662 |
+
msgstr "Alterna Codice Pianura"
|
663 |
+
|
664 |
+
#: crayon_formatter.class.php:205
|
665 |
+
#@ crayon-syntax-highlighter
|
666 |
+
msgid "Copy Plain Code"
|
667 |
+
msgstr "Copia il codice di Pianura"
|
668 |
+
|
669 |
+
#: crayon_formatter.class.php:211
|
670 |
+
#@ crayon-syntax-highlighter
|
671 |
+
msgid "Open Code In New Window"
|
672 |
+
msgstr "Codice Apri in una nuova finestra"
|
673 |
+
|
674 |
+
#: crayon_formatter.class.php:214
|
675 |
+
#@ crayon-syntax-highlighter
|
676 |
+
msgid "Toggle Line Numbers"
|
677 |
+
msgstr "Numeri di riga passare"
|
678 |
+
|
679 |
+
#: crayon_formatter.class.php:221
|
680 |
+
#@ crayon-syntax-highlighter
|
681 |
+
msgid "Contains Mixed Languages"
|
682 |
+
msgstr "Contiene lingue miste"
|
683 |
+
|
684 |
+
#: crayon_settings_wp.class.php:644
|
685 |
+
#@ crayon-syntax-highlighter
|
686 |
+
msgid "Hide Log"
|
687 |
+
msgstr "Nascondi Log"
|
688 |
+
|
689 |
#. translators: plugin header field 'Version'
|
690 |
#: crayon_wp.class.php:0
|
691 |
#@ crayon-syntax-highlighter
|
692 |
+
msgid "1.7.26"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: crayon_formatter.class.php:205
|
696 |
+
#, php-format
|
697 |
#@ crayon-syntax-highlighter
|
698 |
+
msgid "Press %s to Copy, %s to Paste"
|
699 |
+
msgstr "Stampa %s per Copia, Incolla per %s"
|
700 |
|
trans/crayon-syntax-highlighter-ja.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-ja.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Crayon Syntax Highlighter v1.6.3\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -13,655 +13,687 @@ msgstr ""
|
|
13 |
"X-Poedit-Language: Japanese\n"
|
14 |
"X-Poedit-Country: JAPAN\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
-
"X-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_settings.class.php:101
|
23 |
#@ crayon-syntax-highlighter
|
|
|
24 |
msgid "Hourly"
|
25 |
msgstr "毎時間"
|
26 |
|
27 |
-
#: crayon_settings.class.php:101
|
28 |
#@ crayon-syntax-highlighter
|
|
|
29 |
msgid "Daily"
|
30 |
msgstr "毎日"
|
31 |
|
32 |
-
#: crayon_settings.class.php:102
|
33 |
#@ crayon-syntax-highlighter
|
|
|
34 |
msgid "Weekly"
|
35 |
msgstr "毎週"
|
36 |
|
37 |
-
#: crayon_settings.class.php:102
|
38 |
#@ crayon-syntax-highlighter
|
|
|
39 |
msgid "Monthly"
|
40 |
msgstr "毎月"
|
41 |
|
42 |
-
#: crayon_settings.class.php:103
|
43 |
#@ crayon-syntax-highlighter
|
|
|
44 |
msgid "Immediately"
|
45 |
msgstr "直後に"
|
46 |
|
|
|
47 |
#: crayon_settings.class.php:130
|
48 |
#: crayon_settings.class.php:134
|
49 |
-
#@ crayon-syntax-highlighter
|
50 |
msgid "Max"
|
51 |
msgstr "最大"
|
52 |
|
|
|
53 |
#: crayon_settings.class.php:130
|
54 |
#: crayon_settings.class.php:134
|
55 |
-
#@ crayon-syntax-highlighter
|
56 |
msgid "Min"
|
57 |
msgstr "最小"
|
58 |
|
|
|
59 |
#: crayon_settings.class.php:130
|
60 |
#: crayon_settings.class.php:134
|
61 |
-
#@ crayon-syntax-highlighter
|
62 |
msgid "Static"
|
63 |
msgstr "固定"
|
64 |
|
|
|
65 |
#: crayon_settings.class.php:132
|
66 |
#: crayon_settings.class.php:136
|
67 |
-
#@ crayon-syntax-highlighter
|
68 |
msgid "Pixels"
|
69 |
msgstr "ピクセル"
|
70 |
|
|
|
71 |
#: crayon_settings.class.php:132
|
72 |
#: crayon_settings.class.php:136
|
73 |
-
#@ crayon-syntax-highlighter
|
74 |
msgid "Percent"
|
75 |
msgstr "パーセント"
|
76 |
|
77 |
-
#: crayon_settings.class.php:145
|
78 |
#@ crayon-syntax-highlighter
|
|
|
79 |
msgid "None"
|
80 |
msgstr "なし"
|
81 |
|
82 |
-
#: crayon_settings.class.php:145
|
83 |
#@ crayon-syntax-highlighter
|
|
|
84 |
msgid "Left"
|
85 |
msgstr "左"
|
86 |
|
87 |
-
#: crayon_settings.class.php:145
|
88 |
#@ crayon-syntax-highlighter
|
|
|
89 |
msgid "Center"
|
90 |
msgstr "中央"
|
91 |
|
92 |
-
#: crayon_settings.class.php:145
|
93 |
#@ crayon-syntax-highlighter
|
|
|
94 |
msgid "Right"
|
95 |
msgstr "右"
|
96 |
|
|
|
97 |
#: crayon_settings.class.php:147
|
98 |
#: crayon_settings.class.php:169
|
99 |
-
#@ crayon-syntax-highlighter
|
100 |
msgid "On MouseOver"
|
101 |
msgstr "マウスオーバー時"
|
102 |
|
|
|
103 |
#: crayon_settings.class.php:147
|
104 |
#: crayon_settings.class.php:153
|
105 |
-
#@ crayon-syntax-highlighter
|
106 |
msgid "Always"
|
107 |
msgstr "常に表示"
|
108 |
|
|
|
109 |
#: crayon_settings.class.php:147
|
110 |
#: crayon_settings.class.php:153
|
111 |
-
#@ crayon-syntax-highlighter
|
112 |
msgid "Never"
|
113 |
msgstr "表示しない"
|
114 |
|
115 |
-
#: crayon_settings.class.php:153
|
116 |
#@ crayon-syntax-highlighter
|
|
|
117 |
msgid "When Found"
|
118 |
msgstr "言語が判明した場合"
|
119 |
|
120 |
-
#: crayon_settings.class.php:169
|
121 |
#@ crayon-syntax-highlighter
|
|
|
122 |
msgid "On Double Click"
|
123 |
msgstr "ダブルクリック時"
|
124 |
|
125 |
-
#: crayon_settings.class.php:169
|
126 |
#@ crayon-syntax-highlighter
|
|
|
127 |
msgid "On Single Click"
|
128 |
msgstr "シングルクリック時"
|
129 |
|
130 |
-
#: crayon_settings.class.php:177
|
131 |
#@ crayon-syntax-highlighter
|
|
|
132 |
msgid "An error has occurred. Please try again later."
|
133 |
msgstr "エラーが発生しました。後でもう一度やり直してください。"
|
134 |
|
|
|
135 |
#: crayon_settings_wp.class.php:39
|
136 |
#: crayon_settings_wp.class.php:82
|
137 |
#: crayon_settings_wp.class.php:710
|
138 |
-
#@ crayon-syntax-highlighter
|
139 |
msgid "Settings"
|
140 |
msgstr "設定"
|
141 |
|
142 |
-
#: crayon_settings_wp.class.php:73
|
143 |
#@ crayon-syntax-highlighter
|
|
|
144 |
msgid "You do not have sufficient permissions to access this page."
|
145 |
msgstr "このページにアクセスするための十分な権限(パーミッション)がありません。"
|
146 |
|
147 |
-
#: crayon_settings_wp.class.php:94
|
148 |
#@ crayon-syntax-highlighter
|
|
|
149 |
msgid "Save Changes"
|
150 |
msgstr "変更を保存"
|
151 |
|
152 |
-
#: crayon_settings_wp.class.php:100
|
153 |
#@ crayon-syntax-highlighter
|
|
|
154 |
msgid "Reset Settings"
|
155 |
msgstr "リセット"
|
156 |
|
157 |
-
#: crayon_settings_wp.class.php:423
|
158 |
#@ crayon-syntax-highlighter
|
|
|
159 |
msgid "Crayon Help"
|
160 |
msgstr "Crayon ヘルプ"
|
161 |
|
162 |
-
#: crayon_settings_wp.class.php:437
|
163 |
#@ crayon-syntax-highlighter
|
|
|
164 |
msgid "Height"
|
165 |
msgstr "高さ"
|
166 |
|
167 |
-
#: crayon_settings_wp.class.php:443
|
168 |
#@ crayon-syntax-highlighter
|
|
|
169 |
msgid "Width"
|
170 |
msgstr "横幅"
|
171 |
|
172 |
-
#: crayon_settings_wp.class.php:449
|
173 |
#@ crayon-syntax-highlighter
|
|
|
174 |
msgid "Top Margin"
|
175 |
msgstr "上余白"
|
176 |
|
177 |
-
#: crayon_settings_wp.class.php:450
|
178 |
#@ crayon-syntax-highlighter
|
|
|
179 |
msgid "Bottom Margin"
|
180 |
msgstr "下余白"
|
181 |
|
|
|
182 |
#: crayon_settings_wp.class.php:451
|
183 |
#: crayon_settings_wp.class.php:456
|
184 |
-
#@ crayon-syntax-highlighter
|
185 |
msgid "Left Margin"
|
186 |
msgstr "左余白"
|
187 |
|
|
|
188 |
#: crayon_settings_wp.class.php:452
|
189 |
#: crayon_settings_wp.class.php:456
|
190 |
-
#@ crayon-syntax-highlighter
|
191 |
msgid "Right Margin"
|
192 |
msgstr "右余白"
|
193 |
|
194 |
-
#: crayon_settings_wp.class.php:462
|
195 |
#@ crayon-syntax-highlighter
|
|
|
196 |
msgid "Horizontal Alignment"
|
197 |
msgstr "回り込み"
|
198 |
|
199 |
-
#: crayon_settings_wp.class.php:465
|
200 |
#@ crayon-syntax-highlighter
|
|
|
201 |
msgid "Allow floating elements to surround Crayon"
|
202 |
msgstr "周りのfloat要素の回り込みを許可"
|
203 |
|
204 |
-
#: crayon_settings_wp.class.php:470
|
205 |
#@ crayon-syntax-highlighter
|
|
|
206 |
msgid "Display the Toolbar"
|
207 |
msgstr "ツールバーの表示"
|
208 |
|
209 |
-
#: crayon_settings_wp.class.php:473
|
210 |
#@ crayon-syntax-highlighter
|
|
|
211 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
212 |
msgstr "コードを押し下げるのではなく、コード上に重ねて表示"
|
213 |
|
214 |
-
#: crayon_settings_wp.class.php:474
|
215 |
#@ crayon-syntax-highlighter
|
|
|
216 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
217 |
msgstr "重ねて表示の場合にシングルクリックでツールバーを切り替える"
|
218 |
|
219 |
-
#: crayon_settings_wp.class.php:475
|
220 |
#@ crayon-syntax-highlighter
|
|
|
221 |
msgid "Delay hiding the toolbar on MouseOut"
|
222 |
msgstr "マウスアウト時にツールバーを隠すのを遅らせる"
|
223 |
|
224 |
-
#: crayon_settings_wp.class.php:477
|
225 |
#@ crayon-syntax-highlighter
|
|
|
226 |
msgid "Display the title when provided"
|
227 |
msgstr "タイトルがある時は表示"
|
228 |
|
229 |
-
#: crayon_settings_wp.class.php:478
|
230 |
#@ crayon-syntax-highlighter
|
|
|
231 |
msgid "Display the language"
|
232 |
msgstr "ソース言語を表示"
|
233 |
|
234 |
-
#: crayon_settings_wp.class.php:483
|
235 |
#@ crayon-syntax-highlighter
|
|
|
236 |
msgid "Display striped code lines"
|
237 |
msgstr "コード行を縞模様で表示する"
|
238 |
|
239 |
-
#: crayon_settings_wp.class.php:484
|
240 |
#@ crayon-syntax-highlighter
|
|
|
241 |
msgid "Enable line marking for important lines"
|
242 |
msgstr "重要な行にマーキングを有効にする"
|
243 |
|
244 |
-
#: crayon_settings_wp.class.php:485
|
245 |
#@ crayon-syntax-highlighter
|
|
|
246 |
msgid "Display line numbers by default"
|
247 |
msgstr "デフォルトで行番号を表示"
|
248 |
|
249 |
-
#: crayon_settings_wp.class.php:486
|
250 |
#@ crayon-syntax-highlighter
|
|
|
251 |
msgid "Enable line number toggling"
|
252 |
msgstr "行番号の切り替えを有効にする"
|
253 |
|
254 |
-
#: crayon_settings_wp.class.php:487
|
255 |
#@ crayon-syntax-highlighter
|
|
|
256 |
msgid "Start line numbers from"
|
257 |
msgstr "行番号の開始数字"
|
258 |
|
259 |
-
#: crayon_settings_wp.class.php:497
|
260 |
#@ crayon-syntax-highlighter
|
|
|
261 |
msgid "When no language is provided, use the fallback"
|
262 |
msgstr "ソース言語が提供されていない場合は、代替えを使用します。"
|
263 |
|
264 |
-
#: crayon_settings_wp.class.php:505
|
265 |
#@ crayon-syntax-highlighter
|
|
|
266 |
msgid "Parsing was successful"
|
267 |
msgstr "解析が成功しました。"
|
268 |
|
269 |
-
#: crayon_settings_wp.class.php:505
|
270 |
#@ crayon-syntax-highlighter
|
|
|
271 |
msgid "Parsing was unsuccessful"
|
272 |
msgstr "解析に失敗しました。"
|
273 |
|
|
|
274 |
#: crayon_settings_wp.class.php:511
|
275 |
#, php-format
|
276 |
-
#@ crayon-syntax-highlighter
|
277 |
msgid "The selected language with id %s could not be loaded"
|
278 |
msgstr "ID %s の選択したソース言語をロードできませんでした。"
|
279 |
|
280 |
-
#: crayon_settings_wp.class.php:515
|
281 |
#@ crayon-syntax-highlighter
|
|
|
282 |
msgid "Show Languages"
|
283 |
msgstr "ソース言語を表示する"
|
284 |
|
285 |
-
#: crayon_settings_wp.class.php:552
|
286 |
#@ crayon-syntax-highlighter
|
|
|
287 |
msgid "Enable Live Preview"
|
288 |
msgstr "リアルタイムのプレビューを有効にする"
|
289 |
|
|
|
290 |
#: crayon_settings_wp.class.php:557
|
291 |
#, php-format
|
292 |
-
#@ crayon-syntax-highlighter
|
293 |
msgid "The selected theme with id %s could not be loaded"
|
294 |
msgstr "ID %sの選択したテーマをロードできませんでした。"
|
295 |
|
296 |
-
#: crayon_settings_wp.class.php:575
|
297 |
#@ crayon-syntax-highlighter
|
|
|
298 |
msgid "Custom Font Size"
|
299 |
msgstr "フォントサイズ指定"
|
300 |
|
|
|
301 |
#: crayon_settings_wp.class.php:580
|
302 |
#, php-format
|
303 |
-
#@ crayon-syntax-highlighter
|
304 |
msgid "The selected font with id %s could not be loaded"
|
305 |
msgstr "ID %s の選択されたフォントをロードできませんでした。"
|
306 |
|
307 |
-
#: crayon_settings_wp.class.php:587
|
308 |
#@ crayon-syntax-highlighter
|
|
|
309 |
msgid "Enable plain code view and display"
|
310 |
msgstr "単純なコードビューを有効にする"
|
311 |
|
312 |
-
#: crayon_settings_wp.class.php:592
|
313 |
#@ crayon-syntax-highlighter
|
|
|
314 |
msgid "Enable code copy/paste"
|
315 |
msgstr "コードのコピー/貼り付けを有効にする"
|
316 |
|
317 |
-
#: crayon_settings_wp.class.php:594
|
318 |
#@ crayon-syntax-highlighter
|
|
|
319 |
msgid "Enable opening code in a window"
|
320 |
msgstr "新しいウインドウでコードを開くを有効にする"
|
321 |
|
322 |
-
#: crayon_settings_wp.class.php:596
|
323 |
#@ crayon-syntax-highlighter
|
|
|
324 |
msgid "Tab size in spaces"
|
325 |
msgstr "tab挿入の空白代替え数(単純コードビュー)"
|
326 |
|
327 |
-
#: crayon_settings_wp.class.php:598
|
328 |
#@ crayon-syntax-highlighter
|
|
|
329 |
msgid "Remove whitespace surrounding the shortcode content"
|
330 |
msgstr "ショートコードの内容を囲む空白の部分を削除します"
|
331 |
|
332 |
-
#: crayon_settings_wp.class.php:608
|
333 |
#@ crayon-syntax-highlighter
|
|
|
334 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
335 |
msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
|
336 |
|
337 |
-
#: crayon_settings_wp.class.php:615
|
338 |
#@ crayon-syntax-highlighter
|
|
|
339 |
msgid "Clear the cache used to store remote code requests"
|
340 |
msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
|
341 |
|
342 |
-
#: crayon_settings_wp.class.php:617
|
343 |
#@ crayon-syntax-highlighter
|
|
|
344 |
msgid "Clear Now"
|
345 |
msgstr "今すぐクリア"
|
346 |
|
347 |
-
#: crayon_settings_wp.class.php:618
|
348 |
#@ crayon-syntax-highlighter
|
|
|
349 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
350 |
msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
|
351 |
|
352 |
-
#: crayon_settings_wp.class.php:618
|
353 |
#@ crayon-syntax-highlighter
|
354 |
-
msgid "Why?"
|
355 |
-
msgstr "なぜ試みるのか?"
|
356 |
-
|
357 |
#: crayon_settings_wp.class.php:621
|
358 |
-
#@ crayon-syntax-highlighter
|
359 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
360 |
msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
|
361 |
|
362 |
-
#: crayon_settings_wp.class.php:622
|
363 |
#@ crayon-syntax-highlighter
|
|
|
364 |
msgid "Disable animations"
|
365 |
msgstr "アニメーションを無効にする"
|
366 |
|
367 |
-
#: crayon_settings_wp.class.php:623
|
368 |
#@ crayon-syntax-highlighter
|
|
|
369 |
msgid "Disable runtime stats"
|
370 |
msgstr "プログラム実行時の統計を無効にする"
|
371 |
|
372 |
-
#: crayon_settings_wp.class.php:630
|
373 |
#@ crayon-syntax-highlighter
|
|
|
374 |
msgid "Log errors for individual Crayons"
|
375 |
msgstr "個々設置(Crayon)のエラーを記録"
|
376 |
|
377 |
-
#: crayon_settings_wp.class.php:631
|
378 |
#@ crayon-syntax-highlighter
|
|
|
379 |
msgid "Log system-wide errors"
|
380 |
msgstr "システム全体のエラーを記録"
|
381 |
|
382 |
-
#: crayon_settings_wp.class.php:632
|
383 |
#@ crayon-syntax-highlighter
|
|
|
384 |
msgid "Display custom message for errors"
|
385 |
msgstr "カスタムエラーメッセージを表示する"
|
386 |
|
387 |
-
#: crayon_settings_wp.class.php:644
|
388 |
#@ crayon-syntax-highlighter
|
|
|
389 |
msgid "Show Log"
|
390 |
msgstr "ログを見る"
|
391 |
|
392 |
-
#: crayon_settings_wp.class.php:646
|
393 |
#@ crayon-syntax-highlighter
|
|
|
394 |
msgid "Clear Log"
|
395 |
msgstr "ログをクリア"
|
396 |
|
397 |
-
#: crayon_settings_wp.class.php:647
|
398 |
#@ crayon-syntax-highlighter
|
|
|
399 |
msgid "Email Admin"
|
400 |
msgstr "管理者にEメールを送信"
|
401 |
|
402 |
-
#: crayon_settings_wp.class.php:649
|
403 |
#@ crayon-syntax-highlighter
|
|
|
404 |
msgid "Email Developer"
|
405 |
msgstr "開発者にEメールを送信"
|
406 |
|
407 |
-
#: crayon_settings_wp.class.php:665
|
408 |
#@ crayon-syntax-highlighter
|
|
|
409 |
msgid "Version"
|
410 |
msgstr "バージョン"
|
411 |
|
412 |
-
#: crayon_settings_wp.class.php:667
|
413 |
#@ crayon-syntax-highlighter
|
|
|
414 |
msgid "Developer"
|
415 |
msgstr "開発者"
|
416 |
|
417 |
-
#: crayon_settings_wp.class.php:698
|
418 |
#@ crayon-syntax-highlighter
|
|
|
419 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
420 |
msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
|
421 |
|
|
|
422 |
#: crayon_settings_wp.class.php:549
|
423 |
#, php-format
|
424 |
-
#@ crayon-syntax-highlighter
|
425 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
426 |
msgstr "サンプルコードを変更するには、%1$sfallback language(代替え言語)%2$sを変更て下さい。5行目から7行目はマークされます。"
|
427 |
|
|
|
428 |
#: crayon_settings_wp.class.php:504
|
429 |
#, php-format
|
430 |
-
#@ crayon-syntax-highlighter
|
431 |
msgid "%d language has been detected."
|
432 |
msgid_plural "%d languages have been detected."
|
433 |
msgstr[0] "%dのソース言語が検出されてます。"
|
|
|
434 |
|
435 |
-
#: crayon_settings_wp.class.php:599
|
436 |
#@ crayon-syntax-highlighter
|
|
|
437 |
msgid "Capture <pre> tags as Crayons"
|
438 |
msgstr "Crayonsとして<pre>タグをキャプチャ"
|
439 |
|
440 |
-
#: crayon_settings_wp.class.php:611
|
441 |
#@ crayon-syntax-highlighter
|
|
|
442 |
msgid "Followed by your relative URL."
|
443 |
msgstr "相対URLが続きます。"
|
444 |
|
445 |
-
#: crayon_settings_wp.class.php:651
|
446 |
#@ crayon-syntax-highlighter
|
|
|
447 |
msgid "The log is currently empty."
|
448 |
msgstr "ログは現在空です。"
|
449 |
|
450 |
-
#: crayon_settings_wp.class.php:653
|
451 |
#@ crayon-syntax-highlighter
|
|
|
452 |
msgid "The log file exists and is writable."
|
453 |
msgstr "ログファイルは存在し、書き込み可能です。"
|
454 |
|
455 |
-
#: crayon_settings_wp.class.php:653
|
456 |
#@ crayon-syntax-highlighter
|
|
|
457 |
msgid "The log file exists and is not writable."
|
458 |
msgstr "ログファイルは存在するが、書き込み可能ではありません。"
|
459 |
|
460 |
-
#: crayon_settings_wp.class.php:655
|
461 |
#@ crayon-syntax-highlighter
|
|
|
462 |
msgid "The log file does not exist and is not writable."
|
463 |
msgstr "ログファイルが存在しないので書き込むことが出来ません。"
|
464 |
|
|
|
465 |
#: crayon_settings_wp.class.php:554
|
466 |
#: crayon_settings_wp.class.php:583
|
467 |
#: crayon_settings_wp.class.php:600
|
468 |
#: crayon_settings_wp.class.php:601
|
469 |
#: crayon_settings_wp.class.php:602
|
|
|
470 |
#: crayon_settings_wp.class.php:619
|
471 |
-
#@ crayon-syntax-highlighter
|
472 |
msgid "Learn More"
|
473 |
msgstr "詳細はこちら"
|
474 |
|
475 |
-
#: crayon_settings_wp.class.php:603
|
476 |
#@ crayon-syntax-highlighter
|
|
|
477 |
msgid "Show Mixed Language Icon (+)"
|
478 |
msgstr "混合言語のアイコンを(+)を表示"
|
479 |
|
480 |
-
#: crayon_settings_wp.class.php:602
|
481 |
#@ crayon-syntax-highlighter
|
|
|
482 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
483 |
msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
|
484 |
|
485 |
-
#: crayon_settings_wp.class.php:600
|
486 |
#@ crayon-syntax-highlighter
|
|
|
487 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
488 |
msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
|
489 |
|
490 |
-
#: crayon_settings_wp.class.php:601
|
491 |
#@ crayon-syntax-highlighter
|
|
|
492 |
msgid "Enable [plain][/plain] tag."
|
493 |
msgstr "[plain][/plain]タグを有効にします。"
|
494 |
|
495 |
-
#: crayon_settings.class.php:169
|
496 |
#@ crayon-syntax-highlighter
|
|
|
497 |
msgid "Disable Mouse Events"
|
498 |
msgstr "マウスイベントを無効にする"
|
499 |
|
500 |
-
#: crayon_settings_wp.class.php:590
|
501 |
#@ crayon-syntax-highlighter
|
|
|
502 |
msgid "Enable plain code toggling"
|
503 |
msgstr "単純なコードの切り替えを有効にする"
|
504 |
|
505 |
-
#: crayon_settings_wp.class.php:591
|
506 |
#@ crayon-syntax-highlighter
|
|
|
507 |
msgid "Show the plain code by default"
|
508 |
msgstr "デフォルトでプレインコードを表示する"
|
509 |
|
|
|
510 |
#. translators: plugin header field 'Name'
|
511 |
#: crayon_wp.class.php:0
|
512 |
-
#@ crayon-syntax-highlighter
|
513 |
msgid "Crayon Syntax Highlighter"
|
514 |
msgstr ""
|
515 |
|
|
|
516 |
#. translators: plugin header field 'PluginURI'
|
517 |
#: crayon_wp.class.php:0
|
518 |
-
#@ crayon-syntax-highlighter
|
519 |
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
520 |
msgstr ""
|
521 |
|
|
|
522 |
#. translators: plugin header field 'Description'
|
523 |
#: crayon_wp.class.php:0
|
524 |
-
#@ crayon-syntax-highlighter
|
525 |
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
526 |
msgstr "URL、ローカルファイルまたはポストのテキストからハイライト複数の言語、テーマを、サポートしています。"
|
527 |
|
|
|
528 |
#. translators: plugin header field 'Author'
|
529 |
#: crayon_wp.class.php:0
|
530 |
-
#@ crayon-syntax-highlighter
|
531 |
msgid "Aram Kocharyan"
|
532 |
msgstr ""
|
533 |
|
|
|
534 |
#. translators: plugin header field 'AuthorURI'
|
535 |
#: crayon_wp.class.php:0
|
536 |
-
#@ crayon-syntax-highlighter
|
537 |
msgid "http://ak.net84.net/"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: crayon_settings_wp.class.php:714
|
541 |
#@ crayon-syntax-highlighter
|
|
|
542 |
msgid "Donate"
|
543 |
msgstr "寄付する"
|
544 |
|
545 |
-
#: crayon_settings_wp.class.php:219
|
546 |
#@ crayon-syntax-highlighter
|
|
|
547 |
msgid "General"
|
548 |
-
msgstr "
|
549 |
|
550 |
-
#: crayon_settings_wp.class.php:220
|
551 |
#@ crayon-syntax-highlighter
|
|
|
552 |
msgid "Theme"
|
553 |
msgstr "テーマ"
|
554 |
|
555 |
-
#: crayon_settings_wp.class.php:221
|
556 |
#@ crayon-syntax-highlighter
|
|
|
557 |
msgid "Font"
|
558 |
-
msgstr "
|
559 |
|
560 |
-
#: crayon_settings_wp.class.php:222
|
561 |
#@ crayon-syntax-highlighter
|
|
|
562 |
msgid "Metrics"
|
563 |
-
msgstr "
|
564 |
|
565 |
-
#: crayon_settings_wp.class.php:223
|
566 |
#@ crayon-syntax-highlighter
|
|
|
567 |
msgid "Toolbar"
|
568 |
msgstr "ツールバー"
|
569 |
|
570 |
-
#: crayon_settings_wp.class.php:224
|
571 |
#@ crayon-syntax-highlighter
|
|
|
572 |
msgid "Lines"
|
573 |
msgstr "行"
|
574 |
|
575 |
-
#: crayon_settings_wp.class.php:225
|
576 |
#@ crayon-syntax-highlighter
|
|
|
577 |
msgid "Code"
|
578 |
-
msgstr "
|
579 |
|
580 |
-
#: crayon_settings_wp.class.php:226
|
581 |
#@ crayon-syntax-highlighter
|
|
|
582 |
msgid "Languages"
|
583 |
-
msgstr "
|
584 |
|
585 |
-
#: crayon_settings_wp.class.php:227
|
586 |
#@ crayon-syntax-highlighter
|
|
|
587 |
msgid "Files"
|
588 |
-
msgstr "
|
589 |
|
590 |
-
#: crayon_settings_wp.class.php:228
|
591 |
#@ crayon-syntax-highlighter
|
|
|
592 |
msgid "Misc"
|
593 |
msgstr "その他"
|
594 |
|
595 |
-
#: crayon_settings_wp.class.php:231
|
596 |
#@ crayon-syntax-highlighter
|
|
|
597 |
msgid "Debug"
|
598 |
msgstr "デバッグ"
|
599 |
|
600 |
-
#: crayon_settings_wp.class.php:232
|
601 |
#@ crayon-syntax-highlighter
|
|
|
602 |
msgid "Errors"
|
603 |
msgstr "エラー"
|
604 |
|
605 |
-
#: crayon_settings_wp.class.php:233
|
606 |
#@ crayon-syntax-highlighter
|
|
|
607 |
msgid "Log"
|
608 |
-
msgstr "
|
609 |
|
610 |
-
#: crayon_settings_wp.class.php:236
|
611 |
#@ crayon-syntax-highlighter
|
|
|
612 |
msgid "About"
|
613 |
-
msgstr "について"
|
614 |
|
615 |
-
#: crayon_settings_wp.class.php:554
|
616 |
#@ crayon-syntax-highlighter
|
|
|
617 |
msgid "Enqueue themes in the header (more efficient)."
|
618 |
-
msgstr "
|
619 |
|
620 |
-
#: crayon_settings_wp.class.php:583
|
621 |
#@ crayon-syntax-highlighter
|
|
|
622 |
msgid "Enqueue fonts in the header (more efficient)."
|
623 |
-
msgstr "
|
624 |
|
625 |
-
#: crayon_settings_wp.class.php:545
|
626 |
#@ crayon-syntax-highlighter
|
|
|
627 |
msgid "Loading..."
|
628 |
-
msgstr "
|
629 |
|
|
|
630 |
#: crayon_settings_wp.class.php:545
|
631 |
#: crayon_settings_wp.class.php:712
|
632 |
#: util/theme-editor/editor.php:14
|
633 |
-
#@ crayon-syntax-highlighter
|
634 |
msgid "Theme Editor"
|
635 |
msgstr "テーマエディタ"
|
636 |
|
637 |
-
#: crayon_settings_wp.class.php:595
|
638 |
#@ crayon-syntax-highlighter
|
|
|
639 |
msgid "Always display scrollbars"
|
640 |
msgstr "常にスクロールバーを表示する"
|
641 |
|
642 |
-
#: crayon_settings_wp.class.php:619
|
643 |
#@ crayon-syntax-highlighter
|
|
|
644 |
msgid "Disable enqueuing for page templates that may contain The Loop."
|
645 |
msgstr "ループを含む可能性のあるページテンプレートのエンキューを無効にします。"
|
646 |
|
647 |
-
#: crayon_settings_wp.class.php:620
|
648 |
#@ crayon-syntax-highlighter
|
|
|
649 |
msgid "Load Crayons only from the main Wordpress query"
|
650 |
msgstr "唯一の主要なWordpressのクエリからロードクレヨン"
|
651 |
|
652 |
-
#: crayon_settings_wp.class.php:668
|
653 |
#@ crayon-syntax-highlighter
|
|
|
654 |
msgid "Translators"
|
655 |
msgstr "翻訳者"
|
656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
#. translators: plugin header field 'Version'
|
658 |
#: crayon_wp.class.php:0
|
659 |
-
|
660 |
-
msgid "1.7.25"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: util/theme-editor/editor.php:16
|
664 |
#@ crayon-syntax-highlighter
|
665 |
-
|
666 |
-
|
|
|
|
|
667 |
|
3 |
"Project-Id-Version: Crayon Syntax Highlighter v1.6.3\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2012-02-07 20:00+0900\n"
|
7 |
+
"Last-Translator: Mitsumi Kudo <kudo@3samurai.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"X-Poedit-Language: Japanese\n"
|
14 |
"X-Poedit-Country: JAPAN\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
20 |
|
|
|
21 |
#@ crayon-syntax-highlighter
|
22 |
+
#: crayon_settings.class.php:101
|
23 |
msgid "Hourly"
|
24 |
msgstr "毎時間"
|
25 |
|
|
|
26 |
#@ crayon-syntax-highlighter
|
27 |
+
#: crayon_settings.class.php:101
|
28 |
msgid "Daily"
|
29 |
msgstr "毎日"
|
30 |
|
|
|
31 |
#@ crayon-syntax-highlighter
|
32 |
+
#: crayon_settings.class.php:102
|
33 |
msgid "Weekly"
|
34 |
msgstr "毎週"
|
35 |
|
|
|
36 |
#@ crayon-syntax-highlighter
|
37 |
+
#: crayon_settings.class.php:102
|
38 |
msgid "Monthly"
|
39 |
msgstr "毎月"
|
40 |
|
|
|
41 |
#@ crayon-syntax-highlighter
|
42 |
+
#: crayon_settings.class.php:103
|
43 |
msgid "Immediately"
|
44 |
msgstr "直後に"
|
45 |
|
46 |
+
#@ crayon-syntax-highlighter
|
47 |
#: crayon_settings.class.php:130
|
48 |
#: crayon_settings.class.php:134
|
|
|
49 |
msgid "Max"
|
50 |
msgstr "最大"
|
51 |
|
52 |
+
#@ crayon-syntax-highlighter
|
53 |
#: crayon_settings.class.php:130
|
54 |
#: crayon_settings.class.php:134
|
|
|
55 |
msgid "Min"
|
56 |
msgstr "最小"
|
57 |
|
58 |
+
#@ crayon-syntax-highlighter
|
59 |
#: crayon_settings.class.php:130
|
60 |
#: crayon_settings.class.php:134
|
|
|
61 |
msgid "Static"
|
62 |
msgstr "固定"
|
63 |
|
64 |
+
#@ crayon-syntax-highlighter
|
65 |
#: crayon_settings.class.php:132
|
66 |
#: crayon_settings.class.php:136
|
|
|
67 |
msgid "Pixels"
|
68 |
msgstr "ピクセル"
|
69 |
|
70 |
+
#@ crayon-syntax-highlighter
|
71 |
#: crayon_settings.class.php:132
|
72 |
#: crayon_settings.class.php:136
|
|
|
73 |
msgid "Percent"
|
74 |
msgstr "パーセント"
|
75 |
|
|
|
76 |
#@ crayon-syntax-highlighter
|
77 |
+
#: crayon_settings.class.php:145
|
78 |
msgid "None"
|
79 |
msgstr "なし"
|
80 |
|
|
|
81 |
#@ crayon-syntax-highlighter
|
82 |
+
#: crayon_settings.class.php:145
|
83 |
msgid "Left"
|
84 |
msgstr "左"
|
85 |
|
|
|
86 |
#@ crayon-syntax-highlighter
|
87 |
+
#: crayon_settings.class.php:145
|
88 |
msgid "Center"
|
89 |
msgstr "中央"
|
90 |
|
|
|
91 |
#@ crayon-syntax-highlighter
|
92 |
+
#: crayon_settings.class.php:145
|
93 |
msgid "Right"
|
94 |
msgstr "右"
|
95 |
|
96 |
+
#@ crayon-syntax-highlighter
|
97 |
#: crayon_settings.class.php:147
|
98 |
#: crayon_settings.class.php:169
|
|
|
99 |
msgid "On MouseOver"
|
100 |
msgstr "マウスオーバー時"
|
101 |
|
102 |
+
#@ crayon-syntax-highlighter
|
103 |
#: crayon_settings.class.php:147
|
104 |
#: crayon_settings.class.php:153
|
|
|
105 |
msgid "Always"
|
106 |
msgstr "常に表示"
|
107 |
|
108 |
+
#@ crayon-syntax-highlighter
|
109 |
#: crayon_settings.class.php:147
|
110 |
#: crayon_settings.class.php:153
|
|
|
111 |
msgid "Never"
|
112 |
msgstr "表示しない"
|
113 |
|
|
|
114 |
#@ crayon-syntax-highlighter
|
115 |
+
#: crayon_settings.class.php:153
|
116 |
msgid "When Found"
|
117 |
msgstr "言語が判明した場合"
|
118 |
|
|
|
119 |
#@ crayon-syntax-highlighter
|
120 |
+
#: crayon_settings.class.php:169
|
121 |
msgid "On Double Click"
|
122 |
msgstr "ダブルクリック時"
|
123 |
|
|
|
124 |
#@ crayon-syntax-highlighter
|
125 |
+
#: crayon_settings.class.php:169
|
126 |
msgid "On Single Click"
|
127 |
msgstr "シングルクリック時"
|
128 |
|
|
|
129 |
#@ crayon-syntax-highlighter
|
130 |
+
#: crayon_settings.class.php:177
|
131 |
msgid "An error has occurred. Please try again later."
|
132 |
msgstr "エラーが発生しました。後でもう一度やり直してください。"
|
133 |
|
134 |
+
#@ crayon-syntax-highlighter
|
135 |
#: crayon_settings_wp.class.php:39
|
136 |
#: crayon_settings_wp.class.php:82
|
137 |
#: crayon_settings_wp.class.php:710
|
|
|
138 |
msgid "Settings"
|
139 |
msgstr "設定"
|
140 |
|
|
|
141 |
#@ crayon-syntax-highlighter
|
142 |
+
#: crayon_settings_wp.class.php:73
|
143 |
msgid "You do not have sufficient permissions to access this page."
|
144 |
msgstr "このページにアクセスするための十分な権限(パーミッション)がありません。"
|
145 |
|
|
|
146 |
#@ crayon-syntax-highlighter
|
147 |
+
#: crayon_settings_wp.class.php:94
|
148 |
msgid "Save Changes"
|
149 |
msgstr "変更を保存"
|
150 |
|
|
|
151 |
#@ crayon-syntax-highlighter
|
152 |
+
#: crayon_settings_wp.class.php:100
|
153 |
msgid "Reset Settings"
|
154 |
msgstr "リセット"
|
155 |
|
|
|
156 |
#@ crayon-syntax-highlighter
|
157 |
+
#: crayon_settings_wp.class.php:423
|
158 |
msgid "Crayon Help"
|
159 |
msgstr "Crayon ヘルプ"
|
160 |
|
|
|
161 |
#@ crayon-syntax-highlighter
|
162 |
+
#: crayon_settings_wp.class.php:437
|
163 |
msgid "Height"
|
164 |
msgstr "高さ"
|
165 |
|
|
|
166 |
#@ crayon-syntax-highlighter
|
167 |
+
#: crayon_settings_wp.class.php:443
|
168 |
msgid "Width"
|
169 |
msgstr "横幅"
|
170 |
|
|
|
171 |
#@ crayon-syntax-highlighter
|
172 |
+
#: crayon_settings_wp.class.php:449
|
173 |
msgid "Top Margin"
|
174 |
msgstr "上余白"
|
175 |
|
|
|
176 |
#@ crayon-syntax-highlighter
|
177 |
+
#: crayon_settings_wp.class.php:450
|
178 |
msgid "Bottom Margin"
|
179 |
msgstr "下余白"
|
180 |
|
181 |
+
#@ crayon-syntax-highlighter
|
182 |
#: crayon_settings_wp.class.php:451
|
183 |
#: crayon_settings_wp.class.php:456
|
|
|
184 |
msgid "Left Margin"
|
185 |
msgstr "左余白"
|
186 |
|
187 |
+
#@ crayon-syntax-highlighter
|
188 |
#: crayon_settings_wp.class.php:452
|
189 |
#: crayon_settings_wp.class.php:456
|
|
|
190 |
msgid "Right Margin"
|
191 |
msgstr "右余白"
|
192 |
|
|
|
193 |
#@ crayon-syntax-highlighter
|
194 |
+
#: crayon_settings_wp.class.php:462
|
195 |
msgid "Horizontal Alignment"
|
196 |
msgstr "回り込み"
|
197 |
|
|
|
198 |
#@ crayon-syntax-highlighter
|
199 |
+
#: crayon_settings_wp.class.php:465
|
200 |
msgid "Allow floating elements to surround Crayon"
|
201 |
msgstr "周りのfloat要素の回り込みを許可"
|
202 |
|
|
|
203 |
#@ crayon-syntax-highlighter
|
204 |
+
#: crayon_settings_wp.class.php:470
|
205 |
msgid "Display the Toolbar"
|
206 |
msgstr "ツールバーの表示"
|
207 |
|
|
|
208 |
#@ crayon-syntax-highlighter
|
209 |
+
#: crayon_settings_wp.class.php:473
|
210 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
211 |
msgstr "コードを押し下げるのではなく、コード上に重ねて表示"
|
212 |
|
|
|
213 |
#@ crayon-syntax-highlighter
|
214 |
+
#: crayon_settings_wp.class.php:474
|
215 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
216 |
msgstr "重ねて表示の場合にシングルクリックでツールバーを切り替える"
|
217 |
|
|
|
218 |
#@ crayon-syntax-highlighter
|
219 |
+
#: crayon_settings_wp.class.php:475
|
220 |
msgid "Delay hiding the toolbar on MouseOut"
|
221 |
msgstr "マウスアウト時にツールバーを隠すのを遅らせる"
|
222 |
|
|
|
223 |
#@ crayon-syntax-highlighter
|
224 |
+
#: crayon_settings_wp.class.php:477
|
225 |
msgid "Display the title when provided"
|
226 |
msgstr "タイトルがある時は表示"
|
227 |
|
|
|
228 |
#@ crayon-syntax-highlighter
|
229 |
+
#: crayon_settings_wp.class.php:478
|
230 |
msgid "Display the language"
|
231 |
msgstr "ソース言語を表示"
|
232 |
|
|
|
233 |
#@ crayon-syntax-highlighter
|
234 |
+
#: crayon_settings_wp.class.php:483
|
235 |
msgid "Display striped code lines"
|
236 |
msgstr "コード行を縞模様で表示する"
|
237 |
|
|
|
238 |
#@ crayon-syntax-highlighter
|
239 |
+
#: crayon_settings_wp.class.php:484
|
240 |
msgid "Enable line marking for important lines"
|
241 |
msgstr "重要な行にマーキングを有効にする"
|
242 |
|
|
|
243 |
#@ crayon-syntax-highlighter
|
244 |
+
#: crayon_settings_wp.class.php:485
|
245 |
msgid "Display line numbers by default"
|
246 |
msgstr "デフォルトで行番号を表示"
|
247 |
|
|
|
248 |
#@ crayon-syntax-highlighter
|
249 |
+
#: crayon_settings_wp.class.php:486
|
250 |
msgid "Enable line number toggling"
|
251 |
msgstr "行番号の切り替えを有効にする"
|
252 |
|
|
|
253 |
#@ crayon-syntax-highlighter
|
254 |
+
#: crayon_settings_wp.class.php:487
|
255 |
msgid "Start line numbers from"
|
256 |
msgstr "行番号の開始数字"
|
257 |
|
|
|
258 |
#@ crayon-syntax-highlighter
|
259 |
+
#: crayon_settings_wp.class.php:497
|
260 |
msgid "When no language is provided, use the fallback"
|
261 |
msgstr "ソース言語が提供されていない場合は、代替えを使用します。"
|
262 |
|
|
|
263 |
#@ crayon-syntax-highlighter
|
264 |
+
#: crayon_settings_wp.class.php:505
|
265 |
msgid "Parsing was successful"
|
266 |
msgstr "解析が成功しました。"
|
267 |
|
|
|
268 |
#@ crayon-syntax-highlighter
|
269 |
+
#: crayon_settings_wp.class.php:505
|
270 |
msgid "Parsing was unsuccessful"
|
271 |
msgstr "解析に失敗しました。"
|
272 |
|
273 |
+
#@ crayon-syntax-highlighter
|
274 |
#: crayon_settings_wp.class.php:511
|
275 |
#, php-format
|
|
|
276 |
msgid "The selected language with id %s could not be loaded"
|
277 |
msgstr "ID %s の選択したソース言語をロードできませんでした。"
|
278 |
|
|
|
279 |
#@ crayon-syntax-highlighter
|
280 |
+
#: crayon_settings_wp.class.php:515
|
281 |
msgid "Show Languages"
|
282 |
msgstr "ソース言語を表示する"
|
283 |
|
|
|
284 |
#@ crayon-syntax-highlighter
|
285 |
+
#: crayon_settings_wp.class.php:552
|
286 |
msgid "Enable Live Preview"
|
287 |
msgstr "リアルタイムのプレビューを有効にする"
|
288 |
|
289 |
+
#@ crayon-syntax-highlighter
|
290 |
#: crayon_settings_wp.class.php:557
|
291 |
#, php-format
|
|
|
292 |
msgid "The selected theme with id %s could not be loaded"
|
293 |
msgstr "ID %sの選択したテーマをロードできませんでした。"
|
294 |
|
|
|
295 |
#@ crayon-syntax-highlighter
|
296 |
+
#: crayon_settings_wp.class.php:575
|
297 |
msgid "Custom Font Size"
|
298 |
msgstr "フォントサイズ指定"
|
299 |
|
300 |
+
#@ crayon-syntax-highlighter
|
301 |
#: crayon_settings_wp.class.php:580
|
302 |
#, php-format
|
|
|
303 |
msgid "The selected font with id %s could not be loaded"
|
304 |
msgstr "ID %s の選択されたフォントをロードできませんでした。"
|
305 |
|
|
|
306 |
#@ crayon-syntax-highlighter
|
307 |
+
#: crayon_settings_wp.class.php:587
|
308 |
msgid "Enable plain code view and display"
|
309 |
msgstr "単純なコードビューを有効にする"
|
310 |
|
|
|
311 |
#@ crayon-syntax-highlighter
|
312 |
+
#: crayon_settings_wp.class.php:592
|
313 |
msgid "Enable code copy/paste"
|
314 |
msgstr "コードのコピー/貼り付けを有効にする"
|
315 |
|
|
|
316 |
#@ crayon-syntax-highlighter
|
317 |
+
#: crayon_settings_wp.class.php:594
|
318 |
msgid "Enable opening code in a window"
|
319 |
msgstr "新しいウインドウでコードを開くを有効にする"
|
320 |
|
|
|
321 |
#@ crayon-syntax-highlighter
|
322 |
+
#: crayon_settings_wp.class.php:596
|
323 |
msgid "Tab size in spaces"
|
324 |
msgstr "tab挿入の空白代替え数(単純コードビュー)"
|
325 |
|
|
|
326 |
#@ crayon-syntax-highlighter
|
327 |
+
#: crayon_settings_wp.class.php:598
|
328 |
msgid "Remove whitespace surrounding the shortcode content"
|
329 |
msgstr "ショートコードの内容を囲む空白の部分を削除します"
|
330 |
|
|
|
331 |
#@ crayon-syntax-highlighter
|
332 |
+
#: crayon_settings_wp.class.php:608
|
333 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
334 |
msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
|
335 |
|
|
|
336 |
#@ crayon-syntax-highlighter
|
337 |
+
#: crayon_settings_wp.class.php:615
|
338 |
msgid "Clear the cache used to store remote code requests"
|
339 |
msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
|
340 |
|
|
|
341 |
#@ crayon-syntax-highlighter
|
342 |
+
#: crayon_settings_wp.class.php:617
|
343 |
msgid "Clear Now"
|
344 |
msgstr "今すぐクリア"
|
345 |
|
|
|
346 |
#@ crayon-syntax-highlighter
|
347 |
+
#: crayon_settings_wp.class.php:618
|
348 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
349 |
msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
|
350 |
|
|
|
351 |
#@ crayon-syntax-highlighter
|
|
|
|
|
|
|
352 |
#: crayon_settings_wp.class.php:621
|
|
|
353 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
354 |
msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
|
355 |
|
|
|
356 |
#@ crayon-syntax-highlighter
|
357 |
+
#: crayon_settings_wp.class.php:622
|
358 |
msgid "Disable animations"
|
359 |
msgstr "アニメーションを無効にする"
|
360 |
|
|
|
361 |
#@ crayon-syntax-highlighter
|
362 |
+
#: crayon_settings_wp.class.php:623
|
363 |
msgid "Disable runtime stats"
|
364 |
msgstr "プログラム実行時の統計を無効にする"
|
365 |
|
|
|
366 |
#@ crayon-syntax-highlighter
|
367 |
+
#: crayon_settings_wp.class.php:630
|
368 |
msgid "Log errors for individual Crayons"
|
369 |
msgstr "個々設置(Crayon)のエラーを記録"
|
370 |
|
|
|
371 |
#@ crayon-syntax-highlighter
|
372 |
+
#: crayon_settings_wp.class.php:631
|
373 |
msgid "Log system-wide errors"
|
374 |
msgstr "システム全体のエラーを記録"
|
375 |
|
|
|
376 |
#@ crayon-syntax-highlighter
|
377 |
+
#: crayon_settings_wp.class.php:632
|
378 |
msgid "Display custom message for errors"
|
379 |
msgstr "カスタムエラーメッセージを表示する"
|
380 |
|
|
|
381 |
#@ crayon-syntax-highlighter
|
382 |
+
#: crayon_settings_wp.class.php:644
|
383 |
msgid "Show Log"
|
384 |
msgstr "ログを見る"
|
385 |
|
|
|
386 |
#@ crayon-syntax-highlighter
|
387 |
+
#: crayon_settings_wp.class.php:646
|
388 |
msgid "Clear Log"
|
389 |
msgstr "ログをクリア"
|
390 |
|
|
|
391 |
#@ crayon-syntax-highlighter
|
392 |
+
#: crayon_settings_wp.class.php:647
|
393 |
msgid "Email Admin"
|
394 |
msgstr "管理者にEメールを送信"
|
395 |
|
|
|
396 |
#@ crayon-syntax-highlighter
|
397 |
+
#: crayon_settings_wp.class.php:649
|
398 |
msgid "Email Developer"
|
399 |
msgstr "開発者にEメールを送信"
|
400 |
|
|
|
401 |
#@ crayon-syntax-highlighter
|
402 |
+
#: crayon_settings_wp.class.php:665
|
403 |
msgid "Version"
|
404 |
msgstr "バージョン"
|
405 |
|
|
|
406 |
#@ crayon-syntax-highlighter
|
407 |
+
#: crayon_settings_wp.class.php:667
|
408 |
msgid "Developer"
|
409 |
msgstr "開発者"
|
410 |
|
|
|
411 |
#@ crayon-syntax-highlighter
|
412 |
+
#: crayon_settings_wp.class.php:698
|
413 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
414 |
msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
|
415 |
|
416 |
+
#@ crayon-syntax-highlighter
|
417 |
#: crayon_settings_wp.class.php:549
|
418 |
#, php-format
|
|
|
419 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
420 |
msgstr "サンプルコードを変更するには、%1$sfallback language(代替え言語)%2$sを変更て下さい。5行目から7行目はマークされます。"
|
421 |
|
422 |
+
#@ crayon-syntax-highlighter
|
423 |
#: crayon_settings_wp.class.php:504
|
424 |
#, php-format
|
|
|
425 |
msgid "%d language has been detected."
|
426 |
msgid_plural "%d languages have been detected."
|
427 |
msgstr[0] "%dのソース言語が検出されてます。"
|
428 |
+
msgstr[1] "%dのソース言語が検出されてます。"
|
429 |
|
|
|
430 |
#@ crayon-syntax-highlighter
|
431 |
+
#: crayon_settings_wp.class.php:599
|
432 |
msgid "Capture <pre> tags as Crayons"
|
433 |
msgstr "Crayonsとして<pre>タグをキャプチャ"
|
434 |
|
|
|
435 |
#@ crayon-syntax-highlighter
|
436 |
+
#: crayon_settings_wp.class.php:611
|
437 |
msgid "Followed by your relative URL."
|
438 |
msgstr "相対URLが続きます。"
|
439 |
|
|
|
440 |
#@ crayon-syntax-highlighter
|
441 |
+
#: crayon_settings_wp.class.php:651
|
442 |
msgid "The log is currently empty."
|
443 |
msgstr "ログは現在空です。"
|
444 |
|
|
|
445 |
#@ crayon-syntax-highlighter
|
446 |
+
#: crayon_settings_wp.class.php:653
|
447 |
msgid "The log file exists and is writable."
|
448 |
msgstr "ログファイルは存在し、書き込み可能です。"
|
449 |
|
|
|
450 |
#@ crayon-syntax-highlighter
|
451 |
+
#: crayon_settings_wp.class.php:653
|
452 |
msgid "The log file exists and is not writable."
|
453 |
msgstr "ログファイルは存在するが、書き込み可能ではありません。"
|
454 |
|
|
|
455 |
#@ crayon-syntax-highlighter
|
456 |
+
#: crayon_settings_wp.class.php:655
|
457 |
msgid "The log file does not exist and is not writable."
|
458 |
msgstr "ログファイルが存在しないので書き込むことが出来ません。"
|
459 |
|
460 |
+
#@ crayon-syntax-highlighter
|
461 |
#: crayon_settings_wp.class.php:554
|
462 |
#: crayon_settings_wp.class.php:583
|
463 |
#: crayon_settings_wp.class.php:600
|
464 |
#: crayon_settings_wp.class.php:601
|
465 |
#: crayon_settings_wp.class.php:602
|
466 |
+
#: crayon_settings_wp.class.php:618
|
467 |
#: crayon_settings_wp.class.php:619
|
|
|
468 |
msgid "Learn More"
|
469 |
msgstr "詳細はこちら"
|
470 |
|
|
|
471 |
#@ crayon-syntax-highlighter
|
472 |
+
#: crayon_settings_wp.class.php:603
|
473 |
msgid "Show Mixed Language Icon (+)"
|
474 |
msgstr "混合言語のアイコンを(+)を表示"
|
475 |
|
|
|
476 |
#@ crayon-syntax-highlighter
|
477 |
+
#: crayon_settings_wp.class.php:602
|
478 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
479 |
msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
|
480 |
|
|
|
481 |
#@ crayon-syntax-highlighter
|
482 |
+
#: crayon_settings_wp.class.php:600
|
483 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
484 |
msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
|
485 |
|
|
|
486 |
#@ crayon-syntax-highlighter
|
487 |
+
#: crayon_settings_wp.class.php:601
|
488 |
msgid "Enable [plain][/plain] tag."
|
489 |
msgstr "[plain][/plain]タグを有効にします。"
|
490 |
|
|
|
491 |
#@ crayon-syntax-highlighter
|
492 |
+
#: crayon_settings.class.php:169
|
493 |
msgid "Disable Mouse Events"
|
494 |
msgstr "マウスイベントを無効にする"
|
495 |
|
|
|
496 |
#@ crayon-syntax-highlighter
|
497 |
+
#: crayon_settings_wp.class.php:590
|
498 |
msgid "Enable plain code toggling"
|
499 |
msgstr "単純なコードの切り替えを有効にする"
|
500 |
|
|
|
501 |
#@ crayon-syntax-highlighter
|
502 |
+
#: crayon_settings_wp.class.php:591
|
503 |
msgid "Show the plain code by default"
|
504 |
msgstr "デフォルトでプレインコードを表示する"
|
505 |
|
506 |
+
#@ crayon-syntax-highlighter
|
507 |
#. translators: plugin header field 'Name'
|
508 |
#: crayon_wp.class.php:0
|
|
|
509 |
msgid "Crayon Syntax Highlighter"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#@ crayon-syntax-highlighter
|
513 |
#. translators: plugin header field 'PluginURI'
|
514 |
#: crayon_wp.class.php:0
|
|
|
515 |
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#@ crayon-syntax-highlighter
|
519 |
#. translators: plugin header field 'Description'
|
520 |
#: crayon_wp.class.php:0
|
|
|
521 |
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
522 |
msgstr "URL、ローカルファイルまたはポストのテキストからハイライト複数の言語、テーマを、サポートしています。"
|
523 |
|
524 |
+
#@ crayon-syntax-highlighter
|
525 |
#. translators: plugin header field 'Author'
|
526 |
#: crayon_wp.class.php:0
|
|
|
527 |
msgid "Aram Kocharyan"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#@ crayon-syntax-highlighter
|
531 |
#. translators: plugin header field 'AuthorURI'
|
532 |
#: crayon_wp.class.php:0
|
|
|
533 |
msgid "http://ak.net84.net/"
|
534 |
msgstr ""
|
535 |
|
|
|
536 |
#@ crayon-syntax-highlighter
|
537 |
+
#: crayon_settings_wp.class.php:714
|
538 |
msgid "Donate"
|
539 |
msgstr "寄付する"
|
540 |
|
|
|
541 |
#@ crayon-syntax-highlighter
|
542 |
+
#: crayon_settings_wp.class.php:219
|
543 |
msgid "General"
|
544 |
+
msgstr "一般設定"
|
545 |
|
|
|
546 |
#@ crayon-syntax-highlighter
|
547 |
+
#: crayon_settings_wp.class.php:220
|
548 |
msgid "Theme"
|
549 |
msgstr "テーマ"
|
550 |
|
|
|
551 |
#@ crayon-syntax-highlighter
|
552 |
+
#: crayon_settings_wp.class.php:221
|
553 |
msgid "Font"
|
554 |
+
msgstr "フォント"
|
555 |
|
|
|
556 |
#@ crayon-syntax-highlighter
|
557 |
+
#: crayon_settings_wp.class.php:222
|
558 |
msgid "Metrics"
|
559 |
+
msgstr "サイズ"
|
560 |
|
|
|
561 |
#@ crayon-syntax-highlighter
|
562 |
+
#: crayon_settings_wp.class.php:223
|
563 |
msgid "Toolbar"
|
564 |
msgstr "ツールバー"
|
565 |
|
|
|
566 |
#@ crayon-syntax-highlighter
|
567 |
+
#: crayon_settings_wp.class.php:224
|
568 |
msgid "Lines"
|
569 |
msgstr "行"
|
570 |
|
|
|
571 |
#@ crayon-syntax-highlighter
|
572 |
+
#: crayon_settings_wp.class.php:225
|
573 |
msgid "Code"
|
574 |
+
msgstr "コード"
|
575 |
|
|
|
576 |
#@ crayon-syntax-highlighter
|
577 |
+
#: crayon_settings_wp.class.php:226
|
578 |
msgid "Languages"
|
579 |
+
msgstr "プログラム言語"
|
580 |
|
|
|
581 |
#@ crayon-syntax-highlighter
|
582 |
+
#: crayon_settings_wp.class.php:227
|
583 |
msgid "Files"
|
584 |
+
msgstr "読込ファイル"
|
585 |
|
|
|
586 |
#@ crayon-syntax-highlighter
|
587 |
+
#: crayon_settings_wp.class.php:228
|
588 |
msgid "Misc"
|
589 |
msgstr "その他"
|
590 |
|
|
|
591 |
#@ crayon-syntax-highlighter
|
592 |
+
#: crayon_settings_wp.class.php:231
|
593 |
msgid "Debug"
|
594 |
msgstr "デバッグ"
|
595 |
|
|
|
596 |
#@ crayon-syntax-highlighter
|
597 |
+
#: crayon_settings_wp.class.php:232
|
598 |
msgid "Errors"
|
599 |
msgstr "エラー"
|
600 |
|
|
|
601 |
#@ crayon-syntax-highlighter
|
602 |
+
#: crayon_settings_wp.class.php:233
|
603 |
msgid "Log"
|
604 |
+
msgstr "ログファイル"
|
605 |
|
|
|
606 |
#@ crayon-syntax-highlighter
|
607 |
+
#: crayon_settings_wp.class.php:236
|
608 |
msgid "About"
|
609 |
+
msgstr "Crayonについて"
|
610 |
|
|
|
611 |
#@ crayon-syntax-highlighter
|
612 |
+
#: crayon_settings_wp.class.php:554
|
613 |
msgid "Enqueue themes in the header (more efficient)."
|
614 |
+
msgstr "ヘッダー内のエンキューテーマ(より効率的)"
|
615 |
|
|
|
616 |
#@ crayon-syntax-highlighter
|
617 |
+
#: crayon_settings_wp.class.php:583
|
618 |
msgid "Enqueue fonts in the header (more efficient)."
|
619 |
+
msgstr "ヘッダー内のエンキューフォント(より効率的)"
|
620 |
|
|
|
621 |
#@ crayon-syntax-highlighter
|
622 |
+
#: crayon_settings_wp.class.php:545
|
623 |
msgid "Loading..."
|
624 |
+
msgstr "ロード中..."
|
625 |
|
626 |
+
#@ crayon-syntax-highlighter
|
627 |
#: crayon_settings_wp.class.php:545
|
628 |
#: crayon_settings_wp.class.php:712
|
629 |
#: util/theme-editor/editor.php:14
|
|
|
630 |
msgid "Theme Editor"
|
631 |
msgstr "テーマエディタ"
|
632 |
|
|
|
633 |
#@ crayon-syntax-highlighter
|
634 |
+
#: crayon_settings_wp.class.php:595
|
635 |
msgid "Always display scrollbars"
|
636 |
msgstr "常にスクロールバーを表示する"
|
637 |
|
|
|
638 |
#@ crayon-syntax-highlighter
|
639 |
+
#: crayon_settings_wp.class.php:619
|
640 |
msgid "Disable enqueuing for page templates that may contain The Loop."
|
641 |
msgstr "ループを含む可能性のあるページテンプレートのエンキューを無効にします。"
|
642 |
|
|
|
643 |
#@ crayon-syntax-highlighter
|
644 |
+
#: crayon_settings_wp.class.php:620
|
645 |
msgid "Load Crayons only from the main Wordpress query"
|
646 |
msgstr "唯一の主要なWordpressのクエリからロードクレヨン"
|
647 |
|
|
|
648 |
#@ crayon-syntax-highlighter
|
649 |
+
#: crayon_settings_wp.class.php:668
|
650 |
msgid "Translators"
|
651 |
msgstr "翻訳者"
|
652 |
|
653 |
+
#@ crayon-syntax-highlighter
|
654 |
+
#: util/theme-editor/editor.php:16
|
655 |
+
msgid "Back To Settings"
|
656 |
+
msgstr "設定を戻す"
|
657 |
+
|
658 |
+
#@ crayon-syntax-highlighter
|
659 |
+
#: crayon_formatter.class.php:203
|
660 |
+
msgid "Toggle Plain Code"
|
661 |
+
msgstr "ハイライト表示ON/OFF"
|
662 |
+
|
663 |
+
#@ crayon-syntax-highlighter
|
664 |
+
#: crayon_formatter.class.php:205
|
665 |
+
msgid "Copy Plain Code"
|
666 |
+
msgstr "コードをコピー"
|
667 |
+
|
668 |
+
#@ crayon-syntax-highlighter
|
669 |
+
#: crayon_formatter.class.php:211
|
670 |
+
msgid "Open Code In New Window"
|
671 |
+
msgstr "新しいウィンドウでコードを開く"
|
672 |
+
|
673 |
+
#@ crayon-syntax-highlighter
|
674 |
+
#: crayon_formatter.class.php:214
|
675 |
+
msgid "Toggle Line Numbers"
|
676 |
+
msgstr "行番号ON/OFF"
|
677 |
+
|
678 |
+
#@ crayon-syntax-highlighter
|
679 |
+
#: crayon_formatter.class.php:221
|
680 |
+
msgid "Contains Mixed Languages"
|
681 |
+
msgstr "言語が混在しています"
|
682 |
+
|
683 |
+
#@ crayon-syntax-highlighter
|
684 |
+
#: crayon_settings_wp.class.php:644
|
685 |
+
msgid "Hide Log"
|
686 |
+
msgstr "ログを隠す"
|
687 |
+
|
688 |
+
#@ crayon-syntax-highlighter
|
689 |
#. translators: plugin header field 'Version'
|
690 |
#: crayon_wp.class.php:0
|
691 |
+
msgid "1.7.26"
|
|
|
692 |
msgstr ""
|
693 |
|
|
|
694 |
#@ crayon-syntax-highlighter
|
695 |
+
#: crayon_formatter.class.php:205
|
696 |
+
#, php-format
|
697 |
+
msgid "Press %s to Copy, %s to Paste"
|
698 |
+
msgstr "貼り付けにコピー、%sに%sを押して、"
|
699 |
|
trans/crayon-syntax-highlighter-ru_RU.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-ru_RU.po
CHANGED
@@ -652,14 +652,50 @@ msgstr "Нагрузка Мелки только из основного зап
|
|
652 |
msgid "Translators"
|
653 |
msgstr "Переводчики"
|
654 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
#. translators: plugin header field 'Version'
|
656 |
#: crayon_wp.class.php:0
|
657 |
#@ crayon-syntax-highlighter
|
658 |
-
msgid "1.7.
|
659 |
msgstr ""
|
660 |
|
661 |
-
#:
|
|
|
662 |
#@ crayon-syntax-highlighter
|
663 |
-
msgid "
|
664 |
-
msgstr "
|
665 |
|
652 |
msgid "Translators"
|
653 |
msgstr "Переводчики"
|
654 |
|
655 |
+
#: util/theme-editor/editor.php:16
|
656 |
+
#@ crayon-syntax-highlighter
|
657 |
+
msgid "Back To Settings"
|
658 |
+
msgstr "Вернуться к настройкам"
|
659 |
+
|
660 |
+
#: crayon_formatter.class.php:203
|
661 |
+
#@ crayon-syntax-highlighter
|
662 |
+
msgid "Toggle Plain Code"
|
663 |
+
msgstr "Переключить Обычная кодекса"
|
664 |
+
|
665 |
+
#: crayon_formatter.class.php:205
|
666 |
+
#@ crayon-syntax-highlighter
|
667 |
+
msgid "Copy Plain Code"
|
668 |
+
msgstr "Скопируйте Обычная кодекса"
|
669 |
+
|
670 |
+
#: crayon_formatter.class.php:211
|
671 |
+
#@ crayon-syntax-highlighter
|
672 |
+
msgid "Open Code In New Window"
|
673 |
+
msgstr "Открытый код откроется в новом окне"
|
674 |
+
|
675 |
+
#: crayon_formatter.class.php:214
|
676 |
+
#@ crayon-syntax-highlighter
|
677 |
+
msgid "Toggle Line Numbers"
|
678 |
+
msgstr "Переключение нумерации строк"
|
679 |
+
|
680 |
+
#: crayon_formatter.class.php:221
|
681 |
+
#@ crayon-syntax-highlighter
|
682 |
+
msgid "Contains Mixed Languages"
|
683 |
+
msgstr "Содержит Смешанные Языки"
|
684 |
+
|
685 |
+
#: crayon_settings_wp.class.php:644
|
686 |
+
#@ crayon-syntax-highlighter
|
687 |
+
msgid "Hide Log"
|
688 |
+
msgstr "Скрыть Вход"
|
689 |
+
|
690 |
#. translators: plugin header field 'Version'
|
691 |
#: crayon_wp.class.php:0
|
692 |
#@ crayon-syntax-highlighter
|
693 |
+
msgid "1.7.26"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: crayon_formatter.class.php:205
|
697 |
+
#, php-format
|
698 |
#@ crayon-syntax-highlighter
|
699 |
+
msgid "Press %s to Copy, %s to Paste"
|
700 |
+
msgstr "Пресс %s до Копировать, Вставить, чтобы %s"
|
701 |
|
trans/crayon-syntax-highlighter-tr_TR.mo
ADDED
Binary file
|
trans/crayon-syntax-highlighter-tr_TR.po
ADDED
@@ -0,0 +1,699 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: crayon-syntax-highlighter\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-12-10 17:11+1000\n"
|
6 |
+
"PO-Revision-Date: 2012-02-03 05:58+0200\n"
|
7 |
+
"Last-Translator: kazancexpert <kazancexpert@gmail.com>\n"
|
8 |
+
"Language-Team: kazancexpert <kazancexpert@gmail.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: Turkish\n"
|
14 |
+
"X-Poedit-Country: TURKEY\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
+
"X-Poedit-SearchPath-0: ..\n"
|
20 |
+
|
21 |
+
#@ crayon-syntax-highlighter
|
22 |
+
#: crayon_settings.class.php:130
|
23 |
+
#: crayon_settings.class.php:134
|
24 |
+
msgid "Max"
|
25 |
+
msgstr "Max"
|
26 |
+
|
27 |
+
#@ crayon-syntax-highlighter
|
28 |
+
#: crayon_settings.class.php:130
|
29 |
+
#: crayon_settings.class.php:134
|
30 |
+
msgid "Min"
|
31 |
+
msgstr "Min"
|
32 |
+
|
33 |
+
#@ crayon-syntax-highlighter
|
34 |
+
#: crayon_settings.class.php:130
|
35 |
+
#: crayon_settings.class.php:134
|
36 |
+
msgid "Static"
|
37 |
+
msgstr "Sabit"
|
38 |
+
|
39 |
+
#@ crayon-syntax-highlighter
|
40 |
+
#: crayon_settings.class.php:132
|
41 |
+
#: crayon_settings.class.php:136
|
42 |
+
msgid "Pixels"
|
43 |
+
msgstr "Piksel"
|
44 |
+
|
45 |
+
#@ crayon-syntax-highlighter
|
46 |
+
#: crayon_settings.class.php:132
|
47 |
+
#: crayon_settings.class.php:136
|
48 |
+
msgid "Percent"
|
49 |
+
msgstr "Yüzde"
|
50 |
+
|
51 |
+
#@ crayon-syntax-highlighter
|
52 |
+
#: crayon_settings.class.php:145
|
53 |
+
msgid "None"
|
54 |
+
msgstr "Yok"
|
55 |
+
|
56 |
+
#@ crayon-syntax-highlighter
|
57 |
+
#: crayon_settings.class.php:145
|
58 |
+
msgid "Left"
|
59 |
+
msgstr "Sol"
|
60 |
+
|
61 |
+
#@ crayon-syntax-highlighter
|
62 |
+
#: crayon_settings.class.php:145
|
63 |
+
msgid "Center"
|
64 |
+
msgstr "Merkez"
|
65 |
+
|
66 |
+
#@ crayon-syntax-highlighter
|
67 |
+
#: crayon_settings.class.php:145
|
68 |
+
msgid "Right"
|
69 |
+
msgstr "Sağ"
|
70 |
+
|
71 |
+
#@ crayon-syntax-highlighter
|
72 |
+
#: crayon_settings.class.php:147
|
73 |
+
#: crayon_settings.class.php:169
|
74 |
+
msgid "On MouseOver"
|
75 |
+
msgstr "Fare Üstündeyken"
|
76 |
+
|
77 |
+
#@ crayon-syntax-highlighter
|
78 |
+
#: crayon_settings.class.php:147
|
79 |
+
#: crayon_settings.class.php:153
|
80 |
+
msgid "Always"
|
81 |
+
msgstr "Herzaman"
|
82 |
+
|
83 |
+
#@ crayon-syntax-highlighter
|
84 |
+
#: crayon_settings.class.php:147
|
85 |
+
#: crayon_settings.class.php:153
|
86 |
+
msgid "Never"
|
87 |
+
msgstr "Asla"
|
88 |
+
|
89 |
+
#@ crayon-syntax-highlighter
|
90 |
+
#: crayon_settings.class.php:153
|
91 |
+
msgid "When Found"
|
92 |
+
msgstr "Bulunduğunda"
|
93 |
+
|
94 |
+
#@ crayon-syntax-highlighter
|
95 |
+
#: crayon_settings.class.php:169
|
96 |
+
msgid "On Double Click"
|
97 |
+
msgstr "Çift Tık ile aç"
|
98 |
+
|
99 |
+
#@ crayon-syntax-highlighter
|
100 |
+
#: crayon_settings.class.php:169
|
101 |
+
msgid "On Single Click"
|
102 |
+
msgstr "Tek Tık ile aç"
|
103 |
+
|
104 |
+
#@ crayon-syntax-highlighter
|
105 |
+
#: crayon_settings.class.php:177
|
106 |
+
msgid "An error has occurred. Please try again later."
|
107 |
+
msgstr "Bir hata meydana geldi. Daha sonra tekrar deneyin."
|
108 |
+
|
109 |
+
#@ crayon-syntax-highlighter
|
110 |
+
#: crayon_settings_wp.class.php:39
|
111 |
+
#: crayon_settings_wp.class.php:82
|
112 |
+
#: crayon_settings_wp.class.php:710
|
113 |
+
msgid "Settings"
|
114 |
+
msgstr "Ayarlar"
|
115 |
+
|
116 |
+
#@ crayon-syntax-highlighter
|
117 |
+
#: crayon_settings_wp.class.php:73
|
118 |
+
msgid "You do not have sufficient permissions to access this page."
|
119 |
+
msgstr "Bu sayfaya erişmek için yeterli izinlere sahip değilsiniz."
|
120 |
+
|
121 |
+
#@ crayon-syntax-highlighter
|
122 |
+
#: crayon_settings_wp.class.php:94
|
123 |
+
msgid "Save Changes"
|
124 |
+
msgstr "Kaydet"
|
125 |
+
|
126 |
+
#@ crayon-syntax-highlighter
|
127 |
+
#: crayon_settings_wp.class.php:100
|
128 |
+
msgid "Reset Settings"
|
129 |
+
msgstr "Ayarları Sıfırla"
|
130 |
+
|
131 |
+
#@ crayon-syntax-highlighter
|
132 |
+
#: crayon_settings_wp.class.php:437
|
133 |
+
msgid "Height"
|
134 |
+
msgstr "Yükseklik"
|
135 |
+
|
136 |
+
#@ crayon-syntax-highlighter
|
137 |
+
#: crayon_settings_wp.class.php:443
|
138 |
+
msgid "Width"
|
139 |
+
msgstr "Genişlik"
|
140 |
+
|
141 |
+
#@ crayon-syntax-highlighter
|
142 |
+
#: crayon_settings_wp.class.php:449
|
143 |
+
msgid "Top Margin"
|
144 |
+
msgstr "Üst Boşluk"
|
145 |
+
|
146 |
+
#@ crayon-syntax-highlighter
|
147 |
+
#: crayon_settings_wp.class.php:450
|
148 |
+
msgid "Bottom Margin"
|
149 |
+
msgstr "Alt Boşluk"
|
150 |
+
|
151 |
+
#@ crayon-syntax-highlighter
|
152 |
+
#: crayon_settings_wp.class.php:451
|
153 |
+
#: crayon_settings_wp.class.php:456
|
154 |
+
msgid "Left Margin"
|
155 |
+
msgstr "Sol Boşluk"
|
156 |
+
|
157 |
+
#@ crayon-syntax-highlighter
|
158 |
+
#: crayon_settings_wp.class.php:452
|
159 |
+
#: crayon_settings_wp.class.php:456
|
160 |
+
msgid "Right Margin"
|
161 |
+
msgstr "Sağ Boşluk"
|
162 |
+
|
163 |
+
#@ crayon-syntax-highlighter
|
164 |
+
#: crayon_settings_wp.class.php:462
|
165 |
+
msgid "Horizontal Alignment"
|
166 |
+
msgstr "Yatay Hizalama"
|
167 |
+
|
168 |
+
#@ crayon-syntax-highlighter
|
169 |
+
#: crayon_settings_wp.class.php:465
|
170 |
+
msgid "Allow floating elements to surround Crayon"
|
171 |
+
msgstr "Geçişli elementleri Crayon çevrelemeye izin ver"
|
172 |
+
|
173 |
+
#@ crayon-syntax-highlighter
|
174 |
+
#: crayon_settings_wp.class.php:470
|
175 |
+
msgid "Display the Toolbar"
|
176 |
+
msgstr "Araç çubuğunu göster"
|
177 |
+
|
178 |
+
#@ crayon-syntax-highlighter
|
179 |
+
#: crayon_settings_wp.class.php:473
|
180 |
+
msgid "Overlay the toolbar on code rather than push it down when possible"
|
181 |
+
msgstr "Araç çubuğunu mümkünse kodları aşağı itmek yerine üstte göster"
|
182 |
+
|
183 |
+
#@ crayon-syntax-highlighter
|
184 |
+
#: crayon_settings_wp.class.php:474
|
185 |
+
msgid "Toggle the toolbar on single click when it is overlayed"
|
186 |
+
msgstr "Araç çubuğu üste çıktığında tek tıkla gizle"
|
187 |
+
|
188 |
+
#@ crayon-syntax-highlighter
|
189 |
+
#: crayon_settings_wp.class.php:475
|
190 |
+
msgid "Delay hiding the toolbar on MouseOut"
|
191 |
+
msgstr "Fare dışa çıktığında araç çubuğunu gizlemek için bekle"
|
192 |
+
|
193 |
+
#@ crayon-syntax-highlighter
|
194 |
+
#: crayon_settings_wp.class.php:477
|
195 |
+
msgid "Display the title when provided"
|
196 |
+
msgstr "Varsa başlığı görüntüle"
|
197 |
+
|
198 |
+
#@ crayon-syntax-highlighter
|
199 |
+
#: crayon_settings_wp.class.php:478
|
200 |
+
msgid "Display the language"
|
201 |
+
msgstr "Dilleri göster"
|
202 |
+
|
203 |
+
#@ crayon-syntax-highlighter
|
204 |
+
#: crayon_settings_wp.class.php:483
|
205 |
+
msgid "Display striped code lines"
|
206 |
+
msgstr "Şeritli kod satırını göster"
|
207 |
+
|
208 |
+
#@ crayon-syntax-highlighter
|
209 |
+
#: crayon_settings_wp.class.php:484
|
210 |
+
msgid "Enable line marking for important lines"
|
211 |
+
msgstr "Önemli satırlar için satır işaretleme etkin"
|
212 |
+
|
213 |
+
#@ crayon-syntax-highlighter
|
214 |
+
#: crayon_settings_wp.class.php:485
|
215 |
+
msgid "Display line numbers by default"
|
216 |
+
msgstr "Varsayılan olarak satır numaralarını göster"
|
217 |
+
|
218 |
+
#@ crayon-syntax-highlighter
|
219 |
+
#: crayon_settings_wp.class.php:486
|
220 |
+
msgid "Enable line number toggling"
|
221 |
+
msgstr "Satır numaraları geçişi etkin"
|
222 |
+
|
223 |
+
#@ crayon-syntax-highlighter
|
224 |
+
#: crayon_settings_wp.class.php:487
|
225 |
+
msgid "Start line numbers from"
|
226 |
+
msgstr "Satır numarasını buradan başlat"
|
227 |
+
|
228 |
+
#@ crayon-syntax-highlighter
|
229 |
+
#: crayon_settings_wp.class.php:497
|
230 |
+
msgid "When no language is provided, use the fallback"
|
231 |
+
msgstr "Belirlenmiş bir dil olmadığında son çareyi kullan"
|
232 |
+
|
233 |
+
#@ crayon-syntax-highlighter
|
234 |
+
#: crayon_settings_wp.class.php:505
|
235 |
+
msgid "Parsing was successful"
|
236 |
+
msgstr "Ayrıştırma başarılı"
|
237 |
+
|
238 |
+
#@ crayon-syntax-highlighter
|
239 |
+
#: crayon_settings_wp.class.php:505
|
240 |
+
msgid "Parsing was unsuccessful"
|
241 |
+
msgstr "Ayrıştırma başarılı değil"
|
242 |
+
|
243 |
+
#@ crayon-syntax-highlighter
|
244 |
+
#: crayon_settings_wp.class.php:511
|
245 |
+
#, php-format
|
246 |
+
msgid "The selected language with id %s could not be loaded"
|
247 |
+
msgstr "ID %s ile seçilen dil yüklenemedi"
|
248 |
+
|
249 |
+
#@ crayon-syntax-highlighter
|
250 |
+
#: crayon_settings_wp.class.php:515
|
251 |
+
msgid "Show Languages"
|
252 |
+
msgstr "Dilleri Göster"
|
253 |
+
|
254 |
+
#@ crayon-syntax-highlighter
|
255 |
+
#: crayon_settings_wp.class.php:552
|
256 |
+
msgid "Enable Live Preview"
|
257 |
+
msgstr "Ön izleme etkin"
|
258 |
+
|
259 |
+
#@ crayon-syntax-highlighter
|
260 |
+
#: crayon_settings_wp.class.php:557
|
261 |
+
#, php-format
|
262 |
+
msgid "The selected theme with id %s could not be loaded"
|
263 |
+
msgstr "ID %s ile seçilen tema yüklenemedi"
|
264 |
+
|
265 |
+
#@ crayon-syntax-highlighter
|
266 |
+
#: crayon_settings_wp.class.php:575
|
267 |
+
msgid "Custom Font Size"
|
268 |
+
msgstr "Kişisel Font Boyutu"
|
269 |
+
|
270 |
+
#@ crayon-syntax-highlighter
|
271 |
+
#: crayon_settings_wp.class.php:580
|
272 |
+
#, php-format
|
273 |
+
msgid "The selected font with id %s could not be loaded"
|
274 |
+
msgstr "ID %s ile seçilen font yüklenemedi"
|
275 |
+
|
276 |
+
#@ crayon-syntax-highlighter
|
277 |
+
#: crayon_settings_wp.class.php:587
|
278 |
+
msgid "Enable plain code view and display"
|
279 |
+
msgstr "Düz kod görünümü ve görüntüleme etkin"
|
280 |
+
|
281 |
+
#@ crayon-syntax-highlighter
|
282 |
+
#: crayon_settings_wp.class.php:592
|
283 |
+
msgid "Enable code copy/paste"
|
284 |
+
msgstr "Kod kopyala/yapıştır etkin"
|
285 |
+
|
286 |
+
#@ crayon-syntax-highlighter
|
287 |
+
#: crayon_settings_wp.class.php:594
|
288 |
+
msgid "Enable opening code in a window"
|
289 |
+
msgstr "Kodları bir pencerede açma etkin"
|
290 |
+
|
291 |
+
#@ crayon-syntax-highlighter
|
292 |
+
#: crayon_settings_wp.class.php:596
|
293 |
+
msgid "Tab size in spaces"
|
294 |
+
msgstr "Boşluk sekme boyutu"
|
295 |
+
|
296 |
+
#@ crayon-syntax-highlighter
|
297 |
+
#: crayon_settings_wp.class.php:598
|
298 |
+
msgid "Remove whitespace surrounding the shortcode content"
|
299 |
+
msgstr "Kısakod içeriğini çevreleyen beyaz alanları kaldır"
|
300 |
+
|
301 |
+
#@ crayon-syntax-highlighter
|
302 |
+
#: crayon_settings_wp.class.php:608
|
303 |
+
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
304 |
+
msgstr "Yerel dosyalar yüklendiği ve URL için bağlantılı yol verildiğinde, kesin yolu kullan"
|
305 |
+
|
306 |
+
#@ crayon-syntax-highlighter
|
307 |
+
#: crayon_settings_wp.class.php:615
|
308 |
+
msgid "Clear the cache used to store remote code requests"
|
309 |
+
msgstr "Uzak kod isteklerini depolamak için ön belleği temizle"
|
310 |
+
|
311 |
+
#@ crayon-syntax-highlighter
|
312 |
+
#: crayon_settings_wp.class.php:617
|
313 |
+
msgid "Clear Now"
|
314 |
+
msgstr "Şimdi Temizle"
|
315 |
+
|
316 |
+
#@ crayon-syntax-highlighter
|
317 |
+
#: crayon_settings_wp.class.php:621
|
318 |
+
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
319 |
+
msgstr "Dokunmatik cihazlar için fare hareketlerini devre dışı bırak (örn. Fare Üzerinde)"
|
320 |
+
|
321 |
+
#@ crayon-syntax-highlighter
|
322 |
+
#: crayon_settings_wp.class.php:622
|
323 |
+
msgid "Disable animations"
|
324 |
+
msgstr "Animasyonlar devre dışı"
|
325 |
+
|
326 |
+
#@ crayon-syntax-highlighter
|
327 |
+
#: crayon_settings_wp.class.php:623
|
328 |
+
msgid "Disable runtime stats"
|
329 |
+
msgstr "İşlem istatistikleri devre dışı"
|
330 |
+
|
331 |
+
#@ crayon-syntax-highlighter
|
332 |
+
#: crayon_settings_wp.class.php:630
|
333 |
+
msgid "Log errors for individual Crayons"
|
334 |
+
msgstr "Özgün Crayons hataları günlükle"
|
335 |
+
|
336 |
+
#@ crayon-syntax-highlighter
|
337 |
+
#: crayon_settings_wp.class.php:631
|
338 |
+
msgid "Log system-wide errors"
|
339 |
+
msgstr "Sistem-geneli hataları günlükle"
|
340 |
+
|
341 |
+
#@ crayon-syntax-highlighter
|
342 |
+
#: crayon_settings_wp.class.php:632
|
343 |
+
msgid "Display custom message for errors"
|
344 |
+
msgstr "Hatalar için kişisel mesaj göster"
|
345 |
+
|
346 |
+
#@ crayon-syntax-highlighter
|
347 |
+
#: crayon_settings_wp.class.php:644
|
348 |
+
msgid "Show Log"
|
349 |
+
msgstr "Günlüğü Göster"
|
350 |
+
|
351 |
+
#@ crayon-syntax-highlighter
|
352 |
+
#: crayon_settings_wp.class.php:646
|
353 |
+
msgid "Clear Log"
|
354 |
+
msgstr "Günlüğü Temizle"
|
355 |
+
|
356 |
+
#@ crayon-syntax-highlighter
|
357 |
+
#: crayon_settings_wp.class.php:647
|
358 |
+
msgid "Email Admin"
|
359 |
+
msgstr "Yönetici E-Posta"
|
360 |
+
|
361 |
+
#@ crayon-syntax-highlighter
|
362 |
+
#: crayon_settings_wp.class.php:649
|
363 |
+
msgid "Email Developer"
|
364 |
+
msgstr "Geliştirici E-Posta"
|
365 |
+
|
366 |
+
#@ crayon-syntax-highlighter
|
367 |
+
#: crayon_settings_wp.class.php:665
|
368 |
+
msgid "Version"
|
369 |
+
msgstr "Sürüm"
|
370 |
+
|
371 |
+
#@ crayon-syntax-highlighter
|
372 |
+
#: crayon_settings_wp.class.php:667
|
373 |
+
msgid "Developer"
|
374 |
+
msgstr "Geliştirici"
|
375 |
+
|
376 |
+
#@ crayon-syntax-highlighter
|
377 |
+
#: crayon_settings_wp.class.php:698
|
378 |
+
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
379 |
+
msgstr "Aylar boyu sıkı çalışma ve sayısız saatlerin sonucudur. Bu devam eden bir projedir, motivasyonumu arttırın!"
|
380 |
+
|
381 |
+
#@ crayon-syntax-highlighter
|
382 |
+
#: crayon_settings_wp.class.php:549
|
383 |
+
#, php-format
|
384 |
+
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
385 |
+
msgstr "Örnek kodu değiştirmek için %1$sSon çare dili%2$s değiştirin. 5-7 satırlar işaretli."
|
386 |
+
|
387 |
+
#@ crayon-syntax-highlighter
|
388 |
+
#: crayon_settings.class.php:101
|
389 |
+
msgid "Hourly"
|
390 |
+
msgstr "Saatlik"
|
391 |
+
|
392 |
+
#@ crayon-syntax-highlighter
|
393 |
+
#: crayon_settings.class.php:101
|
394 |
+
msgid "Daily"
|
395 |
+
msgstr "Günlük"
|
396 |
+
|
397 |
+
#@ crayon-syntax-highlighter
|
398 |
+
#: crayon_settings.class.php:102
|
399 |
+
msgid "Weekly"
|
400 |
+
msgstr "Haftalık"
|
401 |
+
|
402 |
+
#@ crayon-syntax-highlighter
|
403 |
+
#: crayon_settings.class.php:102
|
404 |
+
msgid "Monthly"
|
405 |
+
msgstr "Aylık"
|
406 |
+
|
407 |
+
#@ crayon-syntax-highlighter
|
408 |
+
#: crayon_settings.class.php:103
|
409 |
+
msgid "Immediately"
|
410 |
+
msgstr "Hemen"
|
411 |
+
|
412 |
+
#@ crayon-syntax-highlighter
|
413 |
+
#: crayon_settings_wp.class.php:423
|
414 |
+
msgid "Crayon Help"
|
415 |
+
msgstr "Crayon Yardım"
|
416 |
+
|
417 |
+
#@ crayon-syntax-highlighter
|
418 |
+
#: crayon_settings_wp.class.php:618
|
419 |
+
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
420 |
+
msgstr "Sadece ihtiyaç olduğunda Crayon CSS ve JavaScript yüklemeyi dene"
|
421 |
+
|
422 |
+
#@ crayon-syntax-highlighter
|
423 |
+
#: crayon_settings_wp.class.php:611
|
424 |
+
msgid "Followed by your relative URL."
|
425 |
+
msgstr "Bağlantılı URL tarafından izlendi."
|
426 |
+
|
427 |
+
#@ crayon-syntax-highlighter
|
428 |
+
#: crayon_settings_wp.class.php:651
|
429 |
+
msgid "The log is currently empty."
|
430 |
+
msgstr "Günlük şu anda boş."
|
431 |
+
|
432 |
+
#@ crayon-syntax-highlighter
|
433 |
+
#: crayon_settings_wp.class.php:653
|
434 |
+
msgid "The log file exists and is writable."
|
435 |
+
msgstr "Günlük dosyası var ve yazılabilir."
|
436 |
+
|
437 |
+
#@ crayon-syntax-highlighter
|
438 |
+
#: crayon_settings_wp.class.php:653
|
439 |
+
msgid "The log file exists and is not writable."
|
440 |
+
msgstr "Günlük dosyası var ve yazılabilir değil."
|
441 |
+
|
442 |
+
#@ crayon-syntax-highlighter
|
443 |
+
#: crayon_settings_wp.class.php:655
|
444 |
+
msgid "The log file does not exist and is not writable."
|
445 |
+
msgstr "Günlük dosyası yok ve yazılabilir değil."
|
446 |
+
|
447 |
+
#@ crayon-syntax-highlighter
|
448 |
+
#: crayon_settings_wp.class.php:504
|
449 |
+
#, php-format
|
450 |
+
msgid "%d language has been detected."
|
451 |
+
msgid_plural "%d languages have been detected."
|
452 |
+
msgstr[0] "%d dil tespit edildi."
|
453 |
+
msgstr[1] "%d dil tespit edildi."
|
454 |
+
|
455 |
+
#@ crayon-syntax-highlighter
|
456 |
+
#: crayon_settings_wp.class.php:599
|
457 |
+
msgid "Capture <pre> tags as Crayons"
|
458 |
+
msgstr "<pre> etiketleri Crayons olarak yakala"
|
459 |
+
|
460 |
+
#@ crayon-syntax-highlighter
|
461 |
+
#: crayon_settings_wp.class.php:554
|
462 |
+
#: crayon_settings_wp.class.php:583
|
463 |
+
#: crayon_settings_wp.class.php:600
|
464 |
+
#: crayon_settings_wp.class.php:601
|
465 |
+
#: crayon_settings_wp.class.php:602
|
466 |
+
#: crayon_settings_wp.class.php:618
|
467 |
+
#: crayon_settings_wp.class.php:619
|
468 |
+
msgid "Learn More"
|
469 |
+
msgstr "Daha Fazla"
|
470 |
+
|
471 |
+
#@ crayon-syntax-highlighter
|
472 |
+
#: crayon_settings_wp.class.php:603
|
473 |
+
msgid "Show Mixed Language Icon (+)"
|
474 |
+
msgstr "Karışık Dil Simgesini Göster (+)"
|
475 |
+
|
476 |
+
#@ crayon-syntax-highlighter
|
477 |
+
#: crayon_settings_wp.class.php:602
|
478 |
+
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
479 |
+
msgstr "Sınırlayıcılar ve etiketler ile Karışık Dil Vurgulamaya izin ver."
|
480 |
+
|
481 |
+
#@ crayon-syntax-highlighter
|
482 |
+
#: crayon_settings_wp.class.php:600
|
483 |
+
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
484 |
+
msgstr "Crayons olarak [php][/php] gibi küçük etiketleri yakala."
|
485 |
+
|
486 |
+
#@ crayon-syntax-highlighter
|
487 |
+
#: crayon_settings_wp.class.php:601
|
488 |
+
msgid "Enable [plain][/plain] tag."
|
489 |
+
msgstr "[plain][/plain] etiketi etkin."
|
490 |
+
|
491 |
+
#@ crayon-syntax-highlighter
|
492 |
+
#: crayon_settings.class.php:169
|
493 |
+
msgid "Disable Mouse Events"
|
494 |
+
msgstr "Fare Etkinliği Devre Dışı"
|
495 |
+
|
496 |
+
#@ crayon-syntax-highlighter
|
497 |
+
#: crayon_settings_wp.class.php:590
|
498 |
+
msgid "Enable plain code toggling"
|
499 |
+
msgstr "Düz kod geçişi etkin"
|
500 |
+
|
501 |
+
#@ crayon-syntax-highlighter
|
502 |
+
#: crayon_settings_wp.class.php:591
|
503 |
+
msgid "Show the plain code by default"
|
504 |
+
msgstr "Düz kodu varsayılan olarak göster"
|
505 |
+
|
506 |
+
#@ crayon-syntax-highlighter
|
507 |
+
#. translators: plugin header field 'Name'
|
508 |
+
#: crayon_wp.class.php:0
|
509 |
+
msgid "Crayon Syntax Highlighter"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#@ crayon-syntax-highlighter
|
513 |
+
#. translators: plugin header field 'AuthorURI'
|
514 |
+
#: crayon_wp.class.php:0
|
515 |
+
msgid "http://ak.net84.net/"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#@ crayon-syntax-highlighter
|
519 |
+
#. translators: plugin header field 'Author'
|
520 |
+
#: crayon_wp.class.php:0
|
521 |
+
msgid "Aram Kocharyan"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#@ crayon-syntax-highlighter
|
525 |
+
#. translators: plugin header field 'PluginURI'
|
526 |
+
#: crayon_wp.class.php:0
|
527 |
+
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#@ crayon-syntax-highlighter
|
531 |
+
#. translators: plugin header field 'Description'
|
532 |
+
#: crayon_wp.class.php:0
|
533 |
+
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
534 |
+
msgstr "Çoklu dil, temalar, bir URL den vurgulama, yerel dosya veya yazı metnini destekler."
|
535 |
+
|
536 |
+
#@ crayon-syntax-highlighter
|
537 |
+
#: crayon_settings_wp.class.php:714
|
538 |
+
msgid "Donate"
|
539 |
+
msgstr "Bağış"
|
540 |
+
|
541 |
+
#@ crayon-syntax-highlighter
|
542 |
+
#: crayon_settings_wp.class.php:219
|
543 |
+
msgid "General"
|
544 |
+
msgstr "Genel"
|
545 |
+
|
546 |
+
#@ crayon-syntax-highlighter
|
547 |
+
#: crayon_settings_wp.class.php:220
|
548 |
+
msgid "Theme"
|
549 |
+
msgstr "Tema"
|
550 |
+
|
551 |
+
#@ crayon-syntax-highlighter
|
552 |
+
#: crayon_settings_wp.class.php:221
|
553 |
+
msgid "Font"
|
554 |
+
msgstr "Font"
|
555 |
+
|
556 |
+
#@ crayon-syntax-highlighter
|
557 |
+
#: crayon_settings_wp.class.php:222
|
558 |
+
msgid "Metrics"
|
559 |
+
msgstr "Ölçüler"
|
560 |
+
|
561 |
+
#@ crayon-syntax-highlighter
|
562 |
+
#: crayon_settings_wp.class.php:223
|
563 |
+
msgid "Toolbar"
|
564 |
+
msgstr "Araç Çubuğu"
|
565 |
+
|
566 |
+
#@ crayon-syntax-highlighter
|
567 |
+
#: crayon_settings_wp.class.php:224
|
568 |
+
msgid "Lines"
|
569 |
+
msgstr "Satırlar"
|
570 |
+
|
571 |
+
#@ crayon-syntax-highlighter
|
572 |
+
#: crayon_settings_wp.class.php:225
|
573 |
+
msgid "Code"
|
574 |
+
msgstr "Kod"
|
575 |
+
|
576 |
+
#@ crayon-syntax-highlighter
|
577 |
+
#: crayon_settings_wp.class.php:226
|
578 |
+
msgid "Languages"
|
579 |
+
msgstr "Diller"
|
580 |
+
|
581 |
+
#@ crayon-syntax-highlighter
|
582 |
+
#: crayon_settings_wp.class.php:227
|
583 |
+
msgid "Files"
|
584 |
+
msgstr "Dosyalar"
|
585 |
+
|
586 |
+
#@ crayon-syntax-highlighter
|
587 |
+
#: crayon_settings_wp.class.php:228
|
588 |
+
msgid "Misc"
|
589 |
+
msgstr "Çeşitli"
|
590 |
+
|
591 |
+
#@ crayon-syntax-highlighter
|
592 |
+
#: crayon_settings_wp.class.php:231
|
593 |
+
msgid "Debug"
|
594 |
+
msgstr "Hata Ayıklama"
|
595 |
+
|
596 |
+
#@ crayon-syntax-highlighter
|
597 |
+
#: crayon_settings_wp.class.php:232
|
598 |
+
msgid "Errors"
|
599 |
+
msgstr "Hatalar"
|
600 |
+
|
601 |
+
#@ crayon-syntax-highlighter
|
602 |
+
#: crayon_settings_wp.class.php:233
|
603 |
+
msgid "Log"
|
604 |
+
msgstr "Günlük"
|
605 |
+
|
606 |
+
#@ crayon-syntax-highlighter
|
607 |
+
#: crayon_settings_wp.class.php:236
|
608 |
+
msgid "About"
|
609 |
+
msgstr "Hakkında"
|
610 |
+
|
611 |
+
#@ crayon-syntax-highlighter
|
612 |
+
#: crayon_settings_wp.class.php:554
|
613 |
+
msgid "Enqueue themes in the header (more efficient)."
|
614 |
+
msgstr "Temaları header içinde kuyrukla (daha etkin)."
|
615 |
+
|
616 |
+
#@ crayon-syntax-highlighter
|
617 |
+
#: crayon_settings_wp.class.php:583
|
618 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
619 |
+
msgstr "Fontları header içinde kuyrukla (daha etkin)."
|
620 |
+
|
621 |
+
#@ crayon-syntax-highlighter
|
622 |
+
#: crayon_settings_wp.class.php:545
|
623 |
+
msgid "Loading..."
|
624 |
+
msgstr "Yükleniyor..."
|
625 |
+
|
626 |
+
#@ crayon-syntax-highlighter
|
627 |
+
#: crayon_settings_wp.class.php:545
|
628 |
+
#: crayon_settings_wp.class.php:712
|
629 |
+
#: util/theme-editor/editor.php:14
|
630 |
+
msgid "Theme Editor"
|
631 |
+
msgstr "Tema Düzenleyici"
|
632 |
+
|
633 |
+
#@ crayon-syntax-highlighter
|
634 |
+
#: crayon_settings_wp.class.php:595
|
635 |
+
msgid "Always display scrollbars"
|
636 |
+
msgstr "Kenar çubuğu her zaman göster"
|
637 |
+
|
638 |
+
#@ crayon-syntax-highlighter
|
639 |
+
#: crayon_settings_wp.class.php:619
|
640 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
641 |
+
msgstr "Döngü içeren sayfa şablonları için kuyruklama devre dışı."
|
642 |
+
|
643 |
+
#@ crayon-syntax-highlighter
|
644 |
+
#: crayon_settings_wp.class.php:620
|
645 |
+
msgid "Load Crayons only from the main Wordpress query"
|
646 |
+
msgstr "Sadece ana Wordpress sorgusundan Crayons yükle"
|
647 |
+
|
648 |
+
#@ crayon-syntax-highlighter
|
649 |
+
#: util/theme-editor/editor.php:16
|
650 |
+
msgid "Back To Settings"
|
651 |
+
msgstr "Ayarlara Geri Dön"
|
652 |
+
|
653 |
+
#@ crayon-syntax-highlighter
|
654 |
+
#: crayon_settings_wp.class.php:668
|
655 |
+
msgid "Translators"
|
656 |
+
msgstr "Çevirmenler"
|
657 |
+
|
658 |
+
#@ crayon-syntax-highlighter
|
659 |
+
#: crayon_formatter.class.php:203
|
660 |
+
msgid "Toggle Plain Code"
|
661 |
+
msgstr "Düz Koda Geç"
|
662 |
+
|
663 |
+
#@ crayon-syntax-highlighter
|
664 |
+
#: crayon_formatter.class.php:205
|
665 |
+
msgid "Copy Plain Code"
|
666 |
+
msgstr "Düz Kodu Kopyala"
|
667 |
+
|
668 |
+
#@ crayon-syntax-highlighter
|
669 |
+
#: crayon_formatter.class.php:211
|
670 |
+
msgid "Open Code In New Window"
|
671 |
+
msgstr "Kodu Yeni Pencerede Aç"
|
672 |
+
|
673 |
+
#@ crayon-syntax-highlighter
|
674 |
+
#: crayon_formatter.class.php:214
|
675 |
+
msgid "Toggle Line Numbers"
|
676 |
+
msgstr "Satır Numaralarına Geç"
|
677 |
+
|
678 |
+
#@ crayon-syntax-highlighter
|
679 |
+
#: crayon_formatter.class.php:221
|
680 |
+
msgid "Contains Mixed Languages"
|
681 |
+
msgstr "Karışık Diller içerir"
|
682 |
+
|
683 |
+
#@ crayon-syntax-highlighter
|
684 |
+
#: crayon_settings_wp.class.php:644
|
685 |
+
msgid "Hide Log"
|
686 |
+
msgstr "Günlüğü Gizle"
|
687 |
+
|
688 |
+
#@ crayon-syntax-highlighter
|
689 |
+
#. translators: plugin header field 'Version'
|
690 |
+
#: crayon_wp.class.php:0
|
691 |
+
msgid "1.7.26"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#@ crayon-syntax-highlighter
|
695 |
+
#: crayon_formatter.class.php:205
|
696 |
+
#, php-format
|
697 |
+
msgid "Press %s to Copy, %s to Paste"
|
698 |
+
msgstr "%s ile Kopyala, %s ile Yapıştır"
|
699 |
+
|
trans/crayon-syntax-highlighter-zh_CN.mo
ADDED
Binary file
|
trans/crayon-syntax-highlighter-zh_CN.po
ADDED
@@ -0,0 +1,699 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: crayon-syntax-highlighter\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-12-10 17:11+1000\n"
|
6 |
+
"PO-Revision-Date: 2012-02-14 14:38+0100\n"
|
7 |
+
"Last-Translator: Dezhi <d.liu@smerpup.com>\n"
|
8 |
+
"Language-Team: SMErpUp <blog@smerpup.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: Chinese\n"
|
14 |
+
"X-Poedit-Country: CHINA\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
+
"X-Poedit-SearchPath-0: ..\n"
|
20 |
+
|
21 |
+
#@ crayon-syntax-highlighter
|
22 |
+
#: crayon_settings.class.php:130
|
23 |
+
#: crayon_settings.class.php:134
|
24 |
+
msgid "Max"
|
25 |
+
msgstr "最大"
|
26 |
+
|
27 |
+
#@ crayon-syntax-highlighter
|
28 |
+
#: crayon_settings.class.php:130
|
29 |
+
#: crayon_settings.class.php:134
|
30 |
+
msgid "Min"
|
31 |
+
msgstr "最小"
|
32 |
+
|
33 |
+
#@ crayon-syntax-highlighter
|
34 |
+
#: crayon_settings.class.php:130
|
35 |
+
#: crayon_settings.class.php:134
|
36 |
+
msgid "Static"
|
37 |
+
msgstr "静态"
|
38 |
+
|
39 |
+
#@ crayon-syntax-highlighter
|
40 |
+
#: crayon_settings.class.php:132
|
41 |
+
#: crayon_settings.class.php:136
|
42 |
+
msgid "Pixels"
|
43 |
+
msgstr "像素"
|
44 |
+
|
45 |
+
#@ crayon-syntax-highlighter
|
46 |
+
#: crayon_settings.class.php:132
|
47 |
+
#: crayon_settings.class.php:136
|
48 |
+
msgid "Percent"
|
49 |
+
msgstr "百分比"
|
50 |
+
|
51 |
+
#@ crayon-syntax-highlighter
|
52 |
+
#: crayon_settings.class.php:145
|
53 |
+
msgid "None"
|
54 |
+
msgstr "无"
|
55 |
+
|
56 |
+
#@ crayon-syntax-highlighter
|
57 |
+
#: crayon_settings.class.php:145
|
58 |
+
msgid "Left"
|
59 |
+
msgstr "左"
|
60 |
+
|
61 |
+
#@ crayon-syntax-highlighter
|
62 |
+
#: crayon_settings.class.php:145
|
63 |
+
msgid "Center"
|
64 |
+
msgstr "中"
|
65 |
+
|
66 |
+
#@ crayon-syntax-highlighter
|
67 |
+
#: crayon_settings.class.php:145
|
68 |
+
msgid "Right"
|
69 |
+
msgstr "右"
|
70 |
+
|
71 |
+
#@ crayon-syntax-highlighter
|
72 |
+
#: crayon_settings.class.php:147
|
73 |
+
#: crayon_settings.class.php:169
|
74 |
+
msgid "On MouseOver"
|
75 |
+
msgstr "鼠标悬浮"
|
76 |
+
|
77 |
+
#@ crayon-syntax-highlighter
|
78 |
+
#: crayon_settings.class.php:147
|
79 |
+
#: crayon_settings.class.php:153
|
80 |
+
msgid "Always"
|
81 |
+
msgstr "始终"
|
82 |
+
|
83 |
+
#@ crayon-syntax-highlighter
|
84 |
+
#: crayon_settings.class.php:147
|
85 |
+
#: crayon_settings.class.php:153
|
86 |
+
msgid "Never"
|
87 |
+
msgstr "从不"
|
88 |
+
|
89 |
+
#@ crayon-syntax-highlighter
|
90 |
+
#: crayon_settings.class.php:153
|
91 |
+
msgid "When Found"
|
92 |
+
msgstr "如果找到"
|
93 |
+
|
94 |
+
#@ crayon-syntax-highlighter
|
95 |
+
#: crayon_settings.class.php:169
|
96 |
+
msgid "On Double Click"
|
97 |
+
msgstr "鼠标双击"
|
98 |
+
|
99 |
+
#@ crayon-syntax-highlighter
|
100 |
+
#: crayon_settings.class.php:169
|
101 |
+
msgid "On Single Click"
|
102 |
+
msgstr "鼠标单击"
|
103 |
+
|
104 |
+
#@ crayon-syntax-highlighter
|
105 |
+
#: crayon_settings.class.php:177
|
106 |
+
msgid "An error has occurred. Please try again later."
|
107 |
+
msgstr "错误发生。请稍后再试。"
|
108 |
+
|
109 |
+
#@ crayon-syntax-highlighter
|
110 |
+
#: crayon_settings_wp.class.php:39
|
111 |
+
#: crayon_settings_wp.class.php:82
|
112 |
+
#: crayon_settings_wp.class.php:710
|
113 |
+
msgid "Settings"
|
114 |
+
msgstr "设置"
|
115 |
+
|
116 |
+
#@ crayon-syntax-highlighter
|
117 |
+
#: crayon_settings_wp.class.php:73
|
118 |
+
msgid "You do not have sufficient permissions to access this page."
|
119 |
+
msgstr "你没有足够的权限访问当前页面"
|
120 |
+
|
121 |
+
#@ crayon-syntax-highlighter
|
122 |
+
#: crayon_settings_wp.class.php:94
|
123 |
+
msgid "Save Changes"
|
124 |
+
msgstr "保存设置"
|
125 |
+
|
126 |
+
#@ crayon-syntax-highlighter
|
127 |
+
#: crayon_settings_wp.class.php:100
|
128 |
+
msgid "Reset Settings"
|
129 |
+
msgstr "回复初始设置"
|
130 |
+
|
131 |
+
#@ crayon-syntax-highlighter
|
132 |
+
#: crayon_settings_wp.class.php:437
|
133 |
+
msgid "Height"
|
134 |
+
msgstr "高度"
|
135 |
+
|
136 |
+
#@ crayon-syntax-highlighter
|
137 |
+
#: crayon_settings_wp.class.php:443
|
138 |
+
msgid "Width"
|
139 |
+
msgstr "宽度"
|
140 |
+
|
141 |
+
#@ crayon-syntax-highlighter
|
142 |
+
#: crayon_settings_wp.class.php:449
|
143 |
+
msgid "Top Margin"
|
144 |
+
msgstr "上边距"
|
145 |
+
|
146 |
+
#@ crayon-syntax-highlighter
|
147 |
+
#: crayon_settings_wp.class.php:450
|
148 |
+
msgid "Bottom Margin"
|
149 |
+
msgstr "下边距"
|
150 |
+
|
151 |
+
#@ crayon-syntax-highlighter
|
152 |
+
#: crayon_settings_wp.class.php:451
|
153 |
+
#: crayon_settings_wp.class.php:456
|
154 |
+
msgid "Left Margin"
|
155 |
+
msgstr "左边距"
|
156 |
+
|
157 |
+
#@ crayon-syntax-highlighter
|
158 |
+
#: crayon_settings_wp.class.php:452
|
159 |
+
#: crayon_settings_wp.class.php:456
|
160 |
+
msgid "Right Margin"
|
161 |
+
msgstr "右边距"
|
162 |
+
|
163 |
+
#@ crayon-syntax-highlighter
|
164 |
+
#: crayon_settings_wp.class.php:462
|
165 |
+
msgid "Horizontal Alignment"
|
166 |
+
msgstr "水平对齐"
|
167 |
+
|
168 |
+
#@ crayon-syntax-highlighter
|
169 |
+
#: crayon_settings_wp.class.php:465
|
170 |
+
msgid "Allow floating elements to surround Crayon"
|
171 |
+
msgstr "允许浮动元素(Floating Elements)环绕Crayon"
|
172 |
+
|
173 |
+
#@ crayon-syntax-highlighter
|
174 |
+
#: crayon_settings_wp.class.php:470
|
175 |
+
msgid "Display the Toolbar"
|
176 |
+
msgstr "显示工具栏"
|
177 |
+
|
178 |
+
#@ crayon-syntax-highlighter
|
179 |
+
#: crayon_settings_wp.class.php:473
|
180 |
+
msgid "Overlay the toolbar on code rather than push it down when possible"
|
181 |
+
msgstr "在可能的情况下覆盖工具栏上的代码,而不是将代码向下推"
|
182 |
+
|
183 |
+
#@ crayon-syntax-highlighter
|
184 |
+
#: crayon_settings_wp.class.php:474
|
185 |
+
msgid "Toggle the toolbar on single click when it is overlayed"
|
186 |
+
msgstr "当叠加时,使用鼠标单击来触发工具栏的切换"
|
187 |
+
|
188 |
+
#@ crayon-syntax-highlighter
|
189 |
+
#: crayon_settings_wp.class.php:475
|
190 |
+
msgid "Delay hiding the toolbar on MouseOut"
|
191 |
+
msgstr "当鼠标移出时延迟工具栏的隐藏"
|
192 |
+
|
193 |
+
#@ crayon-syntax-highlighter
|
194 |
+
#: crayon_settings_wp.class.php:477
|
195 |
+
msgid "Display the title when provided"
|
196 |
+
msgstr "显示被设置的标题"
|
197 |
+
|
198 |
+
#@ crayon-syntax-highlighter
|
199 |
+
#: crayon_settings_wp.class.php:478
|
200 |
+
msgid "Display the language"
|
201 |
+
msgstr "显示编程语言"
|
202 |
+
|
203 |
+
#@ crayon-syntax-highlighter
|
204 |
+
#: crayon_settings_wp.class.php:483
|
205 |
+
msgid "Display striped code lines"
|
206 |
+
msgstr "以条纹形式显示代码"
|
207 |
+
|
208 |
+
#@ crayon-syntax-highlighter
|
209 |
+
#: crayon_settings_wp.class.php:484
|
210 |
+
msgid "Enable line marking for important lines"
|
211 |
+
msgstr "标记重要的行"
|
212 |
+
|
213 |
+
#@ crayon-syntax-highlighter
|
214 |
+
#: crayon_settings_wp.class.php:485
|
215 |
+
msgid "Display line numbers by default"
|
216 |
+
msgstr "默认为每行编号"
|
217 |
+
|
218 |
+
#@ crayon-syntax-highlighter
|
219 |
+
#: crayon_settings_wp.class.php:486
|
220 |
+
msgid "Enable line number toggling"
|
221 |
+
msgstr "启用行数切换"
|
222 |
+
|
223 |
+
#@ crayon-syntax-highlighter
|
224 |
+
#: crayon_settings_wp.class.php:487
|
225 |
+
msgid "Start line numbers from"
|
226 |
+
msgstr "起始行数"
|
227 |
+
|
228 |
+
#@ crayon-syntax-highlighter
|
229 |
+
#: crayon_settings_wp.class.php:497
|
230 |
+
msgid "When no language is provided, use the fallback"
|
231 |
+
msgstr "当没有设置编程语言是,显示fallback language"
|
232 |
+
|
233 |
+
#@ crayon-syntax-highlighter
|
234 |
+
#: crayon_settings_wp.class.php:505
|
235 |
+
msgid "Parsing was successful"
|
236 |
+
msgstr "装载成功"
|
237 |
+
|
238 |
+
#@ crayon-syntax-highlighter
|
239 |
+
#: crayon_settings_wp.class.php:505
|
240 |
+
msgid "Parsing was unsuccessful"
|
241 |
+
msgstr "装载失败"
|
242 |
+
|
243 |
+
#@ crayon-syntax-highlighter
|
244 |
+
#: crayon_settings_wp.class.php:511
|
245 |
+
#, php-format
|
246 |
+
msgid "The selected language with id %s could not be loaded"
|
247 |
+
msgstr "无法加载被选则的语言(ID:%s)"
|
248 |
+
|
249 |
+
#@ crayon-syntax-highlighter
|
250 |
+
#: crayon_settings_wp.class.php:515
|
251 |
+
msgid "Show Languages"
|
252 |
+
msgstr "显示编程语言"
|
253 |
+
|
254 |
+
#@ crayon-syntax-highlighter
|
255 |
+
#: crayon_settings_wp.class.php:552
|
256 |
+
msgid "Enable Live Preview"
|
257 |
+
msgstr "启用实时预览"
|
258 |
+
|
259 |
+
#@ crayon-syntax-highlighter
|
260 |
+
#: crayon_settings_wp.class.php:557
|
261 |
+
#, php-format
|
262 |
+
msgid "The selected theme with id %s could not be loaded"
|
263 |
+
msgstr "无法加载被选则的主题(ID:%s)"
|
264 |
+
|
265 |
+
#@ crayon-syntax-highlighter
|
266 |
+
#: crayon_settings_wp.class.php:575
|
267 |
+
msgid "Custom Font Size"
|
268 |
+
msgstr "自定义字号"
|
269 |
+
|
270 |
+
#@ crayon-syntax-highlighter
|
271 |
+
#: crayon_settings_wp.class.php:580
|
272 |
+
#, php-format
|
273 |
+
msgid "The selected font with id %s could not be loaded"
|
274 |
+
msgstr "无法加载被选则的字体(ID:%s)"
|
275 |
+
|
276 |
+
#@ crayon-syntax-highlighter
|
277 |
+
#: crayon_settings_wp.class.php:587
|
278 |
+
msgid "Enable plain code view and display"
|
279 |
+
msgstr "启用普通视图显示代码"
|
280 |
+
|
281 |
+
#@ crayon-syntax-highlighter
|
282 |
+
#: crayon_settings_wp.class.php:592
|
283 |
+
msgid "Enable code copy/paste"
|
284 |
+
msgstr "启用复制粘贴"
|
285 |
+
|
286 |
+
#@ crayon-syntax-highlighter
|
287 |
+
#: crayon_settings_wp.class.php:594
|
288 |
+
msgid "Enable opening code in a window"
|
289 |
+
msgstr "启用在新窗口中显示代码"
|
290 |
+
|
291 |
+
#@ crayon-syntax-highlighter
|
292 |
+
#: crayon_settings_wp.class.php:596
|
293 |
+
msgid "Tab size in spaces"
|
294 |
+
msgstr "空格数代替Tab"
|
295 |
+
|
296 |
+
#@ crayon-syntax-highlighter
|
297 |
+
#: crayon_settings_wp.class.php:598
|
298 |
+
msgid "Remove whitespace surrounding the shortcode content"
|
299 |
+
msgstr "删除短代码周围的Whitespace"
|
300 |
+
|
301 |
+
#@ crayon-syntax-highlighter
|
302 |
+
#: crayon_settings_wp.class.php:608
|
303 |
+
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
304 |
+
msgstr "当加载本地文件时,使用绝对路径"
|
305 |
+
|
306 |
+
#@ crayon-syntax-highlighter
|
307 |
+
#: crayon_settings_wp.class.php:615
|
308 |
+
msgid "Clear the cache used to store remote code requests"
|
309 |
+
msgstr "清除用于远程存储代码的缓存"
|
310 |
+
|
311 |
+
#@ crayon-syntax-highlighter
|
312 |
+
#: crayon_settings_wp.class.php:617
|
313 |
+
msgid "Clear Now"
|
314 |
+
msgstr "现在清除"
|
315 |
+
|
316 |
+
#@ crayon-syntax-highlighter
|
317 |
+
#: crayon_settings_wp.class.php:621
|
318 |
+
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
319 |
+
msgstr "为触屏设备停用鼠标手势(如MouseOver)"
|
320 |
+
|
321 |
+
#@ crayon-syntax-highlighter
|
322 |
+
#: crayon_settings_wp.class.php:622
|
323 |
+
msgid "Disable animations"
|
324 |
+
msgstr "禁用动画"
|
325 |
+
|
326 |
+
#@ crayon-syntax-highlighter
|
327 |
+
#: crayon_settings_wp.class.php:623
|
328 |
+
msgid "Disable runtime stats"
|
329 |
+
msgstr "禁用实时数据"
|
330 |
+
|
331 |
+
#@ crayon-syntax-highlighter
|
332 |
+
#: crayon_settings_wp.class.php:630
|
333 |
+
msgid "Log errors for individual Crayons"
|
334 |
+
msgstr "为独立的Crayon启用错误日志"
|
335 |
+
|
336 |
+
#@ crayon-syntax-highlighter
|
337 |
+
#: crayon_settings_wp.class.php:631
|
338 |
+
msgid "Log system-wide errors"
|
339 |
+
msgstr "启用系统日志"
|
340 |
+
|
341 |
+
#@ crayon-syntax-highlighter
|
342 |
+
#: crayon_settings_wp.class.php:632
|
343 |
+
msgid "Display custom message for errors"
|
344 |
+
msgstr "显示错误的个性化消息"
|
345 |
+
|
346 |
+
#@ crayon-syntax-highlighter
|
347 |
+
#: crayon_settings_wp.class.php:644
|
348 |
+
msgid "Show Log"
|
349 |
+
msgstr "显示日志"
|
350 |
+
|
351 |
+
#@ crayon-syntax-highlighter
|
352 |
+
#: crayon_settings_wp.class.php:646
|
353 |
+
msgid "Clear Log"
|
354 |
+
msgstr "清空日志"
|
355 |
+
|
356 |
+
#@ crayon-syntax-highlighter
|
357 |
+
#: crayon_settings_wp.class.php:647
|
358 |
+
msgid "Email Admin"
|
359 |
+
msgstr "Email 管理员"
|
360 |
+
|
361 |
+
#@ crayon-syntax-highlighter
|
362 |
+
#: crayon_settings_wp.class.php:649
|
363 |
+
msgid "Email Developer"
|
364 |
+
msgstr "E-Mail 开发者"
|
365 |
+
|
366 |
+
#@ crayon-syntax-highlighter
|
367 |
+
#: crayon_settings_wp.class.php:665
|
368 |
+
msgid "Version"
|
369 |
+
msgstr "Version"
|
370 |
+
|
371 |
+
#@ crayon-syntax-highlighter
|
372 |
+
#: crayon_settings_wp.class.php:667
|
373 |
+
msgid "Developer"
|
374 |
+
msgstr "开发者"
|
375 |
+
|
376 |
+
#@ crayon-syntax-highlighter
|
377 |
+
#: crayon_settings_wp.class.php:698
|
378 |
+
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
379 |
+
msgstr "Crayon是数月辛勤劳动的结果,为了让它不断的完善,如果你喜欢它,请告诉我!"
|
380 |
+
|
381 |
+
#@ crayon-syntax-highlighter
|
382 |
+
#: crayon_settings_wp.class.php:549
|
383 |
+
#, php-format
|
384 |
+
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
385 |
+
msgstr "更改 %1$sfallback language%2$s 来更改示例. 5-7行是被标记的行"
|
386 |
+
|
387 |
+
#@ crayon-syntax-highlighter
|
388 |
+
#: crayon_settings.class.php:101
|
389 |
+
msgid "Hourly"
|
390 |
+
msgstr "每小时"
|
391 |
+
|
392 |
+
#@ crayon-syntax-highlighter
|
393 |
+
#: crayon_settings.class.php:101
|
394 |
+
msgid "Daily"
|
395 |
+
msgstr "每天"
|
396 |
+
|
397 |
+
#@ crayon-syntax-highlighter
|
398 |
+
#: crayon_settings.class.php:102
|
399 |
+
msgid "Weekly"
|
400 |
+
msgstr "每星期"
|
401 |
+
|
402 |
+
#@ crayon-syntax-highlighter
|
403 |
+
#: crayon_settings.class.php:102
|
404 |
+
msgid "Monthly"
|
405 |
+
msgstr "每月"
|
406 |
+
|
407 |
+
#@ crayon-syntax-highlighter
|
408 |
+
#: crayon_settings.class.php:103
|
409 |
+
msgid "Immediately"
|
410 |
+
msgstr "现在"
|
411 |
+
|
412 |
+
#@ crayon-syntax-highlighter
|
413 |
+
#: crayon_settings_wp.class.php:423
|
414 |
+
msgid "Crayon Help"
|
415 |
+
msgstr "Crayon 帮助"
|
416 |
+
|
417 |
+
#@ crayon-syntax-highlighter
|
418 |
+
#: crayon_settings_wp.class.php:618
|
419 |
+
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
420 |
+
msgstr "仅在用到时才加载 Crayon 的 CSS 和 JavaScript "
|
421 |
+
|
422 |
+
#@ crayon-syntax-highlighter
|
423 |
+
#: crayon_settings_wp.class.php:611
|
424 |
+
msgid "Followed by your relative URL."
|
425 |
+
msgstr "跟随你的相对URL."
|
426 |
+
|
427 |
+
#@ crayon-syntax-highlighter
|
428 |
+
#: crayon_settings_wp.class.php:651
|
429 |
+
msgid "The log is currently empty."
|
430 |
+
msgstr "日志为空"
|
431 |
+
|
432 |
+
#@ crayon-syntax-highlighter
|
433 |
+
#: crayon_settings_wp.class.php:653
|
434 |
+
msgid "The log file exists and is writable."
|
435 |
+
msgstr "日志存在并且是可编辑状态"
|
436 |
+
|
437 |
+
#@ crayon-syntax-highlighter
|
438 |
+
#: crayon_settings_wp.class.php:653
|
439 |
+
msgid "The log file exists and is not writable."
|
440 |
+
msgstr "日志存在但无法编辑"
|
441 |
+
|
442 |
+
#@ crayon-syntax-highlighter
|
443 |
+
#: crayon_settings_wp.class.php:655
|
444 |
+
msgid "The log file does not exist and is not writable."
|
445 |
+
msgstr "日志不存在且无法编辑"
|
446 |
+
|
447 |
+
#@ crayon-syntax-highlighter
|
448 |
+
#: crayon_settings_wp.class.php:504
|
449 |
+
#, php-format
|
450 |
+
msgid "%d language has been detected."
|
451 |
+
msgid_plural "%d languages have been detected."
|
452 |
+
msgstr[0] "没有找到 %d 语言"
|
453 |
+
msgstr[1] "没有找到 %d 相关的语言"
|
454 |
+
|
455 |
+
#@ crayon-syntax-highlighter
|
456 |
+
#: crayon_settings_wp.class.php:599
|
457 |
+
msgid "Capture <pre> tags as Crayons"
|
458 |
+
msgstr "用Crayon显示 <pre> 标签"
|
459 |
+
|
460 |
+
#@ crayon-syntax-highlighter
|
461 |
+
#: crayon_settings_wp.class.php:554
|
462 |
+
#: crayon_settings_wp.class.php:583
|
463 |
+
#: crayon_settings_wp.class.php:600
|
464 |
+
#: crayon_settings_wp.class.php:601
|
465 |
+
#: crayon_settings_wp.class.php:602
|
466 |
+
#: crayon_settings_wp.class.php:618
|
467 |
+
#: crayon_settings_wp.class.php:619
|
468 |
+
msgid "Learn More"
|
469 |
+
msgstr "了解更多"
|
470 |
+
|
471 |
+
#@ crayon-syntax-highlighter
|
472 |
+
#: crayon_settings_wp.class.php:603
|
473 |
+
msgid "Show Mixed Language Icon (+)"
|
474 |
+
msgstr "显示混合语言标识 (+)"
|
475 |
+
|
476 |
+
#@ crayon-syntax-highlighter
|
477 |
+
#: crayon_settings_wp.class.php:602
|
478 |
+
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
479 |
+
msgstr "允许混合语言加亮用分隔符和标签"
|
480 |
+
|
481 |
+
#@ crayon-syntax-highlighter
|
482 |
+
#: crayon_settings_wp.class.php:600
|
483 |
+
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
484 |
+
msgstr "使用 Crayons 显示类似 [php] [/php] 的迷你标签."
|
485 |
+
|
486 |
+
#@ crayon-syntax-highlighter
|
487 |
+
#: crayon_settings_wp.class.php:601
|
488 |
+
msgid "Enable [plain][/plain] tag."
|
489 |
+
msgstr "启用 [plain] [/plain] 标签."
|
490 |
+
|
491 |
+
#@ crayon-syntax-highlighter
|
492 |
+
#: crayon_settings.class.php:169
|
493 |
+
msgid "Disable Mouse Events"
|
494 |
+
msgstr "禁用鼠标事件"
|
495 |
+
|
496 |
+
#@ crayon-syntax-highlighter
|
497 |
+
#: crayon_settings_wp.class.php:590
|
498 |
+
msgid "Enable plain code toggling"
|
499 |
+
msgstr "启用纯文本切换"
|
500 |
+
|
501 |
+
#@ crayon-syntax-highlighter
|
502 |
+
#: crayon_settings_wp.class.php:591
|
503 |
+
msgid "Show the plain code by default"
|
504 |
+
msgstr "默认显示纯文本"
|
505 |
+
|
506 |
+
#@ crayon-syntax-highlighter
|
507 |
+
#. translators: plugin header field 'Name'
|
508 |
+
#: crayon_wp.class.php:0
|
509 |
+
msgid "Crayon Syntax Highlighter"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#@ crayon-syntax-highlighter
|
513 |
+
#. translators: plugin header field 'AuthorURI'
|
514 |
+
#: crayon_wp.class.php:0
|
515 |
+
msgid "http://ak.net84.net/"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#@ crayon-syntax-highlighter
|
519 |
+
#. translators: plugin header field 'Author'
|
520 |
+
#: crayon_wp.class.php:0
|
521 |
+
msgid "Aram Kocharyan"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#@ crayon-syntax-highlighter
|
525 |
+
#. translators: plugin header field 'PluginURI'
|
526 |
+
#: crayon_wp.class.php:0
|
527 |
+
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#@ crayon-syntax-highlighter
|
531 |
+
#. translators: plugin header field 'Description'
|
532 |
+
#: crayon_wp.class.php:0
|
533 |
+
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
534 |
+
msgstr "支持多重语言,主题,高亮来自于一个URL,本地文件或博客日志"
|
535 |
+
|
536 |
+
#@ crayon-syntax-highlighter
|
537 |
+
#: crayon_settings_wp.class.php:714
|
538 |
+
msgid "Donate"
|
539 |
+
msgstr "捐助"
|
540 |
+
|
541 |
+
#@ crayon-syntax-highlighter
|
542 |
+
#: crayon_settings_wp.class.php:219
|
543 |
+
msgid "General"
|
544 |
+
msgstr "常规"
|
545 |
+
|
546 |
+
#@ crayon-syntax-highlighter
|
547 |
+
#: crayon_settings_wp.class.php:220
|
548 |
+
msgid "Theme"
|
549 |
+
msgstr "主题"
|
550 |
+
|
551 |
+
#@ crayon-syntax-highlighter
|
552 |
+
#: crayon_settings_wp.class.php:221
|
553 |
+
msgid "Font"
|
554 |
+
msgstr "字体"
|
555 |
+
|
556 |
+
#@ crayon-syntax-highlighter
|
557 |
+
#: crayon_settings_wp.class.php:222
|
558 |
+
msgid "Metrics"
|
559 |
+
msgstr "排版"
|
560 |
+
|
561 |
+
#@ crayon-syntax-highlighter
|
562 |
+
#: crayon_settings_wp.class.php:223
|
563 |
+
msgid "Toolbar"
|
564 |
+
msgstr "工具栏"
|
565 |
+
|
566 |
+
#@ crayon-syntax-highlighter
|
567 |
+
#: crayon_settings_wp.class.php:224
|
568 |
+
msgid "Lines"
|
569 |
+
msgstr "行"
|
570 |
+
|
571 |
+
#@ crayon-syntax-highlighter
|
572 |
+
#: crayon_settings_wp.class.php:225
|
573 |
+
msgid "Code"
|
574 |
+
msgstr "代码"
|
575 |
+
|
576 |
+
#@ crayon-syntax-highlighter
|
577 |
+
#: crayon_settings_wp.class.php:226
|
578 |
+
msgid "Languages"
|
579 |
+
msgstr "语言"
|
580 |
+
|
581 |
+
#@ crayon-syntax-highlighter
|
582 |
+
#: crayon_settings_wp.class.php:227
|
583 |
+
msgid "Files"
|
584 |
+
msgstr "文件"
|
585 |
+
|
586 |
+
#@ crayon-syntax-highlighter
|
587 |
+
#: crayon_settings_wp.class.php:228
|
588 |
+
msgid "Misc"
|
589 |
+
msgstr "其他"
|
590 |
+
|
591 |
+
#@ crayon-syntax-highlighter
|
592 |
+
#: crayon_settings_wp.class.php:231
|
593 |
+
msgid "Debug"
|
594 |
+
msgstr "Debug"
|
595 |
+
|
596 |
+
#@ crayon-syntax-highlighter
|
597 |
+
#: crayon_settings_wp.class.php:232
|
598 |
+
msgid "Errors"
|
599 |
+
msgstr "错误"
|
600 |
+
|
601 |
+
#@ crayon-syntax-highlighter
|
602 |
+
#: crayon_settings_wp.class.php:233
|
603 |
+
msgid "Log"
|
604 |
+
msgstr "日志"
|
605 |
+
|
606 |
+
#@ crayon-syntax-highlighter
|
607 |
+
#: crayon_settings_wp.class.php:236
|
608 |
+
msgid "About"
|
609 |
+
msgstr "关于"
|
610 |
+
|
611 |
+
#@ crayon-syntax-highlighter
|
612 |
+
#: crayon_settings_wp.class.php:554
|
613 |
+
msgid "Enqueue themes in the header (more efficient)."
|
614 |
+
msgstr "主题在 header 里加载(更有效率)"
|
615 |
+
|
616 |
+
#@ crayon-syntax-highlighter
|
617 |
+
#: crayon_settings_wp.class.php:583
|
618 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
619 |
+
msgstr "字体在 header 里加载(更有效率)"
|
620 |
+
|
621 |
+
#@ crayon-syntax-highlighter
|
622 |
+
#: crayon_settings_wp.class.php:545
|
623 |
+
msgid "Loading..."
|
624 |
+
msgstr "加载中。。。"
|
625 |
+
|
626 |
+
#@ crayon-syntax-highlighter
|
627 |
+
#: crayon_settings_wp.class.php:545
|
628 |
+
#: crayon_settings_wp.class.php:712
|
629 |
+
#: util/theme-editor/editor.php:14
|
630 |
+
msgid "Theme Editor"
|
631 |
+
msgstr "主题编辑器"
|
632 |
+
|
633 |
+
#@ crayon-syntax-highlighter
|
634 |
+
#: crayon_settings_wp.class.php:595
|
635 |
+
msgid "Always display scrollbars"
|
636 |
+
msgstr "总是显示滚动条"
|
637 |
+
|
638 |
+
#@ crayon-syntax-highlighter
|
639 |
+
#: crayon_settings_wp.class.php:619
|
640 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
641 |
+
msgstr "当可能造成循环时禁用加载页面模板"
|
642 |
+
|
643 |
+
#@ crayon-syntax-highlighter
|
644 |
+
#: crayon_settings_wp.class.php:620
|
645 |
+
msgid "Load Crayons only from the main Wordpress query"
|
646 |
+
msgstr "只有在主要 Wordpress 请求时在显示 Crayon"
|
647 |
+
|
648 |
+
#@ crayon-syntax-highlighter
|
649 |
+
#: util/theme-editor/editor.php:16
|
650 |
+
msgid "Back To Settings"
|
651 |
+
msgstr "回到设置"
|
652 |
+
|
653 |
+
#@ crayon-syntax-highlighter
|
654 |
+
#: crayon_settings_wp.class.php:668
|
655 |
+
msgid "Translators"
|
656 |
+
msgstr "翻译者"
|
657 |
+
|
658 |
+
#@ crayon-syntax-highlighter
|
659 |
+
#: crayon_formatter.class.php:203
|
660 |
+
msgid "Toggle Plain Code"
|
661 |
+
msgstr "切换时显示纯文本"
|
662 |
+
|
663 |
+
#@ crayon-syntax-highlighter
|
664 |
+
#: crayon_formatter.class.php:205
|
665 |
+
msgid "Copy Plain Code"
|
666 |
+
msgstr "复制纯文本"
|
667 |
+
|
668 |
+
#@ crayon-syntax-highlighter
|
669 |
+
#: crayon_formatter.class.php:211
|
670 |
+
msgid "Open Code In New Window"
|
671 |
+
msgstr "在新窗口中显示代码"
|
672 |
+
|
673 |
+
#@ crayon-syntax-highlighter
|
674 |
+
#: crayon_formatter.class.php:214
|
675 |
+
msgid "Toggle Line Numbers"
|
676 |
+
msgstr "编号开关"
|
677 |
+
|
678 |
+
#@ crayon-syntax-highlighter
|
679 |
+
#: crayon_formatter.class.php:221
|
680 |
+
msgid "Contains Mixed Languages"
|
681 |
+
msgstr "含有多种语言"
|
682 |
+
|
683 |
+
#@ crayon-syntax-highlighter
|
684 |
+
#: crayon_settings_wp.class.php:644
|
685 |
+
msgid "Hide Log"
|
686 |
+
msgstr "隐藏日志"
|
687 |
+
|
688 |
+
#@ crayon-syntax-highlighter
|
689 |
+
#. translators: plugin header field 'Version'
|
690 |
+
#: crayon_wp.class.php:0
|
691 |
+
msgid "1.7.26"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#@ crayon-syntax-highlighter
|
695 |
+
#: crayon_formatter.class.php:205
|
696 |
+
#, php-format
|
697 |
+
msgid "Press %s to Copy, %s to Paste"
|
698 |
+
msgstr "按下 %s 复制, %s 粘贴"
|
699 |
+
|
util/crayon_util.class.php
CHANGED
@@ -228,6 +228,11 @@ class CrayonUtil {
|
|
228 |
return FALSE;
|
229 |
}
|
230 |
}
|
|
|
|
|
|
|
|
|
|
|
231 |
|
232 |
// Removes crayon plugin path from absolute path
|
233 |
public static function path_rel($url) {
|
228 |
return FALSE;
|
229 |
}
|
230 |
}
|
231 |
+
|
232 |
+
// Ensure all parenthesis are atomic to avoid conflicting with element matches
|
233 |
+
public static function esc_atomic($regex) {
|
234 |
+
return preg_replace('#(?<!\\\\)\((?!\?)#', '(?:', $regex);
|
235 |
+
}
|
236 |
|
237 |
// Removes crayon plugin path from absolute path
|
238 |
public static function path_rel($url) {
|
util/sample/as.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
class com.example.Greeter extends MovieClip
|
2 |
+
{
|
3 |
+
public function Greeter() {}
|
4 |
+
public function onLoad():Void
|
5 |
+
{
|
6 |
+
var txtHello:TextField = this.createTextField("txtHello", 0, 0, 0, 100, 100);
|
7 |
+
txtHello.text = "Hello, world";
|
8 |
+
}
|
9 |
+
}
|
util/sample/ilogic.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Dim map As Inventor.NameValueMap = ThisApplication.TransientObjects.CreateNameValueMap()
|
2 |
+
map.Add("Arg1", "Arg1Value")
|
3 |
+
iLogicVb.RunRule("ruleName", map)
|
4 |
+
iLogicVb.RunRule("PartA:1", "ruleName")
|
5 |
+
InventorVb.RunMacro("projectName", "moduleName", "macroName")
|
6 |
+
AddVbRule "RuleName"
|
7 |
+
AddReference "fileName.dll"
|
8 |
+
AddVbFile "fileName.vb"
|
9 |
+
AddResources "fileName.resources"
|
10 |
+
arg1Value = RuleArguments("Arg1")
|
util/sample/monkey.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Class GameApp Extends App
|
2 |
+
Field player:Player
|
3 |
+
Method OnCreate:Int()
|
4 |
+
local img:Image = LoadImage("player.png")
|
5 |
+
player = New Player(img, 100, 100)
|
6 |
+
SetUpdateRate 60
|
7 |
+
End
|
8 |
+
End
|
util/sample/pgsql.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CREATE TABLE arr(f1 int[], f2 int[]);
|
2 |
+
INSERT INTO arr VALUES (ARRAY[[1,2],[3,4]], ARRAY[[5,6],[7,8]]);
|
3 |
+
SELECT ARRAY[f1, f2, '{{9,10},{11,12}}'::int[]] FROM arr;
|
4 |
+
array_prepend(1, ARRAY[2,3])
|
5 |
+
SELECT ROW(table.*) IS NULL FROM table; -- detect all-null rows
|
6 |
+
SELECT getf1(CAST(ROW(11,'this is a test',2.5) AS myrowtype));
|
7 |
+
|
8 |
+
CHARACTER VARYING
|
util/sample/ruby.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# 'w' denotes "write mode".
|
2 |
+
File.open('file.txt', 'w') do |file|
|
3 |
+
file.puts 'Wrote some text.'
|
4 |
+
end # File is automatically closed here
|
5 |
+
|
6 |
+
File.readlines('file.txt').each do |line|
|
7 |
+
puts line
|
8 |
+
end
|
9 |
+
# => Wrote some text.
|
util/sample/xhtml.txt
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body onload="loadpdf()">
|
2 |
+
<p>This is an example of an
|
3 |
+
<abbr title="Extensible HyperText Markup Language">XHTML</abbr> 1.0 Strict document.<br />
|
4 |
+
<img id="validation-icon" src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict" /><br />
|
5 |
+
<object id="pdf-object"
|
6 |
+
name="pdf-object"
|
7 |
+
type="application/pdf"
|
8 |
+
data="http://www.w3.org/TR/xhtml1/xhtml1.pdf"
|
9 |
+
width="100%"
|
10 |
+
height="500">
|
11 |
+
</object>
|
12 |
+
</p>
|