Version Description
- Added /util/external_use.php for an example of how to use Crayon in other PHP environments.
- Fixed issues with the excerpt, now Crayons are not stripped out by default, can be changed in Settings > Misc.
- Fixed font-size issues that may conflict on some themes.
- Crayons in comments now have their HTML entities decoded by default, specify "decode:false" in the class attr or decode="false" as an attr if you don't want it to decode.
- Fixed a newline bug thanks to Eugene at http://iteye.ru/
Download this release
Release Info
Developer | akarmenia |
Plugin | Crayon Syntax Highlighter |
Version | 1.9.4 |
Comparing to | |
See all releases |
Code changes from version 1.9.3 to 1.9.4
- .gitignore +6 -0
- crayon_formatter.class.php +1 -1
- crayon_settings.class.php +3 -3
- crayon_settings_wp.class.php +1 -1
- crayon_wp.class.php +60 -24
- css/style.css +4 -4
- global.php +5 -3
- langs/php/php.txt +4 -3
- readme.txt +28 -11
- trans/codestyling-localization-lt_LT.mo +0 -0
- trans/codestyling-localization-lt_LT.po +0 -1028
- trans/crayon-syntax-highlighter-de_DE.mo +0 -0
- trans/crayon-syntax-highlighter-de_DE.po +130 -125
- trans/crayon-syntax-highlighter-es_ES.mo +0 -0
- trans/crayon-syntax-highlighter-es_ES.po +797 -481
- trans/crayon-syntax-highlighter-fr_FR.mo +0 -0
- trans/crayon-syntax-highlighter-fr_FR.po +557 -570
- trans/crayon-syntax-highlighter-it_IT.mo +0 -0
- trans/crayon-syntax-highlighter-it_IT.po +558 -480
- trans/crayon-syntax-highlighter-ja.mo +0 -0
- trans/crayon-syntax-highlighter-ja.po +378 -415
- trans/crayon-syntax-highlighter-lt_LT.mo +0 -0
- trans/crayon-syntax-highlighter-lt_LT.po +806 -0
- trans/crayon-syntax-highlighter-ru_RU.mo +0 -0
- trans/crayon-syntax-highlighter-ru_RU.po +124 -120
- trans/crayon-syntax-highlighter-tr_TR.mo +0 -0
- trans/crayon-syntax-highlighter-tr_TR.po +549 -553
- trans/crayon-syntax-highlighter-zh_CN.mo +0 -0
- trans/crayon-syntax-highlighter-zh_CN.po +130 -125
- util/external_use.php +57 -0
.gitignore
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.svn
|
2 |
+
.project
|
3 |
+
Thumbs.db
|
4 |
+
.DS_Store*
|
5 |
+
.settings
|
6 |
+
.buildpath
|
crayon_formatter.class.php
CHANGED
@@ -520,7 +520,7 @@ class CrayonFormatter {
|
|
520 |
$code = self::clean_code($code);
|
521 |
// var_dump($code);
|
522 |
// var_dump($class);
|
523 |
-
|
524 |
$code = preg_replace('|^|m', '<span class="'.$class.'">', $code);
|
525 |
$code = preg_replace('|$|m', '</span>', $code);
|
526 |
return $code;
|
520 |
$code = self::clean_code($code);
|
521 |
// var_dump($code);
|
522 |
// var_dump($class);
|
523 |
+
// echo "\n";
|
524 |
$code = preg_replace('|^|m', '<span class="'.$class.'">', $code);
|
525 |
$code = preg_replace('|$|m', '</span>', $code);
|
526 |
return $code;
|
crayon_settings.class.php
CHANGED
@@ -67,7 +67,6 @@ class CrayonSettings {
|
|
67 |
const PLAIN_TOGGLE = 'plain-toggle';
|
68 |
const SHOW_PLAIN = 'show-plain';
|
69 |
const DISABLE_RUNTIME = 'runtime';
|
70 |
-
const EXP_SCROLL = 'exp-scroll';
|
71 |
const TOUCHSCREEN = 'touchscreen';
|
72 |
const DISABLE_ANIM = 'disable-anim';
|
73 |
const ERROR_LOG = 'error-log';
|
@@ -96,6 +95,7 @@ class CrayonSettings {
|
|
96 |
const DECODE_ATTRIBUTES = 'decode-attributes';
|
97 |
const TINYMCE_USED = 'tinymce-used';
|
98 |
const ATTR_SEP = 'attr-sep';
|
|
|
99 |
// const TINYMCE_LINE_BREAK = 'tinymce-line-break';
|
100 |
// const TINYMCE_ADD_OVERRIDDEN = 'tinymce-add-overridden';
|
101 |
|
@@ -189,8 +189,7 @@ class CrayonSettings {
|
|
189 |
array(crayon__('On Double Click'), crayon__('On Single Click'), crayon__('On MouseOver'), crayon__('Disable Mouse Events'))),
|
190 |
new CrayonSetting(self::DISABLE_ANIM, FALSE),
|
191 |
new CrayonSetting(self::TOUCHSCREEN, TRUE),
|
192 |
-
new CrayonSetting(self::DISABLE_RUNTIME, FALSE),
|
193 |
-
new CrayonSetting(self::EXP_SCROLL, FALSE),
|
194 |
new CrayonSetting(self::ERROR_LOG, TRUE),
|
195 |
new CrayonSetting(self::ERROR_LOG_SYS, TRUE),
|
196 |
new CrayonSetting(self::ERROR_MSG_SHOW, TRUE),
|
@@ -216,6 +215,7 @@ class CrayonSettings {
|
|
216 |
new CrayonSetting(self::DECODE_ATTRIBUTES, TRUE),
|
217 |
new CrayonSetting(self::TINYMCE_USED, FALSE),
|
218 |
new CrayonSetting(self::ATTR_SEP, array(':', '_')),
|
|
|
219 |
// new CrayonSetting(self::TINYMCE_LINE_BREAK, array(crayon__('Before & After'), crayon__('After'), crayon__('Before'), crayon__('None'))),
|
220 |
// new CrayonSetting(self::TINYMCE_ADD_OVERRIDDEN, TRUE),
|
221 |
);
|
67 |
const PLAIN_TOGGLE = 'plain-toggle';
|
68 |
const SHOW_PLAIN = 'show-plain';
|
69 |
const DISABLE_RUNTIME = 'runtime';
|
|
|
70 |
const TOUCHSCREEN = 'touchscreen';
|
71 |
const DISABLE_ANIM = 'disable-anim';
|
72 |
const ERROR_LOG = 'error-log';
|
95 |
const DECODE_ATTRIBUTES = 'decode-attributes';
|
96 |
const TINYMCE_USED = 'tinymce-used';
|
97 |
const ATTR_SEP = 'attr-sep';
|
98 |
+
const EXCERPT_STRIP = 'excerpt-strip';
|
99 |
// const TINYMCE_LINE_BREAK = 'tinymce-line-break';
|
100 |
// const TINYMCE_ADD_OVERRIDDEN = 'tinymce-add-overridden';
|
101 |
|
189 |
array(crayon__('On Double Click'), crayon__('On Single Click'), crayon__('On MouseOver'), crayon__('Disable Mouse Events'))),
|
190 |
new CrayonSetting(self::DISABLE_ANIM, FALSE),
|
191 |
new CrayonSetting(self::TOUCHSCREEN, TRUE),
|
192 |
+
new CrayonSetting(self::DISABLE_RUNTIME, FALSE),
|
|
|
193 |
new CrayonSetting(self::ERROR_LOG, TRUE),
|
194 |
new CrayonSetting(self::ERROR_LOG_SYS, TRUE),
|
195 |
new CrayonSetting(self::ERROR_MSG_SHOW, TRUE),
|
215 |
new CrayonSetting(self::DECODE_ATTRIBUTES, TRUE),
|
216 |
new CrayonSetting(self::TINYMCE_USED, FALSE),
|
217 |
new CrayonSetting(self::ATTR_SEP, array(':', '_')),
|
218 |
+
new CrayonSetting(self::EXCERPT_STRIP, FALSE),
|
219 |
// new CrayonSetting(self::TINYMCE_LINE_BREAK, array(crayon__('Before & After'), crayon__('After'), crayon__('Before'), crayon__('None'))),
|
220 |
// new CrayonSetting(self::TINYMCE_ADD_OVERRIDDEN, TRUE),
|
221 |
);
|
crayon_settings_wp.class.php
CHANGED
@@ -716,11 +716,11 @@ class CrayonSettingsWP {
|
|
716 |
self::checkbox(array(CrayonSettings::EFFICIENT_ENQUEUE, crayon__('Attempt to load Crayon\'s CSS and JavaScript only when needed').'. <a href="http://ak.net84.net/?p=660" target="_blank" class="crayon-question">'.crayon__('?').'</a>'));
|
717 |
self::checkbox(array(CrayonSettings::SAFE_ENQUEUE, crayon__('Disable enqueuing for page templates that may contain The Loop.') . ' <a href="http://bit.ly/AcWRNY" target="_blank" class="crayon-question">' . crayon__('?') . '</a>'));
|
718 |
self::checkbox(array(CrayonSettings::COMMENTS, crayon__('Allow Crayons inside comments')));
|
|
|
719 |
self::checkbox(array(CrayonSettings::MAIN_QUERY, crayon__('Load Crayons only from the main Wordpress query')));
|
720 |
self::checkbox(array(CrayonSettings::TOUCHSCREEN, crayon__('Disable mouse gestures for touchscreen devices (eg. MouseOver)')));
|
721 |
self::checkbox(array(CrayonSettings::DISABLE_ANIM, crayon__('Disable animations')));
|
722 |
self::checkbox(array(CrayonSettings::DISABLE_RUNTIME, crayon__('Disable runtime stats')));
|
723 |
-
//self::checkbox(array(CrayonSettings::EXP_SCROLL, 'Use experimental CSS3 scrollbars (visible only in Chrome and Safari for now)'));
|
724 |
}
|
725 |
|
726 |
// Debug Fields ===========================================================
|
716 |
self::checkbox(array(CrayonSettings::EFFICIENT_ENQUEUE, crayon__('Attempt to load Crayon\'s CSS and JavaScript only when needed').'. <a href="http://ak.net84.net/?p=660" target="_blank" class="crayon-question">'.crayon__('?').'</a>'));
|
717 |
self::checkbox(array(CrayonSettings::SAFE_ENQUEUE, crayon__('Disable enqueuing for page templates that may contain The Loop.') . ' <a href="http://bit.ly/AcWRNY" target="_blank" class="crayon-question">' . crayon__('?') . '</a>'));
|
718 |
self::checkbox(array(CrayonSettings::COMMENTS, crayon__('Allow Crayons inside comments')));
|
719 |
+
self::checkbox(array(CrayonSettings::EXCERPT_STRIP, crayon__('Remove Crayons from excerpts')));
|
720 |
self::checkbox(array(CrayonSettings::MAIN_QUERY, crayon__('Load Crayons only from the main Wordpress query')));
|
721 |
self::checkbox(array(CrayonSettings::TOUCHSCREEN, crayon__('Disable mouse gestures for touchscreen devices (eg. MouseOver)')));
|
722 |
self::checkbox(array(CrayonSettings::DISABLE_ANIM, crayon__('Disable animations')));
|
723 |
self::checkbox(array(CrayonSettings::DISABLE_RUNTIME, crayon__('Disable runtime stats')));
|
|
|
724 |
}
|
725 |
|
726 |
// Debug Fields ===========================================================
|
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.9.
|
7 |
Author: Aram Kocharyan
|
8 |
Author URI: http://ak.net84.net/
|
9 |
Text Domain: crayon-syntax-highlighter
|
@@ -26,7 +26,7 @@ License: GPL2
|
|
26 |
require_once ('global.php');
|
27 |
require_once (CRAYON_HIGHLIGHTER_PHP);
|
28 |
require_once ('util/tag-editor/crayon_tag_editor_wp.class.php');
|
29 |
-
require_once ('crayon_settings_wp.class.php');
|
30 |
|
31 |
if (defined('ABSPATH')) {
|
32 |
// Used to get plugin version info
|
@@ -76,7 +76,7 @@ class CrayonWP {
|
|
76 |
|
77 |
const REGEX_ID = '#(?<!\$)\[\s*crayon#mi';
|
78 |
//const REGEX_WITH_ID = '#(\[\s*crayon-\w+)\b([^\]]*["\'])(\s*/?\s*\])#mi';
|
79 |
-
const REGEX_WITH_ID = '#\[\s*(crayon-\w+)\b[^\]]*\s
|
80 |
|
81 |
const MODE_NORMAL = 0, MODE_JUST_CODE = 1, MODE_PLAIN_CODE = 2;
|
82 |
|
@@ -89,7 +89,7 @@ class CrayonWP {
|
|
89 |
}
|
90 |
|
91 |
public static function regex_with_id($id) {
|
92 |
-
return '#\[\s*(crayon-'.$id.')\b[^\]]*\]#msi';
|
93 |
//return '#(?<!\$)(?:(?:\[\s*crayon-'.$id.'\b[^\]]*/\s*\])|(?:\[\s*crayon-'.$id.'\b[^\]]*\][\r\n]*?.*?[\r\n]*?\[\s*/\s*crayon\s*\]))(?!\$)#msi';
|
94 |
}
|
95 |
|
@@ -173,7 +173,7 @@ class CrayonWP {
|
|
173 |
self::the_posts($posts);
|
174 |
}
|
175 |
|
176 |
-
public static function capture_crayons($wp_id, $wp_content) {
|
177 |
// Will contain captured crayons and altered $wp_content
|
178 |
$capture = array('capture' => array(), 'content' => $wp_content, 'has_captured' => FALSE);
|
179 |
|
@@ -250,7 +250,8 @@ class CrayonWP {
|
|
250 |
|
251 |
// Capture attributes
|
252 |
preg_match_all('#([^="\'\s]+)[\t ]*=[\t ]*("|\')(.*?)\2#', $atts, $att_matches);
|
253 |
-
|
|
|
254 |
if ( count($att_matches[0]) != 0 ) {
|
255 |
for ($j = 0; $j < count($att_matches[1]); $j++) {
|
256 |
$atts_array[trim(strtolower($att_matches[1][$j]))] = trim($att_matches[3][$j]);
|
@@ -375,8 +376,8 @@ class CrayonWP {
|
|
375 |
// Don't capture twice
|
376 |
continue;
|
377 |
}
|
378 |
-
// Capture comment Crayons
|
379 |
-
$captures = self::capture_crayons($comment->comment_ID, $comment->comment_content);
|
380 |
self::$comment_captures[$id_str] = $captures['content'];
|
381 |
// $comment->comment_content = $captures['content']; // XXX testing!
|
382 |
// var_dump($comment->comment_content); exit;
|
@@ -474,9 +475,12 @@ class CrayonWP {
|
|
474 |
$post_id = strval($post->ID);
|
475 |
|
476 |
if (self::$is_excerpt) {
|
477 |
-
|
478 |
-
|
479 |
-
|
|
|
|
|
|
|
480 |
}
|
481 |
|
482 |
// Find if this post has Crayons
|
@@ -557,8 +561,11 @@ class CrayonWP {
|
|
557 |
|
558 |
// Remove Crayons from the_excerpt
|
559 |
public static function the_excerpt($the_excerpt) {
|
|
|
560 |
CrayonLog::debug('excerpt');
|
561 |
-
|
|
|
|
|
562 |
global $post;
|
563 |
if (!empty($post->post_excerpt)) {
|
564 |
// Use custom excerpt if defined
|
@@ -567,7 +574,8 @@ class CrayonWP {
|
|
567 |
// Pass wp_trim_excerpt('') to gen from content (and remove [crayons])
|
568 |
$the_excerpt = wpautop(wp_trim_excerpt(''));
|
569 |
}
|
570 |
-
|
|
|
571 |
// XXX Returning "" may cause it to default to full contents...
|
572 |
return $the_excerpt . ' ';
|
573 |
}
|
@@ -630,25 +638,30 @@ class CrayonWP {
|
|
630 |
return self::class_tag($matches);
|
631 |
}
|
632 |
|
633 |
-
// Check if the $
|
634 |
-
|
|
|
|
|
|
|
|
|
|
|
635 |
|
636 |
// $the_content = str_ireplace(array('$[crayon', 'crayon]$'), array('[crayon', 'crayon]'), $the_content);
|
637 |
|
638 |
-
$the_content = preg_replace('
|
639 |
$the_content = preg_replace('#(crayon\s*\])\s*\$#msi', '$1', $the_content);
|
640 |
|
641 |
if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_PRE)) {
|
642 |
-
$the_content = str_ireplace(array('
|
643 |
}
|
644 |
if (CrayonGlobalSettings::val(CrayonSettings::PLAIN_TAG)) {
|
645 |
-
$the_content = str_ireplace(array('
|
646 |
}
|
647 |
if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG) ||
|
648 |
CrayonGlobalSettings::val(CrayonSettings::INLINE_TAG)) {
|
649 |
self::init_tags_regex();
|
650 |
-
$the_content = preg_replace('
|
651 |
-
$the_content = preg_replace('#('. self::$alias_regex .')\s*([\[\{])\s
|
652 |
}
|
653 |
if (CrayonGlobalSettings::val(CrayonSettings::BACKQUOTE)) {
|
654 |
$the_content = str_ireplace('\\`', '`', $the_content);
|
@@ -773,6 +786,23 @@ class CrayonWP {
|
|
773 |
return $wp_root_path . 'wp-load.php';
|
774 |
}
|
775 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
776 |
}
|
777 |
|
778 |
// Only if WP is loaded and not in admin
|
@@ -796,16 +826,22 @@ if (defined('ABSPATH')) {
|
|
796 |
add_filter('the_content', 'CrayonWP::the_content', 100);
|
797 |
|
798 |
if (CrayonGlobalSettings::val(CrayonSettings::COMMENTS)) {
|
799 |
-
/* XXX This is called first to match Crayons, then higher priority replaces after other filters
|
800 |
-
Prevents Crayon from being formatted by the filters, and also keeps original comment formatting */
|
801 |
add_filter('comment_text', 'CrayonWP::pre_comment_text', 1);
|
802 |
add_filter('comment_text', 'CrayonWP::comment_text', 100);
|
803 |
}
|
804 |
|
805 |
// We want to allow others to define excerpt length etc later, so low priority
|
806 |
-
|
807 |
-
|
|
|
|
|
|
|
|
|
|
|
808 |
add_action('template_redirect', 'CrayonWP::wp_head');
|
|
|
809 |
} else {
|
810 |
// For marking a post as containing a Crayon
|
811 |
add_action('save_post', 'CrayonWP::save_post', 10, 2);
|
3 |
Plugin Name: Crayon Syntax Highlighter
|
4 |
Plugin URI: http://ak.net84.net/projects/crayon-syntax-highlighter
|
5 |
Description: Supports multiple languages, themes, highlighting from a URL, local file or post text.
|
6 |
+
Version: 1.9.4
|
7 |
Author: Aram Kocharyan
|
8 |
Author URI: http://ak.net84.net/
|
9 |
Text Domain: crayon-syntax-highlighter
|
26 |
require_once ('global.php');
|
27 |
require_once (CRAYON_HIGHLIGHTER_PHP);
|
28 |
require_once ('util/tag-editor/crayon_tag_editor_wp.class.php');
|
29 |
+
require_once ('crayon_settings_wp.class.php');
|
30 |
|
31 |
if (defined('ABSPATH')) {
|
32 |
// Used to get plugin version info
|
76 |
|
77 |
const REGEX_ID = '#(?<!\$)\[\s*crayon#mi';
|
78 |
//const REGEX_WITH_ID = '#(\[\s*crayon-\w+)\b([^\]]*["\'])(\s*/?\s*\])#mi';
|
79 |
+
const REGEX_WITH_ID = '#\[\s*(crayon-\w+)\b[^\]]*\s*/?\s*\]#mi';
|
80 |
|
81 |
const MODE_NORMAL = 0, MODE_JUST_CODE = 1, MODE_PLAIN_CODE = 2;
|
82 |
|
89 |
}
|
90 |
|
91 |
public static function regex_with_id($id) {
|
92 |
+
return '#\[\s*(crayon-'.$id.')\b[^\]]*\s*/?\s*\]#msi';
|
93 |
//return '#(?<!\$)(?:(?:\[\s*crayon-'.$id.'\b[^\]]*/\s*\])|(?:\[\s*crayon-'.$id.'\b[^\]]*\][\r\n]*?.*?[\r\n]*?\[\s*/\s*crayon\s*\]))(?!\$)#msi';
|
94 |
}
|
95 |
|
173 |
self::the_posts($posts);
|
174 |
}
|
175 |
|
176 |
+
public static function capture_crayons($wp_id, $wp_content, $extra_settings = array()) {
|
177 |
// Will contain captured crayons and altered $wp_content
|
178 |
$capture = array('capture' => array(), 'content' => $wp_content, 'has_captured' => FALSE);
|
179 |
|
250 |
|
251 |
// Capture attributes
|
252 |
preg_match_all('#([^="\'\s]+)[\t ]*=[\t ]*("|\')(.*?)\2#', $atts, $att_matches);
|
253 |
+
// Add extra attributes
|
254 |
+
$atts_array = $extra_settings;
|
255 |
if ( count($att_matches[0]) != 0 ) {
|
256 |
for ($j = 0; $j < count($att_matches[1]); $j++) {
|
257 |
$atts_array[trim(strtolower($att_matches[1][$j]))] = trim($att_matches[3][$j]);
|
376 |
// Don't capture twice
|
377 |
continue;
|
378 |
}
|
379 |
+
// Capture comment Crayons, decode their contents if decode not specified
|
380 |
+
$captures = self::capture_crayons($comment->comment_ID, $comment->comment_content, array(CrayonSettings::DECODE => TRUE));
|
381 |
self::$comment_captures[$id_str] = $captures['content'];
|
382 |
// $comment->comment_content = $captures['content']; // XXX testing!
|
383 |
// var_dump($comment->comment_content); exit;
|
475 |
$post_id = strval($post->ID);
|
476 |
|
477 |
if (self::$is_excerpt) {
|
478 |
+
if (CrayonGlobalSettings::val(CrayonSettings::EXCERPT_STRIP)) {
|
479 |
+
// Remove Crayon from content if we are displaying an excerpt
|
480 |
+
$the_content = preg_replace(self::REGEX_WITH_ID, '', $the_content);
|
481 |
+
}
|
482 |
+
// Otherwise Crayon remains with ID and replaced later
|
483 |
+
return $the_content;
|
484 |
}
|
485 |
|
486 |
// Find if this post has Crayons
|
561 |
|
562 |
// Remove Crayons from the_excerpt
|
563 |
public static function the_excerpt($the_excerpt) {
|
564 |
+
// var_dump("<i>".htmlentities($the_excerpt)."</i>");
|
565 |
CrayonLog::debug('excerpt');
|
566 |
+
// return $the_excerpt;
|
567 |
+
// return '_';
|
568 |
+
// self::$is_excerpt = TRUE;
|
569 |
global $post;
|
570 |
if (!empty($post->post_excerpt)) {
|
571 |
// Use custom excerpt if defined
|
574 |
// Pass wp_trim_excerpt('') to gen from content (and remove [crayons])
|
575 |
$the_excerpt = wpautop(wp_trim_excerpt(''));
|
576 |
}
|
577 |
+
// $the_excerpt = wpautop(wp_trim_excerpt(''));
|
578 |
+
// self::$is_excerpt = FALSE;
|
579 |
// XXX Returning "" may cause it to default to full contents...
|
580 |
return $the_excerpt . ' ';
|
581 |
}
|
638 |
return self::class_tag($matches);
|
639 |
}
|
640 |
|
641 |
+
// Check if the $ notation has been used to ignore [crayon] tags within posts and remove all matches
|
642 |
+
// Can also remove if used without $ as a regular crayon
|
643 |
+
public static function crayon_remove_ignore($the_content, $ignore_flag = '$') {
|
644 |
+
if ($ignore_flag == FALSE) {
|
645 |
+
$ignore_flag = '';
|
646 |
+
}
|
647 |
+
$ignore_flag_regex = preg_quote($ignore_flag);
|
648 |
|
649 |
// $the_content = str_ireplace(array('$[crayon', 'crayon]$'), array('[crayon', 'crayon]'), $the_content);
|
650 |
|
651 |
+
$the_content = preg_replace('#'.$ignore_flag_regex.'(\s*\[\s*crayon)#msi', '$1', $the_content);
|
652 |
$the_content = preg_replace('#(crayon\s*\])\s*\$#msi', '$1', $the_content);
|
653 |
|
654 |
if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_PRE)) {
|
655 |
+
$the_content = str_ireplace(array($ignore_flag.'<pre', 'pre>'.$ignore_flag), array('<pre', 'pre>'), $the_content);
|
656 |
}
|
657 |
if (CrayonGlobalSettings::val(CrayonSettings::PLAIN_TAG)) {
|
658 |
+
$the_content = str_ireplace(array($ignore_flag.'[plain', 'plain]'.$ignore_flag), array('[plain', 'plain]'), $the_content);
|
659 |
}
|
660 |
if (CrayonGlobalSettings::val(CrayonSettings::CAPTURE_MINI_TAG) ||
|
661 |
CrayonGlobalSettings::val(CrayonSettings::INLINE_TAG)) {
|
662 |
self::init_tags_regex();
|
663 |
+
$the_content = preg_replace('#'.$ignore_flag_regex.'\s*([\[\{])\s*('. self::$alias_regex .')#', '$1$2', $the_content);
|
664 |
+
$the_content = preg_replace('#('. self::$alias_regex .')\s*([\[\{])\s*'.$ignore_flag_regex.'#', '$1$2', $the_content);
|
665 |
}
|
666 |
if (CrayonGlobalSettings::val(CrayonSettings::BACKQUOTE)) {
|
667 |
$the_content = str_ireplace('\\`', '`', $the_content);
|
786 |
return $wp_root_path . 'wp-load.php';
|
787 |
}
|
788 |
|
789 |
+
public static function pre_excerpt($e) {
|
790 |
+
self::$is_excerpt = TRUE;
|
791 |
+
return $e;
|
792 |
+
}
|
793 |
+
|
794 |
+
public static function post_excerpt($e) {
|
795 |
+
self::$is_excerpt = FALSE;
|
796 |
+
$e = self::the_content($e);
|
797 |
+
return $e;
|
798 |
+
}
|
799 |
+
|
800 |
+
// public static function remove_excerpt($e) {
|
801 |
+
// // Remove Crayon from content if we are displaying an excerpt
|
802 |
+
// $e = preg_replace(self::REGEX_WITH_ID, '', $e);
|
803 |
+
// return $e;
|
804 |
+
// }
|
805 |
+
|
806 |
}
|
807 |
|
808 |
// Only if WP is loaded and not in admin
|
826 |
add_filter('the_content', 'CrayonWP::the_content', 100);
|
827 |
|
828 |
if (CrayonGlobalSettings::val(CrayonSettings::COMMENTS)) {
|
829 |
+
/* XXX This is called first to match Crayons, then higher priority replaces after other filters.
|
830 |
+
Prevents Crayon from being formatted by the filters, and also keeps original comment formatting. */
|
831 |
add_filter('comment_text', 'CrayonWP::pre_comment_text', 1);
|
832 |
add_filter('comment_text', 'CrayonWP::comment_text', 100);
|
833 |
}
|
834 |
|
835 |
// We want to allow others to define excerpt length etc later, so low priority
|
836 |
+
// add_filter('the_excerpt', 'CrayonWP::the_excerpt', 1);
|
837 |
+
|
838 |
+
// This ensures Crayons are not formatted by WP filters. Other plugins should specify priorities between 1 and 100.
|
839 |
+
add_filter('get_the_excerpt', 'CrayonWP::pre_excerpt', 1);
|
840 |
+
add_filter('the_excerpt', 'CrayonWP::post_excerpt', 100);
|
841 |
+
|
842 |
+
// add_filter('get_the_excerpt', 'CrayonWP::the_excerpt', 10);
|
843 |
add_action('template_redirect', 'CrayonWP::wp_head');
|
844 |
+
|
845 |
} else {
|
846 |
// For marking a post as containing a Crayon
|
847 |
add_action('save_post', 'CrayonWP::save_post', 10, 2);
|
css/style.css
CHANGED
@@ -82,7 +82,7 @@ coloring etc.
|
|
82 |
.crayon-syntax .crayon-table td,
|
83 |
.crayon-syntax .crayon-table tr {
|
84 |
padding: 0 !important;
|
85 |
-
border: none;
|
86 |
background: none;
|
87 |
vertical-align: top !important;
|
88 |
margin: 0 !important;
|
@@ -255,7 +255,6 @@ coloring etc.
|
|
255 |
border: 1px solid #BBB;
|
256 |
border-right: none;
|
257 |
border-bottom: none;
|
258 |
-
abox-shadow: inset 0 0 4px #BBB;
|
259 |
}
|
260 |
.crayon-main::-webkit-scrollbar-corner,
|
261 |
.crayon-plain::-webkit-scrollbar-corner {
|
@@ -304,8 +303,8 @@ coloring etc.
|
|
304 |
.crayon-syntax .crayon-nums,
|
305 |
.crayon-syntax .crayon-plain,
|
306 |
.crayon-syntax .crayon-pre {
|
307 |
-
font-size: 12px;
|
308 |
-
line-height: 15px;
|
309 |
}
|
310 |
.crayon-syntax .crayon-num,
|
311 |
.crayon-syntax .crayon-line {
|
@@ -342,6 +341,7 @@ coloring etc.
|
|
342 |
-webkit-box-sizing: border-box;
|
343 |
-moz-box-sizing: border-box;
|
344 |
box-shadow: none;
|
|
|
345 |
-webkit-box-shadow: none;
|
346 |
-moz-box-shadow: none;
|
347 |
/*white-space: pre-wrap;*/
|
82 |
.crayon-syntax .crayon-table td,
|
83 |
.crayon-syntax .crayon-table tr {
|
84 |
padding: 0 !important;
|
85 |
+
border: none !important;
|
86 |
background: none;
|
87 |
vertical-align: top !important;
|
88 |
margin: 0 !important;
|
255 |
border: 1px solid #BBB;
|
256 |
border-right: none;
|
257 |
border-bottom: none;
|
|
|
258 |
}
|
259 |
.crayon-main::-webkit-scrollbar-corner,
|
260 |
.crayon-plain::-webkit-scrollbar-corner {
|
303 |
.crayon-syntax .crayon-nums,
|
304 |
.crayon-syntax .crayon-plain,
|
305 |
.crayon-syntax .crayon-pre {
|
306 |
+
font-size: 12px !important;
|
307 |
+
line-height: 15px !important;
|
308 |
}
|
309 |
.crayon-syntax .crayon-num,
|
310 |
.crayon-syntax .crayon-line {
|
341 |
-webkit-box-sizing: border-box;
|
342 |
-moz-box-sizing: border-box;
|
343 |
box-shadow: none;
|
344 |
+
border-radius: 0px;
|
345 |
-webkit-box-shadow: none;
|
346 |
-moz-box-shadow: none;
|
347 |
/*white-space: pre-wrap;*/
|
global.php
CHANGED
@@ -176,10 +176,12 @@ function crayon_vargs(&$var, $default) {
|
|
176 |
$var = isset($var) ? $var: $default;
|
177 |
}
|
178 |
|
179 |
-
// LANGUAGE TRANSLATION FUNCTIONS
|
180 |
|
181 |
-
function crayon_load_plugin_textdomain() {
|
182 |
-
load_plugin_textdomain
|
|
|
|
|
183 |
}
|
184 |
|
185 |
function crayon__($text) {
|
176 |
$var = isset($var) ? $var: $default;
|
177 |
}
|
178 |
|
179 |
+
// LANGUAGE TRANSLATION FUNCTIONS
|
180 |
|
181 |
+
function crayon_load_plugin_textdomain() {
|
182 |
+
if (function_exists('load_plugin_textdomain')) {
|
183 |
+
load_plugin_textdomain(CRAYON_DOMAIN, false, CRAYON_DIR.CRAYON_TRANS_DIR);
|
184 |
+
}
|
185 |
}
|
186 |
|
187 |
function crayon__($text) {
|
langs/php/php.txt
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME PHP
|
6 |
-
VERSION 1.
|
7 |
|
8 |
COMMENT (?default)|(\#.*?$)
|
9 |
STRING (?default)|(<<<EOT.*?^EOT)
|
@@ -19,7 +19,8 @@
|
|
19 |
RES_CONST:ENTITY \b(?alt:reserved.txt)\b
|
20 |
ENTITY (?default)|\b[a-z_]\w*::
|
21 |
VARIABLE \$[a-z_]\w*\b
|
22 |
-
IDENTIFIER
|
23 |
-
CONSTANT \b[
|
|
|
24 |
OPERATOR (?default)
|
25 |
SYMBOL (?default)
|
3 |
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
|
4 |
|
5 |
NAME PHP
|
6 |
+
VERSION 1.9.4
|
7 |
|
8 |
COMMENT (?default)|(\#.*?$)
|
9 |
STRING (?default)|(<<<EOT.*?^EOT)
|
19 |
RES_CONST:ENTITY \b(?alt:reserved.txt)\b
|
20 |
ENTITY (?default)|\b[a-z_]\w*::
|
21 |
VARIABLE \$[a-z_]\w*\b
|
22 |
+
OTHER_ID:IDENTIFIER \b[a-z_]\w*\b\s*(?=\([^\)]*\))
|
23 |
+
CONSTANT (?-i)\b[A-Z_]*\b(?i)
|
24 |
+
IDENTIFIER (?default)
|
25 |
OPERATOR (?default)
|
26 |
SYMBOL (?default)
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bit.ly/crayondonate
|
|
4 |
Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3.2
|
7 |
-
Stable tag:
|
8 |
|
9 |
Syntax Highlighter supporting multiple languages, themes, fonts, highlighting from a URL, local file or post text.
|
10 |
|
@@ -45,14 +45,22 @@ It also supports some neat features like:
|
|
45 |
|
46 |
**Links**
|
47 |
|
48 |
-
*
|
49 |
-
*
|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
**Supported Languages**
|
53 |
|
54 |
Languages are defined in language files using Regular Expressions to capture elements.
|
55 |
-
See http://ak.net84.net/projects/crayon-language-file-specification/ to learn how to make your own.
|
56 |
|
57 |
* Default Langauge (one size fits all, highlights generic code)
|
58 |
* ABAP
|
@@ -66,16 +74,17 @@ See http://ak.net84.net/projects/crayon-language-file-specification/ to learn ho
|
|
66 |
* CSS
|
67 |
* HTML (XML/XHTML)
|
68 |
* Lua
|
69 |
-
* Monkey (thanks to <a href="https://github.com/devolonter" target="_blank">
|
70 |
* Java
|
71 |
* JavaScript
|
72 |
* Objective-C
|
|
|
73 |
* PHP
|
74 |
-
* PostgreSQL (thanks to <a href="http://bitorchestra.com/" target="_blank">
|
75 |
* PowerShell
|
76 |
* Python
|
77 |
* Ruby
|
78 |
-
* Scheme (thanks to <a href="https://github.com/harry75369" target="_blank">
|
79 |
* Shell (Unix)
|
80 |
* Visual Basic
|
81 |
* YAML
|
@@ -175,6 +184,13 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
|
|
175 |
|
176 |
== Changelog ==
|
177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
= 1.9.3 =
|
179 |
* Added Perl
|
180 |
* Minor bugs fixed thanks to http://hahler.de
|
@@ -193,14 +209,14 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
|
|
193 |
* Changed Theme CSS background to avoid conflicts with themes that affect TD tags
|
194 |
* Fixed bug caused by discrepancies in how checkbox values were handled in Tag Editor
|
195 |
* Fixed a bug causing $root variable to change on some setups, preventing tag editor from loading
|
196 |
-
|
197 |
= 1.9.0 =
|
198 |
* This update is the biggest update yet - highly recommended for all users.
|
199 |
* Added a brand new Tag Editor in the Visual Editor toolbar! <strong>Greatly</strong> simplifies adding code to posts in the Visual Editor. You can also switch between Visual and HTML modes to verify your code before posting!
|
200 |
* Added ability to decode HTML entities, so now you can use <, > etc. in the Visual Editor. But if you need indentation etc, you'll want to use the HTML editor for posts with Crayons. You can also use decode="yes/no/true/false" to set this for an individual Crayon.
|
201 |
* Added ability to decode attributes, which is enabled by default to avoid seeing encoded strings in the title, and also to allow encoded angle/square brackets in the title that would otherwise clash with the Crayon tag brackets if left unencoded.
|
202 |
* Added ability to use the class attribute in <pre> tags for specifying settings like url, mark, lang, toolbar and all other valid settings like in a normal [crayon] tag. This will ensure your <pre> tags remain valid XHTML markup even with Crayon disabled.
|
203 |
-
* Added ability to specify hyphen-separated-values in the class attribute of a <pre> tag to make them look like actual class selectors. E.g. <pre class="lang-objc toolbar-false">...</pre>. The setting name is made up of letters and hyphens ONLY, the value is whatever is left between the last hyphen and the next whitespace character.
|
204 |
* Added Scheme language thanks to https://github.com/harry75369
|
205 |
* Added ABAP language with help from Christian Fein
|
206 |
* Added a new setting: crayon="false/no/0" as an attribute or crayon:false in the class tag of a <pre>. This will ignore the <pre> tag and not turn it into a Crayon for those rare cases you don't want to use the plugin.
|
@@ -233,7 +249,7 @@ Contact me at http://twitter.com/crayonsyntax or crayon.syntax@gmail.com.
|
|
233 |
* Added ability to use closed Mini Tags like [php ... \] when you're just giving a URL
|
234 |
* Added lenient spaces for closed tags
|
235 |
* Fixed element content text in XHTML to avoid capturing "" as strings
|
236 |
-
* Added Lithuanian translation thanks to <a href="http://www.host1free.com" target="_blank">Vincent G</a>
|
237 |
|
238 |
= 1.8.3 =
|
239 |
* Added inline support for Crayons using the inline="true" attribute or even cooler with {php}...{/php} style tags.
|
@@ -575,6 +591,7 @@ Make sure to upgrade to the latest release when possible to ensure you avoid bug
|
|
575 |
|
576 |
Thanks to all those who donate to my project, your support keeps the Crayons going!
|
577 |
|
|
|
578 |
* eSnipe, Inc. (http://esnipe.com/), USA (again!)
|
579 |
* Aliseya Wright, (http://blog.xoxothemes.com/), USA
|
580 |
* Jeremy Worboys (http://complexcompulsions.com/), Australia
|
4 |
Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3.2
|
7 |
+
Stable tag: trunk
|
8 |
|
9 |
Syntax Highlighter supporting multiple languages, themes, fonts, highlighting from a URL, local file or post text.
|
10 |
|
45 |
|
46 |
**Links**
|
47 |
|
48 |
+
* <a href="http://bit.ly/poKNqs" target="_blank">Live Demo</a>
|
49 |
+
* <a href="http://ak.net84.net/projects/crayon-syntax-highlighter/" target="_blank">Short How-To</a>
|
50 |
+
|
51 |
+
**Contributions**
|
52 |
+
|
53 |
+
There are many ways you can help!
|
54 |
+
|
55 |
+
* Make a Theme and share
|
56 |
+
* Add support for your favourite <a href="http://ak.net84.net/projects/crayon-language-file-specification/" target="_blank">Language</a>
|
57 |
+
* Write a post about your pastel experiences and share
|
58 |
+
* <a href="http://bit.ly/crayondonate" target="_blank">Donate</a> to the project
|
59 |
|
60 |
**Supported Languages**
|
61 |
|
62 |
Languages are defined in language files using Regular Expressions to capture elements.
|
63 |
+
See the <a href="http://ak.net84.net/projects/crayon-language-file-specification/" target="_blank">Crayon Language File Specification</a> to learn how to make your own.
|
64 |
|
65 |
* Default Langauge (one size fits all, highlights generic code)
|
66 |
* ABAP
|
74 |
* CSS
|
75 |
* HTML (XML/XHTML)
|
76 |
* Lua
|
77 |
+
* Monkey (thanks to <a href="https://github.com/devolonter" target="_blank">Devolonter</a>)
|
78 |
* Java
|
79 |
* JavaScript
|
80 |
* Objective-C
|
81 |
+
* Perl
|
82 |
* PHP
|
83 |
+
* PostgreSQL (thanks to <a href="http://bitorchestra.com/" target="_blank">Bitorchestra</a>)
|
84 |
* PowerShell
|
85 |
* Python
|
86 |
* Ruby
|
87 |
+
* Scheme (thanks to <a href="https://github.com/harry75369" target="_blank">Harry75369</a>)
|
88 |
* Shell (Unix)
|
89 |
* Visual Basic
|
90 |
* YAML
|
184 |
|
185 |
== Changelog ==
|
186 |
|
187 |
+
= 1.9.4 =
|
188 |
+
* Added /util/external_use.php for an example of how to use Crayon in other PHP environments.
|
189 |
+
* Fixed issues with the excerpt, now Crayons are not stripped out by default, can be changed in Settings > Misc.
|
190 |
+
* Fixed font-size issues that may conflict on some themes.
|
191 |
+
* Crayons in comments now have their HTML entities decoded by default, specify "decode:false" in the class attr or decode="false" as an attr if you don't want it to decode.
|
192 |
+
* Fixed a newline bug thanks to Eugene at http://iteye.ru/
|
193 |
+
|
194 |
= 1.9.3 =
|
195 |
* Added Perl
|
196 |
* Minor bugs fixed thanks to http://hahler.de
|
209 |
* Changed Theme CSS background to avoid conflicts with themes that affect TD tags
|
210 |
* Fixed bug caused by discrepancies in how checkbox values were handled in Tag Editor
|
211 |
* Fixed a bug causing $root variable to change on some setups, preventing tag editor from loading
|
212 |
+
|
213 |
= 1.9.0 =
|
214 |
* This update is the biggest update yet - highly recommended for all users.
|
215 |
* Added a brand new Tag Editor in the Visual Editor toolbar! <strong>Greatly</strong> simplifies adding code to posts in the Visual Editor. You can also switch between Visual and HTML modes to verify your code before posting!
|
216 |
* Added ability to decode HTML entities, so now you can use <, > etc. in the Visual Editor. But if you need indentation etc, you'll want to use the HTML editor for posts with Crayons. You can also use decode="yes/no/true/false" to set this for an individual Crayon.
|
217 |
* Added ability to decode attributes, which is enabled by default to avoid seeing encoded strings in the title, and also to allow encoded angle/square brackets in the title that would otherwise clash with the Crayon tag brackets if left unencoded.
|
218 |
* Added ability to use the class attribute in <pre> tags for specifying settings like url, mark, lang, toolbar and all other valid settings like in a normal [crayon] tag. This will ensure your <pre> tags remain valid XHTML markup even with Crayon disabled.
|
219 |
+
* Added ability to specify hyphen-separated-values in the class attribute of a <pre> tag to make them look like actual class selectors. E.g. <pre class="lang-objc toolbar-false">...</pre>. The setting name is made up of letters and hyphens ONLY, the value is whatever is left between the last hyphen and the next whitespace character.
|
220 |
* Added Scheme language thanks to https://github.com/harry75369
|
221 |
* Added ABAP language with help from Christian Fein
|
222 |
* Added a new setting: crayon="false/no/0" as an attribute or crayon:false in the class tag of a <pre>. This will ignore the <pre> tag and not turn it into a Crayon for those rare cases you don't want to use the plugin.
|
249 |
* Added ability to use closed Mini Tags like [php ... \] when you're just giving a URL
|
250 |
* Added lenient spaces for closed tags
|
251 |
* Fixed element content text in XHTML to avoid capturing "" as strings
|
252 |
+
* Added Lithuanian translation thanks to <a href="http://www.host1free.com" target="_blank">Vincent G</a>
|
253 |
|
254 |
= 1.8.3 =
|
255 |
* Added inline support for Crayons using the inline="true" attribute or even cooler with {php}...{/php} style tags.
|
591 |
|
592 |
Thanks to all those who donate to my project, your support keeps the Crayons going!
|
593 |
|
594 |
+
* Christy Wiggins, (http://www.jinxyisms.com/), USA
|
595 |
* eSnipe, Inc. (http://esnipe.com/), USA (again!)
|
596 |
* Aliseya Wright, (http://blog.xoxothemes.com/), USA
|
597 |
* Jeremy Worboys (http://complexcompulsions.com/), Australia
|
trans/codestyling-localization-lt_LT.mo
DELETED
Binary file
|
trans/codestyling-localization-lt_LT.po
DELETED
@@ -1,1028 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: CodeStyling Localization v1.99.6\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2008-08-25 03:13+0100\n"
|
6 |
-
"PO-Revision-Date: 2012-04-02 11:22-0800\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-Textdomain-Support: yes\n"
|
18 |
-
"X-Poedit-SearchPath-0: .\n"
|
19 |
-
|
20 |
-
#@ codestyling-localization
|
21 |
-
#: codestyling-localization.php:2104
|
22 |
-
#: codestyling-localization.php:2158
|
23 |
-
#: codestyling-localization.php:2657
|
24 |
-
msgid "« Previous"
|
25 |
-
msgstr "« ankstesnis"
|
26 |
-
|
27 |
-
#@ codestyling-localization
|
28 |
-
#: codestyling-localization.php:2028
|
29 |
-
#: codestyling-localization.php:2033
|
30 |
-
#: codestyling-localization.php:2281
|
31 |
-
msgid "-n.a.-"
|
32 |
-
msgstr "-nepasiekiamas-"
|
33 |
-
|
34 |
-
#@ codestyling-localization
|
35 |
-
#: codestyling-localization.php:1451
|
36 |
-
#: codestyling-localization.php:1487
|
37 |
-
#: codestyling-localization.php:2009
|
38 |
-
#, php-format
|
39 |
-
msgid "<strong>%d</strong> Language"
|
40 |
-
msgid_plural "<strong>%d</strong> Languages"
|
41 |
-
msgstr[0] "<strong>%d</strong> Kalba"
|
42 |
-
msgstr[1] "<strong>%d</strong> Kalbos"
|
43 |
-
|
44 |
-
#@ codestyling-localization
|
45 |
-
#: codestyling-localization.php:2581
|
46 |
-
msgid "Access Error"
|
47 |
-
msgstr "Prieigos klaida"
|
48 |
-
|
49 |
-
#@ codestyling-localization
|
50 |
-
#: codestyling-localization.php:2014
|
51 |
-
#: codestyling-localization.php:2148
|
52 |
-
msgid "Actions"
|
53 |
-
msgstr "Veiksmai"
|
54 |
-
|
55 |
-
#@ codestyling-localization
|
56 |
-
#: codestyling-localization.php:2007
|
57 |
-
#: codestyling-localization.php:2234
|
58 |
-
msgid "Add New Language"
|
59 |
-
msgstr "Pridėti Naują Kalbą"
|
60 |
-
|
61 |
-
#@ codestyling-localization
|
62 |
-
#: codestyling-localization.php:1221
|
63 |
-
msgid "Affected Total Files"
|
64 |
-
msgstr "Iš viso Paveikta Rinkmenų"
|
65 |
-
|
66 |
-
#@ codestyling-localization
|
67 |
-
#: codestyling-localization.php:1841
|
68 |
-
msgid "All Translations"
|
69 |
-
msgstr "Visi Vertimai"
|
70 |
-
|
71 |
-
#@ codestyling-localization
|
72 |
-
#: codestyling-localization.php:1982
|
73 |
-
msgid "Available Directories:"
|
74 |
-
msgstr "Prieinami Katalogai:"
|
75 |
-
|
76 |
-
#@ codestyling-localization
|
77 |
-
#: codestyling-localization.php:2328
|
78 |
-
msgid "Confirm Delete Language"
|
79 |
-
msgstr "Patvirtinti Kalbos Ištrynimą"
|
80 |
-
|
81 |
-
#@ codestyling-localization
|
82 |
-
#: codestyling-localization.php:2717
|
83 |
-
msgid "Copy"
|
84 |
-
msgstr "Kopijuoti"
|
85 |
-
|
86 |
-
#@ codestyling-localization
|
87 |
-
#: codestyling-localization.php:1082
|
88 |
-
msgid "Creation-Date"
|
89 |
-
msgstr "Sukūrimo Data"
|
90 |
-
|
91 |
-
#@ codestyling-localization
|
92 |
-
#: codestyling-localization.php:2047
|
93 |
-
#: codestyling-localization.php:2293
|
94 |
-
msgid "Delete"
|
95 |
-
msgstr "Ištrinti"
|
96 |
-
|
97 |
-
#@ codestyling-localization
|
98 |
-
#: codestyling-localization.php:1886
|
99 |
-
#: codestyling-localization.php:1918
|
100 |
-
#: codestyling-localization.php:1963
|
101 |
-
msgid "Description"
|
102 |
-
msgstr "Aprašymas"
|
103 |
-
|
104 |
-
#@ codestyling-localization
|
105 |
-
#: codestyling-localization.php:2038
|
106 |
-
#: codestyling-localization.php:2285
|
107 |
-
#: codestyling-localization.php:2716
|
108 |
-
msgid "Edit"
|
109 |
-
msgstr "Redaguoti"
|
110 |
-
|
111 |
-
#@ codestyling-localization
|
112 |
-
#: codestyling-localization.php:2173
|
113 |
-
#: codestyling-localization.php:3036
|
114 |
-
msgid "Edit Catalog Entry"
|
115 |
-
msgstr "Redaguoti Katalogo Įrašą"
|
116 |
-
|
117 |
-
#@ codestyling-localization
|
118 |
-
#: codestyling-localization.php:2852
|
119 |
-
msgid "Examples: <small>Please refer to official Perl regular expression descriptions</small>"
|
120 |
-
msgstr "Pavyzdžiai: <small>Prašome remtis oficliais įprastinių Perl išraiškų aprašais</small>"
|
121 |
-
|
122 |
-
#@ codestyling-localization
|
123 |
-
#: codestyling-localization.php:2088
|
124 |
-
msgid "Expression Result"
|
125 |
-
msgstr "Išraiškos Rezultatas"
|
126 |
-
|
127 |
-
#@ codestyling-localization
|
128 |
-
#: codestyling-localization.php:2850
|
129 |
-
msgid "Expression:"
|
130 |
-
msgstr "Išraiška:"
|
131 |
-
|
132 |
-
#@ codestyling-localization
|
133 |
-
#: codestyling-localization.php:2848
|
134 |
-
msgid "Extended Expression Search"
|
135 |
-
msgstr "Išplėsta Išraiškos Paieška"
|
136 |
-
|
137 |
-
#@ codestyling-localization
|
138 |
-
#: codestyling-localization.php:2063
|
139 |
-
#: codestyling-localization.php:2460
|
140 |
-
#: codestyling-localization.php:3130
|
141 |
-
msgid "File:"
|
142 |
-
msgstr "Rinkmena:"
|
143 |
-
|
144 |
-
#@ codestyling-localization
|
145 |
-
#: codestyling-localization.php:2683
|
146 |
-
msgid "Files:"
|
147 |
-
msgstr "Rinkmenos:"
|
148 |
-
|
149 |
-
#@ codestyling-localization
|
150 |
-
#: codestyling-localization.php:2117
|
151 |
-
msgid "Infos"
|
152 |
-
msgstr "Informacija"
|
153 |
-
|
154 |
-
#@ codestyling-localization
|
155 |
-
#: codestyling-localization.php:2012
|
156 |
-
msgid "Language"
|
157 |
-
msgstr "Kalba"
|
158 |
-
|
159 |
-
#@ codestyling-localization
|
160 |
-
#: codestyling-localization.php:1216
|
161 |
-
msgid "Language Target"
|
162 |
-
msgstr "Kalbos Tikslas"
|
163 |
-
|
164 |
-
#@ codestyling-localization
|
165 |
-
#: codestyling-localization.php:1887
|
166 |
-
msgid "Languages"
|
167 |
-
msgstr "Kalbos"
|
168 |
-
|
169 |
-
#@ codestyling-localization
|
170 |
-
#: codestyling-localization.php:1086
|
171 |
-
msgid "Last-Translator"
|
172 |
-
msgstr "Galutinis-Vertėjas"
|
173 |
-
|
174 |
-
#@ codestyling-localization
|
175 |
-
#: codestyling-localization.php:2022
|
176 |
-
#: codestyling-localization.php:2273
|
177 |
-
msgid "Locale"
|
178 |
-
msgstr "Lokalė"
|
179 |
-
|
180 |
-
#@ codestyling-localization
|
181 |
-
#: codestyling-localization.php:1817
|
182 |
-
msgid "Localization"
|
183 |
-
msgstr "Lokalizacija"
|
184 |
-
|
185 |
-
#@ codestyling-localization
|
186 |
-
#: codestyling-localization.php:1829
|
187 |
-
msgid "Manage Language Files"
|
188 |
-
msgstr "Tvarkyti Kalbos Rinkmenas"
|
189 |
-
|
190 |
-
#@ codestyling-localization
|
191 |
-
#: codestyling-localization.php:2109
|
192 |
-
#: codestyling-localization.php:2163
|
193 |
-
#: codestyling-localization.php:2664
|
194 |
-
msgid "Next »"
|
195 |
-
msgstr "Kitas »"
|
196 |
-
|
197 |
-
#@ codestyling-localization
|
198 |
-
#: codestyling-localization.php:2121
|
199 |
-
#: codestyling-localization.php:3081
|
200 |
-
msgid "Original:"
|
201 |
-
msgstr "Originalas:"
|
202 |
-
|
203 |
-
#@ codestyling-localization
|
204 |
-
#: codestyling-localization.php:2092
|
205 |
-
msgid "Page Size"
|
206 |
-
msgstr "Puslapio Dydis"
|
207 |
-
|
208 |
-
#@ codestyling-localization
|
209 |
-
#: codestyling-localization.php:2013
|
210 |
-
msgid "Permissions"
|
211 |
-
msgstr "Leidimai"
|
212 |
-
|
213 |
-
#@ codestyling-localization
|
214 |
-
#: codestyling-localization.php:1234
|
215 |
-
msgid "Please standby, files presently being scanned ..."
|
216 |
-
msgstr "Prašome ramiai palaukti, rinkmenos šiuo metu yra skenuojamos ..."
|
217 |
-
|
218 |
-
#@ codestyling-localization
|
219 |
-
#: codestyling-localization.php:2152
|
220 |
-
msgid "Please wait, file content presently being loaded ..."
|
221 |
-
msgstr "Prašome palaukti, šiuo metu keliamas rinkmenų turinys ..."
|
222 |
-
|
223 |
-
#@ codestyling-localization
|
224 |
-
#: codestyling-localization.php:389
|
225 |
-
msgid "Plugin"
|
226 |
-
msgstr "Papildinys"
|
227 |
-
|
228 |
-
#@ codestyling-localization
|
229 |
-
#: codestyling-localization.php:1852
|
230 |
-
msgid "Plugins"
|
231 |
-
msgstr "Papildiniai"
|
232 |
-
|
233 |
-
#@ codestyling-localization
|
234 |
-
#: codestyling-localization.php:3070
|
235 |
-
msgid "Plural Index Calculation:"
|
236 |
-
msgstr "Dauginis Indekso Skaičiavimas:"
|
237 |
-
|
238 |
-
#@ codestyling-localization
|
239 |
-
#: codestyling-localization.php:2701
|
240 |
-
#: codestyling-localization.php:2704
|
241 |
-
#: codestyling-localization.php:3043
|
242 |
-
#: codestyling-localization.php:3046
|
243 |
-
#: codestyling-localization.php:3049
|
244 |
-
#: codestyling-localization.php:3054
|
245 |
-
msgid "Plural Index Result ="
|
246 |
-
msgstr "Dauginis Indekso Rezultatas ="
|
247 |
-
|
248 |
-
#@ codestyling-localization
|
249 |
-
#: codestyling-localization.php:2697
|
250 |
-
#: codestyling-localization.php:3068
|
251 |
-
msgid "Plural:"
|
252 |
-
msgstr "Daugiareikšmis:"
|
253 |
-
|
254 |
-
#@ codestyling-localization
|
255 |
-
#: codestyling-localization.php:1078
|
256 |
-
#: codestyling-localization.php:1212
|
257 |
-
msgid "Project-Id-Version"
|
258 |
-
msgstr "Projekto-Identifikacijos-Versija"
|
259 |
-
|
260 |
-
#@ codestyling-localization
|
261 |
-
#: codestyling-localization.php:2041
|
262 |
-
#: codestyling-localization.php:2044
|
263 |
-
#: codestyling-localization.php:2287
|
264 |
-
#: codestyling-localization.php:2290
|
265 |
-
msgid "Rescan"
|
266 |
-
msgstr "Peržvelgti iš naujo"
|
267 |
-
|
268 |
-
#@ codestyling-localization
|
269 |
-
#: codestyling-localization.php:2397
|
270 |
-
msgid "Rescanning PHP Source Files"
|
271 |
-
msgstr "Pirminės PHP Rinkmenosi Peržvelgiamos iš naujo"
|
272 |
-
|
273 |
-
#@ codestyling-localization
|
274 |
-
#: codestyling-localization.php:3074
|
275 |
-
#: codestyling-localization.php:3091
|
276 |
-
msgid "Save"
|
277 |
-
msgstr "Įrašyti"
|
278 |
-
|
279 |
-
#@ codestyling-localization
|
280 |
-
#: codestyling-localization.php:3075
|
281 |
-
#: codestyling-localization.php:3092
|
282 |
-
msgid "Save & Next »"
|
283 |
-
msgstr "Įrašyti ir Tęsti »"
|
284 |
-
|
285 |
-
#@ codestyling-localization
|
286 |
-
#: codestyling-localization.php:1226
|
287 |
-
msgid "Scanning Progress"
|
288 |
-
msgstr "Peržiūrėjimo Eiga"
|
289 |
-
|
290 |
-
#@ codestyling-localization
|
291 |
-
#: codestyling-localization.php:2857
|
292 |
-
msgid "Search"
|
293 |
-
msgstr "Ieškoti"
|
294 |
-
|
295 |
-
#@ codestyling-localization
|
296 |
-
#: codestyling-localization.php:2087
|
297 |
-
msgid "Search Result"
|
298 |
-
msgstr "Rezultato Paieška"
|
299 |
-
|
300 |
-
#@ codestyling-localization
|
301 |
-
#: codestyling-localization.php:1569
|
302 |
-
msgid "Server Restrictions: Changing file rights is not permitted."
|
303 |
-
msgstr "Serverio Apribojimai: Rinkmenos teisių keitimas neleidžiamas."
|
304 |
-
|
305 |
-
#@ codestyling-localization
|
306 |
-
#: codestyling-localization.php:2697
|
307 |
-
#: codestyling-localization.php:3066
|
308 |
-
msgid "Singular:"
|
309 |
-
msgstr "Vienareikšmis:"
|
310 |
-
|
311 |
-
#@ codestyling-localization
|
312 |
-
#: codestyling-localization.php:1627
|
313 |
-
msgid "Sorry, Google Translation is not available."
|
314 |
-
msgstr "Atsiprašome, Google Vertimas neįmanomas."
|
315 |
-
|
316 |
-
#@ codestyling-localization
|
317 |
-
#: codestyling-localization.php:1914
|
318 |
-
#: codestyling-localization.php:1959
|
319 |
-
msgid "State"
|
320 |
-
msgstr "Būsena"
|
321 |
-
|
322 |
-
#@ codestyling-localization
|
323 |
-
#: codestyling-localization.php:1903
|
324 |
-
msgid "Textdomain"
|
325 |
-
msgstr "Teksto nuoroda"
|
326 |
-
|
327 |
-
#@ codestyling-localization
|
328 |
-
#: codestyling-localization.php:1972
|
329 |
-
msgid "The original US version doesn't contain the language directory."
|
330 |
-
msgstr "Nenurodytas originalios US versijos kalbos katalogas"
|
331 |
-
|
332 |
-
#@ codestyling-localization
|
333 |
-
#: codestyling-localization.php:664
|
334 |
-
msgid "Theme"
|
335 |
-
msgstr "Apipavidalinimas"
|
336 |
-
|
337 |
-
#@ codestyling-localization
|
338 |
-
#: codestyling-localization.php:1855
|
339 |
-
msgid "Themes"
|
340 |
-
msgstr "Apipavidalinimai"
|
341 |
-
|
342 |
-
#@ codestyling-localization
|
343 |
-
#: codestyling-localization.php:2061
|
344 |
-
msgid "Translate Language File"
|
345 |
-
msgstr "Išversti Kalbos Rinkmeną"
|
346 |
-
|
347 |
-
#@ codestyling-localization
|
348 |
-
#: codestyling-localization.php:2136
|
349 |
-
#: codestyling-localization.php:3084
|
350 |
-
#: codestyling-localization.php:3086
|
351 |
-
msgid "Translation:"
|
352 |
-
msgstr "Vertimas:"
|
353 |
-
|
354 |
-
#@ codestyling-localization
|
355 |
-
#: codestyling-localization.php:1885
|
356 |
-
msgid "Type"
|
357 |
-
msgstr "Tipas"
|
358 |
-
|
359 |
-
#@ codestyling-localization
|
360 |
-
#: codestyling-localization.php:1910
|
361 |
-
#: codestyling-localization.php:1955
|
362 |
-
msgid "Version"
|
363 |
-
msgstr "Versija"
|
364 |
-
|
365 |
-
#@ codestyling-localization
|
366 |
-
#: codestyling-localization.php:342
|
367 |
-
#: codestyling-localization.php:1844
|
368 |
-
msgid "WordPress"
|
369 |
-
msgstr "WordPress"
|
370 |
-
|
371 |
-
#@ codestyling-localization
|
372 |
-
#: codestyling-localization.php:1817
|
373 |
-
msgid "WordPress Localization"
|
374 |
-
msgstr "WordPress Lokalizacija"
|
375 |
-
|
376 |
-
#@ codestyling-localization
|
377 |
-
#: codestyling-localization.php:1136
|
378 |
-
#, php-format
|
379 |
-
msgid "You are about to delete <strong>%s</strong> from \"<strong>%s</strong>\" permanently.<br/>Are you sure you wish to delete these files?"
|
380 |
-
msgstr "Jūs ketinate negrįžtamai ištrinti <strong>%s</strong> iš \"<strong>%s</strong>\".<br/> Ar Jūs esate įsitikinęs, jog tikrai norite ištrinti šias rinkmenas?"
|
381 |
-
|
382 |
-
#@ codestyling-localization
|
383 |
-
#: codestyling-localization.php:320
|
384 |
-
msgid "You do not have permission to manage translation files."
|
385 |
-
msgstr "Jūs neturite leidimo tvarkyti vertimo rinkmenų."
|
386 |
-
|
387 |
-
#@ codestyling-localization
|
388 |
-
#: codestyling-localization.php:1752
|
389 |
-
msgid "You do not have the permission to choose the translation file directory<br/>Please upload at least one language file (*.mo|*.po) or an empty template file (*.pot) at the appropriated folder using FTP."
|
390 |
-
msgstr "Jūs neturite leidimo pasirinkti vertimo rinkmenos katalogo.<br/> Įkelkite bent vieną kalbos rinkmeną (*. mo | *. po) arba tuščią šablono rinkmeną(*. pot) į reikiamą katalogą naudojančią FTP duomenų saugyklą."
|
391 |
-
|
392 |
-
#@ codestyling-localization
|
393 |
-
#: codestyling-localization.php:1443
|
394 |
-
#, php-format
|
395 |
-
msgid "You do not have the permission to create the file '%s'."
|
396 |
-
msgstr "Jūs neturite leidimo rinkmenai '%s' kurti."
|
397 |
-
|
398 |
-
#@ codestyling-localization
|
399 |
-
#: codestyling-localization.php:1474
|
400 |
-
#: codestyling-localization.php:1475
|
401 |
-
#, php-format
|
402 |
-
msgid "You do not have the permission to delete the file '%s'."
|
403 |
-
msgstr "Jūs neturite leidimo rinkmenai '%s' ištrinti."
|
404 |
-
|
405 |
-
#@ codestyling-localization
|
406 |
-
#: codestyling-localization.php:1572
|
407 |
-
#, php-format
|
408 |
-
msgid "You do not have the permission to modify the file rights for a not existing file '%s'."
|
409 |
-
msgstr "Jūs neturite leidimo keisti neegzistuojančios rinkmenos '%s' teisių."
|
410 |
-
|
411 |
-
#@ codestyling-localization
|
412 |
-
#: codestyling-localization.php:1552
|
413 |
-
#: codestyling-localization.php:1657
|
414 |
-
#: codestyling-localization.php:1672
|
415 |
-
#, php-format
|
416 |
-
msgid "You do not have the permission to read the file '%s'."
|
417 |
-
msgstr "Jūs neturite leidimo rinkmenos '%s' skaitymui."
|
418 |
-
|
419 |
-
#@ codestyling-localization
|
420 |
-
#: codestyling-localization.php:1546
|
421 |
-
#: codestyling-localization.php:1644
|
422 |
-
#: codestyling-localization.php:1712
|
423 |
-
#, php-format
|
424 |
-
msgid "You do not have the permission to write to the file '%s'."
|
425 |
-
msgstr "Jūs neturite leidimo rinkmenos '%s' rašymui."
|
426 |
-
|
427 |
-
#@ codestyling-localization
|
428 |
-
#: codestyling-localization.php:348
|
429 |
-
#: codestyling-localization.php:398
|
430 |
-
#: codestyling-localization.php:580
|
431 |
-
#: codestyling-localization.php:669
|
432 |
-
#: codestyling-localization.php:828
|
433 |
-
#: codestyling-localization.php:869
|
434 |
-
#: codestyling-localization.php:1896
|
435 |
-
#: codestyling-localization.php:1897
|
436 |
-
msgid "activated"
|
437 |
-
msgstr "suaktyvintas"
|
438 |
-
|
439 |
-
#@ codestyling-localization
|
440 |
-
#: codestyling-localization.php:135
|
441 |
-
msgid "actual"
|
442 |
-
msgstr "dabartinis"
|
443 |
-
|
444 |
-
#@ codestyling-localization
|
445 |
-
#: codestyling-localization.php:1952
|
446 |
-
msgid "by"
|
447 |
-
msgstr "pagal"
|
448 |
-
|
449 |
-
#@ codestyling-localization
|
450 |
-
#: codestyling-localization.php:2174
|
451 |
-
msgid "close"
|
452 |
-
msgstr "užverti"
|
453 |
-
|
454 |
-
#@ codestyling-localization
|
455 |
-
#: codestyling-localization.php:1125
|
456 |
-
msgid "create po-file"
|
457 |
-
msgstr "sukurti .po rinkmeną"
|
458 |
-
|
459 |
-
#@ codestyling-localization
|
460 |
-
#: codestyling-localization.php:398
|
461 |
-
#: codestyling-localization.php:669
|
462 |
-
#: codestyling-localization.php:828
|
463 |
-
#: codestyling-localization.php:869
|
464 |
-
msgid "deactivated"
|
465 |
-
msgstr "deaktyvuotas"
|
466 |
-
|
467 |
-
#@ codestyling-localization
|
468 |
-
#: codestyling-localization.php:1904
|
469 |
-
msgid "defined by constant"
|
470 |
-
msgstr "apibrėžtas konstanta"
|
471 |
-
|
472 |
-
#@ codestyling-localization
|
473 |
-
#: codestyling-localization.php:1137
|
474 |
-
msgid "delete files"
|
475 |
-
msgstr "ištrinti rinkmenas"
|
476 |
-
|
477 |
-
#@ codestyling-localization
|
478 |
-
#: codestyling-localization.php:2423
|
479 |
-
#: codestyling-localization.php:2448
|
480 |
-
#: codestyling-localization.php:2465
|
481 |
-
msgid "finished"
|
482 |
-
msgstr "baigta"
|
483 |
-
|
484 |
-
#@ codestyling-localization
|
485 |
-
#: codestyling-localization.php:2075
|
486 |
-
msgid "generate mo-file"
|
487 |
-
msgstr "generuoti .mo rinkmeną"
|
488 |
-
|
489 |
-
#@ codestyling-localization
|
490 |
-
#: codestyling-localization.php:370
|
491 |
-
#: codestyling-localization.php:495
|
492 |
-
#: codestyling-localization.php:510
|
493 |
-
#: codestyling-localization.php:521
|
494 |
-
#: codestyling-localization.php:536
|
495 |
-
#: codestyling-localization.php:636
|
496 |
-
#: codestyling-localization.php:734
|
497 |
-
#: codestyling-localization.php:849
|
498 |
-
#: codestyling-localization.php:893
|
499 |
-
#: codestyling-localization.php:1460
|
500 |
-
#: codestyling-localization.php:1541
|
501 |
-
#: codestyling-localization.php:1580
|
502 |
-
#: codestyling-localization.php:1719
|
503 |
-
#: includes/class-translationfile.php:789
|
504 |
-
msgid "m/d/Y H:i:s"
|
505 |
-
msgstr "m/d/Y H:i:s"
|
506 |
-
|
507 |
-
#@ codestyling-localization
|
508 |
-
#: codestyling-localization.php:2125
|
509 |
-
#: codestyling-localization.php:2140
|
510 |
-
msgid "non case-sensitive"
|
511 |
-
msgstr "nesvarbu didžiosios ar mažosios raidės"
|
512 |
-
|
513 |
-
#@ codestyling-localization
|
514 |
-
#: codestyling-localization.php:1977
|
515 |
-
#: codestyling-localization.php:1998
|
516 |
-
msgid "or create the missing directory using FTP Access as:"
|
517 |
-
msgstr "arba sukurti trūkstamą katalogą naudojant FTP failų saugyklos Prieigą:"
|
518 |
-
|
519 |
-
#@ codestyling-localization
|
520 |
-
#: codestyling-localization.php:135
|
521 |
-
msgid "required"
|
522 |
-
msgstr "privalomas"
|
523 |
-
|
524 |
-
#@ codestyling-localization
|
525 |
-
#: codestyling-localization.php:1234
|
526 |
-
msgid "scan now"
|
527 |
-
msgstr "peržvelgti dabar"
|
528 |
-
|
529 |
-
#@ codestyling-localization
|
530 |
-
#: codestyling-localization.php:2156
|
531 |
-
msgid "scroll to top"
|
532 |
-
msgstr "slinkti į viršų"
|
533 |
-
|
534 |
-
#@ codestyling-localization
|
535 |
-
#: codestyling-localization.php:3043
|
536 |
-
#: codestyling-localization.php:3046
|
537 |
-
#: codestyling-localization.php:3086
|
538 |
-
msgid "translate with Google API"
|
539 |
-
msgstr "išversti su Google API"
|
540 |
-
|
541 |
-
#@ codestyling-localization
|
542 |
-
#: codestyling-localization.php:1974
|
543 |
-
msgid "try to create the WordPress language directory"
|
544 |
-
msgstr "pamėginkite sukurti WordPress kalbos katalogą"
|
545 |
-
|
546 |
-
#@ codestyling-localization
|
547 |
-
#: codestyling-localization.php:2063
|
548 |
-
#: codestyling-localization.php:2076
|
549 |
-
#: includes/class-translationfile.php:789
|
550 |
-
msgid "unknown"
|
551 |
-
msgstr "nežinomas"
|
552 |
-
|
553 |
-
#@ codestyling-localization
|
554 |
-
#: codestyling-localization.php:3073
|
555 |
-
#: codestyling-localization.php:3090
|
556 |
-
msgid "« Save & Previous"
|
557 |
-
msgstr "« Išsaugoti ir Ankstesnis"
|
558 |
-
|
559 |
-
#@ codestyling-localization
|
560 |
-
#: codestyling-localization.php:571
|
561 |
-
msgid "μ Plugin"
|
562 |
-
msgstr "μ Papildinys"
|
563 |
-
|
564 |
-
#@ codestyling-localization
|
565 |
-
#: codestyling-localization.php:1848
|
566 |
-
msgid "μ Plugins"
|
567 |
-
msgstr "μ Papildiniai"
|
568 |
-
|
569 |
-
#@ codestyling-localization
|
570 |
-
#: codestyling-localization.php:2076
|
571 |
-
msgid "last written:"
|
572 |
-
msgstr "paskutinį kartą parašyta:"
|
573 |
-
|
574 |
-
#@ codestyling-localization
|
575 |
-
#: codestyling-localization.php:2080
|
576 |
-
msgid "Total"
|
577 |
-
msgstr "Iš viso"
|
578 |
-
|
579 |
-
#@ codestyling-localization
|
580 |
-
#: codestyling-localization.php:2081
|
581 |
-
msgid "Plural"
|
582 |
-
msgstr "Daugiareikšmis"
|
583 |
-
|
584 |
-
#@ codestyling-localization
|
585 |
-
#: codestyling-localization.php:2082
|
586 |
-
#: codestyling-localization.php:2693
|
587 |
-
msgid "Context"
|
588 |
-
msgstr "Kontekstas"
|
589 |
-
|
590 |
-
#@ codestyling-localization
|
591 |
-
#: codestyling-localization.php:2083
|
592 |
-
msgid "Not translated"
|
593 |
-
msgstr "Neišversta"
|
594 |
-
|
595 |
-
#@ codestyling-localization
|
596 |
-
#: codestyling-localization.php:2084
|
597 |
-
msgid "Comments"
|
598 |
-
msgstr "Komentarai"
|
599 |
-
|
600 |
-
#@ codestyling-localization
|
601 |
-
#: codestyling-localization.php:2085
|
602 |
-
#: codestyling-localization.php:2675
|
603 |
-
msgid "Code Hint"
|
604 |
-
msgstr "Programos Kodo Patarimas"
|
605 |
-
|
606 |
-
#@ codestyling-localization
|
607 |
-
#: codestyling-localization.php:2674
|
608 |
-
msgid "Comment"
|
609 |
-
msgstr "Komentaras"
|
610 |
-
|
611 |
-
#@ codestyling-localization
|
612 |
-
#: codestyling-localization.php:2068
|
613 |
-
msgid "<b>Hint:</b> The extended feature for textdomain separation shows at dropdown box <i>Textdomain</i> the pre-selected primary textdomain."
|
614 |
-
msgstr "<b>Patarimas:</b> Išplėstinė ypatybė teksto adreso atskyrimui rodoma išskleidžiamajame langelyje <i>Textdomain</i> parinktas pirminis teksto adresas."
|
615 |
-
|
616 |
-
#@ codestyling-localization
|
617 |
-
#: codestyling-localization.php:2069
|
618 |
-
msgid "All other additional contained textdomains occur at the source but will not be used, if not explicitely supported by this component!"
|
619 |
-
msgstr "Visi kiti papildomi pateikti teksto adresai veikia pirminėje reikšmėje, bet nebus naudojami, jeigu nebus aiškiai palaikomi šio komponento!"
|
620 |
-
|
621 |
-
#@ codestyling-localization
|
622 |
-
#: codestyling-localization.php:2070
|
623 |
-
msgid "Please contact the author, if some of the non primary textdomain based phrases will not show up translated at the required position!"
|
624 |
-
msgstr "Jeigu kuri nors iš nepirminių teksto adresų frazių neatsiras reikiamoje vietoje, prašome susisiekti su autoriumi!"
|
625 |
-
|
626 |
-
#@ codestyling-localization
|
627 |
-
#: codestyling-localization.php:2071
|
628 |
-
msgid "The Textdomain <i><b>default</b></i> always stands for the WordPress main language file, this could be either intentionally or accidentally!"
|
629 |
-
msgstr "Teksto adresas <b><i>default</i></b> visuomet rodomas pagal pirminę WordPress kalbos rinkmeną. Tai gali nutikti ir nustatant tikslingai ir netyčia!"
|
630 |
-
|
631 |
-
#@ codestyling-localization
|
632 |
-
#: codestyling-localization.php:2074
|
633 |
-
msgid "Textdomain:"
|
634 |
-
msgstr "Teksto adresas:"
|
635 |
-
|
636 |
-
#@ codestyling-localization
|
637 |
-
#: includes/js-help-perlreg.php:4
|
638 |
-
msgctxt "pcre"
|
639 |
-
msgid "Component"
|
640 |
-
msgstr "Komponentas"
|
641 |
-
|
642 |
-
#@ codestyling-localization
|
643 |
-
#: includes/js-help-perlreg.php:5
|
644 |
-
msgctxt "pcre"
|
645 |
-
msgid "Example"
|
646 |
-
msgstr "Pavyzdys"
|
647 |
-
|
648 |
-
#@ codestyling-localization
|
649 |
-
#: includes/js-help-perlreg.php:6
|
650 |
-
msgctxt "pcre"
|
651 |
-
msgid "Description"
|
652 |
-
msgstr "Aprašas"
|
653 |
-
|
654 |
-
#@ codestyling-localization
|
655 |
-
#: includes/js-help-perlreg.php:12
|
656 |
-
#: includes/js-help-perlreg.php:17
|
657 |
-
#: includes/js-help-perlreg.php:22
|
658 |
-
#: includes/js-help-perlreg.php:27
|
659 |
-
#: includes/js-help-perlreg.php:32
|
660 |
-
#: includes/js-help-perlreg.php:37
|
661 |
-
#: includes/js-help-perlreg.php:42
|
662 |
-
#: includes/js-help-perlreg.php:47
|
663 |
-
#: includes/js-help-perlreg.php:52
|
664 |
-
#: includes/js-help-perlreg.php:112
|
665 |
-
#: includes/js-help-perlreg.php:117
|
666 |
-
#: includes/js-help-perlreg.php:122
|
667 |
-
#: includes/js-help-perlreg.php:127
|
668 |
-
msgctxt "pcre"
|
669 |
-
msgid "out"
|
670 |
-
msgstr "išvestis"
|
671 |
-
|
672 |
-
#@ codestyling-localization
|
673 |
-
#: includes/js-help-perlreg.php:13
|
674 |
-
msgctxt "pcre"
|
675 |
-
msgid "matches \"out\", but also \"timeout\", \"outbreak\", \"Route\" and \"gouty\"."
|
676 |
-
msgstr "atitinka \"out\", taip pat \"timeout\", \"outbreak\", \"Route\" ir \"gouty\"."
|
677 |
-
|
678 |
-
#@ codestyling-localization
|
679 |
-
#: includes/js-help-perlreg.php:18
|
680 |
-
msgctxt "pcre"
|
681 |
-
msgid "matches \"out\" at start of string like \"out\", \"outbreak\", as long as this are the first words at string."
|
682 |
-
msgstr "atitinka \"out\" pradžioje eilutės, pavyzdžiui \"out\", \"outbreak\", tol, kol tai yra pirmieji žodžiai eilutėje."
|
683 |
-
|
684 |
-
#@ codestyling-localization
|
685 |
-
#: includes/js-help-perlreg.php:23
|
686 |
-
msgctxt "pcre"
|
687 |
-
msgid "matches \"out\" at end of string like \"out\", \"timeout\" and \"burnout\" as long as this are the last words at string."
|
688 |
-
msgstr "atitinka \"out\" eilutės pabaigoje, kaip \"out\", \"timeout\" ir \"burnout\" tol, kol tai yra paskutinieji eilutės žodžiai."
|
689 |
-
|
690 |
-
#@ codestyling-localization
|
691 |
-
#: includes/js-help-perlreg.php:28
|
692 |
-
msgctxt "pcre"
|
693 |
-
msgid "matches \"ou\", \"out\", \"outt\" and \"outttttt\", the char prior to asterisk can be repeated 0 to unlimited times."
|
694 |
-
msgstr "atitinka \"ou\", \"out\", \"outt\" ir \"outttttt\", asterisk ženklų pirmenybė gali būti kartojama nuo 0 iki begalybės kartų."
|
695 |
-
|
696 |
-
#@ codestyling-localization
|
697 |
-
#: includes/js-help-perlreg.php:33
|
698 |
-
msgctxt "pcre"
|
699 |
-
msgid "matches \"outt\" and \"outttt\", the char prior to plus char have to be repeated at least one time or more often."
|
700 |
-
msgstr "atitinka \"outt\" ir \"outttt\", ženklų pirmenybė prieš pridėtinius ženklus gali būti kartojama bent vieną kartą arba dažniau."
|
701 |
-
|
702 |
-
#@ codestyling-localization
|
703 |
-
#: includes/js-help-perlreg.php:38
|
704 |
-
msgctxt "pcre"
|
705 |
-
msgid "matches \"rout\" and \"gout\", any char can be placed at this position."
|
706 |
-
msgstr "atitinka \"rout\" ir \"gout\", šioje vietoje gali būti įrašytas bet koks ženklas."
|
707 |
-
|
708 |
-
#@ codestyling-localization
|
709 |
-
#: includes/js-help-perlreg.php:43
|
710 |
-
msgctxt "pcre"
|
711 |
-
msgid "matches \"timeout\" and \"Fallout\", any char sequence at this position. Is a combination of any char and 1 but upto many times."
|
712 |
-
msgstr "atitinka \"timeout\" ir \"Fallout\", bet kokia ženklų seka šioje vietoje. Bet kokių ženklų derinys gali būti naudojamas daug kartų."
|
713 |
-
|
714 |
-
#@ codestyling-localization
|
715 |
-
#: includes/js-help-perlreg.php:48
|
716 |
-
msgctxt "pcre"
|
717 |
-
msgid "matches \"out\" as single word. \\b means word break."
|
718 |
-
msgstr "atitinka \"out\", kaip vienintėlis žodis. \\b suprantamas kaip žodžio skirtukas."
|
719 |
-
|
720 |
-
#@ codestyling-localization
|
721 |
-
#: includes/js-help-perlreg.php:53
|
722 |
-
msgctxt "pcre"
|
723 |
-
msgid "matches \"out\" only inside words, like \"Route\" or \"gouty\". \\B means not word break."
|
724 |
-
msgstr "atitinka \"out\" tik vidinėse žodžių dalyse, kaip \"Route\" arba \"gouty\". \\B nereiškia žodžio skirtuko."
|
725 |
-
|
726 |
-
#@ codestyling-localization
|
727 |
-
#: includes/js-help-perlreg.php:58
|
728 |
-
msgctxt "pcre"
|
729 |
-
msgid "matches any number. \\d means a numerical digit (0 to 9)"
|
730 |
-
msgstr "atitinka bet kokį skaičių. \\d nurodo skaitinę reikšmę (nuo 0 iki 9) "
|
731 |
-
|
732 |
-
#@ codestyling-localization
|
733 |
-
#: includes/js-help-perlreg.php:63
|
734 |
-
msgctxt "pcre"
|
735 |
-
msgid "matches \"-out\" at \"3-out\", any non number."
|
736 |
-
msgstr "atitinka \"-out\" prie \"3-out\", bet koks ne skaičius."
|
737 |
-
|
738 |
-
#@ codestyling-localization
|
739 |
-
#: includes/js-help-perlreg.php:68
|
740 |
-
msgctxt "pcre"
|
741 |
-
msgid "matches form feed char."
|
742 |
-
msgstr "atitinka perdavimo formos simbolį."
|
743 |
-
|
744 |
-
#@ codestyling-localization
|
745 |
-
#: includes/js-help-perlreg.php:73
|
746 |
-
msgctxt "pcre"
|
747 |
-
msgid "matches line feed char."
|
748 |
-
msgstr "atitinka eilutės perdavimo simoblį."
|
749 |
-
|
750 |
-
#@ codestyling-localization
|
751 |
-
#: includes/js-help-perlreg.php:78
|
752 |
-
msgctxt "pcre"
|
753 |
-
msgid "matches carriage return char."
|
754 |
-
msgstr "atitinka grįžimo į eilutės pradžią simbolį."
|
755 |
-
|
756 |
-
#@ codestyling-localization
|
757 |
-
#: includes/js-help-perlreg.php:83
|
758 |
-
msgctxt "pcre"
|
759 |
-
msgid "matches tabulator char."
|
760 |
-
msgstr "atitinka tabuliatoriaus simbolį."
|
761 |
-
|
762 |
-
#@ codestyling-localization
|
763 |
-
#: includes/js-help-perlreg.php:88
|
764 |
-
msgctxt "pcre"
|
765 |
-
msgid "matches vertical tabulator char."
|
766 |
-
msgstr "atitinka vertikalaus tabuliatoriaus simbolį."
|
767 |
-
|
768 |
-
#@ codestyling-localization
|
769 |
-
#: includes/js-help-perlreg.php:93
|
770 |
-
msgctxt "pcre"
|
771 |
-
msgid "matches any kind of whitespace and space char."
|
772 |
-
msgstr "atitinka visus tarpų ir tuščios vietos simbolius."
|
773 |
-
|
774 |
-
#@ codestyling-localization
|
775 |
-
#: includes/js-help-perlreg.php:98
|
776 |
-
msgctxt "pcre"
|
777 |
-
msgid "matches any char, that is not a whitespace char."
|
778 |
-
msgstr "atitinka bet kurį simbolį, kuris nėra tarpo simbolis."
|
779 |
-
|
780 |
-
#@ codestyling-localization
|
781 |
-
#: includes/js-help-perlreg.php:103
|
782 |
-
msgctxt "pcre"
|
783 |
-
msgid "matches any alphanumerical char and underscore (typical for programming syntax)."
|
784 |
-
msgstr "atitinka bet kurį skaitinį arba raidinį ženklą ir pabraukimo brūkšnį (tipiška progravimo sintaksei)."
|
785 |
-
|
786 |
-
#@ codestyling-localization
|
787 |
-
#: includes/js-help-perlreg.php:108
|
788 |
-
msgctxt "pcre"
|
789 |
-
msgid "matches any char, that is not alphanumerical char and underscore (typical for illegal char detection at programming)."
|
790 |
-
msgstr "atitinka bet kurį simbolį, kuris neturi skaitinės arba raidinės reikšmės ir nėra pabraukimo brūkšnys."
|
791 |
-
|
792 |
-
#@ codestyling-localization
|
793 |
-
#: includes/js-help-perlreg.php:113
|
794 |
-
msgctxt "pcre"
|
795 |
-
msgid "matches \"out\" and remembers matches internally. Upto 9 brackets are allowed per expression."
|
796 |
-
msgstr "atitinka \"out\" ir įsimena atitikimus vidinėje atmintyje. Reiškinyje leidžiami ne daugiau nei 9 suskliaudimai."
|
797 |
-
|
798 |
-
#@ codestyling-localization
|
799 |
-
#: includes/js-help-perlreg.php:118
|
800 |
-
msgctxt "pcre"
|
801 |
-
msgid "matches \"aus\" as often it is contained at string. The match positions will be stored internally as array."
|
802 |
-
msgstr "atitinka \"aus\" visuomet, kai tik jis egzistuoja eilutėje. Atitinkimo pozicijos bus laikomos viduje kaip masyvas."
|
803 |
-
|
804 |
-
#@ codestyling-localization
|
805 |
-
#: includes/js-help-perlreg.php:123
|
806 |
-
msgctxt "pcre"
|
807 |
-
msgid "matches \"out\", \"Out\" and \"OUT\", not case-sensitive match."
|
808 |
-
msgstr "atitinka \"out\", \"Out\" ir \"OUT\", nesvarbu didžiosios ar mažosios raidės."
|
809 |
-
|
810 |
-
#@ codestyling-localization
|
811 |
-
#: includes/js-help-perlreg.php:128
|
812 |
-
msgctxt "pcre"
|
813 |
-
msgid "matches \"out\", as ofter occurs (g) and also non case-sensitive."
|
814 |
-
msgstr "atitinka \"out\", dėl dažnai pasitaikančio ryšio, taip pat nesvarbu kokios raidės naudojamos - didžiosios ar mažosios."
|
815 |
-
|
816 |
-
#@ codestyling-localization
|
817 |
-
#: codestyling-localization.php:664
|
818 |
-
msgid "Childtheme"
|
819 |
-
msgstr "Pošablonis"
|
820 |
-
|
821 |
-
#@ codestyling-localization
|
822 |
-
#: codestyling-localization.php:671
|
823 |
-
msgid "child theme of"
|
824 |
-
msgstr "Pošalbonis nuo"
|
825 |
-
|
826 |
-
#@ codestyling-localization
|
827 |
-
#: codestyling-localization.php:819
|
828 |
-
msgid "BuddyPress"
|
829 |
-
msgstr "\"BuddyPress\""
|
830 |
-
|
831 |
-
#@ codestyling-localization
|
832 |
-
#: codestyling-localization.php:864
|
833 |
-
msgid "bbPress"
|
834 |
-
msgstr "\"bbPress\""
|
835 |
-
|
836 |
-
#@ codestyling-localization
|
837 |
-
#: codestyling-localization.php:1993
|
838 |
-
msgid "The original bbPress component doesn't contain a language directory."
|
839 |
-
msgstr "Originalus bbPress komponentas savyje neturi kalbos katalogo."
|
840 |
-
|
841 |
-
#@ codestyling-localization
|
842 |
-
#: codestyling-localization.php:1995
|
843 |
-
msgid "try to create the bbPress language directory"
|
844 |
-
msgstr "pamėginkite sukurti bbPress kalbos katalogą"
|
845 |
-
|
846 |
-
#@ codestyling-localization
|
847 |
-
#: codestyling-localization.php:1732
|
848 |
-
msgid "You do not have the permission to create a new Language File Path.<br/>Please create the appropriated path using your FTP access."
|
849 |
-
msgstr "Jūs neturite leidimo naujos Kalbos Rinkmenos Adreso kūrimui. <br/>Sukurkite naują priskirtą kelią, naudodamiesi FTP duomenų saugyklos prieiga."
|
850 |
-
|
851 |
-
#@ codestyling-localization
|
852 |
-
#: codestyling-localization.php:693
|
853 |
-
msgid "<strong>Loading Issue: </strong>Author is using <em>load_textdomain</em> instead of <em>load_theme_textdomain</em> or <em>load_child_theme_textdomain</em> function. This may break behavior of WordPress, because some filters and actions won't be executed anymore. Please contact the Author about that."
|
854 |
-
msgstr "<strong>Įkėlimo problema: </strong>Autorius naudoja <em>load_textdomain</em> vietoje <em>load_theme_textdomain</em> arba <em>load_child_theme_textdomain</em> funkcijos. Tai gali sutrikdyti WordPress darbą, kadangi kai kurie filtrai ir veiksmai nebegalės būti panaudoti/atlikti dar kartą. Dėl šio neskalndumo, susisiekite su autoriumi."
|
855 |
-
|
856 |
-
#@ codestyling-localization
|
857 |
-
#: codestyling-localization.php:744
|
858 |
-
#, php-format
|
859 |
-
msgid "<strong>Naming Issue: </strong>Author uses unsupported language file naming convention! Instead of example <em>de_DE.po</em> the non theme standard version <em>%s</em> has been used. If you translate this Theme, only renamed language files will be working!"
|
860 |
-
msgstr "<strong>Įvardijimo problema: </strong>Autorius naudoja nesuprantamą kalbos rinkmenos sutartinį žymėjimą! Vietoje pavyzdžio <em>de_DE.po</em> buvo panaudota standartinė išskirtinai neapipavidalinta versija <em>%s</em>. Jeigu mėginate išversti šio apipavidalinimo tekstą, tik pervadintos kalbos rinkmenos bus veiksnios."
|
861 |
-
|
862 |
-
#@ codestyling-localization
|
863 |
-
#: codestyling-localization.php:1858
|
864 |
-
#: codestyling-localization.php:1924
|
865 |
-
msgid "Compatibility"
|
866 |
-
msgstr "Suderinamumas"
|
867 |
-
|
868 |
-
#@ codestyling-localization
|
869 |
-
#: codestyling-localization.php:431
|
870 |
-
msgid "<strong>Loading Issue: </strong>Author is using <em>load_textdomain</em> instead of <em>load_plugin_textdomain</em> function. This may break behavior of WordPress, because some filters and actions won't be executed anymore. Please contact the Author about that."
|
871 |
-
msgstr "<strong>Įkėlimo problema: </strong>Autorius naudoja <em>load_textdomain</em> vietoje <em>load_plugin_textdomain</em> funkcijos. Tai gali sutrikdyti WordPress darbą, kadangi kai kurie filtrai ir veiksmai nebegalės būti panaudoti/atlikti dar kartą. Dėl šio neskalndumo, susisiekite su autoriumi."
|
872 |
-
|
873 |
-
#@ codestyling-localization
|
874 |
-
#: codestyling-localization.php:805
|
875 |
-
msgid "<strong>WooThemes Issue: </strong>The Author is known for not supporting a translatable backend. Please expect only translations for frontend or contact the Author for support!"
|
876 |
-
msgstr "<strong>Woo Apipavidalinimo problema:</strong> Autorius nesuteikia vidinės pusės vertinių galimybės. Palaikomi tik išorinės pusės (sąsajos) vertimai. Jeigu reikalinga pagalba, susisiekite su autoriumi."
|
877 |
-
|
878 |
-
#@ codestyling-localization
|
879 |
-
#: codestyling-localization.php:1865
|
880 |
-
msgid "You like it?"
|
881 |
-
msgstr "Patinka šis papildinys?"
|
882 |
-
|
883 |
-
#@ codestyling-localization
|
884 |
-
#: codestyling-localization.php:1938
|
885 |
-
msgid "Memory Warning"
|
886 |
-
msgstr "Įspėjimas dėl Atminties būsenos"
|
887 |
-
|
888 |
-
#@ codestyling-localization
|
889 |
-
#: codestyling-localization.php:1939
|
890 |
-
msgid "Since WordPress 3.x version it may require at least <strong>58MB</strong> PHP memory_limit! The reason is still unclear but it doesn't freeze anymore. Instead a error message will be shown and the scanning process aborts while reaching your limits."
|
891 |
-
msgstr "Nuo WordPress 3.x versijos reikalinga minimum <strong>58 megabaitai</strong> PHP atminties. To priežastis nėra galutinai aiški, tačiau veikimo sutrikimų nebepastebėta. Vietoje klaidos žinutės, peržiūros procesas bus nutrauktas, kuomet atminties limitas pasiektas."
|
892 |
-
|
893 |
-
#@ codestyling-localization
|
894 |
-
#: codestyling-localization.php:1945
|
895 |
-
msgid "Language Folder"
|
896 |
-
msgstr "Kalbos Aplankas"
|
897 |
-
|
898 |
-
#@ codestyling-localization
|
899 |
-
#: codestyling-localization.php:1946
|
900 |
-
msgid "The translation file folder is ambiguous, please select by clicking the appropriated language file folder or ask the Author about!"
|
901 |
-
msgstr "Vertimo rinkmenos aplankas neturi vienos aiškios prasmės. Spragteldami pasirinkite tinkamą kalbos rinkmenos aplanką, arba pagalbos kreipkitės į Autorių!"
|
902 |
-
|
903 |
-
#@ codestyling-localization
|
904 |
-
#: codestyling-localization.php:3065
|
905 |
-
#: codestyling-localization.php:3080
|
906 |
-
msgid "Access Keys:"
|
907 |
-
msgstr "Prieigos Raktai:"
|
908 |
-
|
909 |
-
#@ codestyling-localization
|
910 |
-
#. translators: plugin header field 'Name'
|
911 |
-
#: codestyling-localization.php:0
|
912 |
-
msgid "CodeStyling Localization"
|
913 |
-
msgstr "CodeStyling Localization"
|
914 |
-
|
915 |
-
#@ codestyling-localization
|
916 |
-
#. translators: plugin header field 'PluginURI'
|
917 |
-
#: codestyling-localization.php:0
|
918 |
-
msgid "http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en"
|
919 |
-
msgstr "http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en"
|
920 |
-
|
921 |
-
#@ codestyling-localization
|
922 |
-
#. translators: plugin header field 'Description'
|
923 |
-
#: codestyling-localization.php:0
|
924 |
-
msgid "Now you can freely manage, edit and modify your WordPress language translation files (*.po / *.mo) as usual. You won't need any additional editor have been installed. Also supports WPMU plugins, if WPMU versions has been detected."
|
925 |
-
msgstr "Nuo šiol Jūs galite nevaržomai tvarkyti, redaguoti ir keisti savo WordPress kalbos vertimų rinkmenas (*.po / *.mo), kaip esate įpratęs. Nereikalingas jokio kito redaktoriaus įdiegimas. Taip pat palaikomi WPMU papildiniai, jeigu įmanoma aptikti reikiamą WPMU versiją."
|
926 |
-
|
927 |
-
#@ codestyling-localization
|
928 |
-
#. translators: plugin header field 'Author'
|
929 |
-
#: codestyling-localization.php:0
|
930 |
-
msgid "Heiko Rabe"
|
931 |
-
msgstr "Heiko Rabe"
|
932 |
-
|
933 |
-
#@ codestyling-localization
|
934 |
-
#. translators: plugin header field 'AuthorURI'
|
935 |
-
#: codestyling-localization.php:0
|
936 |
-
msgid "http://www.code-styling.de/english/"
|
937 |
-
msgstr "http://www.code-styling.de/english/"
|
938 |
-
|
939 |
-
#@ codestyling-localization
|
940 |
-
#: codestyling-localization.php:473
|
941 |
-
msgid "<strong>Full Encryped PHP Code: </strong>This plugin consists out of encryped code will be <strong>eval</strong>'d at runtime! It can't be checked against exploitable code pieces. That's why it will become potential target of hidden intrusion."
|
942 |
-
msgstr "<strong>Pilnai užšifruotas PHP kodas:</strong> Šis papildinys susideda iš užšifruoto kodo <strong>apskaičiuoto</strong> paleidimo metu! Jis negali būti dar kartą sutikrintas su šiuo metu veikiančiais šifro fragmentais. Štai kodėl tai gali tapti potencialiu slapto įsibrovimo taikiniu."
|
943 |
-
|
944 |
-
#@ codestyling-localization
|
945 |
-
#: codestyling-localization.php:478
|
946 |
-
msgid "<strong>Textdomain definition: </strong>This plugin provides a textdomain definition at plugin header fields but seems not to load any translation file. If it doesn't show your translation, please contact the plugin Author."
|
947 |
-
msgstr "<strong>Teksto adreso apibrėžimas:</strong> Šis papildinys suteikia galimybę aprašyti teksto adresą papildinio puslapinės antraštės laukeliuose, bet neįkelia jokios vertimo rinkmenos. Jeigu Jums reikalingas vertimas nerodomas, susisiekite su papildinio Autoriumi."
|
948 |
-
|
949 |
-
#@ codestyling-localization
|
950 |
-
#: codestyling-localization.php:1861
|
951 |
-
#: codestyling-localization.php:1931
|
952 |
-
msgid "Security Risk"
|
953 |
-
msgstr "Saugumo Pavojus"
|
954 |
-
|
955 |
-
#@ codestyling-localization
|
956 |
-
#: codestyling-localization.php:2086
|
957 |
-
msgid "Trailing Space"
|
958 |
-
msgstr "Galinis Tarpas"
|
959 |
-
|
960 |
-
#@ codestyling-localization
|
961 |
-
#: codestyling-localization.php:1605
|
962 |
-
msgid "Your translation file doesn't support the <em>multiple textdomains in one translation file</em> extension.<br/>Please re-scan the related source files at the overview page to enable this feature."
|
963 |
-
msgstr "Jūsų vertimo rinkmena nepalaiko <em>daugybės teksto adresų vienoje vertimų rinkmenoje</em> plėtinio. <br/> Kad suaktyvinti šią ypatybę, iš naujo peržvelkite susijusias pirmines rinkmenas apžvalgos puslapyje."
|
964 |
-
|
965 |
-
#@ codestyling-localization
|
966 |
-
#: codestyling-localization.php:1831
|
967 |
-
msgid "enable low memory mode"
|
968 |
-
msgstr "suaktyvinti silpnos atminties būseną"
|
969 |
-
|
970 |
-
#@ codestyling-localization
|
971 |
-
#: codestyling-localization.php:1832
|
972 |
-
msgid "If your Installation is running under low remaining memory conditions, you will face the memory limit error during scan process or opening catalog content. If you hitting your limit, you can enable this special mode. This will try to perform the actions in a slightly different way but that will lead to a considerably slower response times but nevertheless gives no warranty, that it will solve your memory related problems at all cases."
|
973 |
-
msgstr "Jeigu Jūsų Įdiegimo darbai vyksta silpnos atminties būsenoje, peržvelgimo arba katalogo atvėrimo procesų metu, pasitaikys atminties limito klaida. Pasiekęs šią ribą, galite suaktyvinti specialų rėžimą. Bus bandoma atlikti reikiamus veiksmus kitokiais būdais, tačiau tai nulems gerokai prastesnius reakcijos laikus. Bet kuriu atveju, garantijos, jog tai išspręs su serverio atmintimi susijusias problemas nėra."
|
974 |
-
|
975 |
-
#@ codestyling-localization
|
976 |
-
#: codestyling-localization.php:2061
|
977 |
-
msgid "back to overview page »"
|
978 |
-
msgstr "grįžti į apžvalgos puslapį »"
|
979 |
-
|
980 |
-
#@ codestyling-localization
|
981 |
-
#: codestyling-localization.php:2453
|
982 |
-
#, php-format
|
983 |
-
msgid "You are trying to rescan files which expands above your PHP Memory Limit at %s MB during the analysis.<br/>Please enable the <em>low memory mode</em> for scanning this component."
|
984 |
-
msgstr "Jūs bandote iš naujo peržiūrėti rinkmenas, kurios viršija jūsų PHP Atminties Limitą %s megabaitais, analizės metu<br/> Suaktyvinkite <em>silpnos atminties rėžimą</em>, kad galėtume peržiūrėti šį komponentą."
|
985 |
-
|
986 |
-
#@ codestyling-localization
|
987 |
-
#: codestyling-localization.php:2614
|
988 |
-
#, php-format
|
989 |
-
msgid "You are trying to open a translation catalog which expands above your PHP Memory Limit at %s MB during read.<br/>Please enable the <em>low memory mode</em> for opening this components catalog."
|
990 |
-
msgstr "Jūs bandote atverti vertimo katalogą, kuris viršija Jūsų PHP Atminties Limitą %s megabaitais nuskaitymo metu. <br/>Suaktyvinkite <em>silpnos atminties rėžimą</em>, kad galėtume peržiūrėti šio katalogo komponentus."
|
991 |
-
|
992 |
-
#@ codestyling-localization
|
993 |
-
#: codestyling-localization.php:506
|
994 |
-
#: codestyling-localization.php:532
|
995 |
-
msgid "<strong>Textdomain definition: </strong>There are problems to find the used textdomain. It has been taken from existing translation files. If it doesn't work with your install, please contact the Author of this plugin."
|
996 |
-
msgstr "<strong>Tekstinio adreso aprašymas:</strong> Atsirado problemų, ieškant panaudoto teksto adreso. Panaudota informacija iš jau sukurtų vertimų rinkmenų. Jeigu kyla problemų diegiant, susisiekite su šio papildinio Autoriumi."
|
997 |
-
|
998 |
-
#@ codestyling-localization
|
999 |
-
#: codestyling-localization.php:1705
|
1000 |
-
msgid "You are trying to create an empty mo-file without any translations. This is not possible, please translate at least one entry."
|
1001 |
-
msgstr "Jūs bandote sukurti tuščią .mo rinkmeną be jokių vertimų. Tai neįmanoma! Išverskite bent vieną elementą."
|
1002 |
-
|
1003 |
-
#@ codestyling-localization
|
1004 |
-
#: codestyling-localization.php:1836
|
1005 |
-
msgid "Attention:"
|
1006 |
-
msgstr "Dėmesio:"
|
1007 |
-
|
1008 |
-
#@ codestyling-localization
|
1009 |
-
#: codestyling-localization.php:1836
|
1010 |
-
msgid "You have a running version of WP e-Commerce and it has been programmed to deactivate the javascript library prototype.js at each WordPress backend page! I did a work arround that, in case of issues read my article: <a href=\"http://www.code-styling.de/english/wp-e-commerce-breaks-intentionally-other-plugins-or-themes\">WP e-Commerce breaks intentionally other Plugins or Themes</a>"
|
1011 |
-
msgstr "Dabar aktyviai veikianti WordPress e-Komercijos versija sukurta taip, jog kiekvieno WordPress puslapio vidinėje pusėje JavaScript prototipų biblioteka yra deaktyvuojama! Autorius tai padarė, kad būtų išvengtos įvairiausios problemos. Plačiau skaitykite: <a href=\"http://www.code-styling.de/english/wp-e-commerce-breaks-intentionally-other-plugins-or-themes\">WordPress e-Komercijos sprendimas specialiai nutraukia kitų papildinių ir apipavidalinimų veiklą</a>"
|
1012 |
-
|
1013 |
-
#@ codestyling-localization
|
1014 |
-
#. translators: plugin header field 'Version'
|
1015 |
-
#: codestyling-localization.php:0
|
1016 |
-
msgid "1.99.14"
|
1017 |
-
msgstr "1.99.14"
|
1018 |
-
|
1019 |
-
#@ codestyling-localization
|
1020 |
-
#: codestyling-localization.php:699
|
1021 |
-
msgid "<strong>Textdomain Naming Issue: </strong>Author uses a variable to load the textdomain. It will be assumed to be equal to theme name now."
|
1022 |
-
msgstr "<strong>Teksto Adreso Įvardijimo problema:</strong> Autorius naudoja kintamają teksto adreso įkrovimui. Tai nuo šiol bus prilygintas apipavidilinimo pavadinimui."
|
1023 |
-
|
1024 |
-
#@ codestyling-localization
|
1025 |
-
#: codestyling-localization.php:798
|
1026 |
-
msgid "<strong>Textdomain Naming Issue: </strong>Author uses a variable to define the textdomain constant. It will be assumed to be equal to theme name now."
|
1027 |
-
msgstr "<strong>Teksto Adreso Įvardijimo problema:</strong> Autorius naudoja kintamają teksto adreso konstantos apibrėžimui. Tai nuo šiol bus prilyginta apipavidilinimo pavadinimui."
|
1028 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trans/crayon-syntax-highlighter-de_DE.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-de_DE.po
CHANGED
@@ -39,9 +39,9 @@ msgstr "Fix"
|
|
39 |
|
40 |
#: crayon_settings.class.php:152
|
41 |
#: crayon_settings.class.php:156
|
42 |
-
#: crayon_settings_wp.class.php:
|
43 |
-
#: crayon_settings_wp.class.php:
|
44 |
-
#: crayon_settings_wp.class.php:
|
45 |
#@ crayon-syntax-highlighter
|
46 |
msgid "Pixels"
|
47 |
msgstr "Pixels"
|
@@ -105,14 +105,14 @@ msgstr "Bei Doppelklick"
|
|
105 |
msgid "On Single Click"
|
106 |
msgstr "Bei Mausklick"
|
107 |
|
108 |
-
#: crayon_settings.class.php:
|
109 |
#@ crayon-syntax-highlighter
|
110 |
msgid "An error has occurred. Please try again later."
|
111 |
msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
|
112 |
|
113 |
#: crayon_settings_wp.class.php:44
|
114 |
#: crayon_settings_wp.class.php:118
|
115 |
-
#: crayon_settings_wp.class.php:
|
116 |
#: util/tag-editor/crayon_te_content.php:114
|
117 |
#@ crayon-syntax-highlighter
|
118 |
msgid "Settings"
|
@@ -133,257 +133,257 @@ msgstr "Änderungen speichern"
|
|
133 |
msgid "Reset Settings"
|
134 |
msgstr "Einstellungen zurücksetzen"
|
135 |
|
136 |
-
#: crayon_settings_wp.class.php:
|
137 |
#@ crayon-syntax-highlighter
|
138 |
msgid "Height"
|
139 |
msgstr "Höhe"
|
140 |
|
141 |
-
#: crayon_settings_wp.class.php:
|
142 |
#@ crayon-syntax-highlighter
|
143 |
msgid "Width"
|
144 |
msgstr "Breite"
|
145 |
|
146 |
-
#: crayon_settings_wp.class.php:
|
147 |
#@ crayon-syntax-highlighter
|
148 |
msgid "Top Margin"
|
149 |
msgstr "Oberer Rand"
|
150 |
|
151 |
-
#: crayon_settings_wp.class.php:
|
152 |
#@ crayon-syntax-highlighter
|
153 |
msgid "Bottom Margin"
|
154 |
msgstr "Unterer Rand"
|
155 |
|
156 |
-
#: crayon_settings_wp.class.php:
|
157 |
-
#: crayon_settings_wp.class.php:
|
158 |
#@ crayon-syntax-highlighter
|
159 |
msgid "Left Margin"
|
160 |
msgstr "Linker Rand"
|
161 |
|
162 |
-
#: crayon_settings_wp.class.php:
|
163 |
-
#: crayon_settings_wp.class.php:
|
164 |
#@ crayon-syntax-highlighter
|
165 |
msgid "Right Margin"
|
166 |
msgstr "Rechter Rand"
|
167 |
|
168 |
-
#: crayon_settings_wp.class.php:
|
169 |
#@ crayon-syntax-highlighter
|
170 |
msgid "Horizontal Alignment"
|
171 |
msgstr "Horizontale Ausrichtung"
|
172 |
|
173 |
-
#: crayon_settings_wp.class.php:
|
174 |
#@ crayon-syntax-highlighter
|
175 |
msgid "Allow floating elements to surround Crayon"
|
176 |
msgstr "Crayon in Floating Elemente einbetten"
|
177 |
|
178 |
-
#: crayon_settings_wp.class.php:
|
179 |
#@ crayon-syntax-highlighter
|
180 |
msgid "Display the Toolbar"
|
181 |
msgstr "Symbolleiste anzeigen"
|
182 |
|
183 |
-
#: crayon_settings_wp.class.php:
|
184 |
#@ crayon-syntax-highlighter
|
185 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
186 |
msgstr "Versuchen mit Symbolleiste Code zu überlagern statt zu verschieben"
|
187 |
|
188 |
-
#: crayon_settings_wp.class.php:
|
189 |
#@ crayon-syntax-highlighter
|
190 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
191 |
msgstr "Symbolleiste mit Klick umschalten wenn als Overlay"
|
192 |
|
193 |
-
#: crayon_settings_wp.class.php:
|
194 |
#@ crayon-syntax-highlighter
|
195 |
msgid "Delay hiding the toolbar on MouseOut"
|
196 |
msgstr "Nach MouseOut Symbolleiste verzögert ausblenden"
|
197 |
|
198 |
-
#: crayon_settings_wp.class.php:
|
199 |
#@ crayon-syntax-highlighter
|
200 |
msgid "Display the title when provided"
|
201 |
msgstr "Titel anzeigen wenn vorhanden"
|
202 |
|
203 |
-
#: crayon_settings_wp.class.php:
|
204 |
#@ crayon-syntax-highlighter
|
205 |
msgid "Display the language"
|
206 |
msgstr "Anzeige der Sprache"
|
207 |
|
208 |
-
#: crayon_settings_wp.class.php:
|
209 |
#@ crayon-syntax-highlighter
|
210 |
msgid "Display striped code lines"
|
211 |
msgstr "Anzeige gestreifte Codezeilen"
|
212 |
|
213 |
-
#: crayon_settings_wp.class.php:
|
214 |
#@ crayon-syntax-highlighter
|
215 |
msgid "Enable line marking for important lines"
|
216 |
msgstr "wichtige Zeilen markieren"
|
217 |
|
218 |
-
#: crayon_settings_wp.class.php:
|
219 |
#@ crayon-syntax-highlighter
|
220 |
msgid "Display line numbers by default"
|
221 |
msgstr "Zeilennummern standardmäßig anzeigen"
|
222 |
|
223 |
-
#: crayon_settings_wp.class.php:
|
224 |
#@ crayon-syntax-highlighter
|
225 |
msgid "Enable line number toggling"
|
226 |
msgstr "Zeilennummern umschaltbar"
|
227 |
|
228 |
-
#: crayon_settings_wp.class.php:
|
229 |
#@ crayon-syntax-highlighter
|
230 |
msgid "Start line numbers from"
|
231 |
msgstr "Erste Zeilennummer"
|
232 |
|
233 |
-
#: crayon_settings_wp.class.php:
|
234 |
#@ crayon-syntax-highlighter
|
235 |
msgid "When no language is provided, use the fallback"
|
236 |
msgstr "Wenn keine Sprache festgelegt wird als Standard verwenden"
|
237 |
|
238 |
-
#: crayon_settings_wp.class.php:
|
239 |
#@ crayon-syntax-highlighter
|
240 |
msgid "Parsing was successful"
|
241 |
msgstr "Laden erfolgreich"
|
242 |
|
243 |
-
#: crayon_settings_wp.class.php:
|
244 |
#@ crayon-syntax-highlighter
|
245 |
msgid "Parsing was unsuccessful"
|
246 |
msgstr "Laden fehlgeschlagen"
|
247 |
|
248 |
-
#: crayon_settings_wp.class.php:
|
249 |
#, php-format
|
250 |
#@ crayon-syntax-highlighter
|
251 |
msgid "The selected language with id %s could not be loaded"
|
252 |
msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
|
253 |
|
254 |
-
#: crayon_settings_wp.class.php:
|
255 |
#@ crayon-syntax-highlighter
|
256 |
msgid "Show Languages"
|
257 |
msgstr "Zeige Sprachen"
|
258 |
|
259 |
-
#: crayon_settings_wp.class.php:
|
260 |
#@ crayon-syntax-highlighter
|
261 |
msgid "Enable Live Preview"
|
262 |
msgstr "Live-Vorschau aktivieren"
|
263 |
|
264 |
-
#: crayon_settings_wp.class.php:
|
265 |
#, php-format
|
266 |
#@ crayon-syntax-highlighter
|
267 |
msgid "The selected theme with id %s could not be loaded"
|
268 |
msgstr "Das gewählte Theme mit id %s konnte nicht geladen werden"
|
269 |
|
270 |
-
#: crayon_settings_wp.class.php:
|
271 |
#@ crayon-syntax-highlighter
|
272 |
msgid "Custom Font Size"
|
273 |
msgstr "Benutzerdefinierte Schriftgröße"
|
274 |
|
275 |
-
#: crayon_settings_wp.class.php:
|
276 |
#, php-format
|
277 |
#@ crayon-syntax-highlighter
|
278 |
msgid "The selected font with id %s could not be loaded"
|
279 |
msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
|
280 |
|
281 |
-
#: crayon_settings_wp.class.php:
|
282 |
#@ crayon-syntax-highlighter
|
283 |
msgid "Enable plain code view and display"
|
284 |
msgstr "Unformatierte Code-Ansicht ermöglichen"
|
285 |
|
286 |
-
#: crayon_settings_wp.class.php:
|
287 |
#@ crayon-syntax-highlighter
|
288 |
msgid "Enable code copy/paste"
|
289 |
msgstr "Code kopieren/einfügen ermöglichen"
|
290 |
|
291 |
-
#: crayon_settings_wp.class.php:
|
292 |
#@ crayon-syntax-highlighter
|
293 |
msgid "Enable opening code in a window"
|
294 |
msgstr "Code in neuem Fenster anzeigbar machen"
|
295 |
|
296 |
-
#: crayon_settings_wp.class.php:
|
297 |
#@ crayon-syntax-highlighter
|
298 |
msgid "Tab size in spaces"
|
299 |
msgstr "Anzahl Leerzeichen für Tabulator"
|
300 |
|
301 |
-
#: crayon_settings_wp.class.php:
|
302 |
#@ crayon-syntax-highlighter
|
303 |
msgid "Remove whitespace surrounding the shortcode content"
|
304 |
msgstr "Leerzeichen um den Shortcode Inhalt entfernen"
|
305 |
|
306 |
-
#: crayon_settings_wp.class.php:
|
307 |
#@ crayon-syntax-highlighter
|
308 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
309 |
msgstr "Wenn beim Laden von lokalen Dateien ein relativer Pfad für die URL angegeben ist den absoluten Pfad verwenden"
|
310 |
|
311 |
-
#: crayon_settings_wp.class.php:
|
312 |
#@ crayon-syntax-highlighter
|
313 |
msgid "Clear the cache used to store remote code requests"
|
314 |
msgstr "Cache für Remote Code Requests leeren"
|
315 |
|
316 |
-
#: crayon_settings_wp.class.php:
|
317 |
#@ crayon-syntax-highlighter
|
318 |
msgid "Clear Now"
|
319 |
msgstr "Jetzt löschen"
|
320 |
|
321 |
-
#: crayon_settings_wp.class.php:
|
322 |
#@ crayon-syntax-highlighter
|
323 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
324 |
msgstr "Deaktiviere Mausgesten für Touchscreen-Geräte (z.B. MouseOver)"
|
325 |
|
326 |
-
#: crayon_settings_wp.class.php:
|
327 |
#@ crayon-syntax-highlighter
|
328 |
msgid "Disable animations"
|
329 |
msgstr "Deaktiviere Animationen"
|
330 |
|
331 |
-
#: crayon_settings_wp.class.php:
|
332 |
#@ crayon-syntax-highlighter
|
333 |
msgid "Disable runtime stats"
|
334 |
msgstr "Deaktiviere Laufzeit Statistiken"
|
335 |
|
336 |
-
#: crayon_settings_wp.class.php:
|
337 |
#@ crayon-syntax-highlighter
|
338 |
msgid "Log errors for individual Crayons"
|
339 |
msgstr "Protokolliere Fehler für individuelle Crayons"
|
340 |
|
341 |
-
#: crayon_settings_wp.class.php:
|
342 |
#@ crayon-syntax-highlighter
|
343 |
msgid "Log system-wide errors"
|
344 |
msgstr "Protokolliere systemweite Fehler"
|
345 |
|
346 |
-
#: crayon_settings_wp.class.php:
|
347 |
#@ crayon-syntax-highlighter
|
348 |
msgid "Display custom message for errors"
|
349 |
msgstr "Benutzerdefinierte Meldungen für Fehler anzeigen"
|
350 |
|
351 |
-
#: crayon_settings_wp.class.php:
|
352 |
#@ crayon-syntax-highlighter
|
353 |
msgid "Show Log"
|
354 |
msgstr "Protokoll anzeigen"
|
355 |
|
356 |
-
#: crayon_settings_wp.class.php:
|
357 |
#@ crayon-syntax-highlighter
|
358 |
msgid "Clear Log"
|
359 |
msgstr "Protokoll löschen"
|
360 |
|
361 |
-
#: crayon_settings_wp.class.php:
|
362 |
#@ crayon-syntax-highlighter
|
363 |
msgid "Email Admin"
|
364 |
msgstr "E-Mail Admin"
|
365 |
|
366 |
-
#: crayon_settings_wp.class.php:
|
367 |
#@ crayon-syntax-highlighter
|
368 |
msgid "Email Developer"
|
369 |
msgstr "E-Mail Entwickler"
|
370 |
|
371 |
-
#: crayon_settings_wp.class.php:
|
372 |
#@ crayon-syntax-highlighter
|
373 |
msgid "Version"
|
374 |
msgstr "Version"
|
375 |
|
376 |
-
#: crayon_settings_wp.class.php:
|
377 |
#@ crayon-syntax-highlighter
|
378 |
msgid "Developer"
|
379 |
msgstr "Entwickler"
|
380 |
|
381 |
-
#: crayon_settings_wp.class.php:
|
382 |
#@ crayon-syntax-highlighter
|
383 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
384 |
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!"
|
385 |
|
386 |
-
#: crayon_settings_wp.class.php:
|
387 |
#, php-format
|
388 |
#@ crayon-syntax-highlighter
|
389 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
@@ -414,42 +414,42 @@ msgstr "Monatlich"
|
|
414 |
msgid "Immediately"
|
415 |
msgstr "Sofort"
|
416 |
|
417 |
-
#: crayon_settings_wp.class.php:
|
418 |
#@ crayon-syntax-highlighter
|
419 |
msgid "Crayon Help"
|
420 |
msgstr "Crayon Hilfe"
|
421 |
|
422 |
-
#: crayon_settings_wp.class.php:
|
423 |
#@ crayon-syntax-highlighter
|
424 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
425 |
msgstr "Versuchen Crayon CSS und JavaScript nur bei Bedarf zu laden"
|
426 |
|
427 |
-
#: crayon_settings_wp.class.php:
|
428 |
#@ crayon-syntax-highlighter
|
429 |
msgid "Followed by your relative URL."
|
430 |
msgstr "Gefolgt von Ihrer relativen URL."
|
431 |
|
432 |
-
#: crayon_settings_wp.class.php:
|
433 |
#@ crayon-syntax-highlighter
|
434 |
msgid "The log is currently empty."
|
435 |
msgstr "Das Protokoll ist derzeit leer."
|
436 |
|
437 |
-
#: crayon_settings_wp.class.php:
|
438 |
#@ crayon-syntax-highlighter
|
439 |
msgid "The log file exists and is writable."
|
440 |
msgstr "Die Protokolldatei existiert und ist beschreibbar."
|
441 |
|
442 |
-
#: crayon_settings_wp.class.php:
|
443 |
#@ crayon-syntax-highlighter
|
444 |
msgid "The log file exists and is not writable."
|
445 |
msgstr "Die Protokolldatei existiert und ist nicht beschreibbar."
|
446 |
|
447 |
-
#: crayon_settings_wp.class.php:
|
448 |
#@ crayon-syntax-highlighter
|
449 |
msgid "The log file does not exist and is not writable."
|
450 |
msgstr "Die Protokolldatei existiert nicht und ist nicht schreibbar."
|
451 |
|
452 |
-
#: crayon_settings_wp.class.php:
|
453 |
#, php-format
|
454 |
#@ crayon-syntax-highlighter
|
455 |
msgid "%d language has been detected."
|
@@ -457,27 +457,27 @@ msgid_plural "%d languages have been detected."
|
|
457 |
msgstr[0] "%d Sprache wurde erkannt."
|
458 |
msgstr[1] "%d Sprachen wurden erkannt."
|
459 |
|
460 |
-
#: crayon_settings_wp.class.php:
|
461 |
#@ crayon-syntax-highlighter
|
462 |
msgid "Capture <pre> tags as Crayons"
|
463 |
msgstr "<pre> tags wie Crayons behandeln"
|
464 |
|
465 |
-
#: crayon_settings_wp.class.php:
|
466 |
#@ crayon-syntax-highlighter
|
467 |
msgid "Show Mixed Language Icon (+)"
|
468 |
msgstr "Zeige gemischte Sprachen Symbol (+)"
|
469 |
|
470 |
-
#: crayon_settings_wp.class.php:
|
471 |
#@ crayon-syntax-highlighter
|
472 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
473 |
msgstr "Erlaube Hervorhebung gemischter Sprachen mit Trennzeichen und Tags."
|
474 |
|
475 |
-
#: crayon_settings_wp.class.php:
|
476 |
#@ crayon-syntax-highlighter
|
477 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
478 |
msgstr "Mini Tags wie [php][/php] als Crayons behandeln."
|
479 |
|
480 |
-
#: crayon_settings_wp.class.php:
|
481 |
#@ crayon-syntax-highlighter
|
482 |
msgid "Enable [plain][/plain] tag."
|
483 |
msgstr "Aktiviere [plain][/plain] Tag."
|
@@ -487,12 +487,12 @@ msgstr "Aktiviere [plain][/plain] Tag."
|
|
487 |
msgid "Disable Mouse Events"
|
488 |
msgstr "Mausereignisse deaktivieren"
|
489 |
|
490 |
-
#: crayon_settings_wp.class.php:
|
491 |
#@ crayon-syntax-highlighter
|
492 |
msgid "Enable plain code toggling"
|
493 |
msgstr "Umschaltung auf unformatierte Anzeige ermöglichen"
|
494 |
|
495 |
-
#: crayon_settings_wp.class.php:
|
496 |
#@ crayon-syntax-highlighter
|
497 |
msgid "Show the plain code by default"
|
498 |
msgstr "Unformatierten Code standardmäßig anzeigen"
|
@@ -527,115 +527,115 @@ msgstr ""
|
|
527 |
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
528 |
msgstr "Unterstützt mehrere Sprachen und Themes. Hervorhebung von Code aus einer URL, lokalen Datei oder Artikeltext."
|
529 |
|
530 |
-
#: crayon_settings_wp.class.php:
|
531 |
#@ crayon-syntax-highlighter
|
532 |
msgid "Donate"
|
533 |
msgstr "Spenden"
|
534 |
|
535 |
-
#: crayon_settings_wp.class.php:
|
536 |
#@ crayon-syntax-highlighter
|
537 |
msgid "General"
|
538 |
msgstr "Allgemein"
|
539 |
|
540 |
-
#: crayon_settings_wp.class.php:
|
541 |
#@ crayon-syntax-highlighter
|
542 |
msgid "Theme"
|
543 |
msgstr "Theme"
|
544 |
|
545 |
-
#: crayon_settings_wp.class.php:
|
546 |
#@ crayon-syntax-highlighter
|
547 |
msgid "Font"
|
548 |
msgstr "Schriftart"
|
549 |
|
550 |
-
#: crayon_settings_wp.class.php:
|
551 |
#@ crayon-syntax-highlighter
|
552 |
msgid "Metrics"
|
553 |
msgstr "Layout"
|
554 |
|
555 |
-
#: crayon_settings_wp.class.php:
|
556 |
#@ crayon-syntax-highlighter
|
557 |
msgid "Toolbar"
|
558 |
msgstr "Symbolleiste"
|
559 |
|
560 |
-
#: crayon_settings_wp.class.php:
|
561 |
#@ crayon-syntax-highlighter
|
562 |
msgid "Lines"
|
563 |
msgstr "Zeilen"
|
564 |
|
565 |
-
#: crayon_settings_wp.class.php:
|
566 |
#: util/tag-editor/crayon_te_content.php:87
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "Code"
|
569 |
msgstr "Code"
|
570 |
|
571 |
-
#: crayon_settings_wp.class.php:
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "Languages"
|
574 |
msgstr "Sprachen"
|
575 |
|
576 |
-
#: crayon_settings_wp.class.php:
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "Files"
|
579 |
msgstr "Dateien"
|
580 |
|
581 |
-
#: crayon_settings_wp.class.php:
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Misc"
|
584 |
msgstr "Sonstiges"
|
585 |
|
586 |
-
#: crayon_settings_wp.class.php:
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Debug"
|
589 |
msgstr "Debuggen"
|
590 |
|
591 |
-
#: crayon_settings_wp.class.php:
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Errors"
|
594 |
msgstr "Fehler"
|
595 |
|
596 |
-
#: crayon_settings_wp.class.php:
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Log"
|
599 |
msgstr "Protokoll"
|
600 |
|
601 |
-
#: crayon_settings_wp.class.php:
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "About"
|
604 |
msgstr "Über"
|
605 |
|
606 |
-
#: crayon_settings_wp.class.php:
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Enqueue themes in the header (more efficient)."
|
609 |
msgstr "Themes im Header laden (effizienter)."
|
610 |
|
611 |
-
#: crayon_settings_wp.class.php:
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "Enqueue fonts in the header (more efficient)."
|
614 |
msgstr "Schriftarten im Header laden (effizienter)."
|
615 |
|
616 |
-
#: crayon_settings_wp.class.php:
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Loading..."
|
619 |
msgstr "Lade..."
|
620 |
|
621 |
-
#: crayon_settings_wp.class.php:
|
622 |
-
#: crayon_settings_wp.class.php:
|
623 |
#: util/theme-editor/editor.php:14
|
624 |
#@ crayon-syntax-highlighter
|
625 |
msgid "Theme Editor"
|
626 |
msgstr "Thema Editor"
|
627 |
|
628 |
-
#: crayon_settings_wp.class.php:
|
629 |
#@ crayon-syntax-highlighter
|
630 |
msgid "Always display scrollbars"
|
631 |
msgstr "Immer Scrollbalken anzeigen"
|
632 |
|
633 |
-
#: crayon_settings_wp.class.php:
|
634 |
#@ crayon-syntax-highlighter
|
635 |
msgid "Disable enqueuing for page templates that may contain The Loop."
|
636 |
msgstr "Deaktiviere Laden im Header für Themes die The Loop verwenden"
|
637 |
|
638 |
-
#: crayon_settings_wp.class.php:
|
639 |
#@ crayon-syntax-highlighter
|
640 |
msgid "Load Crayons only from the main Wordpress query"
|
641 |
msgstr "Crayons nur aus der main Wordpress query laden"
|
@@ -645,120 +645,114 @@ msgstr "Crayons nur aus der main Wordpress query laden"
|
|
645 |
msgid "Back To Settings"
|
646 |
msgstr "Zurück zu Einstellungen"
|
647 |
|
648 |
-
#: crayon_settings_wp.class.php:
|
649 |
#@ crayon-syntax-highlighter
|
650 |
msgid "Translators"
|
651 |
msgstr "Übersetzer"
|
652 |
|
653 |
-
#: crayon_formatter.class.php:
|
654 |
#@ crayon-syntax-highlighter
|
655 |
msgid "Toggle Plain Code"
|
656 |
msgstr "Unformatierte Code-Ansicht"
|
657 |
|
658 |
-
#: crayon_formatter.class.php:
|
659 |
#@ crayon-syntax-highlighter
|
660 |
msgid "Copy Plain Code"
|
661 |
msgstr "Unformatierten Code kopieren"
|
662 |
|
663 |
-
#: crayon_formatter.class.php:
|
664 |
#@ crayon-syntax-highlighter
|
665 |
msgid "Open Code In New Window"
|
666 |
msgstr "Code in einem neuen Fenster anzeigen"
|
667 |
|
668 |
-
#: crayon_formatter.class.php:
|
669 |
#@ crayon-syntax-highlighter
|
670 |
msgid "Toggle Line Numbers"
|
671 |
msgstr "Zeilennummern"
|
672 |
|
673 |
-
#: crayon_formatter.class.php:
|
674 |
#@ crayon-syntax-highlighter
|
675 |
msgid "Contains Mixed Languages"
|
676 |
msgstr "Enthält verschiedene Sprachen"
|
677 |
|
678 |
-
#: crayon_settings_wp.class.php:
|
679 |
#@ crayon-syntax-highlighter
|
680 |
msgid "Hide Log"
|
681 |
msgstr "Protokoll ausblenden"
|
682 |
|
683 |
-
#: crayon_formatter.class.php:
|
684 |
#, php-format
|
685 |
#@ crayon-syntax-highlighter
|
686 |
msgid "Press %s to Copy, %s to Paste"
|
687 |
msgstr "Drücken Sie %s zum Kopieren, %s zum Einfügen"
|
688 |
|
689 |
-
#: crayon_settings_wp.class.php:
|
690 |
#@ crayon-syntax-highlighter
|
691 |
msgid "Tags"
|
692 |
msgstr "Tags"
|
693 |
|
694 |
-
#: crayon_settings_wp.class.php:
|
695 |
#@ crayon-syntax-highlighter
|
696 |
msgid "Inline Margin"
|
697 |
msgstr "Inline Rand"
|
698 |
|
699 |
-
#: crayon_settings_wp.class.php:
|
700 |
#@ crayon-syntax-highlighter
|
701 |
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
702 |
msgstr "Tags wie {php} {/php} innerhalb Sätzen erkennen."
|
703 |
|
704 |
-
#: crayon_settings_wp.class.php:
|
705 |
#@ crayon-syntax-highlighter
|
706 |
msgid "Capture `backquotes` as <code>"
|
707 |
msgstr "`backquotes` als <code> behandeln"
|
708 |
|
709 |
-
#: crayon_settings_wp.class.php:
|
710 |
#@ crayon-syntax-highlighter
|
711 |
msgid "Allow Crayons inside comments"
|
712 |
msgstr "Crayons innerhalb von Kommentaren erlauben"
|
713 |
|
714 |
-
#: crayon_settings_wp.class.php:
|
715 |
#@ crayon-syntax-highlighter
|
716 |
msgid "Wrap Inline Tags"
|
717 |
msgstr "Inline-Tags umbrechen"
|
718 |
|
719 |
-
#: crayon_settings_wp.class.php:
|
720 |
#@ crayon-syntax-highlighter
|
721 |
msgid "Tag Editor"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: crayon_settings_wp.class.php:
|
725 |
-
#: crayon_settings_wp.class.php:
|
726 |
-
#: crayon_settings_wp.class.php:
|
727 |
-
#: crayon_settings_wp.class.php:689
|
728 |
#: crayon_settings_wp.class.php:690
|
729 |
#: crayon_settings_wp.class.php:691
|
730 |
#: crayon_settings_wp.class.php:692
|
731 |
#: crayon_settings_wp.class.php:693
|
732 |
#: crayon_settings_wp.class.php:694
|
733 |
-
#: crayon_settings_wp.class.php:
|
734 |
-
#: crayon_settings_wp.class.php:
|
735 |
#: crayon_settings_wp.class.php:716
|
|
|
736 |
#@ crayon-syntax-highlighter
|
737 |
msgid "?"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: crayon_settings_wp.class.php:
|
741 |
#@ crayon-syntax-highlighter
|
742 |
msgid "Decode HTML entities in code"
|
743 |
msgstr "HTML entities im code decodieren"
|
744 |
|
745 |
-
#: crayon_settings_wp.class.php:
|
746 |
#@ crayon-syntax-highlighter
|
747 |
msgid "Decode HTML entities in attributes"
|
748 |
msgstr "HTML entities in Attributen decodieren"
|
749 |
|
750 |
-
#: crayon_settings_wp.class.php:
|
751 |
#, php-format
|
752 |
#@ crayon-syntax-highlighter
|
753 |
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
754 |
msgstr "Mit %s in den <pre> class Attributen die Schlüsselworte der Optionen von den Werten trennen"
|
755 |
|
756 |
-
#. translators: plugin header field 'Version'
|
757 |
-
#: crayon_wp.class.php:0
|
758 |
-
#@ crayon-syntax-highlighter
|
759 |
-
msgid "_1.9.0b6"
|
760 |
-
msgstr ""
|
761 |
-
|
762 |
#: util/tag-editor/crayon_tag_editor_wp.class.php:57
|
763 |
#@ crayon-syntax-highlighter
|
764 |
msgid "Add Crayon Code"
|
@@ -861,3 +855,14 @@ msgstr "Nur (gelb hervorgehobene) Änderungen werden zum crayon hinzugefügt."
|
|
861 |
msgid "Future changes to the global settings under %sCrayon > Settings%s won't affect overridden settings."
|
862 |
msgstr "Zukünftige Änderungen der globalen Einstellungen unter %sCrayon > Einstellungen%s ändern nicht die hier gemachten Einstellungen."
|
863 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
#: crayon_settings.class.php:152
|
41 |
#: crayon_settings.class.php:156
|
42 |
+
#: crayon_settings_wp.class.php:541
|
43 |
+
#: crayon_settings_wp.class.php:550
|
44 |
+
#: crayon_settings_wp.class.php:649
|
45 |
#@ crayon-syntax-highlighter
|
46 |
msgid "Pixels"
|
47 |
msgstr "Pixels"
|
105 |
msgid "On Single Click"
|
106 |
msgstr "Bei Mausklick"
|
107 |
|
108 |
+
#: crayon_settings.class.php:196
|
109 |
#@ crayon-syntax-highlighter
|
110 |
msgid "An error has occurred. Please try again later."
|
111 |
msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
|
112 |
|
113 |
#: crayon_settings_wp.class.php:44
|
114 |
#: crayon_settings_wp.class.php:118
|
115 |
+
#: crayon_settings_wp.class.php:802
|
116 |
#: util/tag-editor/crayon_te_content.php:114
|
117 |
#@ crayon-syntax-highlighter
|
118 |
msgid "Settings"
|
133 |
msgid "Reset Settings"
|
134 |
msgstr "Einstellungen zurücksetzen"
|
135 |
|
136 |
+
#: crayon_settings_wp.class.php:518
|
137 |
#@ crayon-syntax-highlighter
|
138 |
msgid "Height"
|
139 |
msgstr "Höhe"
|
140 |
|
141 |
+
#: crayon_settings_wp.class.php:524
|
142 |
#@ crayon-syntax-highlighter
|
143 |
msgid "Width"
|
144 |
msgstr "Breite"
|
145 |
|
146 |
+
#: crayon_settings_wp.class.php:530
|
147 |
#@ crayon-syntax-highlighter
|
148 |
msgid "Top Margin"
|
149 |
msgstr "Oberer Rand"
|
150 |
|
151 |
+
#: crayon_settings_wp.class.php:531
|
152 |
#@ crayon-syntax-highlighter
|
153 |
msgid "Bottom Margin"
|
154 |
msgstr "Unterer Rand"
|
155 |
|
156 |
+
#: crayon_settings_wp.class.php:532
|
157 |
+
#: crayon_settings_wp.class.php:537
|
158 |
#@ crayon-syntax-highlighter
|
159 |
msgid "Left Margin"
|
160 |
msgstr "Linker Rand"
|
161 |
|
162 |
+
#: crayon_settings_wp.class.php:533
|
163 |
+
#: crayon_settings_wp.class.php:537
|
164 |
#@ crayon-syntax-highlighter
|
165 |
msgid "Right Margin"
|
166 |
msgstr "Rechter Rand"
|
167 |
|
168 |
+
#: crayon_settings_wp.class.php:543
|
169 |
#@ crayon-syntax-highlighter
|
170 |
msgid "Horizontal Alignment"
|
171 |
msgstr "Horizontale Ausrichtung"
|
172 |
|
173 |
+
#: crayon_settings_wp.class.php:546
|
174 |
#@ crayon-syntax-highlighter
|
175 |
msgid "Allow floating elements to surround Crayon"
|
176 |
msgstr "Crayon in Floating Elemente einbetten"
|
177 |
|
178 |
+
#: crayon_settings_wp.class.php:556
|
179 |
#@ crayon-syntax-highlighter
|
180 |
msgid "Display the Toolbar"
|
181 |
msgstr "Symbolleiste anzeigen"
|
182 |
|
183 |
+
#: crayon_settings_wp.class.php:559
|
184 |
#@ crayon-syntax-highlighter
|
185 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
186 |
msgstr "Versuchen mit Symbolleiste Code zu überlagern statt zu verschieben"
|
187 |
|
188 |
+
#: crayon_settings_wp.class.php:560
|
189 |
#@ crayon-syntax-highlighter
|
190 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
191 |
msgstr "Symbolleiste mit Klick umschalten wenn als Overlay"
|
192 |
|
193 |
+
#: crayon_settings_wp.class.php:561
|
194 |
#@ crayon-syntax-highlighter
|
195 |
msgid "Delay hiding the toolbar on MouseOut"
|
196 |
msgstr "Nach MouseOut Symbolleiste verzögert ausblenden"
|
197 |
|
198 |
+
#: crayon_settings_wp.class.php:563
|
199 |
#@ crayon-syntax-highlighter
|
200 |
msgid "Display the title when provided"
|
201 |
msgstr "Titel anzeigen wenn vorhanden"
|
202 |
|
203 |
+
#: crayon_settings_wp.class.php:564
|
204 |
#@ crayon-syntax-highlighter
|
205 |
msgid "Display the language"
|
206 |
msgstr "Anzeige der Sprache"
|
207 |
|
208 |
+
#: crayon_settings_wp.class.php:571
|
209 |
#@ crayon-syntax-highlighter
|
210 |
msgid "Display striped code lines"
|
211 |
msgstr "Anzeige gestreifte Codezeilen"
|
212 |
|
213 |
+
#: crayon_settings_wp.class.php:572
|
214 |
#@ crayon-syntax-highlighter
|
215 |
msgid "Enable line marking for important lines"
|
216 |
msgstr "wichtige Zeilen markieren"
|
217 |
|
218 |
+
#: crayon_settings_wp.class.php:573
|
219 |
#@ crayon-syntax-highlighter
|
220 |
msgid "Display line numbers by default"
|
221 |
msgstr "Zeilennummern standardmäßig anzeigen"
|
222 |
|
223 |
+
#: crayon_settings_wp.class.php:574
|
224 |
#@ crayon-syntax-highlighter
|
225 |
msgid "Enable line number toggling"
|
226 |
msgstr "Zeilennummern umschaltbar"
|
227 |
|
228 |
+
#: crayon_settings_wp.class.php:575
|
229 |
#@ crayon-syntax-highlighter
|
230 |
msgid "Start line numbers from"
|
231 |
msgstr "Erste Zeilennummer"
|
232 |
|
233 |
+
#: crayon_settings_wp.class.php:585
|
234 |
#@ crayon-syntax-highlighter
|
235 |
msgid "When no language is provided, use the fallback"
|
236 |
msgstr "Wenn keine Sprache festgelegt wird als Standard verwenden"
|
237 |
|
238 |
+
#: crayon_settings_wp.class.php:592
|
239 |
#@ crayon-syntax-highlighter
|
240 |
msgid "Parsing was successful"
|
241 |
msgstr "Laden erfolgreich"
|
242 |
|
243 |
+
#: crayon_settings_wp.class.php:592
|
244 |
#@ crayon-syntax-highlighter
|
245 |
msgid "Parsing was unsuccessful"
|
246 |
msgstr "Laden fehlgeschlagen"
|
247 |
|
248 |
+
#: crayon_settings_wp.class.php:598
|
249 |
#, php-format
|
250 |
#@ crayon-syntax-highlighter
|
251 |
msgid "The selected language with id %s could not be loaded"
|
252 |
msgstr "Die gewählte Sprache mit der id %s konnte nicht geladen werden"
|
253 |
|
254 |
+
#: crayon_settings_wp.class.php:602
|
255 |
#@ crayon-syntax-highlighter
|
256 |
msgid "Show Languages"
|
257 |
msgstr "Zeige Sprachen"
|
258 |
|
259 |
+
#: crayon_settings_wp.class.php:630
|
260 |
#@ crayon-syntax-highlighter
|
261 |
msgid "Enable Live Preview"
|
262 |
msgstr "Live-Vorschau aktivieren"
|
263 |
|
264 |
+
#: crayon_settings_wp.class.php:635
|
265 |
#, php-format
|
266 |
#@ crayon-syntax-highlighter
|
267 |
msgid "The selected theme with id %s could not be loaded"
|
268 |
msgstr "Das gewählte Theme mit id %s konnte nicht geladen werden"
|
269 |
|
270 |
+
#: crayon_settings_wp.class.php:647
|
271 |
#@ crayon-syntax-highlighter
|
272 |
msgid "Custom Font Size"
|
273 |
msgstr "Benutzerdefinierte Schriftgröße"
|
274 |
|
275 |
+
#: crayon_settings_wp.class.php:652
|
276 |
#, php-format
|
277 |
#@ crayon-syntax-highlighter
|
278 |
msgid "The selected font with id %s could not be loaded"
|
279 |
msgstr "Die ausgewählte Schrift mit der id %s konnte nicht geladen werden"
|
280 |
|
281 |
+
#: crayon_settings_wp.class.php:663
|
282 |
#@ crayon-syntax-highlighter
|
283 |
msgid "Enable plain code view and display"
|
284 |
msgstr "Unformatierte Code-Ansicht ermöglichen"
|
285 |
|
286 |
+
#: crayon_settings_wp.class.php:668
|
287 |
#@ crayon-syntax-highlighter
|
288 |
msgid "Enable code copy/paste"
|
289 |
msgstr "Code kopieren/einfügen ermöglichen"
|
290 |
|
291 |
+
#: crayon_settings_wp.class.php:670
|
292 |
#@ crayon-syntax-highlighter
|
293 |
msgid "Enable opening code in a window"
|
294 |
msgstr "Code in neuem Fenster anzeigbar machen"
|
295 |
|
296 |
+
#: crayon_settings_wp.class.php:672
|
297 |
#@ crayon-syntax-highlighter
|
298 |
msgid "Tab size in spaces"
|
299 |
msgstr "Anzahl Leerzeichen für Tabulator"
|
300 |
|
301 |
+
#: crayon_settings_wp.class.php:681
|
302 |
#@ crayon-syntax-highlighter
|
303 |
msgid "Remove whitespace surrounding the shortcode content"
|
304 |
msgstr "Leerzeichen um den Shortcode Inhalt entfernen"
|
305 |
|
306 |
+
#: crayon_settings_wp.class.php:700
|
307 |
#@ crayon-syntax-highlighter
|
308 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
309 |
msgstr "Wenn beim Laden von lokalen Dateien ein relativer Pfad für die URL angegeben ist den absoluten Pfad verwenden"
|
310 |
|
311 |
+
#: crayon_settings_wp.class.php:713
|
312 |
#@ crayon-syntax-highlighter
|
313 |
msgid "Clear the cache used to store remote code requests"
|
314 |
msgstr "Cache für Remote Code Requests leeren"
|
315 |
|
316 |
+
#: crayon_settings_wp.class.php:715
|
317 |
#@ crayon-syntax-highlighter
|
318 |
msgid "Clear Now"
|
319 |
msgstr "Jetzt löschen"
|
320 |
|
321 |
+
#: crayon_settings_wp.class.php:721
|
322 |
#@ crayon-syntax-highlighter
|
323 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
324 |
msgstr "Deaktiviere Mausgesten für Touchscreen-Geräte (z.B. MouseOver)"
|
325 |
|
326 |
+
#: crayon_settings_wp.class.php:722
|
327 |
#@ crayon-syntax-highlighter
|
328 |
msgid "Disable animations"
|
329 |
msgstr "Deaktiviere Animationen"
|
330 |
|
331 |
+
#: crayon_settings_wp.class.php:723
|
332 |
#@ crayon-syntax-highlighter
|
333 |
msgid "Disable runtime stats"
|
334 |
msgstr "Deaktiviere Laufzeit Statistiken"
|
335 |
|
336 |
+
#: crayon_settings_wp.class.php:729
|
337 |
#@ crayon-syntax-highlighter
|
338 |
msgid "Log errors for individual Crayons"
|
339 |
msgstr "Protokolliere Fehler für individuelle Crayons"
|
340 |
|
341 |
+
#: crayon_settings_wp.class.php:730
|
342 |
#@ crayon-syntax-highlighter
|
343 |
msgid "Log system-wide errors"
|
344 |
msgstr "Protokolliere systemweite Fehler"
|
345 |
|
346 |
+
#: crayon_settings_wp.class.php:731
|
347 |
#@ crayon-syntax-highlighter
|
348 |
msgid "Display custom message for errors"
|
349 |
msgstr "Benutzerdefinierte Meldungen für Fehler anzeigen"
|
350 |
|
351 |
+
#: crayon_settings_wp.class.php:743
|
352 |
#@ crayon-syntax-highlighter
|
353 |
msgid "Show Log"
|
354 |
msgstr "Protokoll anzeigen"
|
355 |
|
356 |
+
#: crayon_settings_wp.class.php:745
|
357 |
#@ crayon-syntax-highlighter
|
358 |
msgid "Clear Log"
|
359 |
msgstr "Protokoll löschen"
|
360 |
|
361 |
+
#: crayon_settings_wp.class.php:746
|
362 |
#@ crayon-syntax-highlighter
|
363 |
msgid "Email Admin"
|
364 |
msgstr "E-Mail Admin"
|
365 |
|
366 |
+
#: crayon_settings_wp.class.php:748
|
367 |
#@ crayon-syntax-highlighter
|
368 |
msgid "Email Developer"
|
369 |
msgstr "E-Mail Entwickler"
|
370 |
|
371 |
+
#: crayon_settings_wp.class.php:764
|
372 |
#@ crayon-syntax-highlighter
|
373 |
msgid "Version"
|
374 |
msgstr "Version"
|
375 |
|
376 |
+
#: crayon_settings_wp.class.php:766
|
377 |
#@ crayon-syntax-highlighter
|
378 |
msgid "Developer"
|
379 |
msgstr "Entwickler"
|
380 |
|
381 |
+
#: crayon_settings_wp.class.php:790
|
382 |
#@ crayon-syntax-highlighter
|
383 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
384 |
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!"
|
385 |
|
386 |
+
#: crayon_settings_wp.class.php:626
|
387 |
#, php-format
|
388 |
#@ crayon-syntax-highlighter
|
389 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
414 |
msgid "Immediately"
|
415 |
msgstr "Sofort"
|
416 |
|
417 |
+
#: crayon_settings_wp.class.php:503
|
418 |
#@ crayon-syntax-highlighter
|
419 |
msgid "Crayon Help"
|
420 |
msgstr "Crayon Hilfe"
|
421 |
|
422 |
+
#: crayon_settings_wp.class.php:716
|
423 |
#@ crayon-syntax-highlighter
|
424 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
425 |
msgstr "Versuchen Crayon CSS und JavaScript nur bei Bedarf zu laden"
|
426 |
|
427 |
+
#: crayon_settings_wp.class.php:703
|
428 |
#@ crayon-syntax-highlighter
|
429 |
msgid "Followed by your relative URL."
|
430 |
msgstr "Gefolgt von Ihrer relativen URL."
|
431 |
|
432 |
+
#: crayon_settings_wp.class.php:750
|
433 |
#@ crayon-syntax-highlighter
|
434 |
msgid "The log is currently empty."
|
435 |
msgstr "Das Protokoll ist derzeit leer."
|
436 |
|
437 |
+
#: crayon_settings_wp.class.php:752
|
438 |
#@ crayon-syntax-highlighter
|
439 |
msgid "The log file exists and is writable."
|
440 |
msgstr "Die Protokolldatei existiert und ist beschreibbar."
|
441 |
|
442 |
+
#: crayon_settings_wp.class.php:752
|
443 |
#@ crayon-syntax-highlighter
|
444 |
msgid "The log file exists and is not writable."
|
445 |
msgstr "Die Protokolldatei existiert und ist nicht beschreibbar."
|
446 |
|
447 |
+
#: crayon_settings_wp.class.php:754
|
448 |
#@ crayon-syntax-highlighter
|
449 |
msgid "The log file does not exist and is not writable."
|
450 |
msgstr "Die Protokolldatei existiert nicht und ist nicht schreibbar."
|
451 |
|
452 |
+
#: crayon_settings_wp.class.php:591
|
453 |
#, php-format
|
454 |
#@ crayon-syntax-highlighter
|
455 |
msgid "%d language has been detected."
|
457 |
msgstr[0] "%d Sprache wurde erkannt."
|
458 |
msgstr[1] "%d Sprachen wurden erkannt."
|
459 |
|
460 |
+
#: crayon_settings_wp.class.php:694
|
461 |
#@ crayon-syntax-highlighter
|
462 |
msgid "Capture <pre> tags as Crayons"
|
463 |
msgstr "<pre> tags wie Crayons behandeln"
|
464 |
|
465 |
+
#: crayon_settings_wp.class.php:685
|
466 |
#@ crayon-syntax-highlighter
|
467 |
msgid "Show Mixed Language Icon (+)"
|
468 |
msgstr "Zeige gemischte Sprachen Symbol (+)"
|
469 |
|
470 |
+
#: crayon_settings_wp.class.php:683
|
471 |
#@ crayon-syntax-highlighter
|
472 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
473 |
msgstr "Erlaube Hervorhebung gemischter Sprachen mit Trennzeichen und Tags."
|
474 |
|
475 |
+
#: crayon_settings_wp.class.php:690
|
476 |
#@ crayon-syntax-highlighter
|
477 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
478 |
msgstr "Mini Tags wie [php][/php] als Crayons behandeln."
|
479 |
|
480 |
+
#: crayon_settings_wp.class.php:695
|
481 |
#@ crayon-syntax-highlighter
|
482 |
msgid "Enable [plain][/plain] tag."
|
483 |
msgstr "Aktiviere [plain][/plain] Tag."
|
487 |
msgid "Disable Mouse Events"
|
488 |
msgstr "Mausereignisse deaktivieren"
|
489 |
|
490 |
+
#: crayon_settings_wp.class.php:666
|
491 |
#@ crayon-syntax-highlighter
|
492 |
msgid "Enable plain code toggling"
|
493 |
msgstr "Umschaltung auf unformatierte Anzeige ermöglichen"
|
494 |
|
495 |
+
#: crayon_settings_wp.class.php:667
|
496 |
#@ crayon-syntax-highlighter
|
497 |
msgid "Show the plain code by default"
|
498 |
msgstr "Unformatierten Code standardmäßig anzeigen"
|
527 |
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
528 |
msgstr "Unterstützt mehrere Sprachen und Themes. Hervorhebung von Code aus einer URL, lokalen Datei oder Artikeltext."
|
529 |
|
530 |
+
#: crayon_settings_wp.class.php:806
|
531 |
#@ crayon-syntax-highlighter
|
532 |
msgid "Donate"
|
533 |
msgstr "Spenden"
|
534 |
|
535 |
+
#: crayon_settings_wp.class.php:301
|
536 |
#@ crayon-syntax-highlighter
|
537 |
msgid "General"
|
538 |
msgstr "Allgemein"
|
539 |
|
540 |
+
#: crayon_settings_wp.class.php:302
|
541 |
#@ crayon-syntax-highlighter
|
542 |
msgid "Theme"
|
543 |
msgstr "Theme"
|
544 |
|
545 |
+
#: crayon_settings_wp.class.php:303
|
546 |
#@ crayon-syntax-highlighter
|
547 |
msgid "Font"
|
548 |
msgstr "Schriftart"
|
549 |
|
550 |
+
#: crayon_settings_wp.class.php:304
|
551 |
#@ crayon-syntax-highlighter
|
552 |
msgid "Metrics"
|
553 |
msgstr "Layout"
|
554 |
|
555 |
+
#: crayon_settings_wp.class.php:305
|
556 |
#@ crayon-syntax-highlighter
|
557 |
msgid "Toolbar"
|
558 |
msgstr "Symbolleiste"
|
559 |
|
560 |
+
#: crayon_settings_wp.class.php:306
|
561 |
#@ crayon-syntax-highlighter
|
562 |
msgid "Lines"
|
563 |
msgstr "Zeilen"
|
564 |
|
565 |
+
#: crayon_settings_wp.class.php:307
|
566 |
#: util/tag-editor/crayon_te_content.php:87
|
567 |
#@ crayon-syntax-highlighter
|
568 |
msgid "Code"
|
569 |
msgstr "Code"
|
570 |
|
571 |
+
#: crayon_settings_wp.class.php:309
|
572 |
#@ crayon-syntax-highlighter
|
573 |
msgid "Languages"
|
574 |
msgstr "Sprachen"
|
575 |
|
576 |
+
#: crayon_settings_wp.class.php:310
|
577 |
#@ crayon-syntax-highlighter
|
578 |
msgid "Files"
|
579 |
msgstr "Dateien"
|
580 |
|
581 |
+
#: crayon_settings_wp.class.php:312
|
582 |
#@ crayon-syntax-highlighter
|
583 |
msgid "Misc"
|
584 |
msgstr "Sonstiges"
|
585 |
|
586 |
+
#: crayon_settings_wp.class.php:315
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Debug"
|
589 |
msgstr "Debuggen"
|
590 |
|
591 |
+
#: crayon_settings_wp.class.php:316
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Errors"
|
594 |
msgstr "Fehler"
|
595 |
|
596 |
+
#: crayon_settings_wp.class.php:317
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Log"
|
599 |
msgstr "Protokoll"
|
600 |
|
601 |
+
#: crayon_settings_wp.class.php:320
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "About"
|
604 |
msgstr "Über"
|
605 |
|
606 |
+
#: crayon_settings_wp.class.php:632
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Enqueue themes in the header (more efficient)."
|
609 |
msgstr "Themes im Header laden (effizienter)."
|
610 |
|
611 |
+
#: crayon_settings_wp.class.php:658
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "Enqueue fonts in the header (more efficient)."
|
614 |
msgstr "Schriftarten im Header laden (effizienter)."
|
615 |
|
616 |
+
#: crayon_settings_wp.class.php:621
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Loading..."
|
619 |
msgstr "Lade..."
|
620 |
|
621 |
+
#: crayon_settings_wp.class.php:621
|
622 |
+
#: crayon_settings_wp.class.php:804
|
623 |
#: util/theme-editor/editor.php:14
|
624 |
#@ crayon-syntax-highlighter
|
625 |
msgid "Theme Editor"
|
626 |
msgstr "Thema Editor"
|
627 |
|
628 |
+
#: crayon_settings_wp.class.php:671
|
629 |
#@ crayon-syntax-highlighter
|
630 |
msgid "Always display scrollbars"
|
631 |
msgstr "Immer Scrollbalken anzeigen"
|
632 |
|
633 |
+
#: crayon_settings_wp.class.php:717
|
634 |
#@ crayon-syntax-highlighter
|
635 |
msgid "Disable enqueuing for page templates that may contain The Loop."
|
636 |
msgstr "Deaktiviere Laden im Header für Themes die The Loop verwenden"
|
637 |
|
638 |
+
#: crayon_settings_wp.class.php:720
|
639 |
#@ crayon-syntax-highlighter
|
640 |
msgid "Load Crayons only from the main Wordpress query"
|
641 |
msgstr "Crayons nur aus der main Wordpress query laden"
|
645 |
msgid "Back To Settings"
|
646 |
msgstr "Zurück zu Einstellungen"
|
647 |
|
648 |
+
#: crayon_settings_wp.class.php:767
|
649 |
#@ crayon-syntax-highlighter
|
650 |
msgid "Translators"
|
651 |
msgstr "Übersetzer"
|
652 |
|
653 |
+
#: crayon_formatter.class.php:266
|
654 |
#@ crayon-syntax-highlighter
|
655 |
msgid "Toggle Plain Code"
|
656 |
msgstr "Unformatierte Code-Ansicht"
|
657 |
|
658 |
+
#: crayon_formatter.class.php:268
|
659 |
#@ crayon-syntax-highlighter
|
660 |
msgid "Copy Plain Code"
|
661 |
msgstr "Unformatierten Code kopieren"
|
662 |
|
663 |
+
#: crayon_formatter.class.php:270
|
664 |
#@ crayon-syntax-highlighter
|
665 |
msgid "Open Code In New Window"
|
666 |
msgstr "Code in einem neuen Fenster anzeigen"
|
667 |
|
668 |
+
#: crayon_formatter.class.php:273
|
669 |
#@ crayon-syntax-highlighter
|
670 |
msgid "Toggle Line Numbers"
|
671 |
msgstr "Zeilennummern"
|
672 |
|
673 |
+
#: crayon_formatter.class.php:279
|
674 |
#@ crayon-syntax-highlighter
|
675 |
msgid "Contains Mixed Languages"
|
676 |
msgstr "Enthält verschiedene Sprachen"
|
677 |
|
678 |
+
#: crayon_settings_wp.class.php:743
|
679 |
#@ crayon-syntax-highlighter
|
680 |
msgid "Hide Log"
|
681 |
msgstr "Protokoll ausblenden"
|
682 |
|
683 |
+
#: crayon_formatter.class.php:268
|
684 |
#, php-format
|
685 |
#@ crayon-syntax-highlighter
|
686 |
msgid "Press %s to Copy, %s to Paste"
|
687 |
msgstr "Drücken Sie %s zum Kopieren, %s zum Einfügen"
|
688 |
|
689 |
+
#: crayon_settings_wp.class.php:308
|
690 |
#@ crayon-syntax-highlighter
|
691 |
msgid "Tags"
|
692 |
msgstr "Tags"
|
693 |
|
694 |
+
#: crayon_settings_wp.class.php:548
|
695 |
#@ crayon-syntax-highlighter
|
696 |
msgid "Inline Margin"
|
697 |
msgstr "Inline Rand"
|
698 |
|
699 |
+
#: crayon_settings_wp.class.php:691
|
700 |
#@ crayon-syntax-highlighter
|
701 |
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
702 |
msgstr "Tags wie {php} {/php} innerhalb Sätzen erkennen."
|
703 |
|
704 |
+
#: crayon_settings_wp.class.php:693
|
705 |
#@ crayon-syntax-highlighter
|
706 |
msgid "Capture `backquotes` as <code>"
|
707 |
msgstr "`backquotes` als <code> behandeln"
|
708 |
|
709 |
+
#: crayon_settings_wp.class.php:718
|
710 |
#@ crayon-syntax-highlighter
|
711 |
msgid "Allow Crayons inside comments"
|
712 |
msgstr "Crayons innerhalb von Kommentaren erlauben"
|
713 |
|
714 |
+
#: crayon_settings_wp.class.php:692
|
715 |
#@ crayon-syntax-highlighter
|
716 |
msgid "Wrap Inline Tags"
|
717 |
msgstr "Inline-Tags umbrechen"
|
718 |
|
719 |
+
#: crayon_settings_wp.class.php:311
|
720 |
#@ crayon-syntax-highlighter
|
721 |
msgid "Tag Editor"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: crayon_settings_wp.class.php:632
|
725 |
+
#: crayon_settings_wp.class.php:658
|
726 |
+
#: crayon_settings_wp.class.php:683
|
|
|
727 |
#: crayon_settings_wp.class.php:690
|
728 |
#: crayon_settings_wp.class.php:691
|
729 |
#: crayon_settings_wp.class.php:692
|
730 |
#: crayon_settings_wp.class.php:693
|
731 |
#: crayon_settings_wp.class.php:694
|
732 |
+
#: crayon_settings_wp.class.php:695
|
733 |
+
#: crayon_settings_wp.class.php:709
|
734 |
#: crayon_settings_wp.class.php:716
|
735 |
+
#: crayon_settings_wp.class.php:717
|
736 |
#@ crayon-syntax-highlighter
|
737 |
msgid "?"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: crayon_settings_wp.class.php:677
|
741 |
#@ crayon-syntax-highlighter
|
742 |
msgid "Decode HTML entities in code"
|
743 |
msgstr "HTML entities im code decodieren"
|
744 |
|
745 |
+
#: crayon_settings_wp.class.php:679
|
746 |
#@ crayon-syntax-highlighter
|
747 |
msgid "Decode HTML entities in attributes"
|
748 |
msgstr "HTML entities in Attributen decodieren"
|
749 |
|
750 |
+
#: crayon_settings_wp.class.php:707
|
751 |
#, php-format
|
752 |
#@ crayon-syntax-highlighter
|
753 |
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
754 |
msgstr "Mit %s in den <pre> class Attributen die Schlüsselworte der Optionen von den Werten trennen"
|
755 |
|
|
|
|
|
|
|
|
|
|
|
|
|
756 |
#: util/tag-editor/crayon_tag_editor_wp.class.php:57
|
757 |
#@ crayon-syntax-highlighter
|
758 |
msgid "Add Crayon Code"
|
855 |
msgid "Future changes to the global settings under %sCrayon > Settings%s won't affect overridden settings."
|
856 |
msgstr "Zukünftige Änderungen der globalen Einstellungen unter %sCrayon > Einstellungen%s ändern nicht die hier gemachten Einstellungen."
|
857 |
|
858 |
+
#: crayon_settings_wp.class.php:719
|
859 |
+
#@ crayon-syntax-highlighter
|
860 |
+
msgid "Remove Crayons from excerpts"
|
861 |
+
msgstr "Auszüge ohne Crayons"
|
862 |
+
|
863 |
+
#. translators: plugin header field 'Version'
|
864 |
+
#: crayon_wp.class.php:0
|
865 |
+
#@ crayon-syntax-highlighter
|
866 |
+
msgid "_1.9.4_beta1"
|
867 |
+
msgstr ""
|
868 |
+
|
trans/crayon-syntax-highlighter-es_ES.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -10,728 +10,1044 @@ msgstr ""
|
|
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: \n"
|
14 |
-
"X-Poedit-Country: \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:
|
18 |
-
"X-
|
19 |
-
"X-Poedit-SearchPath-0:
|
20 |
-
|
21 |
-
|
22 |
-
#:
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
|
29 |
-
#: crayon_settings.class.php:
|
30 |
-
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
|
35 |
-
#: crayon_settings.class.php:
|
36 |
-
|
37 |
msgid "Static"
|
38 |
msgstr "Estático"
|
39 |
|
40 |
-
|
41 |
-
#: crayon_settings.class.php:
|
42 |
-
#:
|
43 |
-
#: crayon_settings_wp.class.php:
|
44 |
-
#: crayon_settings_wp.class.php:
|
45 |
-
|
46 |
msgid "Pixels"
|
47 |
msgstr "Píxeles"
|
48 |
|
49 |
-
|
50 |
-
#: crayon_settings.class.php:
|
51 |
-
|
52 |
msgid "Percent"
|
53 |
msgstr "Por ciento"
|
54 |
|
55 |
-
|
56 |
-
|
57 |
msgid "None"
|
58 |
msgstr "Ninguno"
|
59 |
|
60 |
-
|
61 |
-
|
62 |
msgid "Left"
|
63 |
msgstr "Izquierda"
|
64 |
|
65 |
-
|
66 |
-
|
67 |
msgid "Center"
|
68 |
msgstr "Centro"
|
69 |
|
70 |
-
|
71 |
-
|
72 |
msgid "Right"
|
73 |
msgstr "Derecho"
|
74 |
|
75 |
-
|
76 |
-
#: crayon_settings.class.php:
|
77 |
-
|
78 |
msgid "On MouseOver"
|
79 |
msgstr "Se mueve el ratón"
|
80 |
|
81 |
-
|
82 |
-
#: crayon_settings.class.php:
|
83 |
-
|
84 |
msgid "Always"
|
85 |
msgstr "Siempre"
|
86 |
|
87 |
-
|
88 |
-
#: crayon_settings.class.php:
|
89 |
-
|
90 |
msgid "Never"
|
91 |
msgstr "Nunca"
|
92 |
|
93 |
-
|
94 |
-
|
95 |
msgid "When Found"
|
96 |
msgstr "Cuando se encuentra"
|
97 |
|
98 |
-
|
99 |
-
|
100 |
msgid "On Double Click"
|
101 |
msgstr "Haga doble click en"
|
102 |
|
103 |
-
|
104 |
-
|
105 |
msgid "On Single Click"
|
106 |
msgstr "En solo clic"
|
107 |
|
108 |
-
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
110 |
msgid "An error has occurred. Please try again later."
|
111 |
msgstr "Se produjo un error. Por favor, inténtelo de nuevo más tarde."
|
112 |
|
113 |
-
|
114 |
-
#: crayon_settings_wp.class.php:
|
115 |
-
#: crayon_settings_wp.class.php:
|
116 |
-
|
117 |
msgid "Settings"
|
118 |
msgstr "Configuración"
|
119 |
|
120 |
-
|
121 |
-
|
122 |
msgid "You do not have sufficient permissions to access this page."
|
123 |
msgstr "Usted no tiene permisos suficientes para acceder a esta página."
|
124 |
|
125 |
-
|
126 |
-
|
127 |
msgid "Save Changes"
|
128 |
msgstr "Guardar cambios"
|
129 |
|
130 |
-
|
131 |
-
|
132 |
msgid "Reset Settings"
|
133 |
msgstr "Restablecer configuración"
|
134 |
|
135 |
-
|
136 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Height"
|
138 |
msgstr "Altura"
|
139 |
|
140 |
-
|
141 |
-
|
142 |
msgid "Width"
|
143 |
msgstr "Ancho"
|
144 |
|
145 |
-
|
146 |
-
|
147 |
msgid "Top Margin"
|
148 |
msgstr "Margen superior"
|
149 |
|
150 |
-
|
151 |
-
|
152 |
msgid "Bottom Margin"
|
153 |
msgstr "Margen inferior"
|
154 |
|
155 |
-
|
156 |
-
#: crayon_settings_wp.class.php:
|
157 |
-
|
158 |
msgid "Left Margin"
|
159 |
msgstr "Margen Izquierda"
|
160 |
|
161 |
-
|
162 |
-
#: crayon_settings_wp.class.php:
|
163 |
-
|
164 |
msgid "Right Margin"
|
165 |
msgstr "Margen derecho"
|
166 |
|
167 |
-
|
168 |
-
|
169 |
msgid "Horizontal Alignment"
|
170 |
msgstr "La alineación horizontal"
|
171 |
|
172 |
-
|
173 |
-
|
174 |
msgid "Allow floating elements to surround Crayon"
|
175 |
msgstr "Permitir que los elementos flotantes que rodean Crayon"
|
176 |
|
177 |
-
|
178 |
-
|
|
|
|
|
|
|
|
|
|
|
179 |
msgid "Display the Toolbar"
|
180 |
msgstr "Mostrar la barra de herramientas"
|
181 |
|
182 |
-
|
183 |
-
|
184 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
185 |
msgstr "Superposición de la barra de herramientas de código en lugar de empujar hacia abajo cuando sea posible"
|
186 |
|
187 |
-
|
188 |
-
|
189 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
190 |
msgstr "Activar o desactivar la barra de herramientas en un solo clic cuando se superpone"
|
191 |
|
192 |
-
|
193 |
-
|
194 |
msgid "Delay hiding the toolbar on MouseOut"
|
195 |
msgstr "Delay ocultar la barra de herramientas en MouseOut"
|
196 |
|
197 |
-
|
198 |
-
|
199 |
msgid "Display the title when provided"
|
200 |
msgstr "Mostrar el título cuando se proporcionan"
|
201 |
|
202 |
-
|
203 |
-
|
204 |
msgid "Display the language"
|
205 |
msgstr "Mostrar el lenguaje"
|
206 |
|
207 |
-
|
208 |
-
|
209 |
msgid "Display striped code lines"
|
210 |
msgstr "Mostrar las líneas de código de rayas"
|
211 |
|
212 |
-
|
213 |
-
|
214 |
msgid "Enable line marking for important lines"
|
215 |
msgstr "Activar la línea de marca para las líneas importantes"
|
216 |
|
217 |
-
|
218 |
-
|
219 |
msgid "Display line numbers by default"
|
220 |
msgstr "Mostrar números de línea por defecto"
|
221 |
|
222 |
-
|
223 |
-
|
224 |
msgid "Enable line number toggling"
|
225 |
msgstr "Permiten alternar la línea número"
|
226 |
|
227 |
-
|
228 |
-
|
229 |
msgid "Start line numbers from"
|
230 |
msgstr "Inicio de los números de línea"
|
231 |
|
232 |
-
|
233 |
-
|
234 |
msgid "When no language is provided, use the fallback"
|
235 |
msgstr "Cuando no se proporciona el lenguaje, el uso de la reserva"
|
236 |
|
237 |
-
|
238 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
msgid "Parsing was successful"
|
240 |
msgstr "El análisis se ha realizado correctamente"
|
241 |
|
242 |
-
|
243 |
-
|
244 |
msgid "Parsing was unsuccessful"
|
245 |
msgstr "El análisis no tuvo éxito"
|
246 |
|
247 |
-
|
|
|
248 |
#, php-format
|
249 |
-
#@ crayon-syntax-highlighter
|
250 |
msgid "The selected language with id %s could not be loaded"
|
251 |
msgstr "El idioma seleccionado con el id %s no se pudo cargar"
|
252 |
|
253 |
-
|
254 |
-
|
255 |
msgid "Show Languages"
|
256 |
msgstr "Mostrar Idiomas"
|
257 |
|
258 |
-
|
259 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid "Enable Live Preview"
|
261 |
msgstr "Activar vista previa dinámica"
|
262 |
|
263 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
#, php-format
|
265 |
-
#@ crayon-syntax-highlighter
|
266 |
msgid "The selected theme with id %s could not be loaded"
|
267 |
msgstr "El tema seleccionado con el id %s no se pudo cargar"
|
268 |
|
269 |
-
|
270 |
-
|
271 |
msgid "Custom Font Size"
|
272 |
msgstr "Tamaño de fuente personalizado"
|
273 |
|
274 |
-
|
|
|
275 |
#, php-format
|
276 |
-
#@ crayon-syntax-highlighter
|
277 |
msgid "The selected font with id %s could not be loaded"
|
278 |
msgstr "La fuente seleccionada con id %s no se pudo cargar"
|
279 |
|
280 |
-
|
281 |
-
|
|
|
|
|
|
|
|
|
|
|
282 |
msgid "Enable plain code view and display"
|
283 |
msgstr "Permiten ver el código normal y la pantalla"
|
284 |
|
285 |
-
|
286 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
msgid "Enable code copy/paste"
|
288 |
msgstr "Permiten copiar el código / pegar"
|
289 |
|
290 |
-
|
291 |
-
|
292 |
msgid "Enable opening code in a window"
|
293 |
msgstr "Permitir que el código de apertura de una ventana"
|
294 |
|
295 |
-
|
296 |
-
|
|
|
|
|
|
|
|
|
|
|
297 |
msgid "Tab size in spaces"
|
298 |
msgstr "Tab tamaño en espacios"
|
299 |
|
300 |
-
#: crayon_settings_wp.class.php:
|
301 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
msgid "Remove whitespace surrounding the shortcode content"
|
303 |
msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
|
304 |
|
305 |
-
|
306 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
308 |
msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
|
309 |
|
310 |
-
|
311 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "Clear the cache used to store remote code requests"
|
313 |
msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
|
314 |
|
315 |
-
|
316 |
-
|
317 |
msgid "Clear Now"
|
318 |
msgstr "Limpiar ahora"
|
319 |
|
320 |
-
|
321 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
323 |
msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
|
324 |
|
325 |
-
|
326 |
-
|
327 |
msgid "Disable animations"
|
328 |
msgstr "Desactivar las animaciones"
|
329 |
|
330 |
-
|
331 |
-
|
332 |
msgid "Disable runtime stats"
|
333 |
msgstr "Desactivar tiempo de ejecución de las estadísticas"
|
334 |
|
335 |
-
|
336 |
-
|
337 |
msgid "Log errors for individual Crayons"
|
338 |
msgstr "Errores de registro para cada Crayon"
|
339 |
|
340 |
-
|
341 |
-
|
342 |
msgid "Log system-wide errors"
|
343 |
msgstr "Registro de todo el sistema de los errores"
|
344 |
|
345 |
-
|
346 |
-
|
347 |
msgid "Display custom message for errors"
|
348 |
msgstr "Mostrar mensajes personalizados para los errores"
|
349 |
|
350 |
-
|
351 |
-
|
352 |
msgid "Show Log"
|
353 |
msgstr "Mostrar Registro"
|
354 |
|
355 |
-
|
356 |
-
|
|
|
|
|
|
|
|
|
|
|
357 |
msgid "Clear Log"
|
358 |
msgstr "Borrar Registro"
|
359 |
|
360 |
-
|
361 |
-
|
362 |
msgid "Email Admin"
|
363 |
msgstr "Admin Email"
|
364 |
|
365 |
-
|
366 |
-
|
367 |
msgid "Email Developer"
|
368 |
msgstr "Correo electrónico del desarrollador"
|
369 |
|
370 |
-
|
371 |
-
|
372 |
-
msgid "Version"
|
373 |
-
msgstr "Versión"
|
374 |
-
|
375 |
-
#: crayon_settings_wp.class.php:678
|
376 |
-
#@ crayon-syntax-highlighter
|
377 |
-
msgid "Developer"
|
378 |
-
msgstr "Promotor"
|
379 |
-
|
380 |
-
#: crayon_settings_wp.class.php:701
|
381 |
-
#@ crayon-syntax-highlighter
|
382 |
-
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
383 |
-
msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
|
384 |
-
|
385 |
-
#: crayon_settings_wp.class.php:553
|
386 |
-
#, php-format
|
387 |
-
#@ crayon-syntax-highlighter
|
388 |
-
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
389 |
-
msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
|
390 |
-
|
391 |
-
#: crayon_settings.class.php:106
|
392 |
-
#@ crayon-syntax-highlighter
|
393 |
-
msgid "Hourly"
|
394 |
-
msgstr "Cada hora"
|
395 |
-
|
396 |
-
#: crayon_settings.class.php:106
|
397 |
-
#@ crayon-syntax-highlighter
|
398 |
-
msgid "Daily"
|
399 |
-
msgstr "Diario"
|
400 |
-
|
401 |
-
#: crayon_settings.class.php:107
|
402 |
-
#@ crayon-syntax-highlighter
|
403 |
-
msgid "Weekly"
|
404 |
-
msgstr "Semanal"
|
405 |
-
|
406 |
-
#: crayon_settings.class.php:107
|
407 |
-
#@ crayon-syntax-highlighter
|
408 |
-
msgid "Monthly"
|
409 |
-
msgstr "Mensual"
|
410 |
-
|
411 |
-
#: crayon_settings.class.php:108
|
412 |
-
#@ crayon-syntax-highlighter
|
413 |
-
msgid "Immediately"
|
414 |
-
msgstr "Inmediatamente"
|
415 |
-
|
416 |
-
#: crayon_settings_wp.class.php:424
|
417 |
-
#@ crayon-syntax-highlighter
|
418 |
-
msgid "Crayon Help"
|
419 |
-
msgstr "Crayon Ayuda"
|
420 |
-
|
421 |
-
#: crayon_settings_wp.class.php:628
|
422 |
-
#@ crayon-syntax-highlighter
|
423 |
-
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
424 |
-
msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
|
425 |
-
|
426 |
-
#: crayon_settings_wp.class.php:508
|
427 |
-
#, php-format
|
428 |
-
#@ crayon-syntax-highlighter
|
429 |
-
msgid "%d language has been detected."
|
430 |
-
msgid_plural "%d languages have been detected."
|
431 |
-
msgstr[0] "%d lenguaje que se ha detectado."
|
432 |
-
msgstr[1] "%d idiomas se han detectado."
|
433 |
-
|
434 |
-
#: crayon_settings_wp.class.php:621
|
435 |
-
#@ crayon-syntax-highlighter
|
436 |
-
msgid "Followed by your relative URL."
|
437 |
-
msgstr "Seguido de su dirección URL relativa\t."
|
438 |
-
|
439 |
-
#: crayon_settings_wp.class.php:662
|
440 |
-
#@ crayon-syntax-highlighter
|
441 |
msgid "The log is currently empty."
|
442 |
msgstr "El registro está actualmente vacía."
|
443 |
|
444 |
-
|
445 |
-
|
446 |
msgid "The log file exists and is writable."
|
447 |
msgstr "El archivo de registro existe y se puede escribir."
|
448 |
|
449 |
-
|
450 |
-
|
451 |
msgid "The log file exists and is not writable."
|
452 |
msgstr "El archivo de registro existe y no es modificable."
|
453 |
|
454 |
-
|
455 |
-
|
456 |
msgid "The log file does not exist and is not writable."
|
457 |
msgstr "El archivo de registro no existe y no es modificable."
|
458 |
|
459 |
-
|
460 |
-
|
461 |
-
msgid "
|
462 |
-
msgstr "
|
463 |
-
|
464 |
-
#: crayon_settings_wp.class.php:558
|
465 |
-
#: crayon_settings_wp.class.php:587
|
466 |
-
#: crayon_settings_wp.class.php:603
|
467 |
-
#: crayon_settings_wp.class.php:608
|
468 |
-
#: crayon_settings_wp.class.php:609
|
469 |
-
#: crayon_settings_wp.class.php:610
|
470 |
-
#: crayon_settings_wp.class.php:611
|
471 |
-
#: crayon_settings_wp.class.php:612
|
472 |
-
#: crayon_settings_wp.class.php:613
|
473 |
-
#: crayon_settings_wp.class.php:628
|
474 |
-
#: crayon_settings_wp.class.php:629
|
475 |
-
#@ crayon-syntax-highlighter
|
476 |
-
msgid "Learn More"
|
477 |
-
msgstr "Más información"
|
478 |
-
|
479 |
-
#: crayon_settings_wp.class.php:604
|
480 |
-
#@ crayon-syntax-highlighter
|
481 |
-
msgid "Show Mixed Language Icon (+)"
|
482 |
-
msgstr "Mostrar el icono del lenguaje mixto (+)"
|
483 |
-
|
484 |
-
#: crayon_settings_wp.class.php:603
|
485 |
-
#@ crayon-syntax-highlighter
|
486 |
-
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
487 |
-
msgstr "Permiten destacar mixto del lenguaje con delimitadores y etiquetas."
|
488 |
-
|
489 |
-
#: crayon_settings_wp.class.php:608
|
490 |
-
#@ crayon-syntax-highlighter
|
491 |
-
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
492 |
-
msgstr "Captura Tags Mini como [php][/php] como Crayons."
|
493 |
-
|
494 |
-
#: crayon_settings_wp.class.php:613
|
495 |
-
#@ crayon-syntax-highlighter
|
496 |
-
msgid "Enable [plain][/plain] tag."
|
497 |
-
msgstr "Activar etiqueta [plain][/plain]."
|
498 |
-
|
499 |
-
#: crayon_settings.class.php:174
|
500 |
-
#@ crayon-syntax-highlighter
|
501 |
-
msgid "Disable Mouse Events"
|
502 |
-
msgstr "Desactivar Los Eventos De Ratón"
|
503 |
-
|
504 |
-
#: crayon_settings_wp.class.php:594
|
505 |
-
#@ crayon-syntax-highlighter
|
506 |
-
msgid "Enable plain code toggling"
|
507 |
-
msgstr "Permiten alternar código normal"
|
508 |
-
|
509 |
-
#: crayon_settings_wp.class.php:595
|
510 |
-
#@ crayon-syntax-highlighter
|
511 |
-
msgid "Show the plain code by default"
|
512 |
-
msgstr "Mostrar el código sin formato por defecto"
|
513 |
-
|
514 |
-
#. translators: plugin header field 'Name'
|
515 |
-
#: crayon_wp.class.php:0
|
516 |
-
#@ crayon-syntax-highlighter
|
517 |
-
msgid "Crayon Syntax Highlighter"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#. translators: plugin header field 'PluginURI'
|
521 |
-
#: crayon_wp.class.php:0
|
522 |
-
#@ crayon-syntax-highlighter
|
523 |
-
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
524 |
-
msgstr ""
|
525 |
|
526 |
-
|
527 |
-
#:
|
528 |
-
|
529 |
-
|
530 |
-
msgstr "Soporta múltiples idiomas, temas, destacando a partir de una URL, archivos locales o el texto posterior."
|
531 |
|
532 |
-
|
533 |
-
#:
|
534 |
-
|
535 |
-
|
536 |
-
msgstr ""
|
537 |
|
538 |
-
|
539 |
-
#:
|
540 |
-
|
541 |
-
|
542 |
-
msgstr ""
|
543 |
|
544 |
-
|
545 |
-
|
546 |
msgid "Donate"
|
547 |
msgstr "Donar"
|
548 |
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
|
|
553 |
|
554 |
-
#:
|
555 |
-
|
556 |
-
|
557 |
-
msgstr "Tema"
|
558 |
|
559 |
-
#:
|
560 |
-
|
561 |
-
|
562 |
-
msgstr "Son"
|
563 |
|
564 |
-
#:
|
565 |
-
|
566 |
-
|
567 |
-
msgstr "Métrica"
|
568 |
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
|
|
573 |
|
574 |
-
#:
|
575 |
-
|
576 |
-
|
577 |
-
msgstr "Líneas"
|
578 |
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
|
|
583 |
|
584 |
-
|
585 |
-
|
586 |
-
|
|
|
587 |
msgstr "Idiomas"
|
588 |
|
589 |
-
#:
|
590 |
-
|
591 |
-
|
592 |
-
msgstr "Archivos"
|
593 |
|
594 |
-
#:
|
595 |
-
|
596 |
-
|
597 |
-
msgstr "Misc"
|
598 |
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
#: crayon_settings_wp.class.php:233
|
605 |
-
#@ crayon-syntax-highlighter
|
606 |
-
msgid "Errors"
|
607 |
-
msgstr "Errores"
|
608 |
-
|
609 |
-
#: crayon_settings_wp.class.php:234
|
610 |
-
#@ crayon-syntax-highlighter
|
611 |
-
msgid "Log"
|
612 |
-
msgstr "Log"
|
613 |
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
|
|
618 |
|
619 |
-
#:
|
620 |
-
|
621 |
-
|
622 |
-
msgstr "Enqueue temas en la cabecera (más eficiente)."
|
623 |
|
624 |
-
#:
|
625 |
-
|
626 |
-
|
627 |
-
msgstr "Enqueue fuentes en la cabecera (más eficiente)."
|
628 |
|
629 |
-
#:
|
630 |
-
|
631 |
-
|
632 |
-
msgstr "De carga..."
|
633 |
|
634 |
-
#:
|
635 |
-
|
636 |
-
|
637 |
-
#@ crayon-syntax-highlighter
|
638 |
-
msgid "Theme Editor"
|
639 |
-
msgstr "Tema Editor"
|
640 |
|
641 |
-
#:
|
642 |
-
|
643 |
-
msgid "
|
644 |
-
msgstr "
|
645 |
|
646 |
-
#:
|
647 |
-
|
648 |
-
|
649 |
-
msgstr "Desactivar enqueuing de las plantillas de página que puede contener el Loop."
|
650 |
|
651 |
-
#:
|
652 |
-
|
653 |
-
|
654 |
-
msgstr "Lápices de colores única carga de la principal consulta de Wordpress"
|
655 |
|
656 |
-
#:
|
657 |
-
|
658 |
-
msgid "
|
659 |
-
msgstr "
|
660 |
|
661 |
-
|
662 |
-
|
663 |
msgid "Back To Settings"
|
664 |
msgstr "Volver a la configuración"
|
665 |
|
666 |
-
|
667 |
-
|
668 |
-
msgid "
|
669 |
-
msgstr "
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
msgid "
|
674 |
-
msgstr "
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
msgid "
|
679 |
-
msgstr "
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
msgid "
|
689 |
-
msgstr "
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
msgid "
|
694 |
-
msgstr "
|
695 |
-
|
696 |
-
|
697 |
-
#,
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-06 11:57+1000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \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-SourceCharset: utf-8\n"
|
14 |
+
"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;crayon__;crayon_e;crayon_n\n"
|
15 |
+
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Textdomain-Support: yes\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
|
19 |
+
# @ crayon-syntax-highlighter
|
20 |
+
#: ../crayon_formatter.class.php:266
|
21 |
+
msgid "Toggle Plain Code"
|
22 |
+
msgstr "Código normal cambiar"
|
23 |
+
|
24 |
+
# @ crayon-syntax-highlighter
|
25 |
+
#: ../crayon_formatter.class.php:268
|
26 |
+
#, php-format
|
27 |
+
msgid "Press %s to Copy, %s to Paste"
|
28 |
+
msgstr "Prensa %s para copiar, pegar a %s"
|
29 |
+
|
30 |
+
# @ crayon-syntax-highlighter
|
31 |
+
#: ../crayon_formatter.class.php:268
|
32 |
+
msgid "Copy Plain Code"
|
33 |
+
msgstr "Copia simple código"
|
34 |
+
|
35 |
+
# @ crayon-syntax-highlighter
|
36 |
+
#: ../crayon_formatter.class.php:270
|
37 |
+
msgid "Open Code In New Window"
|
38 |
+
msgstr "Código abierto en una ventana nueva"
|
39 |
+
|
40 |
+
# @ crayon-syntax-highlighter
|
41 |
+
#: ../crayon_formatter.class.php:273
|
42 |
+
msgid "Toggle Line Numbers"
|
43 |
+
msgstr "Números de cambiar de línea"
|
44 |
+
|
45 |
+
# @ crayon-syntax-highlighter
|
46 |
+
#: ../crayon_formatter.class.php:279
|
47 |
+
msgid "Contains Mixed Languages"
|
48 |
+
msgstr "Contiene Idiomas mixtos"
|
49 |
+
|
50 |
+
# @ crayon-syntax-highlighter
|
51 |
+
#: ../crayon_settings.class.php:138
|
52 |
+
msgid "Hourly"
|
53 |
+
msgstr "Cada hora"
|
54 |
+
|
55 |
+
# @ crayon-syntax-highlighter
|
56 |
+
#: ../crayon_settings.class.php:138
|
57 |
+
msgid "Daily"
|
58 |
+
msgstr "Diario"
|
59 |
+
|
60 |
+
# @ crayon-syntax-highlighter
|
61 |
+
#: ../crayon_settings.class.php:139
|
62 |
+
msgid "Weekly"
|
63 |
+
msgstr "Semanal"
|
64 |
+
|
65 |
+
# @ crayon-syntax-highlighter
|
66 |
+
#: ../crayon_settings.class.php:139
|
67 |
+
msgid "Monthly"
|
68 |
+
msgstr "Mensual"
|
69 |
+
|
70 |
+
# @ crayon-syntax-highlighter
|
71 |
+
#: ../crayon_settings.class.php:140
|
72 |
+
msgid "Immediately"
|
73 |
+
msgstr "Inmediatamente"
|
74 |
+
|
75 |
+
# @ crayon-syntax-highlighter
|
76 |
+
#: ../crayon_settings.class.php:150
|
77 |
+
#: ../crayon_settings.class.php:154
|
78 |
msgid "Max"
|
79 |
msgstr "Max"
|
80 |
|
81 |
+
# @ crayon-syntax-highlighter
|
82 |
+
#: ../crayon_settings.class.php:150
|
83 |
+
#: ../crayon_settings.class.php:154
|
84 |
msgid "Min"
|
85 |
msgstr "Min"
|
86 |
|
87 |
+
# @ crayon-syntax-highlighter
|
88 |
+
#: ../crayon_settings.class.php:150
|
89 |
+
#: ../crayon_settings.class.php:154
|
90 |
msgid "Static"
|
91 |
msgstr "Estático"
|
92 |
|
93 |
+
# @ crayon-syntax-highlighter
|
94 |
+
#: ../crayon_settings.class.php:152
|
95 |
+
#: ../crayon_settings.class.php:156
|
96 |
+
#: ../crayon_settings_wp.class.php:541
|
97 |
+
#: ../crayon_settings_wp.class.php:550
|
98 |
+
#: ../crayon_settings_wp.class.php:649
|
99 |
msgid "Pixels"
|
100 |
msgstr "Píxeles"
|
101 |
|
102 |
+
# @ crayon-syntax-highlighter
|
103 |
+
#: ../crayon_settings.class.php:152
|
104 |
+
#: ../crayon_settings.class.php:156
|
105 |
msgid "Percent"
|
106 |
msgstr "Por ciento"
|
107 |
|
108 |
+
# @ crayon-syntax-highlighter
|
109 |
+
#: ../crayon_settings.class.php:165
|
110 |
msgid "None"
|
111 |
msgstr "Ninguno"
|
112 |
|
113 |
+
# @ crayon-syntax-highlighter
|
114 |
+
#: ../crayon_settings.class.php:165
|
115 |
msgid "Left"
|
116 |
msgstr "Izquierda"
|
117 |
|
118 |
+
# @ crayon-syntax-highlighter
|
119 |
+
#: ../crayon_settings.class.php:165
|
120 |
msgid "Center"
|
121 |
msgstr "Centro"
|
122 |
|
123 |
+
# @ crayon-syntax-highlighter
|
124 |
+
#: ../crayon_settings.class.php:165
|
125 |
msgid "Right"
|
126 |
msgstr "Derecho"
|
127 |
|
128 |
+
# @ crayon-syntax-highlighter
|
129 |
+
#: ../crayon_settings.class.php:167
|
130 |
+
#: ../crayon_settings.class.php:189
|
131 |
msgid "On MouseOver"
|
132 |
msgstr "Se mueve el ratón"
|
133 |
|
134 |
+
# @ crayon-syntax-highlighter
|
135 |
+
#: ../crayon_settings.class.php:167
|
136 |
+
#: ../crayon_settings.class.php:173
|
137 |
msgid "Always"
|
138 |
msgstr "Siempre"
|
139 |
|
140 |
+
# @ crayon-syntax-highlighter
|
141 |
+
#: ../crayon_settings.class.php:167
|
142 |
+
#: ../crayon_settings.class.php:173
|
143 |
msgid "Never"
|
144 |
msgstr "Nunca"
|
145 |
|
146 |
+
# @ crayon-syntax-highlighter
|
147 |
+
#: ../crayon_settings.class.php:173
|
148 |
msgid "When Found"
|
149 |
msgstr "Cuando se encuentra"
|
150 |
|
151 |
+
# @ crayon-syntax-highlighter
|
152 |
+
#: ../crayon_settings.class.php:189
|
153 |
msgid "On Double Click"
|
154 |
msgstr "Haga doble click en"
|
155 |
|
156 |
+
# @ crayon-syntax-highlighter
|
157 |
+
#: ../crayon_settings.class.php:189
|
158 |
msgid "On Single Click"
|
159 |
msgstr "En solo clic"
|
160 |
|
161 |
+
# @ crayon-syntax-highlighter
|
162 |
+
#: ../crayon_settings.class.php:189
|
163 |
+
msgid "Disable Mouse Events"
|
164 |
+
msgstr "Desactivar Los Eventos De Ratón"
|
165 |
+
|
166 |
+
# @ crayon-syntax-highlighter
|
167 |
+
#: ../crayon_settings.class.php:196
|
168 |
msgid "An error has occurred. Please try again later."
|
169 |
msgstr "Se produjo un error. Por favor, inténtelo de nuevo más tarde."
|
170 |
|
171 |
+
# @ crayon-syntax-highlighter
|
172 |
+
#: ../crayon_settings_wp.class.php:44
|
173 |
+
#: ../crayon_settings_wp.class.php:118
|
174 |
+
#: ../crayon_settings_wp.class.php:802
|
175 |
msgid "Settings"
|
176 |
msgstr "Configuración"
|
177 |
|
178 |
+
# @ crayon-syntax-highlighter
|
179 |
+
#: ../crayon_settings_wp.class.php:99
|
180 |
msgid "You do not have sufficient permissions to access this page."
|
181 |
msgstr "Usted no tiene permisos suficientes para acceder a esta página."
|
182 |
|
183 |
+
# @ crayon-syntax-highlighter
|
184 |
+
#: ../crayon_settings_wp.class.php:130
|
185 |
msgid "Save Changes"
|
186 |
msgstr "Guardar cambios"
|
187 |
|
188 |
+
# @ crayon-syntax-highlighter
|
189 |
+
#: ../crayon_settings_wp.class.php:136
|
190 |
msgid "Reset Settings"
|
191 |
msgstr "Restablecer configuración"
|
192 |
|
193 |
+
# @ crayon-syntax-highlighter
|
194 |
+
#: ../crayon_settings_wp.class.php:301
|
195 |
+
msgid "General"
|
196 |
+
msgstr "General"
|
197 |
+
|
198 |
+
# @ crayon-syntax-highlighter
|
199 |
+
#: ../crayon_settings_wp.class.php:302
|
200 |
+
msgid "Theme"
|
201 |
+
msgstr "Tema"
|
202 |
+
|
203 |
+
# @ crayon-syntax-highlighter
|
204 |
+
#: ../crayon_settings_wp.class.php:303
|
205 |
+
msgid "Font"
|
206 |
+
msgstr "Son"
|
207 |
+
|
208 |
+
# @ crayon-syntax-highlighter
|
209 |
+
#: ../crayon_settings_wp.class.php:304
|
210 |
+
msgid "Metrics"
|
211 |
+
msgstr "Métrica"
|
212 |
+
|
213 |
+
# @ crayon-syntax-highlighter
|
214 |
+
#: ../crayon_settings_wp.class.php:305
|
215 |
+
msgid "Toolbar"
|
216 |
+
msgstr "Barra de herramientas"
|
217 |
+
|
218 |
+
# @ crayon-syntax-highlighter
|
219 |
+
#: ../crayon_settings_wp.class.php:306
|
220 |
+
msgid "Lines"
|
221 |
+
msgstr "Líneas"
|
222 |
+
|
223 |
+
# @ crayon-syntax-highlighter
|
224 |
+
#: ../crayon_settings_wp.class.php:307
|
225 |
+
msgid "Code"
|
226 |
+
msgstr "Código"
|
227 |
+
|
228 |
+
# @ crayon-syntax-highlighter
|
229 |
+
#: ../crayon_settings_wp.class.php:308
|
230 |
+
msgid "Tags"
|
231 |
+
msgstr "Etiquetas"
|
232 |
+
|
233 |
+
# @ crayon-syntax-highlighter
|
234 |
+
#: ../crayon_settings_wp.class.php:309
|
235 |
+
msgid "Languages"
|
236 |
+
msgstr "Idiomas"
|
237 |
+
|
238 |
+
# @ crayon-syntax-highlighter
|
239 |
+
#: ../crayon_settings_wp.class.php:310
|
240 |
+
msgid "Files"
|
241 |
+
msgstr "Archivos"
|
242 |
+
|
243 |
+
# @ crayon-syntax-highlighter
|
244 |
+
#: ../crayon_settings_wp.class.php:311
|
245 |
+
#, fuzzy
|
246 |
+
msgid "Tag Editor"
|
247 |
+
msgstr "Tema Editor"
|
248 |
+
|
249 |
+
# @ crayon-syntax-highlighter
|
250 |
+
#: ../crayon_settings_wp.class.php:312
|
251 |
+
msgid "Misc"
|
252 |
+
msgstr "Misc"
|
253 |
+
|
254 |
+
# @ crayon-syntax-highlighter
|
255 |
+
#: ../crayon_settings_wp.class.php:315
|
256 |
+
msgid "Debug"
|
257 |
+
msgstr "Depurar"
|
258 |
+
|
259 |
+
# @ crayon-syntax-highlighter
|
260 |
+
#: ../crayon_settings_wp.class.php:316
|
261 |
+
msgid "Errors"
|
262 |
+
msgstr "Errores"
|
263 |
+
|
264 |
+
# @ crayon-syntax-highlighter
|
265 |
+
#: ../crayon_settings_wp.class.php:317
|
266 |
+
msgid "Log"
|
267 |
+
msgstr "Log"
|
268 |
+
|
269 |
+
# @ crayon-syntax-highlighter
|
270 |
+
#: ../crayon_settings_wp.class.php:320
|
271 |
+
msgid "About"
|
272 |
+
msgstr "Sobre"
|
273 |
+
|
274 |
+
# @ crayon-syntax-highlighter
|
275 |
+
#: ../crayon_settings_wp.class.php:503
|
276 |
+
msgid "Crayon Help"
|
277 |
+
msgstr "Crayon Ayuda"
|
278 |
+
|
279 |
+
# @ crayon-syntax-highlighter
|
280 |
+
#: ../crayon_settings_wp.class.php:518
|
281 |
msgid "Height"
|
282 |
msgstr "Altura"
|
283 |
|
284 |
+
# @ crayon-syntax-highlighter
|
285 |
+
#: ../crayon_settings_wp.class.php:524
|
286 |
msgid "Width"
|
287 |
msgstr "Ancho"
|
288 |
|
289 |
+
# @ crayon-syntax-highlighter
|
290 |
+
#: ../crayon_settings_wp.class.php:530
|
291 |
msgid "Top Margin"
|
292 |
msgstr "Margen superior"
|
293 |
|
294 |
+
# @ crayon-syntax-highlighter
|
295 |
+
#: ../crayon_settings_wp.class.php:531
|
296 |
msgid "Bottom Margin"
|
297 |
msgstr "Margen inferior"
|
298 |
|
299 |
+
# @ crayon-syntax-highlighter
|
300 |
+
#: ../crayon_settings_wp.class.php:532
|
301 |
+
#: ../crayon_settings_wp.class.php:537
|
302 |
msgid "Left Margin"
|
303 |
msgstr "Margen Izquierda"
|
304 |
|
305 |
+
# @ crayon-syntax-highlighter
|
306 |
+
#: ../crayon_settings_wp.class.php:533
|
307 |
+
#: ../crayon_settings_wp.class.php:537
|
308 |
msgid "Right Margin"
|
309 |
msgstr "Margen derecho"
|
310 |
|
311 |
+
# @ crayon-syntax-highlighter
|
312 |
+
#: ../crayon_settings_wp.class.php:543
|
313 |
msgid "Horizontal Alignment"
|
314 |
msgstr "La alineación horizontal"
|
315 |
|
316 |
+
# @ crayon-syntax-highlighter
|
317 |
+
#: ../crayon_settings_wp.class.php:546
|
318 |
msgid "Allow floating elements to surround Crayon"
|
319 |
msgstr "Permitir que los elementos flotantes que rodean Crayon"
|
320 |
|
321 |
+
# @ crayon-syntax-highlighter
|
322 |
+
#: ../crayon_settings_wp.class.php:548
|
323 |
+
msgid "Inline Margin"
|
324 |
+
msgstr "Margen en línea"
|
325 |
+
|
326 |
+
# @ crayon-syntax-highlighter
|
327 |
+
#: ../crayon_settings_wp.class.php:556
|
328 |
msgid "Display the Toolbar"
|
329 |
msgstr "Mostrar la barra de herramientas"
|
330 |
|
331 |
+
# @ crayon-syntax-highlighter
|
332 |
+
#: ../crayon_settings_wp.class.php:559
|
333 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
334 |
msgstr "Superposición de la barra de herramientas de código en lugar de empujar hacia abajo cuando sea posible"
|
335 |
|
336 |
+
# @ crayon-syntax-highlighter
|
337 |
+
#: ../crayon_settings_wp.class.php:560
|
338 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
339 |
msgstr "Activar o desactivar la barra de herramientas en un solo clic cuando se superpone"
|
340 |
|
341 |
+
# @ crayon-syntax-highlighter
|
342 |
+
#: ../crayon_settings_wp.class.php:561
|
343 |
msgid "Delay hiding the toolbar on MouseOut"
|
344 |
msgstr "Delay ocultar la barra de herramientas en MouseOut"
|
345 |
|
346 |
+
# @ crayon-syntax-highlighter
|
347 |
+
#: ../crayon_settings_wp.class.php:563
|
348 |
msgid "Display the title when provided"
|
349 |
msgstr "Mostrar el título cuando se proporcionan"
|
350 |
|
351 |
+
# @ crayon-syntax-highlighter
|
352 |
+
#: ../crayon_settings_wp.class.php:564
|
353 |
msgid "Display the language"
|
354 |
msgstr "Mostrar el lenguaje"
|
355 |
|
356 |
+
# @ crayon-syntax-highlighter
|
357 |
+
#: ../crayon_settings_wp.class.php:571
|
358 |
msgid "Display striped code lines"
|
359 |
msgstr "Mostrar las líneas de código de rayas"
|
360 |
|
361 |
+
# @ crayon-syntax-highlighter
|
362 |
+
#: ../crayon_settings_wp.class.php:572
|
363 |
msgid "Enable line marking for important lines"
|
364 |
msgstr "Activar la línea de marca para las líneas importantes"
|
365 |
|
366 |
+
# @ crayon-syntax-highlighter
|
367 |
+
#: ../crayon_settings_wp.class.php:573
|
368 |
msgid "Display line numbers by default"
|
369 |
msgstr "Mostrar números de línea por defecto"
|
370 |
|
371 |
+
# @ crayon-syntax-highlighter
|
372 |
+
#: ../crayon_settings_wp.class.php:574
|
373 |
msgid "Enable line number toggling"
|
374 |
msgstr "Permiten alternar la línea número"
|
375 |
|
376 |
+
# @ crayon-syntax-highlighter
|
377 |
+
#: ../crayon_settings_wp.class.php:575
|
378 |
msgid "Start line numbers from"
|
379 |
msgstr "Inicio de los números de línea"
|
380 |
|
381 |
+
# @ crayon-syntax-highlighter
|
382 |
+
#: ../crayon_settings_wp.class.php:585
|
383 |
msgid "When no language is provided, use the fallback"
|
384 |
msgstr "Cuando no se proporciona el lenguaje, el uso de la reserva"
|
385 |
|
386 |
+
# @ crayon-syntax-highlighter
|
387 |
+
#: ../crayon_settings_wp.class.php:591
|
388 |
+
#, fuzzy, php-format
|
389 |
+
msgid "%d language has been detected."
|
390 |
+
msgstr "%d lenguaje que se ha detectado."
|
391 |
+
|
392 |
+
# @ crayon-syntax-highlighter
|
393 |
+
#: ../crayon_settings_wp.class.php:592
|
394 |
msgid "Parsing was successful"
|
395 |
msgstr "El análisis se ha realizado correctamente"
|
396 |
|
397 |
+
# @ crayon-syntax-highlighter
|
398 |
+
#: ../crayon_settings_wp.class.php:592
|
399 |
msgid "Parsing was unsuccessful"
|
400 |
msgstr "El análisis no tuvo éxito"
|
401 |
|
402 |
+
# @ crayon-syntax-highlighter
|
403 |
+
#: ../crayon_settings_wp.class.php:598
|
404 |
#, php-format
|
|
|
405 |
msgid "The selected language with id %s could not be loaded"
|
406 |
msgstr "El idioma seleccionado con el id %s no se pudo cargar"
|
407 |
|
408 |
+
# @ crayon-syntax-highlighter
|
409 |
+
#: ../crayon_settings_wp.class.php:602
|
410 |
msgid "Show Languages"
|
411 |
msgstr "Mostrar Idiomas"
|
412 |
|
413 |
+
# @ crayon-syntax-highlighter
|
414 |
+
#: ../crayon_settings_wp.class.php:621
|
415 |
+
msgid "Loading..."
|
416 |
+
msgstr "De carga..."
|
417 |
+
|
418 |
+
# @ crayon-syntax-highlighter
|
419 |
+
#: ../crayon_settings_wp.class.php:621
|
420 |
+
#: ../crayon_settings_wp.class.php:804
|
421 |
+
msgid "Theme Editor"
|
422 |
+
msgstr "Tema Editor"
|
423 |
+
|
424 |
+
# @ crayon-syntax-highlighter
|
425 |
+
#: ../crayon_settings_wp.class.php:626
|
426 |
+
#, php-format
|
427 |
+
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
428 |
+
msgstr "Cambiar el %1$slenguaje a usar%2$s para cambiar el código de ejemplo. Las líneas 5-7 están marcados."
|
429 |
+
|
430 |
+
# @ crayon-syntax-highlighter
|
431 |
+
#: ../crayon_settings_wp.class.php:630
|
432 |
msgid "Enable Live Preview"
|
433 |
msgstr "Activar vista previa dinámica"
|
434 |
|
435 |
+
# @ crayon-syntax-highlighter
|
436 |
+
#: ../crayon_settings_wp.class.php:632
|
437 |
+
msgid "Enqueue themes in the header (more efficient)."
|
438 |
+
msgstr "Enqueue temas en la cabecera (más eficiente)."
|
439 |
+
|
440 |
+
#: ../crayon_settings_wp.class.php:632
|
441 |
+
#: ../crayon_settings_wp.class.php:658
|
442 |
+
#: ../crayon_settings_wp.class.php:683
|
443 |
+
#: ../crayon_settings_wp.class.php:690
|
444 |
+
#: ../crayon_settings_wp.class.php:691
|
445 |
+
#: ../crayon_settings_wp.class.php:692
|
446 |
+
#: ../crayon_settings_wp.class.php:693
|
447 |
+
#: ../crayon_settings_wp.class.php:694
|
448 |
+
#: ../crayon_settings_wp.class.php:695
|
449 |
+
#: ../crayon_settings_wp.class.php:709
|
450 |
+
#: ../crayon_settings_wp.class.php:716
|
451 |
+
#: ../crayon_settings_wp.class.php:717
|
452 |
+
msgid "?"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
# @ crayon-syntax-highlighter
|
456 |
+
#: ../crayon_settings_wp.class.php:635
|
457 |
#, php-format
|
|
|
458 |
msgid "The selected theme with id %s could not be loaded"
|
459 |
msgstr "El tema seleccionado con el id %s no se pudo cargar"
|
460 |
|
461 |
+
# @ crayon-syntax-highlighter
|
462 |
+
#: ../crayon_settings_wp.class.php:647
|
463 |
msgid "Custom Font Size"
|
464 |
msgstr "Tamaño de fuente personalizado"
|
465 |
|
466 |
+
# @ crayon-syntax-highlighter
|
467 |
+
#: ../crayon_settings_wp.class.php:652
|
468 |
#, php-format
|
|
|
469 |
msgid "The selected font with id %s could not be loaded"
|
470 |
msgstr "La fuente seleccionada con id %s no se pudo cargar"
|
471 |
|
472 |
+
# @ crayon-syntax-highlighter
|
473 |
+
#: ../crayon_settings_wp.class.php:658
|
474 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
475 |
+
msgstr "Enqueue fuentes en la cabecera (más eficiente)."
|
476 |
+
|
477 |
+
# @ crayon-syntax-highlighter
|
478 |
+
#: ../crayon_settings_wp.class.php:663
|
479 |
msgid "Enable plain code view and display"
|
480 |
msgstr "Permiten ver el código normal y la pantalla"
|
481 |
|
482 |
+
# @ crayon-syntax-highlighter
|
483 |
+
#: ../crayon_settings_wp.class.php:666
|
484 |
+
msgid "Enable plain code toggling"
|
485 |
+
msgstr "Permiten alternar código normal"
|
486 |
+
|
487 |
+
# @ crayon-syntax-highlighter
|
488 |
+
#: ../crayon_settings_wp.class.php:667
|
489 |
+
msgid "Show the plain code by default"
|
490 |
+
msgstr "Mostrar el código sin formato por defecto"
|
491 |
+
|
492 |
+
# @ crayon-syntax-highlighter
|
493 |
+
#: ../crayon_settings_wp.class.php:668
|
494 |
msgid "Enable code copy/paste"
|
495 |
msgstr "Permiten copiar el código / pegar"
|
496 |
|
497 |
+
# @ crayon-syntax-highlighter
|
498 |
+
#: ../crayon_settings_wp.class.php:670
|
499 |
msgid "Enable opening code in a window"
|
500 |
msgstr "Permitir que el código de apertura de una ventana"
|
501 |
|
502 |
+
# @ crayon-syntax-highlighter
|
503 |
+
#: ../crayon_settings_wp.class.php:671
|
504 |
+
msgid "Always display scrollbars"
|
505 |
+
msgstr "Siempre mostrar barras de desplazamiento"
|
506 |
+
|
507 |
+
# @ crayon-syntax-highlighter
|
508 |
+
#: ../crayon_settings_wp.class.php:672
|
509 |
msgid "Tab size in spaces"
|
510 |
msgstr "Tab tamaño en espacios"
|
511 |
|
512 |
+
#: ../crayon_settings_wp.class.php:677
|
513 |
+
msgid "Decode HTML entities in code"
|
514 |
+
msgstr "Descifrar las entidades HTML en el código"
|
515 |
+
|
516 |
+
#: ../crayon_settings_wp.class.php:679
|
517 |
+
msgid "Decode HTML entities in attributes"
|
518 |
+
msgstr "Descifrar las entidades HTML en los atributos"
|
519 |
+
|
520 |
+
# @ crayon-syntax-highlighter
|
521 |
+
#: ../crayon_settings_wp.class.php:681
|
522 |
msgid "Remove whitespace surrounding the shortcode content"
|
523 |
msgstr "Eliminar espacios en blanco que rodea el contenido abreviado"
|
524 |
|
525 |
+
# @ crayon-syntax-highlighter
|
526 |
+
#: ../crayon_settings_wp.class.php:683
|
527 |
+
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
528 |
+
msgstr "Permiten destacar mixto del lenguaje con delimitadores y etiquetas."
|
529 |
+
|
530 |
+
# @ crayon-syntax-highlighter
|
531 |
+
#: ../crayon_settings_wp.class.php:685
|
532 |
+
msgid "Show Mixed Language Icon (+)"
|
533 |
+
msgstr "Mostrar el icono del lenguaje mixto (+)"
|
534 |
+
|
535 |
+
# @ crayon-syntax-highlighter
|
536 |
+
#: ../crayon_settings_wp.class.php:690
|
537 |
+
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
538 |
+
msgstr "Captura Tags Mini como [php][/php] como Crayons."
|
539 |
+
|
540 |
+
# @ crayon-syntax-highlighter
|
541 |
+
#: ../crayon_settings_wp.class.php:691
|
542 |
+
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
543 |
+
msgstr "Captura de etiquetas en línea, como {php} {/php} en el interior oraciones."
|
544 |
+
|
545 |
+
# @ crayon-syntax-highlighter
|
546 |
+
#: ../crayon_settings_wp.class.php:692
|
547 |
+
msgid "Wrap Inline Tags"
|
548 |
+
msgstr "Envuelva en Línea Tags"
|
549 |
+
|
550 |
+
# @ crayon-syntax-highlighter
|
551 |
+
#: ../crayon_settings_wp.class.php:693
|
552 |
+
msgid "Capture `backquotes` as <code>"
|
553 |
+
msgstr "Captura `backquotes` como <code>"
|
554 |
+
|
555 |
+
# @ crayon-syntax-highlighter
|
556 |
+
#: ../crayon_settings_wp.class.php:694
|
557 |
+
msgid "Capture <pre> tags as Crayons"
|
558 |
+
msgstr "Captura de etiquetas <pre> como Crayons"
|
559 |
+
|
560 |
+
# @ crayon-syntax-highlighter
|
561 |
+
#: ../crayon_settings_wp.class.php:695
|
562 |
+
msgid "Enable [plain][/plain] tag."
|
563 |
+
msgstr "Activar etiqueta [plain][/plain]."
|
564 |
+
|
565 |
+
# @ crayon-syntax-highlighter
|
566 |
+
#: ../crayon_settings_wp.class.php:700
|
567 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
568 |
msgstr "Al cargar los archivos locales y una ruta relativa para la dirección URL, utilice la ruta absoluta"
|
569 |
|
570 |
+
# @ crayon-syntax-highlighter
|
571 |
+
#: ../crayon_settings_wp.class.php:703
|
572 |
+
msgid "Followed by your relative URL."
|
573 |
+
msgstr "Seguido de su dirección URL relativa\t."
|
574 |
+
|
575 |
+
#: ../crayon_settings_wp.class.php:707
|
576 |
+
#, php-format
|
577 |
+
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
578 |
+
msgstr "Utilice %s para separar los nombres de ajuste de los valores en el <pre> atributo de la clase"
|
579 |
+
|
580 |
+
# @ crayon-syntax-highlighter
|
581 |
+
#: ../crayon_settings_wp.class.php:713
|
582 |
msgid "Clear the cache used to store remote code requests"
|
583 |
msgstr "Borrar la caché utiliza para almacenar las solicitudes de código remoto"
|
584 |
|
585 |
+
# @ crayon-syntax-highlighter
|
586 |
+
#: ../crayon_settings_wp.class.php:715
|
587 |
msgid "Clear Now"
|
588 |
msgstr "Limpiar ahora"
|
589 |
|
590 |
+
# @ crayon-syntax-highlighter
|
591 |
+
#: ../crayon_settings_wp.class.php:716
|
592 |
+
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
593 |
+
msgstr "Intento de cargar CSS y JavaScript Crayón sólo cuando sea necesario"
|
594 |
+
|
595 |
+
# @ crayon-syntax-highlighter
|
596 |
+
#: ../crayon_settings_wp.class.php:717
|
597 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
598 |
+
msgstr "Desactivar enqueuing de las plantillas de página que puede contener el Loop."
|
599 |
+
|
600 |
+
# @ crayon-syntax-highlighter
|
601 |
+
#: ../crayon_settings_wp.class.php:718
|
602 |
+
msgid "Allow Crayons inside comments"
|
603 |
+
msgstr "Permitir Crayons dentro de los comentarios"
|
604 |
+
|
605 |
+
#: ../crayon_settings_wp.class.php:719
|
606 |
+
msgid "Remove Crayons from excerpts"
|
607 |
+
msgstr "Retire Crayones de extractos"
|
608 |
+
|
609 |
+
# @ crayon-syntax-highlighter
|
610 |
+
#: ../crayon_settings_wp.class.php:720
|
611 |
+
msgid "Load Crayons only from the main Wordpress query"
|
612 |
+
msgstr "Lápices de colores única carga de la principal consulta de Wordpress"
|
613 |
+
|
614 |
+
# @ crayon-syntax-highlighter
|
615 |
+
#: ../crayon_settings_wp.class.php:721
|
616 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
617 |
msgstr "Desactivar los gestos del ratón para dispositivos con pantalla táctil (por ejemplo, MouseOver)"
|
618 |
|
619 |
+
# @ crayon-syntax-highlighter
|
620 |
+
#: ../crayon_settings_wp.class.php:722
|
621 |
msgid "Disable animations"
|
622 |
msgstr "Desactivar las animaciones"
|
623 |
|
624 |
+
# @ crayon-syntax-highlighter
|
625 |
+
#: ../crayon_settings_wp.class.php:723
|
626 |
msgid "Disable runtime stats"
|
627 |
msgstr "Desactivar tiempo de ejecución de las estadísticas"
|
628 |
|
629 |
+
# @ crayon-syntax-highlighter
|
630 |
+
#: ../crayon_settings_wp.class.php:729
|
631 |
msgid "Log errors for individual Crayons"
|
632 |
msgstr "Errores de registro para cada Crayon"
|
633 |
|
634 |
+
# @ crayon-syntax-highlighter
|
635 |
+
#: ../crayon_settings_wp.class.php:730
|
636 |
msgid "Log system-wide errors"
|
637 |
msgstr "Registro de todo el sistema de los errores"
|
638 |
|
639 |
+
# @ crayon-syntax-highlighter
|
640 |
+
#: ../crayon_settings_wp.class.php:731
|
641 |
msgid "Display custom message for errors"
|
642 |
msgstr "Mostrar mensajes personalizados para los errores"
|
643 |
|
644 |
+
# @ crayon-syntax-highlighter
|
645 |
+
#: ../crayon_settings_wp.class.php:743
|
646 |
msgid "Show Log"
|
647 |
msgstr "Mostrar Registro"
|
648 |
|
649 |
+
# @ crayon-syntax-highlighter
|
650 |
+
#: ../crayon_settings_wp.class.php:743
|
651 |
+
msgid "Hide Log"
|
652 |
+
msgstr "Ocultar Conectarse"
|
653 |
+
|
654 |
+
# @ crayon-syntax-highlighter
|
655 |
+
#: ../crayon_settings_wp.class.php:745
|
656 |
msgid "Clear Log"
|
657 |
msgstr "Borrar Registro"
|
658 |
|
659 |
+
# @ crayon-syntax-highlighter
|
660 |
+
#: ../crayon_settings_wp.class.php:746
|
661 |
msgid "Email Admin"
|
662 |
msgstr "Admin Email"
|
663 |
|
664 |
+
# @ crayon-syntax-highlighter
|
665 |
+
#: ../crayon_settings_wp.class.php:748
|
666 |
msgid "Email Developer"
|
667 |
msgstr "Correo electrónico del desarrollador"
|
668 |
|
669 |
+
# @ crayon-syntax-highlighter
|
670 |
+
#: ../crayon_settings_wp.class.php:750
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
671 |
msgid "The log is currently empty."
|
672 |
msgstr "El registro está actualmente vacía."
|
673 |
|
674 |
+
# @ crayon-syntax-highlighter
|
675 |
+
#: ../crayon_settings_wp.class.php:752
|
676 |
msgid "The log file exists and is writable."
|
677 |
msgstr "El archivo de registro existe y se puede escribir."
|
678 |
|
679 |
+
# @ crayon-syntax-highlighter
|
680 |
+
#: ../crayon_settings_wp.class.php:752
|
681 |
msgid "The log file exists and is not writable."
|
682 |
msgstr "El archivo de registro existe y no es modificable."
|
683 |
|
684 |
+
# @ crayon-syntax-highlighter
|
685 |
+
#: ../crayon_settings_wp.class.php:754
|
686 |
msgid "The log file does not exist and is not writable."
|
687 |
msgstr "El archivo de registro no existe y no es modificable."
|
688 |
|
689 |
+
# @ crayon-syntax-highlighter
|
690 |
+
#: ../crayon_settings_wp.class.php:764
|
691 |
+
msgid "Version"
|
692 |
+
msgstr "Versión"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
693 |
|
694 |
+
# @ crayon-syntax-highlighter
|
695 |
+
#: ../crayon_settings_wp.class.php:766
|
696 |
+
msgid "Developer"
|
697 |
+
msgstr "Promotor"
|
|
|
698 |
|
699 |
+
# @ crayon-syntax-highlighter
|
700 |
+
#: ../crayon_settings_wp.class.php:767
|
701 |
+
msgid "Translators"
|
702 |
+
msgstr "Traductores"
|
|
|
703 |
|
704 |
+
# @ crayon-syntax-highlighter
|
705 |
+
#: ../crayon_settings_wp.class.php:790
|
706 |
+
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
707 |
+
msgstr "El resultado de incontables horas de duro trabajo durante muchos meses. Es un proyecto en curso, me mantienen motivado!"
|
|
|
708 |
|
709 |
+
# @ crayon-syntax-highlighter
|
710 |
+
#: ../crayon_settings_wp.class.php:806
|
711 |
msgid "Donate"
|
712 |
msgstr "Donar"
|
713 |
|
714 |
+
# @ crayon-syntax-highlighter
|
715 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:57
|
716 |
+
#, fuzzy
|
717 |
+
msgid "Add Crayon Code"
|
718 |
+
msgstr "Crayon Ayuda"
|
719 |
|
720 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:58
|
721 |
+
msgid "Edit Crayon Code"
|
722 |
+
msgstr "Editar Crayon Código"
|
|
|
723 |
|
724 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:59
|
725 |
+
msgid "Add"
|
726 |
+
msgstr "Añadir"
|
|
|
727 |
|
728 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:60
|
729 |
+
msgid "Save"
|
730 |
+
msgstr "Ahorrar"
|
|
|
731 |
|
732 |
+
# @ crayon-syntax-highlighter
|
733 |
+
#: ../util/tag-editor/crayon_te_content.php:65
|
734 |
+
#, fuzzy
|
735 |
+
msgid "Title"
|
736 |
+
msgstr "Archivos"
|
737 |
|
738 |
+
#: ../util/tag-editor/crayon_te_content.php:67
|
739 |
+
msgid "A short description"
|
740 |
+
msgstr "Una breve descripción"
|
|
|
741 |
|
742 |
+
# @ crayon-syntax-highlighter
|
743 |
+
#: ../util/tag-editor/crayon_te_content.php:70
|
744 |
+
#, fuzzy
|
745 |
+
msgid "Inline"
|
746 |
+
msgstr "Margen en línea"
|
747 |
|
748 |
+
# @ crayon-syntax-highlighter
|
749 |
+
#: ../util/tag-editor/crayon_te_content.php:75
|
750 |
+
#, fuzzy
|
751 |
+
msgid "Language"
|
752 |
msgstr "Idiomas"
|
753 |
|
754 |
+
#: ../util/tag-editor/crayon_te_content.php:78
|
755 |
+
msgid "Marked Lines"
|
756 |
+
msgstr "líneas marcadas"
|
|
|
757 |
|
758 |
+
#: ../util/tag-editor/crayon_te_content.php:79
|
759 |
+
msgid "(e.g. 1,2,3-5)"
|
760 |
+
msgstr "(por ejemplo, 1,2,3-5)"
|
|
|
761 |
|
762 |
+
# @ crayon-syntax-highlighter
|
763 |
+
#: ../util/tag-editor/crayon_te_content.php:82
|
764 |
+
#, fuzzy
|
765 |
+
msgid "Disable Highlighting"
|
766 |
+
msgstr "Desactivar las animaciones"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
767 |
|
768 |
+
# @ crayon-syntax-highlighter
|
769 |
+
#: ../util/tag-editor/crayon_te_content.php:87
|
770 |
+
#, fuzzy
|
771 |
+
msgid "Clear"
|
772 |
+
msgstr "Limpiar ahora"
|
773 |
|
774 |
+
#: ../util/tag-editor/crayon_te_content.php:88
|
775 |
+
msgid "Paste your code here, or type it in manually."
|
776 |
+
msgstr "Copia y pega tu código aquí, o escriba en forma manual."
|
|
|
777 |
|
778 |
+
#: ../util/tag-editor/crayon_te_content.php:91
|
779 |
+
msgid "URL"
|
780 |
+
msgstr ""
|
|
|
781 |
|
782 |
+
#: ../util/tag-editor/crayon_te_content.php:93
|
783 |
+
msgid "Relative local path or absolute URL"
|
784 |
+
msgstr "Ruta de acceso relativa local o dirección URL absoluta"
|
|
|
785 |
|
786 |
+
#: ../util/tag-editor/crayon_te_content.php:96
|
787 |
+
msgid "If the URL fails to load, the code above will be shown instead. If no code exists, an error is shown."
|
788 |
+
msgstr "Si la URL no se carga, el código anterior se mostrará en su lugar. Si no existe ningún código, se muestra un error."
|
|
|
|
|
|
|
789 |
|
790 |
+
#: ../util/tag-editor/crayon_te_content.php:98
|
791 |
+
#, php-format
|
792 |
+
msgid "If a relative local path is given it will be appended to %s - which is defined in %sCrayon > Settings > Files%s."
|
793 |
+
msgstr "Si una ruta local relativa se da que se anexará al %s - que se define en %sCrayon > Configuración > Archivos%s."
|
794 |
|
795 |
+
#: ../util/tag-editor/crayon_te_content.php:117
|
796 |
+
msgid "Change the following settings to override their global values."
|
797 |
+
msgstr "Cambie las siguientes configuraciones para anular sus valores globales."
|
|
|
798 |
|
799 |
+
#: ../util/tag-editor/crayon_te_content.php:119
|
800 |
+
msgid "Only changes (shown yellow) are applied."
|
801 |
+
msgstr "Sólo los cambios (que se muestra de color amarillo) se aplican."
|
|
|
802 |
|
803 |
+
#: ../util/tag-editor/crayon_te_content.php:121
|
804 |
+
#, php-format
|
805 |
+
msgid "Future changes to the global settings under %sCrayon > Settings%s won't affect overridden settings."
|
806 |
+
msgstr "Los futuros cambios a la configuración global en %sCrayon > Configuración%s no afecta a la configuración reemplazados."
|
807 |
|
808 |
+
# @ crayon-syntax-highlighter
|
809 |
+
#: ../util/theme-editor/editor.php:16
|
810 |
msgid "Back To Settings"
|
811 |
msgstr "Volver a la configuración"
|
812 |
|
813 |
+
# @ crayon-syntax-highlighter
|
814 |
+
#, fuzzy
|
815 |
+
#~ msgid "History"
|
816 |
+
#~ msgstr "Cada hora"
|
817 |
+
|
818 |
+
# @ crayon-syntax-highlighter
|
819 |
+
#, fuzzy
|
820 |
+
#~ msgid "You do not have sufficient permission to moderate comments."
|
821 |
+
#~ msgstr "Usted no tiene permisos suficientes para acceder a esta página."
|
822 |
+
|
823 |
+
# @ crayon-syntax-highlighter
|
824 |
+
#, fuzzy
|
825 |
+
#~ msgid "Translations"
|
826 |
+
#~ msgstr "Traductores"
|
827 |
+
|
828 |
+
# @ crayon-syntax-highlighter
|
829 |
+
#, fuzzy
|
830 |
+
#~ msgid "Pro Version"
|
831 |
+
#~ msgstr "Versión"
|
832 |
+
|
833 |
+
# @ crayon-syntax-highlighter
|
834 |
+
#, fuzzy
|
835 |
+
#~ msgid "Reset Settings to Defaults"
|
836 |
+
#~ msgstr "Restablecer configuración"
|
837 |
+
|
838 |
+
# @ crayon-syntax-highlighter
|
839 |
+
#, fuzzy
|
840 |
+
#~ msgid "You do not have permission to manage translation files."
|
841 |
+
#~ msgstr "Usted no tiene permisos suficientes para acceder a esta página."
|
842 |
+
|
843 |
+
# @ crayon-syntax-highlighter
|
844 |
+
#, fuzzy
|
845 |
+
#~ msgid "Last-Translator"
|
846 |
+
#~ msgstr "Traductores"
|
847 |
+
|
848 |
+
# @ crayon-syntax-highlighter
|
849 |
+
#, fuzzy
|
850 |
+
#~ msgid "Language Target"
|
851 |
+
#~ msgstr "Idiomas"
|
852 |
+
|
853 |
+
# @ crayon-syntax-highlighter
|
854 |
+
#, fuzzy
|
855 |
+
#~ msgid "You do not have the permission to create the file '%s'."
|
856 |
+
#~ msgstr "Usted no tiene permisos suficientes para acceder a esta página."
|
857 |
+
|
858 |
+
# @ crayon-syntax-highlighter
|
859 |
+
#, fuzzy
|
860 |
+
#~ msgid "You do not have the permission to delete the file '%s'."
|
861 |
+
#~ msgstr "Usted no tiene permisos suficientes para acceder a esta página."
|
862 |
+
|
863 |
+
# @ crayon-syntax-highlighter
|
864 |
+
#, fuzzy
|
865 |
+
#~ msgid "You do not have the permission to write to the file '%s'."
|
866 |
+
#~ msgstr "Usted no tiene permisos suficientes para acceder a esta página."
|
867 |
+
|
868 |
+
# @ crayon-syntax-highlighter
|
869 |
+
#, fuzzy
|
870 |
+
#~ msgid "You do not have the permission to read the file '%s'."
|
871 |
+
#~ msgstr "Usted no tiene permisos suficientes para acceder a esta página."
|
872 |
+
|
873 |
+
# @ crayon-syntax-highlighter
|
874 |
+
#, fuzzy
|
875 |
+
#~ msgid "Manage Language Files"
|
876 |
+
#~ msgstr "Idiomas"
|
877 |
+
|
878 |
+
# @ crayon-syntax-highlighter
|
879 |
+
#, fuzzy
|
880 |
+
#~ msgid "All Translations"
|
881 |
+
#~ msgstr "Traductores"
|
882 |
+
|
883 |
+
# @ crayon-syntax-highlighter
|
884 |
+
#, fuzzy
|
885 |
+
#~ msgid "Themes"
|
886 |
+
#~ msgstr "Tema"
|
887 |
+
|
888 |
+
# @ crayon-syntax-highlighter
|
889 |
+
#, fuzzy
|
890 |
+
#~ msgid "State"
|
891 |
+
#~ msgstr "Estático"
|
892 |
+
|
893 |
+
# @ crayon-syntax-highlighter
|
894 |
+
#, fuzzy
|
895 |
+
#~ msgid "Language Folder"
|
896 |
+
#~ msgstr "Idiomas"
|
897 |
+
|
898 |
+
# @ crayon-syntax-highlighter
|
899 |
+
#, fuzzy
|
900 |
+
#~ msgid "Add New Language"
|
901 |
+
#~ msgstr "Mostrar Idiomas"
|
902 |
+
|
903 |
+
# @ crayon-syntax-highlighter
|
904 |
+
#, fuzzy
|
905 |
+
#~ msgid "Permissions"
|
906 |
+
#~ msgstr "Versión"
|
907 |
+
|
908 |
+
# @ crayon-syntax-highlighter
|
909 |
+
#, fuzzy
|
910 |
+
#~ msgid "Translate Language File"
|
911 |
+
#~ msgstr "Mostrar el lenguaje"
|
912 |
+
|
913 |
+
# @ crayon-syntax-highlighter
|
914 |
+
#, fuzzy
|
915 |
+
#~ msgid "File:"
|
916 |
+
#~ msgstr "Archivos"
|
917 |
+
|
918 |
+
# @ crayon-syntax-highlighter
|
919 |
+
#, fuzzy
|
920 |
+
#~ msgid "Context"
|
921 |
+
#~ msgstr "Centro"
|
922 |
+
|
923 |
+
# @ crayon-syntax-highlighter
|
924 |
+
#, fuzzy
|
925 |
+
#~ msgid "Code Hint"
|
926 |
+
#~ msgstr "Código"
|
927 |
+
|
928 |
+
# @ crayon-syntax-highlighter
|
929 |
+
#, fuzzy
|
930 |
+
#~ msgid "Trailing Space"
|
931 |
+
#~ msgstr "Tab tamaño en espacios"
|
932 |
+
|
933 |
+
# @ crayon-syntax-highlighter
|
934 |
+
#, fuzzy
|
935 |
+
#~ msgid "Translation:"
|
936 |
+
#~ msgstr "Traductores"
|
937 |
+
|
938 |
+
# @ crayon-syntax-highlighter
|
939 |
+
#, fuzzy
|
940 |
+
#~ msgid "Confirm Delete Language"
|
941 |
+
#~ msgstr "Contiene Idiomas mixtos"
|
942 |
+
|
943 |
+
# @ crayon-syntax-highlighter
|
944 |
+
#, fuzzy
|
945 |
+
#~ msgid "Comment"
|
946 |
+
#~ msgstr "Centro"
|
947 |
+
|
948 |
+
# @ crayon-syntax-highlighter
|
949 |
+
#, fuzzy
|
950 |
+
#~ msgid "Files:"
|
951 |
+
#~ msgstr "Archivos"
|
952 |
+
|
953 |
+
# @ crayon-syntax-highlighter
|
954 |
+
#, fuzzy
|
955 |
+
#~ msgctxt "pcre"
|
956 |
+
|
957 |
+
#~ msgid "out"
|
958 |
+
#~ msgstr "Sobre"
|
959 |
+
|
960 |
+
# @ crayon-syntax-highlighter
|
961 |
+
#, fuzzy
|
962 |
+
#~ msgid "Show all dates"
|
963 |
+
#~ msgstr "Mostrar Idiomas"
|
964 |
+
|
965 |
+
# @ crayon-syntax-highlighter
|
966 |
+
#, fuzzy
|
967 |
+
#~ msgid "Robot"
|
968 |
+
#~ msgstr "Sobre"
|
969 |
+
|
970 |
+
# @ crayon-syntax-highlighter
|
971 |
+
#, fuzzy
|
972 |
+
#~ msgid "Filter"
|
973 |
+
#~ msgstr "Archivos"
|
974 |
+
|
975 |
+
# @ crayon-syntax-highlighter
|
976 |
+
#, fuzzy
|
977 |
+
#~ msgid "Week"
|
978 |
+
#~ msgstr "Semanal"
|
979 |
+
|
980 |
+
# @ crayon-syntax-highlighter
|
981 |
+
#, fuzzy
|
982 |
+
#~ msgid "Month"
|
983 |
+
#~ msgstr "Mensual"
|
984 |
+
|
985 |
+
# @ crayon-syntax-highlighter
|
986 |
+
#, fuzzy
|
987 |
+
#~ msgid "First"
|
988 |
+
#~ msgstr "Archivos"
|
989 |
+
|
990 |
+
# @ crayon-syntax-highlighter
|
991 |
+
#, fuzzy
|
992 |
+
#~ msgid "Current"
|
993 |
+
#~ msgstr "Centro"
|
994 |
+
|
995 |
+
# @ crayon-syntax-highlighter
|
996 |
+
#, fuzzy
|
997 |
+
#~ msgid "minutes"
|
998 |
+
#~ msgstr "Líneas"
|
999 |
+
|
1000 |
+
# @ crayon-syntax-highlighter
|
1001 |
+
#, fuzzy
|
1002 |
+
#~ msgid "Update Setting"
|
1003 |
+
#~ msgstr "Restablecer configuración"
|
1004 |
+
|
1005 |
+
# @ crayon-syntax-highlighter
|
1006 |
+
#, fuzzy
|
1007 |
+
#~ msgid "Least"
|
1008 |
+
#~ msgstr "Izquierda"
|
1009 |
+
|
1010 |
+
# @ crayon-syntax-highlighter
|
1011 |
+
#, fuzzy
|
1012 |
+
#~ msgid "Views"
|
1013 |
+
#~ msgstr "Líneas"
|
1014 |
+
|
1015 |
+
# @ crayon-syntax-highlighter
|
1016 |
+
#, fuzzy
|
1017 |
+
#~ msgid "By Month"
|
1018 |
+
#~ msgstr "Mensual"
|
1019 |
+
|
1020 |
+
# @ crayon-syntax-highlighter
|
1021 |
+
#, fuzzy
|
1022 |
+
#~ msgid "By Week"
|
1023 |
+
#~ msgstr "Semanal"
|
1024 |
+
|
1025 |
+
# @ crayon-syntax-highlighter
|
1026 |
+
#, fuzzy
|
1027 |
+
#~ msgid "Margin"
|
1028 |
+
#~ msgstr "Margen superior"
|
1029 |
+
|
1030 |
+
# @ crayon-syntax-highlighter
|
1031 |
+
#, fuzzy
|
1032 |
+
#~ msgid "Bottom"
|
1033 |
+
#~ msgstr "Margen inferior"
|
1034 |
+
|
1035 |
+
# @ crayon-syntax-highlighter
|
1036 |
+
#, fuzzy
|
1037 |
+
#~ msgid "Other Settings"
|
1038 |
+
#~ msgstr "Configuración"
|
1039 |
+
|
1040 |
+
# @ crayon-syntax-highlighter
|
1041 |
+
#, fuzzy
|
1042 |
+
#~ msgid "Language Settings"
|
1043 |
+
#~ msgstr "Idiomas"
|
1044 |
+
|
1045 |
+
# @ crayon-syntax-highlighter
|
1046 |
+
#, fuzzy
|
1047 |
+
#~ msgid "Remove Settings"
|
1048 |
+
#~ msgstr "Restablecer configuración"
|
1049 |
+
|
1050 |
+
# @ crayon-syntax-highlighter
|
1051 |
+
#, fuzzy
|
1052 |
+
#~ msgid "Generated: %s"
|
1053 |
+
#~ msgstr "General"
|
trans/crayon-syntax-highlighter-fr_FR.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-fr_FR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -10,823 +10,810 @@ msgstr ""
|
|
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: \n"
|
14 |
-
"X-Poedit-Country: \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:
|
18 |
-
"X-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-
|
21 |
|
22 |
-
|
23 |
-
#:
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
|
29 |
-
#: crayon_settings.class.php:
|
30 |
-
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
|
35 |
-
#: crayon_settings.class.php:
|
36 |
-
|
37 |
msgid "Static"
|
38 |
msgstr "Statique"
|
39 |
|
40 |
-
|
41 |
-
#: crayon_settings.class.php:
|
42 |
-
#:
|
43 |
-
#: crayon_settings_wp.class.php:
|
44 |
-
#: crayon_settings_wp.class.php:
|
45 |
-
|
46 |
msgid "Pixels"
|
47 |
msgstr "Pixels"
|
48 |
|
49 |
-
|
50 |
-
#: crayon_settings.class.php:
|
51 |
-
|
52 |
msgid "Percent"
|
53 |
msgstr "Pour cent"
|
54 |
|
55 |
-
|
56 |
-
|
57 |
msgid "None"
|
58 |
msgstr "Aucun"
|
59 |
|
60 |
-
|
61 |
-
|
62 |
msgid "Left"
|
63 |
msgstr "Gauche"
|
64 |
|
65 |
-
|
66 |
-
|
67 |
msgid "Center"
|
68 |
msgstr "Centre"
|
69 |
|
70 |
-
|
71 |
-
|
72 |
msgid "Right"
|
73 |
msgstr "Droite"
|
74 |
|
75 |
-
|
76 |
-
#: crayon_settings.class.php:
|
77 |
-
|
78 |
msgid "On MouseOver"
|
79 |
msgstr "Sur MouseOver"
|
80 |
|
81 |
-
|
82 |
-
#: crayon_settings.class.php:
|
83 |
-
|
84 |
msgid "Always"
|
85 |
msgstr "Toujours"
|
86 |
|
87 |
-
|
88 |
-
#: crayon_settings.class.php:
|
89 |
-
|
90 |
msgid "Never"
|
91 |
msgstr "Jamais"
|
92 |
|
93 |
-
|
94 |
-
|
95 |
msgid "When Found"
|
96 |
msgstr "Une fois trouvé"
|
97 |
|
98 |
-
|
99 |
-
|
100 |
msgid "On Double Click"
|
101 |
msgstr "Le double-clic"
|
102 |
|
103 |
-
|
104 |
-
|
105 |
msgid "On Single Click"
|
106 |
msgstr "Le Single Cliquez"
|
107 |
|
108 |
-
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
110 |
msgid "An error has occurred. Please try again later."
|
111 |
msgstr "Une erreur s'est produite. S'il vous plaît essayez de nouveau plus tard."
|
112 |
|
113 |
-
|
114 |
-
#: crayon_settings_wp.class.php:
|
115 |
-
#: crayon_settings_wp.class.php:
|
116 |
-
#:
|
117 |
-
#@ crayon-syntax-highlighter
|
118 |
msgid "Settings"
|
119 |
msgstr "Réglages"
|
120 |
|
121 |
-
|
122 |
-
|
123 |
msgid "You do not have sufficient permissions to access this page."
|
124 |
msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
|
125 |
|
126 |
-
|
127 |
-
|
128 |
msgid "Save Changes"
|
129 |
msgstr "Enregistrer les modifications"
|
130 |
|
131 |
-
|
132 |
-
|
133 |
msgid "Reset Settings"
|
134 |
msgstr "Réinitialiser les paramètres"
|
135 |
|
136 |
-
|
137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
msgid "Height"
|
139 |
msgstr "Hauteur"
|
140 |
|
141 |
-
|
142 |
-
|
143 |
msgid "Width"
|
144 |
msgstr "Largeur"
|
145 |
|
146 |
-
|
147 |
-
|
148 |
msgid "Top Margin"
|
149 |
msgstr "Marge supérieure"
|
150 |
|
151 |
-
|
152 |
-
|
153 |
msgid "Bottom Margin"
|
154 |
msgstr "La marge du bas"
|
155 |
|
156 |
-
|
157 |
-
#: crayon_settings_wp.class.php:
|
158 |
-
|
159 |
msgid "Left Margin"
|
160 |
msgstr "Marge de gauche"
|
161 |
|
162 |
-
|
163 |
-
#: crayon_settings_wp.class.php:
|
164 |
-
|
165 |
msgid "Right Margin"
|
166 |
msgstr "Marge droite"
|
167 |
|
168 |
-
|
169 |
-
|
170 |
msgid "Horizontal Alignment"
|
171 |
msgstr "Alignement horizontal"
|
172 |
|
173 |
-
|
174 |
-
|
175 |
msgid "Allow floating elements to surround Crayon"
|
176 |
msgstr "Autoriser des éléments flottants pour encercler Crayon"
|
177 |
|
178 |
-
|
179 |
-
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "Display the Toolbar"
|
181 |
msgstr "Afficher la barre d'outils"
|
182 |
|
183 |
-
|
184 |
-
|
185 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
186 |
msgstr "Superposition de la barre d'outils sur le code plutôt que de le pousser vers le bas si possible"
|
187 |
|
188 |
-
|
189 |
-
|
190 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
191 |
msgstr "Basculer la barre d'outils sur simple clic quand il est superposé"
|
192 |
|
193 |
-
|
194 |
-
|
195 |
msgid "Delay hiding the toolbar on MouseOut"
|
196 |
msgstr "Retard cacher la barre d'outils sur le MouseOut"
|
197 |
|
198 |
-
|
199 |
-
|
200 |
msgid "Display the title when provided"
|
201 |
msgstr "Afficher le titre lorsqu'il est fourni"
|
202 |
|
203 |
-
|
204 |
-
|
205 |
msgid "Display the language"
|
206 |
msgstr "Affichage de la langue"
|
207 |
|
208 |
-
|
209 |
-
|
210 |
msgid "Display striped code lines"
|
211 |
msgstr "Affichage des lignes de code rayée"
|
212 |
|
213 |
-
|
214 |
-
|
215 |
msgid "Enable line marking for important lines"
|
216 |
msgstr "Activer la ligne de marquage des lignes importantes"
|
217 |
|
218 |
-
|
219 |
-
|
220 |
msgid "Display line numbers by default"
|
221 |
msgstr "Afficher les numéros de ligne par défaut"
|
222 |
|
223 |
-
|
224 |
-
|
225 |
msgid "Enable line number toggling"
|
226 |
msgstr "Activer basculer le numéro de ligne"
|
227 |
|
228 |
-
|
229 |
-
|
230 |
msgid "Start line numbers from"
|
231 |
msgstr "Démarrer à partir des numéros de ligne"
|
232 |
|
233 |
-
|
234 |
-
|
235 |
msgid "When no language is provided, use the fallback"
|
236 |
msgstr "Lorsque aucune langue n'est fourni, utilisez le repli"
|
237 |
|
238 |
-
|
239 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
msgid "Parsing was successful"
|
241 |
msgstr "Parsing a réussi"
|
242 |
|
243 |
-
|
244 |
-
|
245 |
msgid "Parsing was unsuccessful"
|
246 |
msgstr "Parsing a échoué"
|
247 |
|
248 |
-
|
|
|
249 |
#, php-format
|
250 |
-
#@ crayon-syntax-highlighter
|
251 |
msgid "The selected language with id %s could not be loaded"
|
252 |
msgstr "La langue sélectionnée avec id %s ne pouvait pas être chargé"
|
253 |
|
254 |
-
|
255 |
-
|
256 |
msgid "Show Languages"
|
257 |
msgstr "Voir langues"
|
258 |
|
259 |
-
|
260 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "Enable Live Preview"
|
262 |
msgstr "Activer l'aperçu en direct"
|
263 |
|
264 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
#, php-format
|
266 |
-
#@ crayon-syntax-highlighter
|
267 |
msgid "The selected theme with id %s could not be loaded"
|
268 |
msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
|
269 |
|
270 |
-
|
271 |
-
|
272 |
msgid "Custom Font Size"
|
273 |
msgstr "Taille du texte personnalisé"
|
274 |
|
275 |
-
|
|
|
276 |
#, php-format
|
277 |
-
#@ crayon-syntax-highlighter
|
278 |
msgid "The selected font with id %s could not be loaded"
|
279 |
msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
|
280 |
|
281 |
-
|
282 |
-
|
|
|
|
|
|
|
|
|
|
|
283 |
msgid "Enable plain code view and display"
|
284 |
msgstr "Activer le mode code clair et d'affichage"
|
285 |
|
286 |
-
|
287 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Enable code copy/paste"
|
289 |
msgstr "Activer copiez le code/coller"
|
290 |
|
291 |
-
|
292 |
-
|
293 |
msgid "Enable opening code in a window"
|
294 |
msgstr "Activer code d'ouverture dans une fenêtre"
|
295 |
|
296 |
-
|
297 |
-
|
|
|
|
|
|
|
|
|
|
|
298 |
msgid "Tab size in spaces"
|
299 |
msgstr "Taille des tabulations dans les espaces"
|
300 |
|
301 |
-
|
302 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
msgid "Remove whitespace surrounding the shortcode content"
|
304 |
msgstr "Enlevez les espaces entourant le contenu shortcode"
|
305 |
|
306 |
-
|
307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
309 |
msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
|
310 |
|
311 |
-
|
312 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
msgid "Clear the cache used to store remote code requests"
|
314 |
msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
|
315 |
|
316 |
-
|
317 |
-
|
318 |
msgid "Clear Now"
|
319 |
msgstr "Effacer maintenant"
|
320 |
|
321 |
-
|
322 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
324 |
msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
|
325 |
|
326 |
-
|
327 |
-
|
328 |
msgid "Disable animations"
|
329 |
msgstr "Désactiver les animations"
|
330 |
|
331 |
-
|
332 |
-
|
333 |
msgid "Disable runtime stats"
|
334 |
msgstr "Désactiver l'exécution stats"
|
335 |
|
336 |
-
|
337 |
-
|
338 |
msgid "Log errors for individual Crayons"
|
339 |
msgstr "Connexion pour les erreurs individuelles Crayons"
|
340 |
|
341 |
-
|
342 |
-
|
343 |
msgid "Log system-wide errors"
|
344 |
msgstr "Connexion échelle du système des erreurs"
|
345 |
|
346 |
-
|
347 |
-
|
348 |
msgid "Display custom message for errors"
|
349 |
msgstr "Afficher un message personnalisé pour les erreurs"
|
350 |
|
351 |
-
|
352 |
-
|
353 |
msgid "Show Log"
|
354 |
msgstr "Afficher le journal"
|
355 |
|
356 |
-
|
357 |
-
|
|
|
|
|
|
|
|
|
|
|
358 |
msgid "Clear Log"
|
359 |
msgstr "Effacer le journal"
|
360 |
|
361 |
-
|
362 |
-
|
363 |
msgid "Email Admin"
|
364 |
msgstr "Admin Email"
|
365 |
|
366 |
-
|
367 |
-
|
368 |
msgid "Email Developer"
|
369 |
msgstr "Développeur Email"
|
370 |
|
371 |
-
|
372 |
-
|
373 |
-
msgid "Version"
|
374 |
-
msgstr "Version"
|
375 |
-
|
376 |
-
#: crayon_settings_wp.class.php:748
|
377 |
-
#@ crayon-syntax-highlighter
|
378 |
-
msgid "Developer"
|
379 |
-
msgstr "Développeur"
|
380 |
-
|
381 |
-
#: crayon_settings_wp.class.php:771
|
382 |
-
#@ crayon-syntax-highlighter
|
383 |
-
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
384 |
-
msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
|
385 |
-
|
386 |
-
#: crayon_settings_wp.class.php:602
|
387 |
-
#, php-format
|
388 |
-
#@ crayon-syntax-highlighter
|
389 |
-
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
390 |
-
msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
|
391 |
-
|
392 |
-
#: crayon_settings.class.php:120
|
393 |
-
#@ crayon-syntax-highlighter
|
394 |
-
msgid "Hourly"
|
395 |
-
msgstr "Horaires"
|
396 |
-
|
397 |
-
#: crayon_settings.class.php:120
|
398 |
-
#@ crayon-syntax-highlighter
|
399 |
-
msgid "Daily"
|
400 |
-
msgstr "Daily"
|
401 |
-
|
402 |
-
#: crayon_settings.class.php:121
|
403 |
-
#@ crayon-syntax-highlighter
|
404 |
-
msgid "Weekly"
|
405 |
-
msgstr "Hebdomadaire"
|
406 |
-
|
407 |
-
#: crayon_settings.class.php:121
|
408 |
-
#@ crayon-syntax-highlighter
|
409 |
-
msgid "Monthly"
|
410 |
-
msgstr "Mensuel"
|
411 |
-
|
412 |
-
#: crayon_settings.class.php:122
|
413 |
-
#@ crayon-syntax-highlighter
|
414 |
-
msgid "Immediately"
|
415 |
-
msgstr "Immédiatement"
|
416 |
-
|
417 |
-
#: crayon_settings_wp.class.php:479
|
418 |
-
#@ crayon-syntax-highlighter
|
419 |
-
msgid "Crayon Help"
|
420 |
-
msgstr "Aide Crayon"
|
421 |
-
|
422 |
-
#: crayon_settings_wp.class.php:698
|
423 |
-
#@ crayon-syntax-highlighter
|
424 |
-
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
425 |
-
msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
|
426 |
-
|
427 |
-
#: crayon_settings_wp.class.php:567
|
428 |
-
#, php-format
|
429 |
-
#@ crayon-syntax-highlighter
|
430 |
-
msgid "%d language has been detected."
|
431 |
-
msgid_plural "%d languages have been detected."
|
432 |
-
msgstr[0] "%d la langue a été détectée."
|
433 |
-
msgstr[1] "%d langues ont été détectés."
|
434 |
-
|
435 |
-
#: crayon_settings_wp.class.php:679
|
436 |
-
#@ crayon-syntax-highlighter
|
437 |
-
msgid "Followed by your relative URL."
|
438 |
-
msgstr "Suivi de votre URL relative."
|
439 |
-
|
440 |
-
#: crayon_settings_wp.class.php:732
|
441 |
-
#@ crayon-syntax-highlighter
|
442 |
msgid "The log is currently empty."
|
443 |
msgstr "Le journal est actuellement vide."
|
444 |
|
445 |
-
|
446 |
-
|
447 |
msgid "The log file exists and is writable."
|
448 |
msgstr "Le fichier journal existe et est accessible en écriture."
|
449 |
|
450 |
-
|
451 |
-
|
452 |
msgid "The log file exists and is not writable."
|
453 |
msgstr "Le fichier journal existe et n'est pas accessible en écriture."
|
454 |
|
455 |
-
|
456 |
-
|
457 |
msgid "The log file does not exist and is not writable."
|
458 |
msgstr "Le fichier journal n'existe pas et n'est pas modifiable."
|
459 |
|
460 |
-
|
461 |
-
|
462 |
-
msgid "
|
463 |
-
msgstr "
|
464 |
-
|
465 |
-
#: crayon_settings_wp.class.php:661
|
466 |
-
#@ crayon-syntax-highlighter
|
467 |
-
msgid "Show Mixed Language Icon (+)"
|
468 |
-
msgstr "Afficher l'icône Langue mixte (+)"
|
469 |
-
|
470 |
-
#: crayon_settings_wp.class.php:659
|
471 |
-
#@ crayon-syntax-highlighter
|
472 |
-
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
473 |
-
msgstr "Autoriser Soulignant langue mélangée avec des délimiteurs et des tags."
|
474 |
-
|
475 |
-
#: crayon_settings_wp.class.php:666
|
476 |
-
#@ crayon-syntax-highlighter
|
477 |
-
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
478 |
-
msgstr "Capturez Balises Mini tels que [php][/php] Crayons."
|
479 |
-
|
480 |
-
#: crayon_settings_wp.class.php:671
|
481 |
-
#@ crayon-syntax-highlighter
|
482 |
-
msgid "Enable [plain][/plain] tag."
|
483 |
-
msgstr "Activer tag [plain][/plain]."
|
484 |
-
|
485 |
-
#: crayon_settings.class.php:188
|
486 |
-
#@ crayon-syntax-highlighter
|
487 |
-
msgid "Disable Mouse Events"
|
488 |
-
msgstr "Désactiver les événements souris"
|
489 |
-
|
490 |
-
#: crayon_settings_wp.class.php:642
|
491 |
-
#@ crayon-syntax-highlighter
|
492 |
-
msgid "Enable plain code toggling"
|
493 |
-
msgstr "Activer le code basculer plaine"
|
494 |
-
|
495 |
-
#: crayon_settings_wp.class.php:643
|
496 |
-
#@ crayon-syntax-highlighter
|
497 |
-
msgid "Show the plain code by default"
|
498 |
-
msgstr "Montrer le code brut par défaut"
|
499 |
-
|
500 |
-
#. translators: plugin header field 'Name'
|
501 |
-
#: crayon_wp.class.php:0
|
502 |
-
#@ crayon-syntax-highlighter
|
503 |
-
msgid "Crayon Syntax Highlighter"
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
-
#. translators: plugin header field 'PluginURI'
|
507 |
-
#: crayon_wp.class.php:0
|
508 |
-
#@ crayon-syntax-highlighter
|
509 |
-
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#. translators: plugin header field 'Description'
|
513 |
-
#: crayon_wp.class.php:0
|
514 |
-
#@ crayon-syntax-highlighter
|
515 |
-
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
516 |
-
msgstr "Supporte plusieurs langues, des thèmes, en soulignant partir d'une URL, fichier local ou d'un texte post."
|
517 |
-
|
518 |
-
#. translators: plugin header field 'Author'
|
519 |
-
#: crayon_wp.class.php:0
|
520 |
-
#@ crayon-syntax-highlighter
|
521 |
-
msgid "Aram Kocharyan"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#. translators: plugin header field 'AuthorURI'
|
525 |
-
#: crayon_wp.class.php:0
|
526 |
-
#@ crayon-syntax-highlighter
|
527 |
-
msgid "http://ak.net84.net/"
|
528 |
-
msgstr ""
|
529 |
-
|
530 |
-
#: crayon_settings_wp.class.php:787
|
531 |
-
#@ crayon-syntax-highlighter
|
532 |
-
msgid "Donate"
|
533 |
-
msgstr "Faire un don"
|
534 |
-
|
535 |
-
#: crayon_settings_wp.class.php:249
|
536 |
-
#@ crayon-syntax-highlighter
|
537 |
-
msgid "General"
|
538 |
-
msgstr "Général"
|
539 |
-
|
540 |
-
#: crayon_settings_wp.class.php:250
|
541 |
-
#@ crayon-syntax-highlighter
|
542 |
-
msgid "Theme"
|
543 |
-
msgstr "Theme"
|
544 |
-
|
545 |
-
#: crayon_settings_wp.class.php:251
|
546 |
-
#@ crayon-syntax-highlighter
|
547 |
-
msgid "Font"
|
548 |
-
msgstr "Son"
|
549 |
-
|
550 |
-
#: crayon_settings_wp.class.php:252
|
551 |
-
#@ crayon-syntax-highlighter
|
552 |
-
msgid "Metrics"
|
553 |
-
msgstr "Mesures"
|
554 |
-
|
555 |
-
#: crayon_settings_wp.class.php:253
|
556 |
-
#@ crayon-syntax-highlighter
|
557 |
-
msgid "Toolbar"
|
558 |
-
msgstr "Barre d'outils"
|
559 |
-
|
560 |
-
#: crayon_settings_wp.class.php:254
|
561 |
-
#@ crayon-syntax-highlighter
|
562 |
-
msgid "Lines"
|
563 |
-
msgstr "Lignes"
|
564 |
-
|
565 |
-
#: crayon_settings_wp.class.php:255
|
566 |
-
#: util/tag-editor/crayon_te_content.php:87
|
567 |
-
#@ crayon-syntax-highlighter
|
568 |
-
msgid "Code"
|
569 |
-
msgstr "Code"
|
570 |
-
|
571 |
-
#: crayon_settings_wp.class.php:257
|
572 |
-
#@ crayon-syntax-highlighter
|
573 |
-
msgid "Languages"
|
574 |
-
msgstr "Langues"
|
575 |
-
|
576 |
-
#: crayon_settings_wp.class.php:258
|
577 |
-
#@ crayon-syntax-highlighter
|
578 |
-
msgid "Files"
|
579 |
-
msgstr "Fichiers"
|
580 |
-
|
581 |
-
#: crayon_settings_wp.class.php:260
|
582 |
-
#@ crayon-syntax-highlighter
|
583 |
-
msgid "Misc"
|
584 |
-
msgstr "Divers"
|
585 |
-
|
586 |
-
#: crayon_settings_wp.class.php:263
|
587 |
-
#@ crayon-syntax-highlighter
|
588 |
-
msgid "Debug"
|
589 |
-
msgstr "Débogage"
|
590 |
-
|
591 |
-
#: crayon_settings_wp.class.php:264
|
592 |
-
#@ crayon-syntax-highlighter
|
593 |
-
msgid "Errors"
|
594 |
-
msgstr "Erreurs"
|
595 |
-
|
596 |
-
#: crayon_settings_wp.class.php:265
|
597 |
-
#@ crayon-syntax-highlighter
|
598 |
-
msgid "Log"
|
599 |
-
msgstr "Connexion"
|
600 |
-
|
601 |
-
#: crayon_settings_wp.class.php:268
|
602 |
-
#@ crayon-syntax-highlighter
|
603 |
-
msgid "About"
|
604 |
-
msgstr "À propos"
|
605 |
-
|
606 |
-
#: crayon_settings_wp.class.php:608
|
607 |
-
#@ crayon-syntax-highlighter
|
608 |
-
msgid "Enqueue themes in the header (more efficient)."
|
609 |
-
msgstr "Enqueue thèmes dans l'en-tête (plus efficace)."
|
610 |
-
|
611 |
-
#: crayon_settings_wp.class.php:634
|
612 |
-
#@ crayon-syntax-highlighter
|
613 |
-
msgid "Enqueue fonts in the header (more efficient)."
|
614 |
-
msgstr "Enqueue polices de caractères dans l'en-tête (plus efficace)."
|
615 |
-
|
616 |
-
#: crayon_settings_wp.class.php:597
|
617 |
-
#@ crayon-syntax-highlighter
|
618 |
-
msgid "Loading..."
|
619 |
-
msgstr "Chargement..."
|
620 |
-
|
621 |
-
#: crayon_settings_wp.class.php:597
|
622 |
-
#: crayon_settings_wp.class.php:785
|
623 |
-
#: util/theme-editor/editor.php:14
|
624 |
-
#@ crayon-syntax-highlighter
|
625 |
-
msgid "Theme Editor"
|
626 |
-
msgstr "Éditeur de thème"
|
627 |
-
|
628 |
-
#: crayon_settings_wp.class.php:647
|
629 |
-
#@ crayon-syntax-highlighter
|
630 |
-
msgid "Always display scrollbars"
|
631 |
-
msgstr "Toujours afficher les barres de défilement"
|
632 |
-
|
633 |
-
#: crayon_settings_wp.class.php:699
|
634 |
-
#@ crayon-syntax-highlighter
|
635 |
-
msgid "Disable enqueuing for page templates that may contain The Loop."
|
636 |
-
msgstr "Désactiver enqueuing pour les modèles de page qui peut contenir la boucle."
|
637 |
|
638 |
-
|
639 |
-
|
640 |
-
msgid "
|
641 |
-
msgstr "
|
642 |
|
643 |
-
|
644 |
-
|
645 |
msgid "Translators"
|
646 |
msgstr "Traducteurs"
|
647 |
|
648 |
-
|
649 |
-
|
650 |
-
msgid "
|
651 |
-
msgstr "
|
652 |
-
|
653 |
-
#: crayon_formatter.class.php:264
|
654 |
-
#@ crayon-syntax-highlighter
|
655 |
-
msgid "Toggle Plain Code"
|
656 |
-
msgstr "Basculer code plaine"
|
657 |
-
|
658 |
-
#: crayon_formatter.class.php:266
|
659 |
-
#@ crayon-syntax-highlighter
|
660 |
-
msgid "Copy Plain Code"
|
661 |
-
msgstr "Copier le code ordinaire"
|
662 |
-
|
663 |
-
#: crayon_formatter.class.php:268
|
664 |
-
#@ crayon-syntax-highlighter
|
665 |
-
msgid "Open Code In New Window"
|
666 |
-
msgstr "Code dans la nouvelle fenêtre"
|
667 |
-
|
668 |
-
#: crayon_formatter.class.php:271
|
669 |
-
#@ crayon-syntax-highlighter
|
670 |
-
msgid "Toggle Line Numbers"
|
671 |
-
msgstr "Numéros de ligne Basculer"
|
672 |
-
|
673 |
-
#: crayon_formatter.class.php:277
|
674 |
-
#@ crayon-syntax-highlighter
|
675 |
-
msgid "Contains Mixed Languages"
|
676 |
-
msgstr "Contient un mélange de langues"
|
677 |
-
|
678 |
-
#: crayon_settings_wp.class.php:725
|
679 |
-
#@ crayon-syntax-highlighter
|
680 |
-
msgid "Hide Log"
|
681 |
-
msgstr "Cacher Connexion"
|
682 |
-
|
683 |
-
#: crayon_formatter.class.php:266
|
684 |
-
#, php-format
|
685 |
-
#@ crayon-syntax-highlighter
|
686 |
-
msgid "Press %s to Copy, %s to Paste"
|
687 |
-
msgstr "Presse %s à Copier, Coller à %s"
|
688 |
-
|
689 |
-
#: crayon_settings_wp.class.php:256
|
690 |
-
#@ crayon-syntax-highlighter
|
691 |
-
msgid "Tags"
|
692 |
-
msgstr "Mots-clés"
|
693 |
-
|
694 |
-
#: crayon_settings_wp.class.php:524
|
695 |
-
#@ crayon-syntax-highlighter
|
696 |
-
msgid "Inline Margin"
|
697 |
-
msgstr "Marge en ligne"
|
698 |
-
|
699 |
-
#: crayon_settings_wp.class.php:667
|
700 |
-
#@ crayon-syntax-highlighter
|
701 |
-
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
702 |
-
msgstr "Capturez Mots Inline comme {php} {/php} à l'intérieur des phrases."
|
703 |
-
|
704 |
-
#: crayon_settings_wp.class.php:669
|
705 |
-
#@ crayon-syntax-highlighter
|
706 |
-
msgid "Capture `backquotes` as <code>"
|
707 |
-
msgstr "Capturez `apostrophes inverses` as <code>"
|
708 |
-
|
709 |
-
#: crayon_settings_wp.class.php:700
|
710 |
-
#@ crayon-syntax-highlighter
|
711 |
-
msgid "Allow Crayons inside comments"
|
712 |
-
msgstr "Permettez-Crayons à l'intérieur de commentaires"
|
713 |
-
|
714 |
-
#: crayon_settings_wp.class.php:668
|
715 |
-
#@ crayon-syntax-highlighter
|
716 |
-
msgid "Wrap Inline Tags"
|
717 |
-
msgstr "Wrap Balises Inline"
|
718 |
-
|
719 |
-
#: crayon_settings_wp.class.php:259
|
720 |
-
#@ crayon-syntax-highlighter
|
721 |
-
msgid "Tag Editor"
|
722 |
-
msgstr ""
|
723 |
-
|
724 |
-
#: crayon_settings_wp.class.php:608
|
725 |
-
#: crayon_settings_wp.class.php:634
|
726 |
-
#: crayon_settings_wp.class.php:659
|
727 |
-
#: crayon_settings_wp.class.php:666
|
728 |
-
#: crayon_settings_wp.class.php:667
|
729 |
-
#: crayon_settings_wp.class.php:668
|
730 |
-
#: crayon_settings_wp.class.php:669
|
731 |
-
#: crayon_settings_wp.class.php:670
|
732 |
-
#: crayon_settings_wp.class.php:671
|
733 |
-
#: crayon_settings_wp.class.php:687
|
734 |
-
#: crayon_settings_wp.class.php:698
|
735 |
-
#: crayon_settings_wp.class.php:699
|
736 |
-
#@ crayon-syntax-highlighter
|
737 |
-
msgid "?"
|
738 |
-
msgstr ""
|
739 |
-
|
740 |
-
#: crayon_settings_wp.class.php:653
|
741 |
-
#@ crayon-syntax-highlighter
|
742 |
-
msgid "Decode HTML entities in code"
|
743 |
-
msgstr ""
|
744 |
-
|
745 |
-
#: crayon_settings_wp.class.php:655
|
746 |
-
#@ crayon-syntax-highlighter
|
747 |
-
msgid "Decode HTML entities in attributes"
|
748 |
-
msgstr ""
|
749 |
-
|
750 |
-
#: crayon_settings_wp.class.php:684
|
751 |
-
#, php-format
|
752 |
-
#@ crayon-syntax-highlighter
|
753 |
-
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
754 |
-
msgstr ""
|
755 |
|
756 |
-
|
757 |
-
#:
|
758 |
-
|
759 |
-
|
760 |
-
msgstr ""
|
761 |
|
762 |
-
|
763 |
-
|
764 |
msgid "Add Crayon Code"
|
765 |
-
msgstr ""
|
766 |
|
767 |
-
|
768 |
-
|
769 |
msgid "Edit Crayon Code"
|
770 |
-
msgstr ""
|
771 |
|
772 |
-
|
773 |
-
|
774 |
msgid "Add"
|
775 |
-
msgstr ""
|
776 |
|
777 |
-
|
778 |
-
|
779 |
msgid "Save"
|
780 |
-
msgstr ""
|
781 |
|
782 |
-
|
783 |
-
|
784 |
msgid "Title"
|
785 |
-
msgstr ""
|
786 |
|
787 |
-
#: util/tag-editor/crayon_te_content.php:
|
788 |
-
|
|
|
|
|
|
|
|
|
789 |
msgid "Inline"
|
790 |
-
msgstr ""
|
791 |
|
792 |
-
|
793 |
-
|
794 |
msgid "Language"
|
795 |
-
msgstr ""
|
796 |
|
797 |
-
|
798 |
-
|
799 |
msgid "Marked Lines"
|
800 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
801 |
|
802 |
-
|
803 |
-
|
804 |
msgid "Disable Highlighting"
|
805 |
-
msgstr ""
|
806 |
|
807 |
-
|
808 |
-
|
809 |
msgid "Clear"
|
810 |
-
msgstr ""
|
811 |
|
812 |
-
|
813 |
-
|
814 |
msgid "Paste your code here, or type it in manually."
|
|
|
|
|
|
|
|
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: util/tag-editor/crayon_te_content.php:
|
818 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
819 |
msgid "Change the following settings to override their global values."
|
820 |
-
msgstr ""
|
821 |
|
822 |
-
|
823 |
-
|
824 |
msgid "Only changes (shown yellow) are applied."
|
825 |
-
msgstr ""
|
826 |
|
827 |
-
#: util/tag-editor/crayon_te_content.php:
|
828 |
#, php-format
|
829 |
-
|
830 |
-
|
831 |
-
|
|
|
|
|
|
|
|
|
832 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: crayon-syntax-highlighter\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-06 12:08+1000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \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: French\n"
|
14 |
+
"X-Poedit-Country: FRANCE\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;crayon__;crayon_n;crayon_e\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Poedit-SearchPath-1: ..\n"
|
21 |
|
22 |
+
# @ crayon-syntax-highlighter
|
23 |
+
#: ../crayon_formatter.class.php:266
|
24 |
+
msgid "Toggle Plain Code"
|
25 |
+
msgstr "Basculer code plaine"
|
26 |
+
|
27 |
+
# @ crayon-syntax-highlighter
|
28 |
+
#: ../crayon_formatter.class.php:268
|
29 |
+
#, php-format
|
30 |
+
msgid "Press %s to Copy, %s to Paste"
|
31 |
+
msgstr "Presse %s à Copier, Coller à %s"
|
32 |
+
|
33 |
+
# @ crayon-syntax-highlighter
|
34 |
+
#: ../crayon_formatter.class.php:268
|
35 |
+
msgid "Copy Plain Code"
|
36 |
+
msgstr "Copier le code ordinaire"
|
37 |
+
|
38 |
+
# @ crayon-syntax-highlighter
|
39 |
+
#: ../crayon_formatter.class.php:270
|
40 |
+
msgid "Open Code In New Window"
|
41 |
+
msgstr "Code dans la nouvelle fenêtre"
|
42 |
+
|
43 |
+
# @ crayon-syntax-highlighter
|
44 |
+
#: ../crayon_formatter.class.php:273
|
45 |
+
msgid "Toggle Line Numbers"
|
46 |
+
msgstr "Numéros de ligne Basculer"
|
47 |
+
|
48 |
+
# @ crayon-syntax-highlighter
|
49 |
+
#: ../crayon_formatter.class.php:279
|
50 |
+
msgid "Contains Mixed Languages"
|
51 |
+
msgstr "Contient un mélange de langues"
|
52 |
+
|
53 |
+
# @ crayon-syntax-highlighter
|
54 |
+
#: ../crayon_settings.class.php:138
|
55 |
+
msgid "Hourly"
|
56 |
+
msgstr "Horaires"
|
57 |
+
|
58 |
+
# @ crayon-syntax-highlighter
|
59 |
+
#: ../crayon_settings.class.php:138
|
60 |
+
msgid "Daily"
|
61 |
+
msgstr "Daily"
|
62 |
+
|
63 |
+
# @ crayon-syntax-highlighter
|
64 |
+
#: ../crayon_settings.class.php:139
|
65 |
+
msgid "Weekly"
|
66 |
+
msgstr "Hebdomadaire"
|
67 |
+
|
68 |
+
# @ crayon-syntax-highlighter
|
69 |
+
#: ../crayon_settings.class.php:139
|
70 |
+
msgid "Monthly"
|
71 |
+
msgstr "Mensuel"
|
72 |
+
|
73 |
+
# @ crayon-syntax-highlighter
|
74 |
+
#: ../crayon_settings.class.php:140
|
75 |
+
msgid "Immediately"
|
76 |
+
msgstr "Immédiatement"
|
77 |
+
|
78 |
+
# @ crayon-syntax-highlighter
|
79 |
+
#: ../crayon_settings.class.php:150
|
80 |
+
#: ../crayon_settings.class.php:154
|
81 |
msgid "Max"
|
82 |
msgstr "Max"
|
83 |
|
84 |
+
# @ crayon-syntax-highlighter
|
85 |
+
#: ../crayon_settings.class.php:150
|
86 |
+
#: ../crayon_settings.class.php:154
|
87 |
msgid "Min"
|
88 |
msgstr "Min"
|
89 |
|
90 |
+
# @ crayon-syntax-highlighter
|
91 |
+
#: ../crayon_settings.class.php:150
|
92 |
+
#: ../crayon_settings.class.php:154
|
93 |
msgid "Static"
|
94 |
msgstr "Statique"
|
95 |
|
96 |
+
# @ crayon-syntax-highlighter
|
97 |
+
#: ../crayon_settings.class.php:152
|
98 |
+
#: ../crayon_settings.class.php:156
|
99 |
+
#: ../crayon_settings_wp.class.php:541
|
100 |
+
#: ../crayon_settings_wp.class.php:550
|
101 |
+
#: ../crayon_settings_wp.class.php:649
|
102 |
msgid "Pixels"
|
103 |
msgstr "Pixels"
|
104 |
|
105 |
+
# @ crayon-syntax-highlighter
|
106 |
+
#: ../crayon_settings.class.php:152
|
107 |
+
#: ../crayon_settings.class.php:156
|
108 |
msgid "Percent"
|
109 |
msgstr "Pour cent"
|
110 |
|
111 |
+
# @ crayon-syntax-highlighter
|
112 |
+
#: ../crayon_settings.class.php:165
|
113 |
msgid "None"
|
114 |
msgstr "Aucun"
|
115 |
|
116 |
+
# @ crayon-syntax-highlighter
|
117 |
+
#: ../crayon_settings.class.php:165
|
118 |
msgid "Left"
|
119 |
msgstr "Gauche"
|
120 |
|
121 |
+
# @ crayon-syntax-highlighter
|
122 |
+
#: ../crayon_settings.class.php:165
|
123 |
msgid "Center"
|
124 |
msgstr "Centre"
|
125 |
|
126 |
+
# @ crayon-syntax-highlighter
|
127 |
+
#: ../crayon_settings.class.php:165
|
128 |
msgid "Right"
|
129 |
msgstr "Droite"
|
130 |
|
131 |
+
# @ crayon-syntax-highlighter
|
132 |
+
#: ../crayon_settings.class.php:167
|
133 |
+
#: ../crayon_settings.class.php:189
|
134 |
msgid "On MouseOver"
|
135 |
msgstr "Sur MouseOver"
|
136 |
|
137 |
+
# @ crayon-syntax-highlighter
|
138 |
+
#: ../crayon_settings.class.php:167
|
139 |
+
#: ../crayon_settings.class.php:173
|
140 |
msgid "Always"
|
141 |
msgstr "Toujours"
|
142 |
|
143 |
+
# @ crayon-syntax-highlighter
|
144 |
+
#: ../crayon_settings.class.php:167
|
145 |
+
#: ../crayon_settings.class.php:173
|
146 |
msgid "Never"
|
147 |
msgstr "Jamais"
|
148 |
|
149 |
+
# @ crayon-syntax-highlighter
|
150 |
+
#: ../crayon_settings.class.php:173
|
151 |
msgid "When Found"
|
152 |
msgstr "Une fois trouvé"
|
153 |
|
154 |
+
# @ crayon-syntax-highlighter
|
155 |
+
#: ../crayon_settings.class.php:189
|
156 |
msgid "On Double Click"
|
157 |
msgstr "Le double-clic"
|
158 |
|
159 |
+
# @ crayon-syntax-highlighter
|
160 |
+
#: ../crayon_settings.class.php:189
|
161 |
msgid "On Single Click"
|
162 |
msgstr "Le Single Cliquez"
|
163 |
|
164 |
+
# @ crayon-syntax-highlighter
|
165 |
+
#: ../crayon_settings.class.php:189
|
166 |
+
msgid "Disable Mouse Events"
|
167 |
+
msgstr "Désactiver les événements souris"
|
168 |
+
|
169 |
+
# @ crayon-syntax-highlighter
|
170 |
+
#: ../crayon_settings.class.php:196
|
171 |
msgid "An error has occurred. Please try again later."
|
172 |
msgstr "Une erreur s'est produite. S'il vous plaît essayez de nouveau plus tard."
|
173 |
|
174 |
+
# @ crayon-syntax-highlighter
|
175 |
+
#: ../crayon_settings_wp.class.php:44
|
176 |
+
#: ../crayon_settings_wp.class.php:118
|
177 |
+
#: ../crayon_settings_wp.class.php:802
|
|
|
178 |
msgid "Settings"
|
179 |
msgstr "Réglages"
|
180 |
|
181 |
+
# @ crayon-syntax-highlighter
|
182 |
+
#: ../crayon_settings_wp.class.php:99
|
183 |
msgid "You do not have sufficient permissions to access this page."
|
184 |
msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
|
185 |
|
186 |
+
# @ crayon-syntax-highlighter
|
187 |
+
#: ../crayon_settings_wp.class.php:130
|
188 |
msgid "Save Changes"
|
189 |
msgstr "Enregistrer les modifications"
|
190 |
|
191 |
+
# @ crayon-syntax-highlighter
|
192 |
+
#: ../crayon_settings_wp.class.php:136
|
193 |
msgid "Reset Settings"
|
194 |
msgstr "Réinitialiser les paramètres"
|
195 |
|
196 |
+
# @ crayon-syntax-highlighter
|
197 |
+
#: ../crayon_settings_wp.class.php:301
|
198 |
+
msgid "General"
|
199 |
+
msgstr "Général"
|
200 |
+
|
201 |
+
# @ crayon-syntax-highlighter
|
202 |
+
#: ../crayon_settings_wp.class.php:302
|
203 |
+
msgid "Theme"
|
204 |
+
msgstr "Theme"
|
205 |
+
|
206 |
+
# @ crayon-syntax-highlighter
|
207 |
+
#: ../crayon_settings_wp.class.php:303
|
208 |
+
msgid "Font"
|
209 |
+
msgstr "Son"
|
210 |
+
|
211 |
+
# @ crayon-syntax-highlighter
|
212 |
+
#: ../crayon_settings_wp.class.php:304
|
213 |
+
msgid "Metrics"
|
214 |
+
msgstr "Mesures"
|
215 |
+
|
216 |
+
# @ crayon-syntax-highlighter
|
217 |
+
#: ../crayon_settings_wp.class.php:305
|
218 |
+
msgid "Toolbar"
|
219 |
+
msgstr "Barre d'outils"
|
220 |
+
|
221 |
+
# @ crayon-syntax-highlighter
|
222 |
+
#: ../crayon_settings_wp.class.php:306
|
223 |
+
msgid "Lines"
|
224 |
+
msgstr "Lignes"
|
225 |
+
|
226 |
+
# @ crayon-syntax-highlighter
|
227 |
+
#: ../crayon_settings_wp.class.php:307
|
228 |
+
msgid "Code"
|
229 |
+
msgstr "Code"
|
230 |
+
|
231 |
+
# @ crayon-syntax-highlighter
|
232 |
+
#: ../crayon_settings_wp.class.php:308
|
233 |
+
msgid "Tags"
|
234 |
+
msgstr "Mots-clés"
|
235 |
+
|
236 |
+
# @ crayon-syntax-highlighter
|
237 |
+
#: ../crayon_settings_wp.class.php:309
|
238 |
+
msgid "Languages"
|
239 |
+
msgstr "Langues"
|
240 |
+
|
241 |
+
# @ crayon-syntax-highlighter
|
242 |
+
#: ../crayon_settings_wp.class.php:310
|
243 |
+
msgid "Files"
|
244 |
+
msgstr "Fichiers"
|
245 |
+
|
246 |
+
# @ crayon-syntax-highlighter
|
247 |
+
#: ../crayon_settings_wp.class.php:311
|
248 |
+
msgid "Tag Editor"
|
249 |
+
msgstr "Éditeur de Tag"
|
250 |
+
|
251 |
+
# @ crayon-syntax-highlighter
|
252 |
+
#: ../crayon_settings_wp.class.php:312
|
253 |
+
msgid "Misc"
|
254 |
+
msgstr "Divers"
|
255 |
+
|
256 |
+
# @ crayon-syntax-highlighter
|
257 |
+
#: ../crayon_settings_wp.class.php:315
|
258 |
+
msgid "Debug"
|
259 |
+
msgstr "Débogage"
|
260 |
+
|
261 |
+
# @ crayon-syntax-highlighter
|
262 |
+
#: ../crayon_settings_wp.class.php:316
|
263 |
+
msgid "Errors"
|
264 |
+
msgstr "Erreurs"
|
265 |
+
|
266 |
+
# @ crayon-syntax-highlighter
|
267 |
+
#: ../crayon_settings_wp.class.php:317
|
268 |
+
msgid "Log"
|
269 |
+
msgstr "Connexion"
|
270 |
+
|
271 |
+
# @ crayon-syntax-highlighter
|
272 |
+
#: ../crayon_settings_wp.class.php:320
|
273 |
+
msgid "About"
|
274 |
+
msgstr "À propos"
|
275 |
+
|
276 |
+
# @ crayon-syntax-highlighter
|
277 |
+
#: ../crayon_settings_wp.class.php:503
|
278 |
+
msgid "Crayon Help"
|
279 |
+
msgstr "Aide Crayon"
|
280 |
+
|
281 |
+
# @ crayon-syntax-highlighter
|
282 |
+
#: ../crayon_settings_wp.class.php:518
|
283 |
msgid "Height"
|
284 |
msgstr "Hauteur"
|
285 |
|
286 |
+
# @ crayon-syntax-highlighter
|
287 |
+
#: ../crayon_settings_wp.class.php:524
|
288 |
msgid "Width"
|
289 |
msgstr "Largeur"
|
290 |
|
291 |
+
# @ crayon-syntax-highlighter
|
292 |
+
#: ../crayon_settings_wp.class.php:530
|
293 |
msgid "Top Margin"
|
294 |
msgstr "Marge supérieure"
|
295 |
|
296 |
+
# @ crayon-syntax-highlighter
|
297 |
+
#: ../crayon_settings_wp.class.php:531
|
298 |
msgid "Bottom Margin"
|
299 |
msgstr "La marge du bas"
|
300 |
|
301 |
+
# @ crayon-syntax-highlighter
|
302 |
+
#: ../crayon_settings_wp.class.php:532
|
303 |
+
#: ../crayon_settings_wp.class.php:537
|
304 |
msgid "Left Margin"
|
305 |
msgstr "Marge de gauche"
|
306 |
|
307 |
+
# @ crayon-syntax-highlighter
|
308 |
+
#: ../crayon_settings_wp.class.php:533
|
309 |
+
#: ../crayon_settings_wp.class.php:537
|
310 |
msgid "Right Margin"
|
311 |
msgstr "Marge droite"
|
312 |
|
313 |
+
# @ crayon-syntax-highlighter
|
314 |
+
#: ../crayon_settings_wp.class.php:543
|
315 |
msgid "Horizontal Alignment"
|
316 |
msgstr "Alignement horizontal"
|
317 |
|
318 |
+
# @ crayon-syntax-highlighter
|
319 |
+
#: ../crayon_settings_wp.class.php:546
|
320 |
msgid "Allow floating elements to surround Crayon"
|
321 |
msgstr "Autoriser des éléments flottants pour encercler Crayon"
|
322 |
|
323 |
+
# @ crayon-syntax-highlighter
|
324 |
+
#: ../crayon_settings_wp.class.php:548
|
325 |
+
msgid "Inline Margin"
|
326 |
+
msgstr "Marge en ligne"
|
327 |
+
|
328 |
+
# @ crayon-syntax-highlighter
|
329 |
+
#: ../crayon_settings_wp.class.php:556
|
330 |
msgid "Display the Toolbar"
|
331 |
msgstr "Afficher la barre d'outils"
|
332 |
|
333 |
+
# @ crayon-syntax-highlighter
|
334 |
+
#: ../crayon_settings_wp.class.php:559
|
335 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
336 |
msgstr "Superposition de la barre d'outils sur le code plutôt que de le pousser vers le bas si possible"
|
337 |
|
338 |
+
# @ crayon-syntax-highlighter
|
339 |
+
#: ../crayon_settings_wp.class.php:560
|
340 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
341 |
msgstr "Basculer la barre d'outils sur simple clic quand il est superposé"
|
342 |
|
343 |
+
# @ crayon-syntax-highlighter
|
344 |
+
#: ../crayon_settings_wp.class.php:561
|
345 |
msgid "Delay hiding the toolbar on MouseOut"
|
346 |
msgstr "Retard cacher la barre d'outils sur le MouseOut"
|
347 |
|
348 |
+
# @ crayon-syntax-highlighter
|
349 |
+
#: ../crayon_settings_wp.class.php:563
|
350 |
msgid "Display the title when provided"
|
351 |
msgstr "Afficher le titre lorsqu'il est fourni"
|
352 |
|
353 |
+
# @ crayon-syntax-highlighter
|
354 |
+
#: ../crayon_settings_wp.class.php:564
|
355 |
msgid "Display the language"
|
356 |
msgstr "Affichage de la langue"
|
357 |
|
358 |
+
# @ crayon-syntax-highlighter
|
359 |
+
#: ../crayon_settings_wp.class.php:571
|
360 |
msgid "Display striped code lines"
|
361 |
msgstr "Affichage des lignes de code rayée"
|
362 |
|
363 |
+
# @ crayon-syntax-highlighter
|
364 |
+
#: ../crayon_settings_wp.class.php:572
|
365 |
msgid "Enable line marking for important lines"
|
366 |
msgstr "Activer la ligne de marquage des lignes importantes"
|
367 |
|
368 |
+
# @ crayon-syntax-highlighter
|
369 |
+
#: ../crayon_settings_wp.class.php:573
|
370 |
msgid "Display line numbers by default"
|
371 |
msgstr "Afficher les numéros de ligne par défaut"
|
372 |
|
373 |
+
# @ crayon-syntax-highlighter
|
374 |
+
#: ../crayon_settings_wp.class.php:574
|
375 |
msgid "Enable line number toggling"
|
376 |
msgstr "Activer basculer le numéro de ligne"
|
377 |
|
378 |
+
# @ crayon-syntax-highlighter
|
379 |
+
#: ../crayon_settings_wp.class.php:575
|
380 |
msgid "Start line numbers from"
|
381 |
msgstr "Démarrer à partir des numéros de ligne"
|
382 |
|
383 |
+
# @ crayon-syntax-highlighter
|
384 |
+
#: ../crayon_settings_wp.class.php:585
|
385 |
msgid "When no language is provided, use the fallback"
|
386 |
msgstr "Lorsque aucune langue n'est fourni, utilisez le repli"
|
387 |
|
388 |
+
# @ crayon-syntax-highlighter
|
389 |
+
#: ../crayon_settings_wp.class.php:591
|
390 |
+
#, php-format
|
391 |
+
msgid "%d language has been detected."
|
392 |
+
msgstr "%s langue a été détectée."
|
393 |
+
|
394 |
+
# @ crayon-syntax-highlighter
|
395 |
+
#: ../crayon_settings_wp.class.php:592
|
396 |
msgid "Parsing was successful"
|
397 |
msgstr "Parsing a réussi"
|
398 |
|
399 |
+
# @ crayon-syntax-highlighter
|
400 |
+
#: ../crayon_settings_wp.class.php:592
|
401 |
msgid "Parsing was unsuccessful"
|
402 |
msgstr "Parsing a échoué"
|
403 |
|
404 |
+
# @ crayon-syntax-highlighter
|
405 |
+
#: ../crayon_settings_wp.class.php:598
|
406 |
#, php-format
|
|
|
407 |
msgid "The selected language with id %s could not be loaded"
|
408 |
msgstr "La langue sélectionnée avec id %s ne pouvait pas être chargé"
|
409 |
|
410 |
+
# @ crayon-syntax-highlighter
|
411 |
+
#: ../crayon_settings_wp.class.php:602
|
412 |
msgid "Show Languages"
|
413 |
msgstr "Voir langues"
|
414 |
|
415 |
+
# @ crayon-syntax-highlighter
|
416 |
+
#: ../crayon_settings_wp.class.php:621
|
417 |
+
msgid "Loading..."
|
418 |
+
msgstr "Chargement..."
|
419 |
+
|
420 |
+
# @ crayon-syntax-highlighter
|
421 |
+
#: ../crayon_settings_wp.class.php:621
|
422 |
+
#: ../crayon_settings_wp.class.php:804
|
423 |
+
msgid "Theme Editor"
|
424 |
+
msgstr "Éditeur de thème"
|
425 |
+
|
426 |
+
# @ crayon-syntax-highlighter
|
427 |
+
#: ../crayon_settings_wp.class.php:626
|
428 |
+
#, php-format
|
429 |
+
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
430 |
+
msgstr "Changer la %1$slangue de repli%2$s pour changer le code d'échantillon. Lignes 5-7 sont marquées."
|
431 |
+
|
432 |
+
# @ crayon-syntax-highlighter
|
433 |
+
#: ../crayon_settings_wp.class.php:630
|
434 |
msgid "Enable Live Preview"
|
435 |
msgstr "Activer l'aperçu en direct"
|
436 |
|
437 |
+
# @ crayon-syntax-highlighter
|
438 |
+
#: ../crayon_settings_wp.class.php:632
|
439 |
+
msgid "Enqueue themes in the header (more efficient)."
|
440 |
+
msgstr "Enqueue thèmes dans l'en-tête (plus efficace)."
|
441 |
+
|
442 |
+
# @ crayon-syntax-highlighter
|
443 |
+
#: ../crayon_settings_wp.class.php:632
|
444 |
+
#: ../crayon_settings_wp.class.php:658
|
445 |
+
#: ../crayon_settings_wp.class.php:683
|
446 |
+
#: ../crayon_settings_wp.class.php:690
|
447 |
+
#: ../crayon_settings_wp.class.php:691
|
448 |
+
#: ../crayon_settings_wp.class.php:692
|
449 |
+
#: ../crayon_settings_wp.class.php:693
|
450 |
+
#: ../crayon_settings_wp.class.php:694
|
451 |
+
#: ../crayon_settings_wp.class.php:695
|
452 |
+
#: ../crayon_settings_wp.class.php:709
|
453 |
+
#: ../crayon_settings_wp.class.php:716
|
454 |
+
#: ../crayon_settings_wp.class.php:717
|
455 |
+
msgid "?"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
# @ crayon-syntax-highlighter
|
459 |
+
#: ../crayon_settings_wp.class.php:635
|
460 |
#, php-format
|
|
|
461 |
msgid "The selected theme with id %s could not be loaded"
|
462 |
msgstr "Le thème choisi avec id %s ne pouvait pas être chargé"
|
463 |
|
464 |
+
# @ crayon-syntax-highlighter
|
465 |
+
#: ../crayon_settings_wp.class.php:647
|
466 |
msgid "Custom Font Size"
|
467 |
msgstr "Taille du texte personnalisé"
|
468 |
|
469 |
+
# @ crayon-syntax-highlighter
|
470 |
+
#: ../crayon_settings_wp.class.php:652
|
471 |
#, php-format
|
|
|
472 |
msgid "The selected font with id %s could not be loaded"
|
473 |
msgstr "La police sélectionnée avec id %s ne pouvait pas être chargé"
|
474 |
|
475 |
+
# @ crayon-syntax-highlighter
|
476 |
+
#: ../crayon_settings_wp.class.php:658
|
477 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
478 |
+
msgstr "Enqueue polices de caractères dans l'en-tête (plus efficace)."
|
479 |
+
|
480 |
+
# @ crayon-syntax-highlighter
|
481 |
+
#: ../crayon_settings_wp.class.php:663
|
482 |
msgid "Enable plain code view and display"
|
483 |
msgstr "Activer le mode code clair et d'affichage"
|
484 |
|
485 |
+
# @ crayon-syntax-highlighter
|
486 |
+
#: ../crayon_settings_wp.class.php:666
|
487 |
+
msgid "Enable plain code toggling"
|
488 |
+
msgstr "Activer le code basculer plaine"
|
489 |
+
|
490 |
+
# @ crayon-syntax-highlighter
|
491 |
+
#: ../crayon_settings_wp.class.php:667
|
492 |
+
msgid "Show the plain code by default"
|
493 |
+
msgstr "Montrer le code brut par défaut"
|
494 |
+
|
495 |
+
# @ crayon-syntax-highlighter
|
496 |
+
#: ../crayon_settings_wp.class.php:668
|
497 |
msgid "Enable code copy/paste"
|
498 |
msgstr "Activer copiez le code/coller"
|
499 |
|
500 |
+
# @ crayon-syntax-highlighter
|
501 |
+
#: ../crayon_settings_wp.class.php:670
|
502 |
msgid "Enable opening code in a window"
|
503 |
msgstr "Activer code d'ouverture dans une fenêtre"
|
504 |
|
505 |
+
# @ crayon-syntax-highlighter
|
506 |
+
#: ../crayon_settings_wp.class.php:671
|
507 |
+
msgid "Always display scrollbars"
|
508 |
+
msgstr "Toujours afficher les barres de défilement"
|
509 |
+
|
510 |
+
# @ crayon-syntax-highlighter
|
511 |
+
#: ../crayon_settings_wp.class.php:672
|
512 |
msgid "Tab size in spaces"
|
513 |
msgstr "Taille des tabulations dans les espaces"
|
514 |
|
515 |
+
# @ crayon-syntax-highlighter
|
516 |
+
#: ../crayon_settings_wp.class.php:677
|
517 |
+
msgid "Decode HTML entities in code"
|
518 |
+
msgstr "Décoder des entités HTML dans le code"
|
519 |
+
|
520 |
+
# @ crayon-syntax-highlighter
|
521 |
+
#: ../crayon_settings_wp.class.php:679
|
522 |
+
msgid "Decode HTML entities in attributes"
|
523 |
+
msgstr "Décoder des entités HTML dans les attributs"
|
524 |
+
|
525 |
+
# @ crayon-syntax-highlighter
|
526 |
+
#: ../crayon_settings_wp.class.php:681
|
527 |
msgid "Remove whitespace surrounding the shortcode content"
|
528 |
msgstr "Enlevez les espaces entourant le contenu shortcode"
|
529 |
|
530 |
+
# @ crayon-syntax-highlighter
|
531 |
+
#: ../crayon_settings_wp.class.php:683
|
532 |
+
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
533 |
+
msgstr "Autoriser Soulignant langue mélangée avec des délimiteurs et des tags."
|
534 |
+
|
535 |
+
# @ crayon-syntax-highlighter
|
536 |
+
#: ../crayon_settings_wp.class.php:685
|
537 |
+
msgid "Show Mixed Language Icon (+)"
|
538 |
+
msgstr "Afficher l'icône Langue mixte (+)"
|
539 |
+
|
540 |
+
# @ crayon-syntax-highlighter
|
541 |
+
#: ../crayon_settings_wp.class.php:690
|
542 |
+
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
543 |
+
msgstr "Capturez Balises Mini tels que [php][/php] Crayons."
|
544 |
+
|
545 |
+
# @ crayon-syntax-highlighter
|
546 |
+
#: ../crayon_settings_wp.class.php:691
|
547 |
+
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
548 |
+
msgstr "Capturez Mots Inline comme {php} {/php} à l'intérieur des phrases."
|
549 |
+
|
550 |
+
# @ crayon-syntax-highlighter
|
551 |
+
#: ../crayon_settings_wp.class.php:692
|
552 |
+
msgid "Wrap Inline Tags"
|
553 |
+
msgstr "Wrap Balises Inline"
|
554 |
+
|
555 |
+
# @ crayon-syntax-highlighter
|
556 |
+
#: ../crayon_settings_wp.class.php:693
|
557 |
+
msgid "Capture `backquotes` as <code>"
|
558 |
+
msgstr "Capturez `apostrophes inverses` as <code>"
|
559 |
+
|
560 |
+
# @ crayon-syntax-highlighter
|
561 |
+
#: ../crayon_settings_wp.class.php:694
|
562 |
+
msgid "Capture <pre> tags as Crayons"
|
563 |
+
msgstr "Capturez balises <pre> que Crayons"
|
564 |
+
|
565 |
+
# @ crayon-syntax-highlighter
|
566 |
+
#: ../crayon_settings_wp.class.php:695
|
567 |
+
msgid "Enable [plain][/plain] tag."
|
568 |
+
msgstr "Activer tag [plain][/plain]."
|
569 |
+
|
570 |
+
# @ crayon-syntax-highlighter
|
571 |
+
#: ../crayon_settings_wp.class.php:700
|
572 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
573 |
msgstr "Lors du chargement des fichiers locaux et un chemin relatif est donné pour l'URL, utilisez le chemin absolu"
|
574 |
|
575 |
+
# @ crayon-syntax-highlighter
|
576 |
+
#: ../crayon_settings_wp.class.php:703
|
577 |
+
msgid "Followed by your relative URL."
|
578 |
+
msgstr "Suivi de votre URL relative."
|
579 |
+
|
580 |
+
# @ crayon-syntax-highlighter
|
581 |
+
#: ../crayon_settings_wp.class.php:707
|
582 |
+
#, php-format
|
583 |
+
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
584 |
+
msgstr "Utilisez %s pour séparer les noms de paramètres à partir des valeurs de la <pre> attribut de classe"
|
585 |
+
|
586 |
+
# @ crayon-syntax-highlighter
|
587 |
+
#: ../crayon_settings_wp.class.php:713
|
588 |
msgid "Clear the cache used to store remote code requests"
|
589 |
msgstr "Vider le cache utilisé pour stocker les demandes de code à distance"
|
590 |
|
591 |
+
# @ crayon-syntax-highlighter
|
592 |
+
#: ../crayon_settings_wp.class.php:715
|
593 |
msgid "Clear Now"
|
594 |
msgstr "Effacer maintenant"
|
595 |
|
596 |
+
# @ crayon-syntax-highlighter
|
597 |
+
#: ../crayon_settings_wp.class.php:716
|
598 |
+
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
599 |
+
msgstr "Tentative de chargement CSS Crayon et JavaScript seulement quand c'est nécessaire"
|
600 |
+
|
601 |
+
# @ crayon-syntax-highlighter
|
602 |
+
#: ../crayon_settings_wp.class.php:717
|
603 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
604 |
+
msgstr "Désactiver enqueuing pour les modèles de page qui peut contenir la boucle."
|
605 |
+
|
606 |
+
# @ crayon-syntax-highlighter
|
607 |
+
#: ../crayon_settings_wp.class.php:718
|
608 |
+
msgid "Allow Crayons inside comments"
|
609 |
+
msgstr "Permettez-Crayons à l'intérieur de commentaires"
|
610 |
+
|
611 |
+
#: ../crayon_settings_wp.class.php:719
|
612 |
+
msgid "Remove Crayons from excerpts"
|
613 |
+
msgstr "Retirer Crayons à partir d'extraits"
|
614 |
+
|
615 |
+
# @ crayon-syntax-highlighter
|
616 |
+
#: ../crayon_settings_wp.class.php:720
|
617 |
+
msgid "Load Crayons only from the main Wordpress query"
|
618 |
+
msgstr "Crayons Charge seulement de la requête principale Wordpress"
|
619 |
+
|
620 |
+
# @ crayon-syntax-highlighter
|
621 |
+
#: ../crayon_settings_wp.class.php:721
|
622 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
623 |
msgstr "Désactiver les gestes de souris pour les appareils à écran tactile (ex. MouseOver)"
|
624 |
|
625 |
+
# @ crayon-syntax-highlighter
|
626 |
+
#: ../crayon_settings_wp.class.php:722
|
627 |
msgid "Disable animations"
|
628 |
msgstr "Désactiver les animations"
|
629 |
|
630 |
+
# @ crayon-syntax-highlighter
|
631 |
+
#: ../crayon_settings_wp.class.php:723
|
632 |
msgid "Disable runtime stats"
|
633 |
msgstr "Désactiver l'exécution stats"
|
634 |
|
635 |
+
# @ crayon-syntax-highlighter
|
636 |
+
#: ../crayon_settings_wp.class.php:729
|
637 |
msgid "Log errors for individual Crayons"
|
638 |
msgstr "Connexion pour les erreurs individuelles Crayons"
|
639 |
|
640 |
+
# @ crayon-syntax-highlighter
|
641 |
+
#: ../crayon_settings_wp.class.php:730
|
642 |
msgid "Log system-wide errors"
|
643 |
msgstr "Connexion échelle du système des erreurs"
|
644 |
|
645 |
+
# @ crayon-syntax-highlighter
|
646 |
+
#: ../crayon_settings_wp.class.php:731
|
647 |
msgid "Display custom message for errors"
|
648 |
msgstr "Afficher un message personnalisé pour les erreurs"
|
649 |
|
650 |
+
# @ crayon-syntax-highlighter
|
651 |
+
#: ../crayon_settings_wp.class.php:743
|
652 |
msgid "Show Log"
|
653 |
msgstr "Afficher le journal"
|
654 |
|
655 |
+
# @ crayon-syntax-highlighter
|
656 |
+
#: ../crayon_settings_wp.class.php:743
|
657 |
+
msgid "Hide Log"
|
658 |
+
msgstr "Cacher Connexion"
|
659 |
+
|
660 |
+
# @ crayon-syntax-highlighter
|
661 |
+
#: ../crayon_settings_wp.class.php:745
|
662 |
msgid "Clear Log"
|
663 |
msgstr "Effacer le journal"
|
664 |
|
665 |
+
# @ crayon-syntax-highlighter
|
666 |
+
#: ../crayon_settings_wp.class.php:746
|
667 |
msgid "Email Admin"
|
668 |
msgstr "Admin Email"
|
669 |
|
670 |
+
# @ crayon-syntax-highlighter
|
671 |
+
#: ../crayon_settings_wp.class.php:748
|
672 |
msgid "Email Developer"
|
673 |
msgstr "Développeur Email"
|
674 |
|
675 |
+
# @ crayon-syntax-highlighter
|
676 |
+
#: ../crayon_settings_wp.class.php:750
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
677 |
msgid "The log is currently empty."
|
678 |
msgstr "Le journal est actuellement vide."
|
679 |
|
680 |
+
# @ crayon-syntax-highlighter
|
681 |
+
#: ../crayon_settings_wp.class.php:752
|
682 |
msgid "The log file exists and is writable."
|
683 |
msgstr "Le fichier journal existe et est accessible en écriture."
|
684 |
|
685 |
+
# @ crayon-syntax-highlighter
|
686 |
+
#: ../crayon_settings_wp.class.php:752
|
687 |
msgid "The log file exists and is not writable."
|
688 |
msgstr "Le fichier journal existe et n'est pas accessible en écriture."
|
689 |
|
690 |
+
# @ crayon-syntax-highlighter
|
691 |
+
#: ../crayon_settings_wp.class.php:754
|
692 |
msgid "The log file does not exist and is not writable."
|
693 |
msgstr "Le fichier journal n'existe pas et n'est pas modifiable."
|
694 |
|
695 |
+
# @ crayon-syntax-highlighter
|
696 |
+
#: ../crayon_settings_wp.class.php:764
|
697 |
+
msgid "Version"
|
698 |
+
msgstr "Version"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
699 |
|
700 |
+
# @ crayon-syntax-highlighter
|
701 |
+
#: ../crayon_settings_wp.class.php:766
|
702 |
+
msgid "Developer"
|
703 |
+
msgstr "Développeur"
|
704 |
|
705 |
+
# @ crayon-syntax-highlighter
|
706 |
+
#: ../crayon_settings_wp.class.php:767
|
707 |
msgid "Translators"
|
708 |
msgstr "Traducteurs"
|
709 |
|
710 |
+
# @ crayon-syntax-highlighter
|
711 |
+
#: ../crayon_settings_wp.class.php:790
|
712 |
+
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
713 |
+
msgstr "Le résultat de nombreuses heures de dur labeur sur plusieurs mois. C'est un projet en cours, me garder motivé!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
714 |
|
715 |
+
# @ crayon-syntax-highlighter
|
716 |
+
#: ../crayon_settings_wp.class.php:806
|
717 |
+
msgid "Donate"
|
718 |
+
msgstr "Faire un don"
|
|
|
719 |
|
720 |
+
# @ crayon-syntax-highlighter
|
721 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:57
|
722 |
msgid "Add Crayon Code"
|
723 |
+
msgstr "Ajouter code Crayon"
|
724 |
|
725 |
+
# @ crayon-syntax-highlighter
|
726 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:58
|
727 |
msgid "Edit Crayon Code"
|
728 |
+
msgstr "Modifier le code Crayon"
|
729 |
|
730 |
+
# @ crayon-syntax-highlighter
|
731 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:59
|
732 |
msgid "Add"
|
733 |
+
msgstr "Ajouter"
|
734 |
|
735 |
+
# @ crayon-syntax-highlighter
|
736 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:60
|
737 |
msgid "Save"
|
738 |
+
msgstr "Sauver"
|
739 |
|
740 |
+
# @ crayon-syntax-highlighter
|
741 |
+
#: ../util/tag-editor/crayon_te_content.php:65
|
742 |
msgid "Title"
|
743 |
+
msgstr "Titre"
|
744 |
|
745 |
+
#: ../util/tag-editor/crayon_te_content.php:67
|
746 |
+
msgid "A short description"
|
747 |
+
msgstr "Une brève description"
|
748 |
+
|
749 |
+
# @ crayon-syntax-highlighter
|
750 |
+
#: ../util/tag-editor/crayon_te_content.php:70
|
751 |
msgid "Inline"
|
752 |
+
msgstr "Inline"
|
753 |
|
754 |
+
# @ crayon-syntax-highlighter
|
755 |
+
#: ../util/tag-editor/crayon_te_content.php:75
|
756 |
msgid "Language"
|
757 |
+
msgstr "Langue"
|
758 |
|
759 |
+
# @ crayon-syntax-highlighter
|
760 |
+
#: ../util/tag-editor/crayon_te_content.php:78
|
761 |
msgid "Marked Lines"
|
762 |
+
msgstr "Lignes Marquées"
|
763 |
+
|
764 |
+
#: ../util/tag-editor/crayon_te_content.php:79
|
765 |
+
msgid "(e.g. 1,2,3-5)"
|
766 |
+
msgstr "(par exemple 1,2,3-5)"
|
767 |
|
768 |
+
# @ crayon-syntax-highlighter
|
769 |
+
#: ../util/tag-editor/crayon_te_content.php:82
|
770 |
msgid "Disable Highlighting"
|
771 |
+
msgstr "Désactiver la Surbrillance"
|
772 |
|
773 |
+
# @ crayon-syntax-highlighter
|
774 |
+
#: ../util/tag-editor/crayon_te_content.php:87
|
775 |
msgid "Clear"
|
776 |
+
msgstr "Effacer"
|
777 |
|
778 |
+
# @ crayon-syntax-highlighter
|
779 |
+
#: ../util/tag-editor/crayon_te_content.php:88
|
780 |
msgid "Paste your code here, or type it in manually."
|
781 |
+
msgstr "Collez votre code ici, ou tapez manuellement."
|
782 |
+
|
783 |
+
#: ../util/tag-editor/crayon_te_content.php:91
|
784 |
+
msgid "URL"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: ../util/tag-editor/crayon_te_content.php:93
|
788 |
+
msgid "Relative local path or absolute URL"
|
789 |
+
msgstr "Relative chemin d'accès local ou une URL absolue"
|
790 |
+
|
791 |
+
#: ../util/tag-editor/crayon_te_content.php:96
|
792 |
+
msgid "If the URL fails to load, the code above will be shown instead. If no code exists, an error is shown."
|
793 |
+
msgstr "Si l'URL ne parvient pas à charger, le code ci-dessus sera affiché à la place. Si aucun code existe, une erreur s'affiche."
|
794 |
+
|
795 |
+
#: ../util/tag-editor/crayon_te_content.php:98
|
796 |
+
#, php-format
|
797 |
+
msgid "If a relative local path is given it will be appended to %s - which is defined in %sCrayon > Settings > Files%s."
|
798 |
+
msgstr "Si un chemin relatif locale est donné, il sera ajouté à %s - qui est défini dans %sCrayon > Paramètres > Fichiers%s."
|
799 |
+
|
800 |
+
# @ crayon-syntax-highlighter
|
801 |
+
#: ../util/tag-editor/crayon_te_content.php:117
|
802 |
msgid "Change the following settings to override their global values."
|
803 |
+
msgstr "Modifiez les paramètres suivants pour remplacer leurs valeurs globales."
|
804 |
|
805 |
+
# @ crayon-syntax-highlighter
|
806 |
+
#: ../util/tag-editor/crayon_te_content.php:119
|
807 |
msgid "Only changes (shown yellow) are applied."
|
808 |
+
msgstr "Seules les modifications (montré en jaune) sont appliquées."
|
809 |
|
810 |
+
#: ../util/tag-editor/crayon_te_content.php:121
|
811 |
#, php-format
|
812 |
+
msgid "Future changes to the global settings under %sCrayon > Settings%s won't affect overridden settings."
|
813 |
+
msgstr "Les modifications futures des paramètres globaux au titre de %sCrayon > Paramètres%s n'affectera pas paramètres substitués."
|
814 |
+
|
815 |
+
# @ crayon-syntax-highlighter
|
816 |
+
#: ../util/theme-editor/editor.php:16
|
817 |
+
msgid "Back To Settings"
|
818 |
+
msgstr "Retour aux réglages"
|
819 |
|
trans/crayon-syntax-highlighter-it_IT.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-it_IT.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -10,728 +10,806 @@ msgstr ""
|
|
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: \n"
|
14 |
-
"X-Poedit-Country: \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:
|
18 |
-
"X-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-
|
21 |
|
22 |
-
|
23 |
-
#:
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Max"
|
26 |
msgstr "Max"
|
27 |
|
28 |
-
|
29 |
-
#: crayon_settings.class.php:
|
30 |
-
|
31 |
msgid "Min"
|
32 |
msgstr "Min"
|
33 |
|
34 |
-
|
35 |
-
#: crayon_settings.class.php:
|
36 |
-
|
37 |
msgid "Static"
|
38 |
msgstr "Statico"
|
39 |
|
40 |
-
|
41 |
-
#: crayon_settings.class.php:
|
42 |
-
#:
|
43 |
-
#: crayon_settings_wp.class.php:
|
44 |
-
#: crayon_settings_wp.class.php:
|
45 |
-
|
46 |
msgid "Pixels"
|
47 |
msgstr "Pixels"
|
48 |
|
49 |
-
|
50 |
-
#: crayon_settings.class.php:
|
51 |
-
|
52 |
msgid "Percent"
|
53 |
msgstr "Per cento"
|
54 |
|
55 |
-
|
56 |
-
|
57 |
msgid "None"
|
58 |
msgstr "Nessuno"
|
59 |
|
60 |
-
|
61 |
-
|
62 |
msgid "Left"
|
63 |
msgstr "Sinistra"
|
64 |
|
65 |
-
|
66 |
-
|
67 |
msgid "Center"
|
68 |
msgstr "Centro"
|
69 |
|
70 |
-
|
71 |
-
|
72 |
msgid "Right"
|
73 |
msgstr "Destra"
|
74 |
|
75 |
-
|
76 |
-
#: crayon_settings.class.php:
|
77 |
-
|
78 |
msgid "On MouseOver"
|
79 |
msgstr "Al passaggio del mouse"
|
80 |
|
81 |
-
|
82 |
-
#: crayon_settings.class.php:
|
83 |
-
|
84 |
msgid "Always"
|
85 |
msgstr "Sempre"
|
86 |
|
87 |
-
|
88 |
-
#: crayon_settings.class.php:
|
89 |
-
|
90 |
msgid "Never"
|
91 |
msgstr "Mai"
|
92 |
|
93 |
-
|
94 |
-
|
95 |
msgid "When Found"
|
96 |
msgstr "Quando Trovato"
|
97 |
|
98 |
-
|
99 |
-
|
100 |
msgid "On Double Click"
|
101 |
msgstr "Su doppio click"
|
102 |
|
103 |
-
|
104 |
-
|
105 |
msgid "On Single Click"
|
106 |
msgstr "Il singolo click"
|
107 |
|
108 |
-
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
110 |
msgid "An error has occurred. Please try again later."
|
111 |
msgstr "È verificato un errore. Riprova più tardi."
|
112 |
|
113 |
-
|
114 |
-
#: crayon_settings_wp.class.php:
|
115 |
-
#: crayon_settings_wp.class.php:
|
116 |
-
|
117 |
msgid "Settings"
|
118 |
msgstr "Impostazioni"
|
119 |
|
120 |
-
|
121 |
-
|
122 |
msgid "You do not have sufficient permissions to access this page."
|
123 |
msgstr "Non si dispone di autorizzazioni sufficienti per accedere a questa pagina."
|
124 |
|
125 |
-
|
126 |
-
|
127 |
msgid "Save Changes"
|
128 |
msgstr "Salva le modifiche"
|
129 |
|
130 |
-
|
131 |
-
|
132 |
msgid "Reset Settings"
|
133 |
msgstr "Ripristina Impostazioni"
|
134 |
|
135 |
-
|
136 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Height"
|
138 |
msgstr "Altezza"
|
139 |
|
140 |
-
|
141 |
-
|
142 |
msgid "Width"
|
143 |
msgstr "Larghezza"
|
144 |
|
145 |
-
|
146 |
-
|
147 |
msgid "Top Margin"
|
148 |
msgstr "Margine superiore"
|
149 |
|
150 |
-
|
151 |
-
|
152 |
msgid "Bottom Margin"
|
153 |
msgstr "Basso margine"
|
154 |
|
155 |
-
|
156 |
-
#: crayon_settings_wp.class.php:
|
157 |
-
|
158 |
msgid "Left Margin"
|
159 |
msgstr "Margine sinistro"
|
160 |
|
161 |
-
|
162 |
-
#: crayon_settings_wp.class.php:
|
163 |
-
|
164 |
msgid "Right Margin"
|
165 |
msgstr "Margine destro"
|
166 |
|
167 |
-
|
168 |
-
|
169 |
msgid "Horizontal Alignment"
|
170 |
msgstr "Allineamento orizzontale"
|
171 |
|
172 |
-
|
173 |
-
|
174 |
msgid "Allow floating elements to surround Crayon"
|
175 |
msgstr "Consentire agli elementi flottanti per circondare Crayon"
|
176 |
|
177 |
-
|
178 |
-
|
|
|
|
|
|
|
|
|
|
|
179 |
msgid "Display the Toolbar"
|
180 |
msgstr "Visualizzare la barra degli strumenti"
|
181 |
|
182 |
-
|
183 |
-
|
184 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
185 |
msgstr "Sovrapposizione della barra degli strumenti sul codice, piuttosto che spingere verso il basso quando è possibile"
|
186 |
|
187 |
-
|
188 |
-
|
189 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
190 |
msgstr "Attivare o disattivare la barra degli strumenti sul singolo click quando è sovrapposto"
|
191 |
|
192 |
-
|
193 |
-
|
194 |
msgid "Delay hiding the toolbar on MouseOut"
|
195 |
msgstr "Ritardo nascondere la barra degli strumenti su MouseOut"
|
196 |
|
197 |
-
|
198 |
-
|
199 |
msgid "Display the title when provided"
|
200 |
msgstr "Visualizzare il titolo, ove previsto"
|
201 |
|
202 |
-
|
203 |
-
|
204 |
msgid "Display the language"
|
205 |
msgstr "Visualizzare la lingua"
|
206 |
|
207 |
-
|
208 |
-
|
209 |
msgid "Display striped code lines"
|
210 |
msgstr "Visualizzare le linee del codice a strisce"
|
211 |
|
212 |
-
|
213 |
-
|
214 |
msgid "Enable line marking for important lines"
|
215 |
msgstr "Abilita linea di marcatura per linee importanti"
|
216 |
|
217 |
-
|
218 |
-
|
219 |
msgid "Display line numbers by default"
|
220 |
msgstr "Visualizzare i numeri di linea di default"
|
221 |
|
222 |
-
|
223 |
-
|
224 |
msgid "Enable line number toggling"
|
225 |
msgstr "Abilita numero di commutazione linea"
|
226 |
|
227 |
-
|
228 |
-
|
229 |
msgid "Start line numbers from"
|
230 |
msgstr "Inizio numeri di riga da"
|
231 |
|
232 |
-
|
233 |
-
|
234 |
msgid "When no language is provided, use the fallback"
|
235 |
msgstr "Quando non è prevista la lingua, utilizzare il fallback"
|
236 |
|
237 |
-
|
238 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
msgid "Parsing was successful"
|
240 |
msgstr "L'analisi ha avuto successo"
|
241 |
|
242 |
-
|
243 |
-
|
244 |
msgid "Parsing was unsuccessful"
|
245 |
msgstr "L'analisi non ha avuto successo"
|
246 |
|
247 |
-
|
|
|
248 |
#, php-format
|
249 |
-
#@ crayon-syntax-highlighter
|
250 |
msgid "The selected language with id %s could not be loaded"
|
251 |
msgstr "La lingua selezionata con id %s non può essere caricato"
|
252 |
|
253 |
-
|
254 |
-
|
255 |
msgid "Show Languages"
|
256 |
msgstr "Mostra Lingue"
|
257 |
|
258 |
-
|
259 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid "Enable Live Preview"
|
261 |
msgstr "Attiva anteprima dal vivo"
|
262 |
|
263 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
#, php-format
|
265 |
-
#@ crayon-syntax-highlighter
|
266 |
msgid "The selected theme with id %s could not be loaded"
|
267 |
msgstr "La tema selezionata con id %s non può essere caricato"
|
268 |
|
269 |
-
|
270 |
-
|
271 |
msgid "Custom Font Size"
|
272 |
msgstr "Dimensione del carattere personalizzati"
|
273 |
|
274 |
-
|
|
|
275 |
#, php-format
|
276 |
-
#@ crayon-syntax-highlighter
|
277 |
msgid "The selected font with id %s could not be loaded"
|
278 |
msgstr "La font selezionata con id %s non può essere caricato"
|
279 |
|
280 |
-
|
281 |
-
|
|
|
|
|
|
|
|
|
|
|
282 |
msgid "Enable plain code view and display"
|
283 |
msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
|
284 |
|
285 |
-
|
286 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
msgid "Enable code copy/paste"
|
288 |
msgstr "Abilita copiare il codice/incolla"
|
289 |
|
290 |
-
|
291 |
-
|
292 |
msgid "Enable opening code in a window"
|
293 |
msgstr "Abilita il codice di apertura in una finestra"
|
294 |
|
295 |
-
|
296 |
-
|
|
|
|
|
|
|
|
|
|
|
297 |
msgid "Tab size in spaces"
|
298 |
msgstr "Dimensione tabulazione in spazi"
|
299 |
|
300 |
-
#: crayon_settings_wp.class.php:
|
301 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
msgid "Remove whitespace surrounding the shortcode content"
|
303 |
msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
|
304 |
|
305 |
-
|
306 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
308 |
msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
|
309 |
|
310 |
-
|
311 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "Clear the cache used to store remote code requests"
|
313 |
msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
|
314 |
|
315 |
-
|
316 |
-
|
317 |
msgid "Clear Now"
|
318 |
msgstr "Svuota adesso"
|
319 |
|
320 |
-
|
321 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
323 |
msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
|
324 |
|
325 |
-
|
326 |
-
|
327 |
msgid "Disable animations"
|
328 |
msgstr "Disattivare le animazioni"
|
329 |
|
330 |
-
|
331 |
-
|
332 |
msgid "Disable runtime stats"
|
333 |
msgstr "Disabilitare runtime stats"
|
334 |
|
335 |
-
|
336 |
-
|
337 |
msgid "Log errors for individual Crayons"
|
338 |
msgstr "Errori nel registro di Crayons singoli"
|
339 |
|
340 |
-
|
341 |
-
|
342 |
msgid "Log system-wide errors"
|
343 |
msgstr "Log di sistema a livello di errori"
|
344 |
|
345 |
-
|
346 |
-
|
347 |
msgid "Display custom message for errors"
|
348 |
msgstr "Display messaggio personalizzato per gli errori"
|
349 |
|
350 |
-
|
351 |
-
|
352 |
msgid "Show Log"
|
353 |
msgstr "Mostra registro"
|
354 |
|
355 |
-
|
356 |
-
|
|
|
|
|
|
|
|
|
|
|
357 |
msgid "Clear Log"
|
358 |
msgstr "Cancella registro"
|
359 |
|
360 |
-
|
361 |
-
|
362 |
msgid "Email Admin"
|
363 |
msgstr "E-mail Admin"
|
364 |
|
365 |
-
|
366 |
-
|
367 |
msgid "Email Developer"
|
368 |
msgstr "Email Developer"
|
369 |
|
370 |
-
|
371 |
-
|
372 |
-
msgid "Version"
|
373 |
-
msgstr "Versione"
|
374 |
-
|
375 |
-
#: crayon_settings_wp.class.php:678
|
376 |
-
#@ crayon-syntax-highlighter
|
377 |
-
msgid "Developer"
|
378 |
-
msgstr "Sviluppatore"
|
379 |
-
|
380 |
-
#: crayon_settings_wp.class.php:701
|
381 |
-
#@ crayon-syntax-highlighter
|
382 |
-
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
383 |
-
msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
|
384 |
-
|
385 |
-
#: crayon_settings_wp.class.php:553
|
386 |
-
#, php-format
|
387 |
-
#@ crayon-syntax-highlighter
|
388 |
-
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
389 |
-
msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
|
390 |
-
|
391 |
-
#: crayon_settings.class.php:106
|
392 |
-
#@ crayon-syntax-highlighter
|
393 |
-
msgid "Hourly"
|
394 |
-
msgstr "Ogni ora"
|
395 |
-
|
396 |
-
#: crayon_settings.class.php:106
|
397 |
-
#@ crayon-syntax-highlighter
|
398 |
-
msgid "Daily"
|
399 |
-
msgstr "Quotidiano"
|
400 |
-
|
401 |
-
#: crayon_settings.class.php:107
|
402 |
-
#@ crayon-syntax-highlighter
|
403 |
-
msgid "Weekly"
|
404 |
-
msgstr "Settimanale"
|
405 |
-
|
406 |
-
#: crayon_settings.class.php:107
|
407 |
-
#@ crayon-syntax-highlighter
|
408 |
-
msgid "Monthly"
|
409 |
-
msgstr "Mensile"
|
410 |
-
|
411 |
-
#: crayon_settings.class.php:108
|
412 |
-
#@ crayon-syntax-highlighter
|
413 |
-
msgid "Immediately"
|
414 |
-
msgstr "Immediatamente"
|
415 |
-
|
416 |
-
#: crayon_settings_wp.class.php:424
|
417 |
-
#@ crayon-syntax-highlighter
|
418 |
-
msgid "Crayon Help"
|
419 |
-
msgstr "Crayon Aiuto"
|
420 |
-
|
421 |
-
#: crayon_settings_wp.class.php:628
|
422 |
-
#@ crayon-syntax-highlighter
|
423 |
-
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
424 |
-
msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
|
425 |
-
|
426 |
-
#: crayon_settings_wp.class.php:508
|
427 |
-
#, php-format
|
428 |
-
#@ crayon-syntax-highlighter
|
429 |
-
msgid "%d language has been detected."
|
430 |
-
msgid_plural "%d languages have been detected."
|
431 |
-
msgstr[0] "%d lingua è stata rilevata."
|
432 |
-
msgstr[1] "%d lingue sono state rilevate."
|
433 |
-
|
434 |
-
#: crayon_settings_wp.class.php:621
|
435 |
-
#@ crayon-syntax-highlighter
|
436 |
-
msgid "Followed by your relative URL."
|
437 |
-
msgstr "Seguito dal relativo URL."
|
438 |
-
|
439 |
-
#: crayon_settings_wp.class.php:662
|
440 |
-
#@ crayon-syntax-highlighter
|
441 |
msgid "The log is currently empty."
|
442 |
msgstr "Il registro è vuoto."
|
443 |
|
444 |
-
|
445 |
-
|
446 |
msgid "The log file exists and is writable."
|
447 |
msgstr "Il file di registro esiste ed è scrivibile."
|
448 |
|
449 |
-
|
450 |
-
|
451 |
msgid "The log file exists and is not writable."
|
452 |
msgstr "Il file di registro esiste e non è scrivibile."
|
453 |
|
454 |
-
|
455 |
-
|
456 |
msgid "The log file does not exist and is not writable."
|
457 |
msgstr "Il file di registro non esiste e non è scrivibile."
|
458 |
|
459 |
-
|
460 |
-
|
461 |
-
msgid "
|
462 |
-
msgstr "
|
463 |
-
|
464 |
-
#: crayon_settings_wp.class.php:558
|
465 |
-
#: crayon_settings_wp.class.php:587
|
466 |
-
#: crayon_settings_wp.class.php:603
|
467 |
-
#: crayon_settings_wp.class.php:608
|
468 |
-
#: crayon_settings_wp.class.php:609
|
469 |
-
#: crayon_settings_wp.class.php:610
|
470 |
-
#: crayon_settings_wp.class.php:611
|
471 |
-
#: crayon_settings_wp.class.php:612
|
472 |
-
#: crayon_settings_wp.class.php:613
|
473 |
-
#: crayon_settings_wp.class.php:628
|
474 |
-
#: crayon_settings_wp.class.php:629
|
475 |
-
#@ crayon-syntax-highlighter
|
476 |
-
msgid "Learn More"
|
477 |
-
msgstr "Approfondisci"
|
478 |
-
|
479 |
-
#: crayon_settings_wp.class.php:604
|
480 |
-
#@ crayon-syntax-highlighter
|
481 |
-
msgid "Show Mixed Language Icon (+)"
|
482 |
-
msgstr "Mostra icona misto di lingua (+)"
|
483 |
-
|
484 |
-
#: crayon_settings_wp.class.php:603
|
485 |
-
#@ crayon-syntax-highlighter
|
486 |
-
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
487 |
-
msgstr "Lasciare Evidenziando Lingua mista con delimitatori e tag."
|
488 |
-
|
489 |
-
#: crayon_settings_wp.class.php:608
|
490 |
-
#@ crayon-syntax-highlighter
|
491 |
-
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
492 |
-
msgstr "Cattura Tags come Mini [php][/php] come Crayons."
|
493 |
-
|
494 |
-
#: crayon_settings_wp.class.php:613
|
495 |
-
#@ crayon-syntax-highlighter
|
496 |
-
msgid "Enable [plain][/plain] tag."
|
497 |
-
msgstr "Abilita tag [plain][/plain]."
|
498 |
-
|
499 |
-
#: crayon_settings.class.php:174
|
500 |
-
#@ crayon-syntax-highlighter
|
501 |
-
msgid "Disable Mouse Events"
|
502 |
-
msgstr "Disabilitare eventi di mouse"
|
503 |
-
|
504 |
-
#: crayon_settings_wp.class.php:594
|
505 |
-
#@ crayon-syntax-highlighter
|
506 |
-
msgid "Enable plain code toggling"
|
507 |
-
msgstr "Abilita commutazione del semplice codice"
|
508 |
-
|
509 |
-
#: crayon_settings_wp.class.php:595
|
510 |
-
#@ crayon-syntax-highlighter
|
511 |
-
msgid "Show the plain code by default"
|
512 |
-
msgstr "Mostrare il codice normale per impostazione predefinita"
|
513 |
-
|
514 |
-
#. translators: plugin header field 'Name'
|
515 |
-
#: crayon_wp.class.php:0
|
516 |
-
#@ crayon-syntax-highlighter
|
517 |
-
msgid "Crayon Syntax Highlighter"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#. translators: plugin header field 'PluginURI'
|
521 |
-
#: crayon_wp.class.php:0
|
522 |
-
#@ crayon-syntax-highlighter
|
523 |
-
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
524 |
-
msgstr ""
|
525 |
|
526 |
-
|
527 |
-
#:
|
528 |
-
|
529 |
-
|
530 |
-
msgstr "Supporta più lingue, temi, evidenziando da un file di URL, locale o testo del messaggio."
|
531 |
|
532 |
-
|
533 |
-
#:
|
534 |
-
|
535 |
-
|
536 |
-
msgstr ""
|
537 |
|
538 |
-
|
539 |
-
#:
|
540 |
-
|
541 |
-
|
542 |
-
msgstr ""
|
543 |
|
544 |
-
|
545 |
-
|
546 |
msgid "Donate"
|
547 |
msgstr "Donare"
|
548 |
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
|
|
553 |
|
554 |
-
#:
|
555 |
-
|
556 |
-
|
557 |
-
msgstr "Tema"
|
558 |
|
559 |
-
#:
|
560 |
-
|
561 |
-
|
562 |
-
msgstr "Sono"
|
563 |
|
564 |
-
#:
|
565 |
-
|
566 |
-
|
567 |
-
msgstr "Metrica"
|
568 |
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
|
|
573 |
|
574 |
-
#:
|
575 |
-
|
576 |
-
|
577 |
-
msgstr "Linee"
|
578 |
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
|
|
583 |
|
584 |
-
|
585 |
-
|
586 |
-
|
|
|
587 |
msgstr "Lingue"
|
588 |
|
589 |
-
#:
|
590 |
-
|
591 |
-
|
592 |
-
msgstr "File"
|
593 |
|
594 |
-
#:
|
595 |
-
|
596 |
-
|
597 |
-
msgstr "Varie"
|
598 |
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
#: crayon_settings_wp.class.php:233
|
605 |
-
#@ crayon-syntax-highlighter
|
606 |
-
msgid "Errors"
|
607 |
-
msgstr "Errori"
|
608 |
-
|
609 |
-
#: crayon_settings_wp.class.php:234
|
610 |
-
#@ crayon-syntax-highlighter
|
611 |
-
msgid "Log"
|
612 |
-
msgstr "Log"
|
613 |
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
|
|
618 |
|
619 |
-
#:
|
620 |
-
|
621 |
-
|
622 |
-
msgstr "Accoda temi nell'intestazione (bassi consumi)."
|
623 |
|
624 |
-
#:
|
625 |
-
|
626 |
-
|
627 |
-
msgstr "Accoda i caratteri nell'intestazione (bassi consumi)."
|
628 |
|
629 |
-
#:
|
630 |
-
|
631 |
-
|
632 |
-
msgstr "Caricamento..."
|
633 |
|
634 |
-
#:
|
635 |
-
|
636 |
-
|
637 |
-
#@ crayon-syntax-highlighter
|
638 |
-
msgid "Theme Editor"
|
639 |
-
msgstr "Tema Editore"
|
640 |
|
641 |
-
#:
|
642 |
-
|
643 |
-
msgid "
|
644 |
-
msgstr "
|
645 |
|
646 |
-
#:
|
647 |
-
|
648 |
-
|
649 |
-
msgstr "Disabilitare Accodamento per i modelli di pagina che può contenere The Loop."
|
650 |
|
651 |
-
#:
|
652 |
-
|
653 |
-
|
654 |
-
msgstr "Pastelli carico solo dalla query principale Wordpress"
|
655 |
|
656 |
-
#:
|
657 |
-
|
658 |
-
msgid "
|
659 |
-
msgstr "
|
660 |
|
661 |
-
|
662 |
-
|
663 |
msgid "Back To Settings"
|
664 |
msgstr "Torna in Impostazioni"
|
665 |
|
666 |
-
#: crayon_formatter.class.php:270
|
667 |
-
#@ crayon-syntax-highlighter
|
668 |
-
msgid "Toggle Plain Code"
|
669 |
-
msgstr "Alterna Codice Pianura"
|
670 |
-
|
671 |
-
#: crayon_formatter.class.php:272
|
672 |
-
#@ crayon-syntax-highlighter
|
673 |
-
msgid "Copy Plain Code"
|
674 |
-
msgstr "Copia il codice di Pianura"
|
675 |
-
|
676 |
-
#: crayon_formatter.class.php:278
|
677 |
-
#@ crayon-syntax-highlighter
|
678 |
-
msgid "Open Code In New Window"
|
679 |
-
msgstr "Codice Apri in una nuova finestra"
|
680 |
-
|
681 |
-
#: crayon_formatter.class.php:281
|
682 |
-
#@ crayon-syntax-highlighter
|
683 |
-
msgid "Toggle Line Numbers"
|
684 |
-
msgstr "Numeri di riga passare"
|
685 |
-
|
686 |
-
#: crayon_formatter.class.php:288
|
687 |
-
#@ crayon-syntax-highlighter
|
688 |
-
msgid "Contains Mixed Languages"
|
689 |
-
msgstr "Contiene lingue miste"
|
690 |
-
|
691 |
-
#: crayon_settings_wp.class.php:655
|
692 |
-
#@ crayon-syntax-highlighter
|
693 |
-
msgid "Hide Log"
|
694 |
-
msgstr "Nascondi Log"
|
695 |
-
|
696 |
-
#: crayon_formatter.class.php:272
|
697 |
-
#, php-format
|
698 |
-
#@ crayon-syntax-highlighter
|
699 |
-
msgid "Press %s to Copy, %s to Paste"
|
700 |
-
msgstr "Stampa %s per Copia, Incolla per %s"
|
701 |
-
|
702 |
-
#: crayon_settings_wp.class.php:226
|
703 |
-
#@ crayon-syntax-highlighter
|
704 |
-
msgid "Tags"
|
705 |
-
msgstr "Tags"
|
706 |
-
|
707 |
-
#: crayon_settings_wp.class.php:468
|
708 |
-
#@ crayon-syntax-highlighter
|
709 |
-
msgid "Inline Margin"
|
710 |
-
msgstr "Margine Inline"
|
711 |
-
|
712 |
-
#: crayon_settings_wp.class.php:609
|
713 |
-
#@ crayon-syntax-highlighter
|
714 |
-
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
715 |
-
msgstr "Cattura Tags Inline come {php} {/php} all'interno di frasi."
|
716 |
-
|
717 |
-
#: crayon_settings_wp.class.php:611
|
718 |
-
#@ crayon-syntax-highlighter
|
719 |
-
msgid "Capture `backquotes` as <code>"
|
720 |
-
msgstr "Cattura `apici inversi` come <code>"
|
721 |
-
|
722 |
-
#: crayon_settings_wp.class.php:630
|
723 |
-
#@ crayon-syntax-highlighter
|
724 |
-
msgid "Allow Crayons inside comments"
|
725 |
-
msgstr "Consentire Crayons all'interno di commenti"
|
726 |
-
|
727 |
-
#. translators: plugin header field 'Version'
|
728 |
-
#: crayon_wp.class.php:0
|
729 |
-
#@ crayon-syntax-highlighter
|
730 |
-
msgid "1.8.2"
|
731 |
-
msgstr ""
|
732 |
-
|
733 |
-
#: crayon_settings_wp.class.php:610
|
734 |
-
#@ crayon-syntax-highlighter
|
735 |
-
msgid "Wrap Inline Tags"
|
736 |
-
msgstr ""
|
737 |
-
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: crayon-syntax-highlighter\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-06 12:45+1000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \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: Italian\n"
|
14 |
+
"X-Poedit-Country: ITALY\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;crayon__;crayon_n;crayon_e\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Poedit-SearchPath-1: ..\n"
|
21 |
|
22 |
+
# @ crayon-syntax-highlighter
|
23 |
+
#: ../crayon_formatter.class.php:266
|
24 |
+
msgid "Toggle Plain Code"
|
25 |
+
msgstr "Alterna Codice Pianura"
|
26 |
+
|
27 |
+
# @ crayon-syntax-highlighter
|
28 |
+
#: ../crayon_formatter.class.php:268
|
29 |
+
#, php-format
|
30 |
+
msgid "Press %s to Copy, %s to Paste"
|
31 |
+
msgstr "Stampa %s per Copia, Incolla per %s"
|
32 |
+
|
33 |
+
# @ crayon-syntax-highlighter
|
34 |
+
#: ../crayon_formatter.class.php:268
|
35 |
+
msgid "Copy Plain Code"
|
36 |
+
msgstr "Copia il codice di Pianura"
|
37 |
+
|
38 |
+
# @ crayon-syntax-highlighter
|
39 |
+
#: ../crayon_formatter.class.php:270
|
40 |
+
msgid "Open Code In New Window"
|
41 |
+
msgstr "Codice Apri in una nuova finestra"
|
42 |
+
|
43 |
+
# @ crayon-syntax-highlighter
|
44 |
+
#: ../crayon_formatter.class.php:273
|
45 |
+
msgid "Toggle Line Numbers"
|
46 |
+
msgstr "Numeri di riga passare"
|
47 |
+
|
48 |
+
# @ crayon-syntax-highlighter
|
49 |
+
#: ../crayon_formatter.class.php:279
|
50 |
+
msgid "Contains Mixed Languages"
|
51 |
+
msgstr "Contiene lingue miste"
|
52 |
+
|
53 |
+
# @ crayon-syntax-highlighter
|
54 |
+
#: ../crayon_settings.class.php:138
|
55 |
+
msgid "Hourly"
|
56 |
+
msgstr "Ogni ora"
|
57 |
+
|
58 |
+
# @ crayon-syntax-highlighter
|
59 |
+
#: ../crayon_settings.class.php:138
|
60 |
+
msgid "Daily"
|
61 |
+
msgstr "Quotidiano"
|
62 |
+
|
63 |
+
# @ crayon-syntax-highlighter
|
64 |
+
#: ../crayon_settings.class.php:139
|
65 |
+
msgid "Weekly"
|
66 |
+
msgstr "Settimanale"
|
67 |
+
|
68 |
+
# @ crayon-syntax-highlighter
|
69 |
+
#: ../crayon_settings.class.php:139
|
70 |
+
msgid "Monthly"
|
71 |
+
msgstr "Mensile"
|
72 |
+
|
73 |
+
# @ crayon-syntax-highlighter
|
74 |
+
#: ../crayon_settings.class.php:140
|
75 |
+
msgid "Immediately"
|
76 |
+
msgstr "Immediatamente"
|
77 |
+
|
78 |
+
# @ crayon-syntax-highlighter
|
79 |
+
#: ../crayon_settings.class.php:150
|
80 |
+
#: ../crayon_settings.class.php:154
|
81 |
msgid "Max"
|
82 |
msgstr "Max"
|
83 |
|
84 |
+
# @ crayon-syntax-highlighter
|
85 |
+
#: ../crayon_settings.class.php:150
|
86 |
+
#: ../crayon_settings.class.php:154
|
87 |
msgid "Min"
|
88 |
msgstr "Min"
|
89 |
|
90 |
+
# @ crayon-syntax-highlighter
|
91 |
+
#: ../crayon_settings.class.php:150
|
92 |
+
#: ../crayon_settings.class.php:154
|
93 |
msgid "Static"
|
94 |
msgstr "Statico"
|
95 |
|
96 |
+
# @ crayon-syntax-highlighter
|
97 |
+
#: ../crayon_settings.class.php:152
|
98 |
+
#: ../crayon_settings.class.php:156
|
99 |
+
#: ../crayon_settings_wp.class.php:541
|
100 |
+
#: ../crayon_settings_wp.class.php:550
|
101 |
+
#: ../crayon_settings_wp.class.php:649
|
102 |
msgid "Pixels"
|
103 |
msgstr "Pixels"
|
104 |
|
105 |
+
# @ crayon-syntax-highlighter
|
106 |
+
#: ../crayon_settings.class.php:152
|
107 |
+
#: ../crayon_settings.class.php:156
|
108 |
msgid "Percent"
|
109 |
msgstr "Per cento"
|
110 |
|
111 |
+
# @ crayon-syntax-highlighter
|
112 |
+
#: ../crayon_settings.class.php:165
|
113 |
msgid "None"
|
114 |
msgstr "Nessuno"
|
115 |
|
116 |
+
# @ crayon-syntax-highlighter
|
117 |
+
#: ../crayon_settings.class.php:165
|
118 |
msgid "Left"
|
119 |
msgstr "Sinistra"
|
120 |
|
121 |
+
# @ crayon-syntax-highlighter
|
122 |
+
#: ../crayon_settings.class.php:165
|
123 |
msgid "Center"
|
124 |
msgstr "Centro"
|
125 |
|
126 |
+
# @ crayon-syntax-highlighter
|
127 |
+
#: ../crayon_settings.class.php:165
|
128 |
msgid "Right"
|
129 |
msgstr "Destra"
|
130 |
|
131 |
+
# @ crayon-syntax-highlighter
|
132 |
+
#: ../crayon_settings.class.php:167
|
133 |
+
#: ../crayon_settings.class.php:189
|
134 |
msgid "On MouseOver"
|
135 |
msgstr "Al passaggio del mouse"
|
136 |
|
137 |
+
# @ crayon-syntax-highlighter
|
138 |
+
#: ../crayon_settings.class.php:167
|
139 |
+
#: ../crayon_settings.class.php:173
|
140 |
msgid "Always"
|
141 |
msgstr "Sempre"
|
142 |
|
143 |
+
# @ crayon-syntax-highlighter
|
144 |
+
#: ../crayon_settings.class.php:167
|
145 |
+
#: ../crayon_settings.class.php:173
|
146 |
msgid "Never"
|
147 |
msgstr "Mai"
|
148 |
|
149 |
+
# @ crayon-syntax-highlighter
|
150 |
+
#: ../crayon_settings.class.php:173
|
151 |
msgid "When Found"
|
152 |
msgstr "Quando Trovato"
|
153 |
|
154 |
+
# @ crayon-syntax-highlighter
|
155 |
+
#: ../crayon_settings.class.php:189
|
156 |
msgid "On Double Click"
|
157 |
msgstr "Su doppio click"
|
158 |
|
159 |
+
# @ crayon-syntax-highlighter
|
160 |
+
#: ../crayon_settings.class.php:189
|
161 |
msgid "On Single Click"
|
162 |
msgstr "Il singolo click"
|
163 |
|
164 |
+
# @ crayon-syntax-highlighter
|
165 |
+
#: ../crayon_settings.class.php:189
|
166 |
+
msgid "Disable Mouse Events"
|
167 |
+
msgstr "Disabilitare eventi di mouse"
|
168 |
+
|
169 |
+
# @ crayon-syntax-highlighter
|
170 |
+
#: ../crayon_settings.class.php:196
|
171 |
msgid "An error has occurred. Please try again later."
|
172 |
msgstr "È verificato un errore. Riprova più tardi."
|
173 |
|
174 |
+
# @ crayon-syntax-highlighter
|
175 |
+
#: ../crayon_settings_wp.class.php:44
|
176 |
+
#: ../crayon_settings_wp.class.php:118
|
177 |
+
#: ../crayon_settings_wp.class.php:802
|
178 |
msgid "Settings"
|
179 |
msgstr "Impostazioni"
|
180 |
|
181 |
+
# @ crayon-syntax-highlighter
|
182 |
+
#: ../crayon_settings_wp.class.php:99
|
183 |
msgid "You do not have sufficient permissions to access this page."
|
184 |
msgstr "Non si dispone di autorizzazioni sufficienti per accedere a questa pagina."
|
185 |
|
186 |
+
# @ crayon-syntax-highlighter
|
187 |
+
#: ../crayon_settings_wp.class.php:130
|
188 |
msgid "Save Changes"
|
189 |
msgstr "Salva le modifiche"
|
190 |
|
191 |
+
# @ crayon-syntax-highlighter
|
192 |
+
#: ../crayon_settings_wp.class.php:136
|
193 |
msgid "Reset Settings"
|
194 |
msgstr "Ripristina Impostazioni"
|
195 |
|
196 |
+
# @ crayon-syntax-highlighter
|
197 |
+
#: ../crayon_settings_wp.class.php:301
|
198 |
+
msgid "General"
|
199 |
+
msgstr "General"
|
200 |
+
|
201 |
+
# @ crayon-syntax-highlighter
|
202 |
+
#: ../crayon_settings_wp.class.php:302
|
203 |
+
msgid "Theme"
|
204 |
+
msgstr "Tema"
|
205 |
+
|
206 |
+
# @ crayon-syntax-highlighter
|
207 |
+
#: ../crayon_settings_wp.class.php:303
|
208 |
+
msgid "Font"
|
209 |
+
msgstr "Sono"
|
210 |
+
|
211 |
+
# @ crayon-syntax-highlighter
|
212 |
+
#: ../crayon_settings_wp.class.php:304
|
213 |
+
msgid "Metrics"
|
214 |
+
msgstr "Metrica"
|
215 |
+
|
216 |
+
# @ crayon-syntax-highlighter
|
217 |
+
#: ../crayon_settings_wp.class.php:305
|
218 |
+
msgid "Toolbar"
|
219 |
+
msgstr "Toolbar"
|
220 |
+
|
221 |
+
# @ crayon-syntax-highlighter
|
222 |
+
#: ../crayon_settings_wp.class.php:306
|
223 |
+
msgid "Lines"
|
224 |
+
msgstr "Linee"
|
225 |
+
|
226 |
+
# @ crayon-syntax-highlighter
|
227 |
+
#: ../crayon_settings_wp.class.php:307
|
228 |
+
msgid "Code"
|
229 |
+
msgstr "Codice"
|
230 |
+
|
231 |
+
# @ crayon-syntax-highlighter
|
232 |
+
#: ../crayon_settings_wp.class.php:308
|
233 |
+
msgid "Tags"
|
234 |
+
msgstr "Tags"
|
235 |
+
|
236 |
+
# @ crayon-syntax-highlighter
|
237 |
+
#: ../crayon_settings_wp.class.php:309
|
238 |
+
msgid "Languages"
|
239 |
+
msgstr "Lingue"
|
240 |
+
|
241 |
+
# @ crayon-syntax-highlighter
|
242 |
+
#: ../crayon_settings_wp.class.php:310
|
243 |
+
msgid "Files"
|
244 |
+
msgstr "File"
|
245 |
+
|
246 |
+
# @ crayon-syntax-highlighter
|
247 |
+
#: ../crayon_settings_wp.class.php:311
|
248 |
+
#, fuzzy
|
249 |
+
msgid "Tag Editor"
|
250 |
+
msgstr "Tema Editore"
|
251 |
+
|
252 |
+
# @ crayon-syntax-highlighter
|
253 |
+
#: ../crayon_settings_wp.class.php:312
|
254 |
+
msgid "Misc"
|
255 |
+
msgstr "Varie"
|
256 |
+
|
257 |
+
# @ crayon-syntax-highlighter
|
258 |
+
#: ../crayon_settings_wp.class.php:315
|
259 |
+
msgid "Debug"
|
260 |
+
msgstr "Debug"
|
261 |
+
|
262 |
+
# @ crayon-syntax-highlighter
|
263 |
+
#: ../crayon_settings_wp.class.php:316
|
264 |
+
msgid "Errors"
|
265 |
+
msgstr "Errori"
|
266 |
+
|
267 |
+
# @ crayon-syntax-highlighter
|
268 |
+
#: ../crayon_settings_wp.class.php:317
|
269 |
+
msgid "Log"
|
270 |
+
msgstr "Log"
|
271 |
+
|
272 |
+
# @ crayon-syntax-highlighter
|
273 |
+
#: ../crayon_settings_wp.class.php:320
|
274 |
+
msgid "About"
|
275 |
+
msgstr "Circa"
|
276 |
+
|
277 |
+
# @ crayon-syntax-highlighter
|
278 |
+
#: ../crayon_settings_wp.class.php:503
|
279 |
+
msgid "Crayon Help"
|
280 |
+
msgstr "Crayon Aiuto"
|
281 |
+
|
282 |
+
# @ crayon-syntax-highlighter
|
283 |
+
#: ../crayon_settings_wp.class.php:518
|
284 |
msgid "Height"
|
285 |
msgstr "Altezza"
|
286 |
|
287 |
+
# @ crayon-syntax-highlighter
|
288 |
+
#: ../crayon_settings_wp.class.php:524
|
289 |
msgid "Width"
|
290 |
msgstr "Larghezza"
|
291 |
|
292 |
+
# @ crayon-syntax-highlighter
|
293 |
+
#: ../crayon_settings_wp.class.php:530
|
294 |
msgid "Top Margin"
|
295 |
msgstr "Margine superiore"
|
296 |
|
297 |
+
# @ crayon-syntax-highlighter
|
298 |
+
#: ../crayon_settings_wp.class.php:531
|
299 |
msgid "Bottom Margin"
|
300 |
msgstr "Basso margine"
|
301 |
|
302 |
+
# @ crayon-syntax-highlighter
|
303 |
+
#: ../crayon_settings_wp.class.php:532
|
304 |
+
#: ../crayon_settings_wp.class.php:537
|
305 |
msgid "Left Margin"
|
306 |
msgstr "Margine sinistro"
|
307 |
|
308 |
+
# @ crayon-syntax-highlighter
|
309 |
+
#: ../crayon_settings_wp.class.php:533
|
310 |
+
#: ../crayon_settings_wp.class.php:537
|
311 |
msgid "Right Margin"
|
312 |
msgstr "Margine destro"
|
313 |
|
314 |
+
# @ crayon-syntax-highlighter
|
315 |
+
#: ../crayon_settings_wp.class.php:543
|
316 |
msgid "Horizontal Alignment"
|
317 |
msgstr "Allineamento orizzontale"
|
318 |
|
319 |
+
# @ crayon-syntax-highlighter
|
320 |
+
#: ../crayon_settings_wp.class.php:546
|
321 |
msgid "Allow floating elements to surround Crayon"
|
322 |
msgstr "Consentire agli elementi flottanti per circondare Crayon"
|
323 |
|
324 |
+
# @ crayon-syntax-highlighter
|
325 |
+
#: ../crayon_settings_wp.class.php:548
|
326 |
+
msgid "Inline Margin"
|
327 |
+
msgstr "Margine Inline"
|
328 |
+
|
329 |
+
# @ crayon-syntax-highlighter
|
330 |
+
#: ../crayon_settings_wp.class.php:556
|
331 |
msgid "Display the Toolbar"
|
332 |
msgstr "Visualizzare la barra degli strumenti"
|
333 |
|
334 |
+
# @ crayon-syntax-highlighter
|
335 |
+
#: ../crayon_settings_wp.class.php:559
|
336 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
337 |
msgstr "Sovrapposizione della barra degli strumenti sul codice, piuttosto che spingere verso il basso quando è possibile"
|
338 |
|
339 |
+
# @ crayon-syntax-highlighter
|
340 |
+
#: ../crayon_settings_wp.class.php:560
|
341 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
342 |
msgstr "Attivare o disattivare la barra degli strumenti sul singolo click quando è sovrapposto"
|
343 |
|
344 |
+
# @ crayon-syntax-highlighter
|
345 |
+
#: ../crayon_settings_wp.class.php:561
|
346 |
msgid "Delay hiding the toolbar on MouseOut"
|
347 |
msgstr "Ritardo nascondere la barra degli strumenti su MouseOut"
|
348 |
|
349 |
+
# @ crayon-syntax-highlighter
|
350 |
+
#: ../crayon_settings_wp.class.php:563
|
351 |
msgid "Display the title when provided"
|
352 |
msgstr "Visualizzare il titolo, ove previsto"
|
353 |
|
354 |
+
# @ crayon-syntax-highlighter
|
355 |
+
#: ../crayon_settings_wp.class.php:564
|
356 |
msgid "Display the language"
|
357 |
msgstr "Visualizzare la lingua"
|
358 |
|
359 |
+
# @ crayon-syntax-highlighter
|
360 |
+
#: ../crayon_settings_wp.class.php:571
|
361 |
msgid "Display striped code lines"
|
362 |
msgstr "Visualizzare le linee del codice a strisce"
|
363 |
|
364 |
+
# @ crayon-syntax-highlighter
|
365 |
+
#: ../crayon_settings_wp.class.php:572
|
366 |
msgid "Enable line marking for important lines"
|
367 |
msgstr "Abilita linea di marcatura per linee importanti"
|
368 |
|
369 |
+
# @ crayon-syntax-highlighter
|
370 |
+
#: ../crayon_settings_wp.class.php:573
|
371 |
msgid "Display line numbers by default"
|
372 |
msgstr "Visualizzare i numeri di linea di default"
|
373 |
|
374 |
+
# @ crayon-syntax-highlighter
|
375 |
+
#: ../crayon_settings_wp.class.php:574
|
376 |
msgid "Enable line number toggling"
|
377 |
msgstr "Abilita numero di commutazione linea"
|
378 |
|
379 |
+
# @ crayon-syntax-highlighter
|
380 |
+
#: ../crayon_settings_wp.class.php:575
|
381 |
msgid "Start line numbers from"
|
382 |
msgstr "Inizio numeri di riga da"
|
383 |
|
384 |
+
# @ crayon-syntax-highlighter
|
385 |
+
#: ../crayon_settings_wp.class.php:585
|
386 |
msgid "When no language is provided, use the fallback"
|
387 |
msgstr "Quando non è prevista la lingua, utilizzare il fallback"
|
388 |
|
389 |
+
# @ crayon-syntax-highlighter
|
390 |
+
#: ../crayon_settings_wp.class.php:591
|
391 |
+
#, fuzzy, php-format
|
392 |
+
msgid "%d language has been detected."
|
393 |
+
msgstr "%d lingua è stata rilevata."
|
394 |
+
|
395 |
+
# @ crayon-syntax-highlighter
|
396 |
+
#: ../crayon_settings_wp.class.php:592
|
397 |
msgid "Parsing was successful"
|
398 |
msgstr "L'analisi ha avuto successo"
|
399 |
|
400 |
+
# @ crayon-syntax-highlighter
|
401 |
+
#: ../crayon_settings_wp.class.php:592
|
402 |
msgid "Parsing was unsuccessful"
|
403 |
msgstr "L'analisi non ha avuto successo"
|
404 |
|
405 |
+
# @ crayon-syntax-highlighter
|
406 |
+
#: ../crayon_settings_wp.class.php:598
|
407 |
#, php-format
|
|
|
408 |
msgid "The selected language with id %s could not be loaded"
|
409 |
msgstr "La lingua selezionata con id %s non può essere caricato"
|
410 |
|
411 |
+
# @ crayon-syntax-highlighter
|
412 |
+
#: ../crayon_settings_wp.class.php:602
|
413 |
msgid "Show Languages"
|
414 |
msgstr "Mostra Lingue"
|
415 |
|
416 |
+
# @ crayon-syntax-highlighter
|
417 |
+
#: ../crayon_settings_wp.class.php:621
|
418 |
+
msgid "Loading..."
|
419 |
+
msgstr "Caricamento..."
|
420 |
+
|
421 |
+
# @ crayon-syntax-highlighter
|
422 |
+
#: ../crayon_settings_wp.class.php:621
|
423 |
+
#: ../crayon_settings_wp.class.php:804
|
424 |
+
msgid "Theme Editor"
|
425 |
+
msgstr "Tema Editore"
|
426 |
+
|
427 |
+
# @ crayon-syntax-highlighter
|
428 |
+
#: ../crayon_settings_wp.class.php:626
|
429 |
+
#, php-format
|
430 |
+
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
431 |
+
msgstr "Cambiare la %1$slingua di fallback%2$s di cambiare il codice di esempio. Le righe 5-7 sono contrassegnati."
|
432 |
+
|
433 |
+
# @ crayon-syntax-highlighter
|
434 |
+
#: ../crayon_settings_wp.class.php:630
|
435 |
msgid "Enable Live Preview"
|
436 |
msgstr "Attiva anteprima dal vivo"
|
437 |
|
438 |
+
# @ crayon-syntax-highlighter
|
439 |
+
#: ../crayon_settings_wp.class.php:632
|
440 |
+
msgid "Enqueue themes in the header (more efficient)."
|
441 |
+
msgstr "Accoda temi nell'intestazione (bassi consumi)."
|
442 |
+
|
443 |
+
#: ../crayon_settings_wp.class.php:632
|
444 |
+
#: ../crayon_settings_wp.class.php:658
|
445 |
+
#: ../crayon_settings_wp.class.php:683
|
446 |
+
#: ../crayon_settings_wp.class.php:690
|
447 |
+
#: ../crayon_settings_wp.class.php:691
|
448 |
+
#: ../crayon_settings_wp.class.php:692
|
449 |
+
#: ../crayon_settings_wp.class.php:693
|
450 |
+
#: ../crayon_settings_wp.class.php:694
|
451 |
+
#: ../crayon_settings_wp.class.php:695
|
452 |
+
#: ../crayon_settings_wp.class.php:709
|
453 |
+
#: ../crayon_settings_wp.class.php:716
|
454 |
+
#: ../crayon_settings_wp.class.php:717
|
455 |
+
msgid "?"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
# @ crayon-syntax-highlighter
|
459 |
+
#: ../crayon_settings_wp.class.php:635
|
460 |
#, php-format
|
|
|
461 |
msgid "The selected theme with id %s could not be loaded"
|
462 |
msgstr "La tema selezionata con id %s non può essere caricato"
|
463 |
|
464 |
+
# @ crayon-syntax-highlighter
|
465 |
+
#: ../crayon_settings_wp.class.php:647
|
466 |
msgid "Custom Font Size"
|
467 |
msgstr "Dimensione del carattere personalizzati"
|
468 |
|
469 |
+
# @ crayon-syntax-highlighter
|
470 |
+
#: ../crayon_settings_wp.class.php:652
|
471 |
#, php-format
|
|
|
472 |
msgid "The selected font with id %s could not be loaded"
|
473 |
msgstr "La font selezionata con id %s non può essere caricato"
|
474 |
|
475 |
+
# @ crayon-syntax-highlighter
|
476 |
+
#: ../crayon_settings_wp.class.php:658
|
477 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
478 |
+
msgstr "Accoda i caratteri nell'intestazione (bassi consumi)."
|
479 |
+
|
480 |
+
# @ crayon-syntax-highlighter
|
481 |
+
#: ../crayon_settings_wp.class.php:663
|
482 |
msgid "Enable plain code view and display"
|
483 |
msgstr "Attiva la visualizzazione del semplice codice e la visualizzazione"
|
484 |
|
485 |
+
# @ crayon-syntax-highlighter
|
486 |
+
#: ../crayon_settings_wp.class.php:666
|
487 |
+
msgid "Enable plain code toggling"
|
488 |
+
msgstr "Abilita commutazione del semplice codice"
|
489 |
+
|
490 |
+
# @ crayon-syntax-highlighter
|
491 |
+
#: ../crayon_settings_wp.class.php:667
|
492 |
+
msgid "Show the plain code by default"
|
493 |
+
msgstr "Mostrare il codice normale per impostazione predefinita"
|
494 |
+
|
495 |
+
# @ crayon-syntax-highlighter
|
496 |
+
#: ../crayon_settings_wp.class.php:668
|
497 |
msgid "Enable code copy/paste"
|
498 |
msgstr "Abilita copiare il codice/incolla"
|
499 |
|
500 |
+
# @ crayon-syntax-highlighter
|
501 |
+
#: ../crayon_settings_wp.class.php:670
|
502 |
msgid "Enable opening code in a window"
|
503 |
msgstr "Abilita il codice di apertura in una finestra"
|
504 |
|
505 |
+
# @ crayon-syntax-highlighter
|
506 |
+
#: ../crayon_settings_wp.class.php:671
|
507 |
+
msgid "Always display scrollbars"
|
508 |
+
msgstr "Mostra sempre barre di scorrimento"
|
509 |
+
|
510 |
+
# @ crayon-syntax-highlighter
|
511 |
+
#: ../crayon_settings_wp.class.php:672
|
512 |
msgid "Tab size in spaces"
|
513 |
msgstr "Dimensione tabulazione in spazi"
|
514 |
|
515 |
+
#: ../crayon_settings_wp.class.php:677
|
516 |
+
msgid "Decode HTML entities in code"
|
517 |
+
msgstr "Decodifica entità HTML in codice"
|
518 |
+
|
519 |
+
#: ../crayon_settings_wp.class.php:679
|
520 |
+
msgid "Decode HTML entities in attributes"
|
521 |
+
msgstr "Decodifica entità HTML negli attributi"
|
522 |
+
|
523 |
+
# @ crayon-syntax-highlighter
|
524 |
+
#: ../crayon_settings_wp.class.php:681
|
525 |
msgid "Remove whitespace surrounding the shortcode content"
|
526 |
msgstr "Rimuovere gli spazi bianchi che circondano il contenuto shortcode"
|
527 |
|
528 |
+
# @ crayon-syntax-highlighter
|
529 |
+
#: ../crayon_settings_wp.class.php:683
|
530 |
+
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
531 |
+
msgstr "Lasciare Evidenziando Lingua mista con delimitatori e tag."
|
532 |
+
|
533 |
+
# @ crayon-syntax-highlighter
|
534 |
+
#: ../crayon_settings_wp.class.php:685
|
535 |
+
msgid "Show Mixed Language Icon (+)"
|
536 |
+
msgstr "Mostra icona misto di lingua (+)"
|
537 |
+
|
538 |
+
# @ crayon-syntax-highlighter
|
539 |
+
#: ../crayon_settings_wp.class.php:690
|
540 |
+
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
541 |
+
msgstr "Cattura Tags come Mini [php][/php] come Crayons."
|
542 |
+
|
543 |
+
# @ crayon-syntax-highlighter
|
544 |
+
#: ../crayon_settings_wp.class.php:691
|
545 |
+
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
546 |
+
msgstr "Cattura Tags Inline come {php} {/php} all'interno di frasi."
|
547 |
+
|
548 |
+
# @ crayon-syntax-highlighter
|
549 |
+
#: ../crayon_settings_wp.class.php:692
|
550 |
+
msgid "Wrap Inline Tags"
|
551 |
+
msgstr "Avvolgere In Linea Tag"
|
552 |
+
|
553 |
+
# @ crayon-syntax-highlighter
|
554 |
+
#: ../crayon_settings_wp.class.php:693
|
555 |
+
msgid "Capture `backquotes` as <code>"
|
556 |
+
msgstr "Cattura `apici inversi` come <code>"
|
557 |
+
|
558 |
+
# @ crayon-syntax-highlighter
|
559 |
+
#: ../crayon_settings_wp.class.php:694
|
560 |
+
msgid "Capture <pre> tags as Crayons"
|
561 |
+
msgstr "Cattura tag <pre> come Crayons"
|
562 |
+
|
563 |
+
# @ crayon-syntax-highlighter
|
564 |
+
#: ../crayon_settings_wp.class.php:695
|
565 |
+
msgid "Enable [plain][/plain] tag."
|
566 |
+
msgstr "Abilita tag [plain][/plain]."
|
567 |
+
|
568 |
+
# @ crayon-syntax-highlighter
|
569 |
+
#: ../crayon_settings_wp.class.php:700
|
570 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
571 |
msgstr "Quando si caricano i file locali e un percorso relativo è dato per l'URL, utilizzare il percorso assoluto"
|
572 |
|
573 |
+
# @ crayon-syntax-highlighter
|
574 |
+
#: ../crayon_settings_wp.class.php:703
|
575 |
+
msgid "Followed by your relative URL."
|
576 |
+
msgstr "Seguito dal relativo URL."
|
577 |
+
|
578 |
+
#: ../crayon_settings_wp.class.php:707
|
579 |
+
#, php-format
|
580 |
+
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
581 |
+
msgstr "Utilizzare %s ai nomi di taratura distinte dai valori nell'attributo %s classe"
|
582 |
+
|
583 |
+
# @ crayon-syntax-highlighter
|
584 |
+
#: ../crayon_settings_wp.class.php:713
|
585 |
msgid "Clear the cache used to store remote code requests"
|
586 |
msgstr "Svuotare la cache utilizzata per memorizzare le richieste di codice remoto"
|
587 |
|
588 |
+
# @ crayon-syntax-highlighter
|
589 |
+
#: ../crayon_settings_wp.class.php:715
|
590 |
msgid "Clear Now"
|
591 |
msgstr "Svuota adesso"
|
592 |
|
593 |
+
# @ crayon-syntax-highlighter
|
594 |
+
#: ../crayon_settings_wp.class.php:716
|
595 |
+
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
596 |
+
msgstr "Tentativo di caricare Crayon CSS e JavaScript solo quando necessario"
|
597 |
+
|
598 |
+
# @ crayon-syntax-highlighter
|
599 |
+
#: ../crayon_settings_wp.class.php:717
|
600 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
601 |
+
msgstr "Disabilitare Accodamento per i modelli di pagina che può contenere The Loop."
|
602 |
+
|
603 |
+
# @ crayon-syntax-highlighter
|
604 |
+
#: ../crayon_settings_wp.class.php:718
|
605 |
+
msgid "Allow Crayons inside comments"
|
606 |
+
msgstr "Consentire Crayons all'interno di commenti"
|
607 |
+
|
608 |
+
#: ../crayon_settings_wp.class.php:719
|
609 |
+
msgid "Remove Crayons from excerpts"
|
610 |
+
msgstr "Rimuovere Crayons da estratti"
|
611 |
+
|
612 |
+
# @ crayon-syntax-highlighter
|
613 |
+
#: ../crayon_settings_wp.class.php:720
|
614 |
+
msgid "Load Crayons only from the main Wordpress query"
|
615 |
+
msgstr "Pastelli carico solo dalla query principale Wordpress"
|
616 |
+
|
617 |
+
# @ crayon-syntax-highlighter
|
618 |
+
#: ../crayon_settings_wp.class.php:721
|
619 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
620 |
msgstr "Disabilitare i gesti del mouse per i dispositivi touchscreen (es. MouseOver)"
|
621 |
|
622 |
+
# @ crayon-syntax-highlighter
|
623 |
+
#: ../crayon_settings_wp.class.php:722
|
624 |
msgid "Disable animations"
|
625 |
msgstr "Disattivare le animazioni"
|
626 |
|
627 |
+
# @ crayon-syntax-highlighter
|
628 |
+
#: ../crayon_settings_wp.class.php:723
|
629 |
msgid "Disable runtime stats"
|
630 |
msgstr "Disabilitare runtime stats"
|
631 |
|
632 |
+
# @ crayon-syntax-highlighter
|
633 |
+
#: ../crayon_settings_wp.class.php:729
|
634 |
msgid "Log errors for individual Crayons"
|
635 |
msgstr "Errori nel registro di Crayons singoli"
|
636 |
|
637 |
+
# @ crayon-syntax-highlighter
|
638 |
+
#: ../crayon_settings_wp.class.php:730
|
639 |
msgid "Log system-wide errors"
|
640 |
msgstr "Log di sistema a livello di errori"
|
641 |
|
642 |
+
# @ crayon-syntax-highlighter
|
643 |
+
#: ../crayon_settings_wp.class.php:731
|
644 |
msgid "Display custom message for errors"
|
645 |
msgstr "Display messaggio personalizzato per gli errori"
|
646 |
|
647 |
+
# @ crayon-syntax-highlighter
|
648 |
+
#: ../crayon_settings_wp.class.php:743
|
649 |
msgid "Show Log"
|
650 |
msgstr "Mostra registro"
|
651 |
|
652 |
+
# @ crayon-syntax-highlighter
|
653 |
+
#: ../crayon_settings_wp.class.php:743
|
654 |
+
msgid "Hide Log"
|
655 |
+
msgstr "Nascondi Log"
|
656 |
+
|
657 |
+
# @ crayon-syntax-highlighter
|
658 |
+
#: ../crayon_settings_wp.class.php:745
|
659 |
msgid "Clear Log"
|
660 |
msgstr "Cancella registro"
|
661 |
|
662 |
+
# @ crayon-syntax-highlighter
|
663 |
+
#: ../crayon_settings_wp.class.php:746
|
664 |
msgid "Email Admin"
|
665 |
msgstr "E-mail Admin"
|
666 |
|
667 |
+
# @ crayon-syntax-highlighter
|
668 |
+
#: ../crayon_settings_wp.class.php:748
|
669 |
msgid "Email Developer"
|
670 |
msgstr "Email Developer"
|
671 |
|
672 |
+
# @ crayon-syntax-highlighter
|
673 |
+
#: ../crayon_settings_wp.class.php:750
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
msgid "The log is currently empty."
|
675 |
msgstr "Il registro è vuoto."
|
676 |
|
677 |
+
# @ crayon-syntax-highlighter
|
678 |
+
#: ../crayon_settings_wp.class.php:752
|
679 |
msgid "The log file exists and is writable."
|
680 |
msgstr "Il file di registro esiste ed è scrivibile."
|
681 |
|
682 |
+
# @ crayon-syntax-highlighter
|
683 |
+
#: ../crayon_settings_wp.class.php:752
|
684 |
msgid "The log file exists and is not writable."
|
685 |
msgstr "Il file di registro esiste e non è scrivibile."
|
686 |
|
687 |
+
# @ crayon-syntax-highlighter
|
688 |
+
#: ../crayon_settings_wp.class.php:754
|
689 |
msgid "The log file does not exist and is not writable."
|
690 |
msgstr "Il file di registro non esiste e non è scrivibile."
|
691 |
|
692 |
+
# @ crayon-syntax-highlighter
|
693 |
+
#: ../crayon_settings_wp.class.php:764
|
694 |
+
msgid "Version"
|
695 |
+
msgstr "Versione"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
696 |
|
697 |
+
# @ crayon-syntax-highlighter
|
698 |
+
#: ../crayon_settings_wp.class.php:766
|
699 |
+
msgid "Developer"
|
700 |
+
msgstr "Sviluppatore"
|
|
|
701 |
|
702 |
+
# @ crayon-syntax-highlighter
|
703 |
+
#: ../crayon_settings_wp.class.php:767
|
704 |
+
msgid "Translators"
|
705 |
+
msgstr "Traduttori"
|
|
|
706 |
|
707 |
+
# @ crayon-syntax-highlighter
|
708 |
+
#: ../crayon_settings_wp.class.php:790
|
709 |
+
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
710 |
+
msgstr "Il risultato di innumerevoli ore di duro lavoro per molti mesi. E 'un progetto in corso, tenermi motivato!"
|
|
|
711 |
|
712 |
+
# @ crayon-syntax-highlighter
|
713 |
+
#: ../crayon_settings_wp.class.php:806
|
714 |
msgid "Donate"
|
715 |
msgstr "Donare"
|
716 |
|
717 |
+
# @ crayon-syntax-highlighter
|
718 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:57
|
719 |
+
#, fuzzy
|
720 |
+
msgid "Add Crayon Code"
|
721 |
+
msgstr "Crayon Aiuto"
|
722 |
|
723 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:58
|
724 |
+
msgid "Edit Crayon Code"
|
725 |
+
msgstr "Crayon modifica del codice"
|
|
|
726 |
|
727 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:59
|
728 |
+
msgid "Add"
|
729 |
+
msgstr "Aggiungere"
|
|
|
730 |
|
731 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:60
|
732 |
+
msgid "Save"
|
733 |
+
msgstr "Salvare"
|
|
|
734 |
|
735 |
+
# @ crayon-syntax-highlighter
|
736 |
+
#: ../util/tag-editor/crayon_te_content.php:65
|
737 |
+
#, fuzzy
|
738 |
+
msgid "Title"
|
739 |
+
msgstr "File"
|
740 |
|
741 |
+
#: ../util/tag-editor/crayon_te_content.php:67
|
742 |
+
msgid "A short description"
|
743 |
+
msgstr "Una breve descrizione"
|
|
|
744 |
|
745 |
+
# @ crayon-syntax-highlighter
|
746 |
+
#: ../util/tag-editor/crayon_te_content.php:70
|
747 |
+
#, fuzzy
|
748 |
+
msgid "Inline"
|
749 |
+
msgstr "Margine Inline"
|
750 |
|
751 |
+
# @ crayon-syntax-highlighter
|
752 |
+
#: ../util/tag-editor/crayon_te_content.php:75
|
753 |
+
#, fuzzy
|
754 |
+
msgid "Language"
|
755 |
msgstr "Lingue"
|
756 |
|
757 |
+
#: ../util/tag-editor/crayon_te_content.php:78
|
758 |
+
msgid "Marked Lines"
|
759 |
+
msgstr "Linee Marcate"
|
|
|
760 |
|
761 |
+
#: ../util/tag-editor/crayon_te_content.php:79
|
762 |
+
msgid "(e.g. 1,2,3-5)"
|
763 |
+
msgstr "(ad esempio 1,2,3-5)"
|
|
|
764 |
|
765 |
+
# @ crayon-syntax-highlighter
|
766 |
+
#: ../util/tag-editor/crayon_te_content.php:82
|
767 |
+
#, fuzzy
|
768 |
+
msgid "Disable Highlighting"
|
769 |
+
msgstr "Disattivare le animazioni"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
770 |
|
771 |
+
# @ crayon-syntax-highlighter
|
772 |
+
#: ../util/tag-editor/crayon_te_content.php:87
|
773 |
+
#, fuzzy
|
774 |
+
msgid "Clear"
|
775 |
+
msgstr "Svuota adesso"
|
776 |
|
777 |
+
#: ../util/tag-editor/crayon_te_content.php:88
|
778 |
+
msgid "Paste your code here, or type it in manually."
|
779 |
+
msgstr "Incolla qui il tuo codice, oppure digitare manualmente."
|
|
|
780 |
|
781 |
+
#: ../util/tag-editor/crayon_te_content.php:91
|
782 |
+
msgid "URL"
|
783 |
+
msgstr ""
|
|
|
784 |
|
785 |
+
#: ../util/tag-editor/crayon_te_content.php:93
|
786 |
+
msgid "Relative local path or absolute URL"
|
787 |
+
msgstr "Relativo percorso locale o un URL assoluto"
|
|
|
788 |
|
789 |
+
#: ../util/tag-editor/crayon_te_content.php:96
|
790 |
+
msgid "If the URL fails to load, the code above will be shown instead. If no code exists, an error is shown."
|
791 |
+
msgstr "Se l'URL non viene caricato, il codice di cui sopra sarà visualizzato. Se non esiste codice, viene visualizzato un errore."
|
|
|
|
|
|
|
792 |
|
793 |
+
#: ../util/tag-editor/crayon_te_content.php:98
|
794 |
+
#, php-format
|
795 |
+
msgid "If a relative local path is given it will be appended to %s - which is defined in %sCrayon > Settings > Files%s."
|
796 |
+
msgstr "Se un percorso relativo locale è dato verrà aggiunto %s - che è definita in %sCrayon > Impostazioni > Files%s."
|
797 |
|
798 |
+
#: ../util/tag-editor/crayon_te_content.php:117
|
799 |
+
msgid "Change the following settings to override their global values."
|
800 |
+
msgstr "Modificare le seguenti impostazioni per sovrascrivere i valori globali."
|
|
|
801 |
|
802 |
+
#: ../util/tag-editor/crayon_te_content.php:119
|
803 |
+
msgid "Only changes (shown yellow) are applied."
|
804 |
+
msgstr "Solo le modifiche (in grigio chiaro) vengono applicate."
|
|
|
805 |
|
806 |
+
#: ../util/tag-editor/crayon_te_content.php:121
|
807 |
+
#, php-format
|
808 |
+
msgid "Future changes to the global settings under %sCrayon > Settings%s won't affect overridden settings."
|
809 |
+
msgstr "Le future modifiche alle impostazioni globali sotto %sCrayon > Impostazioni%s non influisce sulle impostazioni sottoposte a override."
|
810 |
|
811 |
+
# @ crayon-syntax-highlighter
|
812 |
+
#: ../util/theme-editor/editor.php:16
|
813 |
msgid "Back To Settings"
|
814 |
msgstr "Torna in Impostazioni"
|
815 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trans/crayon-syntax-highlighter-ja.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-ja.po
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -13,11 +13,67 @@ 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\n"
|
17 |
-
"X-Poedit-Basepath:
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
# @ crayon-syntax-highlighter
|
22 |
#: crayon_settings.class.php:150
|
23 |
#: crayon_settings.class.php:154
|
@@ -39,9 +95,9 @@ msgstr "固定"
|
|
39 |
# @ crayon-syntax-highlighter
|
40 |
#: crayon_settings.class.php:152
|
41 |
#: crayon_settings.class.php:156
|
42 |
-
#: crayon_settings_wp.class.php:
|
43 |
-
#: crayon_settings_wp.class.php:
|
44 |
-
#: crayon_settings_wp.class.php:
|
45 |
msgid "Pixels"
|
46 |
msgstr "ピクセル"
|
47 |
|
@@ -105,15 +161,19 @@ msgid "On Single Click"
|
|
105 |
msgstr "シングルクリック時"
|
106 |
|
107 |
# @ crayon-syntax-highlighter
|
108 |
-
#: crayon_settings.class.php:
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "エラーが発生しました。後でもう一度やり直してください。"
|
111 |
|
112 |
# @ crayon-syntax-highlighter
|
113 |
#: crayon_settings_wp.class.php:44
|
114 |
#: crayon_settings_wp.class.php:118
|
115 |
-
#: crayon_settings_wp.class.php:
|
116 |
-
#: util/tag-editor/crayon_te_content.php:114
|
117 |
msgid "Settings"
|
118 |
msgstr "設定"
|
119 |
|
@@ -133,630 +193,528 @@ msgid "Reset Settings"
|
|
133 |
msgstr "リセット"
|
134 |
|
135 |
# @ crayon-syntax-highlighter
|
136 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Height"
|
138 |
msgstr "高さ"
|
139 |
|
140 |
# @ crayon-syntax-highlighter
|
141 |
-
#: crayon_settings_wp.class.php:
|
142 |
msgid "Width"
|
143 |
msgstr "横幅"
|
144 |
|
145 |
# @ crayon-syntax-highlighter
|
146 |
-
#: crayon_settings_wp.class.php:
|
147 |
msgid "Top Margin"
|
148 |
msgstr "上余白"
|
149 |
|
150 |
# @ crayon-syntax-highlighter
|
151 |
-
#: crayon_settings_wp.class.php:
|
152 |
msgid "Bottom Margin"
|
153 |
msgstr "下余白"
|
154 |
|
155 |
# @ crayon-syntax-highlighter
|
156 |
-
#: crayon_settings_wp.class.php:
|
157 |
-
#: crayon_settings_wp.class.php:
|
158 |
msgid "Left Margin"
|
159 |
msgstr "左余白"
|
160 |
|
161 |
# @ crayon-syntax-highlighter
|
162 |
-
#: crayon_settings_wp.class.php:
|
163 |
-
#: crayon_settings_wp.class.php:
|
164 |
msgid "Right Margin"
|
165 |
msgstr "右余白"
|
166 |
|
167 |
# @ crayon-syntax-highlighter
|
168 |
-
#: crayon_settings_wp.class.php:
|
169 |
msgid "Horizontal Alignment"
|
170 |
msgstr "回り込み"
|
171 |
|
172 |
# @ crayon-syntax-highlighter
|
173 |
-
#: crayon_settings_wp.class.php:
|
174 |
msgid "Allow floating elements to surround Crayon"
|
175 |
msgstr "周りのfloat要素の回り込みを許可"
|
176 |
|
177 |
# @ crayon-syntax-highlighter
|
178 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
179 |
msgid "Display the Toolbar"
|
180 |
msgstr "ツールバーの表示"
|
181 |
|
182 |
# @ crayon-syntax-highlighter
|
183 |
-
#: crayon_settings_wp.class.php:
|
184 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
185 |
msgstr "コードを押し下げるのではなく、コード上に重ねて表示"
|
186 |
|
187 |
# @ crayon-syntax-highlighter
|
188 |
-
#: crayon_settings_wp.class.php:
|
189 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
190 |
msgstr "重ねて表示の場合にシングルクリックでツールバーを切り替える"
|
191 |
|
192 |
# @ crayon-syntax-highlighter
|
193 |
-
#: crayon_settings_wp.class.php:
|
194 |
msgid "Delay hiding the toolbar on MouseOut"
|
195 |
msgstr "マウスアウト時にツールバーを隠すのを遅らせる"
|
196 |
|
197 |
# @ crayon-syntax-highlighter
|
198 |
-
#: crayon_settings_wp.class.php:
|
199 |
msgid "Display the title when provided"
|
200 |
msgstr "タイトルがある時は表示"
|
201 |
|
202 |
# @ crayon-syntax-highlighter
|
203 |
-
#: crayon_settings_wp.class.php:
|
204 |
msgid "Display the language"
|
205 |
msgstr "ソース言語を表示"
|
206 |
|
207 |
# @ crayon-syntax-highlighter
|
208 |
-
#: crayon_settings_wp.class.php:
|
209 |
msgid "Display striped code lines"
|
210 |
msgstr "コード行を縞模様で表示する"
|
211 |
|
212 |
# @ crayon-syntax-highlighter
|
213 |
-
#: crayon_settings_wp.class.php:
|
214 |
msgid "Enable line marking for important lines"
|
215 |
msgstr "重要な行にマーキングを有効にする"
|
216 |
|
217 |
# @ crayon-syntax-highlighter
|
218 |
-
#: crayon_settings_wp.class.php:
|
219 |
msgid "Display line numbers by default"
|
220 |
msgstr "デフォルトで行番号を表示"
|
221 |
|
222 |
# @ crayon-syntax-highlighter
|
223 |
-
#: crayon_settings_wp.class.php:
|
224 |
msgid "Enable line number toggling"
|
225 |
msgstr "行番号の切り替えを有効にする"
|
226 |
|
227 |
# @ crayon-syntax-highlighter
|
228 |
-
#: crayon_settings_wp.class.php:
|
229 |
msgid "Start line numbers from"
|
230 |
msgstr "行番号の開始数字"
|
231 |
|
232 |
# @ crayon-syntax-highlighter
|
233 |
-
#: crayon_settings_wp.class.php:
|
234 |
msgid "When no language is provided, use the fallback"
|
235 |
msgstr "ソース言語が提供されていない場合は、代替えを使用します。"
|
236 |
|
237 |
# @ crayon-syntax-highlighter
|
238 |
#: crayon_settings_wp.class.php:591
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
msgid "Parsing was successful"
|
240 |
msgstr "解析が成功しました。"
|
241 |
|
242 |
# @ crayon-syntax-highlighter
|
243 |
-
#: crayon_settings_wp.class.php:
|
244 |
msgid "Parsing was unsuccessful"
|
245 |
msgstr "解析に失敗しました。"
|
246 |
|
247 |
# @ crayon-syntax-highlighter
|
248 |
-
#: crayon_settings_wp.class.php:
|
249 |
#, php-format
|
250 |
msgid "The selected language with id %s could not be loaded"
|
251 |
msgstr "ID %s の選択したソース言語をロードできませんでした。"
|
252 |
|
253 |
# @ crayon-syntax-highlighter
|
254 |
-
#: crayon_settings_wp.class.php:
|
255 |
msgid "Show Languages"
|
256 |
msgstr "ソース言語を表示する"
|
257 |
|
258 |
# @ crayon-syntax-highlighter
|
259 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid "Enable Live Preview"
|
261 |
msgstr "リアルタイムのプレビューを有効にする"
|
262 |
|
263 |
# @ crayon-syntax-highlighter
|
264 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
#, php-format
|
266 |
msgid "The selected theme with id %s could not be loaded"
|
267 |
msgstr "ID %sの選択したテーマをロードできませんでした。"
|
268 |
|
269 |
# @ crayon-syntax-highlighter
|
270 |
-
#: crayon_settings_wp.class.php:
|
271 |
msgid "Custom Font Size"
|
272 |
msgstr "フォントサイズ指定"
|
273 |
|
274 |
# @ crayon-syntax-highlighter
|
275 |
-
#: crayon_settings_wp.class.php:
|
276 |
#, php-format
|
277 |
msgid "The selected font with id %s could not be loaded"
|
278 |
msgstr "ID %s の選択されたフォントをロードできませんでした。"
|
279 |
|
280 |
# @ crayon-syntax-highlighter
|
281 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
282 |
msgid "Enable plain code view and display"
|
283 |
msgstr "単純なコードビューを有効にする"
|
284 |
|
|
|
|
|
|
|
|
|
|
|
285 |
# @ crayon-syntax-highlighter
|
286 |
#: crayon_settings_wp.class.php:667
|
|
|
|
|
|
|
|
|
|
|
287 |
msgid "Enable code copy/paste"
|
288 |
msgstr "コードのコピー/貼り付けを有効にする"
|
289 |
|
290 |
# @ crayon-syntax-highlighter
|
291 |
-
#: crayon_settings_wp.class.php:
|
292 |
msgid "Enable opening code in a window"
|
293 |
msgstr "新しいウインドウでコードを開くを有効にする"
|
294 |
|
295 |
# @ crayon-syntax-highlighter
|
296 |
#: crayon_settings_wp.class.php:671
|
|
|
|
|
|
|
|
|
|
|
297 |
msgid "Tab size in spaces"
|
298 |
msgstr "tab挿入の空白代替え数(単純コードビュー)"
|
299 |
|
300 |
# @ crayon-syntax-highlighter
|
301 |
-
#: crayon_settings_wp.class.php:
|
302 |
-
msgid "
|
303 |
-
msgstr "
|
304 |
|
305 |
# @ crayon-syntax-highlighter
|
306 |
-
#: crayon_settings_wp.class.php:
|
307 |
-
msgid "
|
308 |
-
msgstr "
|
309 |
|
310 |
# @ crayon-syntax-highlighter
|
311 |
-
#: crayon_settings_wp.class.php:
|
312 |
-
msgid "
|
313 |
-
msgstr "
|
314 |
|
315 |
# @ crayon-syntax-highlighter
|
316 |
-
#: crayon_settings_wp.class.php:
|
317 |
-
msgid "
|
318 |
-
msgstr "
|
319 |
|
320 |
# @ crayon-syntax-highlighter
|
321 |
-
#: crayon_settings_wp.class.php:
|
322 |
-
msgid "
|
323 |
-
msgstr "
|
324 |
|
325 |
# @ crayon-syntax-highlighter
|
326 |
-
#: crayon_settings_wp.class.php:
|
327 |
-
msgid "
|
328 |
-
msgstr "
|
329 |
|
330 |
# @ crayon-syntax-highlighter
|
331 |
-
#: crayon_settings_wp.class.php:
|
332 |
-
msgid "
|
333 |
-
msgstr "
|
334 |
|
335 |
# @ crayon-syntax-highlighter
|
336 |
-
#: crayon_settings_wp.class.php:
|
337 |
-
msgid "
|
338 |
-
msgstr "
|
339 |
|
340 |
# @ crayon-syntax-highlighter
|
341 |
-
#: crayon_settings_wp.class.php:
|
342 |
-
msgid "
|
343 |
-
msgstr "
|
344 |
-
|
345 |
-
# @ crayon-syntax-highlighter
|
346 |
-
#: crayon_settings_wp.class.php:730
|
347 |
-
msgid "Display custom message for errors"
|
348 |
-
msgstr "カスタムエラーメッセージを表示する"
|
349 |
-
|
350 |
-
# @ crayon-syntax-highlighter
|
351 |
-
#: crayon_settings_wp.class.php:742
|
352 |
-
msgid "Show Log"
|
353 |
-
msgstr "ログを見る"
|
354 |
-
|
355 |
-
# @ crayon-syntax-highlighter
|
356 |
-
#: crayon_settings_wp.class.php:744
|
357 |
-
msgid "Clear Log"
|
358 |
-
msgstr "ログをクリア"
|
359 |
-
|
360 |
-
# @ crayon-syntax-highlighter
|
361 |
-
#: crayon_settings_wp.class.php:745
|
362 |
-
msgid "Email Admin"
|
363 |
-
msgstr "管理者にEメールを送信"
|
364 |
-
|
365 |
-
# @ crayon-syntax-highlighter
|
366 |
-
#: crayon_settings_wp.class.php:747
|
367 |
-
msgid "Email Developer"
|
368 |
-
msgstr "開発者にEメールを送信"
|
369 |
-
|
370 |
-
# @ crayon-syntax-highlighter
|
371 |
-
#: crayon_settings_wp.class.php:763
|
372 |
-
msgid "Version"
|
373 |
-
msgstr "バージョン"
|
374 |
-
|
375 |
-
# @ crayon-syntax-highlighter
|
376 |
-
#: crayon_settings_wp.class.php:765
|
377 |
-
msgid "Developer"
|
378 |
-
msgstr "開発者"
|
379 |
-
|
380 |
-
# @ crayon-syntax-highlighter
|
381 |
-
#: crayon_settings_wp.class.php:788
|
382 |
-
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
383 |
-
msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
|
384 |
-
|
385 |
-
# @ crayon-syntax-highlighter
|
386 |
-
#: crayon_settings_wp.class.php:625
|
387 |
-
#, php-format
|
388 |
-
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
389 |
-
msgstr "サンプルコードを変更するには、%1$sfallback language(代替え言語)%2$sを変更て下さい。5行目から7行目はマークされます。"
|
390 |
-
|
391 |
-
# @ crayon-syntax-highlighter
|
392 |
-
#: crayon_settings.class.php:138
|
393 |
-
msgid "Hourly"
|
394 |
-
msgstr "毎時間"
|
395 |
-
|
396 |
-
# @ crayon-syntax-highlighter
|
397 |
-
#: crayon_settings.class.php:138
|
398 |
-
msgid "Daily"
|
399 |
-
msgstr "毎日"
|
400 |
-
|
401 |
-
# @ crayon-syntax-highlighter
|
402 |
-
#: crayon_settings.class.php:139
|
403 |
-
msgid "Weekly"
|
404 |
-
msgstr "毎週"
|
405 |
-
|
406 |
-
# @ crayon-syntax-highlighter
|
407 |
-
#: crayon_settings.class.php:139
|
408 |
-
msgid "Monthly"
|
409 |
-
msgstr "毎月"
|
410 |
-
|
411 |
-
# @ crayon-syntax-highlighter
|
412 |
-
#: crayon_settings.class.php:140
|
413 |
-
msgid "Immediately"
|
414 |
-
msgstr "直後に"
|
415 |
-
|
416 |
-
# @ crayon-syntax-highlighter
|
417 |
-
#: crayon_settings_wp.class.php:502
|
418 |
-
msgid "Crayon Help"
|
419 |
-
msgstr "Crayon ヘルプ"
|
420 |
-
|
421 |
-
# @ crayon-syntax-highlighter
|
422 |
-
#: crayon_settings_wp.class.php:715
|
423 |
-
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
424 |
-
msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
|
425 |
-
|
426 |
-
# @ crayon-syntax-highlighter
|
427 |
-
#: crayon_settings_wp.class.php:702
|
428 |
-
msgid "Followed by your relative URL."
|
429 |
-
msgstr "相対URLが続きます。"
|
430 |
-
|
431 |
-
# @ crayon-syntax-highlighter
|
432 |
-
#: crayon_settings_wp.class.php:749
|
433 |
-
msgid "The log is currently empty."
|
434 |
-
msgstr "ログは現在空です。"
|
435 |
-
|
436 |
-
# @ crayon-syntax-highlighter
|
437 |
-
#: crayon_settings_wp.class.php:751
|
438 |
-
msgid "The log file exists and is writable."
|
439 |
-
msgstr "ログファイルは存在し、書き込み可能です。"
|
440 |
-
|
441 |
-
# @ crayon-syntax-highlighter
|
442 |
-
#: crayon_settings_wp.class.php:751
|
443 |
-
msgid "The log file exists and is not writable."
|
444 |
-
msgstr "ログファイルは存在するが、書き込み可能ではありません。"
|
445 |
-
|
446 |
-
# @ crayon-syntax-highlighter
|
447 |
-
#: crayon_settings_wp.class.php:753
|
448 |
-
msgid "The log file does not exist and is not writable."
|
449 |
-
msgstr "ログファイルが存在しないので書き込むことが出来ません。"
|
450 |
-
|
451 |
-
# @ crayon-syntax-highlighter
|
452 |
-
#: crayon_settings_wp.class.php:590
|
453 |
-
#, php-format
|
454 |
-
msgid "%d language has been detected."
|
455 |
-
msgid_plural "%d languages have been detected."
|
456 |
-
msgstr[0] "%dのソース言語が検出されてます。"
|
457 |
-
msgstr[1] "%dのソース言語が検出されてます。"
|
458 |
|
459 |
# @ crayon-syntax-highlighter
|
460 |
-
#: crayon_settings_wp.class.php:
|
461 |
msgid "Capture <pre> tags as Crayons"
|
462 |
msgstr "Crayonsとして<pre>タグをキャプチャ"
|
463 |
|
464 |
# @ crayon-syntax-highlighter
|
465 |
-
#: crayon_settings_wp.class.php:
|
466 |
-
msgid "Show Mixed Language Icon (+)"
|
467 |
-
msgstr "混合言語のアイコンを(+)を表示"
|
468 |
-
|
469 |
-
# @ crayon-syntax-highlighter
|
470 |
-
#: crayon_settings_wp.class.php:682
|
471 |
-
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
472 |
-
msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
|
473 |
-
|
474 |
-
# @ crayon-syntax-highlighter
|
475 |
-
#: crayon_settings_wp.class.php:689
|
476 |
-
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
477 |
-
msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
|
478 |
-
|
479 |
-
# @ crayon-syntax-highlighter
|
480 |
-
#: crayon_settings_wp.class.php:694
|
481 |
msgid "Enable [plain][/plain] tag."
|
482 |
msgstr "[plain][/plain]タグを有効にします。"
|
483 |
|
484 |
# @ crayon-syntax-highlighter
|
485 |
-
#:
|
486 |
-
msgid "
|
487 |
-
msgstr "
|
488 |
-
|
489 |
-
# @ crayon-syntax-highlighter
|
490 |
-
#: crayon_settings_wp.class.php:665
|
491 |
-
msgid "Enable plain code toggling"
|
492 |
-
msgstr "単純なコードの切り替えを有効にする"
|
493 |
-
|
494 |
-
# @ crayon-syntax-highlighter
|
495 |
-
#: crayon_settings_wp.class.php:666
|
496 |
-
msgid "Show the plain code by default"
|
497 |
-
msgstr "デフォルトでプレインコードを表示する"
|
498 |
-
|
499 |
-
# @ crayon-syntax-highlighter
|
500 |
-
#. translators: plugin header field 'Name'
|
501 |
-
#: crayon_wp.class.php:0
|
502 |
-
msgid "Crayon Syntax Highlighter"
|
503 |
-
msgstr "Crayon Syntax Highlighter"
|
504 |
-
|
505 |
-
# @ crayon-syntax-highlighter
|
506 |
-
#. translators: plugin header field 'AuthorURI'
|
507 |
-
#: crayon_wp.class.php:0
|
508 |
-
msgid "http://ak.net84.net/"
|
509 |
-
msgstr "http://ak.net84.net/"
|
510 |
-
|
511 |
-
# @ crayon-syntax-highlighter
|
512 |
-
#. translators: plugin header field 'Author'
|
513 |
-
#: crayon_wp.class.php:0
|
514 |
-
msgid "Aram Kocharyan"
|
515 |
-
msgstr "Aram Kocharyan"
|
516 |
-
|
517 |
-
# @ crayon-syntax-highlighter
|
518 |
-
#. translators: plugin header field 'PluginURI'
|
519 |
-
#: crayon_wp.class.php:0
|
520 |
-
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
521 |
-
msgstr "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
522 |
-
|
523 |
-
# @ crayon-syntax-highlighter
|
524 |
-
#. translators: plugin header field 'Description'
|
525 |
-
#: crayon_wp.class.php:0
|
526 |
-
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
527 |
-
msgstr "URL、ローカルファイルまたはポストのテキストからハイライト複数の言語、テーマを、サポートしています。"
|
528 |
-
|
529 |
-
# @ crayon-syntax-highlighter
|
530 |
-
#: crayon_settings_wp.class.php:804
|
531 |
-
msgid "Donate"
|
532 |
-
msgstr "寄付する"
|
533 |
-
|
534 |
-
# @ crayon-syntax-highlighter
|
535 |
-
#: crayon_settings_wp.class.php:300
|
536 |
-
msgid "General"
|
537 |
-
msgstr "一般設定"
|
538 |
-
|
539 |
-
# @ crayon-syntax-highlighter
|
540 |
-
#: crayon_settings_wp.class.php:301
|
541 |
-
msgid "Theme"
|
542 |
-
msgstr "テーマ"
|
543 |
-
|
544 |
-
# @ crayon-syntax-highlighter
|
545 |
-
#: crayon_settings_wp.class.php:302
|
546 |
-
msgid "Font"
|
547 |
-
msgstr "フォント"
|
548 |
-
|
549 |
-
# @ crayon-syntax-highlighter
|
550 |
-
#: crayon_settings_wp.class.php:303
|
551 |
-
msgid "Metrics"
|
552 |
-
msgstr "サイズ"
|
553 |
-
|
554 |
-
# @ crayon-syntax-highlighter
|
555 |
-
#: crayon_settings_wp.class.php:304
|
556 |
-
msgid "Toolbar"
|
557 |
-
msgstr "ツールバー"
|
558 |
-
|
559 |
-
# @ crayon-syntax-highlighter
|
560 |
-
#: crayon_settings_wp.class.php:305
|
561 |
-
msgid "Lines"
|
562 |
-
msgstr "行"
|
563 |
-
|
564 |
-
# @ crayon-syntax-highlighter
|
565 |
-
#: crayon_settings_wp.class.php:306
|
566 |
-
#: util/tag-editor/crayon_te_content.php:87
|
567 |
-
msgid "Code"
|
568 |
-
msgstr "コード"
|
569 |
-
|
570 |
-
# @ crayon-syntax-highlighter
|
571 |
-
#: crayon_settings_wp.class.php:308
|
572 |
-
msgid "Languages"
|
573 |
-
msgstr "プログラム言語"
|
574 |
-
|
575 |
-
# @ crayon-syntax-highlighter
|
576 |
-
#: crayon_settings_wp.class.php:309
|
577 |
-
msgid "Files"
|
578 |
-
msgstr "読込ファイル"
|
579 |
-
|
580 |
-
# @ crayon-syntax-highlighter
|
581 |
-
#: crayon_settings_wp.class.php:311
|
582 |
-
msgid "Misc"
|
583 |
-
msgstr "その他"
|
584 |
-
|
585 |
-
# @ crayon-syntax-highlighter
|
586 |
-
#: crayon_settings_wp.class.php:314
|
587 |
-
msgid "Debug"
|
588 |
-
msgstr "デバッグ"
|
589 |
-
|
590 |
-
# @ crayon-syntax-highlighter
|
591 |
-
#: crayon_settings_wp.class.php:315
|
592 |
-
msgid "Errors"
|
593 |
-
msgstr "エラー"
|
594 |
-
|
595 |
-
# @ crayon-syntax-highlighter
|
596 |
-
#: crayon_settings_wp.class.php:316
|
597 |
-
msgid "Log"
|
598 |
-
msgstr "ログファイル"
|
599 |
-
|
600 |
-
# @ crayon-syntax-highlighter
|
601 |
-
#: crayon_settings_wp.class.php:319
|
602 |
-
msgid "About"
|
603 |
-
msgstr "Crayonについて"
|
604 |
|
605 |
# @ crayon-syntax-highlighter
|
606 |
-
#: crayon_settings_wp.class.php:
|
607 |
-
msgid "
|
608 |
-
msgstr "
|
609 |
|
610 |
# @ crayon-syntax-highlighter
|
611 |
-
#: crayon_settings_wp.class.php:
|
612 |
-
|
613 |
-
|
|
|
614 |
|
615 |
# @ crayon-syntax-highlighter
|
616 |
-
#: crayon_settings_wp.class.php:
|
617 |
-
msgid "
|
618 |
-
msgstr "
|
619 |
|
620 |
# @ crayon-syntax-highlighter
|
621 |
-
#: crayon_settings_wp.class.php:
|
622 |
-
|
623 |
-
|
624 |
-
msgid "Theme Editor"
|
625 |
-
msgstr "テーマエディタ"
|
626 |
|
627 |
# @ crayon-syntax-highlighter
|
628 |
-
#: crayon_settings_wp.class.php:
|
629 |
-
msgid "
|
630 |
-
msgstr "
|
631 |
|
632 |
# @ crayon-syntax-highlighter
|
633 |
-
#: crayon_settings_wp.class.php:
|
634 |
msgid "Disable enqueuing for page templates that may contain The Loop."
|
635 |
msgstr "ループを含む可能性のあるページテンプレートのエンキューを無効にします。"
|
636 |
|
637 |
# @ crayon-syntax-highlighter
|
638 |
#: crayon_settings_wp.class.php:718
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
msgid "Load Crayons only from the main Wordpress query"
|
640 |
msgstr "唯一の主要なWordpressのクエリからロードクレヨン"
|
641 |
|
642 |
# @ crayon-syntax-highlighter
|
643 |
-
#:
|
644 |
-
msgid "
|
645 |
-
msgstr "
|
646 |
|
647 |
# @ crayon-syntax-highlighter
|
648 |
-
#: crayon_settings_wp.class.php:
|
649 |
-
msgid "
|
650 |
-
msgstr "
|
651 |
|
652 |
# @ crayon-syntax-highlighter
|
653 |
-
#:
|
654 |
-
msgid "
|
655 |
-
msgstr "
|
656 |
|
657 |
# @ crayon-syntax-highlighter
|
658 |
-
#:
|
659 |
-
msgid "
|
660 |
-
msgstr "
|
661 |
|
662 |
# @ crayon-syntax-highlighter
|
663 |
-
#:
|
664 |
-
msgid "
|
665 |
-
msgstr "
|
666 |
|
667 |
# @ crayon-syntax-highlighter
|
668 |
-
#:
|
669 |
-
msgid "
|
670 |
-
msgstr "
|
671 |
|
672 |
# @ crayon-syntax-highlighter
|
673 |
-
#:
|
674 |
-
msgid "
|
675 |
-
msgstr "
|
676 |
|
677 |
# @ crayon-syntax-highlighter
|
678 |
-
#: crayon_settings_wp.class.php:
|
679 |
msgid "Hide Log"
|
680 |
msgstr "ログを隠す"
|
681 |
|
682 |
# @ crayon-syntax-highlighter
|
683 |
-
#:
|
684 |
-
|
685 |
-
|
686 |
-
msgstr "貼り付けにコピー、%sに%sを押して、"
|
687 |
-
|
688 |
-
# @ crayon-syntax-highlighter
|
689 |
-
#: crayon_settings_wp.class.php:307
|
690 |
-
msgid "Tags"
|
691 |
-
msgstr "タグ"
|
692 |
|
693 |
# @ crayon-syntax-highlighter
|
694 |
-
#: crayon_settings_wp.class.php:
|
695 |
-
msgid "
|
696 |
-
msgstr "
|
697 |
|
698 |
# @ crayon-syntax-highlighter
|
699 |
-
#: crayon_settings_wp.class.php:
|
700 |
-
msgid "
|
701 |
-
msgstr "
|
702 |
|
703 |
# @ crayon-syntax-highlighter
|
704 |
-
#: crayon_settings_wp.class.php:
|
705 |
-
msgid "
|
706 |
-
msgstr "
|
707 |
|
708 |
# @ crayon-syntax-highlighter
|
709 |
-
#: crayon_settings_wp.class.php:
|
710 |
-
msgid "
|
711 |
-
msgstr "
|
712 |
|
713 |
# @ crayon-syntax-highlighter
|
714 |
-
#: crayon_settings_wp.class.php:
|
715 |
-
msgid "
|
716 |
-
msgstr "
|
717 |
|
718 |
# @ crayon-syntax-highlighter
|
719 |
-
#: crayon_settings_wp.class.php:
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
|
723 |
# @ crayon-syntax-highlighter
|
724 |
-
#: crayon_settings_wp.class.php:
|
725 |
-
|
726 |
-
|
727 |
-
#: crayon_settings_wp.class.php:689
|
728 |
-
#: crayon_settings_wp.class.php:690
|
729 |
-
#: crayon_settings_wp.class.php:691
|
730 |
-
#: crayon_settings_wp.class.php:692
|
731 |
-
#: crayon_settings_wp.class.php:693
|
732 |
-
#: crayon_settings_wp.class.php:694
|
733 |
-
#: crayon_settings_wp.class.php:708
|
734 |
-
#: crayon_settings_wp.class.php:715
|
735 |
-
#: crayon_settings_wp.class.php:716
|
736 |
-
msgid "?"
|
737 |
-
msgstr "?"
|
738 |
|
739 |
# @ crayon-syntax-highlighter
|
740 |
-
#: crayon_settings_wp.class.php:
|
741 |
-
msgid "
|
742 |
-
msgstr "
|
743 |
|
744 |
# @ crayon-syntax-highlighter
|
745 |
-
#: crayon_settings_wp.class.php:
|
746 |
-
msgid "
|
747 |
-
msgstr "
|
748 |
|
749 |
# @ crayon-syntax-highlighter
|
750 |
-
#: crayon_settings_wp.class.php:
|
751 |
-
|
752 |
-
|
753 |
-
msgstr " <pre> のクラス属性の値から設定名を区切るには %s を使う。"
|
754 |
|
755 |
# @ crayon-syntax-highlighter
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
msgstr "_1.9.0b6"
|
760 |
|
761 |
# @ crayon-syntax-highlighter
|
762 |
#: util/tag-editor/crayon_tag_editor_wp.class.php:57
|
@@ -860,3 +818,8 @@ msgstr "ここでの変更は、このコードのみの変更(黄色表示)と
|
|
860 |
msgid "Future changes to the global settings under %sCrayon > Settings%s won't affect overridden settings."
|
861 |
msgstr "%sCrayon > 設定%s で変更される将来の変更は、ここで上書きされた変更には影響されません。"
|
862 |
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: crayon-syntax-highligher\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-06 15:16+1000\n"
|
6 |
+
"PO-Revision-Date: 2012-05-06 15: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"
|
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;crayon__;crayon_n;crayon_e\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_formatter.class.php:266
|
23 |
+
msgid "Toggle Plain Code"
|
24 |
+
msgstr "ハイライト表示ON/OFF"
|
25 |
+
|
26 |
+
# @ crayon-syntax-highlighter
|
27 |
+
#: crayon_formatter.class.php:268
|
28 |
+
#, php-format
|
29 |
+
msgid "Press %s to Copy, %s to Paste"
|
30 |
+
msgstr "貼り付けにコピー、%sに%sを押して、"
|
31 |
+
|
32 |
+
# @ crayon-syntax-highlighter
|
33 |
+
#: crayon_formatter.class.php:268
|
34 |
+
msgid "Copy Plain Code"
|
35 |
+
msgstr "コードをコピー"
|
36 |
+
|
37 |
+
# @ crayon-syntax-highlighter
|
38 |
+
#: crayon_formatter.class.php:270
|
39 |
+
msgid "Open Code In New Window"
|
40 |
+
msgstr "新しいウィンドウでコードを開く"
|
41 |
+
|
42 |
+
# @ crayon-syntax-highlighter
|
43 |
+
#: crayon_formatter.class.php:273
|
44 |
+
msgid "Toggle Line Numbers"
|
45 |
+
msgstr "行番号ON/OFF"
|
46 |
+
|
47 |
+
# @ crayon-syntax-highlighter
|
48 |
+
#: crayon_formatter.class.php:279
|
49 |
+
msgid "Contains Mixed Languages"
|
50 |
+
msgstr "言語が混在しています"
|
51 |
+
|
52 |
+
# @ crayon-syntax-highlighter
|
53 |
+
#: crayon_settings.class.php:138
|
54 |
+
msgid "Hourly"
|
55 |
+
msgstr "毎時間"
|
56 |
+
|
57 |
+
# @ crayon-syntax-highlighter
|
58 |
+
#: crayon_settings.class.php:138
|
59 |
+
msgid "Daily"
|
60 |
+
msgstr "毎日"
|
61 |
+
|
62 |
+
# @ crayon-syntax-highlighter
|
63 |
+
#: crayon_settings.class.php:139
|
64 |
+
msgid "Weekly"
|
65 |
+
msgstr "毎週"
|
66 |
+
|
67 |
+
# @ crayon-syntax-highlighter
|
68 |
+
#: crayon_settings.class.php:139
|
69 |
+
msgid "Monthly"
|
70 |
+
msgstr "毎月"
|
71 |
+
|
72 |
+
# @ crayon-syntax-highlighter
|
73 |
+
#: crayon_settings.class.php:140
|
74 |
+
msgid "Immediately"
|
75 |
+
msgstr "直後に"
|
76 |
+
|
77 |
# @ crayon-syntax-highlighter
|
78 |
#: crayon_settings.class.php:150
|
79 |
#: crayon_settings.class.php:154
|
95 |
# @ crayon-syntax-highlighter
|
96 |
#: crayon_settings.class.php:152
|
97 |
#: crayon_settings.class.php:156
|
98 |
+
#: crayon_settings_wp.class.php:541
|
99 |
+
#: crayon_settings_wp.class.php:550
|
100 |
+
#: crayon_settings_wp.class.php:649
|
101 |
msgid "Pixels"
|
102 |
msgstr "ピクセル"
|
103 |
|
161 |
msgstr "シングルクリック時"
|
162 |
|
163 |
# @ crayon-syntax-highlighter
|
164 |
+
#: crayon_settings.class.php:189
|
165 |
+
msgid "Disable Mouse Events"
|
166 |
+
msgstr "マウスイベントを無効にする"
|
167 |
+
|
168 |
+
# @ crayon-syntax-highlighter
|
169 |
+
#: crayon_settings.class.php:196
|
170 |
msgid "An error has occurred. Please try again later."
|
171 |
msgstr "エラーが発生しました。後でもう一度やり直してください。"
|
172 |
|
173 |
# @ crayon-syntax-highlighter
|
174 |
#: crayon_settings_wp.class.php:44
|
175 |
#: crayon_settings_wp.class.php:118
|
176 |
+
#: crayon_settings_wp.class.php:802
|
|
|
177 |
msgid "Settings"
|
178 |
msgstr "設定"
|
179 |
|
193 |
msgstr "リセット"
|
194 |
|
195 |
# @ crayon-syntax-highlighter
|
196 |
+
#: crayon_settings_wp.class.php:301
|
197 |
+
msgid "General"
|
198 |
+
msgstr "一般設定"
|
199 |
+
|
200 |
+
# @ crayon-syntax-highlighter
|
201 |
+
#: crayon_settings_wp.class.php:302
|
202 |
+
msgid "Theme"
|
203 |
+
msgstr "テーマ"
|
204 |
+
|
205 |
+
# @ crayon-syntax-highlighter
|
206 |
+
#: crayon_settings_wp.class.php:303
|
207 |
+
msgid "Font"
|
208 |
+
msgstr "フォント"
|
209 |
+
|
210 |
+
# @ crayon-syntax-highlighter
|
211 |
+
#: crayon_settings_wp.class.php:304
|
212 |
+
msgid "Metrics"
|
213 |
+
msgstr "サイズ"
|
214 |
+
|
215 |
+
# @ crayon-syntax-highlighter
|
216 |
+
#: crayon_settings_wp.class.php:305
|
217 |
+
msgid "Toolbar"
|
218 |
+
msgstr "ツールバー"
|
219 |
+
|
220 |
+
# @ crayon-syntax-highlighter
|
221 |
+
#: crayon_settings_wp.class.php:306
|
222 |
+
msgid "Lines"
|
223 |
+
msgstr "行"
|
224 |
+
|
225 |
+
# @ crayon-syntax-highlighter
|
226 |
+
#: crayon_settings_wp.class.php:307
|
227 |
+
msgid "Code"
|
228 |
+
msgstr "コード"
|
229 |
+
|
230 |
+
# @ crayon-syntax-highlighter
|
231 |
+
#: crayon_settings_wp.class.php:308
|
232 |
+
msgid "Tags"
|
233 |
+
msgstr "タグ"
|
234 |
+
|
235 |
+
# @ crayon-syntax-highlighter
|
236 |
+
#: crayon_settings_wp.class.php:309
|
237 |
+
msgid "Languages"
|
238 |
+
msgstr "プログラム言語"
|
239 |
+
|
240 |
+
# @ crayon-syntax-highlighter
|
241 |
+
#: crayon_settings_wp.class.php:310
|
242 |
+
msgid "Files"
|
243 |
+
msgstr "読込ファイル"
|
244 |
+
|
245 |
+
# @ crayon-syntax-highlighter
|
246 |
+
#: crayon_settings_wp.class.php:311
|
247 |
+
msgid "Tag Editor"
|
248 |
+
msgstr "タグエディタ"
|
249 |
+
|
250 |
+
# @ crayon-syntax-highlighter
|
251 |
+
#: crayon_settings_wp.class.php:312
|
252 |
+
msgid "Misc"
|
253 |
+
msgstr "その他"
|
254 |
+
|
255 |
+
# @ crayon-syntax-highlighter
|
256 |
+
#: crayon_settings_wp.class.php:315
|
257 |
+
msgid "Debug"
|
258 |
+
msgstr "デバッグ"
|
259 |
+
|
260 |
+
# @ crayon-syntax-highlighter
|
261 |
+
#: crayon_settings_wp.class.php:316
|
262 |
+
msgid "Errors"
|
263 |
+
msgstr "エラー"
|
264 |
+
|
265 |
+
# @ crayon-syntax-highlighter
|
266 |
+
#: crayon_settings_wp.class.php:317
|
267 |
+
msgid "Log"
|
268 |
+
msgstr "ログファイル"
|
269 |
+
|
270 |
+
# @ crayon-syntax-highlighter
|
271 |
+
#: crayon_settings_wp.class.php:320
|
272 |
+
msgid "About"
|
273 |
+
msgstr "Crayonについて"
|
274 |
+
|
275 |
+
# @ crayon-syntax-highlighter
|
276 |
+
#: crayon_settings_wp.class.php:503
|
277 |
+
msgid "Crayon Help"
|
278 |
+
msgstr "Crayon ヘルプ"
|
279 |
+
|
280 |
+
# @ crayon-syntax-highlighter
|
281 |
+
#: crayon_settings_wp.class.php:518
|
282 |
msgid "Height"
|
283 |
msgstr "高さ"
|
284 |
|
285 |
# @ crayon-syntax-highlighter
|
286 |
+
#: crayon_settings_wp.class.php:524
|
287 |
msgid "Width"
|
288 |
msgstr "横幅"
|
289 |
|
290 |
# @ crayon-syntax-highlighter
|
291 |
+
#: crayon_settings_wp.class.php:530
|
292 |
msgid "Top Margin"
|
293 |
msgstr "上余白"
|
294 |
|
295 |
# @ crayon-syntax-highlighter
|
296 |
+
#: crayon_settings_wp.class.php:531
|
297 |
msgid "Bottom Margin"
|
298 |
msgstr "下余白"
|
299 |
|
300 |
# @ crayon-syntax-highlighter
|
301 |
+
#: crayon_settings_wp.class.php:532
|
302 |
+
#: crayon_settings_wp.class.php:537
|
303 |
msgid "Left Margin"
|
304 |
msgstr "左余白"
|
305 |
|
306 |
# @ crayon-syntax-highlighter
|
307 |
+
#: crayon_settings_wp.class.php:533
|
308 |
+
#: crayon_settings_wp.class.php:537
|
309 |
msgid "Right Margin"
|
310 |
msgstr "右余白"
|
311 |
|
312 |
# @ crayon-syntax-highlighter
|
313 |
+
#: crayon_settings_wp.class.php:543
|
314 |
msgid "Horizontal Alignment"
|
315 |
msgstr "回り込み"
|
316 |
|
317 |
# @ crayon-syntax-highlighter
|
318 |
+
#: crayon_settings_wp.class.php:546
|
319 |
msgid "Allow floating elements to surround Crayon"
|
320 |
msgstr "周りのfloat要素の回り込みを許可"
|
321 |
|
322 |
# @ crayon-syntax-highlighter
|
323 |
+
#: crayon_settings_wp.class.php:548
|
324 |
+
msgid "Inline Margin"
|
325 |
+
msgstr "インラインマージン"
|
326 |
+
|
327 |
+
# @ crayon-syntax-highlighter
|
328 |
+
#: crayon_settings_wp.class.php:556
|
329 |
msgid "Display the Toolbar"
|
330 |
msgstr "ツールバーの表示"
|
331 |
|
332 |
# @ crayon-syntax-highlighter
|
333 |
+
#: crayon_settings_wp.class.php:559
|
334 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
335 |
msgstr "コードを押し下げるのではなく、コード上に重ねて表示"
|
336 |
|
337 |
# @ crayon-syntax-highlighter
|
338 |
+
#: crayon_settings_wp.class.php:560
|
339 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
340 |
msgstr "重ねて表示の場合にシングルクリックでツールバーを切り替える"
|
341 |
|
342 |
# @ crayon-syntax-highlighter
|
343 |
+
#: crayon_settings_wp.class.php:561
|
344 |
msgid "Delay hiding the toolbar on MouseOut"
|
345 |
msgstr "マウスアウト時にツールバーを隠すのを遅らせる"
|
346 |
|
347 |
# @ crayon-syntax-highlighter
|
348 |
+
#: crayon_settings_wp.class.php:563
|
349 |
msgid "Display the title when provided"
|
350 |
msgstr "タイトルがある時は表示"
|
351 |
|
352 |
# @ crayon-syntax-highlighter
|
353 |
+
#: crayon_settings_wp.class.php:564
|
354 |
msgid "Display the language"
|
355 |
msgstr "ソース言語を表示"
|
356 |
|
357 |
# @ crayon-syntax-highlighter
|
358 |
+
#: crayon_settings_wp.class.php:571
|
359 |
msgid "Display striped code lines"
|
360 |
msgstr "コード行を縞模様で表示する"
|
361 |
|
362 |
# @ crayon-syntax-highlighter
|
363 |
+
#: crayon_settings_wp.class.php:572
|
364 |
msgid "Enable line marking for important lines"
|
365 |
msgstr "重要な行にマーキングを有効にする"
|
366 |
|
367 |
# @ crayon-syntax-highlighter
|
368 |
+
#: crayon_settings_wp.class.php:573
|
369 |
msgid "Display line numbers by default"
|
370 |
msgstr "デフォルトで行番号を表示"
|
371 |
|
372 |
# @ crayon-syntax-highlighter
|
373 |
+
#: crayon_settings_wp.class.php:574
|
374 |
msgid "Enable line number toggling"
|
375 |
msgstr "行番号の切り替えを有効にする"
|
376 |
|
377 |
# @ crayon-syntax-highlighter
|
378 |
+
#: crayon_settings_wp.class.php:575
|
379 |
msgid "Start line numbers from"
|
380 |
msgstr "行番号の開始数字"
|
381 |
|
382 |
# @ crayon-syntax-highlighter
|
383 |
+
#: crayon_settings_wp.class.php:585
|
384 |
msgid "When no language is provided, use the fallback"
|
385 |
msgstr "ソース言語が提供されていない場合は、代替えを使用します。"
|
386 |
|
387 |
# @ crayon-syntax-highlighter
|
388 |
#: crayon_settings_wp.class.php:591
|
389 |
+
#, fuzzy, php-format
|
390 |
+
msgid "%d language has been detected."
|
391 |
+
msgstr "%dのソース言語が検出されてます。"
|
392 |
+
|
393 |
+
# @ crayon-syntax-highlighter
|
394 |
+
#: crayon_settings_wp.class.php:592
|
395 |
msgid "Parsing was successful"
|
396 |
msgstr "解析が成功しました。"
|
397 |
|
398 |
# @ crayon-syntax-highlighter
|
399 |
+
#: crayon_settings_wp.class.php:592
|
400 |
msgid "Parsing was unsuccessful"
|
401 |
msgstr "解析に失敗しました。"
|
402 |
|
403 |
# @ crayon-syntax-highlighter
|
404 |
+
#: crayon_settings_wp.class.php:598
|
405 |
#, php-format
|
406 |
msgid "The selected language with id %s could not be loaded"
|
407 |
msgstr "ID %s の選択したソース言語をロードできませんでした。"
|
408 |
|
409 |
# @ crayon-syntax-highlighter
|
410 |
+
#: crayon_settings_wp.class.php:602
|
411 |
msgid "Show Languages"
|
412 |
msgstr "ソース言語を表示する"
|
413 |
|
414 |
# @ crayon-syntax-highlighter
|
415 |
+
#: crayon_settings_wp.class.php:621
|
416 |
+
msgid "Loading..."
|
417 |
+
msgstr "ロード中..."
|
418 |
+
|
419 |
+
# @ crayon-syntax-highlighter
|
420 |
+
#: crayon_settings_wp.class.php:621
|
421 |
+
#: crayon_settings_wp.class.php:804
|
422 |
+
msgid "Theme Editor"
|
423 |
+
msgstr "テーマエディタ"
|
424 |
+
|
425 |
+
# @ crayon-syntax-highlighter
|
426 |
+
#: crayon_settings_wp.class.php:626
|
427 |
+
#, php-format
|
428 |
+
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
429 |
+
msgstr "サンプルコードを変更するには、%1$sfallback language(代替え言語)%2$sを変更て下さい。5行目から7行目はマークされます。"
|
430 |
+
|
431 |
+
# @ crayon-syntax-highlighter
|
432 |
+
#: crayon_settings_wp.class.php:630
|
433 |
msgid "Enable Live Preview"
|
434 |
msgstr "リアルタイムのプレビューを有効にする"
|
435 |
|
436 |
# @ crayon-syntax-highlighter
|
437 |
+
#: crayon_settings_wp.class.php:632
|
438 |
+
msgid "Enqueue themes in the header (more efficient)."
|
439 |
+
msgstr "ヘッダー内のエンキューテーマ(より効率的)"
|
440 |
+
|
441 |
+
# @ crayon-syntax-highlighter
|
442 |
+
#: crayon_settings_wp.class.php:632
|
443 |
+
#: crayon_settings_wp.class.php:658
|
444 |
+
#: crayon_settings_wp.class.php:683
|
445 |
+
#: crayon_settings_wp.class.php:690
|
446 |
+
#: crayon_settings_wp.class.php:691
|
447 |
+
#: crayon_settings_wp.class.php:692
|
448 |
+
#: crayon_settings_wp.class.php:693
|
449 |
+
#: crayon_settings_wp.class.php:694
|
450 |
+
#: crayon_settings_wp.class.php:695
|
451 |
+
#: crayon_settings_wp.class.php:709
|
452 |
+
#: crayon_settings_wp.class.php:716
|
453 |
+
#: crayon_settings_wp.class.php:717
|
454 |
+
msgid "?"
|
455 |
+
msgstr "?"
|
456 |
+
|
457 |
+
# @ crayon-syntax-highlighter
|
458 |
+
#: crayon_settings_wp.class.php:635
|
459 |
#, php-format
|
460 |
msgid "The selected theme with id %s could not be loaded"
|
461 |
msgstr "ID %sの選択したテーマをロードできませんでした。"
|
462 |
|
463 |
# @ crayon-syntax-highlighter
|
464 |
+
#: crayon_settings_wp.class.php:647
|
465 |
msgid "Custom Font Size"
|
466 |
msgstr "フォントサイズ指定"
|
467 |
|
468 |
# @ crayon-syntax-highlighter
|
469 |
+
#: crayon_settings_wp.class.php:652
|
470 |
#, php-format
|
471 |
msgid "The selected font with id %s could not be loaded"
|
472 |
msgstr "ID %s の選択されたフォントをロードできませんでした。"
|
473 |
|
474 |
# @ crayon-syntax-highlighter
|
475 |
+
#: crayon_settings_wp.class.php:658
|
476 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
477 |
+
msgstr "ヘッダー内のエンキューフォント(より効率的)"
|
478 |
+
|
479 |
+
# @ crayon-syntax-highlighter
|
480 |
+
#: crayon_settings_wp.class.php:663
|
481 |
msgid "Enable plain code view and display"
|
482 |
msgstr "単純なコードビューを有効にする"
|
483 |
|
484 |
+
# @ crayon-syntax-highlighter
|
485 |
+
#: crayon_settings_wp.class.php:666
|
486 |
+
msgid "Enable plain code toggling"
|
487 |
+
msgstr "単純なコードの切り替えを有効にする"
|
488 |
+
|
489 |
# @ crayon-syntax-highlighter
|
490 |
#: crayon_settings_wp.class.php:667
|
491 |
+
msgid "Show the plain code by default"
|
492 |
+
msgstr "デフォルトでプレインコードを表示する"
|
493 |
+
|
494 |
+
# @ crayon-syntax-highlighter
|
495 |
+
#: crayon_settings_wp.class.php:668
|
496 |
msgid "Enable code copy/paste"
|
497 |
msgstr "コードのコピー/貼り付けを有効にする"
|
498 |
|
499 |
# @ crayon-syntax-highlighter
|
500 |
+
#: crayon_settings_wp.class.php:670
|
501 |
msgid "Enable opening code in a window"
|
502 |
msgstr "新しいウインドウでコードを開くを有効にする"
|
503 |
|
504 |
# @ crayon-syntax-highlighter
|
505 |
#: crayon_settings_wp.class.php:671
|
506 |
+
msgid "Always display scrollbars"
|
507 |
+
msgstr "常にスクロールバーを表示する"
|
508 |
+
|
509 |
+
# @ crayon-syntax-highlighter
|
510 |
+
#: crayon_settings_wp.class.php:672
|
511 |
msgid "Tab size in spaces"
|
512 |
msgstr "tab挿入の空白代替え数(単純コードビュー)"
|
513 |
|
514 |
# @ crayon-syntax-highlighter
|
515 |
+
#: crayon_settings_wp.class.php:677
|
516 |
+
msgid "Decode HTML entities in code"
|
517 |
+
msgstr "コード内のHTMLエンティティを出力"
|
518 |
|
519 |
# @ crayon-syntax-highlighter
|
520 |
+
#: crayon_settings_wp.class.php:679
|
521 |
+
msgid "Decode HTML entities in attributes"
|
522 |
+
msgstr "属性内のHTMLエンティティを出力"
|
523 |
|
524 |
# @ crayon-syntax-highlighter
|
525 |
+
#: crayon_settings_wp.class.php:681
|
526 |
+
msgid "Remove whitespace surrounding the shortcode content"
|
527 |
+
msgstr "ショートコードの内容を囲む空白の部分を削除します"
|
528 |
|
529 |
# @ crayon-syntax-highlighter
|
530 |
+
#: crayon_settings_wp.class.php:683
|
531 |
+
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
532 |
+
msgstr "区切り文字とタグが混合言語の強調表示を許可する。"
|
533 |
|
534 |
# @ crayon-syntax-highlighter
|
535 |
+
#: crayon_settings_wp.class.php:685
|
536 |
+
msgid "Show Mixed Language Icon (+)"
|
537 |
+
msgstr "混合言語のアイコンを(+)を表示"
|
538 |
|
539 |
# @ crayon-syntax-highlighter
|
540 |
+
#: crayon_settings_wp.class.php:690
|
541 |
+
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
542 |
+
msgstr "Crayonsとして[php][/php]のようなミニタグをキャプチャします。"
|
543 |
|
544 |
# @ crayon-syntax-highlighter
|
545 |
+
#: crayon_settings_wp.class.php:691
|
546 |
+
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
547 |
+
msgstr "{php}{/php}文の内部でインラインタグをキャプチャします。"
|
548 |
|
549 |
# @ crayon-syntax-highlighter
|
550 |
+
#: crayon_settings_wp.class.php:692
|
551 |
+
msgid "Wrap Inline Tags"
|
552 |
+
msgstr "ラップインラインタグ"
|
553 |
|
554 |
# @ crayon-syntax-highlighter
|
555 |
+
#: crayon_settings_wp.class.php:693
|
556 |
+
msgid "Capture `backquotes` as <code>"
|
557 |
+
msgstr "の<code>として `バッククォート`をキャプチャする"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
558 |
|
559 |
# @ crayon-syntax-highlighter
|
560 |
+
#: crayon_settings_wp.class.php:694
|
561 |
msgid "Capture <pre> tags as Crayons"
|
562 |
msgstr "Crayonsとして<pre>タグをキャプチャ"
|
563 |
|
564 |
# @ crayon-syntax-highlighter
|
565 |
+
#: crayon_settings_wp.class.php:695
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
566 |
msgid "Enable [plain][/plain] tag."
|
567 |
msgstr "[plain][/plain]タグを有効にします。"
|
568 |
|
569 |
# @ crayon-syntax-highlighter
|
570 |
+
#: crayon_settings_wp.class.php:700
|
571 |
+
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
572 |
+
msgstr "ローカルファイルのロード時と相対パスがURLに指定されている場合、絶対パスを使用します。"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
|
574 |
# @ crayon-syntax-highlighter
|
575 |
+
#: crayon_settings_wp.class.php:703
|
576 |
+
msgid "Followed by your relative URL."
|
577 |
+
msgstr "相対URLが続きます。"
|
578 |
|
579 |
# @ crayon-syntax-highlighter
|
580 |
+
#: crayon_settings_wp.class.php:707
|
581 |
+
#, php-format
|
582 |
+
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
583 |
+
msgstr " <pre> のクラス属性の値から設定名を区切るには %s を使う。"
|
584 |
|
585 |
# @ crayon-syntax-highlighter
|
586 |
+
#: crayon_settings_wp.class.php:713
|
587 |
+
msgid "Clear the cache used to store remote code requests"
|
588 |
+
msgstr "リモートコードリクエストで使用する為保存したキャッシュをクリアする"
|
589 |
|
590 |
# @ crayon-syntax-highlighter
|
591 |
+
#: crayon_settings_wp.class.php:715
|
592 |
+
msgid "Clear Now"
|
593 |
+
msgstr "今すぐクリア"
|
|
|
|
|
594 |
|
595 |
# @ crayon-syntax-highlighter
|
596 |
+
#: crayon_settings_wp.class.php:716
|
597 |
+
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
598 |
+
msgstr "必要な時だけCrayonのCSSとJavaScriptを読み込むように試みる"
|
599 |
|
600 |
# @ crayon-syntax-highlighter
|
601 |
+
#: crayon_settings_wp.class.php:717
|
602 |
msgid "Disable enqueuing for page templates that may contain The Loop."
|
603 |
msgstr "ループを含む可能性のあるページテンプレートのエンキューを無効にします。"
|
604 |
|
605 |
# @ crayon-syntax-highlighter
|
606 |
#: crayon_settings_wp.class.php:718
|
607 |
+
msgid "Allow Crayons inside comments"
|
608 |
+
msgstr "コメント内のクレヨンを許可する"
|
609 |
+
|
610 |
+
#: crayon_settings_wp.class.php:719
|
611 |
+
msgid "Remove Crayons from excerpts"
|
612 |
+
msgstr "Crayon抜粋から削除"
|
613 |
+
|
614 |
+
# @ crayon-syntax-highlighter
|
615 |
+
#: crayon_settings_wp.class.php:720
|
616 |
msgid "Load Crayons only from the main Wordpress query"
|
617 |
msgstr "唯一の主要なWordpressのクエリからロードクレヨン"
|
618 |
|
619 |
# @ crayon-syntax-highlighter
|
620 |
+
#: crayon_settings_wp.class.php:721
|
621 |
+
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
622 |
+
msgstr "タッチスクリーンデバイスに対してマウスジェスチャー(例:マウスオーバー)を無効にする"
|
623 |
|
624 |
# @ crayon-syntax-highlighter
|
625 |
+
#: crayon_settings_wp.class.php:722
|
626 |
+
msgid "Disable animations"
|
627 |
+
msgstr "アニメーションを無効にする"
|
628 |
|
629 |
# @ crayon-syntax-highlighter
|
630 |
+
#: crayon_settings_wp.class.php:723
|
631 |
+
msgid "Disable runtime stats"
|
632 |
+
msgstr "プログラム実行時の統計を無効にする"
|
633 |
|
634 |
# @ crayon-syntax-highlighter
|
635 |
+
#: crayon_settings_wp.class.php:729
|
636 |
+
msgid "Log errors for individual Crayons"
|
637 |
+
msgstr "個々設置(Crayon)のエラーを記録"
|
638 |
|
639 |
# @ crayon-syntax-highlighter
|
640 |
+
#: crayon_settings_wp.class.php:730
|
641 |
+
msgid "Log system-wide errors"
|
642 |
+
msgstr "システム全体のエラーを記録"
|
643 |
|
644 |
# @ crayon-syntax-highlighter
|
645 |
+
#: crayon_settings_wp.class.php:731
|
646 |
+
msgid "Display custom message for errors"
|
647 |
+
msgstr "カスタムエラーメッセージを表示する"
|
648 |
|
649 |
# @ crayon-syntax-highlighter
|
650 |
+
#: crayon_settings_wp.class.php:743
|
651 |
+
msgid "Show Log"
|
652 |
+
msgstr "ログを見る"
|
653 |
|
654 |
# @ crayon-syntax-highlighter
|
655 |
+
#: crayon_settings_wp.class.php:743
|
656 |
msgid "Hide Log"
|
657 |
msgstr "ログを隠す"
|
658 |
|
659 |
# @ crayon-syntax-highlighter
|
660 |
+
#: crayon_settings_wp.class.php:745
|
661 |
+
msgid "Clear Log"
|
662 |
+
msgstr "ログをクリア"
|
|
|
|
|
|
|
|
|
|
|
|
|
663 |
|
664 |
# @ crayon-syntax-highlighter
|
665 |
+
#: crayon_settings_wp.class.php:746
|
666 |
+
msgid "Email Admin"
|
667 |
+
msgstr "管理者にEメールを送信"
|
668 |
|
669 |
# @ crayon-syntax-highlighter
|
670 |
+
#: crayon_settings_wp.class.php:748
|
671 |
+
msgid "Email Developer"
|
672 |
+
msgstr "開発者にEメールを送信"
|
673 |
|
674 |
# @ crayon-syntax-highlighter
|
675 |
+
#: crayon_settings_wp.class.php:750
|
676 |
+
msgid "The log is currently empty."
|
677 |
+
msgstr "ログは現在空です。"
|
678 |
|
679 |
# @ crayon-syntax-highlighter
|
680 |
+
#: crayon_settings_wp.class.php:752
|
681 |
+
msgid "The log file exists and is writable."
|
682 |
+
msgstr "ログファイルは存在し、書き込み可能です。"
|
683 |
|
684 |
# @ crayon-syntax-highlighter
|
685 |
+
#: crayon_settings_wp.class.php:752
|
686 |
+
msgid "The log file exists and is not writable."
|
687 |
+
msgstr "ログファイルは存在するが、書き込み可能ではありません。"
|
688 |
|
689 |
# @ crayon-syntax-highlighter
|
690 |
+
#: crayon_settings_wp.class.php:754
|
691 |
+
msgid "The log file does not exist and is not writable."
|
692 |
+
msgstr "ログファイルが存在しないので書き込むことが出来ません。"
|
693 |
|
694 |
# @ crayon-syntax-highlighter
|
695 |
+
#: crayon_settings_wp.class.php:764
|
696 |
+
msgid "Version"
|
697 |
+
msgstr "バージョン"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
698 |
|
699 |
# @ crayon-syntax-highlighter
|
700 |
+
#: crayon_settings_wp.class.php:766
|
701 |
+
msgid "Developer"
|
702 |
+
msgstr "開発者"
|
703 |
|
704 |
# @ crayon-syntax-highlighter
|
705 |
+
#: crayon_settings_wp.class.php:767
|
706 |
+
msgid "Translators"
|
707 |
+
msgstr "翻訳者"
|
708 |
|
709 |
# @ crayon-syntax-highlighter
|
710 |
+
#: crayon_settings_wp.class.php:790
|
711 |
+
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
712 |
+
msgstr "何カ月もにわたって数え切れないほどのハードワークの時間を費やすプロジェクトです、私にモチベーションを維持させて下さい!"
|
|
|
713 |
|
714 |
# @ crayon-syntax-highlighter
|
715 |
+
#: crayon_settings_wp.class.php:806
|
716 |
+
msgid "Donate"
|
717 |
+
msgstr "寄付する"
|
|
|
718 |
|
719 |
# @ crayon-syntax-highlighter
|
720 |
#: util/tag-editor/crayon_tag_editor_wp.class.php:57
|
818 |
msgid "Future changes to the global settings under %sCrayon > Settings%s won't affect overridden settings."
|
819 |
msgstr "%sCrayon > 設定%s で変更される将来の変更は、ここで上書きされた変更には影響されません。"
|
820 |
|
821 |
+
# @ crayon-syntax-highlighter
|
822 |
+
#: util/theme-editor/editor.php:16
|
823 |
+
msgid "Back To Settings"
|
824 |
+
msgstr "設定を戻す"
|
825 |
+
|
trans/crayon-syntax-highlighter-lt_LT.mo
ADDED
Binary file
|
trans/crayon-syntax-highlighter-lt_LT.po
ADDED
@@ -0,0 +1,806 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: crayon-syntax-highlighter\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-07 20:58+1000\n"
|
6 |
+
"PO-Revision-Date: 2012-05-07 20:58+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: Lithuanian\n"
|
14 |
+
"X-Poedit-Country: LITHUANIA\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;crayon_e;crayon__;crayon_n\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_formatter.class.php:266
|
23 |
+
msgid "Toggle Plain Code"
|
24 |
+
msgstr "Sukeisti Grynąjį Kodą"
|
25 |
+
|
26 |
+
# @ crayon-syntax-highlighter
|
27 |
+
#: ../crayon_formatter.class.php:268
|
28 |
+
#, php-format
|
29 |
+
msgid "Press %s to Copy, %s to Paste"
|
30 |
+
msgstr "Paspauskite %s norėdami nukopijuoti, %s norėdami Įdėti"
|
31 |
+
|
32 |
+
# @ crayon-syntax-highlighter
|
33 |
+
#: ../crayon_formatter.class.php:268
|
34 |
+
msgid "Copy Plain Code"
|
35 |
+
msgstr "Kopijuoti Grynąjį Kodą"
|
36 |
+
|
37 |
+
# @ crayon-syntax-highlighter
|
38 |
+
#: ../crayon_formatter.class.php:270
|
39 |
+
msgid "Open Code In New Window"
|
40 |
+
msgstr "Atverti Kodą Naujame Lange"
|
41 |
+
|
42 |
+
# @ crayon-syntax-highlighter
|
43 |
+
#: ../crayon_formatter.class.php:273
|
44 |
+
msgid "Toggle Line Numbers"
|
45 |
+
msgstr "Sukeisti Eilučių Numerius"
|
46 |
+
|
47 |
+
# @ crayon-syntax-highlighter
|
48 |
+
#: ../crayon_formatter.class.php:279
|
49 |
+
msgid "Contains Mixed Languages"
|
50 |
+
msgstr "Palaiko Mišrias Kalbas"
|
51 |
+
|
52 |
+
# @ crayon-syntax-highlighter
|
53 |
+
#: ../crayon_settings.class.php:138
|
54 |
+
msgid "Hourly"
|
55 |
+
msgstr "Valandomis"
|
56 |
+
|
57 |
+
# @ crayon-syntax-highlighter
|
58 |
+
#: ../crayon_settings.class.php:138
|
59 |
+
msgid "Daily"
|
60 |
+
msgstr "Dienomis"
|
61 |
+
|
62 |
+
# @ crayon-syntax-highlighter
|
63 |
+
#: ../crayon_settings.class.php:139
|
64 |
+
msgid "Weekly"
|
65 |
+
msgstr "Savaitėmis"
|
66 |
+
|
67 |
+
# @ crayon-syntax-highlighter
|
68 |
+
#: ../crayon_settings.class.php:139
|
69 |
+
msgid "Monthly"
|
70 |
+
msgstr "Mėnesiais"
|
71 |
+
|
72 |
+
# @ crayon-syntax-highlighter
|
73 |
+
#: ../crayon_settings.class.php:140
|
74 |
+
msgid "Immediately"
|
75 |
+
msgstr "Tučtuojau"
|
76 |
+
|
77 |
+
# @ crayon-syntax-highlighter
|
78 |
+
#: ../crayon_settings.class.php:150
|
79 |
+
#: ../crayon_settings.class.php:154
|
80 |
+
msgid "Max"
|
81 |
+
msgstr "Daugiausia"
|
82 |
+
|
83 |
+
# @ crayon-syntax-highlighter
|
84 |
+
#: ../crayon_settings.class.php:150
|
85 |
+
#: ../crayon_settings.class.php:154
|
86 |
+
msgid "Min"
|
87 |
+
msgstr "Mažiausia"
|
88 |
+
|
89 |
+
# @ crayon-syntax-highlighter
|
90 |
+
#: ../crayon_settings.class.php:150
|
91 |
+
#: ../crayon_settings.class.php:154
|
92 |
+
msgid "Static"
|
93 |
+
msgstr "Nustatyta"
|
94 |
+
|
95 |
+
# @ crayon-syntax-highlighter
|
96 |
+
#: ../crayon_settings.class.php:152
|
97 |
+
#: ../crayon_settings.class.php:156
|
98 |
+
#: ../crayon_settings_wp.class.php:541
|
99 |
+
#: ../crayon_settings_wp.class.php:550
|
100 |
+
#: ../crayon_settings_wp.class.php:649
|
101 |
+
msgid "Pixels"
|
102 |
+
msgstr "Taškai"
|
103 |
+
|
104 |
+
# @ crayon-syntax-highlighter
|
105 |
+
#: ../crayon_settings.class.php:152
|
106 |
+
#: ../crayon_settings.class.php:156
|
107 |
+
msgid "Percent"
|
108 |
+
msgstr "Procentais"
|
109 |
+
|
110 |
+
# @ crayon-syntax-highlighter
|
111 |
+
#: ../crayon_settings.class.php:165
|
112 |
+
msgid "None"
|
113 |
+
msgstr "Nieko"
|
114 |
+
|
115 |
+
# @ crayon-syntax-highlighter
|
116 |
+
#: ../crayon_settings.class.php:165
|
117 |
+
msgid "Left"
|
118 |
+
msgstr "Kairė"
|
119 |
+
|
120 |
+
# @ crayon-syntax-highlighter
|
121 |
+
#: ../crayon_settings.class.php:165
|
122 |
+
msgid "Center"
|
123 |
+
msgstr "Centras"
|
124 |
+
|
125 |
+
# @ crayon-syntax-highlighter
|
126 |
+
#: ../crayon_settings.class.php:165
|
127 |
+
msgid "Right"
|
128 |
+
msgstr "Dešinė"
|
129 |
+
|
130 |
+
# @ crayon-syntax-highlighter
|
131 |
+
#: ../crayon_settings.class.php:167
|
132 |
+
#: ../crayon_settings.class.php:189
|
133 |
+
msgid "On MouseOver"
|
134 |
+
msgstr "Užvedus pelės žymeklį"
|
135 |
+
|
136 |
+
# @ crayon-syntax-highlighter
|
137 |
+
#: ../crayon_settings.class.php:167
|
138 |
+
#: ../crayon_settings.class.php:173
|
139 |
+
msgid "Always"
|
140 |
+
msgstr "Visada"
|
141 |
+
|
142 |
+
# @ crayon-syntax-highlighter
|
143 |
+
#: ../crayon_settings.class.php:167
|
144 |
+
#: ../crayon_settings.class.php:173
|
145 |
+
msgid "Never"
|
146 |
+
msgstr "Niekada"
|
147 |
+
|
148 |
+
# @ crayon-syntax-highlighter
|
149 |
+
#: ../crayon_settings.class.php:173
|
150 |
+
msgid "When Found"
|
151 |
+
msgstr "Kai Aptinkama"
|
152 |
+
|
153 |
+
# @ crayon-syntax-highlighter
|
154 |
+
#: ../crayon_settings.class.php:189
|
155 |
+
msgid "On Double Click"
|
156 |
+
msgstr "Dvikarčiu Spustelėjimu"
|
157 |
+
|
158 |
+
# @ crayon-syntax-highlighter
|
159 |
+
#: ../crayon_settings.class.php:189
|
160 |
+
msgid "On Single Click"
|
161 |
+
msgstr "Vienkarčiu Spustelėjimu"
|
162 |
+
|
163 |
+
# @ crayon-syntax-highlighter
|
164 |
+
#: ../crayon_settings.class.php:189
|
165 |
+
msgid "Disable Mouse Events"
|
166 |
+
msgstr "Išjungti Pelės Veiksmus"
|
167 |
+
|
168 |
+
# @ crayon-syntax-highlighter
|
169 |
+
#: ../crayon_settings.class.php:196
|
170 |
+
msgid "An error has occurred. Please try again later."
|
171 |
+
msgstr "Įvyko klaida. Prašome mėginti vėliau."
|
172 |
+
|
173 |
+
# @ crayon-syntax-highlighter
|
174 |
+
#: ../crayon_settings_wp.class.php:44
|
175 |
+
#: ../crayon_settings_wp.class.php:118
|
176 |
+
#: ../crayon_settings_wp.class.php:802
|
177 |
+
msgid "Settings"
|
178 |
+
msgstr "Nuostatos"
|
179 |
+
|
180 |
+
# @ crayon-syntax-highlighter
|
181 |
+
#: ../crayon_settings_wp.class.php:99
|
182 |
+
msgid "You do not have sufficient permissions to access this page."
|
183 |
+
msgstr "Jūs neturite reikiamų leidimų priėjimui prie šio puslapio."
|
184 |
+
|
185 |
+
# @ crayon-syntax-highlighter
|
186 |
+
#: ../crayon_settings_wp.class.php:130
|
187 |
+
msgid "Save Changes"
|
188 |
+
msgstr "Įrašyti Pakeitimus"
|
189 |
+
|
190 |
+
# @ crayon-syntax-highlighter
|
191 |
+
#: ../crayon_settings_wp.class.php:136
|
192 |
+
msgid "Reset Settings"
|
193 |
+
msgstr "Atkurti Nuostatas"
|
194 |
+
|
195 |
+
# @ crayon-syntax-highlighter
|
196 |
+
#: ../crayon_settings_wp.class.php:301
|
197 |
+
msgid "General"
|
198 |
+
msgstr "Bendrai"
|
199 |
+
|
200 |
+
# @ crayon-syntax-highlighter
|
201 |
+
#: ../crayon_settings_wp.class.php:302
|
202 |
+
msgid "Theme"
|
203 |
+
msgstr "Apipavidalinimas"
|
204 |
+
|
205 |
+
# @ crayon-syntax-highlighter
|
206 |
+
#: ../crayon_settings_wp.class.php:303
|
207 |
+
msgid "Font"
|
208 |
+
msgstr "Šriftas"
|
209 |
+
|
210 |
+
# @ crayon-syntax-highlighter
|
211 |
+
#: ../crayon_settings_wp.class.php:304
|
212 |
+
msgid "Metrics"
|
213 |
+
msgstr "Maketas"
|
214 |
+
|
215 |
+
# @ crayon-syntax-highlighter
|
216 |
+
#: ../crayon_settings_wp.class.php:305
|
217 |
+
msgid "Toolbar"
|
218 |
+
msgstr "Įrankių juosta"
|
219 |
+
|
220 |
+
# @ crayon-syntax-highlighter
|
221 |
+
#: ../crayon_settings_wp.class.php:306
|
222 |
+
msgid "Lines"
|
223 |
+
msgstr "Linijos"
|
224 |
+
|
225 |
+
# @ crayon-syntax-highlighter
|
226 |
+
#: ../crayon_settings_wp.class.php:307
|
227 |
+
msgid "Code"
|
228 |
+
msgstr "Kodas"
|
229 |
+
|
230 |
+
#: ../crayon_settings_wp.class.php:308
|
231 |
+
msgid "Tags"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
# @ crayon-syntax-highlighter
|
235 |
+
#: ../crayon_settings_wp.class.php:309
|
236 |
+
msgid "Languages"
|
237 |
+
msgstr "Kalbos"
|
238 |
+
|
239 |
+
# @ crayon-syntax-highlighter
|
240 |
+
#: ../crayon_settings_wp.class.php:310
|
241 |
+
msgid "Files"
|
242 |
+
msgstr "Rinkmenos"
|
243 |
+
|
244 |
+
# @ crayon-syntax-highlighter
|
245 |
+
#: ../crayon_settings_wp.class.php:311
|
246 |
+
#, fuzzy
|
247 |
+
msgid "Tag Editor"
|
248 |
+
msgstr "Apipavidalinimų Redaktorius"
|
249 |
+
|
250 |
+
# @ crayon-syntax-highlighter
|
251 |
+
#: ../crayon_settings_wp.class.php:312
|
252 |
+
msgid "Misc"
|
253 |
+
msgstr "Kita"
|
254 |
+
|
255 |
+
# @ crayon-syntax-highlighter
|
256 |
+
#: ../crayon_settings_wp.class.php:315
|
257 |
+
msgid "Debug"
|
258 |
+
msgstr "Derinimas"
|
259 |
+
|
260 |
+
# @ crayon-syntax-highlighter
|
261 |
+
#: ../crayon_settings_wp.class.php:316
|
262 |
+
msgid "Errors"
|
263 |
+
msgstr "Klaidos"
|
264 |
+
|
265 |
+
# @ crayon-syntax-highlighter
|
266 |
+
#: ../crayon_settings_wp.class.php:317
|
267 |
+
msgid "Log"
|
268 |
+
msgstr "Žurnalas"
|
269 |
+
|
270 |
+
# @ crayon-syntax-highlighter
|
271 |
+
#: ../crayon_settings_wp.class.php:320
|
272 |
+
msgid "About"
|
273 |
+
msgstr "Apie"
|
274 |
+
|
275 |
+
# @ crayon-syntax-highlighter
|
276 |
+
#: ../crayon_settings_wp.class.php:503
|
277 |
+
msgid "Crayon Help"
|
278 |
+
msgstr "Crayon Pagalba"
|
279 |
+
|
280 |
+
# @ crayon-syntax-highlighter
|
281 |
+
#: ../crayon_settings_wp.class.php:518
|
282 |
+
msgid "Height"
|
283 |
+
msgstr "Aukštis"
|
284 |
+
|
285 |
+
# @ crayon-syntax-highlighter
|
286 |
+
#: ../crayon_settings_wp.class.php:524
|
287 |
+
msgid "Width"
|
288 |
+
msgstr "Paraštė"
|
289 |
+
|
290 |
+
# @ crayon-syntax-highlighter
|
291 |
+
#: ../crayon_settings_wp.class.php:530
|
292 |
+
msgid "Top Margin"
|
293 |
+
msgstr "Viršutinė Paraštė"
|
294 |
+
|
295 |
+
# @ crayon-syntax-highlighter
|
296 |
+
#: ../crayon_settings_wp.class.php:531
|
297 |
+
msgid "Bottom Margin"
|
298 |
+
msgstr "Apatinė Paraštė"
|
299 |
+
|
300 |
+
# @ crayon-syntax-highlighter
|
301 |
+
#: ../crayon_settings_wp.class.php:532
|
302 |
+
#: ../crayon_settings_wp.class.php:537
|
303 |
+
msgid "Left Margin"
|
304 |
+
msgstr "Kairė Paraštė"
|
305 |
+
|
306 |
+
# @ crayon-syntax-highlighter
|
307 |
+
#: ../crayon_settings_wp.class.php:533
|
308 |
+
#: ../crayon_settings_wp.class.php:537
|
309 |
+
msgid "Right Margin"
|
310 |
+
msgstr "Dešinė paraštė"
|
311 |
+
|
312 |
+
# @ crayon-syntax-highlighter
|
313 |
+
#: ../crayon_settings_wp.class.php:543
|
314 |
+
msgid "Horizontal Alignment"
|
315 |
+
msgstr "Horizontalus Lygiavimas"
|
316 |
+
|
317 |
+
# @ crayon-syntax-highlighter
|
318 |
+
#: ../crayon_settings_wp.class.php:546
|
319 |
+
msgid "Allow floating elements to surround Crayon"
|
320 |
+
msgstr "Leisti slankiųjų elementų Crayon apsupimą"
|
321 |
+
|
322 |
+
# @ crayon-syntax-highlighter
|
323 |
+
#: ../crayon_settings_wp.class.php:548
|
324 |
+
#, fuzzy
|
325 |
+
msgid "Inline Margin"
|
326 |
+
msgstr "Kairė Paraštė"
|
327 |
+
|
328 |
+
# @ crayon-syntax-highlighter
|
329 |
+
#: ../crayon_settings_wp.class.php:556
|
330 |
+
msgid "Display the Toolbar"
|
331 |
+
msgstr "Rodyti Įrankių juostą"
|
332 |
+
|
333 |
+
# @ crayon-syntax-highlighter
|
334 |
+
#: ../crayon_settings_wp.class.php:559
|
335 |
+
msgid "Overlay the toolbar on code rather than push it down when possible"
|
336 |
+
msgstr "Perdengti kodą įrankių juosta vietoje kodo nustūmimo žemyn, kai įmanoma"
|
337 |
+
|
338 |
+
# @ crayon-syntax-highlighter
|
339 |
+
#: ../crayon_settings_wp.class.php:560
|
340 |
+
msgid "Toggle the toolbar on single click when it is overlayed"
|
341 |
+
msgstr "Perjungti įrankių juostą vieno pelės mygtuko paspaudimo metu, kai ji perdengta"
|
342 |
+
|
343 |
+
# @ crayon-syntax-highlighter
|
344 |
+
#: ../crayon_settings_wp.class.php:561
|
345 |
+
msgid "Delay hiding the toolbar on MouseOut"
|
346 |
+
msgstr "Delsti paslėpti įrankių juostą MouseOut metu"
|
347 |
+
|
348 |
+
# @ crayon-syntax-highlighter
|
349 |
+
#: ../crayon_settings_wp.class.php:563
|
350 |
+
msgid "Display the title when provided"
|
351 |
+
msgstr "Rodyti antraštę, kai ši pateikta"
|
352 |
+
|
353 |
+
# @ crayon-syntax-highlighter
|
354 |
+
#: ../crayon_settings_wp.class.php:564
|
355 |
+
msgid "Display the language"
|
356 |
+
msgstr "Rodyti kalbą"
|
357 |
+
|
358 |
+
# @ crayon-syntax-highlighter
|
359 |
+
#: ../crayon_settings_wp.class.php:571
|
360 |
+
msgid "Display striped code lines"
|
361 |
+
msgstr "Rodyti atskirtas kodo eilutes"
|
362 |
+
|
363 |
+
# @ crayon-syntax-highlighter
|
364 |
+
#: ../crayon_settings_wp.class.php:572
|
365 |
+
msgid "Enable line marking for important lines"
|
366 |
+
msgstr "Leisti eilučių žymėjimą svarbioms eilutėms"
|
367 |
+
|
368 |
+
# @ crayon-syntax-highlighter
|
369 |
+
#: ../crayon_settings_wp.class.php:573
|
370 |
+
msgid "Display line numbers by default"
|
371 |
+
msgstr "Rodyti eilučių numerius (numatyta)"
|
372 |
+
|
373 |
+
# @ crayon-syntax-highlighter
|
374 |
+
#: ../crayon_settings_wp.class.php:574
|
375 |
+
msgid "Enable line number toggling"
|
376 |
+
msgstr "Leisti eilučių numerių sukeitimą"
|
377 |
+
|
378 |
+
# @ crayon-syntax-highlighter
|
379 |
+
#: ../crayon_settings_wp.class.php:575
|
380 |
+
msgid "Start line numbers from"
|
381 |
+
msgstr "Pradėti eilučių numeravimą nuo"
|
382 |
+
|
383 |
+
# @ crayon-syntax-highlighter
|
384 |
+
#: ../crayon_settings_wp.class.php:585
|
385 |
+
msgid "When no language is provided, use the fallback"
|
386 |
+
msgstr "Kai jokia kalba nepateikta, naudokite numatytąją"
|
387 |
+
|
388 |
+
# @ crayon-syntax-highlighter
|
389 |
+
#: ../crayon_settings_wp.class.php:591
|
390 |
+
#, fuzzy, php-format
|
391 |
+
msgid "%d language has been detected."
|
392 |
+
msgstr "aptikta %d kalba"
|
393 |
+
|
394 |
+
# @ crayon-syntax-highlighter
|
395 |
+
#: ../crayon_settings_wp.class.php:592
|
396 |
+
msgid "Parsing was successful"
|
397 |
+
msgstr "Analizė atlikta sėkmingai"
|
398 |
+
|
399 |
+
# @ crayon-syntax-highlighter
|
400 |
+
#: ../crayon_settings_wp.class.php:592
|
401 |
+
msgid "Parsing was unsuccessful"
|
402 |
+
msgstr "Analizė atlikta nesėkmingai"
|
403 |
+
|
404 |
+
# skliausteliai?
|
405 |
+
#: ../crayon_settings_wp.class.php:598
|
406 |
+
#, php-format
|
407 |
+
msgid "The selected language with id %s could not be loaded"
|
408 |
+
msgstr "Pasirinkta kalba su (identifikatorius %s) negali būti įkelta"
|
409 |
+
|
410 |
+
# @ crayon-syntax-highlighter
|
411 |
+
#: ../crayon_settings_wp.class.php:602
|
412 |
+
msgid "Show Languages"
|
413 |
+
msgstr "Rodyti Kalbas"
|
414 |
+
|
415 |
+
# @ crayon-syntax-highlighter
|
416 |
+
#: ../crayon_settings_wp.class.php:621
|
417 |
+
msgid "Loading..."
|
418 |
+
msgstr "Įkeliama..."
|
419 |
+
|
420 |
+
# @ crayon-syntax-highlighter
|
421 |
+
#: ../crayon_settings_wp.class.php:621
|
422 |
+
#: ../crayon_settings_wp.class.php:804
|
423 |
+
msgid "Theme Editor"
|
424 |
+
msgstr "Apipavidalinimų Redaktorius"
|
425 |
+
|
426 |
+
# @ crayon-syntax-highlighter
|
427 |
+
#: ../crayon_settings_wp.class.php:626
|
428 |
+
#, php-format
|
429 |
+
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
430 |
+
msgstr "Pakeiskite %1$sNumatytąją kalbą%2$s, norėdami pakeisti imties kodą. 5-7 eilutės yra pažymėtos."
|
431 |
+
|
432 |
+
# @ crayon-syntax-highlighter
|
433 |
+
#: ../crayon_settings_wp.class.php:630
|
434 |
+
msgid "Enable Live Preview"
|
435 |
+
msgstr "Leisti Tiesioginę Greitąją peržiūrą"
|
436 |
+
|
437 |
+
# @ crayon-syntax-highlighter
|
438 |
+
#: ../crayon_settings_wp.class.php:632
|
439 |
+
msgid "Enqueue themes in the header (more efficient)."
|
440 |
+
msgstr "Išrikiuoti apipavidalinimus puslapinėje antraštėje (efektyviau)."
|
441 |
+
|
442 |
+
#: ../crayon_settings_wp.class.php:632
|
443 |
+
#: ../crayon_settings_wp.class.php:658
|
444 |
+
#: ../crayon_settings_wp.class.php:683
|
445 |
+
#: ../crayon_settings_wp.class.php:690
|
446 |
+
#: ../crayon_settings_wp.class.php:691
|
447 |
+
#: ../crayon_settings_wp.class.php:692
|
448 |
+
#: ../crayon_settings_wp.class.php:693
|
449 |
+
#: ../crayon_settings_wp.class.php:694
|
450 |
+
#: ../crayon_settings_wp.class.php:695
|
451 |
+
#: ../crayon_settings_wp.class.php:709
|
452 |
+
#: ../crayon_settings_wp.class.php:716
|
453 |
+
#: ../crayon_settings_wp.class.php:717
|
454 |
+
msgid "?"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
# @ crayon-syntax-highlighter
|
458 |
+
#: ../crayon_settings_wp.class.php:635
|
459 |
+
#, php-format
|
460 |
+
msgid "The selected theme with id %s could not be loaded"
|
461 |
+
msgstr "Pasirinktas apipavidalinimas (Identifikatorius %s) negali būti įkeltas"
|
462 |
+
|
463 |
+
# @ crayon-syntax-highlighter
|
464 |
+
#: ../crayon_settings_wp.class.php:647
|
465 |
+
msgid "Custom Font Size"
|
466 |
+
msgstr "Individualizuotas Šrifto Dydis"
|
467 |
+
|
468 |
+
# @ crayon-syntax-highlighter
|
469 |
+
#: ../crayon_settings_wp.class.php:652
|
470 |
+
#, php-format
|
471 |
+
msgid "The selected font with id %s could not be loaded"
|
472 |
+
msgstr "Pasirinktas šriftas (Identifikatorius %s) negali būti įkeltas"
|
473 |
+
|
474 |
+
# @ crayon-syntax-highlighter
|
475 |
+
#: ../crayon_settings_wp.class.php:658
|
476 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
477 |
+
msgstr "Išrikiuoti šriftus puslapinėje antraštėje (efektyviau)"
|
478 |
+
|
479 |
+
# @ crayon-syntax-highlighter
|
480 |
+
#: ../crayon_settings_wp.class.php:663
|
481 |
+
msgid "Enable plain code view and display"
|
482 |
+
msgstr "Leisti paprastojo kodo peržiūrą ir vaizdavimą"
|
483 |
+
|
484 |
+
# @ crayon-syntax-highlighter
|
485 |
+
#: ../crayon_settings_wp.class.php:666
|
486 |
+
msgid "Enable plain code toggling"
|
487 |
+
msgstr "Leisti grynojo kodo sukeistį"
|
488 |
+
|
489 |
+
# @ crayon-syntax-highlighter
|
490 |
+
#: ../crayon_settings_wp.class.php:667
|
491 |
+
msgid "Show the plain code by default"
|
492 |
+
msgstr "Rodyti grynąjį kodą (kaip numatyta)"
|
493 |
+
|
494 |
+
# @ crayon-syntax-highlighter
|
495 |
+
#: ../crayon_settings_wp.class.php:668
|
496 |
+
msgid "Enable code copy/paste"
|
497 |
+
msgstr "Leisti kodo kopijavimą/įdėjimą"
|
498 |
+
|
499 |
+
# @ crayon-syntax-highlighter
|
500 |
+
#: ../crayon_settings_wp.class.php:670
|
501 |
+
msgid "Enable opening code in a window"
|
502 |
+
msgstr "Leisti kodo atvėrimą lange"
|
503 |
+
|
504 |
+
# @ crayon-syntax-highlighter
|
505 |
+
#: ../crayon_settings_wp.class.php:671
|
506 |
+
msgid "Always display scrollbars"
|
507 |
+
msgstr "Visada rodyti slankjuostes"
|
508 |
+
|
509 |
+
# @ crayon-syntax-highlighter
|
510 |
+
#: ../crayon_settings_wp.class.php:672
|
511 |
+
msgid "Tab size in spaces"
|
512 |
+
msgstr "Kortelės dydis tarpuose"
|
513 |
+
|
514 |
+
#: ../crayon_settings_wp.class.php:677
|
515 |
+
msgid "Decode HTML entities in code"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: ../crayon_settings_wp.class.php:679
|
519 |
+
msgid "Decode HTML entities in attributes"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
# @ crayon-syntax-highlighter
|
523 |
+
#: ../crayon_settings_wp.class.php:681
|
524 |
+
msgid "Remove whitespace surrounding the shortcode content"
|
525 |
+
msgstr "Pašalinti matomus tarpus aplink trumpojo kodo turinį"
|
526 |
+
|
527 |
+
#: ../crayon_settings_wp.class.php:683
|
528 |
+
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
529 |
+
msgstr "Leisti Mišrios Kalbos Pažymėjimą skirtukais ir gairėmis."
|
530 |
+
|
531 |
+
# @ crayon-syntax-highlighter
|
532 |
+
#: ../crayon_settings_wp.class.php:685
|
533 |
+
msgid "Show Mixed Language Icon (+)"
|
534 |
+
msgstr "Rodyti Mišrios Kalbos Piktogramą (+)"
|
535 |
+
|
536 |
+
# @ crayon-syntax-highlighter
|
537 |
+
#: ../crayon_settings_wp.class.php:690
|
538 |
+
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
539 |
+
msgstr "Užskaityti Mini Gaires, kaip [php][/php] kaip Crayons."
|
540 |
+
|
541 |
+
# @ crayon-syntax-highlighter
|
542 |
+
#: ../crayon_settings_wp.class.php:691
|
543 |
+
#, fuzzy
|
544 |
+
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
545 |
+
msgstr "Užskaityti Mini Gaires, kaip [php][/php] kaip Crayons."
|
546 |
+
|
547 |
+
#: ../crayon_settings_wp.class.php:692
|
548 |
+
msgid "Wrap Inline Tags"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: ../crayon_settings_wp.class.php:693
|
552 |
+
msgid "Capture `backquotes` as <code>"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
# @ crayon-syntax-highlighter
|
556 |
+
#: ../crayon_settings_wp.class.php:694
|
557 |
+
msgid "Capture <pre> tags as Crayons"
|
558 |
+
msgstr "Užskaityti <pre> gaires kaip Crayons"
|
559 |
+
|
560 |
+
# @ crayon-syntax-highlighter
|
561 |
+
#: ../crayon_settings_wp.class.php:695
|
562 |
+
msgid "Enable [plain][/plain] tag."
|
563 |
+
msgstr "Leisti [plain][/plain] gairių kūrimą."
|
564 |
+
|
565 |
+
# @ crayon-syntax-highlighter
|
566 |
+
#: ../crayon_settings_wp.class.php:700
|
567 |
+
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
568 |
+
msgstr "Įkeliant vietines rinkmenas, kuomet Universaliąjai nuorodai yra priskirtas santykinis kelias, naudokite absoliutųjį kelią"
|
569 |
+
|
570 |
+
# @ crayon-syntax-highlighter
|
571 |
+
#: ../crayon_settings_wp.class.php:703
|
572 |
+
msgid "Followed by your relative URL."
|
573 |
+
msgstr "Laikomasi Jūsų santykinės Universaliosios nuorodos"
|
574 |
+
|
575 |
+
#: ../crayon_settings_wp.class.php:707
|
576 |
+
#, php-format
|
577 |
+
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
# @ crayon-syntax-highlighter
|
581 |
+
#: ../crayon_settings_wp.class.php:713
|
582 |
+
msgid "Clear the cache used to store remote code requests"
|
583 |
+
msgstr "Išvalyti spartinančiąją atmintinę, naudotą kaupti nuotolines kodo užklausas"
|
584 |
+
|
585 |
+
# @ crayon-syntax-highlighter
|
586 |
+
#: ../crayon_settings_wp.class.php:715
|
587 |
+
msgid "Clear Now"
|
588 |
+
msgstr "Išvalyti Dabar"
|
589 |
+
|
590 |
+
# @ crayon-syntax-highlighter
|
591 |
+
#: ../crayon_settings_wp.class.php:716
|
592 |
+
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
593 |
+
msgstr "Bandykite įkelti Crayon's CSS ir JavaScript tik tada, kai to tikrai reikia"
|
594 |
+
|
595 |
+
#: ../crayon_settings_wp.class.php:717
|
596 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
597 |
+
msgstr "Panaikinti puslapio apipavidalinimų rikiavimą, kuris gali sukelti ciklinius pasikartojimus."
|
598 |
+
|
599 |
+
#: ../crayon_settings_wp.class.php:718
|
600 |
+
msgid "Allow Crayons inside comments"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: ../crayon_settings_wp.class.php:719
|
604 |
+
msgid "Remove Crayons from excerpts"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: ../crayon_settings_wp.class.php:720
|
608 |
+
msgid "Load Crayons only from the main Wordpress query"
|
609 |
+
msgstr "Įkelti Crayons tik iš pagrindinės WordPress užklausos"
|
610 |
+
|
611 |
+
# @ crayon-syntax-highlighter
|
612 |
+
#: ../crayon_settings_wp.class.php:721
|
613 |
+
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
614 |
+
msgstr "Išjungti pelės gestus įrenginiams su liečiamuoju ekranu (pavyzdžiui MouseOver)"
|
615 |
+
|
616 |
+
# @ crayon-syntax-highlighter
|
617 |
+
#: ../crayon_settings_wp.class.php:722
|
618 |
+
msgid "Disable animations"
|
619 |
+
msgstr "Išjungti animaciją"
|
620 |
+
|
621 |
+
# @ crayon-syntax-highlighter
|
622 |
+
#: ../crayon_settings_wp.class.php:723
|
623 |
+
msgid "Disable runtime stats"
|
624 |
+
msgstr "Išjungti vykdymo laiko statistiką"
|
625 |
+
|
626 |
+
# @ crayon-syntax-highlighter
|
627 |
+
#: ../crayon_settings_wp.class.php:729
|
628 |
+
msgid "Log errors for individual Crayons"
|
629 |
+
msgstr "Fiksuoti klaidas individualiems Crayons"
|
630 |
+
|
631 |
+
# @ crayon-syntax-highlighter
|
632 |
+
#: ../crayon_settings_wp.class.php:730
|
633 |
+
msgid "Log system-wide errors"
|
634 |
+
msgstr "Fiksuoti sistemines klaidas"
|
635 |
+
|
636 |
+
# @ crayon-syntax-highlighter
|
637 |
+
#: ../crayon_settings_wp.class.php:731
|
638 |
+
msgid "Display custom message for errors"
|
639 |
+
msgstr "Rodyti individualizuotą pranešimą klaidų atveju"
|
640 |
+
|
641 |
+
# @ crayon-syntax-highlighter
|
642 |
+
#: ../crayon_settings_wp.class.php:743
|
643 |
+
msgid "Show Log"
|
644 |
+
msgstr "Rodyti Žurnalą"
|
645 |
+
|
646 |
+
# @ crayon-syntax-highlighter
|
647 |
+
#: ../crayon_settings_wp.class.php:743
|
648 |
+
msgid "Hide Log"
|
649 |
+
msgstr "Paslėpti Žurnalą"
|
650 |
+
|
651 |
+
# @ crayon-syntax-highlighter
|
652 |
+
#: ../crayon_settings_wp.class.php:745
|
653 |
+
msgid "Clear Log"
|
654 |
+
msgstr "Išvalyti Žurnalą"
|
655 |
+
|
656 |
+
# @ crayon-syntax-highlighter
|
657 |
+
#: ../crayon_settings_wp.class.php:746
|
658 |
+
msgid "Email Admin"
|
659 |
+
msgstr "Susisiekti su svetainės Administratoriumi elektroniniu paštu"
|
660 |
+
|
661 |
+
# @ crayon-syntax-highlighter
|
662 |
+
#: ../crayon_settings_wp.class.php:748
|
663 |
+
msgid "Email Developer"
|
664 |
+
msgstr "Susisiekti su svetainės Plėtotoju elektroniniu paštu"
|
665 |
+
|
666 |
+
# @ crayon-syntax-highlighter
|
667 |
+
#: ../crayon_settings_wp.class.php:750
|
668 |
+
msgid "The log is currently empty."
|
669 |
+
msgstr "Žurnalas šiuo metu tuščias"
|
670 |
+
|
671 |
+
# @ crayon-syntax-highlighter
|
672 |
+
#: ../crayon_settings_wp.class.php:752
|
673 |
+
msgid "The log file exists and is writable."
|
674 |
+
msgstr "Žurnalo rinkmena egzistuoja, įrašas į ją įmanomas."
|
675 |
+
|
676 |
+
# @ crayon-syntax-highlighter
|
677 |
+
#: ../crayon_settings_wp.class.php:752
|
678 |
+
msgid "The log file exists and is not writable."
|
679 |
+
msgstr "Žurnalo rinkmena egzistuoja, įrašas į ją neįmanomas."
|
680 |
+
|
681 |
+
# @ crayon-syntax-highlighter
|
682 |
+
#: ../crayon_settings_wp.class.php:754
|
683 |
+
msgid "The log file does not exist and is not writable."
|
684 |
+
msgstr "Žurnalo rinkmena neegzistuoja, įrašas į ją neįmanomas."
|
685 |
+
|
686 |
+
# @ crayon-syntax-highlighter
|
687 |
+
#: ../crayon_settings_wp.class.php:764
|
688 |
+
msgid "Version"
|
689 |
+
msgstr "Versija"
|
690 |
+
|
691 |
+
# @ crayon-syntax-highlighter
|
692 |
+
#: ../crayon_settings_wp.class.php:766
|
693 |
+
msgid "Developer"
|
694 |
+
msgstr "Plėtotojas"
|
695 |
+
|
696 |
+
# @ crayon-syntax-highlighter
|
697 |
+
#: ../crayon_settings_wp.class.php:767
|
698 |
+
msgid "Translators"
|
699 |
+
msgstr "Vertėjai"
|
700 |
+
|
701 |
+
#: ../crayon_settings_wp.class.php:790
|
702 |
+
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
703 |
+
msgstr "Nesuskaičiuojamo darbo valandų kiekio ir labai sunkaus darbo vaisius. Tai tebevykstantis projektas, išlaikykite mano motyvaciją!"
|
704 |
+
|
705 |
+
# @ crayon-syntax-highlighter
|
706 |
+
#: ../crayon_settings_wp.class.php:806
|
707 |
+
msgid "Donate"
|
708 |
+
msgstr "Paaukokite"
|
709 |
+
|
710 |
+
# @ crayon-syntax-highlighter
|
711 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:57
|
712 |
+
#, fuzzy
|
713 |
+
msgid "Add Crayon Code"
|
714 |
+
msgstr "Crayon Pagalba"
|
715 |
+
|
716 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:58
|
717 |
+
msgid "Edit Crayon Code"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:59
|
721 |
+
msgid "Add"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:60
|
725 |
+
msgid "Save"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
# @ crayon-syntax-highlighter
|
729 |
+
#: ../util/tag-editor/crayon_te_content.php:65
|
730 |
+
#, fuzzy
|
731 |
+
msgid "Title"
|
732 |
+
msgstr "Rinkmenos"
|
733 |
+
|
734 |
+
#: ../util/tag-editor/crayon_te_content.php:67
|
735 |
+
msgid "A short description"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: ../util/tag-editor/crayon_te_content.php:70
|
739 |
+
msgid "Inline"
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
# @ crayon-syntax-highlighter
|
743 |
+
#: ../util/tag-editor/crayon_te_content.php:75
|
744 |
+
#, fuzzy
|
745 |
+
msgid "Language"
|
746 |
+
msgstr "Kalbos"
|
747 |
+
|
748 |
+
#: ../util/tag-editor/crayon_te_content.php:78
|
749 |
+
msgid "Marked Lines"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: ../util/tag-editor/crayon_te_content.php:79
|
753 |
+
msgid "(e.g. 1,2,3-5)"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
# @ crayon-syntax-highlighter
|
757 |
+
#: ../util/tag-editor/crayon_te_content.php:82
|
758 |
+
#, fuzzy
|
759 |
+
msgid "Disable Highlighting"
|
760 |
+
msgstr "Išjungti animaciją"
|
761 |
+
|
762 |
+
# @ crayon-syntax-highlighter
|
763 |
+
#: ../util/tag-editor/crayon_te_content.php:87
|
764 |
+
#, fuzzy
|
765 |
+
msgid "Clear"
|
766 |
+
msgstr "Išvalyti Dabar"
|
767 |
+
|
768 |
+
#: ../util/tag-editor/crayon_te_content.php:88
|
769 |
+
msgid "Paste your code here, or type it in manually."
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: ../util/tag-editor/crayon_te_content.php:91
|
773 |
+
msgid "URL"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: ../util/tag-editor/crayon_te_content.php:93
|
777 |
+
msgid "Relative local path or absolute URL"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: ../util/tag-editor/crayon_te_content.php:96
|
781 |
+
msgid "If the URL fails to load, the code above will be shown instead. If no code exists, an error is shown."
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: ../util/tag-editor/crayon_te_content.php:98
|
785 |
+
#, php-format
|
786 |
+
msgid "If a relative local path is given it will be appended to %s - which is defined in %sCrayon > Settings > Files%s."
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: ../util/tag-editor/crayon_te_content.php:117
|
790 |
+
msgid "Change the following settings to override their global values."
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: ../util/tag-editor/crayon_te_content.php:119
|
794 |
+
msgid "Only changes (shown yellow) are applied."
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: ../util/tag-editor/crayon_te_content.php:121
|
798 |
+
#, php-format
|
799 |
+
msgid "Future changes to the global settings under %sCrayon > Settings%s won't affect overridden settings."
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
# @ crayon-syntax-highlighter
|
803 |
+
#: ../util/theme-editor/editor.php:16
|
804 |
+
msgid "Back To Settings"
|
805 |
+
msgstr "Grįžti Į Nuostatas"
|
806 |
+
|
trans/crayon-syntax-highlighter-ru_RU.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Crayon Syntax Highlighter\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: minimus <minimus@blogcoding.ru>\n"
|
8 |
"Language-Team: minimus <minimus@simplelib.com>\n"
|
@@ -19,30 +19,30 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPath-1: ..\n"
|
21 |
|
22 |
-
#: ../crayon_formatter.class.php:
|
23 |
msgid "Toggle Plain Code"
|
24 |
msgstr "Включить/Отключить подсветку кода"
|
25 |
|
26 |
-
#: ../crayon_formatter.class.php:
|
27 |
#, php-format
|
28 |
msgid "Press %s to Copy, %s to Paste"
|
29 |
msgstr "Нажмите %s для копирования, %s для вставки"
|
30 |
|
31 |
-
#: ../crayon_formatter.class.php:
|
32 |
msgid "Copy Plain Code"
|
33 |
msgstr "Копировать как текст"
|
34 |
|
35 |
# @ crayon-syntax-highlighter
|
36 |
-
#: ../crayon_formatter.class.php:
|
37 |
msgid "Open Code In New Window"
|
38 |
msgstr "Показать код в новом окне"
|
39 |
|
40 |
-
#: ../crayon_formatter.class.php:
|
41 |
msgid "Toggle Line Numbers"
|
42 |
msgstr "Включить/Отключить нумерацию строк"
|
43 |
|
44 |
# @ crayon-syntax-highlighter
|
45 |
-
#: ../crayon_formatter.class.php:
|
46 |
msgid "Contains Mixed Languages"
|
47 |
msgstr "Содержит коды на разных языках"
|
48 |
|
@@ -92,9 +92,9 @@ msgstr "Фиксировано"
|
|
92 |
# @ crayon-syntax-highlighter
|
93 |
#: ../crayon_settings.class.php:152
|
94 |
#: ../crayon_settings.class.php:156
|
95 |
-
#: ../crayon_settings_wp.class.php:
|
96 |
-
#: ../crayon_settings_wp.class.php:
|
97 |
-
#: ../crayon_settings_wp.class.php:
|
98 |
msgid "Pixels"
|
99 |
msgstr "Пикселей"
|
100 |
|
@@ -163,14 +163,14 @@ msgid "Disable Mouse Events"
|
|
163 |
msgstr "Запретить отслеживание событий мыши"
|
164 |
|
165 |
# @ crayon-syntax-highlighter
|
166 |
-
#: ../crayon_settings.class.php:
|
167 |
msgid "An error has occurred. Please try again later."
|
168 |
msgstr "Произошла ошибка. Попробуйте ещё раз позднее."
|
169 |
|
170 |
# @ crayon-syntax-highlighter
|
171 |
#: ../crayon_settings_wp.class.php:44
|
172 |
#: ../crayon_settings_wp.class.php:118
|
173 |
-
#: ../crayon_settings_wp.class.php:
|
174 |
msgid "Settings"
|
175 |
msgstr "Настройки"
|
176 |
|
@@ -190,185 +190,185 @@ msgid "Reset Settings"
|
|
190 |
msgstr "Настройки по умолчанию"
|
191 |
|
192 |
# @ crayon-syntax-highlighter
|
193 |
-
#: ../crayon_settings_wp.class.php:
|
194 |
msgid "General"
|
195 |
msgstr "Основные"
|
196 |
|
197 |
-
#: ../crayon_settings_wp.class.php:
|
198 |
msgid "Theme"
|
199 |
msgstr "Тема"
|
200 |
|
201 |
-
#: ../crayon_settings_wp.class.php:
|
202 |
msgid "Font"
|
203 |
msgstr "Шрифт"
|
204 |
|
205 |
-
#: ../crayon_settings_wp.class.php:
|
206 |
msgid "Metrics"
|
207 |
msgstr "Метрики"
|
208 |
|
209 |
-
#: ../crayon_settings_wp.class.php:
|
210 |
msgid "Toolbar"
|
211 |
msgstr "Панель инструментов"
|
212 |
|
213 |
-
#: ../crayon_settings_wp.class.php:
|
214 |
msgid "Lines"
|
215 |
msgstr "Строки"
|
216 |
|
217 |
-
#: ../crayon_settings_wp.class.php:
|
218 |
msgid "Code"
|
219 |
msgstr "Код"
|
220 |
|
221 |
-
#: ../crayon_settings_wp.class.php:
|
222 |
msgid "Tags"
|
223 |
msgstr "Теги"
|
224 |
|
225 |
# @ crayon-syntax-highlighter
|
226 |
-
#: ../crayon_settings_wp.class.php:
|
227 |
msgid "Languages"
|
228 |
msgstr "Языки"
|
229 |
|
230 |
-
#: ../crayon_settings_wp.class.php:
|
231 |
msgid "Files"
|
232 |
msgstr "Файлы"
|
233 |
|
234 |
-
#: ../crayon_settings_wp.class.php:
|
235 |
msgid "Tag Editor"
|
236 |
msgstr "Редактор тегов"
|
237 |
|
238 |
-
#: ../crayon_settings_wp.class.php:
|
239 |
msgid "Misc"
|
240 |
msgstr "Разное"
|
241 |
|
242 |
-
#: ../crayon_settings_wp.class.php:
|
243 |
msgid "Debug"
|
244 |
msgstr "Отладка"
|
245 |
|
246 |
-
#: ../crayon_settings_wp.class.php:
|
247 |
msgid "Errors"
|
248 |
msgstr "Ошибки"
|
249 |
|
250 |
-
#: ../crayon_settings_wp.class.php:
|
251 |
msgid "Log"
|
252 |
msgstr "Журнал ошибок"
|
253 |
|
254 |
-
#: ../crayon_settings_wp.class.php:
|
255 |
msgid "About"
|
256 |
msgstr "О плагине"
|
257 |
|
258 |
# @ crayon-syntax-highlighter
|
259 |
-
#: ../crayon_settings_wp.class.php:
|
260 |
msgid "Crayon Help"
|
261 |
msgstr "Справка Crayon"
|
262 |
|
263 |
# @ crayon-syntax-highlighter
|
264 |
-
#: ../crayon_settings_wp.class.php:
|
265 |
msgid "Height"
|
266 |
msgstr "Высота"
|
267 |
|
268 |
# @ crayon-syntax-highlighter
|
269 |
-
#: ../crayon_settings_wp.class.php:
|
270 |
msgid "Width"
|
271 |
msgstr "Ширина"
|
272 |
|
273 |
# @ crayon-syntax-highlighter
|
274 |
-
#: ../crayon_settings_wp.class.php:
|
275 |
msgid "Top Margin"
|
276 |
msgstr "Верхний отступ"
|
277 |
|
278 |
# @ crayon-syntax-highlighter
|
279 |
-
#: ../crayon_settings_wp.class.php:
|
280 |
msgid "Bottom Margin"
|
281 |
msgstr "Нижний отступ"
|
282 |
|
283 |
# @ crayon-syntax-highlighter
|
284 |
-
#: ../crayon_settings_wp.class.php:
|
285 |
-
#: ../crayon_settings_wp.class.php:
|
286 |
msgid "Left Margin"
|
287 |
msgstr "Левый отступ"
|
288 |
|
289 |
# @ crayon-syntax-highlighter
|
290 |
-
#: ../crayon_settings_wp.class.php:
|
291 |
-
#: ../crayon_settings_wp.class.php:
|
292 |
msgid "Right Margin"
|
293 |
msgstr "Правый отступ"
|
294 |
|
295 |
# @ crayon-syntax-highlighter
|
296 |
-
#: ../crayon_settings_wp.class.php:
|
297 |
msgid "Horizontal Alignment"
|
298 |
msgstr "Выравнивание по горизонтали"
|
299 |
|
300 |
# @ crayon-syntax-highlighter
|
301 |
-
#: ../crayon_settings_wp.class.php:
|
302 |
msgid "Allow floating elements to surround Crayon"
|
303 |
msgstr "Разрешить плавающий режим"
|
304 |
|
305 |
# @ crayon-syntax-highlighter
|
306 |
-
#: ../crayon_settings_wp.class.php:
|
307 |
msgid "Inline Margin"
|
308 |
msgstr "Внутренний отступ"
|
309 |
|
310 |
# @ crayon-syntax-highlighter
|
311 |
-
#: ../crayon_settings_wp.class.php:
|
312 |
msgid "Display the Toolbar"
|
313 |
msgstr "Показывать панель инструментов"
|
314 |
|
315 |
# @ crayon-syntax-highlighter
|
316 |
-
#: ../crayon_settings_wp.class.php:
|
317 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
318 |
msgstr "Использовать, если возможно, наложение панели инструментов на панель кодов без смещения кодов вниз"
|
319 |
|
320 |
# @ crayon-syntax-highlighter
|
321 |
-
#: ../crayon_settings_wp.class.php:
|
322 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
323 |
msgstr "Показывать панель инструментов по клику, если она скрыта"
|
324 |
|
325 |
# @ crayon-syntax-highlighter
|
326 |
-
#: ../crayon_settings_wp.class.php:
|
327 |
msgid "Delay hiding the toolbar on MouseOut"
|
328 |
msgstr "Задержка исчезания панели инструментов при потере фокуса мыши"
|
329 |
|
330 |
# @ crayon-syntax-highlighter
|
331 |
-
#: ../crayon_settings_wp.class.php:
|
332 |
msgid "Display the title when provided"
|
333 |
msgstr "Показывать заголовок, если он задан"
|
334 |
|
335 |
# @ crayon-syntax-highlighter
|
336 |
-
#: ../crayon_settings_wp.class.php:
|
337 |
msgid "Display the language"
|
338 |
msgstr "Показывать язык кода"
|
339 |
|
340 |
# @ crayon-syntax-highlighter
|
341 |
-
#: ../crayon_settings_wp.class.php:
|
342 |
msgid "Display striped code lines"
|
343 |
msgstr "Использовать чередование цвета строк кода"
|
344 |
|
345 |
# @ crayon-syntax-highlighter
|
346 |
-
#: ../crayon_settings_wp.class.php:
|
347 |
msgid "Enable line marking for important lines"
|
348 |
msgstr "Разрешить маркировку важных строк кода"
|
349 |
|
350 |
# @ crayon-syntax-highlighter
|
351 |
-
#: ../crayon_settings_wp.class.php:
|
352 |
msgid "Display line numbers by default"
|
353 |
msgstr "Показывать нумерацию строк по умолчанию"
|
354 |
|
355 |
# @ crayon-syntax-highlighter
|
356 |
-
#: ../crayon_settings_wp.class.php:
|
357 |
msgid "Enable line number toggling"
|
358 |
msgstr "Разрешить переключение нумерации строк"
|
359 |
|
360 |
# @ crayon-syntax-highlighter
|
361 |
-
#: ../crayon_settings_wp.class.php:
|
362 |
msgid "Start line numbers from"
|
363 |
msgstr "Начинать нумерацию строк с"
|
364 |
|
365 |
# @ crayon-syntax-highlighter
|
366 |
-
#: ../crayon_settings_wp.class.php:
|
367 |
msgid "When no language is provided, use the fallback"
|
368 |
msgstr "Если язык не поддерживается, использовать"
|
369 |
|
370 |
# @ crayon-syntax-highlighter
|
371 |
-
#: ../crayon_settings_wp.class.php:
|
372 |
#, php-format
|
373 |
msgid "%d language has been detected."
|
374 |
msgid_plural "%d languages have been detected."
|
@@ -377,304 +377,308 @@ msgstr[1] "Обнаружено %d языка."
|
|
377 |
msgstr[2] "Обнаружено %d языков."
|
378 |
|
379 |
# @ crayon-syntax-highlighter
|
380 |
-
#: ../crayon_settings_wp.class.php:
|
381 |
msgid "Parsing was successful"
|
382 |
msgstr "Разбор кода произведён успешно"
|
383 |
|
384 |
# @ crayon-syntax-highlighter
|
385 |
-
#: ../crayon_settings_wp.class.php:
|
386 |
msgid "Parsing was unsuccessful"
|
387 |
msgstr "Разбор кода закончился неудачей"
|
388 |
|
389 |
# @ crayon-syntax-highlighter
|
390 |
-
#: ../crayon_settings_wp.class.php:
|
391 |
#, php-format
|
392 |
msgid "The selected language with id %s could not be loaded"
|
393 |
msgstr "Выбранный язык (ID %s) не загружен."
|
394 |
|
395 |
# @ crayon-syntax-highlighter
|
396 |
-
#: ../crayon_settings_wp.class.php:
|
397 |
msgid "Show Languages"
|
398 |
msgstr "Показать языки"
|
399 |
|
400 |
-
#: ../crayon_settings_wp.class.php:
|
401 |
msgid "Loading..."
|
402 |
msgstr "Загрузка ..."
|
403 |
|
404 |
-
#: ../crayon_settings_wp.class.php:
|
405 |
-
#: ../crayon_settings_wp.class.php:
|
406 |
msgid "Theme Editor"
|
407 |
msgstr "Редактор тем оформления"
|
408 |
|
409 |
# @ crayon-syntax-highlighter
|
410 |
-
#: ../crayon_settings_wp.class.php:
|
411 |
#, php-format
|
412 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
413 |
msgstr "Измените %1$sязык подсветки%2$s, чтобы изменить пример кода. Строки 5-7 выделены."
|
414 |
|
415 |
# @ crayon-syntax-highlighter
|
416 |
-
#: ../crayon_settings_wp.class.php:
|
417 |
msgid "Enable Live Preview"
|
418 |
msgstr "Разрешить показ примера"
|
419 |
|
420 |
-
#: ../crayon_settings_wp.class.php:
|
421 |
msgid "Enqueue themes in the header (more efficient)."
|
422 |
msgstr "Загружать темы в заголовке страницы (более эффективно)."
|
423 |
|
424 |
-
#: ../crayon_settings_wp.class.php:
|
425 |
-
#: ../crayon_settings_wp.class.php:
|
426 |
-
#: ../crayon_settings_wp.class.php:
|
427 |
-
#: ../crayon_settings_wp.class.php:689
|
428 |
#: ../crayon_settings_wp.class.php:690
|
429 |
#: ../crayon_settings_wp.class.php:691
|
430 |
#: ../crayon_settings_wp.class.php:692
|
431 |
#: ../crayon_settings_wp.class.php:693
|
432 |
#: ../crayon_settings_wp.class.php:694
|
433 |
-
#: ../crayon_settings_wp.class.php:
|
434 |
-
#: ../crayon_settings_wp.class.php:
|
435 |
#: ../crayon_settings_wp.class.php:716
|
|
|
436 |
msgid "?"
|
437 |
msgstr "?"
|
438 |
|
439 |
# @ crayon-syntax-highlighter
|
440 |
-
#: ../crayon_settings_wp.class.php:
|
441 |
#, php-format
|
442 |
msgid "The selected theme with id %s could not be loaded"
|
443 |
msgstr "Выбранная тема (ID %s) не загружена."
|
444 |
|
445 |
# @ crayon-syntax-highlighter
|
446 |
-
#: ../crayon_settings_wp.class.php:
|
447 |
msgid "Custom Font Size"
|
448 |
msgstr "Пользовательский размер шрифта"
|
449 |
|
450 |
# @ crayon-syntax-highlighter
|
451 |
-
#: ../crayon_settings_wp.class.php:
|
452 |
#, php-format
|
453 |
msgid "The selected font with id %s could not be loaded"
|
454 |
msgstr "Выбранный шрифт (ID %s) не может быть загружен."
|
455 |
|
456 |
-
#: ../crayon_settings_wp.class.php:
|
457 |
msgid "Enqueue fonts in the header (more efficient)."
|
458 |
msgstr "Загружать шрифты в заголовке страницы (более эффективно)."
|
459 |
|
460 |
# @ crayon-syntax-highlighter
|
461 |
-
#: ../crayon_settings_wp.class.php:
|
462 |
msgid "Enable plain code view and display"
|
463 |
msgstr "Разрешить показ кода как обычного текста"
|
464 |
|
465 |
# @ crayon-syntax-highlighter
|
466 |
-
#: ../crayon_settings_wp.class.php:
|
467 |
msgid "Enable plain code toggling"
|
468 |
msgstr "Разрешить переключение показа кода как простого текста"
|
469 |
|
470 |
-
#: ../crayon_settings_wp.class.php:
|
471 |
msgid "Show the plain code by default"
|
472 |
msgstr "Показывать код как простой текст по умолчанию"
|
473 |
|
474 |
# @ crayon-syntax-highlighter
|
475 |
-
#: ../crayon_settings_wp.class.php:
|
476 |
msgid "Enable code copy/paste"
|
477 |
msgstr "Разрешить копирование/вставку кода"
|
478 |
|
479 |
# @ crayon-syntax-highlighter
|
480 |
-
#: ../crayon_settings_wp.class.php:
|
481 |
msgid "Enable opening code in a window"
|
482 |
msgstr "Разрешить показ кода в отдельном окне"
|
483 |
|
484 |
-
#: ../crayon_settings_wp.class.php:
|
485 |
msgid "Always display scrollbars"
|
486 |
msgstr "Всегда показывать полосы прокрутки"
|
487 |
|
488 |
# @ crayon-syntax-highlighter
|
489 |
-
#: ../crayon_settings_wp.class.php:
|
490 |
msgid "Tab size in spaces"
|
491 |
msgstr "Размер табуляций в пробелах"
|
492 |
|
493 |
-
#: ../crayon_settings_wp.class.php:
|
494 |
msgid "Decode HTML entities in code"
|
495 |
msgstr "Декодировать объекты HTML в коде"
|
496 |
|
497 |
-
#: ../crayon_settings_wp.class.php:
|
498 |
msgid "Decode HTML entities in attributes"
|
499 |
msgstr "Декодировать объекты HTML в атрибутах"
|
500 |
|
501 |
# @ crayon-syntax-highlighter
|
502 |
-
#: ../crayon_settings_wp.class.php:
|
503 |
msgid "Remove whitespace surrounding the shortcode content"
|
504 |
msgstr "Удалять пробелы окружающие контент короткого кода"
|
505 |
|
506 |
# @ crayon-syntax-highlighter
|
507 |
-
#: ../crayon_settings_wp.class.php:
|
508 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
509 |
msgstr "Разрешить подсветку смешанных языков."
|
510 |
|
511 |
# @ crayon-syntax-highlighter
|
512 |
-
#: ../crayon_settings_wp.class.php:
|
513 |
msgid "Show Mixed Language Icon (+)"
|
514 |
msgstr "Показывать иконку смешанных языков (+)"
|
515 |
|
516 |
-
#: ../crayon_settings_wp.class.php:
|
517 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
518 |
msgstr "Обрабатывать мини-теги, например [php][/php], как теги Crayon."
|
519 |
|
520 |
-
#: ../crayon_settings_wp.class.php:
|
521 |
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
522 |
msgstr "Обрабатывать строковые теги, такие как {php}{/php}, внутри предложения."
|
523 |
|
524 |
-
#: ../crayon_settings_wp.class.php:
|
525 |
msgid "Wrap Inline Tags"
|
526 |
msgstr "Обрабатывать внутристроковые теги"
|
527 |
|
528 |
-
#: ../crayon_settings_wp.class.php:
|
529 |
msgid "Capture `backquotes` as <code>"
|
530 |
msgstr "Обрабатывать символы `тильда` как <code>"
|
531 |
|
532 |
# @ crayon-syntax-highlighter
|
533 |
-
#: ../crayon_settings_wp.class.php:
|
534 |
msgid "Capture <pre> tags as Crayons"
|
535 |
msgstr "Обрабатывать тег <pre> как код Crayon"
|
536 |
|
537 |
-
#: ../crayon_settings_wp.class.php:
|
538 |
msgid "Enable [plain][/plain] tag."
|
539 |
msgstr "Разрешить теги [plain][/plain]."
|
540 |
|
541 |
# @ crayon-syntax-highlighter
|
542 |
-
#: ../crayon_settings_wp.class.php:
|
543 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
544 |
msgstr "Если задан относительный путь для URL, при загрузке локальных файлов использовать абсолютный путь"
|
545 |
|
546 |
# @ crayon-syntax-highlighter
|
547 |
-
#: ../crayon_settings_wp.class.php:
|
548 |
msgid "Followed by your relative URL."
|
549 |
msgstr "перед вашим относительным URL."
|
550 |
|
551 |
-
#: ../crayon_settings_wp.class.php:
|
552 |
#, php-format
|
553 |
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
554 |
msgstr "Использовать %s для разделения имён параметров в значениях атрибутов класса <pre>"
|
555 |
|
556 |
# @ crayon-syntax-highlighter
|
557 |
-
#: ../crayon_settings_wp.class.php:
|
558 |
msgid "Clear the cache used to store remote code requests"
|
559 |
msgstr "Очищать кэш используемый для хранения кодов из внешних файлов"
|
560 |
|
561 |
# @ crayon-syntax-highlighter
|
562 |
-
#: ../crayon_settings_wp.class.php:
|
563 |
msgid "Clear Now"
|
564 |
msgstr "Очистить сейчас"
|
565 |
|
566 |
# @ crayon-syntax-highlighter
|
567 |
-
#: ../crayon_settings_wp.class.php:
|
568 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
569 |
msgstr "Пытаться загружать таблицы стилей (CSS) и скрипты (JavaScript) от плагина только тогда, когда это нужно"
|
570 |
|
571 |
-
#: ../crayon_settings_wp.class.php:
|
572 |
msgid "Disable enqueuing for page templates that may contain The Loop."
|
573 |
msgstr "Отключить обработку кодов для шаблонов страниц, которые могут содержать Loop."
|
574 |
|
575 |
-
#: ../crayon_settings_wp.class.php:
|
576 |
msgid "Allow Crayons inside comments"
|
577 |
msgstr "Разрешить теги Crayon в комментариях"
|
578 |
|
579 |
-
#: ../crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
580 |
msgid "Load Crayons only from the main Wordpress query"
|
581 |
msgstr "Загружать Crayon только в основных запросах Wordpress"
|
582 |
|
583 |
# @ crayon-syntax-highlighter
|
584 |
-
#: ../crayon_settings_wp.class.php:
|
585 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
586 |
msgstr "Отключить распознавание жестов мышью для сенсорных экранов (например Наведение Мыши)"
|
587 |
|
588 |
# @ crayon-syntax-highlighter
|
589 |
-
#: ../crayon_settings_wp.class.php:
|
590 |
msgid "Disable animations"
|
591 |
msgstr "Запретить анимацию"
|
592 |
|
593 |
# @ crayon-syntax-highlighter
|
594 |
-
#: ../crayon_settings_wp.class.php:
|
595 |
msgid "Disable runtime stats"
|
596 |
msgstr "Запретить статистику выполнения"
|
597 |
|
598 |
# @ crayon-syntax-highlighter
|
599 |
-
#: ../crayon_settings_wp.class.php:
|
600 |
msgid "Log errors for individual Crayons"
|
601 |
msgstr "Журнал ошибок для каждого кода Crayon"
|
602 |
|
603 |
# @ crayon-syntax-highlighter
|
604 |
-
#: ../crayon_settings_wp.class.php:
|
605 |
msgid "Log system-wide errors"
|
606 |
msgstr "Журнал ошибок для общесистемных ошибок"
|
607 |
|
608 |
# @ crayon-syntax-highlighter
|
609 |
-
#: ../crayon_settings_wp.class.php:
|
610 |
msgid "Display custom message for errors"
|
611 |
msgstr "Показывать свое сообщение об ошибках"
|
612 |
|
613 |
# @ crayon-syntax-highlighter
|
614 |
-
#: ../crayon_settings_wp.class.php:
|
615 |
msgid "Show Log"
|
616 |
msgstr "Показать журнал ошибок"
|
617 |
|
618 |
-
#: ../crayon_settings_wp.class.php:
|
619 |
msgid "Hide Log"
|
620 |
msgstr "Скрыть журнал"
|
621 |
|
622 |
# @ crayon-syntax-highlighter
|
623 |
-
#: ../crayon_settings_wp.class.php:
|
624 |
msgid "Clear Log"
|
625 |
msgstr "Очистить журнал ошибок"
|
626 |
|
627 |
# @ crayon-syntax-highlighter
|
628 |
-
#: ../crayon_settings_wp.class.php:
|
629 |
msgid "Email Admin"
|
630 |
msgstr "Сообщить администратору (e-mail)"
|
631 |
|
632 |
# @ crayon-syntax-highlighter
|
633 |
-
#: ../crayon_settings_wp.class.php:
|
634 |
msgid "Email Developer"
|
635 |
msgstr "Сообщить разработчику (e-mail)"
|
636 |
|
637 |
# @ crayon-syntax-highlighter
|
638 |
-
#: ../crayon_settings_wp.class.php:
|
639 |
msgid "The log is currently empty."
|
640 |
msgstr "Журнал ошибок пуст."
|
641 |
|
642 |
# @ crayon-syntax-highlighter
|
643 |
-
#: ../crayon_settings_wp.class.php:
|
644 |
msgid "The log file exists and is writable."
|
645 |
msgstr "Файл журнала ошибок существует и доступен для записи."
|
646 |
|
647 |
# @ crayon-syntax-highlighter
|
648 |
-
#: ../crayon_settings_wp.class.php:
|
649 |
msgid "The log file exists and is not writable."
|
650 |
msgstr "Файл журнала ошибок существует, но не доступен для записи."
|
651 |
|
652 |
# @ crayon-syntax-highlighter
|
653 |
-
#: ../crayon_settings_wp.class.php:
|
654 |
msgid "The log file does not exist and is not writable."
|
655 |
msgstr "Файл журнала ошибок не существует и не доступен для записи."
|
656 |
|
657 |
# @ crayon-syntax-highlighter
|
658 |
-
#: ../crayon_settings_wp.class.php:
|
659 |
msgid "Version"
|
660 |
msgstr "Версия"
|
661 |
|
662 |
# @ crayon-syntax-highlighter
|
663 |
-
#: ../crayon_settings_wp.class.php:
|
664 |
msgid "Developer"
|
665 |
msgstr "Разработчик"
|
666 |
|
667 |
-
#: ../crayon_settings_wp.class.php:
|
668 |
msgid "Translators"
|
669 |
msgstr "Переводчики"
|
670 |
|
671 |
# @ crayon-syntax-highlighter
|
672 |
-
#: ../crayon_settings_wp.class.php:
|
673 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
674 |
msgstr "Результат бесчисленных часов тяжелой работы за многие месяцы. Это - текущий проект, поддержите мою мотивацию!"
|
675 |
|
676 |
# @ crayon-syntax-highlighter
|
677 |
-
#: ../crayon_settings_wp.class.php:
|
678 |
msgid "Donate"
|
679 |
msgstr "Поддержать разработчика (Donate)"
|
680 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Crayon Syntax Highlighter\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-05 19:39+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: minimus <minimus@blogcoding.ru>\n"
|
8 |
"Language-Team: minimus <minimus@simplelib.com>\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPath-1: ..\n"
|
21 |
|
22 |
+
#: ../crayon_formatter.class.php:266
|
23 |
msgid "Toggle Plain Code"
|
24 |
msgstr "Включить/Отключить подсветку кода"
|
25 |
|
26 |
+
#: ../crayon_formatter.class.php:268
|
27 |
#, php-format
|
28 |
msgid "Press %s to Copy, %s to Paste"
|
29 |
msgstr "Нажмите %s для копирования, %s для вставки"
|
30 |
|
31 |
+
#: ../crayon_formatter.class.php:268
|
32 |
msgid "Copy Plain Code"
|
33 |
msgstr "Копировать как текст"
|
34 |
|
35 |
# @ crayon-syntax-highlighter
|
36 |
+
#: ../crayon_formatter.class.php:270
|
37 |
msgid "Open Code In New Window"
|
38 |
msgstr "Показать код в новом окне"
|
39 |
|
40 |
+
#: ../crayon_formatter.class.php:273
|
41 |
msgid "Toggle Line Numbers"
|
42 |
msgstr "Включить/Отключить нумерацию строк"
|
43 |
|
44 |
# @ crayon-syntax-highlighter
|
45 |
+
#: ../crayon_formatter.class.php:279
|
46 |
msgid "Contains Mixed Languages"
|
47 |
msgstr "Содержит коды на разных языках"
|
48 |
|
92 |
# @ crayon-syntax-highlighter
|
93 |
#: ../crayon_settings.class.php:152
|
94 |
#: ../crayon_settings.class.php:156
|
95 |
+
#: ../crayon_settings_wp.class.php:541
|
96 |
+
#: ../crayon_settings_wp.class.php:550
|
97 |
+
#: ../crayon_settings_wp.class.php:649
|
98 |
msgid "Pixels"
|
99 |
msgstr "Пикселей"
|
100 |
|
163 |
msgstr "Запретить отслеживание событий мыши"
|
164 |
|
165 |
# @ crayon-syntax-highlighter
|
166 |
+
#: ../crayon_settings.class.php:196
|
167 |
msgid "An error has occurred. Please try again later."
|
168 |
msgstr "Произошла ошибка. Попробуйте ещё раз позднее."
|
169 |
|
170 |
# @ crayon-syntax-highlighter
|
171 |
#: ../crayon_settings_wp.class.php:44
|
172 |
#: ../crayon_settings_wp.class.php:118
|
173 |
+
#: ../crayon_settings_wp.class.php:802
|
174 |
msgid "Settings"
|
175 |
msgstr "Настройки"
|
176 |
|
190 |
msgstr "Настройки по умолчанию"
|
191 |
|
192 |
# @ crayon-syntax-highlighter
|
193 |
+
#: ../crayon_settings_wp.class.php:301
|
194 |
msgid "General"
|
195 |
msgstr "Основные"
|
196 |
|
197 |
+
#: ../crayon_settings_wp.class.php:302
|
198 |
msgid "Theme"
|
199 |
msgstr "Тема"
|
200 |
|
201 |
+
#: ../crayon_settings_wp.class.php:303
|
202 |
msgid "Font"
|
203 |
msgstr "Шрифт"
|
204 |
|
205 |
+
#: ../crayon_settings_wp.class.php:304
|
206 |
msgid "Metrics"
|
207 |
msgstr "Метрики"
|
208 |
|
209 |
+
#: ../crayon_settings_wp.class.php:305
|
210 |
msgid "Toolbar"
|
211 |
msgstr "Панель инструментов"
|
212 |
|
213 |
+
#: ../crayon_settings_wp.class.php:306
|
214 |
msgid "Lines"
|
215 |
msgstr "Строки"
|
216 |
|
217 |
+
#: ../crayon_settings_wp.class.php:307
|
218 |
msgid "Code"
|
219 |
msgstr "Код"
|
220 |
|
221 |
+
#: ../crayon_settings_wp.class.php:308
|
222 |
msgid "Tags"
|
223 |
msgstr "Теги"
|
224 |
|
225 |
# @ crayon-syntax-highlighter
|
226 |
+
#: ../crayon_settings_wp.class.php:309
|
227 |
msgid "Languages"
|
228 |
msgstr "Языки"
|
229 |
|
230 |
+
#: ../crayon_settings_wp.class.php:310
|
231 |
msgid "Files"
|
232 |
msgstr "Файлы"
|
233 |
|
234 |
+
#: ../crayon_settings_wp.class.php:311
|
235 |
msgid "Tag Editor"
|
236 |
msgstr "Редактор тегов"
|
237 |
|
238 |
+
#: ../crayon_settings_wp.class.php:312
|
239 |
msgid "Misc"
|
240 |
msgstr "Разное"
|
241 |
|
242 |
+
#: ../crayon_settings_wp.class.php:315
|
243 |
msgid "Debug"
|
244 |
msgstr "Отладка"
|
245 |
|
246 |
+
#: ../crayon_settings_wp.class.php:316
|
247 |
msgid "Errors"
|
248 |
msgstr "Ошибки"
|
249 |
|
250 |
+
#: ../crayon_settings_wp.class.php:317
|
251 |
msgid "Log"
|
252 |
msgstr "Журнал ошибок"
|
253 |
|
254 |
+
#: ../crayon_settings_wp.class.php:320
|
255 |
msgid "About"
|
256 |
msgstr "О плагине"
|
257 |
|
258 |
# @ crayon-syntax-highlighter
|
259 |
+
#: ../crayon_settings_wp.class.php:503
|
260 |
msgid "Crayon Help"
|
261 |
msgstr "Справка Crayon"
|
262 |
|
263 |
# @ crayon-syntax-highlighter
|
264 |
+
#: ../crayon_settings_wp.class.php:518
|
265 |
msgid "Height"
|
266 |
msgstr "Высота"
|
267 |
|
268 |
# @ crayon-syntax-highlighter
|
269 |
+
#: ../crayon_settings_wp.class.php:524
|
270 |
msgid "Width"
|
271 |
msgstr "Ширина"
|
272 |
|
273 |
# @ crayon-syntax-highlighter
|
274 |
+
#: ../crayon_settings_wp.class.php:530
|
275 |
msgid "Top Margin"
|
276 |
msgstr "Верхний отступ"
|
277 |
|
278 |
# @ crayon-syntax-highlighter
|
279 |
+
#: ../crayon_settings_wp.class.php:531
|
280 |
msgid "Bottom Margin"
|
281 |
msgstr "Нижний отступ"
|
282 |
|
283 |
# @ crayon-syntax-highlighter
|
284 |
+
#: ../crayon_settings_wp.class.php:532
|
285 |
+
#: ../crayon_settings_wp.class.php:537
|
286 |
msgid "Left Margin"
|
287 |
msgstr "Левый отступ"
|
288 |
|
289 |
# @ crayon-syntax-highlighter
|
290 |
+
#: ../crayon_settings_wp.class.php:533
|
291 |
+
#: ../crayon_settings_wp.class.php:537
|
292 |
msgid "Right Margin"
|
293 |
msgstr "Правый отступ"
|
294 |
|
295 |
# @ crayon-syntax-highlighter
|
296 |
+
#: ../crayon_settings_wp.class.php:543
|
297 |
msgid "Horizontal Alignment"
|
298 |
msgstr "Выравнивание по горизонтали"
|
299 |
|
300 |
# @ crayon-syntax-highlighter
|
301 |
+
#: ../crayon_settings_wp.class.php:546
|
302 |
msgid "Allow floating elements to surround Crayon"
|
303 |
msgstr "Разрешить плавающий режим"
|
304 |
|
305 |
# @ crayon-syntax-highlighter
|
306 |
+
#: ../crayon_settings_wp.class.php:548
|
307 |
msgid "Inline Margin"
|
308 |
msgstr "Внутренний отступ"
|
309 |
|
310 |
# @ crayon-syntax-highlighter
|
311 |
+
#: ../crayon_settings_wp.class.php:556
|
312 |
msgid "Display the Toolbar"
|
313 |
msgstr "Показывать панель инструментов"
|
314 |
|
315 |
# @ crayon-syntax-highlighter
|
316 |
+
#: ../crayon_settings_wp.class.php:559
|
317 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
318 |
msgstr "Использовать, если возможно, наложение панели инструментов на панель кодов без смещения кодов вниз"
|
319 |
|
320 |
# @ crayon-syntax-highlighter
|
321 |
+
#: ../crayon_settings_wp.class.php:560
|
322 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
323 |
msgstr "Показывать панель инструментов по клику, если она скрыта"
|
324 |
|
325 |
# @ crayon-syntax-highlighter
|
326 |
+
#: ../crayon_settings_wp.class.php:561
|
327 |
msgid "Delay hiding the toolbar on MouseOut"
|
328 |
msgstr "Задержка исчезания панели инструментов при потере фокуса мыши"
|
329 |
|
330 |
# @ crayon-syntax-highlighter
|
331 |
+
#: ../crayon_settings_wp.class.php:563
|
332 |
msgid "Display the title when provided"
|
333 |
msgstr "Показывать заголовок, если он задан"
|
334 |
|
335 |
# @ crayon-syntax-highlighter
|
336 |
+
#: ../crayon_settings_wp.class.php:564
|
337 |
msgid "Display the language"
|
338 |
msgstr "Показывать язык кода"
|
339 |
|
340 |
# @ crayon-syntax-highlighter
|
341 |
+
#: ../crayon_settings_wp.class.php:571
|
342 |
msgid "Display striped code lines"
|
343 |
msgstr "Использовать чередование цвета строк кода"
|
344 |
|
345 |
# @ crayon-syntax-highlighter
|
346 |
+
#: ../crayon_settings_wp.class.php:572
|
347 |
msgid "Enable line marking for important lines"
|
348 |
msgstr "Разрешить маркировку важных строк кода"
|
349 |
|
350 |
# @ crayon-syntax-highlighter
|
351 |
+
#: ../crayon_settings_wp.class.php:573
|
352 |
msgid "Display line numbers by default"
|
353 |
msgstr "Показывать нумерацию строк по умолчанию"
|
354 |
|
355 |
# @ crayon-syntax-highlighter
|
356 |
+
#: ../crayon_settings_wp.class.php:574
|
357 |
msgid "Enable line number toggling"
|
358 |
msgstr "Разрешить переключение нумерации строк"
|
359 |
|
360 |
# @ crayon-syntax-highlighter
|
361 |
+
#: ../crayon_settings_wp.class.php:575
|
362 |
msgid "Start line numbers from"
|
363 |
msgstr "Начинать нумерацию строк с"
|
364 |
|
365 |
# @ crayon-syntax-highlighter
|
366 |
+
#: ../crayon_settings_wp.class.php:585
|
367 |
msgid "When no language is provided, use the fallback"
|
368 |
msgstr "Если язык не поддерживается, использовать"
|
369 |
|
370 |
# @ crayon-syntax-highlighter
|
371 |
+
#: ../crayon_settings_wp.class.php:591
|
372 |
#, php-format
|
373 |
msgid "%d language has been detected."
|
374 |
msgid_plural "%d languages have been detected."
|
377 |
msgstr[2] "Обнаружено %d языков."
|
378 |
|
379 |
# @ crayon-syntax-highlighter
|
380 |
+
#: ../crayon_settings_wp.class.php:592
|
381 |
msgid "Parsing was successful"
|
382 |
msgstr "Разбор кода произведён успешно"
|
383 |
|
384 |
# @ crayon-syntax-highlighter
|
385 |
+
#: ../crayon_settings_wp.class.php:592
|
386 |
msgid "Parsing was unsuccessful"
|
387 |
msgstr "Разбор кода закончился неудачей"
|
388 |
|
389 |
# @ crayon-syntax-highlighter
|
390 |
+
#: ../crayon_settings_wp.class.php:598
|
391 |
#, php-format
|
392 |
msgid "The selected language with id %s could not be loaded"
|
393 |
msgstr "Выбранный язык (ID %s) не загружен."
|
394 |
|
395 |
# @ crayon-syntax-highlighter
|
396 |
+
#: ../crayon_settings_wp.class.php:602
|
397 |
msgid "Show Languages"
|
398 |
msgstr "Показать языки"
|
399 |
|
400 |
+
#: ../crayon_settings_wp.class.php:621
|
401 |
msgid "Loading..."
|
402 |
msgstr "Загрузка ..."
|
403 |
|
404 |
+
#: ../crayon_settings_wp.class.php:621
|
405 |
+
#: ../crayon_settings_wp.class.php:804
|
406 |
msgid "Theme Editor"
|
407 |
msgstr "Редактор тем оформления"
|
408 |
|
409 |
# @ crayon-syntax-highlighter
|
410 |
+
#: ../crayon_settings_wp.class.php:626
|
411 |
#, php-format
|
412 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
413 |
msgstr "Измените %1$sязык подсветки%2$s, чтобы изменить пример кода. Строки 5-7 выделены."
|
414 |
|
415 |
# @ crayon-syntax-highlighter
|
416 |
+
#: ../crayon_settings_wp.class.php:630
|
417 |
msgid "Enable Live Preview"
|
418 |
msgstr "Разрешить показ примера"
|
419 |
|
420 |
+
#: ../crayon_settings_wp.class.php:632
|
421 |
msgid "Enqueue themes in the header (more efficient)."
|
422 |
msgstr "Загружать темы в заголовке страницы (более эффективно)."
|
423 |
|
424 |
+
#: ../crayon_settings_wp.class.php:632
|
425 |
+
#: ../crayon_settings_wp.class.php:658
|
426 |
+
#: ../crayon_settings_wp.class.php:683
|
|
|
427 |
#: ../crayon_settings_wp.class.php:690
|
428 |
#: ../crayon_settings_wp.class.php:691
|
429 |
#: ../crayon_settings_wp.class.php:692
|
430 |
#: ../crayon_settings_wp.class.php:693
|
431 |
#: ../crayon_settings_wp.class.php:694
|
432 |
+
#: ../crayon_settings_wp.class.php:695
|
433 |
+
#: ../crayon_settings_wp.class.php:709
|
434 |
#: ../crayon_settings_wp.class.php:716
|
435 |
+
#: ../crayon_settings_wp.class.php:717
|
436 |
msgid "?"
|
437 |
msgstr "?"
|
438 |
|
439 |
# @ crayon-syntax-highlighter
|
440 |
+
#: ../crayon_settings_wp.class.php:635
|
441 |
#, php-format
|
442 |
msgid "The selected theme with id %s could not be loaded"
|
443 |
msgstr "Выбранная тема (ID %s) не загружена."
|
444 |
|
445 |
# @ crayon-syntax-highlighter
|
446 |
+
#: ../crayon_settings_wp.class.php:647
|
447 |
msgid "Custom Font Size"
|
448 |
msgstr "Пользовательский размер шрифта"
|
449 |
|
450 |
# @ crayon-syntax-highlighter
|
451 |
+
#: ../crayon_settings_wp.class.php:652
|
452 |
#, php-format
|
453 |
msgid "The selected font with id %s could not be loaded"
|
454 |
msgstr "Выбранный шрифт (ID %s) не может быть загружен."
|
455 |
|
456 |
+
#: ../crayon_settings_wp.class.php:658
|
457 |
msgid "Enqueue fonts in the header (more efficient)."
|
458 |
msgstr "Загружать шрифты в заголовке страницы (более эффективно)."
|
459 |
|
460 |
# @ crayon-syntax-highlighter
|
461 |
+
#: ../crayon_settings_wp.class.php:663
|
462 |
msgid "Enable plain code view and display"
|
463 |
msgstr "Разрешить показ кода как обычного текста"
|
464 |
|
465 |
# @ crayon-syntax-highlighter
|
466 |
+
#: ../crayon_settings_wp.class.php:666
|
467 |
msgid "Enable plain code toggling"
|
468 |
msgstr "Разрешить переключение показа кода как простого текста"
|
469 |
|
470 |
+
#: ../crayon_settings_wp.class.php:667
|
471 |
msgid "Show the plain code by default"
|
472 |
msgstr "Показывать код как простой текст по умолчанию"
|
473 |
|
474 |
# @ crayon-syntax-highlighter
|
475 |
+
#: ../crayon_settings_wp.class.php:668
|
476 |
msgid "Enable code copy/paste"
|
477 |
msgstr "Разрешить копирование/вставку кода"
|
478 |
|
479 |
# @ crayon-syntax-highlighter
|
480 |
+
#: ../crayon_settings_wp.class.php:670
|
481 |
msgid "Enable opening code in a window"
|
482 |
msgstr "Разрешить показ кода в отдельном окне"
|
483 |
|
484 |
+
#: ../crayon_settings_wp.class.php:671
|
485 |
msgid "Always display scrollbars"
|
486 |
msgstr "Всегда показывать полосы прокрутки"
|
487 |
|
488 |
# @ crayon-syntax-highlighter
|
489 |
+
#: ../crayon_settings_wp.class.php:672
|
490 |
msgid "Tab size in spaces"
|
491 |
msgstr "Размер табуляций в пробелах"
|
492 |
|
493 |
+
#: ../crayon_settings_wp.class.php:677
|
494 |
msgid "Decode HTML entities in code"
|
495 |
msgstr "Декодировать объекты HTML в коде"
|
496 |
|
497 |
+
#: ../crayon_settings_wp.class.php:679
|
498 |
msgid "Decode HTML entities in attributes"
|
499 |
msgstr "Декодировать объекты HTML в атрибутах"
|
500 |
|
501 |
# @ crayon-syntax-highlighter
|
502 |
+
#: ../crayon_settings_wp.class.php:681
|
503 |
msgid "Remove whitespace surrounding the shortcode content"
|
504 |
msgstr "Удалять пробелы окружающие контент короткого кода"
|
505 |
|
506 |
# @ crayon-syntax-highlighter
|
507 |
+
#: ../crayon_settings_wp.class.php:683
|
508 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
509 |
msgstr "Разрешить подсветку смешанных языков."
|
510 |
|
511 |
# @ crayon-syntax-highlighter
|
512 |
+
#: ../crayon_settings_wp.class.php:685
|
513 |
msgid "Show Mixed Language Icon (+)"
|
514 |
msgstr "Показывать иконку смешанных языков (+)"
|
515 |
|
516 |
+
#: ../crayon_settings_wp.class.php:690
|
517 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
518 |
msgstr "Обрабатывать мини-теги, например [php][/php], как теги Crayon."
|
519 |
|
520 |
+
#: ../crayon_settings_wp.class.php:691
|
521 |
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
522 |
msgstr "Обрабатывать строковые теги, такие как {php}{/php}, внутри предложения."
|
523 |
|
524 |
+
#: ../crayon_settings_wp.class.php:692
|
525 |
msgid "Wrap Inline Tags"
|
526 |
msgstr "Обрабатывать внутристроковые теги"
|
527 |
|
528 |
+
#: ../crayon_settings_wp.class.php:693
|
529 |
msgid "Capture `backquotes` as <code>"
|
530 |
msgstr "Обрабатывать символы `тильда` как <code>"
|
531 |
|
532 |
# @ crayon-syntax-highlighter
|
533 |
+
#: ../crayon_settings_wp.class.php:694
|
534 |
msgid "Capture <pre> tags as Crayons"
|
535 |
msgstr "Обрабатывать тег <pre> как код Crayon"
|
536 |
|
537 |
+
#: ../crayon_settings_wp.class.php:695
|
538 |
msgid "Enable [plain][/plain] tag."
|
539 |
msgstr "Разрешить теги [plain][/plain]."
|
540 |
|
541 |
# @ crayon-syntax-highlighter
|
542 |
+
#: ../crayon_settings_wp.class.php:700
|
543 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
544 |
msgstr "Если задан относительный путь для URL, при загрузке локальных файлов использовать абсолютный путь"
|
545 |
|
546 |
# @ crayon-syntax-highlighter
|
547 |
+
#: ../crayon_settings_wp.class.php:703
|
548 |
msgid "Followed by your relative URL."
|
549 |
msgstr "перед вашим относительным URL."
|
550 |
|
551 |
+
#: ../crayon_settings_wp.class.php:707
|
552 |
#, php-format
|
553 |
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
554 |
msgstr "Использовать %s для разделения имён параметров в значениях атрибутов класса <pre>"
|
555 |
|
556 |
# @ crayon-syntax-highlighter
|
557 |
+
#: ../crayon_settings_wp.class.php:713
|
558 |
msgid "Clear the cache used to store remote code requests"
|
559 |
msgstr "Очищать кэш используемый для хранения кодов из внешних файлов"
|
560 |
|
561 |
# @ crayon-syntax-highlighter
|
562 |
+
#: ../crayon_settings_wp.class.php:715
|
563 |
msgid "Clear Now"
|
564 |
msgstr "Очистить сейчас"
|
565 |
|
566 |
# @ crayon-syntax-highlighter
|
567 |
+
#: ../crayon_settings_wp.class.php:716
|
568 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
569 |
msgstr "Пытаться загружать таблицы стилей (CSS) и скрипты (JavaScript) от плагина только тогда, когда это нужно"
|
570 |
|
571 |
+
#: ../crayon_settings_wp.class.php:717
|
572 |
msgid "Disable enqueuing for page templates that may contain The Loop."
|
573 |
msgstr "Отключить обработку кодов для шаблонов страниц, которые могут содержать Loop."
|
574 |
|
575 |
+
#: ../crayon_settings_wp.class.php:718
|
576 |
msgid "Allow Crayons inside comments"
|
577 |
msgstr "Разрешить теги Crayon в комментариях"
|
578 |
|
579 |
+
#: ../crayon_settings_wp.class.php:719
|
580 |
+
msgid "Remove Crayons from excerpts"
|
581 |
+
msgstr "Отключить подсветку Crayon в анонсах"
|
582 |
+
|
583 |
+
#: ../crayon_settings_wp.class.php:720
|
584 |
msgid "Load Crayons only from the main Wordpress query"
|
585 |
msgstr "Загружать Crayon только в основных запросах Wordpress"
|
586 |
|
587 |
# @ crayon-syntax-highlighter
|
588 |
+
#: ../crayon_settings_wp.class.php:721
|
589 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
590 |
msgstr "Отключить распознавание жестов мышью для сенсорных экранов (например Наведение Мыши)"
|
591 |
|
592 |
# @ crayon-syntax-highlighter
|
593 |
+
#: ../crayon_settings_wp.class.php:722
|
594 |
msgid "Disable animations"
|
595 |
msgstr "Запретить анимацию"
|
596 |
|
597 |
# @ crayon-syntax-highlighter
|
598 |
+
#: ../crayon_settings_wp.class.php:723
|
599 |
msgid "Disable runtime stats"
|
600 |
msgstr "Запретить статистику выполнения"
|
601 |
|
602 |
# @ crayon-syntax-highlighter
|
603 |
+
#: ../crayon_settings_wp.class.php:729
|
604 |
msgid "Log errors for individual Crayons"
|
605 |
msgstr "Журнал ошибок для каждого кода Crayon"
|
606 |
|
607 |
# @ crayon-syntax-highlighter
|
608 |
+
#: ../crayon_settings_wp.class.php:730
|
609 |
msgid "Log system-wide errors"
|
610 |
msgstr "Журнал ошибок для общесистемных ошибок"
|
611 |
|
612 |
# @ crayon-syntax-highlighter
|
613 |
+
#: ../crayon_settings_wp.class.php:731
|
614 |
msgid "Display custom message for errors"
|
615 |
msgstr "Показывать свое сообщение об ошибках"
|
616 |
|
617 |
# @ crayon-syntax-highlighter
|
618 |
+
#: ../crayon_settings_wp.class.php:743
|
619 |
msgid "Show Log"
|
620 |
msgstr "Показать журнал ошибок"
|
621 |
|
622 |
+
#: ../crayon_settings_wp.class.php:743
|
623 |
msgid "Hide Log"
|
624 |
msgstr "Скрыть журнал"
|
625 |
|
626 |
# @ crayon-syntax-highlighter
|
627 |
+
#: ../crayon_settings_wp.class.php:745
|
628 |
msgid "Clear Log"
|
629 |
msgstr "Очистить журнал ошибок"
|
630 |
|
631 |
# @ crayon-syntax-highlighter
|
632 |
+
#: ../crayon_settings_wp.class.php:746
|
633 |
msgid "Email Admin"
|
634 |
msgstr "Сообщить администратору (e-mail)"
|
635 |
|
636 |
# @ crayon-syntax-highlighter
|
637 |
+
#: ../crayon_settings_wp.class.php:748
|
638 |
msgid "Email Developer"
|
639 |
msgstr "Сообщить разработчику (e-mail)"
|
640 |
|
641 |
# @ crayon-syntax-highlighter
|
642 |
+
#: ../crayon_settings_wp.class.php:750
|
643 |
msgid "The log is currently empty."
|
644 |
msgstr "Журнал ошибок пуст."
|
645 |
|
646 |
# @ crayon-syntax-highlighter
|
647 |
+
#: ../crayon_settings_wp.class.php:752
|
648 |
msgid "The log file exists and is writable."
|
649 |
msgstr "Файл журнала ошибок существует и доступен для записи."
|
650 |
|
651 |
# @ crayon-syntax-highlighter
|
652 |
+
#: ../crayon_settings_wp.class.php:752
|
653 |
msgid "The log file exists and is not writable."
|
654 |
msgstr "Файл журнала ошибок существует, но не доступен для записи."
|
655 |
|
656 |
# @ crayon-syntax-highlighter
|
657 |
+
#: ../crayon_settings_wp.class.php:754
|
658 |
msgid "The log file does not exist and is not writable."
|
659 |
msgstr "Файл журнала ошибок не существует и не доступен для записи."
|
660 |
|
661 |
# @ crayon-syntax-highlighter
|
662 |
+
#: ../crayon_settings_wp.class.php:764
|
663 |
msgid "Version"
|
664 |
msgstr "Версия"
|
665 |
|
666 |
# @ crayon-syntax-highlighter
|
667 |
+
#: ../crayon_settings_wp.class.php:766
|
668 |
msgid "Developer"
|
669 |
msgstr "Разработчик"
|
670 |
|
671 |
+
#: ../crayon_settings_wp.class.php:767
|
672 |
msgid "Translators"
|
673 |
msgstr "Переводчики"
|
674 |
|
675 |
# @ crayon-syntax-highlighter
|
676 |
+
#: ../crayon_settings_wp.class.php:790
|
677 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
678 |
msgstr "Результат бесчисленных часов тяжелой работы за многие месяцы. Это - текущий проект, поддержите мою мотивацию!"
|
679 |
|
680 |
# @ crayon-syntax-highlighter
|
681 |
+
#: ../crayon_settings_wp.class.php:806
|
682 |
msgid "Donate"
|
683 |
msgstr "Поддержать разработчика (Donate)"
|
684 |
|
trans/crayon-syntax-highlighter-tr_TR.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-tr_TR.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: crayon-syntax-highlighter\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: kazancexpert <kazancexpert@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -13,819 +13,815 @@ msgstr ""
|
|
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 |
-
|
22 |
-
#:
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "Max"
|
25 |
msgstr "Max"
|
26 |
|
27 |
-
|
28 |
-
#: crayon_settings.class.php:
|
29 |
-
#: crayon_settings.class.php:
|
30 |
msgid "Min"
|
31 |
msgstr "Min"
|
32 |
|
33 |
-
|
34 |
-
#: crayon_settings.class.php:
|
35 |
-
#: crayon_settings.class.php:
|
36 |
msgid "Static"
|
37 |
msgstr "Sabit"
|
38 |
|
39 |
-
|
40 |
-
#: crayon_settings.class.php:
|
41 |
-
#: crayon_settings.class.php:
|
42 |
-
#: crayon_settings_wp.class.php:
|
43 |
-
#: crayon_settings_wp.class.php:
|
44 |
-
#: crayon_settings_wp.class.php:
|
45 |
msgid "Pixels"
|
46 |
msgstr "Piksel"
|
47 |
|
48 |
-
|
49 |
-
#: crayon_settings.class.php:
|
50 |
-
#: crayon_settings.class.php:
|
51 |
msgid "Percent"
|
52 |
msgstr "Yüzde"
|
53 |
|
54 |
-
|
55 |
-
#: crayon_settings.class.php:
|
56 |
msgid "None"
|
57 |
msgstr "Yok"
|
58 |
|
59 |
-
|
60 |
-
#: crayon_settings.class.php:
|
61 |
msgid "Left"
|
62 |
msgstr "Sol"
|
63 |
|
64 |
-
|
65 |
-
#: crayon_settings.class.php:
|
66 |
msgid "Center"
|
67 |
msgstr "Merkez"
|
68 |
|
69 |
-
|
70 |
-
#: crayon_settings.class.php:
|
71 |
msgid "Right"
|
72 |
msgstr "Sağ"
|
73 |
|
74 |
-
|
75 |
-
#: crayon_settings.class.php:
|
76 |
-
#: crayon_settings.class.php:
|
77 |
msgid "On MouseOver"
|
78 |
msgstr "Fare Üstündeyken"
|
79 |
|
80 |
-
|
81 |
-
#: crayon_settings.class.php:
|
82 |
-
#: crayon_settings.class.php:
|
83 |
msgid "Always"
|
84 |
msgstr "Herzaman"
|
85 |
|
86 |
-
|
87 |
-
#: crayon_settings.class.php:
|
88 |
-
#: crayon_settings.class.php:
|
89 |
msgid "Never"
|
90 |
msgstr "Asla"
|
91 |
|
92 |
-
|
93 |
-
#: crayon_settings.class.php:
|
94 |
msgid "When Found"
|
95 |
msgstr "Bulunduğunda"
|
96 |
|
97 |
-
|
98 |
-
#: crayon_settings.class.php:
|
99 |
msgid "On Double Click"
|
100 |
msgstr "Çift Tık ile aç"
|
101 |
|
102 |
-
|
103 |
-
#: crayon_settings.class.php:
|
104 |
msgid "On Single Click"
|
105 |
msgstr "Tek Tık ile aç"
|
106 |
|
107 |
-
|
108 |
-
#: crayon_settings.class.php:
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "An error has occurred. Please try again later."
|
110 |
msgstr "Bir hata meydana geldi. Daha sonra tekrar deneyin."
|
111 |
|
112 |
-
|
113 |
-
#: crayon_settings_wp.class.php:
|
114 |
-
#: crayon_settings_wp.class.php:
|
115 |
-
#: crayon_settings_wp.class.php:
|
116 |
-
#: util/tag-editor/crayon_te_content.php:101
|
117 |
msgid "Settings"
|
118 |
msgstr "Ayarlar"
|
119 |
|
120 |
-
|
121 |
-
#: crayon_settings_wp.class.php:
|
122 |
msgid "You do not have sufficient permissions to access this page."
|
123 |
msgstr "Bu sayfaya erişmek için yeterli izinlere sahip değilsiniz."
|
124 |
|
125 |
-
|
126 |
-
#: crayon_settings_wp.class.php:
|
127 |
msgid "Save Changes"
|
128 |
msgstr "Kaydet"
|
129 |
|
130 |
-
|
131 |
-
#: crayon_settings_wp.class.php:
|
132 |
msgid "Reset Settings"
|
133 |
msgstr "Ayarları Sıfırla"
|
134 |
|
135 |
-
|
136 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Height"
|
138 |
msgstr "Yükseklik"
|
139 |
|
140 |
-
|
141 |
-
#: crayon_settings_wp.class.php:
|
142 |
msgid "Width"
|
143 |
msgstr "Genişlik"
|
144 |
|
145 |
-
|
146 |
-
#: crayon_settings_wp.class.php:
|
147 |
msgid "Top Margin"
|
148 |
msgstr "Üst Boşluk"
|
149 |
|
150 |
-
|
151 |
-
#: crayon_settings_wp.class.php:
|
152 |
msgid "Bottom Margin"
|
153 |
msgstr "Alt Boşluk"
|
154 |
|
155 |
-
|
156 |
-
#: crayon_settings_wp.class.php:
|
157 |
-
#: crayon_settings_wp.class.php:
|
158 |
msgid "Left Margin"
|
159 |
msgstr "Sol Boşluk"
|
160 |
|
161 |
-
|
162 |
-
#: crayon_settings_wp.class.php:
|
163 |
-
#: crayon_settings_wp.class.php:
|
164 |
msgid "Right Margin"
|
165 |
msgstr "Sağ Boşluk"
|
166 |
|
167 |
-
|
168 |
-
#: crayon_settings_wp.class.php:
|
169 |
msgid "Horizontal Alignment"
|
170 |
msgstr "Yatay Hizalama"
|
171 |
|
172 |
-
|
173 |
-
#: crayon_settings_wp.class.php:
|
174 |
msgid "Allow floating elements to surround Crayon"
|
175 |
msgstr "Geçişli elementleri Crayon çevrelemeye izin ver"
|
176 |
|
177 |
-
|
178 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
179 |
msgid "Display the Toolbar"
|
180 |
msgstr "Araç çubuğunu göster"
|
181 |
|
182 |
-
|
183 |
-
#: crayon_settings_wp.class.php:
|
184 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
185 |
msgstr "Araç çubuğunu mümkünse kodları aşağı itmek yerine üstte göster"
|
186 |
|
187 |
-
|
188 |
-
#: crayon_settings_wp.class.php:
|
189 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
190 |
msgstr "Araç çubuğu üste çıktığında tek tıkla gizle"
|
191 |
|
192 |
-
|
193 |
-
#: crayon_settings_wp.class.php:
|
194 |
msgid "Delay hiding the toolbar on MouseOut"
|
195 |
msgstr "Fare dışa çıktığında araç çubuğunu gizlemek için bekle"
|
196 |
|
197 |
-
|
198 |
-
#: crayon_settings_wp.class.php:
|
199 |
msgid "Display the title when provided"
|
200 |
msgstr "Varsa başlığı görüntüle"
|
201 |
|
202 |
-
|
203 |
-
#: crayon_settings_wp.class.php:
|
204 |
msgid "Display the language"
|
205 |
msgstr "Dilleri göster"
|
206 |
|
207 |
-
|
208 |
-
#: crayon_settings_wp.class.php:
|
209 |
msgid "Display striped code lines"
|
210 |
msgstr "Şeritli kod satırını göster"
|
211 |
|
212 |
-
|
213 |
-
#: crayon_settings_wp.class.php:
|
214 |
msgid "Enable line marking for important lines"
|
215 |
msgstr "Önemli satırlar için satır işaretleme etkin"
|
216 |
|
217 |
-
|
218 |
-
#: crayon_settings_wp.class.php:
|
219 |
msgid "Display line numbers by default"
|
220 |
msgstr "Varsayılan olarak satır numaralarını göster"
|
221 |
|
222 |
-
|
223 |
-
#: crayon_settings_wp.class.php:
|
224 |
msgid "Enable line number toggling"
|
225 |
msgstr "Satır numaraları geçişi etkin"
|
226 |
|
227 |
-
|
228 |
-
#: crayon_settings_wp.class.php:
|
229 |
msgid "Start line numbers from"
|
230 |
msgstr "Satır numarasını buradan başlat"
|
231 |
|
232 |
-
|
233 |
-
#: crayon_settings_wp.class.php:
|
234 |
msgid "When no language is provided, use the fallback"
|
235 |
msgstr "Belirlenmiş bir dil olmadığında son çareyi kullan"
|
236 |
|
237 |
-
|
238 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
msgid "Parsing was successful"
|
240 |
msgstr "Ayrıştırma başarılı"
|
241 |
|
242 |
-
|
243 |
-
#: crayon_settings_wp.class.php:
|
244 |
msgid "Parsing was unsuccessful"
|
245 |
msgstr "Ayrıştırma başarılı değil"
|
246 |
|
247 |
-
|
248 |
-
#: crayon_settings_wp.class.php:
|
249 |
#, php-format
|
250 |
msgid "The selected language with id %s could not be loaded"
|
251 |
msgstr "ID %s ile seçilen dil yüklenemedi"
|
252 |
|
253 |
-
|
254 |
-
#: crayon_settings_wp.class.php:
|
255 |
msgid "Show Languages"
|
256 |
msgstr "Dilleri Göster"
|
257 |
|
258 |
-
|
259 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid "Enable Live Preview"
|
261 |
msgstr "Ön izleme etkin"
|
262 |
|
263 |
-
|
264 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
#, php-format
|
266 |
msgid "The selected theme with id %s could not be loaded"
|
267 |
msgstr "ID %s ile seçilen tema yüklenemedi"
|
268 |
|
269 |
-
|
270 |
-
#: crayon_settings_wp.class.php:
|
271 |
msgid "Custom Font Size"
|
272 |
msgstr "Kişisel Font Boyutu"
|
273 |
|
274 |
-
|
275 |
-
#: crayon_settings_wp.class.php:
|
276 |
#, php-format
|
277 |
msgid "The selected font with id %s could not be loaded"
|
278 |
msgstr "ID %s ile seçilen font yüklenemedi"
|
279 |
|
280 |
-
|
281 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
282 |
msgid "Enable plain code view and display"
|
283 |
msgstr "Düz kod görünümü ve görüntüleme etkin"
|
284 |
|
285 |
-
|
286 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
msgid "Enable code copy/paste"
|
288 |
msgstr "Kod kopyala/yapıştır etkin"
|
289 |
|
290 |
-
|
291 |
-
#: crayon_settings_wp.class.php:
|
292 |
msgid "Enable opening code in a window"
|
293 |
msgstr "Kodları bir pencerede açma etkin"
|
294 |
|
295 |
-
|
296 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
297 |
msgid "Tab size in spaces"
|
298 |
msgstr "Boşluk sekme boyutu"
|
299 |
|
300 |
-
|
301 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
msgid "Remove whitespace surrounding the shortcode content"
|
303 |
msgstr "Kısakod içeriğini çevreleyen beyaz alanları kaldır"
|
304 |
|
305 |
-
|
306 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
308 |
msgstr "Yerel dosyalar yüklendiği ve URL için bağlantılı yol verildiğinde, kesin yolu kullan"
|
309 |
|
310 |
-
|
311 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "Clear the cache used to store remote code requests"
|
313 |
msgstr "Uzak kod isteklerini depolamak için ön belleği temizle"
|
314 |
|
315 |
-
|
316 |
-
#: crayon_settings_wp.class.php:
|
317 |
msgid "Clear Now"
|
318 |
msgstr "Şimdi Temizle"
|
319 |
|
320 |
-
|
321 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
323 |
msgstr "Dokunmatik cihazlar için fare hareketlerini devre dışı bırak (örn. Fare Üzerinde)"
|
324 |
|
325 |
-
|
326 |
-
#: crayon_settings_wp.class.php:
|
327 |
msgid "Disable animations"
|
328 |
msgstr "Animasyonlar devre dışı"
|
329 |
|
330 |
-
|
331 |
-
#: crayon_settings_wp.class.php:
|
332 |
msgid "Disable runtime stats"
|
333 |
msgstr "İşlem istatistikleri devre dışı"
|
334 |
|
335 |
-
|
336 |
-
#: crayon_settings_wp.class.php:
|
337 |
msgid "Log errors for individual Crayons"
|
338 |
msgstr "Özgün Crayons hataları günlükle"
|
339 |
|
340 |
-
|
341 |
-
#: crayon_settings_wp.class.php:
|
342 |
msgid "Log system-wide errors"
|
343 |
msgstr "Sistem-geneli hataları günlükle"
|
344 |
|
345 |
-
|
346 |
-
#: crayon_settings_wp.class.php:
|
347 |
msgid "Display custom message for errors"
|
348 |
msgstr "Hatalar için kişisel mesaj göster"
|
349 |
|
350 |
-
|
351 |
-
#: crayon_settings_wp.class.php:
|
352 |
msgid "Show Log"
|
353 |
msgstr "Günlüğü Göster"
|
354 |
|
355 |
-
|
356 |
-
#: crayon_settings_wp.class.php:
|
|
|
|
|
|
|
|
|
|
|
357 |
msgid "Clear Log"
|
358 |
msgstr "Günlüğü Temizle"
|
359 |
|
360 |
-
|
361 |
-
#: crayon_settings_wp.class.php:
|
362 |
msgid "Email Admin"
|
363 |
msgstr "Yönetici E-Posta"
|
364 |
|
365 |
-
|
366 |
-
#: crayon_settings_wp.class.php:
|
367 |
msgid "Email Developer"
|
368 |
msgstr "Geliştirici E-Posta"
|
369 |
|
370 |
-
|
371 |
-
#: crayon_settings_wp.class.php:
|
372 |
-
msgid "Version"
|
373 |
-
msgstr "Sürüm"
|
374 |
-
|
375 |
-
#@ crayon-syntax-highlighter
|
376 |
-
#: crayon_settings_wp.class.php:748
|
377 |
-
msgid "Developer"
|
378 |
-
msgstr "Geliştirici"
|
379 |
-
|
380 |
-
#@ crayon-syntax-highlighter
|
381 |
-
#: crayon_settings_wp.class.php:771
|
382 |
-
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
383 |
-
msgstr "Aylar boyu sıkı çalışma ve sayısız saatlerin sonucudur. Bu devam eden bir projedir, motivasyonumu arttırın!"
|
384 |
-
|
385 |
-
#@ crayon-syntax-highlighter
|
386 |
-
#: crayon_settings_wp.class.php:602
|
387 |
-
#, php-format
|
388 |
-
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
389 |
-
msgstr "Örnek kodu değiştirmek için %1$sSon çare dili%2$s değiştirin. 5-7 satırlar işaretli."
|
390 |
-
|
391 |
-
#@ crayon-syntax-highlighter
|
392 |
-
#: crayon_settings.class.php:120
|
393 |
-
msgid "Hourly"
|
394 |
-
msgstr "Saatlik"
|
395 |
-
|
396 |
-
#@ crayon-syntax-highlighter
|
397 |
-
#: crayon_settings.class.php:120
|
398 |
-
msgid "Daily"
|
399 |
-
msgstr "Günlük"
|
400 |
-
|
401 |
-
#@ crayon-syntax-highlighter
|
402 |
-
#: crayon_settings.class.php:121
|
403 |
-
msgid "Weekly"
|
404 |
-
msgstr "Haftalık"
|
405 |
-
|
406 |
-
#@ crayon-syntax-highlighter
|
407 |
-
#: crayon_settings.class.php:121
|
408 |
-
msgid "Monthly"
|
409 |
-
msgstr "Aylık"
|
410 |
-
|
411 |
-
#@ crayon-syntax-highlighter
|
412 |
-
#: crayon_settings.class.php:122
|
413 |
-
msgid "Immediately"
|
414 |
-
msgstr "Hemen"
|
415 |
-
|
416 |
-
#@ crayon-syntax-highlighter
|
417 |
-
#: crayon_settings_wp.class.php:479
|
418 |
-
msgid "Crayon Help"
|
419 |
-
msgstr "Crayon Yardım"
|
420 |
-
|
421 |
-
#@ crayon-syntax-highlighter
|
422 |
-
#: crayon_settings_wp.class.php:698
|
423 |
-
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
424 |
-
msgstr "Sadece ihtiyaç olduğunda Crayon CSS ve JavaScript yüklemeyi dene"
|
425 |
-
|
426 |
-
#@ crayon-syntax-highlighter
|
427 |
-
#: crayon_settings_wp.class.php:567
|
428 |
-
#, php-format
|
429 |
-
msgid "%d language has been detected."
|
430 |
-
msgid_plural "%d languages have been detected."
|
431 |
-
msgstr[0] "%d dil tespit edildi."
|
432 |
-
msgstr[1] "%d dil tespit edildi."
|
433 |
-
|
434 |
-
#@ crayon-syntax-highlighter
|
435 |
-
#: crayon_settings_wp.class.php:679
|
436 |
-
msgid "Followed by your relative URL."
|
437 |
-
msgstr "Bağlantılı URL tarafından izlendi."
|
438 |
-
|
439 |
-
#@ crayon-syntax-highlighter
|
440 |
-
#: crayon_settings_wp.class.php:732
|
441 |
msgid "The log is currently empty."
|
442 |
msgstr "Günlük şu anda boş."
|
443 |
|
444 |
-
|
445 |
-
#: crayon_settings_wp.class.php:
|
446 |
msgid "The log file exists and is writable."
|
447 |
msgstr "Günlük dosyası var ve yazılabilir."
|
448 |
|
449 |
-
|
450 |
-
#: crayon_settings_wp.class.php:
|
451 |
msgid "The log file exists and is not writable."
|
452 |
msgstr "Günlük dosyası var ve yazılabilir değil."
|
453 |
|
454 |
-
|
455 |
-
#: crayon_settings_wp.class.php:
|
456 |
msgid "The log file does not exist and is not writable."
|
457 |
msgstr "Günlük dosyası yok ve yazılabilir değil."
|
458 |
|
459 |
-
|
460 |
-
#: crayon_settings_wp.class.php:
|
461 |
-
msgid "
|
462 |
-
msgstr "
|
463 |
-
|
464 |
-
#@ crayon-syntax-highlighter
|
465 |
-
#: crayon_settings_wp.class.php:661
|
466 |
-
msgid "Show Mixed Language Icon (+)"
|
467 |
-
msgstr "Karışık Dil Simgesini Göster (+)"
|
468 |
-
|
469 |
-
#@ crayon-syntax-highlighter
|
470 |
-
#: crayon_settings_wp.class.php:659
|
471 |
-
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
472 |
-
msgstr "Sınırlayıcılar ve etiketler ile Karışık Dil Vurgulamaya izin ver."
|
473 |
-
|
474 |
-
#@ crayon-syntax-highlighter
|
475 |
-
#: crayon_settings_wp.class.php:666
|
476 |
-
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
477 |
-
msgstr "Crayons olarak [php][/php] gibi küçük etiketleri yakala."
|
478 |
-
|
479 |
-
#@ crayon-syntax-highlighter
|
480 |
-
#: crayon_settings_wp.class.php:671
|
481 |
-
msgid "Enable [plain][/plain] tag."
|
482 |
-
msgstr "[plain][/plain] etiketi etkin."
|
483 |
-
|
484 |
-
#@ crayon-syntax-highlighter
|
485 |
-
#: crayon_settings.class.php:188
|
486 |
-
msgid "Disable Mouse Events"
|
487 |
-
msgstr "Fare Etkinliği Devre Dışı"
|
488 |
-
|
489 |
-
#@ crayon-syntax-highlighter
|
490 |
-
#: crayon_settings_wp.class.php:642
|
491 |
-
msgid "Enable plain code toggling"
|
492 |
-
msgstr "Düz kod geçişi etkin"
|
493 |
-
|
494 |
-
#@ crayon-syntax-highlighter
|
495 |
-
#: crayon_settings_wp.class.php:643
|
496 |
-
msgid "Show the plain code by default"
|
497 |
-
msgstr "Düz kodu varsayılan olarak göster"
|
498 |
-
|
499 |
-
#@ crayon-syntax-highlighter
|
500 |
-
#. translators: plugin header field 'Name'
|
501 |
-
#: crayon_wp.class.php:0
|
502 |
-
msgid "Crayon Syntax Highlighter"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#@ crayon-syntax-highlighter
|
506 |
-
#. translators: plugin header field 'PluginURI'
|
507 |
-
#: crayon_wp.class.php:0
|
508 |
-
msgid "http://ak.net84.net/projects/crayon-syntax-highlighter"
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#@ crayon-syntax-highlighter
|
512 |
-
#. translators: plugin header field 'Description'
|
513 |
-
#: crayon_wp.class.php:0
|
514 |
-
msgid "Supports multiple languages, themes, highlighting from a URL, local file or post text."
|
515 |
-
msgstr "Çoklu dil, temalar, bir URL den vurgulama, yerel dosya veya yazı metnini destekler."
|
516 |
-
|
517 |
-
#@ crayon-syntax-highlighter
|
518 |
-
#. translators: plugin header field 'Author'
|
519 |
-
#: crayon_wp.class.php:0
|
520 |
-
msgid "Aram Kocharyan"
|
521 |
-
msgstr ""
|
522 |
-
|
523 |
-
#@ crayon-syntax-highlighter
|
524 |
-
#. translators: plugin header field 'AuthorURI'
|
525 |
-
#: crayon_wp.class.php:0
|
526 |
-
msgid "http://ak.net84.net/"
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#@ crayon-syntax-highlighter
|
530 |
-
#: crayon_settings_wp.class.php:787
|
531 |
-
msgid "Donate"
|
532 |
-
msgstr "Bağış"
|
533 |
-
|
534 |
-
#@ crayon-syntax-highlighter
|
535 |
-
#: crayon_settings_wp.class.php:249
|
536 |
-
msgid "General"
|
537 |
-
msgstr "Genel"
|
538 |
-
|
539 |
-
#@ crayon-syntax-highlighter
|
540 |
-
#: crayon_settings_wp.class.php:250
|
541 |
-
msgid "Theme"
|
542 |
-
msgstr "Tema"
|
543 |
-
|
544 |
-
#@ crayon-syntax-highlighter
|
545 |
-
#: crayon_settings_wp.class.php:251
|
546 |
-
msgid "Font"
|
547 |
-
msgstr "Font"
|
548 |
-
|
549 |
-
#@ crayon-syntax-highlighter
|
550 |
-
#: crayon_settings_wp.class.php:252
|
551 |
-
msgid "Metrics"
|
552 |
-
msgstr "Ölçüler"
|
553 |
-
|
554 |
-
#@ crayon-syntax-highlighter
|
555 |
-
#: crayon_settings_wp.class.php:253
|
556 |
-
msgid "Toolbar"
|
557 |
-
msgstr "Araç Çubuğu"
|
558 |
-
|
559 |
-
#@ crayon-syntax-highlighter
|
560 |
-
#: crayon_settings_wp.class.php:254
|
561 |
-
msgid "Lines"
|
562 |
-
msgstr "Satırlar"
|
563 |
-
|
564 |
-
#@ crayon-syntax-highlighter
|
565 |
-
#: crayon_settings_wp.class.php:255
|
566 |
-
#: util/tag-editor/crayon_te_content.php:87
|
567 |
-
msgid "Code"
|
568 |
-
msgstr "Kod"
|
569 |
-
|
570 |
-
#@ crayon-syntax-highlighter
|
571 |
-
#: crayon_settings_wp.class.php:257
|
572 |
-
msgid "Languages"
|
573 |
-
msgstr "Diller"
|
574 |
-
|
575 |
-
#@ crayon-syntax-highlighter
|
576 |
-
#: crayon_settings_wp.class.php:258
|
577 |
-
msgid "Files"
|
578 |
-
msgstr "Dosyalar"
|
579 |
-
|
580 |
-
#@ crayon-syntax-highlighter
|
581 |
-
#: crayon_settings_wp.class.php:260
|
582 |
-
msgid "Misc"
|
583 |
-
msgstr "Çeşitli"
|
584 |
-
|
585 |
-
#@ crayon-syntax-highlighter
|
586 |
-
#: crayon_settings_wp.class.php:263
|
587 |
-
msgid "Debug"
|
588 |
-
msgstr "Hata Ayıklama"
|
589 |
-
|
590 |
-
#@ crayon-syntax-highlighter
|
591 |
-
#: crayon_settings_wp.class.php:264
|
592 |
-
msgid "Errors"
|
593 |
-
msgstr "Hatalar"
|
594 |
-
|
595 |
-
#@ crayon-syntax-highlighter
|
596 |
-
#: crayon_settings_wp.class.php:265
|
597 |
-
msgid "Log"
|
598 |
-
msgstr "Günlük"
|
599 |
-
|
600 |
-
#@ crayon-syntax-highlighter
|
601 |
-
#: crayon_settings_wp.class.php:268
|
602 |
-
msgid "About"
|
603 |
-
msgstr "Hakkında"
|
604 |
-
|
605 |
-
#@ crayon-syntax-highlighter
|
606 |
-
#: crayon_settings_wp.class.php:608
|
607 |
-
msgid "Enqueue themes in the header (more efficient)."
|
608 |
-
msgstr "Temaları header içinde kuyrukla (daha etkin)."
|
609 |
-
|
610 |
-
#@ crayon-syntax-highlighter
|
611 |
-
#: crayon_settings_wp.class.php:634
|
612 |
-
msgid "Enqueue fonts in the header (more efficient)."
|
613 |
-
msgstr "Fontları header içinde kuyrukla (daha etkin)."
|
614 |
-
|
615 |
-
#@ crayon-syntax-highlighter
|
616 |
-
#: crayon_settings_wp.class.php:597
|
617 |
-
msgid "Loading..."
|
618 |
-
msgstr "Yükleniyor..."
|
619 |
-
|
620 |
-
#@ crayon-syntax-highlighter
|
621 |
-
#: crayon_settings_wp.class.php:597
|
622 |
-
#: crayon_settings_wp.class.php:785
|
623 |
-
#: util/theme-editor/editor.php:14
|
624 |
-
msgid "Theme Editor"
|
625 |
-
msgstr "Tema Düzenleyici"
|
626 |
-
|
627 |
-
#@ crayon-syntax-highlighter
|
628 |
-
#: crayon_settings_wp.class.php:647
|
629 |
-
msgid "Always display scrollbars"
|
630 |
-
msgstr "Kaydırma çubuğu her zaman göster"
|
631 |
-
|
632 |
-
#@ crayon-syntax-highlighter
|
633 |
-
#: crayon_settings_wp.class.php:699
|
634 |
-
msgid "Disable enqueuing for page templates that may contain The Loop."
|
635 |
-
msgstr "Döngü içeren sayfa şablonları için kuyruklama devre dışı."
|
636 |
|
637 |
-
|
638 |
-
#: crayon_settings_wp.class.php:
|
639 |
-
msgid "
|
640 |
-
msgstr "
|
641 |
|
642 |
-
|
643 |
-
#: crayon_settings_wp.class.php:
|
644 |
msgid "Translators"
|
645 |
msgstr "Çevirmenler"
|
646 |
|
647 |
-
|
648 |
-
#:
|
649 |
-
msgid "
|
650 |
-
msgstr "
|
651 |
-
|
652 |
-
#@ crayon-syntax-highlighter
|
653 |
-
#: crayon_formatter.class.php:264
|
654 |
-
msgid "Toggle Plain Code"
|
655 |
-
msgstr "Düz Koda Geç"
|
656 |
-
|
657 |
-
#@ crayon-syntax-highlighter
|
658 |
-
#: crayon_formatter.class.php:266
|
659 |
-
msgid "Copy Plain Code"
|
660 |
-
msgstr "Düz Kodu Kopyala"
|
661 |
-
|
662 |
-
#@ crayon-syntax-highlighter
|
663 |
-
#: crayon_formatter.class.php:268
|
664 |
-
msgid "Open Code In New Window"
|
665 |
-
msgstr "Kodu Yeni Pencerede Aç"
|
666 |
-
|
667 |
-
#@ crayon-syntax-highlighter
|
668 |
-
#: crayon_formatter.class.php:271
|
669 |
-
msgid "Toggle Line Numbers"
|
670 |
-
msgstr "Satır Numaralarına Geç"
|
671 |
-
|
672 |
-
#@ crayon-syntax-highlighter
|
673 |
-
#: crayon_formatter.class.php:277
|
674 |
-
msgid "Contains Mixed Languages"
|
675 |
-
msgstr "Karışık Diller içerir"
|
676 |
-
|
677 |
-
#@ crayon-syntax-highlighter
|
678 |
-
#: crayon_settings_wp.class.php:725
|
679 |
-
msgid "Hide Log"
|
680 |
-
msgstr "Günlüğü Gizle"
|
681 |
-
|
682 |
-
#@ crayon-syntax-highlighter
|
683 |
-
#: crayon_formatter.class.php:266
|
684 |
-
#, php-format
|
685 |
-
msgid "Press %s to Copy, %s to Paste"
|
686 |
-
msgstr "%s ile Kopyala, %s ile Yapıştır"
|
687 |
-
|
688 |
-
#@ crayon-syntax-highlighter
|
689 |
-
#: crayon_settings_wp.class.php:256
|
690 |
-
msgid "Tags"
|
691 |
-
msgstr "Etiketler"
|
692 |
-
|
693 |
-
#@ crayon-syntax-highlighter
|
694 |
-
#: crayon_settings_wp.class.php:524
|
695 |
-
msgid "Inline Margin"
|
696 |
-
msgstr "Satıriçi Boşluk"
|
697 |
-
|
698 |
-
#@ crayon-syntax-highlighter
|
699 |
-
#: crayon_settings_wp.class.php:667
|
700 |
-
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
701 |
-
msgstr "Cümle içinde {php}{/php} gibi satıriçi etiketleri yakalayın."
|
702 |
-
|
703 |
-
#@ crayon-syntax-highlighter
|
704 |
-
#: crayon_settings_wp.class.php:669
|
705 |
-
msgid "Capture `backquotes` as <code>"
|
706 |
-
msgstr "<code> olarak `backquotes` yakalayın"
|
707 |
-
|
708 |
-
#@ crayon-syntax-highlighter
|
709 |
-
#: crayon_settings_wp.class.php:700
|
710 |
-
msgid "Allow Crayons inside comments"
|
711 |
-
msgstr "Yorum içinde Crayons izini verin"
|
712 |
-
|
713 |
-
#@ crayon-syntax-highlighter
|
714 |
-
#: crayon_settings_wp.class.php:668
|
715 |
-
msgid "Wrap Inline Tags"
|
716 |
-
msgstr "Satıriçi Etiketleri Sar"
|
717 |
-
|
718 |
-
#@ crayon-syntax-highlighter
|
719 |
-
#: crayon_settings_wp.class.php:259
|
720 |
-
msgid "Tag Editor"
|
721 |
-
msgstr "Etiket Düzenleyici"
|
722 |
-
|
723 |
-
#@ crayon-syntax-highlighter
|
724 |
-
#: crayon_settings_wp.class.php:608
|
725 |
-
#: crayon_settings_wp.class.php:634
|
726 |
-
#: crayon_settings_wp.class.php:659
|
727 |
-
#: crayon_settings_wp.class.php:666
|
728 |
-
#: crayon_settings_wp.class.php:667
|
729 |
-
#: crayon_settings_wp.class.php:668
|
730 |
-
#: crayon_settings_wp.class.php:669
|
731 |
-
#: crayon_settings_wp.class.php:670
|
732 |
-
#: crayon_settings_wp.class.php:671
|
733 |
-
#: crayon_settings_wp.class.php:687
|
734 |
-
#: crayon_settings_wp.class.php:698
|
735 |
-
#: crayon_settings_wp.class.php:699
|
736 |
-
msgid "?"
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#@ crayon-syntax-highlighter
|
740 |
-
#: crayon_settings_wp.class.php:653
|
741 |
-
msgid "Decode HTML entities in code"
|
742 |
-
msgstr "HTML varlıkları kod içinde çöz"
|
743 |
-
|
744 |
-
#@ crayon-syntax-highlighter
|
745 |
-
#: crayon_settings_wp.class.php:655
|
746 |
-
msgid "Decode HTML entities in attributes"
|
747 |
-
msgstr "HTML varlıkları nitelikler içinde çöz"
|
748 |
-
|
749 |
-
#@ crayon-syntax-highlighter
|
750 |
-
#: crayon_settings_wp.class.php:684
|
751 |
-
#, php-format
|
752 |
-
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
753 |
-
msgstr "%s kullanarak <pre> sınıf niteliği içinde ayar adlarını değerlerden ayır"
|
754 |
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
msgstr ""
|
760 |
|
761 |
-
|
762 |
-
#: util/tag-editor/crayon_tag_editor_wp.class.php:
|
763 |
msgid "Add Crayon Code"
|
764 |
msgstr "Crayon Kod Ekle"
|
765 |
|
766 |
-
|
767 |
-
#: util/tag-editor/crayon_tag_editor_wp.class.php:
|
768 |
msgid "Edit Crayon Code"
|
769 |
msgstr "Crayon Kodu Düzenle"
|
770 |
|
771 |
-
|
772 |
-
#: util/tag-editor/crayon_tag_editor_wp.class.php:
|
773 |
msgid "Add"
|
774 |
msgstr "Ekle"
|
775 |
|
776 |
-
|
777 |
-
#: util/tag-editor/crayon_tag_editor_wp.class.php:
|
778 |
msgid "Save"
|
779 |
msgstr "Kaydet"
|
780 |
|
781 |
-
|
782 |
-
#: util/tag-editor/crayon_te_content.php:65
|
783 |
msgid "Title"
|
784 |
msgstr "Başlık"
|
785 |
|
786 |
-
|
787 |
-
#: util/tag-editor/crayon_te_content.php:
|
|
|
|
|
|
|
|
|
|
|
788 |
msgid "Inline"
|
789 |
msgstr "Satıriçi"
|
790 |
|
791 |
-
|
792 |
-
#: util/tag-editor/crayon_te_content.php:75
|
793 |
msgid "Language"
|
794 |
msgstr "Dil"
|
795 |
|
796 |
-
|
797 |
-
#: util/tag-editor/crayon_te_content.php:78
|
798 |
msgid "Marked Lines"
|
799 |
msgstr "İşaretli Satırlar"
|
800 |
|
801 |
-
|
802 |
-
#: util/tag-editor/crayon_te_content.php:
|
|
|
|
|
|
|
|
|
|
|
803 |
msgid "Disable Highlighting"
|
804 |
msgstr "Vurgulamayı İptal et"
|
805 |
|
806 |
-
|
807 |
-
#: util/tag-editor/crayon_te_content.php:87
|
808 |
msgid "Clear"
|
809 |
msgstr "Temizle"
|
810 |
|
811 |
-
|
812 |
-
#: util/tag-editor/crayon_te_content.php:88
|
813 |
msgid "Paste your code here, or type it in manually."
|
814 |
msgstr "Kodu buraya yapıştır, ya da onu el ile yaz."
|
815 |
|
816 |
-
|
817 |
-
#: util/tag-editor/crayon_te_content.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
818 |
msgid "Change the following settings to override their global values."
|
819 |
msgstr "Genel değerleri geçersiz kılmak için aşağıdaki ayarları değiştirin."
|
820 |
|
821 |
-
|
822 |
-
#: util/tag-editor/crayon_te_content.php:
|
823 |
msgid "Only changes (shown yellow) are applied."
|
824 |
msgstr "Sadece değişiklikler (sarı ile gösterilir) uygulanır."
|
825 |
|
826 |
-
|
827 |
-
#: util/tag-editor/crayon_te_content.php:
|
828 |
#, php-format
|
829 |
-
msgid "Future changes to the global settings under %sCrayon
|
830 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
831 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: crayon-syntax-highlighter\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-06 15:12+1000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: \n"
|
8 |
"Language-Team: kazancexpert <kazancexpert@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\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;crayon__;crayon_e;crayon_n\n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Poedit-SearchPath-1: ..\n"
|
21 |
|
22 |
+
# @ crayon-syntax-highlighter
|
23 |
+
#: ../crayon_formatter.class.php:266
|
24 |
+
msgid "Toggle Plain Code"
|
25 |
+
msgstr "Düz Koda Geç"
|
26 |
+
|
27 |
+
# @ crayon-syntax-highlighter
|
28 |
+
#: ../crayon_formatter.class.php:268
|
29 |
+
#, php-format
|
30 |
+
msgid "Press %s to Copy, %s to Paste"
|
31 |
+
msgstr "%s ile Kopyala, %s ile Yapıştır"
|
32 |
+
|
33 |
+
# @ crayon-syntax-highlighter
|
34 |
+
#: ../crayon_formatter.class.php:268
|
35 |
+
msgid "Copy Plain Code"
|
36 |
+
msgstr "Düz Kodu Kopyala"
|
37 |
+
|
38 |
+
# @ crayon-syntax-highlighter
|
39 |
+
#: ../crayon_formatter.class.php:270
|
40 |
+
msgid "Open Code In New Window"
|
41 |
+
msgstr "Kodu Yeni Pencerede Aç"
|
42 |
+
|
43 |
+
# @ crayon-syntax-highlighter
|
44 |
+
#: ../crayon_formatter.class.php:273
|
45 |
+
msgid "Toggle Line Numbers"
|
46 |
+
msgstr "Satır Numaralarına Geç"
|
47 |
+
|
48 |
+
# @ crayon-syntax-highlighter
|
49 |
+
#: ../crayon_formatter.class.php:279
|
50 |
+
msgid "Contains Mixed Languages"
|
51 |
+
msgstr "Karışık Diller içerir"
|
52 |
+
|
53 |
+
# @ crayon-syntax-highlighter
|
54 |
+
#: ../crayon_settings.class.php:138
|
55 |
+
msgid "Hourly"
|
56 |
+
msgstr "Saatlik"
|
57 |
+
|
58 |
+
# @ crayon-syntax-highlighter
|
59 |
+
#: ../crayon_settings.class.php:138
|
60 |
+
msgid "Daily"
|
61 |
+
msgstr "Günlük"
|
62 |
+
|
63 |
+
# @ crayon-syntax-highlighter
|
64 |
+
#: ../crayon_settings.class.php:139
|
65 |
+
msgid "Weekly"
|
66 |
+
msgstr "Haftalık"
|
67 |
+
|
68 |
+
# @ crayon-syntax-highlighter
|
69 |
+
#: ../crayon_settings.class.php:139
|
70 |
+
msgid "Monthly"
|
71 |
+
msgstr "Aylık"
|
72 |
+
|
73 |
+
# @ crayon-syntax-highlighter
|
74 |
+
#: ../crayon_settings.class.php:140
|
75 |
+
msgid "Immediately"
|
76 |
+
msgstr "Hemen"
|
77 |
+
|
78 |
+
# @ crayon-syntax-highlighter
|
79 |
+
#: ../crayon_settings.class.php:150
|
80 |
+
#: ../crayon_settings.class.php:154
|
81 |
msgid "Max"
|
82 |
msgstr "Max"
|
83 |
|
84 |
+
# @ crayon-syntax-highlighter
|
85 |
+
#: ../crayon_settings.class.php:150
|
86 |
+
#: ../crayon_settings.class.php:154
|
87 |
msgid "Min"
|
88 |
msgstr "Min"
|
89 |
|
90 |
+
# @ crayon-syntax-highlighter
|
91 |
+
#: ../crayon_settings.class.php:150
|
92 |
+
#: ../crayon_settings.class.php:154
|
93 |
msgid "Static"
|
94 |
msgstr "Sabit"
|
95 |
|
96 |
+
# @ crayon-syntax-highlighter
|
97 |
+
#: ../crayon_settings.class.php:152
|
98 |
+
#: ../crayon_settings.class.php:156
|
99 |
+
#: ../crayon_settings_wp.class.php:541
|
100 |
+
#: ../crayon_settings_wp.class.php:550
|
101 |
+
#: ../crayon_settings_wp.class.php:649
|
102 |
msgid "Pixels"
|
103 |
msgstr "Piksel"
|
104 |
|
105 |
+
# @ crayon-syntax-highlighter
|
106 |
+
#: ../crayon_settings.class.php:152
|
107 |
+
#: ../crayon_settings.class.php:156
|
108 |
msgid "Percent"
|
109 |
msgstr "Yüzde"
|
110 |
|
111 |
+
# @ crayon-syntax-highlighter
|
112 |
+
#: ../crayon_settings.class.php:165
|
113 |
msgid "None"
|
114 |
msgstr "Yok"
|
115 |
|
116 |
+
# @ crayon-syntax-highlighter
|
117 |
+
#: ../crayon_settings.class.php:165
|
118 |
msgid "Left"
|
119 |
msgstr "Sol"
|
120 |
|
121 |
+
# @ crayon-syntax-highlighter
|
122 |
+
#: ../crayon_settings.class.php:165
|
123 |
msgid "Center"
|
124 |
msgstr "Merkez"
|
125 |
|
126 |
+
# @ crayon-syntax-highlighter
|
127 |
+
#: ../crayon_settings.class.php:165
|
128 |
msgid "Right"
|
129 |
msgstr "Sağ"
|
130 |
|
131 |
+
# @ crayon-syntax-highlighter
|
132 |
+
#: ../crayon_settings.class.php:167
|
133 |
+
#: ../crayon_settings.class.php:189
|
134 |
msgid "On MouseOver"
|
135 |
msgstr "Fare Üstündeyken"
|
136 |
|
137 |
+
# @ crayon-syntax-highlighter
|
138 |
+
#: ../crayon_settings.class.php:167
|
139 |
+
#: ../crayon_settings.class.php:173
|
140 |
msgid "Always"
|
141 |
msgstr "Herzaman"
|
142 |
|
143 |
+
# @ crayon-syntax-highlighter
|
144 |
+
#: ../crayon_settings.class.php:167
|
145 |
+
#: ../crayon_settings.class.php:173
|
146 |
msgid "Never"
|
147 |
msgstr "Asla"
|
148 |
|
149 |
+
# @ crayon-syntax-highlighter
|
150 |
+
#: ../crayon_settings.class.php:173
|
151 |
msgid "When Found"
|
152 |
msgstr "Bulunduğunda"
|
153 |
|
154 |
+
# @ crayon-syntax-highlighter
|
155 |
+
#: ../crayon_settings.class.php:189
|
156 |
msgid "On Double Click"
|
157 |
msgstr "Çift Tık ile aç"
|
158 |
|
159 |
+
# @ crayon-syntax-highlighter
|
160 |
+
#: ../crayon_settings.class.php:189
|
161 |
msgid "On Single Click"
|
162 |
msgstr "Tek Tık ile aç"
|
163 |
|
164 |
+
# @ crayon-syntax-highlighter
|
165 |
+
#: ../crayon_settings.class.php:189
|
166 |
+
msgid "Disable Mouse Events"
|
167 |
+
msgstr "Fare Etkinliği Devre Dışı"
|
168 |
+
|
169 |
+
# @ crayon-syntax-highlighter
|
170 |
+
#: ../crayon_settings.class.php:196
|
171 |
msgid "An error has occurred. Please try again later."
|
172 |
msgstr "Bir hata meydana geldi. Daha sonra tekrar deneyin."
|
173 |
|
174 |
+
# @ crayon-syntax-highlighter
|
175 |
+
#: ../crayon_settings_wp.class.php:44
|
176 |
+
#: ../crayon_settings_wp.class.php:118
|
177 |
+
#: ../crayon_settings_wp.class.php:802
|
|
|
178 |
msgid "Settings"
|
179 |
msgstr "Ayarlar"
|
180 |
|
181 |
+
# @ crayon-syntax-highlighter
|
182 |
+
#: ../crayon_settings_wp.class.php:99
|
183 |
msgid "You do not have sufficient permissions to access this page."
|
184 |
msgstr "Bu sayfaya erişmek için yeterli izinlere sahip değilsiniz."
|
185 |
|
186 |
+
# @ crayon-syntax-highlighter
|
187 |
+
#: ../crayon_settings_wp.class.php:130
|
188 |
msgid "Save Changes"
|
189 |
msgstr "Kaydet"
|
190 |
|
191 |
+
# @ crayon-syntax-highlighter
|
192 |
+
#: ../crayon_settings_wp.class.php:136
|
193 |
msgid "Reset Settings"
|
194 |
msgstr "Ayarları Sıfırla"
|
195 |
|
196 |
+
# @ crayon-syntax-highlighter
|
197 |
+
#: ../crayon_settings_wp.class.php:301
|
198 |
+
msgid "General"
|
199 |
+
msgstr "Genel"
|
200 |
+
|
201 |
+
# @ crayon-syntax-highlighter
|
202 |
+
#: ../crayon_settings_wp.class.php:302
|
203 |
+
msgid "Theme"
|
204 |
+
msgstr "Tema"
|
205 |
+
|
206 |
+
# @ crayon-syntax-highlighter
|
207 |
+
#: ../crayon_settings_wp.class.php:303
|
208 |
+
msgid "Font"
|
209 |
+
msgstr "Font"
|
210 |
+
|
211 |
+
# @ crayon-syntax-highlighter
|
212 |
+
#: ../crayon_settings_wp.class.php:304
|
213 |
+
msgid "Metrics"
|
214 |
+
msgstr "Ölçüler"
|
215 |
+
|
216 |
+
# @ crayon-syntax-highlighter
|
217 |
+
#: ../crayon_settings_wp.class.php:305
|
218 |
+
msgid "Toolbar"
|
219 |
+
msgstr "Araç Çubuğu"
|
220 |
+
|
221 |
+
# @ crayon-syntax-highlighter
|
222 |
+
#: ../crayon_settings_wp.class.php:306
|
223 |
+
msgid "Lines"
|
224 |
+
msgstr "Satırlar"
|
225 |
+
|
226 |
+
# @ crayon-syntax-highlighter
|
227 |
+
#: ../crayon_settings_wp.class.php:307
|
228 |
+
msgid "Code"
|
229 |
+
msgstr "Kod"
|
230 |
+
|
231 |
+
# @ crayon-syntax-highlighter
|
232 |
+
#: ../crayon_settings_wp.class.php:308
|
233 |
+
msgid "Tags"
|
234 |
+
msgstr "Etiketler"
|
235 |
+
|
236 |
+
# @ crayon-syntax-highlighter
|
237 |
+
#: ../crayon_settings_wp.class.php:309
|
238 |
+
msgid "Languages"
|
239 |
+
msgstr "Diller"
|
240 |
+
|
241 |
+
# @ crayon-syntax-highlighter
|
242 |
+
#: ../crayon_settings_wp.class.php:310
|
243 |
+
msgid "Files"
|
244 |
+
msgstr "Dosyalar"
|
245 |
+
|
246 |
+
# @ crayon-syntax-highlighter
|
247 |
+
#: ../crayon_settings_wp.class.php:311
|
248 |
+
msgid "Tag Editor"
|
249 |
+
msgstr "Etiket Düzenleyici"
|
250 |
+
|
251 |
+
# @ crayon-syntax-highlighter
|
252 |
+
#: ../crayon_settings_wp.class.php:312
|
253 |
+
msgid "Misc"
|
254 |
+
msgstr "Çeşitli"
|
255 |
+
|
256 |
+
# @ crayon-syntax-highlighter
|
257 |
+
#: ../crayon_settings_wp.class.php:315
|
258 |
+
msgid "Debug"
|
259 |
+
msgstr "Hata Ayıklama"
|
260 |
+
|
261 |
+
# @ crayon-syntax-highlighter
|
262 |
+
#: ../crayon_settings_wp.class.php:316
|
263 |
+
msgid "Errors"
|
264 |
+
msgstr "Hatalar"
|
265 |
+
|
266 |
+
# @ crayon-syntax-highlighter
|
267 |
+
#: ../crayon_settings_wp.class.php:317
|
268 |
+
msgid "Log"
|
269 |
+
msgstr "Günlük"
|
270 |
+
|
271 |
+
# @ crayon-syntax-highlighter
|
272 |
+
#: ../crayon_settings_wp.class.php:320
|
273 |
+
msgid "About"
|
274 |
+
msgstr "Hakkında"
|
275 |
+
|
276 |
+
# @ crayon-syntax-highlighter
|
277 |
+
#: ../crayon_settings_wp.class.php:503
|
278 |
+
msgid "Crayon Help"
|
279 |
+
msgstr "Crayon Yardım"
|
280 |
+
|
281 |
+
# @ crayon-syntax-highlighter
|
282 |
+
#: ../crayon_settings_wp.class.php:518
|
283 |
msgid "Height"
|
284 |
msgstr "Yükseklik"
|
285 |
|
286 |
+
# @ crayon-syntax-highlighter
|
287 |
+
#: ../crayon_settings_wp.class.php:524
|
288 |
msgid "Width"
|
289 |
msgstr "Genişlik"
|
290 |
|
291 |
+
# @ crayon-syntax-highlighter
|
292 |
+
#: ../crayon_settings_wp.class.php:530
|
293 |
msgid "Top Margin"
|
294 |
msgstr "Üst Boşluk"
|
295 |
|
296 |
+
# @ crayon-syntax-highlighter
|
297 |
+
#: ../crayon_settings_wp.class.php:531
|
298 |
msgid "Bottom Margin"
|
299 |
msgstr "Alt Boşluk"
|
300 |
|
301 |
+
# @ crayon-syntax-highlighter
|
302 |
+
#: ../crayon_settings_wp.class.php:532
|
303 |
+
#: ../crayon_settings_wp.class.php:537
|
304 |
msgid "Left Margin"
|
305 |
msgstr "Sol Boşluk"
|
306 |
|
307 |
+
# @ crayon-syntax-highlighter
|
308 |
+
#: ../crayon_settings_wp.class.php:533
|
309 |
+
#: ../crayon_settings_wp.class.php:537
|
310 |
msgid "Right Margin"
|
311 |
msgstr "Sağ Boşluk"
|
312 |
|
313 |
+
# @ crayon-syntax-highlighter
|
314 |
+
#: ../crayon_settings_wp.class.php:543
|
315 |
msgid "Horizontal Alignment"
|
316 |
msgstr "Yatay Hizalama"
|
317 |
|
318 |
+
# @ crayon-syntax-highlighter
|
319 |
+
#: ../crayon_settings_wp.class.php:546
|
320 |
msgid "Allow floating elements to surround Crayon"
|
321 |
msgstr "Geçişli elementleri Crayon çevrelemeye izin ver"
|
322 |
|
323 |
+
# @ crayon-syntax-highlighter
|
324 |
+
#: ../crayon_settings_wp.class.php:548
|
325 |
+
msgid "Inline Margin"
|
326 |
+
msgstr "Satıriçi Boşluk"
|
327 |
+
|
328 |
+
# @ crayon-syntax-highlighter
|
329 |
+
#: ../crayon_settings_wp.class.php:556
|
330 |
msgid "Display the Toolbar"
|
331 |
msgstr "Araç çubuğunu göster"
|
332 |
|
333 |
+
# @ crayon-syntax-highlighter
|
334 |
+
#: ../crayon_settings_wp.class.php:559
|
335 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
336 |
msgstr "Araç çubuğunu mümkünse kodları aşağı itmek yerine üstte göster"
|
337 |
|
338 |
+
# @ crayon-syntax-highlighter
|
339 |
+
#: ../crayon_settings_wp.class.php:560
|
340 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
341 |
msgstr "Araç çubuğu üste çıktığında tek tıkla gizle"
|
342 |
|
343 |
+
# @ crayon-syntax-highlighter
|
344 |
+
#: ../crayon_settings_wp.class.php:561
|
345 |
msgid "Delay hiding the toolbar on MouseOut"
|
346 |
msgstr "Fare dışa çıktığında araç çubuğunu gizlemek için bekle"
|
347 |
|
348 |
+
# @ crayon-syntax-highlighter
|
349 |
+
#: ../crayon_settings_wp.class.php:563
|
350 |
msgid "Display the title when provided"
|
351 |
msgstr "Varsa başlığı görüntüle"
|
352 |
|
353 |
+
# @ crayon-syntax-highlighter
|
354 |
+
#: ../crayon_settings_wp.class.php:564
|
355 |
msgid "Display the language"
|
356 |
msgstr "Dilleri göster"
|
357 |
|
358 |
+
# @ crayon-syntax-highlighter
|
359 |
+
#: ../crayon_settings_wp.class.php:571
|
360 |
msgid "Display striped code lines"
|
361 |
msgstr "Şeritli kod satırını göster"
|
362 |
|
363 |
+
# @ crayon-syntax-highlighter
|
364 |
+
#: ../crayon_settings_wp.class.php:572
|
365 |
msgid "Enable line marking for important lines"
|
366 |
msgstr "Önemli satırlar için satır işaretleme etkin"
|
367 |
|
368 |
+
# @ crayon-syntax-highlighter
|
369 |
+
#: ../crayon_settings_wp.class.php:573
|
370 |
msgid "Display line numbers by default"
|
371 |
msgstr "Varsayılan olarak satır numaralarını göster"
|
372 |
|
373 |
+
# @ crayon-syntax-highlighter
|
374 |
+
#: ../crayon_settings_wp.class.php:574
|
375 |
msgid "Enable line number toggling"
|
376 |
msgstr "Satır numaraları geçişi etkin"
|
377 |
|
378 |
+
# @ crayon-syntax-highlighter
|
379 |
+
#: ../crayon_settings_wp.class.php:575
|
380 |
msgid "Start line numbers from"
|
381 |
msgstr "Satır numarasını buradan başlat"
|
382 |
|
383 |
+
# @ crayon-syntax-highlighter
|
384 |
+
#: ../crayon_settings_wp.class.php:585
|
385 |
msgid "When no language is provided, use the fallback"
|
386 |
msgstr "Belirlenmiş bir dil olmadığında son çareyi kullan"
|
387 |
|
388 |
+
# @ crayon-syntax-highlighter
|
389 |
+
#: ../crayon_settings_wp.class.php:591
|
390 |
+
#, fuzzy, php-format
|
391 |
+
msgid "%d language has been detected."
|
392 |
+
msgstr "%d dil tespit edildi."
|
393 |
+
|
394 |
+
# @ crayon-syntax-highlighter
|
395 |
+
#: ../crayon_settings_wp.class.php:592
|
396 |
msgid "Parsing was successful"
|
397 |
msgstr "Ayrıştırma başarılı"
|
398 |
|
399 |
+
# @ crayon-syntax-highlighter
|
400 |
+
#: ../crayon_settings_wp.class.php:592
|
401 |
msgid "Parsing was unsuccessful"
|
402 |
msgstr "Ayrıştırma başarılı değil"
|
403 |
|
404 |
+
# @ crayon-syntax-highlighter
|
405 |
+
#: ../crayon_settings_wp.class.php:598
|
406 |
#, php-format
|
407 |
msgid "The selected language with id %s could not be loaded"
|
408 |
msgstr "ID %s ile seçilen dil yüklenemedi"
|
409 |
|
410 |
+
# @ crayon-syntax-highlighter
|
411 |
+
#: ../crayon_settings_wp.class.php:602
|
412 |
msgid "Show Languages"
|
413 |
msgstr "Dilleri Göster"
|
414 |
|
415 |
+
# @ crayon-syntax-highlighter
|
416 |
+
#: ../crayon_settings_wp.class.php:621
|
417 |
+
msgid "Loading..."
|
418 |
+
msgstr "Yükleniyor..."
|
419 |
+
|
420 |
+
# @ crayon-syntax-highlighter
|
421 |
+
#: ../crayon_settings_wp.class.php:621
|
422 |
+
#: ../crayon_settings_wp.class.php:804
|
423 |
+
msgid "Theme Editor"
|
424 |
+
msgstr "Tema Düzenleyici"
|
425 |
+
|
426 |
+
# @ crayon-syntax-highlighter
|
427 |
+
#: ../crayon_settings_wp.class.php:626
|
428 |
+
#, php-format
|
429 |
+
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
430 |
+
msgstr "Örnek kodu değiştirmek için %1$sSon çare dili%2$s değiştirin. 5-7 satırlar işaretli."
|
431 |
+
|
432 |
+
# @ crayon-syntax-highlighter
|
433 |
+
#: ../crayon_settings_wp.class.php:630
|
434 |
msgid "Enable Live Preview"
|
435 |
msgstr "Ön izleme etkin"
|
436 |
|
437 |
+
# @ crayon-syntax-highlighter
|
438 |
+
#: ../crayon_settings_wp.class.php:632
|
439 |
+
msgid "Enqueue themes in the header (more efficient)."
|
440 |
+
msgstr "Temaları header içinde kuyrukla (daha etkin)."
|
441 |
+
|
442 |
+
# @ crayon-syntax-highlighter
|
443 |
+
#: ../crayon_settings_wp.class.php:632
|
444 |
+
#: ../crayon_settings_wp.class.php:658
|
445 |
+
#: ../crayon_settings_wp.class.php:683
|
446 |
+
#: ../crayon_settings_wp.class.php:690
|
447 |
+
#: ../crayon_settings_wp.class.php:691
|
448 |
+
#: ../crayon_settings_wp.class.php:692
|
449 |
+
#: ../crayon_settings_wp.class.php:693
|
450 |
+
#: ../crayon_settings_wp.class.php:694
|
451 |
+
#: ../crayon_settings_wp.class.php:695
|
452 |
+
#: ../crayon_settings_wp.class.php:709
|
453 |
+
#: ../crayon_settings_wp.class.php:716
|
454 |
+
#: ../crayon_settings_wp.class.php:717
|
455 |
+
msgid "?"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
# @ crayon-syntax-highlighter
|
459 |
+
#: ../crayon_settings_wp.class.php:635
|
460 |
#, php-format
|
461 |
msgid "The selected theme with id %s could not be loaded"
|
462 |
msgstr "ID %s ile seçilen tema yüklenemedi"
|
463 |
|
464 |
+
# @ crayon-syntax-highlighter
|
465 |
+
#: ../crayon_settings_wp.class.php:647
|
466 |
msgid "Custom Font Size"
|
467 |
msgstr "Kişisel Font Boyutu"
|
468 |
|
469 |
+
# @ crayon-syntax-highlighter
|
470 |
+
#: ../crayon_settings_wp.class.php:652
|
471 |
#, php-format
|
472 |
msgid "The selected font with id %s could not be loaded"
|
473 |
msgstr "ID %s ile seçilen font yüklenemedi"
|
474 |
|
475 |
+
# @ crayon-syntax-highlighter
|
476 |
+
#: ../crayon_settings_wp.class.php:658
|
477 |
+
msgid "Enqueue fonts in the header (more efficient)."
|
478 |
+
msgstr "Fontları header içinde kuyrukla (daha etkin)."
|
479 |
+
|
480 |
+
# @ crayon-syntax-highlighter
|
481 |
+
#: ../crayon_settings_wp.class.php:663
|
482 |
msgid "Enable plain code view and display"
|
483 |
msgstr "Düz kod görünümü ve görüntüleme etkin"
|
484 |
|
485 |
+
# @ crayon-syntax-highlighter
|
486 |
+
#: ../crayon_settings_wp.class.php:666
|
487 |
+
msgid "Enable plain code toggling"
|
488 |
+
msgstr "Düz kod geçişi etkin"
|
489 |
+
|
490 |
+
# @ crayon-syntax-highlighter
|
491 |
+
#: ../crayon_settings_wp.class.php:667
|
492 |
+
msgid "Show the plain code by default"
|
493 |
+
msgstr "Düz kodu varsayılan olarak göster"
|
494 |
+
|
495 |
+
# @ crayon-syntax-highlighter
|
496 |
+
#: ../crayon_settings_wp.class.php:668
|
497 |
msgid "Enable code copy/paste"
|
498 |
msgstr "Kod kopyala/yapıştır etkin"
|
499 |
|
500 |
+
# @ crayon-syntax-highlighter
|
501 |
+
#: ../crayon_settings_wp.class.php:670
|
502 |
msgid "Enable opening code in a window"
|
503 |
msgstr "Kodları bir pencerede açma etkin"
|
504 |
|
505 |
+
# @ crayon-syntax-highlighter
|
506 |
+
#: ../crayon_settings_wp.class.php:671
|
507 |
+
msgid "Always display scrollbars"
|
508 |
+
msgstr "Kaydırma çubuğu her zaman göster"
|
509 |
+
|
510 |
+
# @ crayon-syntax-highlighter
|
511 |
+
#: ../crayon_settings_wp.class.php:672
|
512 |
msgid "Tab size in spaces"
|
513 |
msgstr "Boşluk sekme boyutu"
|
514 |
|
515 |
+
# @ crayon-syntax-highlighter
|
516 |
+
#: ../crayon_settings_wp.class.php:677
|
517 |
+
msgid "Decode HTML entities in code"
|
518 |
+
msgstr "HTML varlıkları kod içinde çöz"
|
519 |
+
|
520 |
+
# @ crayon-syntax-highlighter
|
521 |
+
#: ../crayon_settings_wp.class.php:679
|
522 |
+
msgid "Decode HTML entities in attributes"
|
523 |
+
msgstr "HTML varlıkları nitelikler içinde çöz"
|
524 |
+
|
525 |
+
# @ crayon-syntax-highlighter
|
526 |
+
#: ../crayon_settings_wp.class.php:681
|
527 |
msgid "Remove whitespace surrounding the shortcode content"
|
528 |
msgstr "Kısakod içeriğini çevreleyen beyaz alanları kaldır"
|
529 |
|
530 |
+
# @ crayon-syntax-highlighter
|
531 |
+
#: ../crayon_settings_wp.class.php:683
|
532 |
+
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
533 |
+
msgstr "Sınırlayıcılar ve etiketler ile Karışık Dil Vurgulamaya izin ver."
|
534 |
+
|
535 |
+
# @ crayon-syntax-highlighter
|
536 |
+
#: ../crayon_settings_wp.class.php:685
|
537 |
+
msgid "Show Mixed Language Icon (+)"
|
538 |
+
msgstr "Karışık Dil Simgesini Göster (+)"
|
539 |
+
|
540 |
+
# @ crayon-syntax-highlighter
|
541 |
+
#: ../crayon_settings_wp.class.php:690
|
542 |
+
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
543 |
+
msgstr "Crayons olarak [php][/php] gibi küçük etiketleri yakala."
|
544 |
+
|
545 |
+
# @ crayon-syntax-highlighter
|
546 |
+
#: ../crayon_settings_wp.class.php:691
|
547 |
+
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
548 |
+
msgstr "Cümle içinde {php}{/php} gibi satıriçi etiketleri yakalayın."
|
549 |
+
|
550 |
+
# @ crayon-syntax-highlighter
|
551 |
+
#: ../crayon_settings_wp.class.php:692
|
552 |
+
msgid "Wrap Inline Tags"
|
553 |
+
msgstr "Satıriçi Etiketleri Sar"
|
554 |
+
|
555 |
+
# @ crayon-syntax-highlighter
|
556 |
+
#: ../crayon_settings_wp.class.php:693
|
557 |
+
msgid "Capture `backquotes` as <code>"
|
558 |
+
msgstr "<code> olarak `backquotes` yakalayın"
|
559 |
+
|
560 |
+
# @ crayon-syntax-highlighter
|
561 |
+
#: ../crayon_settings_wp.class.php:694
|
562 |
+
msgid "Capture <pre> tags as Crayons"
|
563 |
+
msgstr "<pre> etiketleri Crayons olarak yakala"
|
564 |
+
|
565 |
+
# @ crayon-syntax-highlighter
|
566 |
+
#: ../crayon_settings_wp.class.php:695
|
567 |
+
msgid "Enable [plain][/plain] tag."
|
568 |
+
msgstr "[plain][/plain] etiketi etkin."
|
569 |
+
|
570 |
+
# @ crayon-syntax-highlighter
|
571 |
+
#: ../crayon_settings_wp.class.php:700
|
572 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
573 |
msgstr "Yerel dosyalar yüklendiği ve URL için bağlantılı yol verildiğinde, kesin yolu kullan"
|
574 |
|
575 |
+
# @ crayon-syntax-highlighter
|
576 |
+
#: ../crayon_settings_wp.class.php:703
|
577 |
+
msgid "Followed by your relative URL."
|
578 |
+
msgstr "Bağlantılı URL tarafından izlendi."
|
579 |
+
|
580 |
+
# @ crayon-syntax-highlighter
|
581 |
+
#: ../crayon_settings_wp.class.php:707
|
582 |
+
#, php-format
|
583 |
+
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
584 |
+
msgstr "%s kullanarak <pre> sınıf niteliği içinde ayar adlarını değerlerden ayır"
|
585 |
+
|
586 |
+
# @ crayon-syntax-highlighter
|
587 |
+
#: ../crayon_settings_wp.class.php:713
|
588 |
msgid "Clear the cache used to store remote code requests"
|
589 |
msgstr "Uzak kod isteklerini depolamak için ön belleği temizle"
|
590 |
|
591 |
+
# @ crayon-syntax-highlighter
|
592 |
+
#: ../crayon_settings_wp.class.php:715
|
593 |
msgid "Clear Now"
|
594 |
msgstr "Şimdi Temizle"
|
595 |
|
596 |
+
# @ crayon-syntax-highlighter
|
597 |
+
#: ../crayon_settings_wp.class.php:716
|
598 |
+
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
599 |
+
msgstr "Sadece ihtiyaç olduğunda Crayon CSS ve JavaScript yüklemeyi dene"
|
600 |
+
|
601 |
+
# @ crayon-syntax-highlighter
|
602 |
+
#: ../crayon_settings_wp.class.php:717
|
603 |
+
msgid "Disable enqueuing for page templates that may contain The Loop."
|
604 |
+
msgstr "Döngü içeren sayfa şablonları için kuyruklama devre dışı."
|
605 |
+
|
606 |
+
# @ crayon-syntax-highlighter
|
607 |
+
#: ../crayon_settings_wp.class.php:718
|
608 |
+
msgid "Allow Crayons inside comments"
|
609 |
+
msgstr "Yorum içinde Crayons izini verin"
|
610 |
+
|
611 |
+
# @ crayon-syntax-highlighter
|
612 |
+
#: ../crayon_settings_wp.class.php:719
|
613 |
+
msgid "Remove Crayons from excerpts"
|
614 |
+
msgstr "Crayon'ı alıntılardan çıkar"
|
615 |
+
|
616 |
+
# @ crayon-syntax-highlighter
|
617 |
+
#: ../crayon_settings_wp.class.php:720
|
618 |
+
msgid "Load Crayons only from the main Wordpress query"
|
619 |
+
msgstr "Sadece ana Wordpress sorgusundan Crayons yükle"
|
620 |
+
|
621 |
+
# @ crayon-syntax-highlighter
|
622 |
+
#: ../crayon_settings_wp.class.php:721
|
623 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
624 |
msgstr "Dokunmatik cihazlar için fare hareketlerini devre dışı bırak (örn. Fare Üzerinde)"
|
625 |
|
626 |
+
# @ crayon-syntax-highlighter
|
627 |
+
#: ../crayon_settings_wp.class.php:722
|
628 |
msgid "Disable animations"
|
629 |
msgstr "Animasyonlar devre dışı"
|
630 |
|
631 |
+
# @ crayon-syntax-highlighter
|
632 |
+
#: ../crayon_settings_wp.class.php:723
|
633 |
msgid "Disable runtime stats"
|
634 |
msgstr "İşlem istatistikleri devre dışı"
|
635 |
|
636 |
+
# @ crayon-syntax-highlighter
|
637 |
+
#: ../crayon_settings_wp.class.php:729
|
638 |
msgid "Log errors for individual Crayons"
|
639 |
msgstr "Özgün Crayons hataları günlükle"
|
640 |
|
641 |
+
# @ crayon-syntax-highlighter
|
642 |
+
#: ../crayon_settings_wp.class.php:730
|
643 |
msgid "Log system-wide errors"
|
644 |
msgstr "Sistem-geneli hataları günlükle"
|
645 |
|
646 |
+
# @ crayon-syntax-highlighter
|
647 |
+
#: ../crayon_settings_wp.class.php:731
|
648 |
msgid "Display custom message for errors"
|
649 |
msgstr "Hatalar için kişisel mesaj göster"
|
650 |
|
651 |
+
# @ crayon-syntax-highlighter
|
652 |
+
#: ../crayon_settings_wp.class.php:743
|
653 |
msgid "Show Log"
|
654 |
msgstr "Günlüğü Göster"
|
655 |
|
656 |
+
# @ crayon-syntax-highlighter
|
657 |
+
#: ../crayon_settings_wp.class.php:743
|
658 |
+
msgid "Hide Log"
|
659 |
+
msgstr "Günlüğü Gizle"
|
660 |
+
|
661 |
+
# @ crayon-syntax-highlighter
|
662 |
+
#: ../crayon_settings_wp.class.php:745
|
663 |
msgid "Clear Log"
|
664 |
msgstr "Günlüğü Temizle"
|
665 |
|
666 |
+
# @ crayon-syntax-highlighter
|
667 |
+
#: ../crayon_settings_wp.class.php:746
|
668 |
msgid "Email Admin"
|
669 |
msgstr "Yönetici E-Posta"
|
670 |
|
671 |
+
# @ crayon-syntax-highlighter
|
672 |
+
#: ../crayon_settings_wp.class.php:748
|
673 |
msgid "Email Developer"
|
674 |
msgstr "Geliştirici E-Posta"
|
675 |
|
676 |
+
# @ crayon-syntax-highlighter
|
677 |
+
#: ../crayon_settings_wp.class.php:750
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
678 |
msgid "The log is currently empty."
|
679 |
msgstr "Günlük şu anda boş."
|
680 |
|
681 |
+
# @ crayon-syntax-highlighter
|
682 |
+
#: ../crayon_settings_wp.class.php:752
|
683 |
msgid "The log file exists and is writable."
|
684 |
msgstr "Günlük dosyası var ve yazılabilir."
|
685 |
|
686 |
+
# @ crayon-syntax-highlighter
|
687 |
+
#: ../crayon_settings_wp.class.php:752
|
688 |
msgid "The log file exists and is not writable."
|
689 |
msgstr "Günlük dosyası var ve yazılabilir değil."
|
690 |
|
691 |
+
# @ crayon-syntax-highlighter
|
692 |
+
#: ../crayon_settings_wp.class.php:754
|
693 |
msgid "The log file does not exist and is not writable."
|
694 |
msgstr "Günlük dosyası yok ve yazılabilir değil."
|
695 |
|
696 |
+
# @ crayon-syntax-highlighter
|
697 |
+
#: ../crayon_settings_wp.class.php:764
|
698 |
+
msgid "Version"
|
699 |
+
msgstr "Sürüm"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
700 |
|
701 |
+
# @ crayon-syntax-highlighter
|
702 |
+
#: ../crayon_settings_wp.class.php:766
|
703 |
+
msgid "Developer"
|
704 |
+
msgstr "Geliştirici"
|
705 |
|
706 |
+
# @ crayon-syntax-highlighter
|
707 |
+
#: ../crayon_settings_wp.class.php:767
|
708 |
msgid "Translators"
|
709 |
msgstr "Çevirmenler"
|
710 |
|
711 |
+
# @ crayon-syntax-highlighter
|
712 |
+
#: ../crayon_settings_wp.class.php:790
|
713 |
+
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
714 |
+
msgstr "Aylar boyu sıkı çalışma ve sayısız saatlerin sonucudur. Bu devam eden bir projedir, motivasyonumu arttırın!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
|
716 |
+
# @ crayon-syntax-highlighter
|
717 |
+
#: ../crayon_settings_wp.class.php:806
|
718 |
+
msgid "Donate"
|
719 |
+
msgstr "Bağış"
|
|
|
720 |
|
721 |
+
# @ crayon-syntax-highlighter
|
722 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:57
|
723 |
msgid "Add Crayon Code"
|
724 |
msgstr "Crayon Kod Ekle"
|
725 |
|
726 |
+
# @ crayon-syntax-highlighter
|
727 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:58
|
728 |
msgid "Edit Crayon Code"
|
729 |
msgstr "Crayon Kodu Düzenle"
|
730 |
|
731 |
+
# @ crayon-syntax-highlighter
|
732 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:59
|
733 |
msgid "Add"
|
734 |
msgstr "Ekle"
|
735 |
|
736 |
+
# @ crayon-syntax-highlighter
|
737 |
+
#: ../util/tag-editor/crayon_tag_editor_wp.class.php:60
|
738 |
msgid "Save"
|
739 |
msgstr "Kaydet"
|
740 |
|
741 |
+
# @ crayon-syntax-highlighter
|
742 |
+
#: ../util/tag-editor/crayon_te_content.php:65
|
743 |
msgid "Title"
|
744 |
msgstr "Başlık"
|
745 |
|
746 |
+
# @ crayon-syntax-highlighter
|
747 |
+
#: ../util/tag-editor/crayon_te_content.php:67
|
748 |
+
msgid "A short description"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
# @ crayon-syntax-highlighter
|
752 |
+
#: ../util/tag-editor/crayon_te_content.php:70
|
753 |
msgid "Inline"
|
754 |
msgstr "Satıriçi"
|
755 |
|
756 |
+
# @ crayon-syntax-highlighter
|
757 |
+
#: ../util/tag-editor/crayon_te_content.php:75
|
758 |
msgid "Language"
|
759 |
msgstr "Dil"
|
760 |
|
761 |
+
# @ crayon-syntax-highlighter
|
762 |
+
#: ../util/tag-editor/crayon_te_content.php:78
|
763 |
msgid "Marked Lines"
|
764 |
msgstr "İşaretli Satırlar"
|
765 |
|
766 |
+
# @ crayon-syntax-highlighter
|
767 |
+
#: ../util/tag-editor/crayon_te_content.php:79
|
768 |
+
msgid "(e.g. 1,2,3-5)"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
# @ crayon-syntax-highlighter
|
772 |
+
#: ../util/tag-editor/crayon_te_content.php:82
|
773 |
msgid "Disable Highlighting"
|
774 |
msgstr "Vurgulamayı İptal et"
|
775 |
|
776 |
+
# @ crayon-syntax-highlighter
|
777 |
+
#: ../util/tag-editor/crayon_te_content.php:87
|
778 |
msgid "Clear"
|
779 |
msgstr "Temizle"
|
780 |
|
781 |
+
# @ crayon-syntax-highlighter
|
782 |
+
#: ../util/tag-editor/crayon_te_content.php:88
|
783 |
msgid "Paste your code here, or type it in manually."
|
784 |
msgstr "Kodu buraya yapıştır, ya da onu el ile yaz."
|
785 |
|
786 |
+
# @ crayon-syntax-highlighter
|
787 |
+
#: ../util/tag-editor/crayon_te_content.php:91
|
788 |
+
msgid "URL"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
# @ crayon-syntax-highlighter
|
792 |
+
#: ../util/tag-editor/crayon_te_content.php:93
|
793 |
+
msgid "Relative local path or absolute URL"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
# @ crayon-syntax-highlighter
|
797 |
+
#: ../util/tag-editor/crayon_te_content.php:96
|
798 |
+
msgid "If the URL fails to load, the code above will be shown instead. If no code exists, an error is shown."
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
# @ crayon-syntax-highlighter
|
802 |
+
#: ../util/tag-editor/crayon_te_content.php:98
|
803 |
+
#, php-format
|
804 |
+
msgid "If a relative local path is given it will be appended to %s - which is defined in %sCrayon > Settings > Files%s."
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
# @ crayon-syntax-highlighter
|
808 |
+
#: ../util/tag-editor/crayon_te_content.php:117
|
809 |
msgid "Change the following settings to override their global values."
|
810 |
msgstr "Genel değerleri geçersiz kılmak için aşağıdaki ayarları değiştirin."
|
811 |
|
812 |
+
# @ crayon-syntax-highlighter
|
813 |
+
#: ../util/tag-editor/crayon_te_content.php:119
|
814 |
msgid "Only changes (shown yellow) are applied."
|
815 |
msgstr "Sadece değişiklikler (sarı ile gösterilir) uygulanır."
|
816 |
|
817 |
+
# @ crayon-syntax-highlighter
|
818 |
+
#: ../util/tag-editor/crayon_te_content.php:121
|
819 |
#, php-format
|
820 |
+
msgid "Future changes to the global settings under %sCrayon > Settings%s won't affect overridden settings."
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
# @ crayon-syntax-highlighter
|
824 |
+
#: ../util/theme-editor/editor.php:16
|
825 |
+
msgid "Back To Settings"
|
826 |
+
msgstr "Ayarlara Geri Dön"
|
827 |
|
trans/crayon-syntax-highlighter-zh_CN.mo
CHANGED
Binary file
|
trans/crayon-syntax-highlighter-zh_CN.po
CHANGED
@@ -19,33 +19,33 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: crayon_formatter.class.php:
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Toggle Plain Code"
|
25 |
msgstr "纯文本显示代码"
|
26 |
|
27 |
-
#: crayon_formatter.class.php:
|
28 |
#, php-format
|
29 |
#@ crayon-syntax-highlighter
|
30 |
msgid "Press %s to Copy, %s to Paste"
|
31 |
msgstr "使用 %s 复制,使用 %s 粘贴。"
|
32 |
|
33 |
-
#: crayon_formatter.class.php:
|
34 |
#@ crayon-syntax-highlighter
|
35 |
msgid "Copy Plain Code"
|
36 |
msgstr "复制代码"
|
37 |
|
38 |
-
#: crayon_formatter.class.php:
|
39 |
#@ crayon-syntax-highlighter
|
40 |
msgid "Open Code In New Window"
|
41 |
msgstr "在新窗口中显示代码"
|
42 |
|
43 |
-
#: crayon_formatter.class.php:
|
44 |
#@ crayon-syntax-highlighter
|
45 |
msgid "Toggle Line Numbers"
|
46 |
msgstr "显示/隐藏行编号"
|
47 |
|
48 |
-
#: crayon_formatter.class.php:
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Contains Mixed Languages"
|
51 |
msgstr "含多种语言"
|
@@ -95,9 +95,9 @@ msgstr "指定"
|
|
95 |
|
96 |
#: crayon_settings.class.php:152
|
97 |
#: crayon_settings.class.php:156
|
98 |
-
#: crayon_settings_wp.class.php:
|
99 |
-
#: crayon_settings_wp.class.php:
|
100 |
-
#: crayon_settings_wp.class.php:
|
101 |
#@ crayon-syntax-highlighter
|
102 |
msgid "Pixels"
|
103 |
msgstr "px"
|
@@ -166,14 +166,14 @@ msgstr "单击"
|
|
166 |
msgid "Disable Mouse Events"
|
167 |
msgstr "禁止鼠标行为"
|
168 |
|
169 |
-
#: crayon_settings.class.php:
|
170 |
#@ crayon-syntax-highlighter
|
171 |
msgid "An error has occurred. Please try again later."
|
172 |
msgstr "发生错误,请稍后重试。"
|
173 |
|
174 |
#: crayon_settings_wp.class.php:44
|
175 |
#: crayon_settings_wp.class.php:118
|
176 |
-
#: crayon_settings_wp.class.php:
|
177 |
#: util/tag-editor/crayon_te_content.php:114
|
178 |
#@ crayon-syntax-highlighter
|
179 |
msgid "Settings"
|
@@ -194,200 +194,200 @@ msgstr "保存"
|
|
194 |
msgid "Reset Settings"
|
195 |
msgstr "初始化设置"
|
196 |
|
197 |
-
#: crayon_settings_wp.class.php:
|
198 |
#@ crayon-syntax-highlighter
|
199 |
msgid "General"
|
200 |
msgstr "一般"
|
201 |
|
202 |
-
#: crayon_settings_wp.class.php:
|
203 |
#@ crayon-syntax-highlighter
|
204 |
msgid "Theme"
|
205 |
msgstr "主题"
|
206 |
|
207 |
-
#: crayon_settings_wp.class.php:
|
208 |
#@ crayon-syntax-highlighter
|
209 |
msgid "Font"
|
210 |
msgstr "字体"
|
211 |
|
212 |
-
#: crayon_settings_wp.class.php:
|
213 |
#@ crayon-syntax-highlighter
|
214 |
msgid "Metrics"
|
215 |
msgstr "排版"
|
216 |
|
217 |
-
#: crayon_settings_wp.class.php:
|
218 |
#@ crayon-syntax-highlighter
|
219 |
msgid "Toolbar"
|
220 |
msgstr "工具栏"
|
221 |
|
222 |
-
#: crayon_settings_wp.class.php:
|
223 |
#@ crayon-syntax-highlighter
|
224 |
msgid "Lines"
|
225 |
msgstr "行"
|
226 |
|
227 |
-
#: crayon_settings_wp.class.php:
|
228 |
#: util/tag-editor/crayon_te_content.php:87
|
229 |
#@ crayon-syntax-highlighter
|
230 |
msgid "Code"
|
231 |
msgstr "代码"
|
232 |
|
233 |
-
#: crayon_settings_wp.class.php:
|
234 |
#@ crayon-syntax-highlighter
|
235 |
msgid "Tags"
|
236 |
msgstr "标签"
|
237 |
|
238 |
-
#: crayon_settings_wp.class.php:
|
239 |
#@ crayon-syntax-highlighter
|
240 |
msgid "Languages"
|
241 |
msgstr "语言"
|
242 |
|
243 |
-
#: crayon_settings_wp.class.php:
|
244 |
#@ crayon-syntax-highlighter
|
245 |
msgid "Files"
|
246 |
msgstr "文件"
|
247 |
|
248 |
-
#: crayon_settings_wp.class.php:
|
249 |
#@ crayon-syntax-highlighter
|
250 |
msgid "Tag Editor"
|
251 |
msgstr "编辑器"
|
252 |
|
253 |
-
#: crayon_settings_wp.class.php:
|
254 |
#@ crayon-syntax-highlighter
|
255 |
msgid "Misc"
|
256 |
msgstr "其它"
|
257 |
|
258 |
-
#: crayon_settings_wp.class.php:
|
259 |
#@ crayon-syntax-highlighter
|
260 |
msgid "Debug"
|
261 |
msgstr "调试"
|
262 |
|
263 |
-
#: crayon_settings_wp.class.php:
|
264 |
#@ crayon-syntax-highlighter
|
265 |
msgid "Errors"
|
266 |
msgstr "错误"
|
267 |
|
268 |
-
#: crayon_settings_wp.class.php:
|
269 |
#@ crayon-syntax-highlighter
|
270 |
msgid "Log"
|
271 |
msgstr "日志"
|
272 |
|
273 |
-
#: crayon_settings_wp.class.php:
|
274 |
#@ crayon-syntax-highlighter
|
275 |
msgid "About"
|
276 |
msgstr "关于"
|
277 |
|
278 |
-
#: crayon_settings_wp.class.php:
|
279 |
#@ crayon-syntax-highlighter
|
280 |
msgid "Crayon Help"
|
281 |
msgstr "帮助"
|
282 |
|
283 |
-
#: crayon_settings_wp.class.php:
|
284 |
#@ crayon-syntax-highlighter
|
285 |
msgid "Height"
|
286 |
msgstr "高"
|
287 |
|
288 |
-
#: crayon_settings_wp.class.php:
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Width"
|
291 |
msgstr "宽"
|
292 |
|
293 |
-
#: crayon_settings_wp.class.php:
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Top Margin"
|
296 |
msgstr "顶部外边距"
|
297 |
|
298 |
-
#: crayon_settings_wp.class.php:
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Bottom Margin"
|
301 |
msgstr "底部外边距"
|
302 |
|
303 |
-
#: crayon_settings_wp.class.php:
|
304 |
-
#: crayon_settings_wp.class.php:
|
305 |
#@ crayon-syntax-highlighter
|
306 |
msgid "Left Margin"
|
307 |
msgstr "左外边距"
|
308 |
|
309 |
-
#: crayon_settings_wp.class.php:
|
310 |
-
#: crayon_settings_wp.class.php:
|
311 |
#@ crayon-syntax-highlighter
|
312 |
msgid "Right Margin"
|
313 |
msgstr "右外边距"
|
314 |
|
315 |
-
#: crayon_settings_wp.class.php:
|
316 |
#@ crayon-syntax-highlighter
|
317 |
msgid "Horizontal Alignment"
|
318 |
msgstr "对齐方式"
|
319 |
|
320 |
-
#: crayon_settings_wp.class.php:
|
321 |
#@ crayon-syntax-highlighter
|
322 |
msgid "Allow floating elements to surround Crayon"
|
323 |
msgstr "允许插件代码周围使用浮动元素"
|
324 |
|
325 |
-
#: crayon_settings_wp.class.php:
|
326 |
#@ crayon-syntax-highlighter
|
327 |
msgid "Inline Margin"
|
328 |
msgstr "间距"
|
329 |
|
330 |
-
#: crayon_settings_wp.class.php:
|
331 |
#@ crayon-syntax-highlighter
|
332 |
msgid "Display the Toolbar"
|
333 |
msgstr "工具栏显示"
|
334 |
|
335 |
-
#: crayon_settings_wp.class.php:
|
336 |
#@ crayon-syntax-highlighter
|
337 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
338 |
msgstr "尽量覆盖工具栏而不是挤到下面"
|
339 |
|
340 |
-
#: crayon_settings_wp.class.php:
|
341 |
#@ crayon-syntax-highlighter
|
342 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
343 |
msgstr "当工具栏被挡住时单击显示"
|
344 |
|
345 |
-
#: crayon_settings_wp.class.php:
|
346 |
#@ crayon-syntax-highlighter
|
347 |
msgid "Delay hiding the toolbar on MouseOut"
|
348 |
msgstr "工具栏消失带延迟效果"
|
349 |
|
350 |
-
#: crayon_settings_wp.class.php:
|
351 |
#@ crayon-syntax-highlighter
|
352 |
msgid "Display the title when provided"
|
353 |
msgstr "当有标题则显示"
|
354 |
|
355 |
-
#: crayon_settings_wp.class.php:
|
356 |
#@ crayon-syntax-highlighter
|
357 |
msgid "Display the language"
|
358 |
msgstr "显示语言"
|
359 |
|
360 |
-
#: crayon_settings_wp.class.php:
|
361 |
#@ crayon-syntax-highlighter
|
362 |
msgid "Display striped code lines"
|
363 |
msgstr "条纹显示代码"
|
364 |
|
365 |
-
#: crayon_settings_wp.class.php:
|
366 |
#@ crayon-syntax-highlighter
|
367 |
msgid "Enable line marking for important lines"
|
368 |
msgstr "允许关键行高亮"
|
369 |
|
370 |
-
#: crayon_settings_wp.class.php:
|
371 |
#@ crayon-syntax-highlighter
|
372 |
msgid "Display line numbers by default"
|
373 |
msgstr "默认显示每行编号"
|
374 |
|
375 |
-
#: crayon_settings_wp.class.php:
|
376 |
#@ crayon-syntax-highlighter
|
377 |
msgid "Enable line number toggling"
|
378 |
msgstr "允许显示行编号"
|
379 |
|
380 |
-
#: crayon_settings_wp.class.php:
|
381 |
#@ crayon-syntax-highlighter
|
382 |
msgid "Start line numbers from"
|
383 |
msgstr "编号始于"
|
384 |
|
385 |
-
#: crayon_settings_wp.class.php:
|
386 |
#@ crayon-syntax-highlighter
|
387 |
msgid "When no language is provided, use the fallback"
|
388 |
msgstr "当没指定语言,则默认语言为"
|
389 |
|
390 |
-
#: crayon_settings_wp.class.php:
|
391 |
#, php-format
|
392 |
#@ crayon-syntax-highlighter
|
393 |
msgid "%d language has been detected."
|
@@ -395,325 +395,325 @@ msgid_plural "%d languages have been detected."
|
|
395 |
msgstr[0] "已支持 %d 种语言。"
|
396 |
msgstr[1] "已支持 %d 种语言。"
|
397 |
|
398 |
-
#: crayon_settings_wp.class.php:
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Parsing was successful"
|
401 |
msgstr "加载完成"
|
402 |
|
403 |
-
#: crayon_settings_wp.class.php:
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Parsing was unsuccessful"
|
406 |
msgstr "加载失败"
|
407 |
|
408 |
-
#: crayon_settings_wp.class.php:
|
409 |
#, php-format
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "The selected language with id %s could not be loaded"
|
412 |
msgstr "ID为 %s 的语言加载失败"
|
413 |
|
414 |
-
#: crayon_settings_wp.class.php:
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Show Languages"
|
417 |
msgstr "显示全部语言"
|
418 |
|
419 |
-
#: crayon_settings_wp.class.php:
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Loading..."
|
422 |
msgstr "载入中..."
|
423 |
|
424 |
-
#: crayon_settings_wp.class.php:
|
425 |
-
#: crayon_settings_wp.class.php:
|
426 |
#: util/theme-editor/editor.php:14
|
427 |
#@ crayon-syntax-highlighter
|
428 |
msgid "Theme Editor"
|
429 |
msgstr "主题编辑器"
|
430 |
|
431 |
-
#: crayon_settings_wp.class.php:
|
432 |
#, php-format
|
433 |
#@ crayon-syntax-highlighter
|
434 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
435 |
msgstr "改变 %1$s默认语言%2$s 可以在这里看到效果,5-7 为重点代码。"
|
436 |
|
437 |
-
#: crayon_settings_wp.class.php:
|
438 |
#@ crayon-syntax-highlighter
|
439 |
msgid "Enable Live Preview"
|
440 |
msgstr "允许即时预览"
|
441 |
|
442 |
-
#: crayon_settings_wp.class.php:
|
443 |
#@ crayon-syntax-highlighter
|
444 |
msgid "Enqueue themes in the header (more efficient)."
|
445 |
msgstr "在头部就加载主题(高效)"
|
446 |
|
447 |
-
#: crayon_settings_wp.class.php:
|
448 |
-
#: crayon_settings_wp.class.php:
|
449 |
-
#: crayon_settings_wp.class.php:
|
450 |
-
#: crayon_settings_wp.class.php:689
|
451 |
#: crayon_settings_wp.class.php:690
|
452 |
#: crayon_settings_wp.class.php:691
|
453 |
#: crayon_settings_wp.class.php:692
|
454 |
#: crayon_settings_wp.class.php:693
|
455 |
#: crayon_settings_wp.class.php:694
|
456 |
-
#: crayon_settings_wp.class.php:
|
457 |
-
#: crayon_settings_wp.class.php:
|
458 |
#: crayon_settings_wp.class.php:716
|
|
|
459 |
#@ crayon-syntax-highlighter
|
460 |
msgid "?"
|
461 |
msgstr "?"
|
462 |
|
463 |
-
#: crayon_settings_wp.class.php:
|
464 |
#, php-format
|
465 |
#@ crayon-syntax-highlighter
|
466 |
msgid "The selected theme with id %s could not be loaded"
|
467 |
msgstr "ID为 %s 的主题加载失败"
|
468 |
|
469 |
-
#: crayon_settings_wp.class.php:
|
470 |
#@ crayon-syntax-highlighter
|
471 |
msgid "Custom Font Size"
|
472 |
msgstr "字体大小"
|
473 |
|
474 |
-
#: crayon_settings_wp.class.php:
|
475 |
#, php-format
|
476 |
#@ crayon-syntax-highlighter
|
477 |
msgid "The selected font with id %s could not be loaded"
|
478 |
msgstr "ID为 %s 的字体加载失败"
|
479 |
|
480 |
-
#: crayon_settings_wp.class.php:
|
481 |
#@ crayon-syntax-highlighter
|
482 |
msgid "Enqueue fonts in the header (more efficient)."
|
483 |
msgstr "在头部就加载字体(高效)"
|
484 |
|
485 |
-
#: crayon_settings_wp.class.php:
|
486 |
#@ crayon-syntax-highlighter
|
487 |
msgid "Enable plain code view and display"
|
488 |
msgstr "允许纯文本显示代码,显示方式"
|
489 |
|
490 |
-
#: crayon_settings_wp.class.php:
|
491 |
#@ crayon-syntax-highlighter
|
492 |
msgid "Enable plain code toggling"
|
493 |
msgstr "允许纯文本显示代码"
|
494 |
|
495 |
-
#: crayon_settings_wp.class.php:
|
496 |
#@ crayon-syntax-highlighter
|
497 |
msgid "Show the plain code by default"
|
498 |
msgstr "默认纯文本显示代码"
|
499 |
|
500 |
-
#: crayon_settings_wp.class.php:
|
501 |
#@ crayon-syntax-highlighter
|
502 |
msgid "Enable code copy/paste"
|
503 |
msgstr "允许代码复制/粘贴"
|
504 |
|
505 |
-
#: crayon_settings_wp.class.php:
|
506 |
#@ crayon-syntax-highlighter
|
507 |
msgid "Enable opening code in a window"
|
508 |
msgstr "允许新窗口显示代码"
|
509 |
|
510 |
-
#: crayon_settings_wp.class.php:
|
511 |
#@ crayon-syntax-highlighter
|
512 |
msgid "Always display scrollbars"
|
513 |
msgstr "总是显示滚动条"
|
514 |
|
515 |
-
#: crayon_settings_wp.class.php:
|
516 |
#@ crayon-syntax-highlighter
|
517 |
msgid "Tab size in spaces"
|
518 |
msgstr "Tab等于几个空格"
|
519 |
|
520 |
-
#: crayon_settings_wp.class.php:
|
521 |
#@ crayon-syntax-highlighter
|
522 |
msgid "Decode HTML entities in code"
|
523 |
msgstr "在代码中进行HTML解码"
|
524 |
|
525 |
-
#: crayon_settings_wp.class.php:
|
526 |
#@ crayon-syntax-highlighter
|
527 |
msgid "Decode HTML entities in attributes"
|
528 |
msgstr "在属性中进行HTML解码"
|
529 |
|
530 |
-
#: crayon_settings_wp.class.php:
|
531 |
#@ crayon-syntax-highlighter
|
532 |
msgid "Remove whitespace surrounding the shortcode content"
|
533 |
msgstr "删除短代码周围的空白"
|
534 |
|
535 |
-
#: crayon_settings_wp.class.php:
|
536 |
#@ crayon-syntax-highlighter
|
537 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
538 |
msgstr "允许多重语言高亮使用分隔符和标签"
|
539 |
|
540 |
-
#: crayon_settings_wp.class.php:
|
541 |
#@ crayon-syntax-highlighter
|
542 |
msgid "Show Mixed Language Icon (+)"
|
543 |
msgstr "显示多重语言图标 (+)"
|
544 |
|
545 |
-
#: crayon_settings_wp.class.php:
|
546 |
#@ crayon-syntax-highlighter
|
547 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
548 |
msgstr "使用迷你标签(如[php][/php])"
|
549 |
|
550 |
-
#: crayon_settings_wp.class.php:
|
551 |
#@ crayon-syntax-highlighter
|
552 |
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
553 |
msgstr "允许在文中使用标签(如{php}{/php})"
|
554 |
|
555 |
-
#: crayon_settings_wp.class.php:
|
556 |
#@ crayon-syntax-highlighter
|
557 |
msgid "Wrap Inline Tags"
|
558 |
msgstr "文中标签自动换行"
|
559 |
|
560 |
-
#: crayon_settings_wp.class.php:
|
561 |
#@ crayon-syntax-highlighter
|
562 |
msgid "Capture `backquotes` as <code>"
|
563 |
msgstr "把 `backquotes` 绑定为 <code>"
|
564 |
|
565 |
-
#: crayon_settings_wp.class.php:
|
566 |
#@ crayon-syntax-highlighter
|
567 |
msgid "Capture <pre> tags as Crayons"
|
568 |
msgstr "指定 <pre> 为插件所有"
|
569 |
|
570 |
-
#: crayon_settings_wp.class.php:
|
571 |
#@ crayon-syntax-highlighter
|
572 |
msgid "Enable [plain][/plain] tag."
|
573 |
msgstr "启用 [plain][/plain] 标签"
|
574 |
|
575 |
-
#: crayon_settings_wp.class.php:
|
576 |
#@ crayon-syntax-highlighter
|
577 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
578 |
msgstr "当URL为相对路径,使用的绝对路径为"
|
579 |
|
580 |
-
#: crayon_settings_wp.class.php:
|
581 |
#@ crayon-syntax-highlighter
|
582 |
msgid "Followed by your relative URL."
|
583 |
msgstr "置于相对路径之前"
|
584 |
|
585 |
-
#: crayon_settings_wp.class.php:
|
586 |
#, php-format
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
589 |
msgstr "<pre> 标签中使用 %s 分割每个属性与属性值。"
|
590 |
|
591 |
-
#: crayon_settings_wp.class.php:
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Clear the cache used to store remote code requests"
|
594 |
msgstr "清空用于存储远程代码的缓存频率"
|
595 |
|
596 |
-
#: crayon_settings_wp.class.php:
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Clear Now"
|
599 |
msgstr "立刻清空"
|
600 |
|
601 |
-
#: crayon_settings_wp.class.php:
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
604 |
msgstr "按需加载插件的CSS与JavaScript"
|
605 |
|
606 |
-
#: crayon_settings_wp.class.php:
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Disable enqueuing for page templates that may contain The Loop."
|
609 |
msgstr "当可能造成循环时禁用加载页面模板"
|
610 |
|
611 |
-
#: crayon_settings_wp.class.php:
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "Allow Crayons inside comments"
|
614 |
msgstr "允许在评论中使用"
|
615 |
|
616 |
-
#: crayon_settings_wp.class.php:
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Load Crayons only from the main Wordpress query"
|
619 |
msgstr "仅在Wordpress主请求中加载插件"
|
620 |
|
621 |
-
#: crayon_settings_wp.class.php:
|
622 |
#@ crayon-syntax-highlighter
|
623 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
624 |
msgstr "使用触屏设备时禁止鼠标行为(如鼠标经过)"
|
625 |
|
626 |
-
#: crayon_settings_wp.class.php:
|
627 |
#@ crayon-syntax-highlighter
|
628 |
msgid "Disable animations"
|
629 |
msgstr "禁止动画效果"
|
630 |
|
631 |
-
#: crayon_settings_wp.class.php:
|
632 |
#@ crayon-syntax-highlighter
|
633 |
msgid "Disable runtime stats"
|
634 |
msgstr "禁止运行时间统计"
|
635 |
|
636 |
-
#: crayon_settings_wp.class.php:
|
637 |
#@ crayon-syntax-highlighter
|
638 |
msgid "Log errors for individual Crayons"
|
639 |
msgstr "使用独立的错误日志"
|
640 |
|
641 |
-
#: crayon_settings_wp.class.php:
|
642 |
#@ crayon-syntax-highlighter
|
643 |
msgid "Log system-wide errors"
|
644 |
msgstr "启用系统错误日志"
|
645 |
|
646 |
-
#: crayon_settings_wp.class.php:
|
647 |
#@ crayon-syntax-highlighter
|
648 |
msgid "Display custom message for errors"
|
649 |
msgstr "自定义错误提示"
|
650 |
|
651 |
-
#: crayon_settings_wp.class.php:
|
652 |
#@ crayon-syntax-highlighter
|
653 |
msgid "Show Log"
|
654 |
msgstr "显示日志"
|
655 |
|
656 |
-
#: crayon_settings_wp.class.php:
|
657 |
#@ crayon-syntax-highlighter
|
658 |
msgid "Hide Log"
|
659 |
msgstr "隐藏日志"
|
660 |
|
661 |
-
#: crayon_settings_wp.class.php:
|
662 |
#@ crayon-syntax-highlighter
|
663 |
msgid "Clear Log"
|
664 |
msgstr "清空日志"
|
665 |
|
666 |
-
#: crayon_settings_wp.class.php:
|
667 |
#@ crayon-syntax-highlighter
|
668 |
msgid "Email Admin"
|
669 |
msgstr "发邮件给管理员"
|
670 |
|
671 |
-
#: crayon_settings_wp.class.php:
|
672 |
#@ crayon-syntax-highlighter
|
673 |
msgid "Email Developer"
|
674 |
msgstr "发邮件给开发者"
|
675 |
|
676 |
-
#: crayon_settings_wp.class.php:
|
677 |
#@ crayon-syntax-highlighter
|
678 |
msgid "The log is currently empty."
|
679 |
msgstr "日志为空,"
|
680 |
|
681 |
-
#: crayon_settings_wp.class.php:
|
682 |
#@ crayon-syntax-highlighter
|
683 |
msgid "The log file exists and is writable."
|
684 |
msgstr "日志文件存在并可写。"
|
685 |
|
686 |
-
#: crayon_settings_wp.class.php:
|
687 |
#@ crayon-syntax-highlighter
|
688 |
msgid "The log file exists and is not writable."
|
689 |
msgstr "日志文件存在但不可写。"
|
690 |
|
691 |
-
#: crayon_settings_wp.class.php:
|
692 |
#@ crayon-syntax-highlighter
|
693 |
msgid "The log file does not exist and is not writable."
|
694 |
msgstr "日志文件不存且不可写。"
|
695 |
|
696 |
-
#: crayon_settings_wp.class.php:
|
697 |
#@ crayon-syntax-highlighter
|
698 |
msgid "Version"
|
699 |
msgstr "版本"
|
700 |
|
701 |
-
#: crayon_settings_wp.class.php:
|
702 |
#@ crayon-syntax-highlighter
|
703 |
msgid "Developer"
|
704 |
msgstr "开发者"
|
705 |
|
706 |
-
#: crayon_settings_wp.class.php:
|
707 |
#@ crayon-syntax-highlighter
|
708 |
msgid "Translators"
|
709 |
msgstr "翻译者"
|
710 |
|
711 |
-
#: crayon_settings_wp.class.php:
|
712 |
#@ crayon-syntax-highlighter
|
713 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
714 |
msgstr "本插件是数月辛勤劳动的结果,为了让它不断的完善,如果你喜欢它,请告诉我!"
|
715 |
|
716 |
-
#: crayon_settings_wp.class.php:
|
717 |
#@ crayon-syntax-highlighter
|
718 |
msgid "Donate"
|
719 |
msgstr "捐助"
|
@@ -748,12 +748,6 @@ msgstr ""
|
|
748 |
msgid "http://ak.net84.net/"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#. translators: plugin header field 'Version'
|
752 |
-
#: crayon_wp.class.php:0
|
753 |
-
#@ crayon-syntax-highlighter
|
754 |
-
msgid "1.9.0"
|
755 |
-
msgstr ""
|
756 |
-
|
757 |
#: util/tag-editor/crayon_tag_editor_wp.class.php:57
|
758 |
#@ crayon-syntax-highlighter
|
759 |
msgid "Add Crayon Code"
|
@@ -861,3 +855,14 @@ msgstr "其它设置会沿用默认设置(%sCrayon > Settings%s)。"
|
|
861 |
msgid "Back To Settings"
|
862 |
msgstr "返回设置"
|
863 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: crayon_formatter.class.php:266
|
23 |
#@ crayon-syntax-highlighter
|
24 |
msgid "Toggle Plain Code"
|
25 |
msgstr "纯文本显示代码"
|
26 |
|
27 |
+
#: crayon_formatter.class.php:268
|
28 |
#, php-format
|
29 |
#@ crayon-syntax-highlighter
|
30 |
msgid "Press %s to Copy, %s to Paste"
|
31 |
msgstr "使用 %s 复制,使用 %s 粘贴。"
|
32 |
|
33 |
+
#: crayon_formatter.class.php:268
|
34 |
#@ crayon-syntax-highlighter
|
35 |
msgid "Copy Plain Code"
|
36 |
msgstr "复制代码"
|
37 |
|
38 |
+
#: crayon_formatter.class.php:270
|
39 |
#@ crayon-syntax-highlighter
|
40 |
msgid "Open Code In New Window"
|
41 |
msgstr "在新窗口中显示代码"
|
42 |
|
43 |
+
#: crayon_formatter.class.php:273
|
44 |
#@ crayon-syntax-highlighter
|
45 |
msgid "Toggle Line Numbers"
|
46 |
msgstr "显示/隐藏行编号"
|
47 |
|
48 |
+
#: crayon_formatter.class.php:279
|
49 |
#@ crayon-syntax-highlighter
|
50 |
msgid "Contains Mixed Languages"
|
51 |
msgstr "含多种语言"
|
95 |
|
96 |
#: crayon_settings.class.php:152
|
97 |
#: crayon_settings.class.php:156
|
98 |
+
#: crayon_settings_wp.class.php:541
|
99 |
+
#: crayon_settings_wp.class.php:550
|
100 |
+
#: crayon_settings_wp.class.php:649
|
101 |
#@ crayon-syntax-highlighter
|
102 |
msgid "Pixels"
|
103 |
msgstr "px"
|
166 |
msgid "Disable Mouse Events"
|
167 |
msgstr "禁止鼠标行为"
|
168 |
|
169 |
+
#: crayon_settings.class.php:196
|
170 |
#@ crayon-syntax-highlighter
|
171 |
msgid "An error has occurred. Please try again later."
|
172 |
msgstr "发生错误,请稍后重试。"
|
173 |
|
174 |
#: crayon_settings_wp.class.php:44
|
175 |
#: crayon_settings_wp.class.php:118
|
176 |
+
#: crayon_settings_wp.class.php:802
|
177 |
#: util/tag-editor/crayon_te_content.php:114
|
178 |
#@ crayon-syntax-highlighter
|
179 |
msgid "Settings"
|
194 |
msgid "Reset Settings"
|
195 |
msgstr "初始化设置"
|
196 |
|
197 |
+
#: crayon_settings_wp.class.php:301
|
198 |
#@ crayon-syntax-highlighter
|
199 |
msgid "General"
|
200 |
msgstr "一般"
|
201 |
|
202 |
+
#: crayon_settings_wp.class.php:302
|
203 |
#@ crayon-syntax-highlighter
|
204 |
msgid "Theme"
|
205 |
msgstr "主题"
|
206 |
|
207 |
+
#: crayon_settings_wp.class.php:303
|
208 |
#@ crayon-syntax-highlighter
|
209 |
msgid "Font"
|
210 |
msgstr "字体"
|
211 |
|
212 |
+
#: crayon_settings_wp.class.php:304
|
213 |
#@ crayon-syntax-highlighter
|
214 |
msgid "Metrics"
|
215 |
msgstr "排版"
|
216 |
|
217 |
+
#: crayon_settings_wp.class.php:305
|
218 |
#@ crayon-syntax-highlighter
|
219 |
msgid "Toolbar"
|
220 |
msgstr "工具栏"
|
221 |
|
222 |
+
#: crayon_settings_wp.class.php:306
|
223 |
#@ crayon-syntax-highlighter
|
224 |
msgid "Lines"
|
225 |
msgstr "行"
|
226 |
|
227 |
+
#: crayon_settings_wp.class.php:307
|
228 |
#: util/tag-editor/crayon_te_content.php:87
|
229 |
#@ crayon-syntax-highlighter
|
230 |
msgid "Code"
|
231 |
msgstr "代码"
|
232 |
|
233 |
+
#: crayon_settings_wp.class.php:308
|
234 |
#@ crayon-syntax-highlighter
|
235 |
msgid "Tags"
|
236 |
msgstr "标签"
|
237 |
|
238 |
+
#: crayon_settings_wp.class.php:309
|
239 |
#@ crayon-syntax-highlighter
|
240 |
msgid "Languages"
|
241 |
msgstr "语言"
|
242 |
|
243 |
+
#: crayon_settings_wp.class.php:310
|
244 |
#@ crayon-syntax-highlighter
|
245 |
msgid "Files"
|
246 |
msgstr "文件"
|
247 |
|
248 |
+
#: crayon_settings_wp.class.php:311
|
249 |
#@ crayon-syntax-highlighter
|
250 |
msgid "Tag Editor"
|
251 |
msgstr "编辑器"
|
252 |
|
253 |
+
#: crayon_settings_wp.class.php:312
|
254 |
#@ crayon-syntax-highlighter
|
255 |
msgid "Misc"
|
256 |
msgstr "其它"
|
257 |
|
258 |
+
#: crayon_settings_wp.class.php:315
|
259 |
#@ crayon-syntax-highlighter
|
260 |
msgid "Debug"
|
261 |
msgstr "调试"
|
262 |
|
263 |
+
#: crayon_settings_wp.class.php:316
|
264 |
#@ crayon-syntax-highlighter
|
265 |
msgid "Errors"
|
266 |
msgstr "错误"
|
267 |
|
268 |
+
#: crayon_settings_wp.class.php:317
|
269 |
#@ crayon-syntax-highlighter
|
270 |
msgid "Log"
|
271 |
msgstr "日志"
|
272 |
|
273 |
+
#: crayon_settings_wp.class.php:320
|
274 |
#@ crayon-syntax-highlighter
|
275 |
msgid "About"
|
276 |
msgstr "关于"
|
277 |
|
278 |
+
#: crayon_settings_wp.class.php:503
|
279 |
#@ crayon-syntax-highlighter
|
280 |
msgid "Crayon Help"
|
281 |
msgstr "帮助"
|
282 |
|
283 |
+
#: crayon_settings_wp.class.php:518
|
284 |
#@ crayon-syntax-highlighter
|
285 |
msgid "Height"
|
286 |
msgstr "高"
|
287 |
|
288 |
+
#: crayon_settings_wp.class.php:524
|
289 |
#@ crayon-syntax-highlighter
|
290 |
msgid "Width"
|
291 |
msgstr "宽"
|
292 |
|
293 |
+
#: crayon_settings_wp.class.php:530
|
294 |
#@ crayon-syntax-highlighter
|
295 |
msgid "Top Margin"
|
296 |
msgstr "顶部外边距"
|
297 |
|
298 |
+
#: crayon_settings_wp.class.php:531
|
299 |
#@ crayon-syntax-highlighter
|
300 |
msgid "Bottom Margin"
|
301 |
msgstr "底部外边距"
|
302 |
|
303 |
+
#: crayon_settings_wp.class.php:532
|
304 |
+
#: crayon_settings_wp.class.php:537
|
305 |
#@ crayon-syntax-highlighter
|
306 |
msgid "Left Margin"
|
307 |
msgstr "左外边距"
|
308 |
|
309 |
+
#: crayon_settings_wp.class.php:533
|
310 |
+
#: crayon_settings_wp.class.php:537
|
311 |
#@ crayon-syntax-highlighter
|
312 |
msgid "Right Margin"
|
313 |
msgstr "右外边距"
|
314 |
|
315 |
+
#: crayon_settings_wp.class.php:543
|
316 |
#@ crayon-syntax-highlighter
|
317 |
msgid "Horizontal Alignment"
|
318 |
msgstr "对齐方式"
|
319 |
|
320 |
+
#: crayon_settings_wp.class.php:546
|
321 |
#@ crayon-syntax-highlighter
|
322 |
msgid "Allow floating elements to surround Crayon"
|
323 |
msgstr "允许插件代码周围使用浮动元素"
|
324 |
|
325 |
+
#: crayon_settings_wp.class.php:548
|
326 |
#@ crayon-syntax-highlighter
|
327 |
msgid "Inline Margin"
|
328 |
msgstr "间距"
|
329 |
|
330 |
+
#: crayon_settings_wp.class.php:556
|
331 |
#@ crayon-syntax-highlighter
|
332 |
msgid "Display the Toolbar"
|
333 |
msgstr "工具栏显示"
|
334 |
|
335 |
+
#: crayon_settings_wp.class.php:559
|
336 |
#@ crayon-syntax-highlighter
|
337 |
msgid "Overlay the toolbar on code rather than push it down when possible"
|
338 |
msgstr "尽量覆盖工具栏而不是挤到下面"
|
339 |
|
340 |
+
#: crayon_settings_wp.class.php:560
|
341 |
#@ crayon-syntax-highlighter
|
342 |
msgid "Toggle the toolbar on single click when it is overlayed"
|
343 |
msgstr "当工具栏被挡住时单击显示"
|
344 |
|
345 |
+
#: crayon_settings_wp.class.php:561
|
346 |
#@ crayon-syntax-highlighter
|
347 |
msgid "Delay hiding the toolbar on MouseOut"
|
348 |
msgstr "工具栏消失带延迟效果"
|
349 |
|
350 |
+
#: crayon_settings_wp.class.php:563
|
351 |
#@ crayon-syntax-highlighter
|
352 |
msgid "Display the title when provided"
|
353 |
msgstr "当有标题则显示"
|
354 |
|
355 |
+
#: crayon_settings_wp.class.php:564
|
356 |
#@ crayon-syntax-highlighter
|
357 |
msgid "Display the language"
|
358 |
msgstr "显示语言"
|
359 |
|
360 |
+
#: crayon_settings_wp.class.php:571
|
361 |
#@ crayon-syntax-highlighter
|
362 |
msgid "Display striped code lines"
|
363 |
msgstr "条纹显示代码"
|
364 |
|
365 |
+
#: crayon_settings_wp.class.php:572
|
366 |
#@ crayon-syntax-highlighter
|
367 |
msgid "Enable line marking for important lines"
|
368 |
msgstr "允许关键行高亮"
|
369 |
|
370 |
+
#: crayon_settings_wp.class.php:573
|
371 |
#@ crayon-syntax-highlighter
|
372 |
msgid "Display line numbers by default"
|
373 |
msgstr "默认显示每行编号"
|
374 |
|
375 |
+
#: crayon_settings_wp.class.php:574
|
376 |
#@ crayon-syntax-highlighter
|
377 |
msgid "Enable line number toggling"
|
378 |
msgstr "允许显示行编号"
|
379 |
|
380 |
+
#: crayon_settings_wp.class.php:575
|
381 |
#@ crayon-syntax-highlighter
|
382 |
msgid "Start line numbers from"
|
383 |
msgstr "编号始于"
|
384 |
|
385 |
+
#: crayon_settings_wp.class.php:585
|
386 |
#@ crayon-syntax-highlighter
|
387 |
msgid "When no language is provided, use the fallback"
|
388 |
msgstr "当没指定语言,则默认语言为"
|
389 |
|
390 |
+
#: crayon_settings_wp.class.php:591
|
391 |
#, php-format
|
392 |
#@ crayon-syntax-highlighter
|
393 |
msgid "%d language has been detected."
|
395 |
msgstr[0] "已支持 %d 种语言。"
|
396 |
msgstr[1] "已支持 %d 种语言。"
|
397 |
|
398 |
+
#: crayon_settings_wp.class.php:592
|
399 |
#@ crayon-syntax-highlighter
|
400 |
msgid "Parsing was successful"
|
401 |
msgstr "加载完成"
|
402 |
|
403 |
+
#: crayon_settings_wp.class.php:592
|
404 |
#@ crayon-syntax-highlighter
|
405 |
msgid "Parsing was unsuccessful"
|
406 |
msgstr "加载失败"
|
407 |
|
408 |
+
#: crayon_settings_wp.class.php:598
|
409 |
#, php-format
|
410 |
#@ crayon-syntax-highlighter
|
411 |
msgid "The selected language with id %s could not be loaded"
|
412 |
msgstr "ID为 %s 的语言加载失败"
|
413 |
|
414 |
+
#: crayon_settings_wp.class.php:602
|
415 |
#@ crayon-syntax-highlighter
|
416 |
msgid "Show Languages"
|
417 |
msgstr "显示全部语言"
|
418 |
|
419 |
+
#: crayon_settings_wp.class.php:621
|
420 |
#@ crayon-syntax-highlighter
|
421 |
msgid "Loading..."
|
422 |
msgstr "载入中..."
|
423 |
|
424 |
+
#: crayon_settings_wp.class.php:621
|
425 |
+
#: crayon_settings_wp.class.php:804
|
426 |
#: util/theme-editor/editor.php:14
|
427 |
#@ crayon-syntax-highlighter
|
428 |
msgid "Theme Editor"
|
429 |
msgstr "主题编辑器"
|
430 |
|
431 |
+
#: crayon_settings_wp.class.php:626
|
432 |
#, php-format
|
433 |
#@ crayon-syntax-highlighter
|
434 |
msgid "Change the %1$sfallback language%2$s to change the sample code. Lines 5-7 are marked."
|
435 |
msgstr "改变 %1$s默认语言%2$s 可以在这里看到效果,5-7 为重点代码。"
|
436 |
|
437 |
+
#: crayon_settings_wp.class.php:630
|
438 |
#@ crayon-syntax-highlighter
|
439 |
msgid "Enable Live Preview"
|
440 |
msgstr "允许即时预览"
|
441 |
|
442 |
+
#: crayon_settings_wp.class.php:632
|
443 |
#@ crayon-syntax-highlighter
|
444 |
msgid "Enqueue themes in the header (more efficient)."
|
445 |
msgstr "在头部就加载主题(高效)"
|
446 |
|
447 |
+
#: crayon_settings_wp.class.php:632
|
448 |
+
#: crayon_settings_wp.class.php:658
|
449 |
+
#: crayon_settings_wp.class.php:683
|
|
|
450 |
#: crayon_settings_wp.class.php:690
|
451 |
#: crayon_settings_wp.class.php:691
|
452 |
#: crayon_settings_wp.class.php:692
|
453 |
#: crayon_settings_wp.class.php:693
|
454 |
#: crayon_settings_wp.class.php:694
|
455 |
+
#: crayon_settings_wp.class.php:695
|
456 |
+
#: crayon_settings_wp.class.php:709
|
457 |
#: crayon_settings_wp.class.php:716
|
458 |
+
#: crayon_settings_wp.class.php:717
|
459 |
#@ crayon-syntax-highlighter
|
460 |
msgid "?"
|
461 |
msgstr "?"
|
462 |
|
463 |
+
#: crayon_settings_wp.class.php:635
|
464 |
#, php-format
|
465 |
#@ crayon-syntax-highlighter
|
466 |
msgid "The selected theme with id %s could not be loaded"
|
467 |
msgstr "ID为 %s 的主题加载失败"
|
468 |
|
469 |
+
#: crayon_settings_wp.class.php:647
|
470 |
#@ crayon-syntax-highlighter
|
471 |
msgid "Custom Font Size"
|
472 |
msgstr "字体大小"
|
473 |
|
474 |
+
#: crayon_settings_wp.class.php:652
|
475 |
#, php-format
|
476 |
#@ crayon-syntax-highlighter
|
477 |
msgid "The selected font with id %s could not be loaded"
|
478 |
msgstr "ID为 %s 的字体加载失败"
|
479 |
|
480 |
+
#: crayon_settings_wp.class.php:658
|
481 |
#@ crayon-syntax-highlighter
|
482 |
msgid "Enqueue fonts in the header (more efficient)."
|
483 |
msgstr "在头部就加载字体(高效)"
|
484 |
|
485 |
+
#: crayon_settings_wp.class.php:663
|
486 |
#@ crayon-syntax-highlighter
|
487 |
msgid "Enable plain code view and display"
|
488 |
msgstr "允许纯文本显示代码,显示方式"
|
489 |
|
490 |
+
#: crayon_settings_wp.class.php:666
|
491 |
#@ crayon-syntax-highlighter
|
492 |
msgid "Enable plain code toggling"
|
493 |
msgstr "允许纯文本显示代码"
|
494 |
|
495 |
+
#: crayon_settings_wp.class.php:667
|
496 |
#@ crayon-syntax-highlighter
|
497 |
msgid "Show the plain code by default"
|
498 |
msgstr "默认纯文本显示代码"
|
499 |
|
500 |
+
#: crayon_settings_wp.class.php:668
|
501 |
#@ crayon-syntax-highlighter
|
502 |
msgid "Enable code copy/paste"
|
503 |
msgstr "允许代码复制/粘贴"
|
504 |
|
505 |
+
#: crayon_settings_wp.class.php:670
|
506 |
#@ crayon-syntax-highlighter
|
507 |
msgid "Enable opening code in a window"
|
508 |
msgstr "允许新窗口显示代码"
|
509 |
|
510 |
+
#: crayon_settings_wp.class.php:671
|
511 |
#@ crayon-syntax-highlighter
|
512 |
msgid "Always display scrollbars"
|
513 |
msgstr "总是显示滚动条"
|
514 |
|
515 |
+
#: crayon_settings_wp.class.php:672
|
516 |
#@ crayon-syntax-highlighter
|
517 |
msgid "Tab size in spaces"
|
518 |
msgstr "Tab等于几个空格"
|
519 |
|
520 |
+
#: crayon_settings_wp.class.php:677
|
521 |
#@ crayon-syntax-highlighter
|
522 |
msgid "Decode HTML entities in code"
|
523 |
msgstr "在代码中进行HTML解码"
|
524 |
|
525 |
+
#: crayon_settings_wp.class.php:679
|
526 |
#@ crayon-syntax-highlighter
|
527 |
msgid "Decode HTML entities in attributes"
|
528 |
msgstr "在属性中进行HTML解码"
|
529 |
|
530 |
+
#: crayon_settings_wp.class.php:681
|
531 |
#@ crayon-syntax-highlighter
|
532 |
msgid "Remove whitespace surrounding the shortcode content"
|
533 |
msgstr "删除短代码周围的空白"
|
534 |
|
535 |
+
#: crayon_settings_wp.class.php:683
|
536 |
#@ crayon-syntax-highlighter
|
537 |
msgid "Allow Mixed Language Highlighting with delimiters and tags."
|
538 |
msgstr "允许多重语言高亮使用分隔符和标签"
|
539 |
|
540 |
+
#: crayon_settings_wp.class.php:685
|
541 |
#@ crayon-syntax-highlighter
|
542 |
msgid "Show Mixed Language Icon (+)"
|
543 |
msgstr "显示多重语言图标 (+)"
|
544 |
|
545 |
+
#: crayon_settings_wp.class.php:690
|
546 |
#@ crayon-syntax-highlighter
|
547 |
msgid "Capture Mini Tags like [php][/php] as Crayons."
|
548 |
msgstr "使用迷你标签(如[php][/php])"
|
549 |
|
550 |
+
#: crayon_settings_wp.class.php:691
|
551 |
#@ crayon-syntax-highlighter
|
552 |
msgid "Capture Inline Tags like {php}{/php} inside sentences."
|
553 |
msgstr "允许在文中使用标签(如{php}{/php})"
|
554 |
|
555 |
+
#: crayon_settings_wp.class.php:692
|
556 |
#@ crayon-syntax-highlighter
|
557 |
msgid "Wrap Inline Tags"
|
558 |
msgstr "文中标签自动换行"
|
559 |
|
560 |
+
#: crayon_settings_wp.class.php:693
|
561 |
#@ crayon-syntax-highlighter
|
562 |
msgid "Capture `backquotes` as <code>"
|
563 |
msgstr "把 `backquotes` 绑定为 <code>"
|
564 |
|
565 |
+
#: crayon_settings_wp.class.php:694
|
566 |
#@ crayon-syntax-highlighter
|
567 |
msgid "Capture <pre> tags as Crayons"
|
568 |
msgstr "指定 <pre> 为插件所有"
|
569 |
|
570 |
+
#: crayon_settings_wp.class.php:695
|
571 |
#@ crayon-syntax-highlighter
|
572 |
msgid "Enable [plain][/plain] tag."
|
573 |
msgstr "启用 [plain][/plain] 标签"
|
574 |
|
575 |
+
#: crayon_settings_wp.class.php:700
|
576 |
#@ crayon-syntax-highlighter
|
577 |
msgid "When loading local files and a relative path is given for the URL, use the absolute path"
|
578 |
msgstr "当URL为相对路径,使用的绝对路径为"
|
579 |
|
580 |
+
#: crayon_settings_wp.class.php:703
|
581 |
#@ crayon-syntax-highlighter
|
582 |
msgid "Followed by your relative URL."
|
583 |
msgstr "置于相对路径之前"
|
584 |
|
585 |
+
#: crayon_settings_wp.class.php:707
|
586 |
#, php-format
|
587 |
#@ crayon-syntax-highlighter
|
588 |
msgid "Use %s to separate setting names from values in the <pre> class attribute"
|
589 |
msgstr "<pre> 标签中使用 %s 分割每个属性与属性值。"
|
590 |
|
591 |
+
#: crayon_settings_wp.class.php:713
|
592 |
#@ crayon-syntax-highlighter
|
593 |
msgid "Clear the cache used to store remote code requests"
|
594 |
msgstr "清空用于存储远程代码的缓存频率"
|
595 |
|
596 |
+
#: crayon_settings_wp.class.php:715
|
597 |
#@ crayon-syntax-highlighter
|
598 |
msgid "Clear Now"
|
599 |
msgstr "立刻清空"
|
600 |
|
601 |
+
#: crayon_settings_wp.class.php:716
|
602 |
#@ crayon-syntax-highlighter
|
603 |
msgid "Attempt to load Crayon's CSS and JavaScript only when needed"
|
604 |
msgstr "按需加载插件的CSS与JavaScript"
|
605 |
|
606 |
+
#: crayon_settings_wp.class.php:717
|
607 |
#@ crayon-syntax-highlighter
|
608 |
msgid "Disable enqueuing for page templates that may contain The Loop."
|
609 |
msgstr "当可能造成循环时禁用加载页面模板"
|
610 |
|
611 |
+
#: crayon_settings_wp.class.php:718
|
612 |
#@ crayon-syntax-highlighter
|
613 |
msgid "Allow Crayons inside comments"
|
614 |
msgstr "允许在评论中使用"
|
615 |
|
616 |
+
#: crayon_settings_wp.class.php:720
|
617 |
#@ crayon-syntax-highlighter
|
618 |
msgid "Load Crayons only from the main Wordpress query"
|
619 |
msgstr "仅在Wordpress主请求中加载插件"
|
620 |
|
621 |
+
#: crayon_settings_wp.class.php:721
|
622 |
#@ crayon-syntax-highlighter
|
623 |
msgid "Disable mouse gestures for touchscreen devices (eg. MouseOver)"
|
624 |
msgstr "使用触屏设备时禁止鼠标行为(如鼠标经过)"
|
625 |
|
626 |
+
#: crayon_settings_wp.class.php:722
|
627 |
#@ crayon-syntax-highlighter
|
628 |
msgid "Disable animations"
|
629 |
msgstr "禁止动画效果"
|
630 |
|
631 |
+
#: crayon_settings_wp.class.php:723
|
632 |
#@ crayon-syntax-highlighter
|
633 |
msgid "Disable runtime stats"
|
634 |
msgstr "禁止运行时间统计"
|
635 |
|
636 |
+
#: crayon_settings_wp.class.php:729
|
637 |
#@ crayon-syntax-highlighter
|
638 |
msgid "Log errors for individual Crayons"
|
639 |
msgstr "使用独立的错误日志"
|
640 |
|
641 |
+
#: crayon_settings_wp.class.php:730
|
642 |
#@ crayon-syntax-highlighter
|
643 |
msgid "Log system-wide errors"
|
644 |
msgstr "启用系统错误日志"
|
645 |
|
646 |
+
#: crayon_settings_wp.class.php:731
|
647 |
#@ crayon-syntax-highlighter
|
648 |
msgid "Display custom message for errors"
|
649 |
msgstr "自定义错误提示"
|
650 |
|
651 |
+
#: crayon_settings_wp.class.php:743
|
652 |
#@ crayon-syntax-highlighter
|
653 |
msgid "Show Log"
|
654 |
msgstr "显示日志"
|
655 |
|
656 |
+
#: crayon_settings_wp.class.php:743
|
657 |
#@ crayon-syntax-highlighter
|
658 |
msgid "Hide Log"
|
659 |
msgstr "隐藏日志"
|
660 |
|
661 |
+
#: crayon_settings_wp.class.php:745
|
662 |
#@ crayon-syntax-highlighter
|
663 |
msgid "Clear Log"
|
664 |
msgstr "清空日志"
|
665 |
|
666 |
+
#: crayon_settings_wp.class.php:746
|
667 |
#@ crayon-syntax-highlighter
|
668 |
msgid "Email Admin"
|
669 |
msgstr "发邮件给管理员"
|
670 |
|
671 |
+
#: crayon_settings_wp.class.php:748
|
672 |
#@ crayon-syntax-highlighter
|
673 |
msgid "Email Developer"
|
674 |
msgstr "发邮件给开发者"
|
675 |
|
676 |
+
#: crayon_settings_wp.class.php:750
|
677 |
#@ crayon-syntax-highlighter
|
678 |
msgid "The log is currently empty."
|
679 |
msgstr "日志为空,"
|
680 |
|
681 |
+
#: crayon_settings_wp.class.php:752
|
682 |
#@ crayon-syntax-highlighter
|
683 |
msgid "The log file exists and is writable."
|
684 |
msgstr "日志文件存在并可写。"
|
685 |
|
686 |
+
#: crayon_settings_wp.class.php:752
|
687 |
#@ crayon-syntax-highlighter
|
688 |
msgid "The log file exists and is not writable."
|
689 |
msgstr "日志文件存在但不可写。"
|
690 |
|
691 |
+
#: crayon_settings_wp.class.php:754
|
692 |
#@ crayon-syntax-highlighter
|
693 |
msgid "The log file does not exist and is not writable."
|
694 |
msgstr "日志文件不存且不可写。"
|
695 |
|
696 |
+
#: crayon_settings_wp.class.php:764
|
697 |
#@ crayon-syntax-highlighter
|
698 |
msgid "Version"
|
699 |
msgstr "版本"
|
700 |
|
701 |
+
#: crayon_settings_wp.class.php:766
|
702 |
#@ crayon-syntax-highlighter
|
703 |
msgid "Developer"
|
704 |
msgstr "开发者"
|
705 |
|
706 |
+
#: crayon_settings_wp.class.php:767
|
707 |
#@ crayon-syntax-highlighter
|
708 |
msgid "Translators"
|
709 |
msgstr "翻译者"
|
710 |
|
711 |
+
#: crayon_settings_wp.class.php:790
|
712 |
#@ crayon-syntax-highlighter
|
713 |
msgid "The result of innumerable hours of hard work over many months. It's an ongoing project, keep me motivated!"
|
714 |
msgstr "本插件是数月辛勤劳动的结果,为了让它不断的完善,如果你喜欢它,请告诉我!"
|
715 |
|
716 |
+
#: crayon_settings_wp.class.php:806
|
717 |
#@ crayon-syntax-highlighter
|
718 |
msgid "Donate"
|
719 |
msgstr "捐助"
|
748 |
msgid "http://ak.net84.net/"
|
749 |
msgstr ""
|
750 |
|
|
|
|
|
|
|
|
|
|
|
|
|
751 |
#: util/tag-editor/crayon_tag_editor_wp.class.php:57
|
752 |
#@ crayon-syntax-highlighter
|
753 |
msgid "Add Crayon Code"
|
855 |
msgid "Back To Settings"
|
856 |
msgstr "返回设置"
|
857 |
|
858 |
+
#: crayon_settings_wp.class.php:719
|
859 |
+
#@ crayon-syntax-highlighter
|
860 |
+
msgid "Remove Crayons from excerpts"
|
861 |
+
msgstr "文章摘要不启用代码高亮"
|
862 |
+
|
863 |
+
#. translators: plugin header field 'Version'
|
864 |
+
#: crayon_wp.class.php:0
|
865 |
+
#@ crayon-syntax-highlighter
|
866 |
+
msgid "_1.9.4_beta1"
|
867 |
+
msgstr ""
|
868 |
+
|
util/external_use.php
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
require_once ('../global.php');
|
4 |
+
require_once (CRAYON_HIGHLIGHTER_PHP);
|
5 |
+
|
6 |
+
// These will depend on your framework
|
7 |
+
CrayonGlobalSettings::site_http('http://localhost/crayon/wp-content/plugins/crayon-syntax-highlighter/');
|
8 |
+
CrayonGlobalSettings::site_path(dirname(__FILE__));
|
9 |
+
CrayonGlobalSettings::plugin_path('http://localhost/crayon/wp-content/plugins/crayon-syntax-highlighter/');
|
10 |
+
|
11 |
+
// Should be in the header
|
12 |
+
crayon_resources();
|
13 |
+
|
14 |
+
$crayon = new CrayonHighlighter();
|
15 |
+
$crayon->code('some code');
|
16 |
+
$crayon->language('php');
|
17 |
+
$crayon->title('the title');
|
18 |
+
$crayon->marked('1-2');
|
19 |
+
$crayon->is_inline(FALSE);
|
20 |
+
|
21 |
+
// Settings
|
22 |
+
$settings = array(
|
23 |
+
// Just regular settings
|
24 |
+
CrayonSettings::NUMS => FALSE,
|
25 |
+
CrayonSettings::TOOLBAR => TRUE,
|
26 |
+
// Enqueue supported only for WP
|
27 |
+
CrayonSettings::ENQUEUE_THEMES => FALSE,
|
28 |
+
CrayonSettings::ENQUEUE_FONTS => FALSE);
|
29 |
+
$settings = CrayonSettings::smart_settings($settings);
|
30 |
+
$crayon->settings($settings);
|
31 |
+
|
32 |
+
// Print the Crayon
|
33 |
+
$crayon_formatted = $crayon->output(TRUE, FALSE);
|
34 |
+
echo $crayon_formatted;
|
35 |
+
|
36 |
+
// Utility Functions
|
37 |
+
|
38 |
+
function crayon_print_style($id, $url, $version) {
|
39 |
+
echo '<link id="',$id,'" href="',$url,'?v=',$version,'" type="text/css" rel="stylesheet" />',"\n";
|
40 |
+
}
|
41 |
+
|
42 |
+
function crayon_print_script($id, $url, $version) {
|
43 |
+
echo '<script id="',$id,'" src="',$url,'?v=',$version,'" type="text/javascript"></script>',"\n";
|
44 |
+
}
|
45 |
+
|
46 |
+
function crayon_resources() {
|
47 |
+
global $CRAYON_VERSION;
|
48 |
+
$plugin_url = CrayonGlobalSettings::plugin_path();
|
49 |
+
// jQuery only needed once! Don't have two jQuerys, so remove if you've already got one in your header :)
|
50 |
+
crayon_print_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js', $CRAYON_VERSION);
|
51 |
+
crayon_print_style('crayon-style', $plugin_url.CRAYON_STYLE, $CRAYON_VERSION);
|
52 |
+
crayon_print_script('crayon_util_js', $plugin_url.CRAYON_JS_UTIL, $CRAYON_VERSION);
|
53 |
+
crayon_print_script('crayon-js', $plugin_url.CRAYON_JS, $CRAYON_VERSION);
|
54 |
+
crayon_print_script('crayon-jquery-popup', $plugin_url.CRAYON_JQUERY_POPUP, $CRAYON_VERSION);
|
55 |
+
}
|
56 |
+
|
57 |
+
?>
|