Bug fixes
This commit is contained in:
parent
5b63241d10
commit
dcbd74dda2
|
@ -203,6 +203,26 @@ echo Bootstrap::formOpen(array());
|
|||
|
||||
echo Bootstrap::formClose();
|
||||
|
||||
echo Bootstrap::formTitle(array('title'=>$L->g('Profile picture')));
|
||||
|
||||
$src = (Sanitize::pathFile(PATH_UPLOADS_PROFILES.$user->username().'.png')?DOMAIN_UPLOADS_PROFILES.$user->username().'.png':HTML_PATH_ADMIN_THEME_IMG.'default.svg');
|
||||
echo '
|
||||
<div class="form-group row">
|
||||
<div class="col-sm-2"></div>
|
||||
<div class="col-sm-10">
|
||||
<img id="jsprofilePictureImg" style="width: 350px; height: 200px;" class="img-thumbnail mb-2" alt="Profile Picture" src="'.$src.'" />
|
||||
|
||||
<form id="jsprofilePictureForm" name="profilePictureForm" enctype="multipart/form-data">
|
||||
<input type="hidden" name="tokenCSRF" value="'.$security->getTokenCSRF().'">
|
||||
<div class="custom-file">
|
||||
<input type="file" class="custom-file-input" id="jsprofilePictureInputFile" name="profilePictureInputFile">
|
||||
<label class="custom-file-label" for="jsprofilePictureInputFile">Choose images</label>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
|
||||
?>
|
||||
|
||||
<script>
|
||||
|
@ -220,5 +240,33 @@ $(document).ready(function() {
|
|||
}
|
||||
});
|
||||
|
||||
$("#jsprofilePictureInputFile").on("change", function() {
|
||||
|
||||
$.ajax({
|
||||
url: "<?php echo HTML_PATH_ADMIN_ROOT ?>ajax/profile-picture",
|
||||
type: "POST",
|
||||
data: new FormData($("#jsprofilePictureForm")[0]),
|
||||
cache: false,
|
||||
contentType: false,
|
||||
processData: false,
|
||||
xhr: function() {
|
||||
var xhr = $.ajaxSettings.xhr();
|
||||
if (xhr.upload) {
|
||||
xhr.upload.addEventListener("progress", function(e) {
|
||||
if (e.lengthComputable) {
|
||||
var percentComplete = (e.loaded / e.total)*100;
|
||||
console.log("Uploading profile picture: "+percentComplete);
|
||||
}
|
||||
}, false);
|
||||
}
|
||||
return xhr;
|
||||
}
|
||||
}).done(function(e) {
|
||||
$("#jsprofilePictureImg").attr('src',e.absoluteURL+"?time="+Math.random());
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
<?php defined('BLUDIT') or die('Bludit CMS.');
|
||||
header('Content-Type: application/json');
|
||||
|
||||
if (!isset($_FILES['profilePictureInputFile'])) {
|
||||
exit (json_encode(array(
|
||||
'status'=>1,
|
||||
'message'=>'Error trying to upload the profile picture.'
|
||||
)));
|
||||
}
|
||||
|
||||
// File extension
|
||||
$fileExtension = pathinfo($_FILES['profilePictureInputFile']['name'], PATHINFO_EXTENSION);
|
||||
// Username who is uploading the image
|
||||
$username = $login->username();
|
||||
// Tmp filename
|
||||
$tmpFilename = $username.'.'.$fileExtension;
|
||||
// Final filename
|
||||
$filename = $username.'.png';
|
||||
|
||||
// Move from temporary directory to uploads folder
|
||||
rename($_FILES['profilePictureInputFile']['tmp_name'], PATH_TMP.$tmpFilename);
|
||||
|
||||
// Resize and convert to png
|
||||
$image = new Image();
|
||||
$image->setImage(PATH_TMP.$tmpFilename, PROFILE_IMG_WIDTH, PROFILE_IMG_HEIGHT, 'crop');
|
||||
$image->saveImage(PATH_UPLOADS_PROFILES.$filename, PROFILE_IMG_QUALITY, false, true);
|
||||
|
||||
// Remove the tmp file
|
||||
unlink(PATH_TMP.$tmpFilename);
|
||||
|
||||
// Permissions
|
||||
chmod(PATH_UPLOADS_PROFILES.$filename, 0644);
|
||||
|
||||
exit (json_encode(array(
|
||||
'status'=>0,
|
||||
'message'=>'Image uploaded success.',
|
||||
'filename'=>$filename,
|
||||
'absoluteURL'=>DOMAIN_UPLOADS_PROFILES.$filename,
|
||||
'absolutePath'=>PATH_UPLOADS_PROFILES.$filename
|
||||
)));
|
||||
|
||||
?>
|
|
@ -62,6 +62,14 @@ class dbLanguage extends dbJSON
|
|||
return $this->currentLanguage;
|
||||
}
|
||||
|
||||
public function currentLanguageShortVersion()
|
||||
{
|
||||
$current = $this->currentLanguage;
|
||||
$explode = explode('_', $current);
|
||||
return $explode[0];
|
||||
}
|
||||
|
||||
|
||||
// Return the translation, if the translation doesn't exist returns the English translation
|
||||
public function get($string)
|
||||
{
|
||||
|
|
|
@ -140,19 +140,13 @@ class User {
|
|||
return $this->getValue('linkedin');
|
||||
}
|
||||
|
||||
public function profilePicture($absolute=true)
|
||||
public function profilePicture()
|
||||
{
|
||||
$filename = $this->getValue('username').'.png';
|
||||
|
||||
if( !file_exists(PATH_UPLOADS_PROFILES.$filename) ) {
|
||||
return '#';
|
||||
if (!file_exists(PATH_UPLOADS_PROFILES.$filename)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if($absolute) {
|
||||
return HTML_PATH_UPLOADS_PROFILES.$filename;
|
||||
}
|
||||
|
||||
return $filename;
|
||||
return DOMAIN_PATH_UPLOADS_PROFILES.$filename;
|
||||
}
|
||||
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "Navigation",
|
||||
"description": "Create your own navigation menu with latest pages or static pages."
|
||||
"description": "Navigation menu with parent and child pages for the sidebar."
|
||||
},
|
||||
"home-link": "Home link",
|
||||
"show-the-home-link-on-the-sidebar": "Show the home link on the sidebar.",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "Static Pages",
|
||||
"description": "Create your own navigation menu with static pages."
|
||||
"description": "Navigation menu with static pages."
|
||||
},
|
||||
"home-link": "Home link",
|
||||
"show-the-home-link-on-the-sidebar": "Show the home link on the sidebar."
|
||||
|
|
|
@ -7,6 +7,37 @@ class pluginTinymce extends Plugin {
|
|||
'edit-content'
|
||||
);
|
||||
|
||||
public function init()
|
||||
{
|
||||
$this->dbFields = array(
|
||||
'toolbar1'=>'formatselect bold italic bullist numlist blockquote alignleft aligncenter alignright link pagebreak image removeformat code',
|
||||
'toolbar2'=>'',
|
||||
'plugins'=>'code autolink image link pagebreak advlist lists textcolor colorpicker textpattern'
|
||||
);
|
||||
}
|
||||
|
||||
public function form()
|
||||
{
|
||||
global $Language;
|
||||
|
||||
$html = '<div>';
|
||||
$html .= '<label>'.$Language->get('Toolbar top').'</label>';
|
||||
$html .= '<input name="toolbar1" id="jstoolbar1" type="text" value="'.$this->getDbField('toolbar1').'">';
|
||||
$html .= '</div>';
|
||||
|
||||
$html .= '<div>';
|
||||
$html .= '<label>'.$Language->get('Toolbar bottom').'</label>';
|
||||
$html .= '<input name="toolbar2" id="jstoolbar2" type="text" value="'.$this->getDbField('toolbar2').'">';
|
||||
$html .= '</div>';
|
||||
|
||||
$html .= '<div>';
|
||||
$html .= '<label>'.$Language->get('Plugins').'</label>';
|
||||
$html .= '<input name="plugins" id="jsplugins" type="text" value="'.$this->getDbField('plugins').'">';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
public function adminHead()
|
||||
{
|
||||
if (!in_array($GLOBALS['ADMIN_CONTROLLER'], $this->loadOnController)) {
|
||||
|
@ -24,6 +55,17 @@ class pluginTinymce extends Plugin {
|
|||
|
||||
global $Language;
|
||||
|
||||
$toolbar1 = $this->getDbField('toolbar1');
|
||||
$toolbar2 = $this->getDbField('toolbar2');
|
||||
$plugins = $this->getDbField('plugins');
|
||||
|
||||
$lang = 'en';
|
||||
if (file_exists($this->phpPath().'tinymce'.DS.'langs'.DS.$Language->currentLanguage().'.js')) {
|
||||
$lang = $Language->currentLanguage();
|
||||
} elseif (file_exists($this->phpPath().'tinymce'.DS.'langs'.DS.$Language->currentLanguageShortVersion().'.js')) {
|
||||
$lang = $Language->currentLanguageShortVersion();
|
||||
}
|
||||
|
||||
$script = <<<EOF
|
||||
<script>
|
||||
|
||||
|
@ -60,17 +102,10 @@ tinymce.init({
|
|||
relative_urls: true,
|
||||
remove_script_host: false,
|
||||
document_base_url: DOMAIN_UPLOADS,
|
||||
plugins: [
|
||||
"autosave, code",
|
||||
"searchreplace autolink directionality",
|
||||
"visualblocks visualchars",
|
||||
"fullscreen image link media template",
|
||||
"codesample table hr pagebreak",
|
||||
"advlist lists textcolor wordcount",
|
||||
"contextmenu colorpicker textpattern"
|
||||
],
|
||||
toolbar1: "restoredraft | bold italic strikethrough forecolor backcolor | link | alignleft aligncenter alignright alignjustify | outdent indent | removeformat image | pagebreak code",
|
||||
toolbar2: "formatselect | table | numlist bullist | fullscreen"
|
||||
plugins: ["$plugins"],
|
||||
toolbar1: "$toolbar1",
|
||||
toolbar2: "$toolbar2",
|
||||
language: "$lang"
|
||||
});
|
||||
|
||||
</script>
|
||||
|
|
|
@ -0,0 +1,253 @@
|
|||
tinymce.addI18n('bg_BG',{
|
||||
"Redo": "\u041e\u0442\u043c\u0435\u043d\u0438",
|
||||
"Undo": "\u0412\u044a\u0440\u043d\u0438",
|
||||
"Cut": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435",
|
||||
"Copy": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435",
|
||||
"Paste": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435",
|
||||
"Select all": "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0446\u044f\u043b\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||
"New document": "\u041d\u043e\u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Ok": "\u0414\u043e\u0431\u0440\u0435",
|
||||
"Cancel": "\u041e\u0442\u043a\u0430\u0437",
|
||||
"Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b\u043d\u043e \u043e\u0442\u043a\u0440\u043e\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0438 \u0431\u0435\u0437 \u043a\u0430\u043d\u0442\u043e\u0432\u0435 (\u0440\u0430\u043c\u043a\u0438)",
|
||||
"Bold": "\u0423\u0434\u0435\u0431\u0435\u043b\u0435\u043d (\u043f\u043e\u043b\u0443\u0447\u0435\u0440)",
|
||||
"Italic": "\u041d\u0430\u043a\u043b\u043e\u043d\u0435\u043d (\u043a\u0443\u0440\u0441\u0438\u0432)",
|
||||
"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u0442\u0430\u043d",
|
||||
"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u0442\u0430\u0432\u0430\u043d\u0435",
|
||||
"Superscript": "\u0413\u043e\u0440\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Subscript": "\u0414\u043e\u043b\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Clear formatting": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e",
|
||||
"Align left": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u043b\u044f\u0432\u043e",
|
||||
"Align center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e",
|
||||
"Align right": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u0434\u044f\u0441\u043d\u043e",
|
||||
"Justify": "\u0414\u0432\u0443\u0441\u0442\u0440\u0430\u043d\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Bullet list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0432\u043e\u0434\u0430\u0447\u0438",
|
||||
"Numbered list": "\u041d\u043e\u043c\u0435\u0440\u0438\u0440\u0430\u043d \u0441\u043f\u0438\u0441\u044a\u043a",
|
||||
"Decrease indent": "\u041d\u0430\u043c\u0430\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430",
|
||||
"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430",
|
||||
"Close": "\u0417\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448\u0438\u044f\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u043a\u043b\u0438\u043f\u0431\u043e\u0440\u0434\u0430. \u0412\u043c\u0435\u0441\u0442\u043e \u0442\u043e\u0432\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u043d\u0438\u0442\u0435 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u0438 Ctrl+X (\u0437\u0430 \u0438\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435), Ctrl+C (\u0437\u0430 \u043a\u043e\u043f\u0438\u0440\u0430\u043d\u0435) \u0438 Ctrl+V (\u0437\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435).",
|
||||
"Headers": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
|
||||
"Header 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1",
|
||||
"Header 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2",
|
||||
"Header 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3",
|
||||
"Header 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4",
|
||||
"Header 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5",
|
||||
"Header 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6",
|
||||
"Headings": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
|
||||
"Heading 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1",
|
||||
"Heading 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2",
|
||||
"Heading 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3",
|
||||
"Heading 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4",
|
||||
"Heading 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6",
|
||||
"Div": "\u0411\u043b\u043e\u043a",
|
||||
"Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u043d\u043e \u043e\u0444\u043e\u0440\u043c\u0435\u043d \u0442\u0435\u043a\u0441\u0442",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442",
|
||||
"Inline": "\u041d\u0430 \u0435\u0434\u0438\u043d \u0440\u0435\u0434",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u043e\u0432\u0435",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435\u0442\u043e \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0435 \u0432 \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d \u0440\u0435\u0436\u0438\u043c. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0449\u0435 \u0431\u044a\u0434\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u043a\u0430\u0442\u043e \u043d\u0435\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442, \u0434\u043e\u043a\u0430\u0442\u043e \u0438\u0437\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0442\u0430\u0437\u0438 \u043e\u043f\u0446\u0438\u044f.",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
||||
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Class": "\u041a\u043b\u0430\u0441",
|
||||
"Browse for an image": "\u041f\u043e\u0442\u044a\u0440\u0441\u0438 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430",
|
||||
"OR": "\u0418\u041b\u0418",
|
||||
"Drop an image here": "\u041f\u0443\u0441\u043d\u0435\u0442\u0435 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430\u0442\u0430 \u0442\u0443\u043a",
|
||||
"Upload": "\u041a\u0430\u0447\u0438",
|
||||
"Default": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
|
||||
"Circle": "\u041e\u043a\u0440\u044a\u0436\u043d\u043e\u0441\u0442\u0438",
|
||||
"Disc": "\u041a\u0440\u044a\u0433\u0447\u0435\u0442\u0430",
|
||||
"Square": "\u0417\u0430\u043f\u044a\u043b\u043d\u0435\u043d\u0438 \u043a\u0432\u0430\u0434\u0440\u0430\u0442\u0438",
|
||||
"Lower Alpha": "\u041c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Lower Greek": "\u041c\u0430\u043b\u043a\u0438 \u0433\u0440\u044a\u0446\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Lower Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u043c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Upper Alpha": "\u0413\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Upper Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Anchor": "\u041a\u043e\u0442\u0432\u0430 (\u0432\u0440\u044a\u0437\u043a\u0430 \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430)",
|
||||
"Name": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"Id": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 (id)",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 (id) \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441 \u0431\u0443\u043a\u0432\u0430, \u043f\u043e\u0441\u043b\u0435\u0434\u0432\u0430\u043d \u043e\u0442 \u0431\u0443\u043a\u0432\u0438, \u0447\u0438\u0444\u0440\u0438, \u0442\u0438\u0440\u0435\u0442\u0430, \u0442\u043e\u0447\u043a\u0438, \u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u0435 \u0438 \u0434\u043e\u043b\u043d\u043e \u0442\u0438\u0440\u0435.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0412 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0438\u043c\u0430 \u043d\u0435\u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438. \u0429\u0435 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435 \u043b\u0438?",
|
||||
"Restore last draft": "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u0447\u0435\u0440\u043d\u043e\u0432\u0430",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u0435\u043d \u0437\u043d\u0430\u043a",
|
||||
"Source code": "\u0418\u0437\u0445\u043e\u0434\u0435\u043d \u043a\u043e\u0434 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 HTML",
|
||||
"Insert\/Edit code sample": "\u0412\u043c\u044a\u043a\u043d\u0438\/ \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u043f\u0440\u0438\u043c\u0435\u0440\u0435\u043d \u043a\u043e\u0434",
|
||||
"Language": "\u0415\u0437\u0438\u043a",
|
||||
"Color": "\u0426\u0432\u044f\u0442",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "\u041e\u0442\u043b\u044f\u0432\u043e \u043d\u0430\u0434\u044f\u0441\u043d\u043e",
|
||||
"Right to left": "\u041e\u0442\u0434\u044f\u0441\u043d\u043e \u043d\u0430\u043b\u044f\u0432\u043e",
|
||||
"Emoticons": "\u0415\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0438",
|
||||
"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||
"Title": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0438 \u0434\u0443\u043c\u0438",
|
||||
"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438 \u043d\u0430 \u0443\u0435\u0431 \u0442\u044a\u0440\u0441\u0430\u0447\u043a\u0438",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Encoding": "\u041a\u043e\u0434\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u043d\u0430\u0446\u0438\u0442\u0435",
|
||||
"Fullscreen": "\u041d\u0430 \u0446\u044f\u043b \u0435\u043a\u0440\u0430\u043d",
|
||||
"Action": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435",
|
||||
"Shortcut": "\u0411\u044a\u0440\u0437 \u043a\u043b\u0430\u0432\u0438\u0448",
|
||||
"Help": "\u041f\u043e\u043c\u043e\u0449",
|
||||
"Address": "\u0410\u0434\u0440\u0435\u0441",
|
||||
"Focus to menubar": "Focus to menubar",
|
||||
"Focus to toolbar": "Focus to toolbar",
|
||||
"Focus to element path": "Focus to element path",
|
||||
"Focus to contextual toolbar": "Focus to contextual toolbar",
|
||||
"Insert link (if link plugin activated)": "\u041f\u043e\u0441\u0442\u0430\u0432\u0438 \u0432\u0440\u044a\u0437\u043a\u0430 (\u0430\u043a\u043e \u043f\u043b\u044a\u0433\u0438\u043d\u0430 \u0437\u0430 \u0432\u0440\u044a\u0437\u043a\u0438 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d)",
|
||||
"Save (if save plugin activated)": "\u0417\u0430\u043f\u0438\u0448\u0438 (\u0430\u043a\u043e \u043f\u043b\u044a\u0433\u0438\u043d\u0430 \u0437\u0430 \u0437\u0430\u043f\u0438\u0441 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d)",
|
||||
"Find (if searchreplace plugin activated)": "\u041d\u0430\u043c\u0435\u0440\u0438 (\u0430\u043a\u043e \u043f\u043b\u044a\u0433\u0438\u043d\u0430 \u0437\u0430 \u0442\u044a\u0440\u0441\u0435\u043d\u0435\/\u0437\u0430\u043c\u044f\u043d\u0430 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d)",
|
||||
"Plugins installed ({0}):": "\u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u043f\u043b\u044a\u0433\u0438\u043d\u0438 ({0}):",
|
||||
"Premium plugins:": "\u041f\u0440\u0435\u043c\u0438\u0439\u043d\u0438 \u043f\u043b\u044a\u0433\u0438\u043d\u0438:",
|
||||
"Learn more...": "\u041d\u0430\u0443\u0447\u0435\u0442\u0435 \u043f\u043e\u0432\u0435\u0447\u0435...",
|
||||
"You are using {0}": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 {0}",
|
||||
"Horizontal line": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u0430 \u0447\u0435\u0440\u0442\u0430",
|
||||
"Insert\/edit image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430",
|
||||
"Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
||||
"Source": "\u0410\u0434\u0440\u0435\u0441",
|
||||
"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440",
|
||||
"Constrain proportions": "\u0417\u0430\u0432\u0430\u0437\u043d\u0430\u0432\u0435 \u043d\u0430 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438\u0442\u0435",
|
||||
"General": "\u041e\u0431\u0449\u043e",
|
||||
"Advanced": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e",
|
||||
"Style": "\u0421\u0442\u0438\u043b",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e",
|
||||
"Horizontal space": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e",
|
||||
"Border": "\u041a\u0430\u043d\u0442 (\u0440\u0430\u043c\u043a\u0430)",
|
||||
"Insert image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"Image": "\u041a\u0430\u0440\u0442\u0438\u043d\u043a\u0430",
|
||||
"Image list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438",
|
||||
"Rotate counterclockwise": "\u0417\u0430\u0432\u044a\u0440\u0442\u0430\u043d\u0435 \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u043d\u0430 \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u043a\u0430",
|
||||
"Rotate clockwise": "\u0417\u0430\u0432\u044a\u0440\u0442\u0430\u043d\u0435 \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u043a\u0430",
|
||||
"Flip vertically": "\u041e\u0431\u044a\u0440\u043d\u0438 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e",
|
||||
"Flip horizontally": "\u041e\u0431\u044a\u0440\u043d\u0438 \u0445\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e",
|
||||
"Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
||||
"Image options": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
||||
"Zoom in": "\u041f\u0440\u0438\u0431\u043b\u0438\u0436\u0438",
|
||||
"Zoom out": "\u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0438",
|
||||
"Crop": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435",
|
||||
"Resize": "\u041f\u0440\u0435\u043e\u0440\u0430\u0437\u043c\u0435\u0440\u044f\u0432\u0430\u043d\u0435",
|
||||
"Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
|
||||
"Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442",
|
||||
"Sharpen": "\u0418\u0437\u043e\u0441\u0442\u0440\u044f\u043d\u0435",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Color levels": "\u0426\u0432\u0435\u0442\u043d\u0438 \u043d\u0438\u0432\u0430",
|
||||
"Gamma": "\u0413\u0430\u043c\u0430",
|
||||
"Invert": "\u0418\u043d\u0432\u0435\u0440\u0441\u0438\u044f",
|
||||
"Apply": "\u041f\u0440\u0438\u043b\u043e\u0436\u0438",
|
||||
"Back": "\u041d\u0430\u0437\u0430\u0434",
|
||||
"Insert date\/time": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u0430\u0442\u0430\/\u0447\u0430\u0441",
|
||||
"Date\/time": "\u0414\u0430\u0442\u0430\/\u0447\u0430\u0441",
|
||||
"Insert link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)",
|
||||
"Insert\/edit link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)",
|
||||
"Text to display": "\u0422\u0435\u043a\u0441\u0442",
|
||||
"Url": "\u0410\u0434\u0440\u0435\u0441 (URL)",
|
||||
"Target": "\u0426\u0435\u043b \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||
"None": "\u0411\u0435\u0437",
|
||||
"New window": "\u0412 \u043d\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446 (\u043f\u043e\u0434\u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446)",
|
||||
"Remove link": "\u041f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430",
|
||||
"Anchors": "\u041a\u043e\u0442\u0432\u0438",
|
||||
"Link": "\u0412\u0440\u044a\u0437\u043a\u0430(\u043b\u0438\u043d\u043a)",
|
||||
"Paste or type a link": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u0438\u043b\u0438 \u043d\u0430\u043f\u0438\u0448\u0435\u0442\u0435 \u0432\u0440\u044a\u0437\u043a\u0430(\u043b\u0438\u043d\u043a)",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u043d\u0430 \u0435-\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u0432\u044a\u043d\u0448\u0435\u043d \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f http:\/\/ \u043f\u0440\u0435\u0444\u0438\u043a\u0441?",
|
||||
"Link list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0432\u0440\u044a\u0437\u043a\u0438",
|
||||
"Insert video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
|
||||
"Insert\/edit video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
|
||||
"Insert\/edit media": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043c\u0435\u0434\u0438\u044f",
|
||||
"Alternative source": "\u0410\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0435\u043d \u0430\u0434\u0440\u0435\u0441",
|
||||
"Poster": "\u041f\u043e\u0441\u0442\u0435\u0440",
|
||||
"Paste your embed code below:": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043a\u043e\u0434\u0430 \u0437\u0430 \u0432\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0432 \u043f\u043e\u043b\u0435\u0442\u043e \u043f\u043e-\u0434\u043e\u043b\u0443:",
|
||||
"Embed": "\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435",
|
||||
"Media": "\u041c\u0435\u0434\u0438\u044f",
|
||||
"Nonbreaking space": "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||
"Page break": "\u041d\u043e\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430",
|
||||
"Paste as text": "\u041f\u043e\u0441\u0442\u0430\u0432\u0438 \u043a\u0430\u0442\u043e \u0442\u0435\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434",
|
||||
"Print": "\u041f\u0435\u0447\u0430\u0442",
|
||||
"Save": "\u0421\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Find": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0437\u0430",
|
||||
"Replace with": "\u0417\u0430\u043c\u044f\u043d\u0430 \u0441",
|
||||
"Replace": "\u0417\u0430\u043c\u044f\u043d\u0430",
|
||||
"Replace all": "\u0417\u0430\u043c\u044f\u043d\u0430 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0441\u0440\u0435\u0449\u0430\u043d\u0438\u044f",
|
||||
"Prev": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d",
|
||||
"Next": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",
|
||||
"Find and replace": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0438 \u0437\u0430\u043c\u044f\u043d\u0430",
|
||||
"Could not find the specified string.": "\u0422\u044a\u0440\u0441\u0435\u043d\u0438\u044f\u0442 \u0442\u0435\u043a\u0441\u0442 \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d.",
|
||||
"Match case": "\u0421\u044a\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u044a\u0440\u0430 (\u043c\u0430\u043b\u043a\u0438\/\u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438)",
|
||||
"Whole words": "\u0421\u0430\u043c\u043e \u0446\u0435\u043b\u0438 \u0434\u0443\u043c\u0438",
|
||||
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430",
|
||||
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435",
|
||||
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u043e",
|
||||
"Finish": "\u041a\u0440\u0430\u0439",
|
||||
"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u0440\u0435\u0447\u043d\u0438\u043a\u0430",
|
||||
"Insert table": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430",
|
||||
"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
||||
"Delete table": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
||||
"Cell": "\u041a\u043b\u0435\u0442\u043a\u0430",
|
||||
"Row": "\u0420\u0435\u0434",
|
||||
"Column": "\u041a\u043e\u043b\u043e\u043d\u0430",
|
||||
"Cell properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430",
|
||||
"Merge cells": "\u0421\u043b\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435",
|
||||
"Split cell": "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430",
|
||||
"Insert row before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438",
|
||||
"Insert row after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434",
|
||||
"Delete row": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434\u0430",
|
||||
"Row properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0435\u0434\u0430",
|
||||
"Cut row": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434",
|
||||
"Copy row": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434",
|
||||
"Paste row before": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438",
|
||||
"Paste row after": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434",
|
||||
"Insert column before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u043f\u0440\u0435\u0434\u0438",
|
||||
"Insert column after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u0441\u043b\u0435\u0434",
|
||||
"Delete column": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430\u0442\u0430",
|
||||
"Cols": "\u041a\u043e\u043b\u043e\u043d\u0438",
|
||||
"Rows": "\u0420\u0435\u0434\u043e\u0432\u0435",
|
||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||
"Height": "\u0412\u0438\u0441\u043e\u0447\u0438\u043d\u0430",
|
||||
"Cell spacing": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435",
|
||||
"Cell padding": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e",
|
||||
"Caption": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043f\u0440\u0435\u0434\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
||||
"Left": "\u041b\u044f\u0432\u043e",
|
||||
"Center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e",
|
||||
"Right": "\u0414\u044f\u0441\u043d\u043e",
|
||||
"Cell type": "\u0422\u0438\u043f \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430",
|
||||
"Scope": "\u041e\u0431\u0445\u0432\u0430\u0442",
|
||||
"Alignment": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"H Align": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Top": "\u0413\u043e\u0440\u0435",
|
||||
"Middle": "\u041f\u043e \u0441\u0440\u0435\u0434\u0430\u0442\u0430",
|
||||
"Bottom": "\u0414\u043e\u043b\u0443",
|
||||
"Header cell": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430 (\u0430\u043d\u0442\u0435\u0442\u043a\u0430)",
|
||||
"Row group": "Row group",
|
||||
"Column group": "Column group",
|
||||
"Row type": "\u0422\u0438\u043f \u043d\u0430 \u0440\u0435\u0434\u0430",
|
||||
"Header": "\u0413\u043e\u0440\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (header)",
|
||||
"Body": "\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 (body)",
|
||||
"Footer": "\u0414\u043e\u043b\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (footer)",
|
||||
"Border color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0440\u0430\u043c\u043a\u0430\u0442\u0430",
|
||||
"Insert template": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
||||
"Template": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
||||
"Text color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Background color": "\u0424\u043e\u043d\u043e\u0432 \u0446\u0432\u044f\u0442",
|
||||
"Custom...": "\u0418\u0437\u0431\u0440\u0430\u043d...",
|
||||
"Custom color": "\u0426\u0432\u044f\u0442 \u043f\u043e \u0438\u0437\u0431\u043e\u0440",
|
||||
"No color": "\u0411\u0435\u0437 \u0446\u0432\u044f\u0442",
|
||||
"Table of Contents": "\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0431\u043b\u043e\u043a\u043e\u0432\u0435\u0442\u0435",
|
||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0435\u043f\u0435\u0447\u0430\u0442\u0430\u0435\u043c\u0438 \u0437\u043d\u0430\u0446\u0438",
|
||||
"Words: {0}": "\u0411\u0440\u043e\u0439 \u0434\u0443\u043c\u0438: {0}",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435",
|
||||
"Insert": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435",
|
||||
"View": "\u0418\u0437\u0433\u043b\u0435\u0434",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
|
||||
"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442. \u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 Alt+F9 \u0437\u0430 \u043c\u0435\u043d\u044e; Alt+F10 \u0437\u0430 \u043b\u0435\u043d\u0442\u0430 \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438; Alt+0 \u0437\u0430 \u043f\u043e\u043c\u043e\u0449."
|
||||
});
|
|
@ -0,0 +1,260 @@
|
|||
tinymce.addI18n('cs_CZ',{
|
||||
"Redo": "Znovu",
|
||||
"Undo": "Zp\u011bt",
|
||||
"Cut": "Vyjmout",
|
||||
"Copy": "Kop\u00edrovat",
|
||||
"Paste": "Vlo\u017eit",
|
||||
"Select all": "Vybrat v\u0161e",
|
||||
"New document": "Nov\u00fd dokument",
|
||||
"Ok": "Ok",
|
||||
"Cancel": "Zru\u0161it",
|
||||
"Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky",
|
||||
"Bold": "Tu\u010dn\u011b",
|
||||
"Italic": "Kurz\u00edva",
|
||||
"Underline": "Podtr\u017een\u00e9",
|
||||
"Strikethrough": "P\u0159e\u0161krtnut\u00e9",
|
||||
"Superscript": "Horn\u00ed index",
|
||||
"Subscript": "Doln\u00ed index",
|
||||
"Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed",
|
||||
"Align left": "Vlevo",
|
||||
"Align center": "Na st\u0159ed",
|
||||
"Align right": "Vpravo",
|
||||
"Justify": "Zarovnat do bloku",
|
||||
"Bullet list": "Odr\u00e1\u017eky",
|
||||
"Numbered list": "\u010c\u00edslov\u00e1n\u00ed",
|
||||
"Decrease indent": "Zmen\u0161it odsazen\u00ed",
|
||||
"Increase indent": "Zv\u011b\u0161it odsazen\u00ed",
|
||||
"Close": "Zav\u0159\u00edt",
|
||||
"Formats": "Form\u00e1ty",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.",
|
||||
"Headers": "Nadpisy",
|
||||
"Header 1": "Nadpis 1",
|
||||
"Header 2": "Nadpis 2",
|
||||
"Header 3": "Nadpis 3",
|
||||
"Header 4": "Nadpis 4",
|
||||
"Header 5": "Nadpis 5",
|
||||
"Header 6": "Nadpis 6",
|
||||
"Headings": "Nadpisy",
|
||||
"Heading 1": "Nadpis 1",
|
||||
"Heading 2": "Nadpis 2",
|
||||
"Heading 3": "Nadpis 3",
|
||||
"Heading 4": "Nadpis 4",
|
||||
"Heading 5": "Nadpis 5",
|
||||
"Heading 6": "Nadpis 6",
|
||||
"Div": "Div (blok)",
|
||||
"Pre": "Pre (p\u0159edform\u00e1tov\u00e1no)",
|
||||
"Code": "Code (k\u00f3d)",
|
||||
"Paragraph": "Odstavec",
|
||||
"Blockquote": "Citace",
|
||||
"Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)",
|
||||
"Blocks": "Blokov\u00e9 zobrazen\u00ed (block)",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.",
|
||||
"Font Family": "Rodina p\u00edsma",
|
||||
"Font Sizes": "Velikost p\u00edsma",
|
||||
"Class": "T\u0159\u00edda",
|
||||
"Browse for an image": "Vybrat obr\u00e1zek",
|
||||
"OR": "NEBO",
|
||||
"Drop an image here": "P\u0159et\u00e1hn\u011bte obr\u00e1zek sem",
|
||||
"Upload": "Nahr\u00e1t",
|
||||
"Block": "Blok",
|
||||
"Align": "Zarovnat",
|
||||
"Default": "V\u00fdchoz\u00ed",
|
||||
"Circle": "Kole\u010dko",
|
||||
"Disc": "Punt\u00edk",
|
||||
"Square": "\u010ctvere\u010dek",
|
||||
"Lower Alpha": "Mal\u00e1 p\u00edsmena",
|
||||
"Lower Greek": "\u0158eck\u00e1 p\u00edsmena",
|
||||
"Lower Roman": "Mal\u00e9 \u0159\u00edmsl\u00e9 \u010d\u00edslice",
|
||||
"Upper Alpha": "Velk\u00e1 p\u00edsmena",
|
||||
"Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice",
|
||||
"Anchor": "Kotva",
|
||||
"Name": "N\u00e1zev",
|
||||
"Id": "ID",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID by m\u011blo za\u010d\u00ednat p\u00edsmenem, n\u00e1sledovan\u00fdm pouze p\u00edsmeny, \u010d\u00edsly, poml\u010dkami, te\u010dkami, \u010d\u00e1rkami a nebo podtr\u017e\u00edtky.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?",
|
||||
"Restore last draft": "Obnovit posledn\u00ed koncept.",
|
||||
"Special character": "Speci\u00e1ln\u00ed znak",
|
||||
"Source code": "Zdrojov\u00fd k\u00f3d",
|
||||
"Insert\/Edit code sample": "Vlo\u017eit\/Upravit uk\u00e1zku k\u00f3du",
|
||||
"Language": "Jazyk",
|
||||
"Code sample": "Uk\u00e1zka k\u00f3du",
|
||||
"Color": "Barva",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "Zleva doprava",
|
||||
"Right to left": "Zprava doleva",
|
||||
"Emoticons": "Emotikony",
|
||||
"Document properties": "Vlastnosti dokumentu",
|
||||
"Title": "Titulek",
|
||||
"Keywords": "Kl\u00ed\u010dov\u00e1 slova",
|
||||
"Description": "Popis",
|
||||
"Robots": "Roboti",
|
||||
"Author": "Autor",
|
||||
"Encoding": "K\u00f3dov\u00e1n\u00ed",
|
||||
"Fullscreen": "Celk\u00e1 obrazovka",
|
||||
"Action": "Akce",
|
||||
"Shortcut": "Kl\u00e1vesov\u00e1 zkratka",
|
||||
"Help": "N\u00e1pov\u011bda",
|
||||
"Address": "Blok s po\u0161tovn\u00ed adresou",
|
||||
"Focus to menubar": "P\u0159ej\u00edt do menu",
|
||||
"Focus to toolbar": "P\u0159ej\u00edt na panel n\u00e1stroj\u016f",
|
||||
"Focus to element path": "Focus to element path",
|
||||
"Focus to contextual toolbar": "P\u0159ej\u00edt na kontextov\u00fd panel n\u00e1stroj\u016f",
|
||||
"Insert link (if link plugin activated)": "Vlo\u017eit odkaz (pokud je aktivn\u00ed link plugin)",
|
||||
"Save (if save plugin activated)": "Ulo\u017eit (pokud je aktivni save plugin)",
|
||||
"Find (if searchreplace plugin activated)": "Hledat (pokud je aktivn\u00ed plugin searchreplace)",
|
||||
"Plugins installed ({0}):": "Instalovan\u00e9 pluginy ({0}):",
|
||||
"Premium plugins:": "Pr\u00e9miov\u00e9 pluginy:",
|
||||
"Learn more...": "Zjistit v\u00edce...",
|
||||
"You are using {0}": "Pou\u017e\u00edv\u00e1te {0}",
|
||||
"Plugins": "Pluginy",
|
||||
"Handy Shortcuts": "U\u017eite\u010dn\u00e9 kl\u00e1vesov\u00e9 zkratky",
|
||||
"Horizontal line": "Vodorovn\u00e1 linka",
|
||||
"Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek",
|
||||
"Image description": "Popis obr\u00e1zku",
|
||||
"Source": "URL",
|
||||
"Dimensions": "Rozm\u011bry",
|
||||
"Constrain proportions": "Zachovat proporce",
|
||||
"General": "Obecn\u00e9",
|
||||
"Advanced": "Pokro\u010dil\u00e9",
|
||||
"Style": "Styl",
|
||||
"Vertical space": "Vertik\u00e1ln\u00ed mezera",
|
||||
"Horizontal space": "Horizont\u00e1ln\u00ed mezera",
|
||||
"Border": "R\u00e1me\u010dek",
|
||||
"Insert image": "Vlo\u017eit obr\u00e1zek",
|
||||
"Image": "Obr\u00e1zek",
|
||||
"Image list": "Seznam obr\u00e1zk\u016f",
|
||||
"Rotate counterclockwise": "Oto\u010dit doleva",
|
||||
"Rotate clockwise": "Oto\u010dit doprava",
|
||||
"Flip vertically": "P\u0159evr\u00e1tit svisle",
|
||||
"Flip horizontally": "P\u0159evr\u00e1tit vodorovn\u011b",
|
||||
"Edit image": "Upravit obr\u00e1zek",
|
||||
"Image options": "Vlastnosti obr\u00e1zku",
|
||||
"Zoom in": "P\u0159ibl\u00ed\u017eit",
|
||||
"Zoom out": "Odd\u00e1lit",
|
||||
"Crop": "O\u0159\u00edznout",
|
||||
"Resize": "Zm\u011bnit velikost",
|
||||
"Orientation": "Orientace",
|
||||
"Brightness": "Jas",
|
||||
"Sharpen": "Ostrost",
|
||||
"Contrast": "Kontrast",
|
||||
"Color levels": "\u00darovn\u011b barev",
|
||||
"Gamma": "Gama",
|
||||
"Invert": "Invertovat",
|
||||
"Apply": "Pou\u017e\u00edt",
|
||||
"Back": "Zp\u011bt",
|
||||
"Insert date\/time": "Vlo\u017eit datum \/ \u010das",
|
||||
"Date\/time": "Datum\/\u010das",
|
||||
"Insert link": "Vlo\u017eit odkaz",
|
||||
"Insert\/edit link": "Vlo\u017eit \/ upravit odkaz",
|
||||
"Text to display": "Text odkazu",
|
||||
"Url": "URL",
|
||||
"Target": "C\u00edl",
|
||||
"None": "\u017d\u00e1dn\u00fd",
|
||||
"New window": "Nov\u00e9 okno",
|
||||
"Remove link": "Odstranit odkaz",
|
||||
"Anchors": "Kotvy",
|
||||
"Link": "Odkaz",
|
||||
"Paste or type a link": "Vlo\u017ete nebo napi\u0161te adresu odkazu",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?",
|
||||
"Link list": "Seznam odkaz\u016f",
|
||||
"Insert video": "Vlo\u017eit video",
|
||||
"Insert\/edit video": "Vlo\u017eit \/ upravit video",
|
||||
"Insert\/edit media": "Vlo\u017eit\/upravit m\u00e9dia",
|
||||
"Alternative source": "Alternativn\u00ed zdroj",
|
||||
"Poster": "Poster",
|
||||
"Paste your embed code below:": "Vlo\u017ete k\u00f3d pro vlo\u017een\u00ed",
|
||||
"Embed": "Vlo\u017een\u00fd",
|
||||
"Media": "M\u00e9dia",
|
||||
"Nonbreaking space": "Pevn\u00e1 mezera",
|
||||
"Page break": "Konec str\u00e1nky",
|
||||
"Paste as text": "Vlo\u017eit jako \u010dist\u00fd text",
|
||||
"Preview": "N\u00e1hled",
|
||||
"Print": "Tisk",
|
||||
"Save": "Ulo\u017eit",
|
||||
"Find": "Naj\u00edt",
|
||||
"Replace with": "Nahradit za",
|
||||
"Replace": "Nahradit",
|
||||
"Replace all": "Nahradit v\u0161e",
|
||||
"Prev": "P\u0159edchoz\u00ed",
|
||||
"Next": "Dal\u0161\u00ed",
|
||||
"Find and replace": "Naj\u00edt a nahradit",
|
||||
"Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.",
|
||||
"Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena",
|
||||
"Whole words": "Pouze cel\u00e1 slova",
|
||||
"Spellcheck": "Kontrola pravopisu",
|
||||
"Ignore": "Ignorovat",
|
||||
"Ignore all": "Ignorovat v\u0161e",
|
||||
"Finish": "Dokon\u010dit",
|
||||
"Add to Dictionary": "P\u0159idat do slovn\u00edku",
|
||||
"Insert table": "Vlo\u017eit tabulku",
|
||||
"Table properties": "Vlastnosti tabulky",
|
||||
"Delete table": "Smazat tabulku",
|
||||
"Cell": "Bu\u0148ka",
|
||||
"Row": "\u0158\u00e1dek",
|
||||
"Column": "Sloupec",
|
||||
"Cell properties": "Vlastnosti bu\u0148ky",
|
||||
"Merge cells": "Slou\u010dit bu\u0148ky",
|
||||
"Split cell": "Rozd\u011blit bu\u0148ku",
|
||||
"Insert row before": "Vlo\u017eit \u0159\u00e1dek p\u0159ed",
|
||||
"Insert row after": "Vlo\u017eit \u0159\u00e1dek za",
|
||||
"Delete row": "Smazat \u0159\u00e1dek",
|
||||
"Row properties": "Vlastnosti \u0159\u00e1dku",
|
||||
"Cut row": "Vyjmout \u0159\u00e1dek",
|
||||
"Copy row": "Kop\u00edrovat \u0159\u00e1dek",
|
||||
"Paste row before": "Vlo\u017eit \u0159\u00e1dek nad",
|
||||
"Paste row after": "Vlo\u017eit \u0159\u00e1dek pod",
|
||||
"Insert column before": "Vlo\u017eit sloupec vlevo",
|
||||
"Insert column after": "Vlo\u017eit sloupec vpravo",
|
||||
"Delete column": "Smazat sloupec",
|
||||
"Cols": "Sloupce",
|
||||
"Rows": "\u0158\u00e1dky",
|
||||
"Width": "\u0160\u00ed\u0159ka",
|
||||
"Height": "V\u00fd\u0161ka",
|
||||
"Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk",
|
||||
"Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk",
|
||||
"Caption": "Titulek",
|
||||
"Left": "Vlevo",
|
||||
"Center": "Na st\u0159ed",
|
||||
"Right": "Vpravo",
|
||||
"Cell type": "Typ bu\u0148ky",
|
||||
"Scope": "Rozsah",
|
||||
"Alignment": "Zarovn\u00e1n\u00ed",
|
||||
"H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
||||
"V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
||||
"Top": "Nahoru",
|
||||
"Middle": "Na st\u0159ed",
|
||||
"Bottom": "Dol\u016f",
|
||||
"Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka",
|
||||
"Row group": "Skupina \u0159\u00e1dk\u016f",
|
||||
"Column group": "Skupina sloupc\u016f",
|
||||
"Row type": "Typ \u0159\u00e1dku",
|
||||
"Header": "Hlavi\u010dka",
|
||||
"Body": "T\u011blo",
|
||||
"Footer": "Pati\u010dka",
|
||||
"Border color": "Barva r\u00e1me\u010dku",
|
||||
"Insert template": "Vlo\u017eit ze \u0161ablony",
|
||||
"Templates": "\u0160ablony",
|
||||
"Template": "\u0160ablona",
|
||||
"Text color": "Barva p\u00edsma",
|
||||
"Background color": "Barva pozad\u00ed",
|
||||
"Custom...": "Vlastn\u00ed",
|
||||
"Custom color": "Vlastn\u00ed barva",
|
||||
"No color": "Bez barvy",
|
||||
"Table of Contents": "Generovat obsah",
|
||||
"Show blocks": "Uk\u00e1zat bloky",
|
||||
"Show invisible characters": "Uk\u00e1zat skryt\u00e9 znaky",
|
||||
"Words: {0}": "Slova: {0}",
|
||||
"{0} words": "{0} slov",
|
||||
"File": "Soubor",
|
||||
"Edit": "\u00dapravy",
|
||||
"Insert": "Vlo\u017eit",
|
||||
"View": "Zobrazit",
|
||||
"Format": "Form\u00e1t",
|
||||
"Table": "Tabulka",
|
||||
"Tools": "N\u00e1stroje",
|
||||
"Powered by {0}": "Powered by {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "RTF dokument. Stikn\u011bte ALT-F9 pro zobrazen\u00ed menu, ALT-F10 pro zobrazen\u00ed n\u00e1strojov\u00e9 li\u0161ty, ALT-0 pro n\u00e1pov\u011bdu."
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('de',{
|
||||
"Redo": "Wiederholen",
|
||||
"Undo": "R\u00fcckg\u00e4ngig",
|
||||
"Cut": "Ausschneiden",
|
||||
"Copy": "Kopieren",
|
||||
"Paste": "Einf\u00fcgen",
|
||||
"Select all": "Alles ausw\u00e4hlen",
|
||||
"New document": "Neues Dokument",
|
||||
"Ok": "Ok",
|
||||
"Cancel": "Abbrechen",
|
||||
"Visual aids": "Visuelle Hilfen",
|
||||
"Bold": "Fett",
|
||||
"Italic": "Kursiv",
|
||||
"Underline": "Unterstrichen",
|
||||
"Strikethrough": "Durchgestrichen",
|
||||
"Superscript": "Hochgestellt",
|
||||
"Subscript": "Tiefgestellt",
|
||||
"Clear formatting": "Formatierung entfernen",
|
||||
"Align left": "Linksb\u00fcndig ausrichten",
|
||||
"Align center": "Zentriert ausrichten",
|
||||
"Align right": "Rechtsb\u00fcndig ausrichten",
|
||||
"Justify": "Blocksatz",
|
||||
"Bullet list": "Aufz\u00e4hlung",
|
||||
"Numbered list": "Nummerierte Liste",
|
||||
"Decrease indent": "Einzug verkleinern",
|
||||
"Increase indent": "Einzug vergr\u00f6\u00dfern",
|
||||
"Close": "Schlie\u00dfen",
|
||||
"Formats": "Formate",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Ihr Browser unterst\u00fctzt leider keinen direkten Zugriff auf die Zwischenablage. Bitte benutzen Sie die Strg + X \/ C \/ V Tastenkombinationen.",
|
||||
"Headers": "\u00dcberschriften",
|
||||
"Header 1": "\u00dcberschrift 1",
|
||||
"Header 2": "\u00dcberschrift 2",
|
||||
"Header 3": "\u00dcberschrift 3",
|
||||
"Header 4": "\u00dcberschrift 4",
|
||||
"Header 5": "\u00dcberschrift 5",
|
||||
"Header 6": "\u00dcberschrift 6",
|
||||
"Headings": "\u00dcberschriften",
|
||||
"Heading 1": "\u00dcberschrift 1",
|
||||
"Heading 2": "\u00dcberschrift 2",
|
||||
"Heading 3": "\u00dcberschrift 3",
|
||||
"Heading 4": "\u00dcberschrift 4",
|
||||
"Heading 5": "\u00dcberschrift 5",
|
||||
"Heading 6": "\u00dcberschrift 6",
|
||||
"Preformatted": "Preformatted",
|
||||
"Div": "Textblock",
|
||||
"Pre": "Vorformatierter Text",
|
||||
"Code": "Quelltext",
|
||||
"Paragraph": "Absatz",
|
||||
"Blockquote": "Zitat",
|
||||
"Inline": "Zeichenformate",
|
||||
"Blocks": "Absatzformate",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\u00fcgen ist nun im einfachen Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\u00fcgt, bis Sie diese Einstellung wieder ausschalten!",
|
||||
"Font Family": "Schriftart",
|
||||
"Font Sizes": "Schriftgr\u00f6\u00dfe",
|
||||
"Class": "Klasse",
|
||||
"Browse for an image": "Bild...",
|
||||
"OR": "ODER",
|
||||
"Drop an image here": "Bild hier ablegen",
|
||||
"Upload": "Hochladen",
|
||||
"Block": "Blocksatz",
|
||||
"Align": "Ausrichtung",
|
||||
"Default": "Standard",
|
||||
"Circle": "Kreis",
|
||||
"Disc": "Punkt",
|
||||
"Square": "Quadrat",
|
||||
"Lower Alpha": "Kleinbuchstaben",
|
||||
"Lower Greek": "Griechische Kleinbuchstaben",
|
||||
"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)",
|
||||
"Upper Alpha": "Gro\u00dfbuchstaben",
|
||||
"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)",
|
||||
"Anchor": "Textmarke",
|
||||
"Name": "Name",
|
||||
"Id": "Kennung",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Die Kennung sollte mit einem Buchstaben anfangen. Nachfolgend nur Buchstaben, Zahlen, Striche (Minus), Punkte, Kommas und Unterstriche.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Die \u00c4nderungen wurden noch nicht gespeichert, sind Sie sicher, dass Sie diese Seite verlassen wollen?",
|
||||
"Restore last draft": "Letzten Entwurf wiederherstellen",
|
||||
"Special character": "Sonderzeichen",
|
||||
"Source code": "Quelltext",
|
||||
"Insert\/Edit code sample": "Codebeispiel einf\u00fcgen\/bearbeiten",
|
||||
"Language": "Sprache",
|
||||
"Code sample": "Codebeispiel",
|
||||
"Color": "Farbe",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "Von links nach rechts",
|
||||
"Right to left": "Von rechts nach links",
|
||||
"Emoticons": "Emoticons",
|
||||
"Document properties": "Dokumenteigenschaften",
|
||||
"Title": "Titel",
|
||||
"Keywords": "Sch\u00fcsselw\u00f6rter",
|
||||
"Description": "Beschreibung",
|
||||
"Robots": "Robots",
|
||||
"Author": "Verfasser",
|
||||
"Encoding": "Zeichenkodierung",
|
||||
"Fullscreen": "Vollbild",
|
||||
"Action": "Aktion",
|
||||
"Shortcut": "Shortcut",
|
||||
"Help": "Hilfe",
|
||||
"Address": "Adresse",
|
||||
"Focus to menubar": "Fokus auf Men\u00fcleiste",
|
||||
"Focus to toolbar": "Fokus auf Werkzeugleiste",
|
||||
"Focus to element path": "Fokus auf Elementpfad",
|
||||
"Focus to contextual toolbar": "Fokus auf kontextbezogene Werkzeugleiste",
|
||||
"Insert link (if link plugin activated)": "Link einf\u00fcgen (wenn Link-Plugin aktiviert ist)",
|
||||
"Save (if save plugin activated)": "Speichern (wenn Save-Plugin aktiviert ist)",
|
||||
"Find (if searchreplace plugin activated)": "Suchen einf\u00fcgen (wenn Suchen\/Ersetzen-Plugin aktiviert ist)",
|
||||
"Plugins installed ({0}):": "installierte Plugins ({0}):",
|
||||
"Premium plugins:": "Premium Plugins:",
|
||||
"Learn more...": "Erfahren Sie mehr dazu...",
|
||||
"You are using {0}": "Sie verwenden {0}",
|
||||
"Plugins": "Plugins",
|
||||
"Handy Shortcuts": "Praktische Tastenkombinationen",
|
||||
"Horizontal line": "Horizontale Linie",
|
||||
"Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten",
|
||||
"Image description": "Bildbeschreibung",
|
||||
"Source": "Quelle",
|
||||
"Dimensions": "Abmessungen",
|
||||
"Constrain proportions": "Seitenverh\u00e4ltnis beibehalten",
|
||||
"General": "Allgemein",
|
||||
"Advanced": "Erweitert",
|
||||
"Style": "Stil",
|
||||
"Vertical space": "Vertikaler Abstand",
|
||||
"Horizontal space": "Horizontaler Abstand",
|
||||
"Border": "Rahmen",
|
||||
"Insert image": "Bild einf\u00fcgen",
|
||||
"Image": "Bild",
|
||||
"Image list": "Bildliste",
|
||||
"Rotate counterclockwise": "Gegen den Uhrzeigersinn drehen",
|
||||
"Rotate clockwise": "Im Uhrzeigersinn drehen",
|
||||
"Flip vertically": "Vertikal spiegeln",
|
||||
"Flip horizontally": "Horizontal spiegeln",
|
||||
"Edit image": "Bild bearbeiten",
|
||||
"Image options": "Bildeigenschaften",
|
||||
"Zoom in": "Ansicht vergr\u00f6\u00dfern",
|
||||
"Zoom out": "Ansicht verkleinern",
|
||||
"Crop": "Bescheiden",
|
||||
"Resize": "Skalieren",
|
||||
"Orientation": "Ausrichtung",
|
||||
"Brightness": "Helligkeit",
|
||||
"Sharpen": "Sch\u00e4rfen",
|
||||
"Contrast": "Kontrast",
|
||||
"Color levels": "Farbwerte",
|
||||
"Gamma": "Gamma",
|
||||
"Invert": "Invertieren",
|
||||
"Apply": "Anwenden",
|
||||
"Back": "Zur\u00fcck",
|
||||
"Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ",
|
||||
"Date\/time": "Datum\/Uhrzeit",
|
||||
"Insert link": "Link einf\u00fcgen",
|
||||
"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten",
|
||||
"Text to display": "Anzuzeigender Text",
|
||||
"Url": "URL",
|
||||
"Target": "Ziel",
|
||||
"None": "Keine",
|
||||
"New window": "Neues Fenster",
|
||||
"Remove link": "Link entfernen",
|
||||
"Anchors": "Textmarken",
|
||||
"Link": "Link",
|
||||
"Paste or type a link": "Link einf\u00fcgen oder eintippen",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?",
|
||||
"Link list": "Linkliste",
|
||||
"Insert video": "Video einf\u00fcgen",
|
||||
"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten",
|
||||
"Insert\/edit media": "Medien einf\u00fcgen\/bearbeiten",
|
||||
"Alternative source": "Alternative Quelle",
|
||||
"Poster": "Poster",
|
||||
"Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:",
|
||||
"Embed": "Einbetten",
|
||||
"Media": "Medium",
|
||||
"Nonbreaking space": "Gesch\u00fctztes Leerzeichen",
|
||||
"Page break": "Seitenumbruch",
|
||||
"Paste as text": "Als Text einf\u00fcgen",
|
||||
"Preview": "Vorschau",
|
||||
"Print": "Drucken",
|
||||
"Save": "Speichern",
|
||||
"Find": "Suchen",
|
||||
"Replace with": "Ersetzen durch",
|
||||
"Replace": "Ersetzen",
|
||||
"Replace all": "Alles ersetzen",
|
||||
"Prev": "Zur\u00fcck",
|
||||
"Next": "Weiter",
|
||||
"Find and replace": "Suchen und ersetzen",
|
||||
"Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.",
|
||||
"Match case": "Gro\u00df-\/Kleinschreibung beachten",
|
||||
"Whole words": "Nur ganze W\u00f6rter",
|
||||
"Spellcheck": "Rechtschreibpr\u00fcfung",
|
||||
"Ignore": "Ignorieren",
|
||||
"Ignore all": "Alles Ignorieren",
|
||||
"Finish": "Ende",
|
||||
"Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen",
|
||||
"Insert table": "Tabelle einf\u00fcgen",
|
||||
"Table properties": "Tabelleneigenschaften",
|
||||
"Delete table": "Tabelle l\u00f6schen",
|
||||
"Cell": "Zelle",
|
||||
"Row": "Zeile",
|
||||
"Column": "Spalte",
|
||||
"Cell properties": "Zelleneigenschaften",
|
||||
"Merge cells": "Zellen verbinden",
|
||||
"Split cell": "Zelle aufteilen",
|
||||
"Insert row before": "Neue Zeile davor einf\u00fcgen ",
|
||||
"Insert row after": "Neue Zeile danach einf\u00fcgen",
|
||||
"Delete row": "Zeile l\u00f6schen",
|
||||
"Row properties": "Zeileneigenschaften",
|
||||
"Cut row": "Zeile ausschneiden",
|
||||
"Copy row": "Zeile kopieren",
|
||||
"Paste row before": "Zeile davor einf\u00fcgen",
|
||||
"Paste row after": "Zeile danach einf\u00fcgen",
|
||||
"Insert column before": "Neue Spalte davor einf\u00fcgen",
|
||||
"Insert column after": "Neue Spalte danach einf\u00fcgen",
|
||||
"Delete column": "Spalte l\u00f6schen",
|
||||
"Cols": "Spalten",
|
||||
"Rows": "Zeilen",
|
||||
"Width": "Breite",
|
||||
"Height": "H\u00f6he",
|
||||
"Cell spacing": "Zellenabstand",
|
||||
"Cell padding": "Zelleninnenabstand",
|
||||
"Caption": "Beschriftung",
|
||||
"Left": "Linksb\u00fcndig",
|
||||
"Center": "Zentriert",
|
||||
"Right": "Rechtsb\u00fcndig",
|
||||
"Cell type": "Zellentyp",
|
||||
"Scope": "G\u00fcltigkeitsbereich",
|
||||
"Alignment": "Ausrichtung",
|
||||
"H Align": "Horizontale Ausrichtung",
|
||||
"V Align": "Vertikale Ausrichtung",
|
||||
"Top": "Oben",
|
||||
"Middle": "Mitte",
|
||||
"Bottom": "Unten",
|
||||
"Header cell": "Kopfzelle",
|
||||
"Row group": "Zeilengruppe",
|
||||
"Column group": "Spaltengruppe",
|
||||
"Row type": "Zeilentyp",
|
||||
"Header": "Kopfzeile",
|
||||
"Body": "Inhalt",
|
||||
"Footer": "Fu\u00dfzeile",
|
||||
"Border color": "Rahmenfarbe",
|
||||
"Insert template": "Vorlage einf\u00fcgen ",
|
||||
"Templates": "Vorlagen",
|
||||
"Template": "Vorlage",
|
||||
"Text color": "Textfarbe",
|
||||
"Background color": "Hintergrundfarbe",
|
||||
"Custom...": "Benutzerdefiniert...",
|
||||
"Custom color": "Benutzerdefinierte Farbe",
|
||||
"No color": "Keine Farbe",
|
||||
"Table of Contents": "Inhaltsverzeichnis",
|
||||
"Show blocks": "Bl\u00f6cke anzeigen",
|
||||
"Show invisible characters": "Unsichtbare Zeichen anzeigen",
|
||||
"Words: {0}": "W\u00f6rter: {0}",
|
||||
"{0} words": "{0} W\u00f6rter",
|
||||
"File": "Datei",
|
||||
"Edit": "Bearbeiten",
|
||||
"Insert": "Einf\u00fcgen",
|
||||
"View": "Ansicht",
|
||||
"Format": "Format",
|
||||
"Table": "Tabelle",
|
||||
"Tools": "Werkzeuge",
|
||||
"Powered by {0}": "Betrieben von {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe"
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('es',{
|
||||
"Redo": "Rehacer",
|
||||
"Undo": "Deshacer",
|
||||
"Cut": "Cortar",
|
||||
"Copy": "Copiar",
|
||||
"Paste": "Pegar",
|
||||
"Select all": "Seleccionar todo",
|
||||
"New document": "Nuevo documento",
|
||||
"Ok": "Ok",
|
||||
"Cancel": "Cancelar",
|
||||
"Visual aids": "Ayudas visuales",
|
||||
"Bold": "Negrita",
|
||||
"Italic": "It\u00e1lica",
|
||||
"Underline": "Subrayado",
|
||||
"Strikethrough": "Tachado",
|
||||
"Superscript": "Super\u00edndice",
|
||||
"Subscript": "Sub\u00edndice",
|
||||
"Clear formatting": "Limpiar formato",
|
||||
"Align left": "Alinear a la izquierda",
|
||||
"Align center": "Alinear al centro",
|
||||
"Align right": "Alinear a la derecha",
|
||||
"Justify": "Justificar",
|
||||
"Bullet list": "Lista de vi\u00f1etas",
|
||||
"Numbered list": "Lista numerada",
|
||||
"Decrease indent": "Disminuir sangr\u00eda",
|
||||
"Increase indent": "Incrementar sangr\u00eda",
|
||||
"Close": "Cerrar",
|
||||
"Formats": "Formatos",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tu navegador no soporta acceso directo al portapapeles. Por favor usa las teclas Crtl+X\/C\/V de tu teclado",
|
||||
"Headers": "Encabezados",
|
||||
"Header 1": "Encabezado 1",
|
||||
"Header 2": "Encabezado 2 ",
|
||||
"Header 3": "Encabezado 3",
|
||||
"Header 4": "Encabezado 4",
|
||||
"Header 5": "Encabezado 5 ",
|
||||
"Header 6": "Encabezado 6",
|
||||
"Headings": "Encabezados",
|
||||
"Heading 1": "Encabezado 1",
|
||||
"Heading 2": "Encabezado 2",
|
||||
"Heading 3": "Encabezado 3",
|
||||
"Heading 4": "Encabezado 4",
|
||||
"Heading 5": "Encabezado 5",
|
||||
"Heading 6": "Encabezado 6",
|
||||
"Preformatted": "Preformateado",
|
||||
"Div": "Capa",
|
||||
"Pre": "Pre",
|
||||
"Code": "C\u00f3digo",
|
||||
"Paragraph": "P\u00e1rrafo",
|
||||
"Blockquote": "Bloque de cita",
|
||||
"Inline": "en l\u00ednea",
|
||||
"Blocks": "Bloques",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Pegar est\u00e1 ahora en modo de texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.",
|
||||
"Font Family": "Familia de fuentes",
|
||||
"Font Sizes": "Tama\u00f1os de fuente",
|
||||
"Class": "Clase",
|
||||
"Browse for an image": "Exporador de imagenes",
|
||||
"OR": "O",
|
||||
"Drop an image here": "Arrastre una imagen aqu\u00ed",
|
||||
"Upload": "Subir",
|
||||
"Block": "Bloque",
|
||||
"Align": "Alinear",
|
||||
"Default": "Por defecto",
|
||||
"Circle": "C\u00edrculo",
|
||||
"Disc": "Disco",
|
||||
"Square": "Cuadrado",
|
||||
"Lower Alpha": "Inferior Alfa",
|
||||
"Lower Greek": "Inferior Griega",
|
||||
"Lower Roman": "Inferior Romana",
|
||||
"Upper Alpha": "Superior Alfa",
|
||||
"Upper Roman": "Superior Romana",
|
||||
"Anchor": "Ancla",
|
||||
"Name": "Nombre",
|
||||
"Id": "Id",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Deber\u00eda comenzar por una letra, seguida solo de letras, n\u00fameros, guiones, puntos, dos puntos o guiones bajos.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?",
|
||||
"Restore last draft": "Restaurar el \u00faltimo borrador",
|
||||
"Special character": "Car\u00e1cter especial",
|
||||
"Source code": "C\u00f3digo fuente",
|
||||
"Insert\/Edit code sample": "Insertar\/editar c\u00f3digo de prueba",
|
||||
"Language": "Idioma",
|
||||
"Code sample": "Ejemplo de c\u00f3digo",
|
||||
"Color": "Color",
|
||||
"R": "R",
|
||||
"G": "V",
|
||||
"B": "A",
|
||||
"Left to right": "De izquierda a derecha",
|
||||
"Right to left": "De derecha a izquierda",
|
||||
"Emoticons": "Emoticonos",
|
||||
"Document properties": "Propiedades del documento",
|
||||
"Title": "T\u00edtulo",
|
||||
"Keywords": "Palabras clave",
|
||||
"Description": "Descripci\u00f3n",
|
||||
"Robots": "Robots",
|
||||
"Author": "Autor",
|
||||
"Encoding": "Codificaci\u00f3n",
|
||||
"Fullscreen": "Pantalla completa",
|
||||
"Action": "Acci\u00f3n",
|
||||
"Shortcut": "Atajo",
|
||||
"Help": "Ayuda",
|
||||
"Address": "Direcci\u00f3n",
|
||||
"Focus to menubar": "Enfocar la barra del men\u00fa",
|
||||
"Focus to toolbar": "Enfocar la barra de herramientas",
|
||||
"Focus to element path": "Enfocar la ruta del elemento",
|
||||
"Focus to contextual toolbar": "Enfocar la barra de herramientas contextual",
|
||||
"Insert link (if link plugin activated)": "Insertar enlace (si el complemento de enlace est\u00e1 activado)",
|
||||
"Save (if save plugin activated)": "Guardar (si el componente de salvar est\u00e1 activado)",
|
||||
"Find (if searchreplace plugin activated)": "Buscar (si el complemento buscar-remplazar est\u00e1 activado)",
|
||||
"Plugins installed ({0}):": "Plugins instalados ({0}):",
|
||||
"Premium plugins:": "Complementos premium:",
|
||||
"Learn more...": "Aprende m\u00e1s...",
|
||||
"You are using {0}": "Estas usando {0}",
|
||||
"Plugins": "Complementos",
|
||||
"Handy Shortcuts": "Accesos directos",
|
||||
"Horizontal line": "L\u00ednea horizontal",
|
||||
"Insert\/edit image": "Insertar\/editar imagen",
|
||||
"Image description": "Descripci\u00f3n de la imagen",
|
||||
"Source": "Enlace",
|
||||
"Dimensions": "Dimensiones",
|
||||
"Constrain proportions": "Restringir proporciones",
|
||||
"General": "General",
|
||||
"Advanced": "Avanzado",
|
||||
"Style": "Estilo",
|
||||
"Vertical space": "Espacio vertical",
|
||||
"Horizontal space": "Espacio horizontal",
|
||||
"Border": "Borde",
|
||||
"Insert image": "Insertar imagen",
|
||||
"Image": "Imagen",
|
||||
"Image list": "Lista de im\u00e1genes",
|
||||
"Rotate counterclockwise": "Girar a la izquierda",
|
||||
"Rotate clockwise": "Girar a la derecha",
|
||||
"Flip vertically": "Invertir verticalmente",
|
||||
"Flip horizontally": "Invertir horizontalmente",
|
||||
"Edit image": "Editar imagen",
|
||||
"Image options": "Opciones de imagen",
|
||||
"Zoom in": "Acercar",
|
||||
"Zoom out": "Alejar",
|
||||
"Crop": "Recortar",
|
||||
"Resize": "Redimensionar",
|
||||
"Orientation": "Orientaci\u00f3n",
|
||||
"Brightness": "Brillo",
|
||||
"Sharpen": "Forma",
|
||||
"Contrast": "Contraste",
|
||||
"Color levels": "Niveles de color",
|
||||
"Gamma": "Gamma",
|
||||
"Invert": "Invertir",
|
||||
"Apply": "Aplicar",
|
||||
"Back": "Atr\u00e1s",
|
||||
"Insert date\/time": "Insertar fecha\/hora",
|
||||
"Date\/time": "Fecha\/hora",
|
||||
"Insert link": "Insertar enlace",
|
||||
"Insert\/edit link": "Insertar\/editar enlace",
|
||||
"Text to display": "Texto para mostrar",
|
||||
"Url": "URL",
|
||||
"Target": "Destino",
|
||||
"None": "Ninguno",
|
||||
"New window": "Nueva ventana",
|
||||
"Remove link": "Quitar enlace",
|
||||
"Anchors": "Anclas",
|
||||
"Link": "Enlace",
|
||||
"Paste or type a link": "Pega o introduce un enlace",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El enlace que has introducido no parece ser una direcci\u00f3n de correo electr\u00f3nico. Quieres a\u00f1adir el prefijo necesario mailto: ?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El enlace que has introducido no parece ser una enlace externo. Quieres a\u00f1adir el prefijo necesario http:\/\/ ?",
|
||||
"Link list": "Lista de enlaces",
|
||||
"Insert video": "Insertar video",
|
||||
"Insert\/edit video": "Insertar\/editar video",
|
||||
"Insert\/edit media": "Insertar\/editar medio",
|
||||
"Alternative source": "Enlace alternativo",
|
||||
"Poster": "Miniatura",
|
||||
"Paste your embed code below:": "Pega tu c\u00f3digo embebido debajo",
|
||||
"Embed": "Incrustado",
|
||||
"Media": "Media",
|
||||
"Nonbreaking space": "Espacio fijo",
|
||||
"Page break": "Salto de p\u00e1gina",
|
||||
"Paste as text": "Pegar como texto",
|
||||
"Preview": "Previsualizar",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Guardar",
|
||||
"Find": "Buscar",
|
||||
"Replace with": "Reemplazar con",
|
||||
"Replace": "Reemplazar",
|
||||
"Replace all": "Reemplazar todo",
|
||||
"Prev": "Anterior",
|
||||
"Next": "Siguiente",
|
||||
"Find and replace": "Buscar y reemplazar",
|
||||
"Could not find the specified string.": "No se encuentra la cadena de texto especificada",
|
||||
"Match case": "Coincidencia exacta",
|
||||
"Whole words": "Palabras completas",
|
||||
"Spellcheck": "Corrector ortogr\u00e1fico",
|
||||
"Ignore": "Ignorar",
|
||||
"Ignore all": "Ignorar todos",
|
||||
"Finish": "Finalizar",
|
||||
"Add to Dictionary": "A\u00f1adir al Diccionario",
|
||||
"Insert table": "Insertar tabla",
|
||||
"Table properties": "Propiedades de la tabla",
|
||||
"Delete table": "Eliminar tabla",
|
||||
"Cell": "Celda",
|
||||
"Row": "Fila",
|
||||
"Column": "Columna",
|
||||
"Cell properties": "Propiedades de la celda",
|
||||
"Merge cells": "Combinar celdas",
|
||||
"Split cell": "Dividir celdas",
|
||||
"Insert row before": "Insertar fila antes",
|
||||
"Insert row after": "Insertar fila despu\u00e9s ",
|
||||
"Delete row": "Eliminar fila",
|
||||
"Row properties": "Propiedades de la fila",
|
||||
"Cut row": "Cortar fila",
|
||||
"Copy row": "Copiar fila",
|
||||
"Paste row before": "Pegar la fila antes",
|
||||
"Paste row after": "Pegar la fila despu\u00e9s",
|
||||
"Insert column before": "Insertar columna antes",
|
||||
"Insert column after": "Insertar columna despu\u00e9s",
|
||||
"Delete column": "Eliminar columna",
|
||||
"Cols": "Columnas",
|
||||
"Rows": "Filas",
|
||||
"Width": "Ancho",
|
||||
"Height": "Alto",
|
||||
"Cell spacing": "Espacio entre celdas",
|
||||
"Cell padding": "Relleno de celda",
|
||||
"Caption": "Subt\u00edtulo",
|
||||
"Left": "Izquierda",
|
||||
"Center": "Centrado",
|
||||
"Right": "Derecha",
|
||||
"Cell type": "Tipo de celda",
|
||||
"Scope": "\u00c1mbito",
|
||||
"Alignment": "Alineaci\u00f3n",
|
||||
"H Align": "Alineamiento Horizontal",
|
||||
"V Align": "Alineamiento Vertical",
|
||||
"Top": "Arriba",
|
||||
"Middle": "Centro",
|
||||
"Bottom": "Abajo",
|
||||
"Header cell": "Celda de la cebecera",
|
||||
"Row group": "Grupo de filas",
|
||||
"Column group": "Grupo de columnas",
|
||||
"Row type": "Tipo de fila",
|
||||
"Header": "Cabecera",
|
||||
"Body": "Cuerpo",
|
||||
"Footer": "Pie de p\u00e1gina",
|
||||
"Border color": "Color del borde",
|
||||
"Insert template": "Insertar plantilla",
|
||||
"Templates": "Plantillas",
|
||||
"Template": "Plantilla",
|
||||
"Text color": "Color del texto",
|
||||
"Background color": "Color de fondo",
|
||||
"Custom...": "Personalizar...",
|
||||
"Custom color": "Color personalizado",
|
||||
"No color": "Sin color",
|
||||
"Table of Contents": "Tabla de contenidos",
|
||||
"Show blocks": "Mostrar bloques",
|
||||
"Show invisible characters": "Mostrar caracteres invisibles",
|
||||
"Words: {0}": "Palabras: {0}",
|
||||
"{0} words": "{0} palabras",
|
||||
"File": "Archivo",
|
||||
"Edit": "Editar",
|
||||
"Insert": "Insertar",
|
||||
"View": "Ver",
|
||||
"Format": "Formato",
|
||||
"Table": "Tabla",
|
||||
"Tools": "Herramientas",
|
||||
"Powered by {0}": "Desarrollado por {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto enriquecido. Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para ayuda"
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('fr_FR',{
|
||||
"Redo": "R\u00e9tablir",
|
||||
"Undo": "Annuler",
|
||||
"Cut": "Couper",
|
||||
"Copy": "Copier",
|
||||
"Paste": "Coller",
|
||||
"Select all": "Tout s\u00e9lectionner",
|
||||
"New document": "Nouveau document",
|
||||
"Ok": "Ok",
|
||||
"Cancel": "Annuler",
|
||||
"Visual aids": "Aides visuelle",
|
||||
"Bold": "Gras",
|
||||
"Italic": "Italique",
|
||||
"Underline": "Soulign\u00e9",
|
||||
"Strikethrough": "Barr\u00e9",
|
||||
"Superscript": "Exposant",
|
||||
"Subscript": "Indice",
|
||||
"Clear formatting": "Effacer la mise en forme",
|
||||
"Align left": "Aligner \u00e0 gauche",
|
||||
"Align center": "Centrer",
|
||||
"Align right": "Aligner \u00e0 droite",
|
||||
"Justify": "Justifier",
|
||||
"Bullet list": "Puces",
|
||||
"Numbered list": "Num\u00e9rotation",
|
||||
"Decrease indent": "Diminuer le retrait",
|
||||
"Increase indent": "Augmenter le retrait",
|
||||
"Close": "Fermer",
|
||||
"Formats": "Formats",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Votre navigateur ne supporte pas la copie directe. Merci d'utiliser les touches Ctrl+X\/C\/V.",
|
||||
"Headers": "Titres",
|
||||
"Header 1": "Titre 1",
|
||||
"Header 2": "Titre 2",
|
||||
"Header 3": "Titre 3",
|
||||
"Header 4": "Titre 4",
|
||||
"Header 5": "Titre 5",
|
||||
"Header 6": "Titre 6",
|
||||
"Headings": "En-t\u00eates",
|
||||
"Heading 1": "En-t\u00eate 1",
|
||||
"Heading 2": "En-t\u00eate 2",
|
||||
"Heading 3": "En-t\u00eate 3",
|
||||
"Heading 4": "En-t\u00eate 4",
|
||||
"Heading 5": "En-t\u00eate 5",
|
||||
"Heading 6": "En-t\u00eate 6",
|
||||
"Preformatted": "Pr\u00e9-formatt\u00e9",
|
||||
"Div": "Div",
|
||||
"Pre": "Pre",
|
||||
"Code": "Code",
|
||||
"Paragraph": "Paragraphe",
|
||||
"Blockquote": "Citation",
|
||||
"Inline": "En ligne",
|
||||
"Blocks": "Blocs",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.",
|
||||
"Font Family": "Police",
|
||||
"Font Sizes": "Taille de police",
|
||||
"Class": "Classe",
|
||||
"Browse for an image": "Parcourir pour s\u00e9lectionner une image",
|
||||
"OR": "OU",
|
||||
"Drop an image here": "Glisser une image ici",
|
||||
"Upload": "D\u00e9poser",
|
||||
"Block": "Bloquer",
|
||||
"Align": "Aligner",
|
||||
"Default": "Par d\u00e9faut",
|
||||
"Circle": "Cercle",
|
||||
"Disc": "Disque",
|
||||
"Square": "Carr\u00e9",
|
||||
"Lower Alpha": "Alpha minuscule",
|
||||
"Lower Greek": "Grec minuscule",
|
||||
"Lower Roman": "Romain minuscule",
|
||||
"Upper Alpha": "Alpha majuscule",
|
||||
"Upper Roman": "Romain majuscule",
|
||||
"Anchor": "Ancre",
|
||||
"Name": "Nom",
|
||||
"Id": "Id",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'Id doit commencer par une lettre suivi par des lettres, nombres, tirets, points, deux-points ou underscores",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?",
|
||||
"Restore last draft": "Restaurer le dernier brouillon",
|
||||
"Special character": "Caract\u00e8res sp\u00e9ciaux",
|
||||
"Source code": "Code source",
|
||||
"Insert\/Edit code sample": "Ins\u00e9rer \/ modifier une exemple de code",
|
||||
"Language": "Langue",
|
||||
"Code sample": "Extrait de code",
|
||||
"Color": "Couleur",
|
||||
"R": "R",
|
||||
"G": "V",
|
||||
"B": "B",
|
||||
"Left to right": "Gauche \u00e0 droite",
|
||||
"Right to left": "Droite \u00e0 gauche",
|
||||
"Emoticons": "Emotic\u00f4nes",
|
||||
"Document properties": "Propri\u00e9t\u00e9 du document",
|
||||
"Title": "Titre",
|
||||
"Keywords": "Mots-cl\u00e9s",
|
||||
"Description": "Description",
|
||||
"Robots": "Robots",
|
||||
"Author": "Auteur",
|
||||
"Encoding": "Encodage",
|
||||
"Fullscreen": "Plein \u00e9cran",
|
||||
"Action": "Action",
|
||||
"Shortcut": "Raccourci",
|
||||
"Help": "Aide",
|
||||
"Address": "Adresse",
|
||||
"Focus to menubar": "Cibler la barre de menu",
|
||||
"Focus to toolbar": "Cibler la barre d'outils",
|
||||
"Focus to element path": "Cibler le chemin vers l'\u00e9l\u00e9ment",
|
||||
"Focus to contextual toolbar": "Cibler la barre d'outils contextuelle",
|
||||
"Insert link (if link plugin activated)": "Ins\u00e9rer un lien (si le module link est activ\u00e9)",
|
||||
"Save (if save plugin activated)": "Enregistrer (si le module save est activ\u00e9)",
|
||||
"Find (if searchreplace plugin activated)": "Rechercher (si le module searchreplace est activ\u00e9)",
|
||||
"Plugins installed ({0}):": "Modules install\u00e9s ({0}) : ",
|
||||
"Premium plugins:": "Modules premium :",
|
||||
"Learn more...": "En savoir plus...",
|
||||
"You are using {0}": "Vous utilisez {0}",
|
||||
"Plugins": "Plugins",
|
||||
"Handy Shortcuts": "Raccourcis utiles",
|
||||
"Horizontal line": "Ligne horizontale",
|
||||
"Insert\/edit image": "Ins\u00e9rer\/modifier une image",
|
||||
"Image description": "Description de l'image",
|
||||
"Source": "Source",
|
||||
"Dimensions": "Dimensions",
|
||||
"Constrain proportions": "Conserver les proportions",
|
||||
"General": "G\u00e9n\u00e9ral",
|
||||
"Advanced": "Avanc\u00e9",
|
||||
"Style": "Style",
|
||||
"Vertical space": "Espacement vertical",
|
||||
"Horizontal space": "Espacement horizontal",
|
||||
"Border": "Bordure",
|
||||
"Insert image": "Ins\u00e9rer une image",
|
||||
"Image": "Image",
|
||||
"Image list": "Liste d'images",
|
||||
"Rotate counterclockwise": "Rotation anti-horaire",
|
||||
"Rotate clockwise": "Rotation horaire",
|
||||
"Flip vertically": "Retournement vertical",
|
||||
"Flip horizontally": "Retournement horizontal",
|
||||
"Edit image": "Modifier l'image",
|
||||
"Image options": "Options de l'image",
|
||||
"Zoom in": "Zoomer",
|
||||
"Zoom out": "D\u00e9zoomer",
|
||||
"Crop": "Rogner",
|
||||
"Resize": "Redimensionner",
|
||||
"Orientation": "Orientation",
|
||||
"Brightness": "Luminosit\u00e9",
|
||||
"Sharpen": "Affiner",
|
||||
"Contrast": "Contraste",
|
||||
"Color levels": "Niveaux de couleur",
|
||||
"Gamma": "Gamma",
|
||||
"Invert": "Inverser",
|
||||
"Apply": "Appliquer",
|
||||
"Back": "Retour",
|
||||
"Insert date\/time": "Ins\u00e9rer date\/heure",
|
||||
"Date\/time": "Date\/heure",
|
||||
"Insert link": "Ins\u00e9rer un lien",
|
||||
"Insert\/edit link": "Ins\u00e9rer\/modifier un lien",
|
||||
"Text to display": "Texte \u00e0 afficher",
|
||||
"Url": "Url",
|
||||
"Target": "Cible",
|
||||
"None": "n\/a",
|
||||
"New window": "Nouvelle fen\u00eatre",
|
||||
"Remove link": "Enlever le lien",
|
||||
"Anchors": "Ancres",
|
||||
"Link": "Lien",
|
||||
"Paste or type a link": "Coller ou taper un lien",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?",
|
||||
"Link list": "Liste de liens",
|
||||
"Insert video": "Ins\u00e9rer une vid\u00e9o",
|
||||
"Insert\/edit video": "Ins\u00e9rer\/modifier une vid\u00e9o",
|
||||
"Insert\/edit media": "Ins\u00e9rer\/modifier un m\u00e9dia",
|
||||
"Alternative source": "Source alternative",
|
||||
"Poster": "Publier",
|
||||
"Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :",
|
||||
"Embed": "Int\u00e9grer",
|
||||
"Media": "M\u00e9dia",
|
||||
"Nonbreaking space": "Espace ins\u00e9cable",
|
||||
"Page break": "Saut de page",
|
||||
"Paste as text": "Coller comme texte",
|
||||
"Preview": "Pr\u00e9visualiser",
|
||||
"Print": "Imprimer",
|
||||
"Save": "Enregistrer",
|
||||
"Find": "Chercher",
|
||||
"Replace with": "Remplacer par",
|
||||
"Replace": "Remplacer",
|
||||
"Replace all": "Tout remplacer",
|
||||
"Prev": "Pr\u00e9c ",
|
||||
"Next": "Suiv",
|
||||
"Find and replace": "Trouver et remplacer",
|
||||
"Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.",
|
||||
"Match case": "Respecter la casse",
|
||||
"Whole words": "Mots entiers",
|
||||
"Spellcheck": "V\u00e9rification orthographique",
|
||||
"Ignore": "Ignorer",
|
||||
"Ignore all": "Tout ignorer",
|
||||
"Finish": "Finie",
|
||||
"Add to Dictionary": "Ajouter au dictionnaire",
|
||||
"Insert table": "Ins\u00e9rer un tableau",
|
||||
"Table properties": "Propri\u00e9t\u00e9s du tableau",
|
||||
"Delete table": "Supprimer le tableau",
|
||||
"Cell": "Cellule",
|
||||
"Row": "Ligne",
|
||||
"Column": "Colonne",
|
||||
"Cell properties": "Propri\u00e9t\u00e9s de la cellule",
|
||||
"Merge cells": "Fusionner les cellules",
|
||||
"Split cell": "Diviser la cellule",
|
||||
"Insert row before": "Ins\u00e9rer une ligne avant",
|
||||
"Insert row after": "Ins\u00e9rer une ligne apr\u00e8s",
|
||||
"Delete row": "Effacer la ligne",
|
||||
"Row properties": "Propri\u00e9t\u00e9s de la ligne",
|
||||
"Cut row": "Couper la ligne",
|
||||
"Copy row": "Copier la ligne",
|
||||
"Paste row before": "Coller la ligne avant",
|
||||
"Paste row after": "Coller la ligne apr\u00e8s",
|
||||
"Insert column before": "Ins\u00e9rer une colonne avant",
|
||||
"Insert column after": "Ins\u00e9rer une colonne apr\u00e8s",
|
||||
"Delete column": "Effacer la colonne",
|
||||
"Cols": "Colonnes",
|
||||
"Rows": "Lignes",
|
||||
"Width": "Largeur",
|
||||
"Height": "Hauteur",
|
||||
"Cell spacing": "Espacement inter-cellulles",
|
||||
"Cell padding": "Espacement interne cellule",
|
||||
"Caption": "Titre",
|
||||
"Left": "Gauche",
|
||||
"Center": "Centr\u00e9",
|
||||
"Right": "Droite",
|
||||
"Cell type": "Type de cellule",
|
||||
"Scope": "Etendue",
|
||||
"Alignment": "Alignement",
|
||||
"H Align": "Alignement H",
|
||||
"V Align": "Alignement V",
|
||||
"Top": "Haut",
|
||||
"Middle": "Milieu",
|
||||
"Bottom": "Bas",
|
||||
"Header cell": "Cellule d'en-t\u00eate",
|
||||
"Row group": "Groupe de lignes",
|
||||
"Column group": "Groupe de colonnes",
|
||||
"Row type": "Type de ligne",
|
||||
"Header": "En-t\u00eate",
|
||||
"Body": "Corps",
|
||||
"Footer": "Pied",
|
||||
"Border color": "Couleur de la bordure",
|
||||
"Insert template": "Ajouter un th\u00e8me",
|
||||
"Templates": "Th\u00e8mes",
|
||||
"Template": "Mod\u00e8le",
|
||||
"Text color": "Couleur du texte",
|
||||
"Background color": "Couleur d'arri\u00e8re-plan",
|
||||
"Custom...": "Personnalis\u00e9...",
|
||||
"Custom color": "Couleur personnalis\u00e9e",
|
||||
"No color": "Aucune couleur",
|
||||
"Table of Contents": "Table des mati\u00e8res",
|
||||
"Show blocks": "Afficher les blocs",
|
||||
"Show invisible characters": "Afficher les caract\u00e8res invisibles",
|
||||
"Words: {0}": "Mots : {0}",
|
||||
"{0} words": "{0} mots",
|
||||
"File": "Fichier",
|
||||
"Edit": "Editer",
|
||||
"Insert": "Ins\u00e9rer",
|
||||
"View": "Voir",
|
||||
"Format": "Format",
|
||||
"Table": "Tableau",
|
||||
"Tools": "Outils",
|
||||
"Powered by {0}": "Propuls\u00e9 par {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide."
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('it',{
|
||||
"Redo": "Ripeti",
|
||||
"Undo": "Indietro",
|
||||
"Cut": "Taglia",
|
||||
"Copy": "Copia",
|
||||
"Paste": "Incolla",
|
||||
"Select all": "Seleziona Tutto",
|
||||
"New document": "Nuovo Documento",
|
||||
"Ok": "Ok",
|
||||
"Cancel": "Annulla",
|
||||
"Visual aids": "Elementi Visivi",
|
||||
"Bold": "Grassetto",
|
||||
"Italic": "Corsivo",
|
||||
"Underline": "Sottolineato",
|
||||
"Strikethrough": "Barrato",
|
||||
"Superscript": "Apice",
|
||||
"Subscript": "Pedice",
|
||||
"Clear formatting": "Cancella Formattazione",
|
||||
"Align left": "Allinea a Sinistra",
|
||||
"Align center": "Allinea al Cento",
|
||||
"Align right": "Allinea a Destra",
|
||||
"Justify": "Giustifica",
|
||||
"Bullet list": "Elenchi Puntati",
|
||||
"Numbered list": "Elenchi Numerati",
|
||||
"Decrease indent": "Riduci Rientro",
|
||||
"Increase indent": "Aumenta Rientro",
|
||||
"Close": "Chiudi",
|
||||
"Formats": "Formattazioni",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Il tuo browser non supporta l'accesso diretto negli Appunti. Per favore usa i tasti di scelta rapida Ctrl+X\/C\/V.",
|
||||
"Headers": "Intestazioni",
|
||||
"Header 1": "Intestazione 1",
|
||||
"Header 2": "Header 2",
|
||||
"Header 3": "Intestazione 3",
|
||||
"Header 4": "Intestazione 4",
|
||||
"Header 5": "Intestazione 5",
|
||||
"Header 6": "Intestazione 6",
|
||||
"Headings": "Intestazioni",
|
||||
"Heading 1": "Intestazione 1",
|
||||
"Heading 2": "Intestazione 2",
|
||||
"Heading 3": "Intestazione 3",
|
||||
"Heading 4": "Intestazione 4",
|
||||
"Heading 5": "Intestazione 5",
|
||||
"Heading 6": "Intestazione 6",
|
||||
"Preformatted": "Preformattato",
|
||||
"Div": "Div",
|
||||
"Pre": "Pre",
|
||||
"Code": "Codice",
|
||||
"Paragraph": "Paragrafo",
|
||||
"Blockquote": "Blockquote",
|
||||
"Inline": "Inlinea",
|
||||
"Blocks": "Blocchi",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Incolla \u00e8 in modalit\u00e0 testo normale. I contenuti sono incollati come testo normale se non disattivi l'opzione.",
|
||||
"Font Family": "Famiglia font",
|
||||
"Font Sizes": "Dimensioni font",
|
||||
"Class": "Classe",
|
||||
"Browse for an image": "Scegli un'immagine",
|
||||
"OR": "o",
|
||||
"Drop an image here": "Incolla un'immagine qui",
|
||||
"Upload": "Carica",
|
||||
"Block": "Blocco",
|
||||
"Align": "Allinea",
|
||||
"Default": "Default",
|
||||
"Circle": "Cerchio",
|
||||
"Disc": "Disco",
|
||||
"Square": "Quadrato",
|
||||
"Lower Alpha": "Alpha Minore",
|
||||
"Lower Greek": "Greek Minore",
|
||||
"Lower Roman": "Roman Minore",
|
||||
"Upper Alpha": "Alpha Superiore",
|
||||
"Upper Roman": "Roman Superiore",
|
||||
"Anchor": "Fissa",
|
||||
"Name": "Nome",
|
||||
"Id": "Id",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'id dovrebbe cominciare con una lettera, seguito solo da lettere, numeri, linee, punti, virgole.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Non hai salvato delle modifiche, sei sicuro di andartene?",
|
||||
"Restore last draft": "Ripristina l'ultima bozza.",
|
||||
"Special character": "Carattere Speciale",
|
||||
"Source code": "Codice Sorgente",
|
||||
"Insert\/Edit code sample": "Inserisci\/Modifica esempio di codice",
|
||||
"Language": "Lingua",
|
||||
"Code sample": "Esempio di codice",
|
||||
"Color": "Colore",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "Da Sinistra a Destra",
|
||||
"Right to left": "Da Destra a Sinistra",
|
||||
"Emoticons": "Emoction",
|
||||
"Document properties": "Propriet\u00e0 Documento",
|
||||
"Title": "Titolo",
|
||||
"Keywords": "Parola Chiave",
|
||||
"Description": "Descrizione",
|
||||
"Robots": "Robot",
|
||||
"Author": "Autore",
|
||||
"Encoding": "Codifica",
|
||||
"Fullscreen": "Schermo Intero",
|
||||
"Action": "Azione",
|
||||
"Shortcut": "Scorciatoia",
|
||||
"Help": "Aiuto",
|
||||
"Address": "Indirizzo",
|
||||
"Focus to menubar": "Focus sulla barra del menu",
|
||||
"Focus to toolbar": "Focus sulla barra degli strumenti",
|
||||
"Focus to element path": "Focus sul percorso dell'elemento",
|
||||
"Focus to contextual toolbar": "Focus sulla barra degli strumenti contestuale",
|
||||
"Insert link (if link plugin activated)": "Inserisci link (se il plugin link \u00e8 attivato)",
|
||||
"Save (if save plugin activated)": "Salva (se il plugin save \u00e8 attivato)",
|
||||
"Find (if searchreplace plugin activated)": "Trova (se il plugin searchreplace \u00e8 attivato)",
|
||||
"Plugins installed ({0}):": "Plugin installati ({0}):",
|
||||
"Premium plugins:": "Plugin Premium:",
|
||||
"Learn more...": "Per saperne di pi\u00f9...",
|
||||
"You are using {0}": "Stai usando {0}",
|
||||
"Plugins": "Plugin",
|
||||
"Handy Shortcuts": "Scorciatoia pratica",
|
||||
"Horizontal line": "Linea Orizzontale",
|
||||
"Insert\/edit image": "Aggiungi\/Modifica Immagine",
|
||||
"Image description": "Descrizione Immagine",
|
||||
"Source": "Fonte",
|
||||
"Dimensions": "Dimenzioni",
|
||||
"Constrain proportions": "Mantieni Proporzioni",
|
||||
"General": "Generale",
|
||||
"Advanced": "Avanzato",
|
||||
"Style": "Stile",
|
||||
"Vertical space": "Spazio Verticale",
|
||||
"Horizontal space": "Spazio Orizzontale",
|
||||
"Border": "Bordo",
|
||||
"Insert image": "Inserisci immagine",
|
||||
"Image": "Immagine",
|
||||
"Image list": "Elenco immagini",
|
||||
"Rotate counterclockwise": "Ruota in senso antiorario",
|
||||
"Rotate clockwise": "Ruota in senso orario",
|
||||
"Flip vertically": "Rifletti verticalmente",
|
||||
"Flip horizontally": "Rifletti orizzontalmente",
|
||||
"Edit image": "Modifica immagine",
|
||||
"Image options": "Opzioni immagine",
|
||||
"Zoom in": "Ingrandisci",
|
||||
"Zoom out": "Rimpicciolisci",
|
||||
"Crop": "Taglia",
|
||||
"Resize": "Ridimensiona",
|
||||
"Orientation": "Orientamento",
|
||||
"Brightness": "Luminosit\u00e0",
|
||||
"Sharpen": "Contrasta",
|
||||
"Contrast": "Contrasto",
|
||||
"Color levels": "Livelli colore",
|
||||
"Gamma": "Gamma",
|
||||
"Invert": "Inverti",
|
||||
"Apply": "Applica",
|
||||
"Back": "Indietro",
|
||||
"Insert date\/time": "Inserisci Data\/Ora",
|
||||
"Date\/time": "Data\/Ora",
|
||||
"Insert link": "Inserisci il Link",
|
||||
"Insert\/edit link": "Inserisci\/Modifica Link",
|
||||
"Text to display": "Testo da Visualizzare",
|
||||
"Url": "Url",
|
||||
"Target": "Target",
|
||||
"None": "No",
|
||||
"New window": "Nuova Finestra",
|
||||
"Remove link": "Rimuovi link",
|
||||
"Anchors": "Anchors",
|
||||
"Link": "Collegamento",
|
||||
"Paste or type a link": "Incolla o digita un collegamento",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL inserito sembra essere un indirizzo email. Vuoi aggiungere il prefisso necessario mailto:?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL inserito sembra essere un collegamento esterno. Vuoi aggiungere il prefisso necessario http:\/\/?",
|
||||
"Link list": "Elenco link",
|
||||
"Insert video": "Inserisci Video",
|
||||
"Insert\/edit video": "Inserisci\/Modifica Video",
|
||||
"Insert\/edit media": "Inserisci\/Modifica Media",
|
||||
"Alternative source": "Alternativo",
|
||||
"Poster": "Anteprima",
|
||||
"Paste your embed code below:": "Incolla il codice d'incorporamento qui:",
|
||||
"Embed": "Incorporare",
|
||||
"Media": "Media",
|
||||
"Nonbreaking space": "Spazio unificatore",
|
||||
"Page break": "Interruzione di pagina",
|
||||
"Paste as text": "incolla come testo",
|
||||
"Preview": "Anteprima",
|
||||
"Print": "Stampa",
|
||||
"Save": "Salva",
|
||||
"Find": "Trova",
|
||||
"Replace with": "Sostituisci Con",
|
||||
"Replace": "Sostituisci",
|
||||
"Replace all": "Sostituisci Tutto",
|
||||
"Prev": "Precedente",
|
||||
"Next": "Successivo",
|
||||
"Find and replace": "Trova e Sostituisci",
|
||||
"Could not find the specified string.": "Impossibile trovare la parola specifica.",
|
||||
"Match case": "Maiuscole\/Minuscole ",
|
||||
"Whole words": "Parole Sbagliate",
|
||||
"Spellcheck": "Controllo ortografico",
|
||||
"Ignore": "Ignora",
|
||||
"Ignore all": "Ignora Tutto",
|
||||
"Finish": "Termina",
|
||||
"Add to Dictionary": "Aggiungi al Dizionario",
|
||||
"Insert table": "Inserisci Tabella",
|
||||
"Table properties": "Propiet\u00e0 della Tabella",
|
||||
"Delete table": "Cancella Tabella",
|
||||
"Cell": "Cella",
|
||||
"Row": "Riga",
|
||||
"Column": "Colonna",
|
||||
"Cell properties": "Propiet\u00e0 della Cella",
|
||||
"Merge cells": "Unisci Cella",
|
||||
"Split cell": "Dividi Cella",
|
||||
"Insert row before": "Inserisci una Riga Prima",
|
||||
"Insert row after": "Inserisci una Riga Dopo",
|
||||
"Delete row": "Cancella Riga",
|
||||
"Row properties": "Propriet\u00e0 della Riga",
|
||||
"Cut row": "Taglia Riga",
|
||||
"Copy row": "Copia Riga",
|
||||
"Paste row before": "Incolla una Riga Prima",
|
||||
"Paste row after": "Incolla una Riga Dopo",
|
||||
"Insert column before": "Inserisci una Colonna Prima",
|
||||
"Insert column after": "Inserisci una Colonna Dopo",
|
||||
"Delete column": "Cancella Colonna",
|
||||
"Cols": "Colonne",
|
||||
"Rows": "Righe",
|
||||
"Width": "Larghezza",
|
||||
"Height": "Altezza",
|
||||
"Cell spacing": "Spaziatura della Cella",
|
||||
"Cell padding": "Padding della Cella",
|
||||
"Caption": "Didascalia",
|
||||
"Left": "Sinistra",
|
||||
"Center": "Centro",
|
||||
"Right": "Destra",
|
||||
"Cell type": "Tipo di Cella",
|
||||
"Scope": "Campo",
|
||||
"Alignment": "Allineamento",
|
||||
"H Align": "Allineamento H",
|
||||
"V Align": "Allineamento V",
|
||||
"Top": "In alto",
|
||||
"Middle": "In mezzo",
|
||||
"Bottom": "In fondo",
|
||||
"Header cell": "cella d'intestazione",
|
||||
"Row group": "Gruppo di Righe",
|
||||
"Column group": "Gruppo di Colonne",
|
||||
"Row type": "Tipo di Riga",
|
||||
"Header": "Header",
|
||||
"Body": "Body",
|
||||
"Footer": "Footer",
|
||||
"Border color": "Colore bordo",
|
||||
"Insert template": "Inserisci Template",
|
||||
"Templates": "Template",
|
||||
"Template": "Modello",
|
||||
"Text color": "Colore Testo",
|
||||
"Background color": "Colore Background",
|
||||
"Custom...": "Personalizzato...",
|
||||
"Custom color": "Colore personalizzato",
|
||||
"No color": "Nessun colore",
|
||||
"Table of Contents": "Tabella dei contenuti",
|
||||
"Show blocks": "Mostra Blocchi",
|
||||
"Show invisible characters": "Mostra Caratteri Invisibili",
|
||||
"Words: {0}": "Parole: {0}",
|
||||
"{0} words": "{0} parole",
|
||||
"File": "File",
|
||||
"Edit": "Modifica",
|
||||
"Insert": "Inserisci",
|
||||
"View": "Visualiza",
|
||||
"Format": "Formato",
|
||||
"Table": "Tabella",
|
||||
"Tools": "Strumenti",
|
||||
"Powered by {0}": "Fornito da {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Premi ALT-F9 per il men\u00f9. Premi ALT-F10 per la barra degli strumenti. Premi ALT-0 per l'aiuto."
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('ja',{
|
||||
"Redo": "\u3084\u308a\u76f4\u3059",
|
||||
"Undo": "\u5143\u306b\u623b\u3059",
|
||||
"Cut": "\u5207\u308a\u53d6\u308a",
|
||||
"Copy": "\u30b3\u30d4\u30fc",
|
||||
"Paste": "\u8cbc\u308a\u4ed8\u3051",
|
||||
"Select all": "\u5168\u3066\u3092\u9078\u629e",
|
||||
"New document": "\u65b0\u898f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8",
|
||||
"Ok": "OK",
|
||||
"Cancel": "\u30ad\u30e3\u30f3\u30bb\u30eb",
|
||||
"Visual aids": "\u8868\u306e\u67a0\u7dda\u3092\u70b9\u7dda\u3067\u8868\u793a",
|
||||
"Bold": "\u592a\u5b57",
|
||||
"Italic": "\u659c\u4f53",
|
||||
"Underline": "\u4e0b\u7dda",
|
||||
"Strikethrough": "\u53d6\u308a\u6d88\u3057\u7dda",
|
||||
"Superscript": "\u4e0a\u4ed8\u304d\u6587\u5b57",
|
||||
"Subscript": "\u4e0b\u4ed8\u304d\u6587\u5b57",
|
||||
"Clear formatting": "\u66f8\u5f0f\u3092\u30af\u30ea\u30a2",
|
||||
"Align left": "\u5de6\u5bc4\u305b",
|
||||
"Align center": "\u4e2d\u592e\u63c3\u3048",
|
||||
"Align right": "\u53f3\u5bc4\u305b",
|
||||
"Justify": "\u4e21\u7aef\u63c3\u3048",
|
||||
"Bullet list": "\u7b87\u6761\u66f8\u304d",
|
||||
"Numbered list": "\u756a\u53f7\u4ed8\u304d\u7b87\u6761\u66f8\u304d",
|
||||
"Decrease indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059",
|
||||
"Increase indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059",
|
||||
"Close": "\u9589\u3058\u308b",
|
||||
"Formats": "\u66f8\u5f0f",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u304a\u4f7f\u3044\u306e\u30d6\u30e9\u30a6\u30b6\u3067\u306f\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u6a5f\u80fd\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u30ad\u30fc\u30dc\u30fc\u30c9\u306e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\uff08Ctrl+X, Ctrl+C, Ctrl+V\uff09\u3092\u304a\u4f7f\u3044\u4e0b\u3055\u3044\u3002",
|
||||
"Headers": "\u30d8\u30c3\u30c0\u30fc",
|
||||
"Header 1": "\u30d8\u30c3\u30c0\u30fc 1",
|
||||
"Header 2": "\u30d8\u30c3\u30c0\u30fc 2",
|
||||
"Header 3": "\u30d8\u30c3\u30c0\u30fc 3",
|
||||
"Header 4": "\u30d8\u30c3\u30c0\u30fc 4",
|
||||
"Header 5": "\u30d8\u30c3\u30c0\u30fc 5",
|
||||
"Header 6": "\u30d8\u30c3\u30c0\u30fc 6",
|
||||
"Headings": "\u898b\u51fa\u3057",
|
||||
"Heading 1": "\u898b\u51fa\u3057 1",
|
||||
"Heading 2": "\u898b\u51fa\u3057 2",
|
||||
"Heading 3": "\u898b\u51fa\u3057 3",
|
||||
"Heading 4": "\u898b\u51fa\u3057 4",
|
||||
"Heading 5": "\u898b\u51fa\u3057 5",
|
||||
"Heading 6": "\u898b\u51fa\u3057 6",
|
||||
"Preformatted": "Preformatted",
|
||||
"Div": "Div",
|
||||
"Pre": "Pre",
|
||||
"Code": "\u30b3\u30fc\u30c9",
|
||||
"Paragraph": "\u6bb5\u843d",
|
||||
"Blockquote": "\u5f15\u7528",
|
||||
"Inline": "\u30a4\u30f3\u30e9\u30a4\u30f3",
|
||||
"Blocks": "\u30d6\u30ed\u30c3\u30af",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002",
|
||||
"Font Family": "\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc",
|
||||
"Font Sizes": "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba",
|
||||
"Class": "\u30af\u30e9\u30b9",
|
||||
"Browse for an image": "\u30a4\u30e1\u30fc\u30b8\u3092\u53c2\u7167",
|
||||
"OR": "\u307e\u305f\u306f",
|
||||
"Drop an image here": "\u3053\u3053\u306b\u753b\u50cf\u3092\u30c9\u30ed\u30c3\u30d7",
|
||||
"Upload": "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9",
|
||||
"Block": "\u30d6\u30ed\u30c3\u30af",
|
||||
"Align": "\u914d\u7f6e",
|
||||
"Default": "\u30c7\u30d5\u30a9\u30eb\u30c8",
|
||||
"Circle": "\u5186",
|
||||
"Disc": "\u70b9",
|
||||
"Square": "\u56db\u89d2",
|
||||
"Lower Alpha": "\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8",
|
||||
"Lower Greek": "\u5c0f\u6587\u5b57\u306e\u30ae\u30ea\u30b7\u30e3\u6587\u5b57",
|
||||
"Lower Roman": "\u5c0f\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
|
||||
"Upper Alpha": "\u5927\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8",
|
||||
"Upper Roman": "\u5927\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
|
||||
"Anchor": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
|
||||
"Name": "\u30a2\u30f3\u30ab\u30fc\u540d",
|
||||
"Id": "Id",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID\u306f\u6587\u5b57\u3067\u59cb\u307e\u308a\u3001\u6587\u5b57\u3001\u6570\u5b57\u3001\u30c0\u30c3\u30b7\u30e5\u3001\u30c9\u30c3\u30c8\u3001\u30b3\u30ed\u30f3\u307e\u305f\u306f\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u3067\u59cb\u307e\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u672c\u5f53\u306b\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f",
|
||||
"Restore last draft": "\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u5fa9\u6d3b\u3055\u305b\u308b",
|
||||
"Special character": "\u7279\u6b8a\u6587\u5b57",
|
||||
"Source code": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9",
|
||||
"Insert\/Edit code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"Language": "\u8a00\u8a9e",
|
||||
"Code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb",
|
||||
"Color": "\u30ab\u30e9\u30fc",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "\u5de6\u304b\u3089\u53f3",
|
||||
"Right to left": "\u53f3\u304b\u3089\u5de6",
|
||||
"Emoticons": "\u7d75\u6587\u5b57",
|
||||
"Document properties": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d7\u30ed\u30d1\u30c6\u30a3",
|
||||
"Title": "\u30bf\u30a4\u30c8\u30eb",
|
||||
"Keywords": "\u30ad\u30fc\u30ef\u30fc\u30c9",
|
||||
"Description": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5185\u5bb9",
|
||||
"Robots": "\u30ed\u30dc\u30c3\u30c4",
|
||||
"Author": "\u8457\u8005",
|
||||
"Encoding": "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0",
|
||||
"Fullscreen": "\u5168\u753b\u9762\u8868\u793a",
|
||||
"Action": "\u30a2\u30af\u30b7\u30e7\u30f3",
|
||||
"Shortcut": "\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8",
|
||||
"Help": "\u30d8\u30eb\u30d7",
|
||||
"Address": "\u30a2\u30c9\u30ec\u30b9",
|
||||
"Focus to menubar": "\u30e1\u30cb\u30e5\u30fc\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9",
|
||||
"Focus to toolbar": "\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9",
|
||||
"Focus to element path": "\u8981\u7d20\u30d1\u30b9\u306b\u30d5\u30a9\u30fc\u30ab\u30b9",
|
||||
"Focus to contextual toolbar": "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9",
|
||||
"Insert link (if link plugin activated)": "\u30ea\u30f3\u30af\u3092\u633f\u5165 (\u30ea\u30f3\u30af\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)",
|
||||
"Save (if save plugin activated)": "\u4fdd\u5b58 (\u4fdd\u5b58\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)",
|
||||
"Find (if searchreplace plugin activated)": "\u691c\u7d22(\u7f6e\u63db\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)",
|
||||
"Plugins installed ({0}):": "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u30d7\u30e9\u30b0\u30a4\u30f3 ({0}):",
|
||||
"Premium plugins:": "\u30d7\u30ec\u30df\u30a2\u30e0\u30d7\u30e9\u30b0\u30a4\u30f3:",
|
||||
"Learn more...": "\u8a73\u7d30...",
|
||||
"You are using {0}": "\u3042\u306a\u305f\u306f {0} \u4f7f\u7528\u4e2d",
|
||||
"Plugins": "\u30d7\u30e9\u30b0\u30a4\u30f3",
|
||||
"Handy Shortcuts": "\u4fbf\u5229\u306a\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8",
|
||||
"Horizontal line": "\u6c34\u5e73\u7f6b\u7dda",
|
||||
"Insert\/edit image": "\u753b\u50cf\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"Image description": "\u753b\u50cf\u306e\u8aac\u660e\u6587",
|
||||
"Source": "\u753b\u50cf\u306e\u30bd\u30fc\u30b9",
|
||||
"Dimensions": "\u753b\u50cf\u30b5\u30a4\u30ba\uff08\u6a2a\u30fb\u7e26\uff09",
|
||||
"Constrain proportions": "\u7e26\u6a2a\u6bd4\u3092\u4fdd\u6301\u3059\u308b",
|
||||
"General": "\u4e00\u822c",
|
||||
"Advanced": "\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Style": "\u30b9\u30bf\u30a4\u30eb",
|
||||
"Vertical space": "\u7e26\u65b9\u5411\u306e\u4f59\u767d",
|
||||
"Horizontal space": "\u6a2a\u65b9\u5411\u306e\u4f59\u767d",
|
||||
"Border": "\u67a0\u7dda",
|
||||
"Insert image": "\u753b\u50cf\u306e\u633f\u5165",
|
||||
"Image": "\u753b\u50cf",
|
||||
"Image list": "\u753b\u50cf\u4e00\u89a7",
|
||||
"Rotate counterclockwise": "\u53cd\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2",
|
||||
"Rotate clockwise": "\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2",
|
||||
"Flip vertically": "\u4e0a\u4e0b\u306b\u53cd\u8ee2",
|
||||
"Flip horizontally": "\u6c34\u5e73\u306b\u53cd\u8ee2",
|
||||
"Edit image": "\u753b\u50cf\u306e\u7de8\u96c6",
|
||||
"Image options": "\u753b\u50cf\u30aa\u30d7\u30b7\u30e7\u30f3",
|
||||
"Zoom in": "\u30ba\u30fc\u30e0\u30a4\u30f3",
|
||||
"Zoom out": "\u30ba\u30fc\u30e0\u30a2\u30a6\u30c8",
|
||||
"Crop": "\u30af\u30ed\u30c3\u30d7",
|
||||
"Resize": "\u30ea\u30b5\u30a4\u30ba",
|
||||
"Orientation": "\u5411\u304d",
|
||||
"Brightness": "\u660e\u308b\u3055",
|
||||
"Sharpen": "\u30b7\u30e3\u30fc\u30d7\u5316",
|
||||
"Contrast": "\u30b3\u30f3\u30c8\u30e9\u30b9\u30c8",
|
||||
"Color levels": "\u30ab\u30e9\u30fc\u30ec\u30d9\u30eb",
|
||||
"Gamma": "\u30ac\u30f3\u30de",
|
||||
"Invert": "\u53cd\u8ee2",
|
||||
"Apply": "\u9069\u7528",
|
||||
"Back": "\u623b\u308b",
|
||||
"Insert date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b",
|
||||
"Date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b",
|
||||
"Insert link": "\u30ea\u30f3\u30af",
|
||||
"Insert\/edit link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"Text to display": "\u30ea\u30f3\u30af\u5143\u30c6\u30ad\u30b9\u30c8",
|
||||
"Url": "\u30ea\u30f3\u30af\u5148URL",
|
||||
"Target": "\u30bf\u30fc\u30b2\u30c3\u30c8\u5c5e\u6027",
|
||||
"None": "\u306a\u3057",
|
||||
"New window": "\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6",
|
||||
"Remove link": "\u30ea\u30f3\u30af\u306e\u524a\u9664",
|
||||
"Anchors": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
|
||||
"Link": "\u30ea\u30f3\u30af",
|
||||
"Paste or type a link": "\u30ea\u30f3\u30af\u3092\u30da\u30fc\u30b9\u30c8\u307e\u305f\u306f\u5165\u529b",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp:\/\/\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
|
||||
"Link list": "\u30ea\u30f3\u30af\u4e00\u89a7",
|
||||
"Insert video": "\u52d5\u753b",
|
||||
"Insert\/edit video": "\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"Insert\/edit media": "\u30e1\u30c7\u30a3\u30a2\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"Alternative source": "\u4ee3\u66ff\u52d5\u753b\u306e\u5834\u6240",
|
||||
"Poster": "\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240",
|
||||
"Paste your embed code below:": "\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4e0b\u8a18\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002",
|
||||
"Embed": "\u57cb\u3081\u8fbc\u307f",
|
||||
"Media": "\u30e1\u30c7\u30a3\u30a2",
|
||||
"Nonbreaking space": "\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9\uff08 \uff09",
|
||||
"Page break": "\u30da\u30fc\u30b8\u533a\u5207\u308a",
|
||||
"Paste as text": "\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051",
|
||||
"Preview": "\u30d7\u30ec\u30d3\u30e5\u30fc",
|
||||
"Print": "\u5370\u5237",
|
||||
"Save": "\u4fdd\u5b58",
|
||||
"Find": "\u691c\u7d22",
|
||||
"Replace with": "\u7f6e\u304d\u63db\u3048\u308b\u6587\u5b57",
|
||||
"Replace": "\u7f6e\u304d\u63db\u3048",
|
||||
"Replace all": "\u5168\u3066\u3092\u7f6e\u304d\u63db\u3048\u308b",
|
||||
"Prev": "\u524d",
|
||||
"Next": "\u6b21",
|
||||
"Find and replace": "\u691c\u7d22\u3068\u7f6e\u304d\u63db\u3048",
|
||||
"Could not find the specified string.": "\u304a\u63a2\u3057\u306e\u6587\u5b57\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002",
|
||||
"Match case": "\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b",
|
||||
"Whole words": "\u5358\u8a9e\u5358\u4f4d\u3067\u691c\u7d22\u3059\u308b",
|
||||
"Spellcheck": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af",
|
||||
"Ignore": "\u7121\u8996",
|
||||
"Ignore all": "\u5168\u3066\u3092\u7121\u8996",
|
||||
"Finish": "\u7d42\u4e86",
|
||||
"Add to Dictionary": "\u8f9e\u66f8\u306b\u8ffd\u52a0",
|
||||
"Insert table": "\u8868\u306e\u633f\u5165",
|
||||
"Table properties": "\u8868\u306e\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Delete table": "\u8868\u306e\u524a\u9664",
|
||||
"Cell": "\u30bb\u30eb",
|
||||
"Row": "\u884c",
|
||||
"Column": "\u5217",
|
||||
"Cell properties": "\u30bb\u30eb\u306e\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Merge cells": "\u30bb\u30eb\u306e\u7d50\u5408",
|
||||
"Split cell": "\u30bb\u30eb\u306e\u5206\u5272",
|
||||
"Insert row before": "\u4e0a\u5074\u306b\u884c\u3092\u633f\u5165",
|
||||
"Insert row after": "\u4e0b\u5074\u306b\u884c\u3092\u633f\u5165",
|
||||
"Delete row": "\u884c\u306e\u524a\u9664",
|
||||
"Row properties": "\u884c\u306e\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Cut row": "\u884c\u306e\u5207\u308a\u53d6\u308a",
|
||||
"Copy row": "\u884c\u306e\u30b3\u30d4\u30fc",
|
||||
"Paste row before": "\u4e0a\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051",
|
||||
"Paste row after": "\u4e0b\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051",
|
||||
"Insert column before": "\u5de6\u5074\u306b\u5217\u3092\u633f\u5165",
|
||||
"Insert column after": "\u53f3\u5074\u306b\u5217\u3092\u633f\u5165",
|
||||
"Delete column": "\u5217\u306e\u524a\u9664",
|
||||
"Cols": "\u5217\u6570",
|
||||
"Rows": "\u884c\u6570",
|
||||
"Width": "\u5e45",
|
||||
"Height": "\u9ad8\u3055",
|
||||
"Cell spacing": "\u30bb\u30eb\u306e\u9593\u9694",
|
||||
"Cell padding": "\u30bb\u30eb\u5185\u4f59\u767d\uff08\u30d1\u30c7\u30a3\u30f3\u30b0\uff09",
|
||||
"Caption": "\u8868\u984c",
|
||||
"Left": "\u5de6\u5bc4\u305b",
|
||||
"Center": "\u4e2d\u592e\u63c3\u3048",
|
||||
"Right": "\u53f3\u5bc4\u305b",
|
||||
"Cell type": "\u30bb\u30eb\u30bf\u30a4\u30d7",
|
||||
"Scope": "\u30b9\u30b3\u30fc\u30d7",
|
||||
"Alignment": "\u914d\u7f6e",
|
||||
"H Align": "\u6c34\u5e73\u65b9\u5411\u306e\u914d\u7f6e",
|
||||
"V Align": "\u5782\u76f4\u65b9\u5411\u306e\u914d\u7f6e",
|
||||
"Top": "\u4e0a",
|
||||
"Middle": "\u4e2d\u592e",
|
||||
"Bottom": "\u4e0b",
|
||||
"Header cell": "\u30d8\u30c3\u30c0\u30fc\u30bb\u30eb",
|
||||
"Row group": "\u884c\u30b0\u30eb\u30fc\u30d7",
|
||||
"Column group": "\u5217\u30b0\u30eb\u30fc\u30d7",
|
||||
"Row type": "\u884c\u30bf\u30a4\u30d7",
|
||||
"Header": "\u30d8\u30c3\u30c0\u30fc",
|
||||
"Body": "\u30dc\u30c7\u30a3\u30fc",
|
||||
"Footer": "\u30d5\u30c3\u30bf\u30fc",
|
||||
"Border color": "\u67a0\u7dda\u306e\u8272",
|
||||
"Insert template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165",
|
||||
"Templates": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u540d",
|
||||
"Template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8",
|
||||
"Text color": "\u30c6\u30ad\u30b9\u30c8\u306e\u8272",
|
||||
"Background color": "\u80cc\u666f\u8272",
|
||||
"Custom...": "\u30ab\u30b9\u30bf\u30e0...",
|
||||
"Custom color": "\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc",
|
||||
"No color": "\u30ab\u30e9\u30fc\u306a\u3057",
|
||||
"Table of Contents": "\u76ee\u6b21",
|
||||
"Show blocks": "\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a",
|
||||
"Show invisible characters": "\u4e0d\u53ef\u8996\u6587\u5b57\u3092\u8868\u793a",
|
||||
"Words: {0}": "\u5358\u8a9e\u6570: {0}",
|
||||
"{0} words": "{0} \u30ef\u30fc\u30c9",
|
||||
"File": "\u30d5\u30a1\u30a4\u30eb",
|
||||
"Edit": "\u7de8\u96c6",
|
||||
"Insert": "\u633f\u5165",
|
||||
"View": "\u8868\u793a",
|
||||
"Format": "\u66f8\u5f0f",
|
||||
"Table": "\u8868",
|
||||
"Tools": "\u30c4\u30fc\u30eb",
|
||||
"Powered by {0}": "Powered by {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u66f8\u5f0f\u4ed8\u304d\u30c6\u30ad\u30b9\u30c8\u306e\u7de8\u96c6\u753b\u9762\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002"
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('pl',{
|
||||
"Redo": "Pon\u00f3w",
|
||||
"Undo": "Cofnij",
|
||||
"Cut": "Wytnij",
|
||||
"Copy": "Kopiuj",
|
||||
"Paste": "Wklej",
|
||||
"Select all": "Zaznacz wszystko",
|
||||
"New document": "Nowy dokument",
|
||||
"Ok": "Ok",
|
||||
"Cancel": "Anuluj",
|
||||
"Visual aids": "Pomoce wizualne",
|
||||
"Bold": "Pogrubienie",
|
||||
"Italic": "Kursywa",
|
||||
"Underline": "Podkre\u015blenie",
|
||||
"Strikethrough": "Przekre\u015blenie",
|
||||
"Superscript": "Indeks g\u00f3rny",
|
||||
"Subscript": "Indeks dolny",
|
||||
"Clear formatting": "Wyczy\u015b\u0107 formatowanie",
|
||||
"Align left": "Wyr\u00f3wnaj do lewej",
|
||||
"Align center": "Wyr\u00f3wnaj do \u015brodka",
|
||||
"Align right": "Wyr\u00f3wnaj do prawej",
|
||||
"Justify": "Do lewej i prawej",
|
||||
"Bullet list": "Lista wypunktowana",
|
||||
"Numbered list": "Lista numerowana",
|
||||
"Decrease indent": "Zmniejsz wci\u0119cie",
|
||||
"Increase indent": "Zwi\u0119ksz wci\u0119cie",
|
||||
"Close": "Zamknij",
|
||||
"Formats": "Formaty",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Twoja przegl\u0105darka nie obs\u0142uguje bezpo\u015bredniego dost\u0119pu do schowka. U\u017cyj zamiast tego kombinacji klawiszy Ctrl+X\/C\/V.",
|
||||
"Headers": "Nag\u0142\u00f3wki",
|
||||
"Header 1": "Nag\u0142\u00f3wek 1",
|
||||
"Header 2": "Nag\u0142\u00f3wek 2",
|
||||
"Header 3": "Nag\u0142\u00f3wek 3",
|
||||
"Header 4": "Nag\u0142\u00f3wek 4",
|
||||
"Header 5": "Nag\u0142\u00f3wek 5",
|
||||
"Header 6": "Nag\u0142\u00f3wek 6",
|
||||
"Headings": "Nag\u0142\u00f3wki",
|
||||
"Heading 1": "Nag\u0142\u00f3wek 1",
|
||||
"Heading 2": "Nag\u0142\u00f3wek 2",
|
||||
"Heading 3": "Nag\u0142\u00f3wek 3",
|
||||
"Heading 4": "Nag\u0142\u00f3wek 4",
|
||||
"Heading 5": "Nag\u0142\u00f3wek 5",
|
||||
"Heading 6": "Nag\u0142\u00f3wek 6",
|
||||
"Preformatted": "Sformatowany tekst",
|
||||
"Div": "Div",
|
||||
"Pre": "Sformatowany tekst",
|
||||
"Code": "Kod \u017ar\u00f3d\u0142owy",
|
||||
"Paragraph": "Akapit",
|
||||
"Blockquote": "Blok cytatu",
|
||||
"Inline": "W tek\u015bcie",
|
||||
"Blocks": "Bloki",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Wklejanie jest w trybie tekstowym. Zawarto\u015b\u0107 zostanie wklejona jako zwyk\u0142y tekst dop\u00f3ki nie wy\u0142\u0105czysz tej opcji.",
|
||||
"Font Family": "Kr\u00f3j fontu",
|
||||
"Font Sizes": "Rozmiar fontu",
|
||||
"Class": "Klasa",
|
||||
"Browse for an image": "Przegl\u0105daj za zdj\u0119ciem",
|
||||
"OR": "LUB",
|
||||
"Drop an image here": "Upu\u015b\u0107 obraz tutaj",
|
||||
"Upload": "Prze\u015blij",
|
||||
"Block": "Zablokuj",
|
||||
"Align": "Wyr\u00f3wnaj",
|
||||
"Default": "Domy\u015blne",
|
||||
"Circle": "K\u00f3\u0142ko",
|
||||
"Disc": "Dysk",
|
||||
"Square": "Kwadrat",
|
||||
"Lower Alpha": "Ma\u0142e litery",
|
||||
"Lower Greek": "Ma\u0142e greckie",
|
||||
"Lower Roman": "Ma\u0142e rzymskie",
|
||||
"Upper Alpha": "Wielkie litery",
|
||||
"Upper Roman": "Wielkie rzymskie",
|
||||
"Anchor": "Kotwica",
|
||||
"Name": "Nazwa",
|
||||
"Id": "Identyfikator",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Identyfikator powinien zaczyna\u0107 si\u0119 liter\u0105, dozwolone s\u0105 tylko litery, numery, uko\u015bniki, kropki, dwukropki i podkre\u015blniki - tzw. pod\u0142ogi",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Masz niezapisane zmiany. Czy na pewno chcesz opu\u015bci\u0107 stron\u0119?",
|
||||
"Restore last draft": "Przywr\u00f3\u0107 ostatni szkic",
|
||||
"Special character": "Znak specjalny",
|
||||
"Source code": "Kod \u017ar\u00f3d\u0142owy",
|
||||
"Insert\/Edit code sample": "Dodaj\/Edytuj przyk\u0142adowy kod",
|
||||
"Language": "J\u0119zyk",
|
||||
"Code sample": "Przyk\u0142ad kodu \u017ar\u00f3d\u0142owego",
|
||||
"Color": "Kolor",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "Od lewej do prawej",
|
||||
"Right to left": "Od prawej do lewej",
|
||||
"Emoticons": "Ikony emocji",
|
||||
"Document properties": "W\u0142a\u015bciwo\u015bci dokumentu",
|
||||
"Title": "Tytu\u0142",
|
||||
"Keywords": "S\u0142owa kluczowe",
|
||||
"Description": "Opis",
|
||||
"Robots": "Roboty",
|
||||
"Author": "Autor",
|
||||
"Encoding": "Kodowanie",
|
||||
"Fullscreen": "Pe\u0142ny ekran",
|
||||
"Action": "Akcja",
|
||||
"Shortcut": "Skr\u00f3t",
|
||||
"Help": "Pomoc",
|
||||
"Address": "Adres",
|
||||
"Focus to menubar": "Skup si\u0119 na pasku menu",
|
||||
"Focus to toolbar": "Skupi\u0107 si\u0119 na pasku",
|
||||
"Focus to element path": "Skup si\u0119 na \u015bcie\u017cce elementu",
|
||||
"Focus to contextual toolbar": "Skupi\u0107 si\u0119 na pasku narz\u0119dzi kontekstowych",
|
||||
"Insert link (if link plugin activated)": "Wstaw \u0142\u0105cze (je\u015bli w\u0142\u0105czysz wtyczk\u0119 link\u00f3w)",
|
||||
"Save (if save plugin activated)": "Zapisz (je\u015bli aktywowana jest wtyczka do zapisu)",
|
||||
"Find (if searchreplace plugin activated)": "Znajd\u017a (je\u015bli w\u0142\u0105czysz wtyczk\u0119 do wyszukiwania)",
|
||||
"Plugins installed ({0}):": "Zainstalowane wtyczki ({0}):",
|
||||
"Premium plugins:": "Wtyczki Premium:",
|
||||
"Learn more...": "Dowiedz si\u0119 wi\u0119cej...",
|
||||
"You are using {0}": "U\u017cywasz {0}",
|
||||
"Plugins": "Pluginy",
|
||||
"Handy Shortcuts": "Przydatne skr\u00f3ty",
|
||||
"Horizontal line": "Pozioma linia",
|
||||
"Insert\/edit image": "Wstaw\/edytuj obrazek",
|
||||
"Image description": "Opis obrazka",
|
||||
"Source": "\u0179r\u00f3d\u0142o",
|
||||
"Dimensions": "Wymiary",
|
||||
"Constrain proportions": "Zachowaj proporcje",
|
||||
"General": "Og\u00f3lne",
|
||||
"Advanced": "Zaawansowane",
|
||||
"Style": "Styl",
|
||||
"Vertical space": "Odst\u0119p pionowy",
|
||||
"Horizontal space": "Odst\u0119p poziomy",
|
||||
"Border": "Ramka",
|
||||
"Insert image": "Wstaw obrazek",
|
||||
"Image": "Obraz",
|
||||
"Image list": "Lista obrazk\u00f3w",
|
||||
"Rotate counterclockwise": "Obr\u00f3\u0107 w lewo",
|
||||
"Rotate clockwise": "Obr\u00f3\u0107 w prawo",
|
||||
"Flip vertically": "Przerzu\u0107 w pionie",
|
||||
"Flip horizontally": "Przerzu\u0107 w poziomie",
|
||||
"Edit image": "Edytuj obrazek",
|
||||
"Image options": "Opcje obrazu",
|
||||
"Zoom in": "Powi\u0119ksz",
|
||||
"Zoom out": "Pomniejsz",
|
||||
"Crop": "Przytnij",
|
||||
"Resize": "Zmiana rozmiaru",
|
||||
"Orientation": "Orientacja",
|
||||
"Brightness": "Jasno\u015b\u0107",
|
||||
"Sharpen": "Wyostrz",
|
||||
"Contrast": "Kontrast",
|
||||
"Color levels": "Poziom koloru",
|
||||
"Gamma": "Gamma",
|
||||
"Invert": "Odwr\u00f3\u0107",
|
||||
"Apply": "Zaakceptuj",
|
||||
"Back": "Cofnij",
|
||||
"Insert date\/time": "Wstaw dat\u0119\/czas",
|
||||
"Date\/time": "Data\/Czas",
|
||||
"Insert link": "Wstaw \u0142\u0105cze",
|
||||
"Insert\/edit link": "Wstaw\/edytuj \u0142\u0105cze",
|
||||
"Text to display": "Tekst do wy\u015bwietlenia",
|
||||
"Url": "URL",
|
||||
"Target": "Cel",
|
||||
"None": "\u017baden",
|
||||
"New window": "Nowe okno",
|
||||
"Remove link": "Usu\u0144 \u0142\u0105cze",
|
||||
"Anchors": "Kotwice",
|
||||
"Link": "Adres \u0142\u0105cza",
|
||||
"Paste or type a link": "Wklej lub wpisz adres \u0142\u0105cza",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na adres e-mail. Czy chcesz doda\u0107 mailto: jako prefiks?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na link zewn\u0119trzny. Czy chcesz doda\u0107 http:\/\/ jako prefiks?",
|
||||
"Link list": "Lista link\u00f3w",
|
||||
"Insert video": "Wstaw wideo",
|
||||
"Insert\/edit video": "Wstaw\/edytuj wideo",
|
||||
"Insert\/edit media": "Wstaw\/Edytuj media",
|
||||
"Alternative source": "Alternatywne \u017ar\u00f3d\u0142o",
|
||||
"Poster": "Plakat",
|
||||
"Paste your embed code below:": "Wklej tutaj kod do osadzenia:",
|
||||
"Embed": "Osad\u017a",
|
||||
"Media": "Media",
|
||||
"Nonbreaking space": "Nie\u0142amliwa spacja",
|
||||
"Page break": "Podzia\u0142 strony",
|
||||
"Paste as text": "Wklej jako zwyk\u0142y tekst",
|
||||
"Preview": "Podgl\u0105d",
|
||||
"Print": "Drukuj",
|
||||
"Save": "Zapisz",
|
||||
"Find": "Znajd\u017a",
|
||||
"Replace with": "Zamie\u0144 na",
|
||||
"Replace": "Zamie\u0144",
|
||||
"Replace all": "Zamie\u0144 wszystko",
|
||||
"Prev": "Poprz.",
|
||||
"Next": "Nast.",
|
||||
"Find and replace": "Znajd\u017a i zamie\u0144",
|
||||
"Could not find the specified string.": "Nie znaleziono szukanego tekstu.",
|
||||
"Match case": "Dopasuj wielko\u015b\u0107 liter",
|
||||
"Whole words": "Ca\u0142e s\u0142owa",
|
||||
"Spellcheck": "Sprawdzanie pisowni",
|
||||
"Ignore": "Ignoruj",
|
||||
"Ignore all": "Ignoruj wszystko",
|
||||
"Finish": "Zako\u0144cz",
|
||||
"Add to Dictionary": "Dodaj do s\u0142ownika",
|
||||
"Insert table": "Wstaw tabel\u0119",
|
||||
"Table properties": "W\u0142a\u015bciwo\u015bci tabeli",
|
||||
"Delete table": "Usu\u0144 tabel\u0119",
|
||||
"Cell": "Kom\u00f3rka",
|
||||
"Row": "Wiersz",
|
||||
"Column": "Kolumna",
|
||||
"Cell properties": "W\u0142a\u015bciwo\u015bci kom\u00f3rki",
|
||||
"Merge cells": "\u0141\u0105cz kom\u00f3rki",
|
||||
"Split cell": "Podziel kom\u00f3rk\u0119",
|
||||
"Insert row before": "Wstaw wiersz przed",
|
||||
"Insert row after": "Wstaw wiersz po",
|
||||
"Delete row": "Usu\u0144 wiersz",
|
||||
"Row properties": "W\u0142a\u015bciwo\u015bci wiersza",
|
||||
"Cut row": "Wytnij wiersz",
|
||||
"Copy row": "Kopiuj wiersz",
|
||||
"Paste row before": "Wklej wiersz przed",
|
||||
"Paste row after": "Wklej wiersz po",
|
||||
"Insert column before": "Wstaw kolumn\u0119 przed",
|
||||
"Insert column after": "Wstaw kolumn\u0119 po",
|
||||
"Delete column": "Usu\u0144 kolumn\u0119",
|
||||
"Cols": "Kol.",
|
||||
"Rows": "Wiersz.",
|
||||
"Width": "Szeroko\u015b\u0107",
|
||||
"Height": "Wysoko\u015b\u0107",
|
||||
"Cell spacing": "Odst\u0119py kom\u00f3rek",
|
||||
"Cell padding": "Dope\u0142nienie kom\u00f3rki",
|
||||
"Caption": "Tytu\u0142",
|
||||
"Left": "Lewo",
|
||||
"Center": "\u015arodek",
|
||||
"Right": "Prawo",
|
||||
"Cell type": "Typ kom\u00f3rki",
|
||||
"Scope": "Kontekst",
|
||||
"Alignment": "Wyr\u00f3wnanie",
|
||||
"H Align": "Wyr\u00f3wnanie w pionie",
|
||||
"V Align": "Wyr\u00f3wnanie w poziomie",
|
||||
"Top": "G\u00f3ra",
|
||||
"Middle": "\u015arodek",
|
||||
"Bottom": "D\u00f3\u0142",
|
||||
"Header cell": "Kom\u00f3rka nag\u0142\u00f3wka",
|
||||
"Row group": "Grupa wierszy",
|
||||
"Column group": "Grupa kolumn",
|
||||
"Row type": "Typ wiersza",
|
||||
"Header": "Nag\u0142\u00f3wek",
|
||||
"Body": "Tre\u015b\u0107",
|
||||
"Footer": "Stopka",
|
||||
"Border color": "Kolor ramki",
|
||||
"Insert template": "Wstaw szablon",
|
||||
"Templates": "Szablony",
|
||||
"Template": "Szablon",
|
||||
"Text color": "Kolor tekstu",
|
||||
"Background color": "Kolor t\u0142a",
|
||||
"Custom...": "Niestandardowy...",
|
||||
"Custom color": "Kolor niestandardowy",
|
||||
"No color": "Bez koloru",
|
||||
"Table of Contents": "Spis tre\u015bci",
|
||||
"Show blocks": "Poka\u017c bloki",
|
||||
"Show invisible characters": "Poka\u017c niewidoczne znaki",
|
||||
"Words: {0}": "S\u0142\u00f3w: {0}",
|
||||
"{0} words": "{0} s\u0142\u00f3w",
|
||||
"File": "Plik",
|
||||
"Edit": "Edycja",
|
||||
"Insert": "Wstaw",
|
||||
"View": "Widok",
|
||||
"Format": "Format",
|
||||
"Table": "Tabela",
|
||||
"Tools": "Narz\u0119dzia",
|
||||
"Powered by {0}": "Powered by {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Obszar Edycji. ALT-F9 - menu. ALT-F10 - pasek narz\u0119dzi. ALT-0 - pomoc"
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('pt_BR',{
|
||||
"Redo": "Refazer",
|
||||
"Undo": "Desfazer",
|
||||
"Cut": "Recortar",
|
||||
"Copy": "Copiar",
|
||||
"Paste": "Colar",
|
||||
"Select all": "Selecionar tudo",
|
||||
"New document": "Novo documento",
|
||||
"Ok": "Ok",
|
||||
"Cancel": "Cancelar",
|
||||
"Visual aids": "Ajuda visual",
|
||||
"Bold": "Negrito",
|
||||
"Italic": "It\u00e1lico",
|
||||
"Underline": "Sublinhar",
|
||||
"Strikethrough": "Riscar",
|
||||
"Superscript": "Sobrescrito",
|
||||
"Subscript": "Subscrever",
|
||||
"Clear formatting": "Limpar formata\u00e7\u00e3o",
|
||||
"Align left": "Alinhar \u00e0 esquerda",
|
||||
"Align center": "Centralizar",
|
||||
"Align right": "Alinhar \u00e0 direita",
|
||||
"Justify": "Justificar",
|
||||
"Bullet list": "Lista n\u00e3o ordenada",
|
||||
"Numbered list": "Lista ordenada",
|
||||
"Decrease indent": "Diminuir recuo",
|
||||
"Increase indent": "Aumentar recuo",
|
||||
"Close": "Fechar",
|
||||
"Formats": "Formatos",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X - C - V do teclado",
|
||||
"Headers": "Cabe\u00e7alhos",
|
||||
"Header 1": "Cabe\u00e7alho 1",
|
||||
"Header 2": "Cabe\u00e7alho 2",
|
||||
"Header 3": "Cabe\u00e7alho 3",
|
||||
"Header 4": "Cabe\u00e7alho 4",
|
||||
"Header 5": "Cabe\u00e7alho 5",
|
||||
"Header 6": "Cabe\u00e7alho 6",
|
||||
"Headings": "Cabe\u00e7alhos",
|
||||
"Heading 1": "Cabe\u00e7alho 1",
|
||||
"Heading 2": "Cabe\u00e7alho 2",
|
||||
"Heading 3": "Cabe\u00e7alho 3",
|
||||
"Heading 4": "Cabe\u00e7alho 4",
|
||||
"Heading 5": "Cabe\u00e7alho 5",
|
||||
"Heading 6": "Cabe\u00e7alho 6",
|
||||
"Preformatted": "Preformatado",
|
||||
"Div": "Div",
|
||||
"Pre": "Pre",
|
||||
"Code": "C\u00f3digo",
|
||||
"Paragraph": "Par\u00e1grafo",
|
||||
"Blockquote": "Aspas",
|
||||
"Inline": "Em linha",
|
||||
"Blocks": "Blocos",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 agora em modo texto plano. O conte\u00fado ser\u00e1 colado como texto plano at\u00e9 voc\u00ea desligar esta op\u00e7\u00e3o.",
|
||||
"Font Family": "Fonte",
|
||||
"Font Sizes": "Tamanho",
|
||||
"Class": "Classe",
|
||||
"Browse for an image": "Procure uma imagem",
|
||||
"OR": "OU",
|
||||
"Drop an image here": "Arraste uma imagem aqui",
|
||||
"Upload": "Carregar",
|
||||
"Block": "Bloco",
|
||||
"Align": "Alinhamento",
|
||||
"Default": "Padr\u00e3o",
|
||||
"Circle": "C\u00edrculo",
|
||||
"Disc": "Disco",
|
||||
"Square": "Quadrado",
|
||||
"Lower Alpha": "a. b. c. ...",
|
||||
"Lower Greek": "\u03b1. \u03b2. \u03b3. ...",
|
||||
"Lower Roman": "i. ii. iii. ...",
|
||||
"Upper Alpha": "A. B. C. ...",
|
||||
"Upper Roman": "I. II. III. ...",
|
||||
"Anchor": "\u00c2ncora",
|
||||
"Name": "Nome",
|
||||
"Id": "Id",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id deve come\u00e7ar com uma letra, seguido apenas por letras, n\u00fameros, tra\u00e7os, pontos, dois pontos ou sublinhados.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Voc\u00ea tem mudan\u00e7as n\u00e3o salvas. Voc\u00ea tem certeza que deseja sair?",
|
||||
"Restore last draft": "Restaurar \u00faltimo rascunho",
|
||||
"Special character": "Caracteres especiais",
|
||||
"Source code": "C\u00f3digo fonte",
|
||||
"Insert\/Edit code sample": "Inserir\/Editar c\u00f3digo de exemplo",
|
||||
"Language": "Idioma",
|
||||
"Code sample": "Exemplo de c\u00f3digo",
|
||||
"Color": "Cor",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "Da esquerda para a direita",
|
||||
"Right to left": "Da direita para a esquerda",
|
||||
"Emoticons": "Emoticons",
|
||||
"Document properties": "Propriedades do documento",
|
||||
"Title": "T\u00edtulo",
|
||||
"Keywords": "Palavras-chave",
|
||||
"Description": "Descri\u00e7\u00e3o",
|
||||
"Robots": "Rob\u00f4s",
|
||||
"Author": "Autor",
|
||||
"Encoding": "Codifica\u00e7\u00e3o",
|
||||
"Fullscreen": "Tela cheia",
|
||||
"Action": "A\u00e7\u00e3o",
|
||||
"Shortcut": "Atalho",
|
||||
"Help": "Ajuda",
|
||||
"Address": "Endere\u00e7o",
|
||||
"Focus to menubar": "Foco no menu",
|
||||
"Focus to toolbar": "Foco na barra de ferramentas",
|
||||
"Focus to element path": "Foco no caminho do elemento",
|
||||
"Focus to contextual toolbar": "Foco na barra de ferramentas contextual",
|
||||
"Insert link (if link plugin activated)": "Inserir link (se o plugin de link estiver ativado)",
|
||||
"Save (if save plugin activated)": "Salvar (se o plugin de salvar estiver ativado)",
|
||||
"Find (if searchreplace plugin activated)": "Procurar (se o plugin de procurar e substituir estiver ativado)",
|
||||
"Plugins installed ({0}):": "Plugins instalados ({0}):",
|
||||
"Premium plugins:": "Plugins premium:",
|
||||
"Learn more...": "Saiba mais...",
|
||||
"You are using {0}": "Voc\u00ea est\u00e1 usando {0}",
|
||||
"Plugins": "Plugins",
|
||||
"Handy Shortcuts": "Atalhos \u00fateis",
|
||||
"Horizontal line": "Linha horizontal",
|
||||
"Insert\/edit image": "Inserir\/editar imagem",
|
||||
"Image description": "Inserir descri\u00e7\u00e3o",
|
||||
"Source": "Endere\u00e7o da imagem",
|
||||
"Dimensions": "Dimens\u00f5es",
|
||||
"Constrain proportions": "Manter propor\u00e7\u00f5es",
|
||||
"General": "Geral",
|
||||
"Advanced": "Avan\u00e7ado",
|
||||
"Style": "Estilo",
|
||||
"Vertical space": "Espa\u00e7amento vertical",
|
||||
"Horizontal space": "Espa\u00e7amento horizontal",
|
||||
"Border": "Borda",
|
||||
"Insert image": "Inserir imagem",
|
||||
"Image": "Imagem",
|
||||
"Image list": "Lista de Imagens",
|
||||
"Rotate counterclockwise": "Girar em sentido hor\u00e1rio",
|
||||
"Rotate clockwise": "Girar em sentido anti-hor\u00e1rio",
|
||||
"Flip vertically": "Virar verticalmente",
|
||||
"Flip horizontally": "Virar horizontalmente",
|
||||
"Edit image": "Editar imagem",
|
||||
"Image options": "Op\u00e7\u00f5es de Imagem",
|
||||
"Zoom in": "Aumentar zoom",
|
||||
"Zoom out": "Diminuir zoom",
|
||||
"Crop": "Cortar",
|
||||
"Resize": "Redimensionar",
|
||||
"Orientation": "Orienta\u00e7\u00e3o",
|
||||
"Brightness": "Brilho",
|
||||
"Sharpen": "Aumentar nitidez",
|
||||
"Contrast": "Contraste",
|
||||
"Color levels": "N\u00edveis de cor",
|
||||
"Gamma": "Gama",
|
||||
"Invert": "Inverter",
|
||||
"Apply": "Aplicar",
|
||||
"Back": "Voltar",
|
||||
"Insert date\/time": "Inserir data\/hora",
|
||||
"Date\/time": "data\/hora",
|
||||
"Insert link": "Inserir link",
|
||||
"Insert\/edit link": "Inserir\/editar link",
|
||||
"Text to display": "Texto para mostrar",
|
||||
"Url": "Url",
|
||||
"Target": "Alvo",
|
||||
"None": "Nenhum",
|
||||
"New window": "Nova janela",
|
||||
"Remove link": "Remover link",
|
||||
"Anchors": "\u00c2ncoras",
|
||||
"Link": "Link",
|
||||
"Paste or type a link": "Cole ou digite um Link",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A URL que voc\u00ea informou parece ser um link externo. Deseja incluir o prefixo http:\/\/?",
|
||||
"Link list": "Lista de Links",
|
||||
"Insert video": "Inserir v\u00eddeo",
|
||||
"Insert\/edit video": "Inserir\/editar v\u00eddeo",
|
||||
"Insert\/edit media": "Inserir\/editar imagem",
|
||||
"Alternative source": "Fonte alternativa",
|
||||
"Poster": "Autor",
|
||||
"Paste your embed code below:": "Insira o c\u00f3digo de incorpora\u00e7\u00e3o abaixo:",
|
||||
"Embed": "Incorporar",
|
||||
"Media": "imagem",
|
||||
"Nonbreaking space": "Espa\u00e7o n\u00e3o separ\u00e1vel",
|
||||
"Page break": "Quebra de p\u00e1gina",
|
||||
"Paste as text": "Colar como texto",
|
||||
"Preview": "Pr\u00e9-visualizar",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Salvar",
|
||||
"Find": "Localizar",
|
||||
"Replace with": "Substituir por",
|
||||
"Replace": "Substituir",
|
||||
"Replace all": "Substituir tudo",
|
||||
"Prev": "Anterior",
|
||||
"Next": "Pr\u00f3ximo",
|
||||
"Find and replace": "Localizar e substituir",
|
||||
"Could not find the specified string.": "N\u00e3o foi poss\u00edvel encontrar o termo especificado",
|
||||
"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas",
|
||||
"Whole words": "Palavras inteiras",
|
||||
"Spellcheck": "Corretor ortogr\u00e1fico",
|
||||
"Ignore": "Ignorar",
|
||||
"Ignore all": "Ignorar tudo",
|
||||
"Finish": "Finalizar",
|
||||
"Add to Dictionary": "Adicionar ao Dicion\u00e1rio",
|
||||
"Insert table": "Inserir tabela",
|
||||
"Table properties": "Propriedades da tabela",
|
||||
"Delete table": "Excluir tabela",
|
||||
"Cell": "C\u00e9lula",
|
||||
"Row": "Linha",
|
||||
"Column": "Coluna",
|
||||
"Cell properties": "Propriedades da c\u00e9lula",
|
||||
"Merge cells": "Agrupar c\u00e9lulas",
|
||||
"Split cell": "Dividir c\u00e9lula",
|
||||
"Insert row before": "Inserir linha antes",
|
||||
"Insert row after": "Inserir linha depois",
|
||||
"Delete row": "Excluir linha",
|
||||
"Row properties": "Propriedades da linha",
|
||||
"Cut row": "Recortar linha",
|
||||
"Copy row": "Copiar linha",
|
||||
"Paste row before": "Colar linha antes",
|
||||
"Paste row after": "Colar linha depois",
|
||||
"Insert column before": "Inserir coluna antes",
|
||||
"Insert column after": "Inserir coluna depois",
|
||||
"Delete column": "Excluir coluna",
|
||||
"Cols": "Colunas",
|
||||
"Rows": "Linhas",
|
||||
"Width": "Largura",
|
||||
"Height": "Altura",
|
||||
"Cell spacing": "Espa\u00e7amento da c\u00e9lula",
|
||||
"Cell padding": "Espa\u00e7amento interno da c\u00e9lula",
|
||||
"Caption": "Legenda",
|
||||
"Left": "Esquerdo",
|
||||
"Center": "Centro",
|
||||
"Right": "Direita",
|
||||
"Cell type": "Tipo de c\u00e9lula",
|
||||
"Scope": "Escopo",
|
||||
"Alignment": "Alinhamento",
|
||||
"H Align": "Alinhamento H",
|
||||
"V Align": "Alinhamento V",
|
||||
"Top": "Superior",
|
||||
"Middle": "Meio",
|
||||
"Bottom": "Inferior",
|
||||
"Header cell": "C\u00e9lula cabe\u00e7alho",
|
||||
"Row group": "Agrupar linha",
|
||||
"Column group": "Agrupar coluna",
|
||||
"Row type": "Tipo de linha",
|
||||
"Header": "Cabe\u00e7alho",
|
||||
"Body": "Corpo",
|
||||
"Footer": "Rodap\u00e9",
|
||||
"Border color": "Cor da borda",
|
||||
"Insert template": "Inserir modelo",
|
||||
"Templates": "Modelos",
|
||||
"Template": "Modelo",
|
||||
"Text color": "Cor do texto",
|
||||
"Background color": "Cor do fundo",
|
||||
"Custom...": "Personalizado...",
|
||||
"Custom color": "Cor personalizada",
|
||||
"No color": "Nenhuma cor",
|
||||
"Table of Contents": "\u00edndice de Conte\u00fado",
|
||||
"Show blocks": "Mostrar blocos",
|
||||
"Show invisible characters": "Exibir caracteres invis\u00edveis",
|
||||
"Words: {0}": "Palavras: {0}",
|
||||
"{0} words": "{0} palavras",
|
||||
"File": "Arquivo",
|
||||
"Edit": "Editar",
|
||||
"Insert": "Inserir",
|
||||
"View": "Visualizar",
|
||||
"Format": "Formatar",
|
||||
"Table": "Tabela",
|
||||
"Tools": "Ferramentas",
|
||||
"Powered by {0}": "Distribu\u00eddo por {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto formatado. Pressione ALT-F9 para exibir o menu, ALT-F10 para exibir a barra de ferramentas ou ALT-0 para exibir a ajuda"
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('pt_PT',{
|
||||
"Redo": "Refazer",
|
||||
"Undo": "Desfazer",
|
||||
"Cut": "Cortar",
|
||||
"Copy": "Copiar",
|
||||
"Paste": "Colar",
|
||||
"Select all": "Selecionar tudo",
|
||||
"New document": "Novo documento",
|
||||
"Ok": "Ok",
|
||||
"Cancel": "Cancelar",
|
||||
"Visual aids": "Ajuda visual",
|
||||
"Bold": "Negrito",
|
||||
"Italic": "It\u00e1lico",
|
||||
"Underline": "Sublinhado",
|
||||
"Strikethrough": "Rasurado",
|
||||
"Superscript": "Superior \u00e0 linha",
|
||||
"Subscript": "Inferior \u00e0 linha",
|
||||
"Clear formatting": "Limpar formata\u00e7\u00e3o",
|
||||
"Align left": "Alinhar \u00e0 esquerda",
|
||||
"Align center": "Alinhar ao centro",
|
||||
"Align right": "Alinhar \u00e0 direita",
|
||||
"Justify": "Justificado",
|
||||
"Bullet list": "Lista com marcadores",
|
||||
"Numbered list": "Lista numerada",
|
||||
"Decrease indent": "Diminuir avan\u00e7o",
|
||||
"Increase indent": "Aumentar avan\u00e7o",
|
||||
"Close": "Fechar",
|
||||
"Formats": "Formatos",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "O seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X\/C\/V do seu teclado.",
|
||||
"Headers": "Cabe\u00e7alhos",
|
||||
"Header 1": "Cabe\u00e7alho 1",
|
||||
"Header 2": "Cabe\u00e7alho 2",
|
||||
"Header 3": "Cabe\u00e7alho 3",
|
||||
"Header 4": "Cabe\u00e7alho 4",
|
||||
"Header 5": "Cabe\u00e7alho 5",
|
||||
"Header 6": "Cabe\u00e7alho 6",
|
||||
"Headings": "T\u00edtulos",
|
||||
"Heading 1": "T\u00edtulo 1",
|
||||
"Heading 2": "T\u00edtulo 2",
|
||||
"Heading 3": "T\u00edtulo 3",
|
||||
"Heading 4": "T\u00edtulo 4",
|
||||
"Heading 5": "T\u00edtulo 5",
|
||||
"Heading 6": "T\u00edtulo 6",
|
||||
"Preformatted": "Pr\u00e9-formatado",
|
||||
"Div": "Div",
|
||||
"Pre": "Pre",
|
||||
"Code": "C\u00f3digo",
|
||||
"Paragraph": "Par\u00e1grafo",
|
||||
"Blockquote": "Cita\u00e7\u00e3o em bloco",
|
||||
"Inline": "Na linha",
|
||||
"Blocks": "Blocos",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 em modo de texto simples. O conte\u00fado ser\u00e1 colado como texto simples at\u00e9 desativar esta op\u00e7\u00e3o.",
|
||||
"Font Family": "Fonte",
|
||||
"Font Sizes": "Tamanhos",
|
||||
"Class": "Classe",
|
||||
"Browse for an image": "Procurar por uma imagem",
|
||||
"OR": "Ou",
|
||||
"Drop an image here": "Solte uma imagem aqui",
|
||||
"Upload": "Carregar",
|
||||
"Block": "Bloco",
|
||||
"Align": "Alinhar",
|
||||
"Default": "Padr\u00e3o",
|
||||
"Circle": "C\u00edrculo",
|
||||
"Disc": "Disco",
|
||||
"Square": "Quadrado",
|
||||
"Lower Alpha": "a. b. c. ...",
|
||||
"Lower Greek": "\\u03b1. \\u03b2. \\u03b3. ...",
|
||||
"Lower Roman": "i. ii. iii. ...",
|
||||
"Upper Alpha": "A. B. C. ...",
|
||||
"Upper Roman": "I. II. III. ...",
|
||||
"Anchor": "\u00c2ncora",
|
||||
"Name": "Nome",
|
||||
"Id": "ID",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "O ID deve come\u00e7ar com uma letra, seguido apenas por letras, n\u00fameros, pontos, dois pontos, tra\u00e7os ou sobtra\u00e7os.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Existem altera\u00e7\u00f5es que ainda n\u00e3o foram guardadas. Tem a certeza que pretende sair?",
|
||||
"Restore last draft": "Restaurar o \u00faltimo rascunho",
|
||||
"Special character": "Car\u00e1cter especial",
|
||||
"Source code": "C\u00f3digo fonte",
|
||||
"Insert\/Edit code sample": "Inserir\/editar amostra de c\u00f3digo",
|
||||
"Language": "Idioma",
|
||||
"Code sample": "Amostra de c\u00f3digo",
|
||||
"Color": "Cor",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "Da esquerda para a direita",
|
||||
"Right to left": "Da direita para a esquerda",
|
||||
"Emoticons": "Emo\u00e7\u00f5es",
|
||||
"Document properties": "Propriedades do documento",
|
||||
"Title": "T\u00edtulo",
|
||||
"Keywords": "Palavras-chave",
|
||||
"Description": "Descri\u00e7\u00e3o",
|
||||
"Robots": "Rob\u00f4s",
|
||||
"Author": "Autor",
|
||||
"Encoding": "Codifica\u00e7\u00e3o",
|
||||
"Fullscreen": "Ecr\u00e3 completo",
|
||||
"Action": "A\u00e7\u00e3o",
|
||||
"Shortcut": "Atalho",
|
||||
"Help": "Ajuda",
|
||||
"Address": "Endere\u00e7o",
|
||||
"Focus to menubar": "Foco na barra de menu",
|
||||
"Focus to toolbar": "Foco na barra de ferramentas",
|
||||
"Focus to element path": "Foco no caminho do elemento",
|
||||
"Focus to contextual toolbar": "Foco na barra de contexto",
|
||||
"Insert link (if link plugin activated)": "Inserir hiperliga\u00e7\u00e3o (se o plugin de liga\u00e7\u00f5es estiver ativado)",
|
||||
"Save (if save plugin activated)": "Guardar (se o plugin de guardar estiver ativado)",
|
||||
"Find (if searchreplace plugin activated)": "Pesquisar (se o plugin pesquisar e substituir estiver ativado)",
|
||||
"Plugins installed ({0}):": "Plugins instalados ({0}):",
|
||||
"Premium plugins:": "Plugins comerciais:",
|
||||
"Learn more...": "Saiba mais...",
|
||||
"You are using {0}": "Est\u00e1 a usar {0}",
|
||||
"Plugins": "Plugins",
|
||||
"Handy Shortcuts": "Atalhos \u00fateis",
|
||||
"Horizontal line": "Linha horizontal",
|
||||
"Insert\/edit image": "Inserir\/editar imagem",
|
||||
"Image description": "Descri\u00e7\u00e3o da imagem",
|
||||
"Source": "Localiza\u00e7\u00e3o",
|
||||
"Dimensions": "Dimens\u00f5es",
|
||||
"Constrain proportions": "Manter propor\u00e7\u00f5es",
|
||||
"General": "Geral",
|
||||
"Advanced": "Avan\u00e7ado",
|
||||
"Style": "Estilo",
|
||||
"Vertical space": "Espa\u00e7amento vertical",
|
||||
"Horizontal space": "Espa\u00e7amento horizontal",
|
||||
"Border": "Contorno",
|
||||
"Insert image": "Inserir imagem",
|
||||
"Image": "Imagem",
|
||||
"Image list": "Lista de imagens",
|
||||
"Rotate counterclockwise": "Rota\u00e7\u00e3o anti-hor\u00e1ria",
|
||||
"Rotate clockwise": "Rota\u00e7\u00e3o hor\u00e1ria",
|
||||
"Flip vertically": "Inverter verticalmente",
|
||||
"Flip horizontally": "Inverter horizontalmente",
|
||||
"Edit image": "Editar imagem",
|
||||
"Image options": "Op\u00e7\u00f5es de imagem",
|
||||
"Zoom in": "Mais zoom",
|
||||
"Zoom out": "Menos zoom",
|
||||
"Crop": "Recortar",
|
||||
"Resize": "Redimensionar",
|
||||
"Orientation": "Orienta\u00e7\u00e3o",
|
||||
"Brightness": "Brilho",
|
||||
"Sharpen": "Mais nitidez",
|
||||
"Contrast": "Contraste",
|
||||
"Color levels": "N\u00edveis de cor",
|
||||
"Gamma": "Gama",
|
||||
"Invert": "Inverter",
|
||||
"Apply": "Aplicar",
|
||||
"Back": "Voltar",
|
||||
"Insert date\/time": "Inserir data\/hora",
|
||||
"Date\/time": "Data\/hora",
|
||||
"Insert link": "Inserir liga\u00e7\u00e3o",
|
||||
"Insert\/edit link": "Inserir\/editar liga\u00e7\u00e3o",
|
||||
"Text to display": "Texto a exibir",
|
||||
"Url": "URL",
|
||||
"Target": "Alvo",
|
||||
"None": "Nenhum",
|
||||
"New window": "Nova janela",
|
||||
"Remove link": "Remover liga\u00e7\u00e3o",
|
||||
"Anchors": "\u00c2ncora",
|
||||
"Link": "Liga\u00e7\u00e3o",
|
||||
"Paste or type a link": "Copiar ou escrever uma hiperliga\u00e7\u00e3o",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "O URL que indicou parece ser um endere\u00e7o de email. Quer adicionar o prefixo mailto: tal como necess\u00e1rio?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "O URL que indicou parece ser um endere\u00e7o web. Quer adicionar o prefixo http:\/\/ tal como necess\u00e1rio?",
|
||||
"Link list": "Lista de liga\u00e7\u00f5es",
|
||||
"Insert video": "Inserir v\u00eddeo",
|
||||
"Insert\/edit video": "Inserir\/editar v\u00eddeo",
|
||||
"Insert\/edit media": "Inserir\/editar media",
|
||||
"Alternative source": "Localiza\u00e7\u00e3o alternativa",
|
||||
"Poster": "Autor",
|
||||
"Paste your embed code below:": "Colar c\u00f3digo para embeber:",
|
||||
"Embed": "Embeber",
|
||||
"Media": "Media",
|
||||
"Nonbreaking space": "Espa\u00e7o n\u00e3o quebr\u00e1vel",
|
||||
"Page break": "Quebra de p\u00e1gina",
|
||||
"Paste as text": "Colar como texto",
|
||||
"Preview": "Pr\u00e9-visualizar",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Guardar",
|
||||
"Find": "Pesquisar",
|
||||
"Replace with": "Substituir por",
|
||||
"Replace": "Substituir",
|
||||
"Replace all": "Substituir tudo",
|
||||
"Prev": "Anterior",
|
||||
"Next": "Pr\u00f3ximo",
|
||||
"Find and replace": "Pesquisar e substituir",
|
||||
"Could not find the specified string.": "N\u00e3o foi poss\u00edvel localizar o termo especificado.",
|
||||
"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas",
|
||||
"Whole words": "Palavras completas",
|
||||
"Spellcheck": "Corretor ortogr\u00e1fico",
|
||||
"Ignore": "Ignorar",
|
||||
"Ignore all": "Ignorar tudo",
|
||||
"Finish": "Concluir",
|
||||
"Add to Dictionary": "Adicionar ao dicion\u00e1rio",
|
||||
"Insert table": "Inserir tabela",
|
||||
"Table properties": "Propriedades da tabela",
|
||||
"Delete table": "Eliminar tabela",
|
||||
"Cell": "C\u00e9lula",
|
||||
"Row": "Linha",
|
||||
"Column": "Coluna",
|
||||
"Cell properties": "Propriedades da c\u00e9lula",
|
||||
"Merge cells": "Unir c\u00e9lulas",
|
||||
"Split cell": "Dividir c\u00e9lula",
|
||||
"Insert row before": "Inserir linha antes",
|
||||
"Insert row after": "Inserir linha depois",
|
||||
"Delete row": "Eliminar linha",
|
||||
"Row properties": "Propriedades da linha",
|
||||
"Cut row": "Cortar linha",
|
||||
"Copy row": "Copiar linha",
|
||||
"Paste row before": "Colar linha antes",
|
||||
"Paste row after": "Colar linha depois",
|
||||
"Insert column before": "Inserir coluna antes",
|
||||
"Insert column after": "Inserir coluna depois",
|
||||
"Delete column": "Eliminar coluna",
|
||||
"Cols": "Colunas",
|
||||
"Rows": "Linhas",
|
||||
"Width": "Largura",
|
||||
"Height": "Altura",
|
||||
"Cell spacing": "Espa\u00e7amento entre c\u00e9lulas",
|
||||
"Cell padding": "Espa\u00e7amento interno da c\u00e9lula",
|
||||
"Caption": "Legenda",
|
||||
"Left": "Esquerda",
|
||||
"Center": "Centro",
|
||||
"Right": "Direita",
|
||||
"Cell type": "Tipo de c\u00e9lula",
|
||||
"Scope": "Escopo",
|
||||
"Alignment": "Alinhamento",
|
||||
"H Align": "Alinhamento H",
|
||||
"V Align": "Alinhamento V",
|
||||
"Top": "Superior",
|
||||
"Middle": "Meio",
|
||||
"Bottom": "Inferior",
|
||||
"Header cell": "C\u00e9lula de cabe\u00e7alho",
|
||||
"Row group": "Agrupar linha",
|
||||
"Column group": "Agrupar coluna",
|
||||
"Row type": "Tipo de linha",
|
||||
"Header": "Cabe\u00e7alho",
|
||||
"Body": "Corpo",
|
||||
"Footer": "Rodap\u00e9",
|
||||
"Border color": "Cor de contorno",
|
||||
"Insert template": "Inserir modelo",
|
||||
"Templates": "Modelos",
|
||||
"Template": "Tema",
|
||||
"Text color": "Cor do texto",
|
||||
"Background color": "Cor de fundo",
|
||||
"Custom...": "Personalizada...",
|
||||
"Custom color": "Cor personalizada",
|
||||
"No color": "Sem cor",
|
||||
"Table of Contents": "\u00cdndice",
|
||||
"Show blocks": "Mostrar blocos",
|
||||
"Show invisible characters": "Mostrar caracteres invis\u00edveis",
|
||||
"Words: {0}": "Palavras: {0}",
|
||||
"{0} words": "{0} palavras",
|
||||
"File": "Ficheiro",
|
||||
"Edit": "Editar",
|
||||
"Insert": "Inserir",
|
||||
"View": "Ver",
|
||||
"Format": "Formatar",
|
||||
"Table": "Tabela",
|
||||
"Tools": "Ferramentas",
|
||||
"Powered by {0}": "Criado em {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Caixa de texto formatado. Pressione ALT-F9 para exibir o menu. Pressione ALT-F10 para exibir a barra de ferramentas. Pressione ALT-0 para exibir a ajuda"
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('ru',{
|
||||
"Redo": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Undo": "\u0412\u0435\u0440\u043d\u0443\u0442\u044c",
|
||||
"Cut": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c",
|
||||
"Copy": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
|
||||
"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c",
|
||||
"Select all": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u0435",
|
||||
"New document": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Ok": "\u041e\u043a",
|
||||
"Cancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Visual aids": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0443\u0440\u044b",
|
||||
"Bold": "\u041f\u043e\u043b\u0443\u0436\u0438\u0440\u043d\u044b\u0439",
|
||||
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
||||
"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439",
|
||||
"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439",
|
||||
"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Subscript": "\u041d\u0438\u0436\u043d\u0438\u0439 \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442",
|
||||
"Align left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Align right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Justify": "\u041f\u043e \u0448\u0438\u0440\u0438\u043d\u0435",
|
||||
"Bullet list": "\u041c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Decrease indent": "\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||
"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||
"Close": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0435\u043d\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u044f \u043a\u043b\u0430\u0432\u0438\u0448: Ctrl+X\/C\/V.",
|
||||
"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Preformatted": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"Div": "\u0411\u043b\u043e\u043a",
|
||||
"Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
||||
"Inline": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0432\u0438\u0434\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430, \u043f\u043e\u043a\u0430 \u043d\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e.",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
||||
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Class": "\u041a\u043b\u0430\u0441\u0441",
|
||||
"Browse for an image": "\u0412\u044b\u0431\u043e\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||
"OR": "\u0418\u041b\u0418",
|
||||
"Drop an image here": "\u041f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0441\u044e\u0434\u0430",
|
||||
"Upload": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c",
|
||||
"Block": "\u0411\u043b\u043e\u043a",
|
||||
"Align": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
||||
"Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439",
|
||||
"Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0438",
|
||||
"Disc": "\u041a\u0440\u0443\u0433\u0438",
|
||||
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u044b",
|
||||
"Lower Alpha": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
||||
"Lower Greek": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
||||
"Lower Roman": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
|
||||
"Upper Alpha": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
||||
"Upper Roman": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
|
||||
"Anchor": "\u042f\u043a\u043e\u0440\u044c",
|
||||
"Name": "\u0418\u043c\u044f",
|
||||
"Id": "Id",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0434\u043e\u043b\u0436\u0435\u043d \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0431\u0443\u043a\u0432\u044b, \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u0431\u0443\u043a\u0432\u044b, \u0446\u0438\u0444\u0440\u044b, \u0442\u0438\u0440\u0435, \u0442\u043e\u0447\u043a\u0438, \u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u044f \u0438\u043b\u0438 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u044f.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0439\u0442\u0438?",
|
||||
"Restore last draft": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
||||
"Source code": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434",
|
||||
"Insert\/Edit code sample": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c\/\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430",
|
||||
"Language": "\u042f\u0437\u044b\u043a",
|
||||
"Code sample": "\u041f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430",
|
||||
"Color": "\u0426\u0432\u0435\u0442",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
||||
"Right to left": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u043e",
|
||||
"Emoticons": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b",
|
||||
"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Keywords": "\u041a\u043b\u044e\u0447\u0438\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430",
|
||||
"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u044b",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Encoding": "\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430",
|
||||
"Fullscreen": "\u041f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c",
|
||||
"Action": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435",
|
||||
"Shortcut": "\u042f\u0440\u043b\u044b\u043a",
|
||||
"Help": "\u041f\u043e\u043c\u043e\u0449\u044c",
|
||||
"Address": "\u0410\u0434\u0440\u0435\u0441",
|
||||
"Focus to menubar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043f\u0430\u043d\u0435\u043b\u0438 \u043c\u0435\u043d\u044e",
|
||||
"Focus to toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432",
|
||||
"Focus to element path": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0435 \u043f\u0443\u0442\u0438",
|
||||
"Focus to contextual toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u043d\u043e\u0439 \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432",
|
||||
"Insert link (if link plugin activated)": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 (\u0435\u0441\u043b\u0438 \u043f\u043b\u0430\u0433\u0438\u043d link \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d)",
|
||||
"Save (if save plugin activated)": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c (\u0435\u0441\u043b\u0438 \u043f\u043b\u0430\u0433\u0438\u043d save \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d)",
|
||||
"Find (if searchreplace plugin activated)": "\u041d\u0430\u0439\u0442\u0438 (\u0435\u0441\u043b\u0438 \u043f\u043b\u0430\u0433\u0438\u043d searchreplace \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d)",
|
||||
"Plugins installed ({0}):": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u044b ({0}):",
|
||||
"Premium plugins:": "\u041f\u0440\u0435\u043c\u0438\u0443\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u044b:",
|
||||
"Learn more...": "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435...",
|
||||
"You are using {0}": "\u0412\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 {0}",
|
||||
"Plugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
|
||||
"Handy Shortcuts": "\u0413\u043e\u0440\u044f\u0447\u0438\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0438",
|
||||
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f",
|
||||
"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||
"Source": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
||||
"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440",
|
||||
"Constrain proportions": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438",
|
||||
"General": "\u041e\u0431\u0449\u0435\u0435",
|
||||
"Advanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435",
|
||||
"Style": "\u0421\u0442\u0438\u043b\u044c",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||
"Border": "\u0420\u0430\u043c\u043a\u0430",
|
||||
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"Image": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||
"Image list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439",
|
||||
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0442\u0438\u0432 \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0438",
|
||||
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0435",
|
||||
"Flip vertically": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0438",
|
||||
"Flip horizontally": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0438",
|
||||
"Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"Image options": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||
"Zoom in": "\u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u044c",
|
||||
"Zoom out": "\u041e\u0442\u0434\u0430\u043b\u0438\u0442\u044c",
|
||||
"Crop": "\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c",
|
||||
"Resize": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440",
|
||||
"Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
|
||||
"Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442\u044c",
|
||||
"Sharpen": "\u0427\u0435\u0442\u043a\u043e\u0441\u0442\u044c",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Color levels": "\u0426\u0432\u0435\u0442\u043e\u0432\u044b\u0435 \u0443\u0440\u043e\u0432\u043d\u0438",
|
||||
"Gamma": "\u0413\u0430\u043c\u043c\u0430",
|
||||
"Invert": "\u0418\u043d\u0432\u0435\u0440\u0441\u0438\u044f",
|
||||
"Apply": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Back": "\u041d\u0430\u0437\u0430\u0434",
|
||||
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f",
|
||||
"Date\/time": "\u0414\u0430\u0442\u0430\/\u0432\u0440\u0435\u043c\u044f",
|
||||
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||
"Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442",
|
||||
"Url": "\u0410\u0434\u0440\u0435\u0441 \u0441\u0441\u044b\u043b\u043a\u0438",
|
||||
"Target": "\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||
"None": "\u041d\u0435\u0442",
|
||||
"New window": "\u0412 \u043d\u043e\u0432\u043e\u043c \u043e\u043a\u043d\u0435",
|
||||
"Remove link": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||
"Anchors": "\u042f\u043a\u043e\u0440\u044f",
|
||||
"Link": "\u0421\u0441\u044b\u043b\u043a\u0430",
|
||||
"Paste or type a link": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abmailto:\u00bb?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abhttp:\/\/\u00bb?",
|
||||
"Link list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u0441\u044b\u043b\u043e\u043a",
|
||||
"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
||||
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
||||
"Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
||||
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
||||
"Poster": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0435:",
|
||||
"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438",
|
||||
"Media": "\u0412\u0438\u0434\u0435\u043e",
|
||||
"Nonbreaking space": "\u041d\u0435\u0440\u0430\u0437\u0440\u044b\u0432\u043d\u044b\u0439 \u043f\u0440\u043e\u0431\u0435\u043b",
|
||||
"Page break": "\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b",
|
||||
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0442\u0435\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440",
|
||||
"Print": "\u041f\u0435\u0447\u0430\u0442\u044c",
|
||||
"Save": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c",
|
||||
"Find": "\u041d\u0430\u0439\u0442\u0438",
|
||||
"Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430",
|
||||
"Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435",
|
||||
"Prev": "\u0412\u0432\u0435\u0440\u0445",
|
||||
"Next": "\u0412\u043d\u0438\u0437",
|
||||
"Find and replace": "\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430",
|
||||
"Could not find the specified string.": "\u0417\u0430\u0434\u0430\u043d\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430",
|
||||
"Match case": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440",
|
||||
"Whole words": "\u0421\u043b\u043e\u0432\u043e \u0446\u0435\u043b\u0438\u043a\u043e\u043c",
|
||||
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
|
||||
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435",
|
||||
"Finish": "\u0417\u0430\u043a\u043e\u043d\u0447\u0438\u0442\u044c",
|
||||
"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u043b\u043e\u0432\u0430\u0440\u044c",
|
||||
"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443",
|
||||
"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b",
|
||||
"Delete table": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443",
|
||||
"Cell": "\u042f\u0447\u0435\u0439\u043a\u0430",
|
||||
"Row": "\u0421\u0442\u0440\u043e\u043a\u0430",
|
||||
"Column": "\u0421\u0442\u043e\u043b\u0431\u0435\u0446",
|
||||
"Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u044f\u0447\u0435\u0439\u043a\u0438",
|
||||
"Merge cells": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0438",
|
||||
"Split cell": "\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0443",
|
||||
"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443",
|
||||
"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443",
|
||||
"Delete row": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
|
||||
"Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0442\u0440\u043e\u043a\u0438",
|
||||
"Cut row": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
|
||||
"Copy row": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
|
||||
"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443",
|
||||
"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443",
|
||||
"Insert column before": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043b\u0435\u0432\u0430",
|
||||
"Insert column after": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043f\u0440\u0430\u0432\u0430",
|
||||
"Delete column": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446",
|
||||
"Cols": "\u0421\u0442\u043e\u043b\u0431\u0446\u044b",
|
||||
"Rows": "\u0421\u0442\u0440\u043e\u043a\u0438",
|
||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||
"Height": "\u0412\u044b\u0441\u043e\u0442\u0430",
|
||||
"Cell spacing": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||
"Cell padding": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Cell type": "\u0422\u0438\u043f \u044f\u0447\u0435\u0439\u043a\u0438",
|
||||
"Scope": "Scope",
|
||||
"Alignment": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
||||
"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
||||
"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u0443",
|
||||
"Middle": "\u041f\u043e \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435",
|
||||
"Bottom": "\u041f\u043e \u043d\u0438\u0437\u0443",
|
||||
"Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Row group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u0441\u0442\u0440\u043e\u043a",
|
||||
"Column group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u043a\u043e\u043b\u043e\u043d\u043e\u043a",
|
||||
"Row type": "\u0422\u0438\u043f \u0441\u0442\u0440\u043e\u043a\u0438",
|
||||
"Header": "\u0428\u0430\u043f\u043a\u0430",
|
||||
"Body": "\u0422\u0435\u043b\u043e",
|
||||
"Footer": "\u041d\u0438\u0437",
|
||||
"Border color": "\u0426\u0432\u0435\u0442 \u0440\u0430\u043c\u043a\u0438",
|
||||
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b",
|
||||
"Template": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
||||
"Text color": "\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430",
|
||||
"Background color": "\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430",
|
||||
"Custom...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c\u2026",
|
||||
"Custom color": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0446\u0432\u0435\u0442",
|
||||
"No color": "\u0411\u0435\u0437 \u0446\u0432\u0435\u0442\u0430",
|
||||
"Table of Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438",
|
||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
||||
"Words: {0}": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432: {0}",
|
||||
"{0} words": "\u0441\u043b\u043e\u0432: {0}",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c",
|
||||
"View": "\u0412\u0438\u0434",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
|
||||
"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b",
|
||||
"Powered by {0}": "\u041f\u0440\u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0435 {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F9 \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432, ALT-0 \u0434\u043b\u044f \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u043e\u043c\u043e\u0449\u0438."
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('uk_UA',{
|
||||
"Redo": "\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438",
|
||||
"Undo": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Cut": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438",
|
||||
"Copy": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438",
|
||||
"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||
"Select all": "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0443\u0441\u0435",
|
||||
"New document": "\u041d\u043e\u0432\u0438\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Ok": "Ok",
|
||||
"Cancel": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Visual aids": "\u0412\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u0456 \u0437\u0430\u0441\u043e\u0431\u0438",
|
||||
"Bold": "\u0416\u0438\u0440\u043d\u0438\u0439",
|
||||
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
||||
"Underline": "\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
||||
"Strikethrough": "\u041f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
||||
"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441",
|
||||
"Subscript": "\u0406\u043d\u0434\u0435\u043a\u0441",
|
||||
"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"Align left": "\u041b\u0456\u0432\u043e\u0440\u0443\u0447",
|
||||
"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Align right": "\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
||||
"Justify": "\u0412\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438",
|
||||
"Bullet list": "\u041c\u0430\u0440\u043a\u0456\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Numbered list": "\u041f\u0440\u043e\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Decrease indent": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||
"Increase indent": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||
"Close": "\u0417\u0430\u043a\u0440\u0438\u0442\u0438",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454 \u043f\u0440\u044f\u043c\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0431\u0443\u0444\u0435\u0440\u0430 \u043e\u0431\u043c\u0456\u043d\u0443. \u0417\u0430\u043c\u0456\u0441\u0442\u044c \u0446\u044c\u043e\u0433\u043e \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u043f\u043e\u0454\u0434\u043d\u0430\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448 Ctrl + X\/C\/V.",
|
||||
"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Preformatted": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u044c\u043e \u0432\u0456\u0434\u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432\u0430\u043d\u0438\u0439",
|
||||
"Div": "Div",
|
||||
"Pre": "Pre",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Paragraph": "\u0410\u0431\u0437\u0430\u0446",
|
||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
||||
"Inline": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0437\u0430\u0440\u0430\u0437 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0437\u0432\u0438\u0447\u0430\u0439\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443. \u0417\u043c\u0456\u0441\u0442 \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0439 \u044f\u043a \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0442\u0435\u043a\u0441\u0442, \u043f\u043e\u043a\u0438 \u0412\u0438 \u043d\u0435 \u0432\u0438\u043c\u043a\u043d\u0435\u0442\u0435 \u0446\u044e \u043e\u043f\u0446\u0456\u044e.",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
||||
"Font Sizes": "\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Class": "\u041a\u043b\u0430\u0441",
|
||||
"Browse for an image": "\u0412\u0438\u0431\u0456\u0440 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"OR": "\u0410\u0411\u041e",
|
||||
"Drop an image here": "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0456\u0442\u044c \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0441\u044e\u0434\u0438",
|
||||
"Upload": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438",
|
||||
"Block": "\u0411\u043b\u043e\u043a",
|
||||
"Align": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Default": "\u0423\u043c\u043e\u0432\u0447\u0430\u043d\u043d\u044f",
|
||||
"Circle": "\u041a\u043e\u043b\u043e",
|
||||
"Disc": "\u0414\u0438\u0441\u043a",
|
||||
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442",
|
||||
"Lower Alpha": "\u041d\u0438\u0436\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440",
|
||||
"Lower Greek": "\u041c\u0430\u043b\u0456 \u0433\u0440\u0435\u0446\u044c\u043a\u0456 \u043b\u0456\u0442\u0435\u0440\u0438",
|
||||
"Lower Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438 \u0443 \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0456",
|
||||
"Upper Alpha": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440",
|
||||
"Upper Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438 \u0443 \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0456",
|
||||
"Anchor": "\u041f\u0440\u0438\u0432'\u044f\u0437\u043a\u0430",
|
||||
"Name": "\u0406\u043c'\u044f",
|
||||
"Id": "\u041a\u043e\u0434",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u041a\u043e\u0434 \u043c\u0430\u0454 \u043f\u043e\u0447\u0438\u043d\u0430\u0442\u0438\u0441\u044f \u0437 \u043b\u0456\u0442\u0435\u0440\u0438 \u0456 \u043c\u043e\u0436\u0435 \u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u043b\u0438\u0448\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u0438 \u043b\u0456\u0442\u0435\u0440, \u0446\u0438\u0444\u0440, \u0434\u0435\u0444\u0456\u0441\u0443, \u043a\u0440\u0430\u043f\u043a\u0438, \u043a\u043e\u043c\u0438 \u0430\u0431\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u0433\u043e \u043f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u043d\u044f.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0454 \u043d\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438. \u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u043f\u0456\u0442\u0438 ?",
|
||||
"Restore last draft": "\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438 \u043e\u0441\u0442\u0430\u043d\u043d\u0456\u0439 \u043f\u0440\u043e\u0435\u043a\u0442",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0439 \u0441\u0438\u043c\u0432\u043e\u043b",
|
||||
"Source code": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"Insert\/Edit code sample": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u043f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443",
|
||||
"Language": "\u041c\u043e\u0432\u0430",
|
||||
"Code sample": "\u041f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443",
|
||||
"Color": "\u041a\u043e\u043b\u0456\u0440",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "\u0417\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
||||
"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0456\u0432\u043e",
|
||||
"Emoticons": "\u0421\u043c\u0430\u0439\u043b\u0438",
|
||||
"Document properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443",
|
||||
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||
"Description": "\u041e\u043f\u0438\u0441",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Encoding": "\u041a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"Fullscreen": "\u041d\u0430 \u0432\u0435\u0441\u044c \u0435\u043a\u0440\u0430\u043d",
|
||||
"Action": "\u0414\u0456\u044f",
|
||||
"Shortcut": "\u042f\u0440\u043b\u0438\u043a",
|
||||
"Help": "\u0414\u043e\u043f\u043e\u043c\u043e\u0433\u0430",
|
||||
"Address": "\u0410\u0434\u0440\u0435\u0441\u0430",
|
||||
"Focus to menubar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043c\u0435\u043d\u044e",
|
||||
"Focus to toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u0456\u043d\u0441\u0442\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u0445",
|
||||
"Focus to element path": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u0448\u043b\u044f\u0445\u0443",
|
||||
"Focus to contextual toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442",
|
||||
"Insert link (if link plugin activated)": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f (\u044f\u043a\u0449\u043e \u0434\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u043e)",
|
||||
"Save (if save plugin activated)": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 (\u044f\u043a\u0449\u043e \u0434\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u043e)",
|
||||
"Find (if searchreplace plugin activated)": "\u0417\u043d\u0430\u0439\u0442\u0438 (\u044f\u043a\u0449\u043e \u0434\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u043e)",
|
||||
"Plugins installed ({0}):": "\u041d\u0430\u044f\u0432\u043d\u0456 \u0434\u043e\u0434\u0430\u0442\u043a\u0438 ({0}):",
|
||||
"Premium plugins:": "\u041f\u0440\u0435\u043c\u0456\u0430\u043b\u044c\u043d\u0456 \u0434\u043e\u0434\u0430\u0442\u043a\u0438:",
|
||||
"Learn more...": "\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u043e...",
|
||||
"You are using {0}": "\u0423 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u0456 {0}",
|
||||
"Plugins": "\u041f\u043b\u0430\u0433\u0456\u043d\u0438",
|
||||
"Handy Shortcuts": "\u041a\u043e\u0440\u0438\u0441\u043d\u0456 \u044f\u0440\u043b\u0438\u043a\u0438",
|
||||
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043b\u0456\u043d\u0456\u044f",
|
||||
"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Image description": "\u041e\u043f\u0438\u0441 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Source": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"Dimensions": "\u0420\u043e\u0437\u043c\u0456\u0440",
|
||||
"Constrain proportions": "\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0456\u0457",
|
||||
"General": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0435",
|
||||
"Advanced": "\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u043e",
|
||||
"Style": "\u0421\u0442\u0438\u043b\u044c",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
||||
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
||||
"Border": "\u041c\u0435\u0436\u0430",
|
||||
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Image": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Image list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u044c",
|
||||
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u043f\u0440\u043e\u0442\u0438 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u0457 \u0441\u0442\u0440\u0456\u043b\u043a\u0438",
|
||||
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u0437\u0430 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u044e \u0441\u0442\u0440\u0456\u043b\u043a\u043e\u044e",
|
||||
"Flip vertically": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0456",
|
||||
"Flip horizontally": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0456",
|
||||
"Edit image": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Image options": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Zoom in": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438",
|
||||
"Zoom out": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438",
|
||||
"Crop": "\u041e\u0431\u0440\u0456\u0437\u0430\u0442\u0438",
|
||||
"Resize": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0440",
|
||||
"Orientation": "\u041e\u0440\u0456\u0454\u043d\u0442\u0430\u0446\u0456\u044f",
|
||||
"Brightness": "\u042f\u0441\u043a\u0440\u0430\u0432\u0456\u0441\u0442\u044c",
|
||||
"Sharpen": "\u0427\u0456\u0442\u043a\u0456\u0441\u0442\u044c",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Color levels": "\u0420\u0456\u0432\u043d\u0456 \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432",
|
||||
"Gamma": "\u0413\u0430\u043c\u043c\u0430",
|
||||
"Invert": "\u0406\u043d\u0432\u0435\u0440\u0441\u0456\u044f",
|
||||
"Apply": "\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438",
|
||||
"Back": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044f",
|
||||
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441",
|
||||
"Date\/time": "\u0414\u0430\u0442\u0430\/\u0447\u0430\u0441",
|
||||
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Url": "URL",
|
||||
"Target": "\u041c\u0435\u0442\u0430",
|
||||
"None": "\u041d\u0456",
|
||||
"New window": "\u041d\u043e\u0432\u0435 \u0432\u0456\u043a\u043d\u043e",
|
||||
"Remove link": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Anchors": "\u042f\u043a\u043e\u0440\u044f",
|
||||
"Link": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Paste or type a link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0430\u0431\u043e \u043d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u0443 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 \u043f\u0440\u0435\u0444\u0456\u043a\u0441 mailto:?",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 \u043f\u0440\u0435\u0444\u0456\u043a\u0441 http:\/\/?",
|
||||
"Link list": "\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u044c",
|
||||
"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
||||
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
||||
"Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043c\u0435\u0434\u0456\u0430\u0434\u0430\u043d\u0456",
|
||||
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"Poster": "\u041f\u043b\u0430\u043a\u0430\u0442",
|
||||
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0447\u0435:",
|
||||
"Embed": "\u0412\u043f\u0440\u043e\u0432\u0430\u0434\u0438\u0442\u0438",
|
||||
"Media": "\u041c\u0435\u0434\u0456\u0430\u0434\u0430\u043d\u0456",
|
||||
"Nonbreaking space": "\u041d\u0435\u0440\u043e\u0437\u0440\u0438\u0432\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
||||
"Page break": "\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438",
|
||||
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u044f\u043a \u0442\u0435\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434",
|
||||
"Print": "\u0414\u0440\u0443\u043a",
|
||||
"Save": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438",
|
||||
"Find": "\u0417\u043d\u0430\u0439\u0442\u0438",
|
||||
"Replace with": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u043d\u0430",
|
||||
"Replace": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Replace all": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0441\u0435",
|
||||
"Prev": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439",
|
||||
"Next": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439",
|
||||
"Find and replace": "\u0417\u043d\u0430\u0439\u0442\u0438 \u0456 \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Could not find the specified string.": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u043d\u0430\u0439\u0442\u0438 \u0437\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0440\u044f\u0434\u043e\u043a.",
|
||||
"Match case": "\u0417 \u0443\u0440\u0430\u0445\u0443\u0432\u0430\u043d\u043d\u044f\u043c \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0443",
|
||||
"Whole words": "\u0426\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||
"Spellcheck": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0456\u0457",
|
||||
"Ignore": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438",
|
||||
"Ignore all": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0435",
|
||||
"Finish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0438",
|
||||
"Add to Dictionary": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0432 \u0441\u043b\u043e\u0432\u043d\u0438\u043a",
|
||||
"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
||||
"Table properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0442\u0430\u0431\u043b\u0438\u0446\u0456",
|
||||
"Delete table": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
||||
"Cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430",
|
||||
"Row": "\u0420\u044f\u0434\u043e\u043a",
|
||||
"Column": "\u0421\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
||||
"Cell properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Merge cells": "\u041e\u0431'\u0454\u0434\u043d\u0430\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Split cell": "\u0420\u043e\u0437\u0431\u0438\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0443",
|
||||
"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0440\u044f\u0434\u043e\u043a \u043f\u0435\u0440\u0435\u0434",
|
||||
"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f",
|
||||
"Delete row": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Row properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0440\u044f\u0434\u043a\u0430",
|
||||
"Cut row": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Copy row": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0435\u0440\u0435\u0434",
|
||||
"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f",
|
||||
"Insert column before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0435\u0440\u0435\u0434",
|
||||
"Insert column after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0456\u0441\u043b\u044f",
|
||||
"Delete column": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
||||
"Cols": "\u0421\u0442\u043e\u0432\u043f\u0446\u0456",
|
||||
"Rows": "\u0420\u044f\u0434\u043a\u0438",
|
||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||
"Height": "\u0412\u0438\u0441\u043e\u0442\u0430",
|
||||
"Cell spacing": "\u0406\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u043c\u0456\u0436 \u043a\u043e\u043c\u0456\u0440\u043a\u0430\u043c\u0438",
|
||||
"Cell padding": "\u0417\u0430\u043f\u043e\u0432\u043d\u0435\u043d\u043d\u044f \u043a\u043e\u043c\u0456\u0440\u043e\u043a",
|
||||
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Left": "\u041b\u0456\u0432\u043e\u0440\u0443\u0447",
|
||||
"Center": "\u0426\u0435\u043d\u0442\u0440",
|
||||
"Right": "\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
||||
"Cell type": "\u0422\u0438\u043f \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Scope": "\u0423 \u043c\u0435\u0436\u0430\u0445",
|
||||
"Alignment": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Middle": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Bottom": "\u041f\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Header cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0443",
|
||||
"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u044f\u0434\u043a\u0456\u0432",
|
||||
"Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432",
|
||||
"Row type": "\u0422\u0438\u043f \u0440\u044f\u0434\u043a\u0430",
|
||||
"Header": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
||||
"Body": "\u0422\u0456\u043b\u043e",
|
||||
"Footer": "\u041d\u0438\u0436\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
||||
"Border color": "\u041a\u043e\u043b\u0456\u0440 \u043c\u0435\u0436\u0456",
|
||||
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
||||
"Template": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
||||
"Text color": "\u041a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443",
|
||||
"Background color": "\u041a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443",
|
||||
"Custom...": "\u0406\u043d\u0448\u0438\u0439...",
|
||||
"Custom color": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439 \u043a\u043e\u043b\u0456\u0440",
|
||||
"No color": "\u0411\u0435\u0437 \u043a\u043e\u043b\u044c\u043e\u0440\u0443",
|
||||
"Table of Contents": "\u0417\u043c\u0456\u0441\u0442",
|
||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u0438",
|
||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438",
|
||||
"Words: {0}": "\u0421\u043b\u043e\u0432\u0430: {0}",
|
||||
"{0} words": "{0} \u0441\u043b\u0456\u0432",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u041f\u0440\u0430\u0432\u043a\u0430",
|
||||
"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||
"View": "\u0412\u0438\u0434",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u044f",
|
||||
"Tools": "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438",
|
||||
"Powered by {0}": "\u0417\u0430 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0438\u043a\u0438 {0}",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c Rich \u0442\u0435\u043a\u0441\u0442\u0443. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F9 - \u043c\u0435\u043d\u044e. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F10 - \u043f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-0 - \u0434\u043e\u0432\u0456\u0434\u043a\u0430"
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('zh_CN',{
|
||||
"Redo": "\u91cd\u590d",
|
||||
"Undo": "\u64a4\u6d88",
|
||||
"Cut": "\u526a\u5207",
|
||||
"Copy": "\u590d\u5236",
|
||||
"Paste": "\u7c98\u8d34",
|
||||
"Select all": "\u5168\u9009",
|
||||
"New document": "\u65b0\u6587\u6863",
|
||||
"Ok": "\u786e\u5b9a",
|
||||
"Cancel": "\u53d6\u6d88",
|
||||
"Visual aids": "\u7f51\u683c\u7ebf",
|
||||
"Bold": "\u7c97\u4f53",
|
||||
"Italic": "\u659c\u4f53",
|
||||
"Underline": "\u4e0b\u5212\u7ebf",
|
||||
"Strikethrough": "\u5220\u9664\u7ebf",
|
||||
"Superscript": "\u4e0a\u6807",
|
||||
"Subscript": "\u4e0b\u6807",
|
||||
"Clear formatting": "\u6e05\u9664\u683c\u5f0f",
|
||||
"Align left": "\u5de6\u5bf9\u9f50",
|
||||
"Align center": "\u5c45\u4e2d",
|
||||
"Align right": "\u53f3\u5bf9\u9f50",
|
||||
"Justify": "\u4e24\u7aef\u5bf9\u9f50",
|
||||
"Bullet list": "\u9879\u76ee\u7b26\u53f7",
|
||||
"Numbered list": "\u7f16\u53f7\u5217\u8868",
|
||||
"Decrease indent": "\u51cf\u5c11\u7f29\u8fdb",
|
||||
"Increase indent": "\u589e\u52a0\u7f29\u8fdb",
|
||||
"Close": "\u5173\u95ed",
|
||||
"Formats": "\u683c\u5f0f",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u4f60\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u5bf9\u526a\u8d34\u677f\u7684\u8bbf\u95ee\uff0c\u8bf7\u4f7f\u7528Ctrl+X\/C\/V\u952e\u8fdb\u884c\u590d\u5236\u7c98\u8d34\u3002",
|
||||
"Headers": "\u6807\u9898",
|
||||
"Header 1": "\u6807\u98981",
|
||||
"Header 2": "\u6807\u98982",
|
||||
"Header 3": "\u6807\u98983",
|
||||
"Header 4": "\u6807\u98984",
|
||||
"Header 5": "\u6807\u98985",
|
||||
"Header 6": "\u6807\u98986",
|
||||
"Headings": "\u6807\u9898",
|
||||
"Heading 1": "\u6807\u98981",
|
||||
"Heading 2": "\u6807\u98982",
|
||||
"Heading 3": "\u6807\u98983",
|
||||
"Heading 4": "\u6807\u98984",
|
||||
"Heading 5": "\u6807\u98985",
|
||||
"Heading 6": "\u6807\u98986",
|
||||
"Preformatted": "\u9884\u683c\u5f0f\u5316",
|
||||
"Div": "Div\u533a\u5757",
|
||||
"Pre": "\u9884\u683c\u5f0f\u6587\u672c",
|
||||
"Code": "\u4ee3\u7801",
|
||||
"Paragraph": "\u6bb5\u843d",
|
||||
"Blockquote": "\u5f15\u7528",
|
||||
"Inline": "\u6587\u672c",
|
||||
"Blocks": "\u533a\u5757",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u5f53\u524d\u4e3a\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u518d\u6b21\u70b9\u51fb\u53ef\u4ee5\u56de\u5230\u666e\u901a\u7c98\u8d34\u6a21\u5f0f\u3002",
|
||||
"Font Family": "\u5b57\u4f53",
|
||||
"Font Sizes": "\u5b57\u53f7",
|
||||
"Class": "Class",
|
||||
"Browse for an image": "\u6d4f\u89c8\u56fe\u50cf",
|
||||
"OR": "\u6216",
|
||||
"Drop an image here": "\u62d6\u653e\u4e00\u5f20\u56fe\u50cf\u81f3\u6b64",
|
||||
"Upload": "\u4e0a\u4f20",
|
||||
"Block": "\u5757",
|
||||
"Align": "\u5bf9\u9f50",
|
||||
"Default": "\u9ed8\u8ba4",
|
||||
"Circle": "\u7a7a\u5fc3\u5706",
|
||||
"Disc": "\u5b9e\u5fc3\u5706",
|
||||
"Square": "\u65b9\u5757",
|
||||
"Lower Alpha": "\u5c0f\u5199\u82f1\u6587\u5b57\u6bcd",
|
||||
"Lower Greek": "\u5c0f\u5199\u5e0c\u814a\u5b57\u6bcd",
|
||||
"Lower Roman": "\u5c0f\u5199\u7f57\u9a6c\u5b57\u6bcd",
|
||||
"Upper Alpha": "\u5927\u5199\u82f1\u6587\u5b57\u6bcd",
|
||||
"Upper Roman": "\u5927\u5199\u7f57\u9a6c\u5b57\u6bcd",
|
||||
"Anchor": "\u951a\u70b9",
|
||||
"Name": "\u540d\u79f0",
|
||||
"Id": "\u6807\u8bc6\u7b26",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u6807\u8bc6\u7b26\u5e94\u8be5\u4ee5\u5b57\u6bcd\u5f00\u5934\uff0c\u540e\u8ddf\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u7834\u6298\u53f7\u3001\u70b9\u3001\u5192\u53f7\u6216\u4e0b\u5212\u7ebf\u3002",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u4f60\u8fd8\u6709\u6587\u6863\u5c1a\u672a\u4fdd\u5b58\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\uff1f",
|
||||
"Restore last draft": "\u6062\u590d\u4e0a\u6b21\u7684\u8349\u7a3f",
|
||||
"Special character": "\u7279\u6b8a\u7b26\u53f7",
|
||||
"Source code": "\u6e90\u4ee3\u7801",
|
||||
"Insert\/Edit code sample": "\u63d2\u5165\/\u7f16\u8f91\u4ee3\u7801\u793a\u4f8b",
|
||||
"Language": "\u8bed\u8a00",
|
||||
"Code sample": "\u4ee3\u7801\u793a\u4f8b",
|
||||
"Color": "\u989c\u8272",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"B": "B",
|
||||
"Left to right": "\u4ece\u5de6\u5230\u53f3",
|
||||
"Right to left": "\u4ece\u53f3\u5230\u5de6",
|
||||
"Emoticons": "\u8868\u60c5",
|
||||
"Document properties": "\u6587\u6863\u5c5e\u6027",
|
||||
"Title": "\u6807\u9898",
|
||||
"Keywords": "\u5173\u952e\u8bcd",
|
||||
"Description": "\u63cf\u8ff0",
|
||||
"Robots": "\u673a\u5668\u4eba",
|
||||
"Author": "\u4f5c\u8005",
|
||||
"Encoding": "\u7f16\u7801",
|
||||
"Fullscreen": "\u5168\u5c4f",
|
||||
"Action": "\u64cd\u4f5c",
|
||||
"Shortcut": "\u5feb\u6377\u952e",
|
||||
"Help": "\u5e2e\u52a9",
|
||||
"Address": "\u5730\u5740",
|
||||
"Focus to menubar": "\u79fb\u52a8\u7126\u70b9\u5230\u83dc\u5355\u680f",
|
||||
"Focus to toolbar": "\u79fb\u52a8\u7126\u70b9\u5230\u5de5\u5177\u680f",
|
||||
"Focus to element path": "\u79fb\u52a8\u7126\u70b9\u5230\u5143\u7d20\u8def\u5f84",
|
||||
"Focus to contextual toolbar": "\u79fb\u52a8\u7126\u70b9\u5230\u4e0a\u4e0b\u6587\u83dc\u5355",
|
||||
"Insert link (if link plugin activated)": "\u63d2\u5165\u94fe\u63a5 (\u5982\u679c\u94fe\u63a5\u63d2\u4ef6\u5df2\u6fc0\u6d3b)",
|
||||
"Save (if save plugin activated)": "\u4fdd\u5b58(\u5982\u679c\u4fdd\u5b58\u63d2\u4ef6\u5df2\u6fc0\u6d3b)",
|
||||
"Find (if searchreplace plugin activated)": "\u67e5\u627e(\u5982\u679c\u67e5\u627e\u66ff\u6362\u63d2\u4ef6\u5df2\u6fc0\u6d3b)",
|
||||
"Plugins installed ({0}):": "\u5df2\u5b89\u88c5\u63d2\u4ef6 ({0}):",
|
||||
"Premium plugins:": "\u4f18\u79c0\u63d2\u4ef6\uff1a",
|
||||
"Learn more...": "\u4e86\u89e3\u66f4\u591a...",
|
||||
"You are using {0}": "\u4f60\u6b63\u5728\u4f7f\u7528 {0}",
|
||||
"Plugins": "\u63d2\u4ef6",
|
||||
"Handy Shortcuts": "\u5feb\u6377\u952e",
|
||||
"Horizontal line": "\u6c34\u5e73\u5206\u5272\u7ebf",
|
||||
"Insert\/edit image": "\u63d2\u5165\/\u7f16\u8f91\u56fe\u7247",
|
||||
"Image description": "\u56fe\u7247\u63cf\u8ff0",
|
||||
"Source": "\u5730\u5740",
|
||||
"Dimensions": "\u5927\u5c0f",
|
||||
"Constrain proportions": "\u4fdd\u6301\u7eb5\u6a2a\u6bd4",
|
||||
"General": "\u666e\u901a",
|
||||
"Advanced": "\u9ad8\u7ea7",
|
||||
"Style": "\u6837\u5f0f",
|
||||
"Vertical space": "\u5782\u76f4\u8fb9\u8ddd",
|
||||
"Horizontal space": "\u6c34\u5e73\u8fb9\u8ddd",
|
||||
"Border": "\u8fb9\u6846",
|
||||
"Insert image": "\u63d2\u5165\u56fe\u7247",
|
||||
"Image": "\u56fe\u7247",
|
||||
"Image list": "\u56fe\u7247\u5217\u8868",
|
||||
"Rotate counterclockwise": "\u9006\u65f6\u9488\u65cb\u8f6c",
|
||||
"Rotate clockwise": "\u987a\u65f6\u9488\u65cb\u8f6c",
|
||||
"Flip vertically": "\u5782\u76f4\u7ffb\u8f6c",
|
||||
"Flip horizontally": "\u6c34\u5e73\u7ffb\u8f6c",
|
||||
"Edit image": "\u7f16\u8f91\u56fe\u7247",
|
||||
"Image options": "\u56fe\u7247\u9009\u9879",
|
||||
"Zoom in": "\u653e\u5927",
|
||||
"Zoom out": "\u7f29\u5c0f",
|
||||
"Crop": "\u88c1\u526a",
|
||||
"Resize": "\u8c03\u6574\u5927\u5c0f",
|
||||
"Orientation": "\u65b9\u5411",
|
||||
"Brightness": "\u4eae\u5ea6",
|
||||
"Sharpen": "\u9510\u5316",
|
||||
"Contrast": "\u5bf9\u6bd4\u5ea6",
|
||||
"Color levels": "\u989c\u8272\u5c42\u6b21",
|
||||
"Gamma": "\u4f3d\u9a6c\u503c",
|
||||
"Invert": "\u53cd\u8f6c",
|
||||
"Apply": "\u5e94\u7528",
|
||||
"Back": "\u540e\u9000",
|
||||
"Insert date\/time": "\u63d2\u5165\u65e5\u671f\/\u65f6\u95f4",
|
||||
"Date\/time": "\u65e5\u671f\/\u65f6\u95f4",
|
||||
"Insert link": "\u63d2\u5165\u94fe\u63a5",
|
||||
"Insert\/edit link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5",
|
||||
"Text to display": "\u663e\u793a\u6587\u5b57",
|
||||
"Url": "\u5730\u5740",
|
||||
"Target": "\u6253\u5f00\u65b9\u5f0f",
|
||||
"None": "\u65e0",
|
||||
"New window": "\u5728\u65b0\u7a97\u53e3\u6253\u5f00",
|
||||
"Remove link": "\u5220\u9664\u94fe\u63a5",
|
||||
"Anchors": "\u951a\u70b9",
|
||||
"Link": "\u94fe\u63a5",
|
||||
"Paste or type a link": "\u7c98\u8d34\u6216\u8f93\u5165\u94fe\u63a5",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u4e3a\u90ae\u4ef6\u5730\u5740\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\u5417\uff1f",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u5c5e\u4e8e\u5916\u90e8\u94fe\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7f00\u5417\uff1f",
|
||||
"Link list": "\u94fe\u63a5\u5217\u8868",
|
||||
"Insert video": "\u63d2\u5165\u89c6\u9891",
|
||||
"Insert\/edit video": "\u63d2\u5165\/\u7f16\u8f91\u89c6\u9891",
|
||||
"Insert\/edit media": "\u63d2\u5165\/\u7f16\u8f91\u5a92\u4f53",
|
||||
"Alternative source": "\u955c\u50cf",
|
||||
"Poster": "\u5c01\u9762",
|
||||
"Paste your embed code below:": "\u5c06\u5185\u5d4c\u4ee3\u7801\u7c98\u8d34\u5728\u4e0b\u9762:",
|
||||
"Embed": "\u5185\u5d4c",
|
||||
"Media": "\u5a92\u4f53",
|
||||
"Nonbreaking space": "\u4e0d\u95f4\u65ad\u7a7a\u683c",
|
||||
"Page break": "\u5206\u9875\u7b26",
|
||||
"Paste as text": "\u7c98\u8d34\u4e3a\u6587\u672c",
|
||||
"Preview": "\u9884\u89c8",
|
||||
"Print": "\u6253\u5370",
|
||||
"Save": "\u4fdd\u5b58",
|
||||
"Find": "\u67e5\u627e",
|
||||
"Replace with": "\u66ff\u6362\u4e3a",
|
||||
"Replace": "\u66ff\u6362",
|
||||
"Replace all": "\u5168\u90e8\u66ff\u6362",
|
||||
"Prev": "\u4e0a\u4e00\u4e2a",
|
||||
"Next": "\u4e0b\u4e00\u4e2a",
|
||||
"Find and replace": "\u67e5\u627e\u548c\u66ff\u6362",
|
||||
"Could not find the specified string.": "\u672a\u627e\u5230\u641c\u7d22\u5185\u5bb9.",
|
||||
"Match case": "\u533a\u5206\u5927\u5c0f\u5199",
|
||||
"Whole words": "\u5168\u5b57\u5339\u914d",
|
||||
"Spellcheck": "\u62fc\u5199\u68c0\u67e5",
|
||||
"Ignore": "\u5ffd\u7565",
|
||||
"Ignore all": "\u5168\u90e8\u5ffd\u7565",
|
||||
"Finish": "\u5b8c\u6210",
|
||||
"Add to Dictionary": "\u6dfb\u52a0\u5230\u5b57\u5178",
|
||||
"Insert table": "\u63d2\u5165\u8868\u683c",
|
||||
"Table properties": "\u8868\u683c\u5c5e\u6027",
|
||||
"Delete table": "\u5220\u9664\u8868\u683c",
|
||||
"Cell": "\u5355\u5143\u683c",
|
||||
"Row": "\u884c",
|
||||
"Column": "\u5217",
|
||||
"Cell properties": "\u5355\u5143\u683c\u5c5e\u6027",
|
||||
"Merge cells": "\u5408\u5e76\u5355\u5143\u683c",
|
||||
"Split cell": "\u62c6\u5206\u5355\u5143\u683c",
|
||||
"Insert row before": "\u5728\u4e0a\u65b9\u63d2\u5165",
|
||||
"Insert row after": "\u5728\u4e0b\u65b9\u63d2\u5165",
|
||||
"Delete row": "\u5220\u9664\u884c",
|
||||
"Row properties": "\u884c\u5c5e\u6027",
|
||||
"Cut row": "\u526a\u5207\u884c",
|
||||
"Copy row": "\u590d\u5236\u884c",
|
||||
"Paste row before": "\u7c98\u8d34\u5230\u4e0a\u65b9",
|
||||
"Paste row after": "\u7c98\u8d34\u5230\u4e0b\u65b9",
|
||||
"Insert column before": "\u5728\u5de6\u4fa7\u63d2\u5165",
|
||||
"Insert column after": "\u5728\u53f3\u4fa7\u63d2\u5165",
|
||||
"Delete column": "\u5220\u9664\u5217",
|
||||
"Cols": "\u5217",
|
||||
"Rows": "\u884c",
|
||||
"Width": "\u5bbd",
|
||||
"Height": "\u9ad8",
|
||||
"Cell spacing": "\u5355\u5143\u683c\u5916\u95f4\u8ddd",
|
||||
"Cell padding": "\u5355\u5143\u683c\u5185\u8fb9\u8ddd",
|
||||
"Caption": "\u6807\u9898",
|
||||
"Left": "\u5de6\u5bf9\u9f50",
|
||||
"Center": "\u5c45\u4e2d",
|
||||
"Right": "\u53f3\u5bf9\u9f50",
|
||||
"Cell type": "\u5355\u5143\u683c\u7c7b\u578b",
|
||||
"Scope": "\u8303\u56f4",
|
||||
"Alignment": "\u5bf9\u9f50\u65b9\u5f0f",
|
||||
"H Align": "\u6c34\u5e73\u5bf9\u9f50",
|
||||
"V Align": "\u5782\u76f4\u5bf9\u9f50",
|
||||
"Top": "\u9876\u90e8\u5bf9\u9f50",
|
||||
"Middle": "\u5782\u76f4\u5c45\u4e2d",
|
||||
"Bottom": "\u5e95\u90e8\u5bf9\u9f50",
|
||||
"Header cell": "\u8868\u5934\u5355\u5143\u683c",
|
||||
"Row group": "\u884c\u7ec4",
|
||||
"Column group": "\u5217\u7ec4",
|
||||
"Row type": "\u884c\u7c7b\u578b",
|
||||
"Header": "\u8868\u5934",
|
||||
"Body": "\u8868\u4f53",
|
||||
"Footer": "\u8868\u5c3e",
|
||||
"Border color": "\u8fb9\u6846\u989c\u8272",
|
||||
"Insert template": "\u63d2\u5165\u6a21\u677f",
|
||||
"Templates": "\u6a21\u677f",
|
||||
"Template": "\u6a21\u677f",
|
||||
"Text color": "\u6587\u5b57\u989c\u8272",
|
||||
"Background color": "\u80cc\u666f\u8272",
|
||||
"Custom...": "\u81ea\u5b9a\u4e49...",
|
||||
"Custom color": "\u81ea\u5b9a\u4e49\u989c\u8272",
|
||||
"No color": "\u65e0",
|
||||
"Table of Contents": "\u5185\u5bb9\u5217\u8868",
|
||||
"Show blocks": "\u663e\u793a\u533a\u5757\u8fb9\u6846",
|
||||
"Show invisible characters": "\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26",
|
||||
"Words: {0}": "\u5b57\u6570\uff1a{0}",
|
||||
"{0} words": "{0} \u5b57",
|
||||
"File": "\u6587\u4ef6",
|
||||
"Edit": "\u7f16\u8f91",
|
||||
"Insert": "\u63d2\u5165",
|
||||
"View": "\u89c6\u56fe",
|
||||
"Format": "\u683c\u5f0f",
|
||||
"Table": "\u8868\u683c",
|
||||
"Tools": "\u5de5\u5177",
|
||||
"Powered by {0}": "\u7531{0}\u9a71\u52a8",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u5728\u7f16\u8f91\u533a\u6309ALT-F9\u6253\u5f00\u83dc\u5355\uff0c\u6309ALT-F10\u6253\u5f00\u5de5\u5177\u680f\uff0c\u6309ALT-0\u67e5\u770b\u5e2e\u52a9"
|
||||
});
|
|
@ -0,0 +1,261 @@
|
|||
tinymce.addI18n('zh_TW',{
|
||||
"Redo": "\u53d6\u6d88\u5fa9\u539f",
|
||||
"Undo": "\u5fa9\u539f",
|
||||
"Cut": "\u526a\u4e0b",
|
||||
"Copy": "\u8907\u88fd",
|
||||
"Paste": "\u8cbc\u4e0a",
|
||||
"Select all": "\u5168\u9078",
|
||||
"New document": "\u65b0\u6587\u4ef6",
|
||||
"Ok": "\u78ba\u5b9a",
|
||||
"Cancel": "\u53d6\u6d88",
|
||||
"Visual aids": "\u5c0f\u5e6b\u624b",
|
||||
"Bold": "\u7c97\u9ad4",
|
||||
"Italic": "\u659c\u9ad4",
|
||||
"Underline": "\u5e95\u7dda",
|
||||
"Strikethrough": "\u522a\u9664\u7dda",
|
||||
"Superscript": "\u4e0a\u6a19",
|
||||
"Subscript": "\u4e0b\u6a19",
|
||||
"Clear formatting": "\u6e05\u9664\u683c\u5f0f",
|
||||
"Align left": "\u7f6e\u5de6\u5c0d\u9f4a",
|
||||
"Align center": "\u7f6e\u4e2d\u5c0d\u9f4a",
|
||||
"Align right": "\u7f6e\u53f3\u5c0d\u9f4a",
|
||||
"Justify": "\u5de6\u53f3\u5c0d\u9f4a",
|
||||
"Bullet list": "\u9805\u76ee\u6e05\u55ae",
|
||||
"Numbered list": "\u6578\u5b57\u6e05\u55ae",
|
||||
"Decrease indent": "\u6e1b\u5c11\u7e2e\u6392",
|
||||
"Increase indent": "\u589e\u52a0\u7e2e\u6392",
|
||||
"Close": "\u95dc\u9589",
|
||||
"Formats": "\u683c\u5f0f",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u60a8\u7684\u700f\u89bd\u5668\u4e0d\u652f\u63f4\u5b58\u53d6\u526a\u8cbc\u7c3f\uff0c\u53ef\u4ee5\u4f7f\u7528\u5feb\u901f\u9375 Ctrl + X\/C\/V \u4ee3\u66ff\u526a\u4e0b\u3001\u8907\u88fd\u8207\u8cbc\u4e0a\u3002",
|
||||
"Headers": "\u6a19\u984c",
|
||||
"Header 1": "\u6a19\u984c 1",
|
||||
"Header 2": "\u6a19\u984c 2",
|
||||
"Header 3": "\u6a19\u984c 3",
|
||||
"Header 4": "\u6a19\u984c 4",
|
||||
"Header 5": "\u6a19\u984c 5",
|
||||
"Header 6": "\u6a19\u984c 6",
|
||||
"Headings": "\u6a19\u984c",
|
||||
"Heading 1": "\u6a19\u984c 1",
|
||||
"Heading 2": "\u6a19\u984c 2",
|
||||
"Heading 3": "\u6a19\u984c 3",
|
||||
"Heading 4": "\u6a19\u984c 4",
|
||||
"Heading 5": "\u6a19\u984c 5",
|
||||
"Heading 6": "\u6a19\u984c 6",
|
||||
"Preformatted": "\u9810\u5148\u6392\u7248",
|
||||
"Div": "Div",
|
||||
"Pre": "Pre",
|
||||
"Code": "\u7a0b\u5f0f\u78bc",
|
||||
"Paragraph": "\u6bb5\u843d",
|
||||
"Blockquote": "\u5f15\u7528",
|
||||
"Inline": "Inline",
|
||||
"Blocks": "\u5340\u584a",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u76ee\u524d\u5c07\u4ee5\u7d14\u6587\u5b57\u7684\u6a21\u5f0f\u8cbc\u4e0a\uff0c\u60a8\u53ef\u4ee5\u518d\u9ede\u9078\u4e00\u6b21\u53d6\u6d88\u3002",
|
||||
"Font Family": "\u5b57\u9ad4",
|
||||
"Font Sizes": "\u5b57\u578b\u5927\u5c0f",
|
||||
"Class": "\u985e\u5225",
|
||||
"Browse for an image": "\u5f9e\u5716\u7247\u4e2d\u700f\u89bd",
|
||||
"OR": "\u6216",
|
||||
"Drop an image here": "\u62d6\u66f3\u5716\u7247\u81f3\u6b64",
|
||||
"Upload": "\u4e0a\u50b3",
|
||||
"Block": "\u5340\u584a",
|
||||
"Align": "\u5c0d\u9f4a",
|
||||
"Default": "\u9810\u8a2d",
|
||||
"Circle": "\u7a7a\u5fc3\u5713",
|
||||
"Disc": "\u5be6\u5fc3\u5713",
|
||||
"Square": "\u6b63\u65b9\u5f62",
|
||||
"Lower Alpha": "\u5c0f\u5beb\u82f1\u6587\u5b57\u6bcd",
|
||||
"Lower Greek": "\u5e0c\u81d8\u5b57\u6bcd",
|
||||
"Lower Roman": "\u5c0f\u5beb\u7f85\u99ac\u6578\u5b57",
|
||||
"Upper Alpha": "\u5927\u5beb\u82f1\u6587\u5b57\u6bcd",
|
||||
"Upper Roman": "\u5927\u5beb\u7f85\u99ac\u6578\u5b57",
|
||||
"Anchor": "\u52a0\u5165\u9328\u9ede",
|
||||
"Name": "\u540d\u7a31",
|
||||
"Id": "Id",
|
||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id\u61c9\u4ee5\u5b57\u6bcd\u958b\u982d\uff0c\u5f8c\u9762\u63a5\u8457\u5b57\u6bcd\uff0c\u6578\u5b57\uff0c\u7834\u6298\u865f\uff0c\u9ede\u6578\uff0c\u5192\u865f\u6216\u4e0b\u5283\u7dda\u3002",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u7de8\u8f2f\u5c1a\u672a\u88ab\u5132\u5b58\uff0c\u4f60\u78ba\u5b9a\u8981\u96e2\u958b\uff1f",
|
||||
"Restore last draft": "\u8f09\u5165\u4e0a\u4e00\u6b21\u7de8\u8f2f\u7684\u8349\u7a3f",
|
||||
"Special character": "\u7279\u6b8a\u5b57\u5143",
|
||||
"Source code": "\u539f\u59cb\u78bc",
|
||||
"Insert\/Edit code sample": "\u63d2\u5165\/\u7de8\u8f2f \u7a0b\u5f0f\u78bc\u7bc4\u4f8b",
|
||||
"Language": "\u8a9e\u8a00",
|
||||
"Code sample": "\u7a0b\u5f0f\u78bc\u7bc4\u4f8b",
|
||||
"Color": "\u984f\u8272",
|
||||
"R": "\u7d05",
|
||||
"G": "\u7da0",
|
||||
"B": "\u85cd",
|
||||
"Left to right": "\u5f9e\u5de6\u5230\u53f3",
|
||||
"Right to left": "\u5f9e\u53f3\u5230\u5de6",
|
||||
"Emoticons": "\u8868\u60c5",
|
||||
"Document properties": "\u6587\u4ef6\u7684\u5c6c\u6027",
|
||||
"Title": "\u6a19\u984c",
|
||||
"Keywords": "\u95dc\u9375\u5b57",
|
||||
"Description": "\u63cf\u8ff0",
|
||||
"Robots": "\u6a5f\u5668\u4eba",
|
||||
"Author": "\u4f5c\u8005",
|
||||
"Encoding": "\u7de8\u78bc",
|
||||
"Fullscreen": "\u5168\u87a2\u5e55",
|
||||
"Action": "\u52d5\u4f5c",
|
||||
"Shortcut": "\u5feb\u6377\u9375",
|
||||
"Help": "\u5e6b\u52a9",
|
||||
"Address": "\u5730\u5740",
|
||||
"Focus to menubar": "\u8df3\u81f3\u9078\u55ae\u5217",
|
||||
"Focus to toolbar": "\u8df3\u81f3\u5de5\u5177\u5217",
|
||||
"Focus to element path": "\u8df3\u81f3HTML\u5143\u7d20\u5217",
|
||||
"Focus to contextual toolbar": "\u8df3\u81f3\u4e0a\u4e0b\u6587\u5de5\u5177\u5217",
|
||||
"Insert link (if link plugin activated)": "\u65b0\u589e\u6377\u5f91 (\u82e5\u6377\u5f91\u5916\u639b\u5df2\u555f\u7528)",
|
||||
"Save (if save plugin activated)": "\u5132\u5b58 (\u82e5\u5132\u5b58\u5916\u639b\u5df2\u555f\u7528)",
|
||||
"Find (if searchreplace plugin activated)": "\u5c0b\u627e (\u82e5\u5c0b\u627e\u53d6\u4ee3\u5916\u639b\u5df2\u555f\u7528)",
|
||||
"Plugins installed ({0}):": "({0}) \u500b\u5916\u639b\u5df2\u5b89\u88dd\uff1a",
|
||||
"Premium plugins:": "\u52a0\u503c\u5916\u639b\uff1a",
|
||||
"Learn more...": "\u4e86\u89e3\u66f4\u591a...",
|
||||
"You are using {0}": "\u60a8\u6b63\u5728\u4f7f\u7528 {0}",
|
||||
"Plugins": "\u5916\u639b",
|
||||
"Handy Shortcuts": "\u5feb\u901f\u9375",
|
||||
"Horizontal line": "\u6c34\u5e73\u7dda",
|
||||
"Insert\/edit image": "\u63d2\u5165\/\u7de8\u8f2f \u5716\u7247",
|
||||
"Image description": "\u5716\u7247\u63cf\u8ff0",
|
||||
"Source": "\u5716\u7247\u7db2\u5740",
|
||||
"Dimensions": "\u5c3a\u5bf8",
|
||||
"Constrain proportions": "\u7b49\u6bd4\u4f8b\u7e2e\u653e",
|
||||
"General": "\u4e00\u822c",
|
||||
"Advanced": "\u9032\u968e",
|
||||
"Style": "\u6a23\u5f0f",
|
||||
"Vertical space": "\u9ad8\u5ea6",
|
||||
"Horizontal space": "\u5bec\u5ea6",
|
||||
"Border": "\u908a\u6846",
|
||||
"Insert image": "\u63d2\u5165\u5716\u7247",
|
||||
"Image": "\u5716\u7247",
|
||||
"Image list": "\u5716\u7247\u6e05\u55ae",
|
||||
"Rotate counterclockwise": "\u9006\u6642\u91dd\u65cb\u8f49",
|
||||
"Rotate clockwise": "\u9806\u6642\u91dd\u65cb\u8f49",
|
||||
"Flip vertically": "\u5782\u76f4\u7ffb\u8f49",
|
||||
"Flip horizontally": "\u6c34\u5e73\u7ffb\u8f49",
|
||||
"Edit image": "\u7de8\u8f2f\u5716\u7247",
|
||||
"Image options": "\u5716\u7247\u9078\u9805",
|
||||
"Zoom in": "\u653e\u5927",
|
||||
"Zoom out": "\u7e2e\u5c0f",
|
||||
"Crop": "\u88c1\u526a",
|
||||
"Resize": "\u8abf\u6574\u5927\u5c0f",
|
||||
"Orientation": "\u65b9\u5411",
|
||||
"Brightness": "\u4eae\u5ea6",
|
||||
"Sharpen": "\u92b3\u5316",
|
||||
"Contrast": "\u5c0d\u6bd4",
|
||||
"Color levels": "\u984f\u8272\u5c64\u6b21",
|
||||
"Gamma": "\u4f3d\u99ac\u503c",
|
||||
"Invert": "\u53cd\u8f49",
|
||||
"Apply": "\u61c9\u7528",
|
||||
"Back": "\u5f8c\u9000",
|
||||
"Insert date\/time": "\u63d2\u5165 \u65e5\u671f\/\u6642\u9593",
|
||||
"Date\/time": "\u65e5\u671f\/\u6642\u9593",
|
||||
"Insert link": "\u63d2\u5165\u9023\u7d50",
|
||||
"Insert\/edit link": "\u63d2\u5165\/\u7de8\u8f2f\u9023\u7d50",
|
||||
"Text to display": "\u986f\u793a\u6587\u5b57",
|
||||
"Url": "\u7db2\u5740",
|
||||
"Target": "\u958b\u555f\u65b9\u5f0f",
|
||||
"None": "\u7121",
|
||||
"New window": "\u53e6\u958b\u8996\u7a97",
|
||||
"Remove link": "\u79fb\u9664\u9023\u7d50",
|
||||
"Anchors": "\u52a0\u5165\u9328\u9ede",
|
||||
"Link": "\u9023\u7d50",
|
||||
"Paste or type a link": "\u8cbc\u4e0a\u6216\u8f38\u5165\u9023\u7d50",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u70ba\u96fb\u5b50\u90f5\u4ef6\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7db4\u55ce\uff1f",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u5c6c\u65bc\u5916\u90e8\u93c8\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7db4\u55ce\uff1f",
|
||||
"Link list": "\u9023\u7d50\u6e05\u55ae",
|
||||
"Insert video": "\u63d2\u5165\u5f71\u97f3",
|
||||
"Insert\/edit video": "\u63d2\u4ef6\/\u7de8\u8f2f \u5f71\u97f3",
|
||||
"Insert\/edit media": "\u63d2\u5165\/\u7de8\u8f2f \u5a92\u9ad4",
|
||||
"Alternative source": "\u66ff\u4ee3\u5f71\u97f3",
|
||||
"Poster": "\u9810\u89bd\u5716\u7247",
|
||||
"Paste your embed code below:": "\u8acb\u5c07\u60a8\u7684\u5d4c\u5165\u5f0f\u7a0b\u5f0f\u78bc\u8cbc\u5728\u4e0b\u9762:",
|
||||
"Embed": "\u5d4c\u5165\u78bc",
|
||||
"Media": "\u5a92\u9ad4",
|
||||
"Nonbreaking space": "\u4e0d\u5206\u884c\u7684\u7a7a\u683c",
|
||||
"Page break": "\u5206\u9801",
|
||||
"Paste as text": "\u4ee5\u7d14\u6587\u5b57\u8cbc\u4e0a",
|
||||
"Preview": "\u9810\u89bd",
|
||||
"Print": "\u5217\u5370",
|
||||
"Save": "\u5132\u5b58",
|
||||
"Find": "\u641c\u5c0b",
|
||||
"Replace with": "\u66f4\u63db",
|
||||
"Replace": "\u66ff\u63db",
|
||||
"Replace all": "\u66ff\u63db\u5168\u90e8",
|
||||
"Prev": "\u4e0a\u4e00\u500b",
|
||||
"Next": "\u4e0b\u4e00\u500b",
|
||||
"Find and replace": "\u5c0b\u627e\u53ca\u53d6\u4ee3",
|
||||
"Could not find the specified string.": "\u7121\u6cd5\u67e5\u8a62\u5230\u6b64\u7279\u5b9a\u5b57\u4e32",
|
||||
"Match case": "\u76f8\u5339\u914d\u6848\u4ef6",
|
||||
"Whole words": "\u6574\u500b\u55ae\u5b57",
|
||||
"Spellcheck": "\u62fc\u5b57\u6aa2\u67e5",
|
||||
"Ignore": "\u5ffd\u7565",
|
||||
"Ignore all": "\u5ffd\u7565\u6240\u6709",
|
||||
"Finish": "\u5b8c\u6210",
|
||||
"Add to Dictionary": "\u52a0\u5165\u5b57\u5178\u4e2d",
|
||||
"Insert table": "\u63d2\u5165\u8868\u683c",
|
||||
"Table properties": "\u8868\u683c\u5c6c\u6027",
|
||||
"Delete table": "\u522a\u9664\u8868\u683c",
|
||||
"Cell": "\u5132\u5b58\u683c",
|
||||
"Row": "\u5217",
|
||||
"Column": "\u884c",
|
||||
"Cell properties": "\u5132\u5b58\u683c\u5c6c\u6027",
|
||||
"Merge cells": "\u5408\u4f75\u5132\u5b58\u683c",
|
||||
"Split cell": "\u5206\u5272\u5132\u5b58\u683c",
|
||||
"Insert row before": "\u63d2\u5165\u5217\u5728...\u4e4b\u524d",
|
||||
"Insert row after": "\u63d2\u5165\u5217\u5728...\u4e4b\u5f8c",
|
||||
"Delete row": "\u522a\u9664\u5217",
|
||||
"Row properties": "\u5217\u5c6c\u6027",
|
||||
"Cut row": "\u526a\u4e0b\u5217",
|
||||
"Copy row": "\u8907\u88fd\u5217",
|
||||
"Paste row before": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u524d",
|
||||
"Paste row after": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u5f8c",
|
||||
"Insert column before": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u524d",
|
||||
"Insert column after": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u5f8c",
|
||||
"Delete column": "\u522a\u9664\u884c",
|
||||
"Cols": "\u6b04\u4f4d\u6bb5",
|
||||
"Rows": "\u5217",
|
||||
"Width": "\u5bec\u5ea6",
|
||||
"Height": "\u9ad8\u5ea6",
|
||||
"Cell spacing": "\u5132\u5b58\u683c\u5f97\u9593\u8ddd",
|
||||
"Cell padding": "\u5132\u5b58\u683c\u7684\u908a\u8ddd",
|
||||
"Caption": "\u8868\u683c\u6a19\u984c",
|
||||
"Left": "\u5de6\u908a",
|
||||
"Center": "\u4e2d\u9593",
|
||||
"Right": "\u53f3\u908a",
|
||||
"Cell type": "\u5132\u5b58\u683c\u7684\u985e\u578b",
|
||||
"Scope": "\u7bc4\u570d",
|
||||
"Alignment": "\u5c0d\u9f4a",
|
||||
"H Align": "\u6c34\u5e73\u4f4d\u7f6e",
|
||||
"V Align": "\u5782\u76f4\u4f4d\u7f6e",
|
||||
"Top": "\u7f6e\u9802",
|
||||
"Middle": "\u7f6e\u4e2d",
|
||||
"Bottom": "\u7f6e\u5e95",
|
||||
"Header cell": "\u6a19\u982d\u5132\u5b58\u683c",
|
||||
"Row group": "\u5217\u7fa4\u7d44",
|
||||
"Column group": "\u6b04\u4f4d\u7fa4\u7d44",
|
||||
"Row type": "\u884c\u7684\u985e\u578b",
|
||||
"Header": "\u6a19\u982d",
|
||||
"Body": "\u4e3b\u9ad4",
|
||||
"Footer": "\u9801\u5c3e",
|
||||
"Border color": "\u908a\u6846\u984f\u8272",
|
||||
"Insert template": "\u63d2\u5165\u6a23\u7248",
|
||||
"Templates": "\u6a23\u7248",
|
||||
"Template": "\u6a23\u677f",
|
||||
"Text color": "\u6587\u5b57\u984f\u8272",
|
||||
"Background color": "\u80cc\u666f\u984f\u8272",
|
||||
"Custom...": "\u81ea\u8a02",
|
||||
"Custom color": "\u81ea\u8a02\u984f\u8272",
|
||||
"No color": "No color",
|
||||
"Table of Contents": "\u76ee\u9304",
|
||||
"Show blocks": "\u986f\u793a\u5340\u584a\u8cc7\u8a0a",
|
||||
"Show invisible characters": "\u986f\u793a\u96b1\u85cf\u5b57\u5143",
|
||||
"Words: {0}": "\u5b57\u6578\uff1a{0}",
|
||||
"{0} words": "{0} \u5b57\u5143",
|
||||
"File": "\u6a94\u6848",
|
||||
"Edit": "\u7de8\u8f2f",
|
||||
"Insert": "\u63d2\u5165",
|
||||
"View": "\u6aa2\u8996",
|
||||
"Format": "\u683c\u5f0f",
|
||||
"Table": "\u8868\u683c",
|
||||
"Tools": "\u5de5\u5177",
|
||||
"Powered by {0}": "\u7531 {0} \u63d0\u4f9b",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u8c50\u5bcc\u7684\u6587\u672c\u5340\u57df\u3002\u6309ALT-F9\u524d\u5f80\u4e3b\u9078\u55ae\u3002\u6309ALT-F10\u547c\u53eb\u5de5\u5177\u6b04\u3002\u6309ALT-0\u5c0b\u6c42\u5e6b\u52a9"
|
||||
});
|
|
@ -106,8 +106,10 @@ class pluginUpdater extends Plugin {
|
|||
{
|
||||
global $Language;
|
||||
|
||||
return '<div class="alert alert-success">This plugin is not yet complete</div>';
|
||||
|
||||
if ($this->zip===false) {
|
||||
//return '<div class="alert alert-success">The extension zip file is not installed, to use this plugin you need install the extension first.</div>';
|
||||
return '<div class="alert alert-success">The extension zip file is not installed, to use this plugin you need install the extension first.</div>';
|
||||
}
|
||||
|
||||
$html = '<div>';
|
||||
|
|
|
@ -25,10 +25,11 @@ Things to do:
|
|||
|
||||
- Filter by tags is not working
|
||||
|
||||
- Plugin timemachine
|
||||
-- Update CSS for Bootstrap
|
||||
|
||||
- Plugin updater
|
||||
|
||||
- Cover Image
|
||||
-- Check better way to select an image
|
||||
|
||||
- Profile picture
|
||||
-- Convert to PNG
|
||||
-- Resize image
|
Loading…
Reference in New Issue