mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-04-21 15:40:22 +00:00
first commit
This commit is contained in:
608
lib/ckeditor4/plugins/docprops/dialogs/docprops.js
Executable file
608
lib/ckeditor4/plugins/docprops/dialogs/docprops.js
Executable file
@@ -0,0 +1,608 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.dialog.add( 'docProps', function( editor ) {
|
||||
var lang = editor.lang.docprops,
|
||||
langCommon = editor.lang.common,
|
||||
metaHash = {};
|
||||
|
||||
function getDialogValue( dialogName, callback ) {
|
||||
var onOk = function() {
|
||||
releaseHandlers( this );
|
||||
callback( this, this._.parentDialog );
|
||||
};
|
||||
var releaseHandlers = function( dialog ) {
|
||||
dialog.removeListener( 'ok', onOk );
|
||||
dialog.removeListener( 'cancel', releaseHandlers );
|
||||
};
|
||||
var bindToDialog = function( dialog ) {
|
||||
dialog.on( 'ok', onOk );
|
||||
dialog.on( 'cancel', releaseHandlers );
|
||||
};
|
||||
editor.execCommand( dialogName );
|
||||
if ( editor._.storedDialogs.colordialog )
|
||||
bindToDialog( editor._.storedDialogs.colordialog );
|
||||
else {
|
||||
CKEDITOR.on( 'dialogDefinition', function( e ) {
|
||||
if ( e.data.name != dialogName )
|
||||
return;
|
||||
|
||||
var definition = e.data.definition;
|
||||
|
||||
e.removeListener();
|
||||
definition.onLoad = CKEDITOR.tools.override( definition.onLoad, function( orginal ) {
|
||||
return function() {
|
||||
bindToDialog( this );
|
||||
definition.onLoad = orginal;
|
||||
if ( typeof orginal == 'function' )
|
||||
orginal.call( this );
|
||||
};
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function handleOther() {
|
||||
var dialog = this.getDialog(),
|
||||
other = dialog.getContentElement( 'general', this.id + 'Other' );
|
||||
if ( !other )
|
||||
return;
|
||||
if ( this.getValue() == 'other' ) {
|
||||
other.getInputElement().removeAttribute( 'readOnly' );
|
||||
other.focus();
|
||||
other.getElement().removeClass( 'cke_disabled' );
|
||||
} else {
|
||||
other.getInputElement().setAttribute( 'readOnly', true );
|
||||
other.getElement().addClass( 'cke_disabled' );
|
||||
}
|
||||
}
|
||||
|
||||
function commitMeta( name, isHttp, value ) {
|
||||
return function( doc, html, head ) {
|
||||
var hash = metaHash,
|
||||
val = typeof value != 'undefined' ? value : this.getValue();
|
||||
if ( !val && ( name in hash ) )
|
||||
hash[ name ].remove();
|
||||
else if ( val && ( name in hash ) )
|
||||
hash[ name ].setAttribute( 'content', val );
|
||||
else if ( val ) {
|
||||
var meta = new CKEDITOR.dom.element( 'meta', editor.document );
|
||||
meta.setAttribute( isHttp ? 'http-equiv' : 'name', name );
|
||||
meta.setAttribute( 'content', val );
|
||||
head.append( meta );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function setupMeta( name, ret ) {
|
||||
return function() {
|
||||
var hash = metaHash,
|
||||
result = ( name in hash ) ? hash[ name ].getAttribute( 'content' ) || '' : '';
|
||||
if ( ret )
|
||||
return result;
|
||||
this.setValue( result );
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
||||
function commitMargin( name ) {
|
||||
return function( doc, html, head, body ) {
|
||||
body.removeAttribute( 'margin' + name );
|
||||
var val = this.getValue();
|
||||
if ( val !== '' )
|
||||
body.setStyle( 'margin-' + name, CKEDITOR.tools.cssLength( val ) );
|
||||
else
|
||||
body.removeStyle( 'margin-' + name );
|
||||
};
|
||||
}
|
||||
|
||||
function createMetaHash( doc ) {
|
||||
var hash = {},
|
||||
metas = doc.getElementsByTag( 'meta' ),
|
||||
count = metas.count();
|
||||
|
||||
for ( var i = 0; i < count; i++ ) {
|
||||
var meta = metas.getItem( i );
|
||||
hash[ meta.getAttribute( meta.hasAttribute( 'http-equiv' ) ? 'http-equiv' : 'name' ).toLowerCase() ] = meta;
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
// We cannot just remove the style from the element, as it might be affected from non-inline stylesheets.
|
||||
// To get the proper result, we should manually set the inline style to its default value.
|
||||
function resetStyle( element, prop, resetVal ) {
|
||||
element.removeStyle( prop );
|
||||
if ( element.getComputedStyle( prop ) != resetVal )
|
||||
element.setStyle( prop, resetVal );
|
||||
}
|
||||
|
||||
// Utilty to shorten the creation of color fields in the dialog.
|
||||
var colorField = function( id, label, fieldProps ) {
|
||||
return {
|
||||
type: 'hbox',
|
||||
padding: 0,
|
||||
widths: [ '60%', '40%' ],
|
||||
children: [
|
||||
CKEDITOR.tools.extend({
|
||||
type: 'text',
|
||||
id: id,
|
||||
label: lang[ label ]
|
||||
}, fieldProps || {}, 1 ),
|
||||
{
|
||||
type: 'button',
|
||||
id: id + 'Choose',
|
||||
label: lang.chooseColor,
|
||||
className: 'colorChooser',
|
||||
onClick: function() {
|
||||
var self = this;
|
||||
getDialogValue( 'colordialog', function( colorDialog ) {
|
||||
var dialog = self.getDialog();
|
||||
dialog.getContentElement( dialog._.currentTabId, id ).setValue( colorDialog.getContentElement( 'picker', 'selectedColor' ).getValue() );
|
||||
});
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
||||
};
|
||||
var previewSrc = 'javascript:' +
|
||||
'void((function(){' + encodeURIComponent(
|
||||
'document.open();' +
|
||||
( CKEDITOR.env.ie ? '(' + CKEDITOR.tools.fixDomain + ')();' : '' ) +
|
||||
'document.write( \'<html style="background-color: #ffffff; height: 100%"><head></head><body style="width: 100%; height: 100%; margin: 0px">' + lang.previewHtml + '</body></html>\' );' +
|
||||
'document.close();'
|
||||
) + '})())';
|
||||
|
||||
return {
|
||||
title: lang.title,
|
||||
minHeight: 330,
|
||||
minWidth: 500,
|
||||
onShow: function() {
|
||||
var doc = editor.document,
|
||||
html = doc.getElementsByTag( 'html' ).getItem( 0 ),
|
||||
head = doc.getHead(),
|
||||
body = doc.getBody();
|
||||
metaHash = createMetaHash( doc );
|
||||
this.setupContent( doc, html, head, body );
|
||||
},
|
||||
onHide: function() {
|
||||
metaHash = {};
|
||||
},
|
||||
onOk: function() {
|
||||
var doc = editor.document,
|
||||
html = doc.getElementsByTag( 'html' ).getItem( 0 ),
|
||||
head = doc.getHead(),
|
||||
body = doc.getBody();
|
||||
this.commitContent( doc, html, head, body );
|
||||
},
|
||||
contents: [
|
||||
{
|
||||
id: 'general',
|
||||
label: langCommon.generalTab,
|
||||
elements: [
|
||||
{
|
||||
type: 'text',
|
||||
id: 'title',
|
||||
label: lang.docTitle,
|
||||
setup: function( doc ) {
|
||||
this.setValue( doc.getElementsByTag( 'title' ).getItem( 0 ).data( 'cke-title' ) );
|
||||
},
|
||||
commit: function( doc, html, head, body, isPreview ) {
|
||||
if ( isPreview )
|
||||
return;
|
||||
doc.getElementsByTag( 'title' ).getItem( 0 ).data( 'cke-title', this.getValue() );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
children: [
|
||||
{
|
||||
type: 'select',
|
||||
id: 'dir',
|
||||
label: langCommon.langDir,
|
||||
style: 'width: 100%',
|
||||
items: [
|
||||
[ langCommon.notSet, '' ],
|
||||
[ langCommon.langDirLtr, 'ltr' ],
|
||||
[ langCommon.langDirRtl, 'rtl' ]
|
||||
],
|
||||
setup: function( doc, html, head, body ) {
|
||||
this.setValue( body.getDirection() || '' );
|
||||
},
|
||||
commit: function( doc, html, head, body ) {
|
||||
var val = this.getValue();
|
||||
if ( val )
|
||||
body.setAttribute( 'dir', val );
|
||||
else
|
||||
body.removeAttribute( 'dir' );
|
||||
body.removeStyle( 'direction' );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
id: 'langCode',
|
||||
label: langCommon.langCode,
|
||||
setup: function( doc, html ) {
|
||||
this.setValue( html.getAttribute( 'xml:lang' ) || html.getAttribute( 'lang' ) || '' );
|
||||
},
|
||||
commit: function( doc, html, head, body, isPreview ) {
|
||||
if ( isPreview )
|
||||
return;
|
||||
var val = this.getValue();
|
||||
if ( val )
|
||||
html.setAttributes({ 'xml:lang': val, lang: val } );
|
||||
else
|
||||
html.removeAttributes( { 'xml:lang':1,lang:1 } );
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
children: [
|
||||
{
|
||||
type: 'select',
|
||||
id: 'charset',
|
||||
label: lang.charset,
|
||||
style: 'width: 100%',
|
||||
items: [
|
||||
[ langCommon.notSet, '' ],
|
||||
[ lang.charsetASCII, 'us-ascii' ],
|
||||
[ lang.charsetCE, 'iso-8859-2' ],
|
||||
[ lang.charsetCT, 'big5' ],
|
||||
[ lang.charsetCR, 'iso-8859-5' ],
|
||||
[ lang.charsetGR, 'iso-8859-7' ],
|
||||
[ lang.charsetJP, 'iso-2022-jp' ],
|
||||
[ lang.charsetKR, 'iso-2022-kr' ],
|
||||
[ lang.charsetTR, 'iso-8859-9' ],
|
||||
[ lang.charsetUN, 'utf-8' ],
|
||||
[ lang.charsetWE, 'iso-8859-1' ],
|
||||
[ lang.other, 'other' ]
|
||||
],
|
||||
'default': '',
|
||||
onChange: function() {
|
||||
this.getDialog().selectedCharset = this.getValue() != 'other' ? this.getValue() : '';
|
||||
handleOther.call( this );
|
||||
},
|
||||
setup: function() {
|
||||
this.metaCharset = ( 'charset' in metaHash );
|
||||
|
||||
var func = setupMeta( this.metaCharset ? 'charset' : 'content-type', 1, 1 ),
|
||||
val = func.call( this );
|
||||
|
||||
!this.metaCharset && val.match( /charset=[^=]+$/ ) && ( val = val.substring( val.indexOf( '=' ) + 1 ) );
|
||||
|
||||
if ( val ) {
|
||||
this.setValue( val.toLowerCase() );
|
||||
if ( !this.getValue() ) {
|
||||
this.setValue( 'other' );
|
||||
var other = this.getDialog().getContentElement( 'general', 'charsetOther' );
|
||||
other && other.setValue( val );
|
||||
}
|
||||
this.getDialog().selectedCharset = val;
|
||||
}
|
||||
|
||||
handleOther.call( this );
|
||||
},
|
||||
commit: function( doc, html, head, body, isPreview ) {
|
||||
if ( isPreview )
|
||||
return;
|
||||
var value = this.getValue(),
|
||||
other = this.getDialog().getContentElement( 'general', 'charsetOther' );
|
||||
|
||||
value == 'other' && ( value = other ? other.getValue() : '' );
|
||||
|
||||
value && !this.metaCharset && ( value = ( metaHash[ 'content-type' ] ? metaHash[ 'content-type' ].getAttribute( 'content' ).split( ';' )[ 0 ] : 'text/html' ) + '; charset=' + value );
|
||||
|
||||
var func = commitMeta( this.metaCharset ? 'charset' : 'content-type', 1, value );
|
||||
func.call( this, doc, html, head );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
id: 'charsetOther',
|
||||
label: lang.charsetOther,
|
||||
onChange: function() {
|
||||
this.getDialog().selectedCharset = this.getValue();
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
children: [
|
||||
{
|
||||
type: 'select',
|
||||
id: 'docType',
|
||||
label: lang.docType,
|
||||
style: 'width: 100%',
|
||||
items: [
|
||||
[ langCommon.notSet, '' ],
|
||||
[ 'XHTML 1.1', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">' ],
|
||||
[ 'XHTML 1.0 Transitional', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' ],
|
||||
[ 'XHTML 1.0 Strict', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' ],
|
||||
[ 'XHTML 1.0 Frameset', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">' ],
|
||||
[ 'HTML 5', '<!DOCTYPE html>' ],
|
||||
[ 'HTML 4.01 Transitional', '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">' ],
|
||||
[ 'HTML 4.01 Strict', '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">' ],
|
||||
[ 'HTML 4.01 Frameset', '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">' ],
|
||||
[ 'HTML 3.2', '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">' ],
|
||||
[ 'HTML 2.0', '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">' ],
|
||||
[ lang.other, 'other' ]
|
||||
],
|
||||
onChange: handleOther,
|
||||
setup: function() {
|
||||
if ( editor.docType ) {
|
||||
this.setValue( editor.docType );
|
||||
if ( !this.getValue() ) {
|
||||
this.setValue( 'other' );
|
||||
var other = this.getDialog().getContentElement( 'general', 'docTypeOther' );
|
||||
other && other.setValue( editor.docType );
|
||||
}
|
||||
}
|
||||
handleOther.call( this );
|
||||
},
|
||||
commit: function( doc, html, head, body, isPreview ) {
|
||||
if ( isPreview )
|
||||
return;
|
||||
var value = this.getValue(),
|
||||
other = this.getDialog().getContentElement( 'general', 'docTypeOther' );
|
||||
editor.docType = value == 'other' ? ( other ? other.getValue() : '' ) : value;
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
id: 'docTypeOther',
|
||||
label: lang.docTypeOther
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type: 'checkbox',
|
||||
id: 'xhtmlDec',
|
||||
label: lang.xhtmlDec,
|
||||
setup: function() {
|
||||
this.setValue( !!editor.xmlDeclaration );
|
||||
},
|
||||
commit: function( doc, html, head, body, isPreview ) {
|
||||
if ( isPreview )
|
||||
return;
|
||||
if ( this.getValue() ) {
|
||||
editor.xmlDeclaration = '<?xml version="1.0" encoding="' + ( this.getDialog().selectedCharset || 'utf-8' ) + '"?>';
|
||||
html.setAttribute( 'xmlns', 'http://www.w3.org/1999/xhtml' );
|
||||
} else {
|
||||
editor.xmlDeclaration = '';
|
||||
html.removeAttribute( 'xmlns' );
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'design',
|
||||
label: lang.design,
|
||||
elements: [
|
||||
{
|
||||
type: 'hbox',
|
||||
widths: [ '60%', '40%' ],
|
||||
children: [
|
||||
{
|
||||
type: 'vbox',
|
||||
children: [
|
||||
colorField( 'txtColor', 'txtColor', {
|
||||
setup: function( doc, html, head, body ) {
|
||||
this.setValue( body.getComputedStyle( 'color' ) );
|
||||
},
|
||||
commit: function( doc, html, head, body, isPreview ) {
|
||||
if ( this.isChanged() || isPreview ) {
|
||||
body.removeAttribute( 'text' );
|
||||
var val = this.getValue();
|
||||
if ( val )
|
||||
body.setStyle( 'color', val );
|
||||
else
|
||||
body.removeStyle( 'color' );
|
||||
}
|
||||
}
|
||||
}),
|
||||
colorField( 'bgColor', 'bgColor', {
|
||||
setup: function( doc, html, head, body ) {
|
||||
var val = body.getComputedStyle( 'background-color' ) || '';
|
||||
this.setValue( val == 'transparent' ? '' : val );
|
||||
},
|
||||
commit: function( doc, html, head, body, isPreview ) {
|
||||
if ( this.isChanged() || isPreview ) {
|
||||
body.removeAttribute( 'bgcolor' );
|
||||
var val = this.getValue();
|
||||
if ( val )
|
||||
body.setStyle( 'background-color', val );
|
||||
else
|
||||
resetStyle( body, 'background-color', 'transparent' );
|
||||
}
|
||||
}
|
||||
}),
|
||||
{
|
||||
type: 'hbox',
|
||||
widths: [ '60%', '40%' ],
|
||||
padding: 1,
|
||||
children: [
|
||||
{
|
||||
type: 'text',
|
||||
id: 'bgImage',
|
||||
label: lang.bgImage,
|
||||
setup: function( doc, html, head, body ) {
|
||||
var val = body.getComputedStyle( 'background-image' ) || '';
|
||||
if ( val == 'none' )
|
||||
val = '';
|
||||
else {
|
||||
val = val.replace( /url\(\s*(["']?)\s*([^\)]*)\s*\1\s*\)/i, function( match, quote, url ) {
|
||||
return url;
|
||||
});
|
||||
}
|
||||
this.setValue( val );
|
||||
},
|
||||
commit: function( doc, html, head, body ) {
|
||||
body.removeAttribute( 'background' );
|
||||
var val = this.getValue();
|
||||
if ( val )
|
||||
body.setStyle( 'background-image', 'url(' + val + ')' );
|
||||
else
|
||||
resetStyle( body, 'background-image', 'none' );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'button',
|
||||
id: 'bgImageChoose',
|
||||
label: langCommon.browseServer,
|
||||
style: 'display:inline-block;margin-top:10px;',
|
||||
hidden: true,
|
||||
filebrowser: 'design:bgImage'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type: 'checkbox',
|
||||
id: 'bgFixed',
|
||||
label: lang.bgFixed,
|
||||
setup: function( doc, html, head, body ) {
|
||||
this.setValue( body.getComputedStyle( 'background-attachment' ) == 'fixed' );
|
||||
},
|
||||
commit: function( doc, html, head, body ) {
|
||||
if ( this.getValue() )
|
||||
body.setStyle( 'background-attachment', 'fixed' );
|
||||
else
|
||||
resetStyle( body, 'background-attachment', 'scroll' );
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type: 'vbox',
|
||||
children: [
|
||||
{
|
||||
type: 'html',
|
||||
id: 'marginTitle',
|
||||
html: '<div style="text-align: center; margin: 0px auto; font-weight: bold">' + lang.margin + '</div>'
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
id: 'marginTop',
|
||||
label: lang.marginTop,
|
||||
style: 'width: 80px; text-align: center',
|
||||
align: 'center',
|
||||
inputStyle: 'text-align: center',
|
||||
setup: function( doc, html, head, body ) {
|
||||
this.setValue( body.getStyle( 'margin-top' ) || body.getAttribute( 'margintop' ) || '' );
|
||||
},
|
||||
commit: commitMargin( 'top' )
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
children: [
|
||||
{
|
||||
type: 'text',
|
||||
id: 'marginLeft',
|
||||
label: lang.marginLeft,
|
||||
style: 'width: 80px; text-align: center',
|
||||
align: 'center',
|
||||
inputStyle: 'text-align: center',
|
||||
setup: function( doc, html, head, body ) {
|
||||
this.setValue( body.getStyle( 'margin-left' ) || body.getAttribute( 'marginleft' ) || '' );
|
||||
},
|
||||
commit: commitMargin( 'left' )
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
id: 'marginRight',
|
||||
label: lang.marginRight,
|
||||
style: 'width: 80px; text-align: center',
|
||||
align: 'center',
|
||||
inputStyle: 'text-align: center',
|
||||
setup: function( doc, html, head, body ) {
|
||||
this.setValue( body.getStyle( 'margin-right' ) || body.getAttribute( 'marginright' ) || '' );
|
||||
},
|
||||
commit: commitMargin( 'right' )
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
id: 'marginBottom',
|
||||
label: lang.marginBottom,
|
||||
style: 'width: 80px; text-align: center',
|
||||
align: 'center',
|
||||
inputStyle: 'text-align: center',
|
||||
setup: function( doc, html, head, body ) {
|
||||
this.setValue( body.getStyle( 'margin-bottom' ) || body.getAttribute( 'marginbottom' ) || '' );
|
||||
},
|
||||
commit: commitMargin( 'bottom' )
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'meta',
|
||||
label: lang.meta,
|
||||
elements: [
|
||||
{
|
||||
type: 'textarea',
|
||||
id: 'metaKeywords',
|
||||
label: lang.metaKeywords,
|
||||
setup: setupMeta( 'keywords' ),
|
||||
commit: commitMeta( 'keywords' )
|
||||
},
|
||||
{
|
||||
type: 'textarea',
|
||||
id: 'metaDescription',
|
||||
label: lang.metaDescription,
|
||||
setup: setupMeta( 'description' ),
|
||||
commit: commitMeta( 'description' )
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
id: 'metaAuthor',
|
||||
label: lang.metaAuthor,
|
||||
setup: setupMeta( 'author' ),
|
||||
commit: commitMeta( 'author' )
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
id: 'metaCopyright',
|
||||
label: lang.metaCopyright,
|
||||
setup: setupMeta( 'copyright' ),
|
||||
commit: commitMeta( 'copyright' )
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'preview',
|
||||
label: langCommon.preview,
|
||||
elements: [
|
||||
{
|
||||
type: 'html',
|
||||
id: 'previewHtml',
|
||||
html: '<iframe src="' + previewSrc + '" style="width: 100%; height: 310px" hidefocus="true" frameborder="0" ' +
|
||||
'id="cke_docProps_preview_iframe"></iframe>',
|
||||
onLoad: function() {
|
||||
this.getDialog().on( 'selectPage', function( ev ) {
|
||||
if ( ev.data.page == 'preview' ) {
|
||||
var self = this;
|
||||
setTimeout( function() {
|
||||
var doc = CKEDITOR.document.getById( 'cke_docProps_preview_iframe' ).getFrameDocument(),
|
||||
html = doc.getElementsByTag( 'html' ).getItem( 0 ),
|
||||
head = doc.getHead(),
|
||||
body = doc.getBody();
|
||||
self.commitContent( doc, html, head, body, 1 );
|
||||
}, 50 );
|
||||
}
|
||||
});
|
||||
CKEDITOR.document.getById( 'cke_docProps_preview_iframe' ).getAscendant( 'table' ).setStyle( 'height', '100%' );
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
});
|
||||
BIN
lib/ckeditor4/plugins/docprops/icons/docprops-rtl.png
Executable file
BIN
lib/ckeditor4/plugins/docprops/icons/docprops-rtl.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 840 B |
BIN
lib/ckeditor4/plugins/docprops/icons/docprops.png
Executable file
BIN
lib/ckeditor4/plugins/docprops/icons/docprops.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 844 B |
BIN
lib/ckeditor4/plugins/docprops/icons/hidpi/docprops-rtl.png
Executable file
BIN
lib/ckeditor4/plugins/docprops/icons/hidpi/docprops-rtl.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
BIN
lib/ckeditor4/plugins/docprops/icons/hidpi/docprops.png
Executable file
BIN
lib/ckeditor4/plugins/docprops/icons/hidpi/docprops.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
42
lib/ckeditor4/plugins/docprops/lang/af.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/af.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'af', {
|
||||
bgColor: 'Agtergrond kleur',
|
||||
bgFixed: 'Vasgeklemde Agtergrond',
|
||||
bgImage: 'Agtergrond Beeld URL',
|
||||
charset: 'Karakterstel Kodeering',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Sentraal Europa',
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinees Traditioneel (Big5)',
|
||||
charsetGR: 'Grieks',
|
||||
charsetJP: 'Japanees',
|
||||
charsetKR: 'Koreans',
|
||||
charsetOther: 'Ander Karakterstel Kodeering',
|
||||
charsetTR: 'Turks',
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Kies',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Bladsy Opskrif',
|
||||
docType: 'Dokument Opskrif Soort',
|
||||
docTypeOther: 'Ander Dokument Opskrif Soort',
|
||||
label: 'Dokument Eienskappe',
|
||||
margin: 'Bladsy Rante',
|
||||
marginBottom: 'Onder',
|
||||
marginLeft: 'Links',
|
||||
marginRight: 'Regs',
|
||||
marginTop: 'Bo',
|
||||
meta: 'Meta Data',
|
||||
metaAuthor: 'Skrywer',
|
||||
metaCopyright: 'Kopiereg',
|
||||
metaDescription: 'Dokument Beskrywing',
|
||||
metaKeywords: 'Dokument Index Sleutelwoorde(comma verdeelt)',
|
||||
other: '<ander>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Dokument Eienskappe',
|
||||
txtColor: 'Tekskleur',
|
||||
xhtmlDec: 'Voeg XHTML verklaring by'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/ar.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/ar.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'ar', {
|
||||
bgColor: 'لون الخلفية',
|
||||
bgFixed: 'جعلها علامة مائية',
|
||||
bgImage: 'رابط الصورة الخلفية',
|
||||
charset: 'ترميز الحروف',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'أوروبا الوسطى',
|
||||
charsetCR: 'السيريلية',
|
||||
charsetCT: 'الصينية التقليدية (Big5)',
|
||||
charsetGR: 'اليونانية',
|
||||
charsetJP: 'اليابانية',
|
||||
charsetKR: 'الكورية',
|
||||
charsetOther: 'ترميز آخر',
|
||||
charsetTR: 'التركية',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'أوروبا الغربية',
|
||||
chooseColor: 'اختر',
|
||||
design: 'تصميم',
|
||||
docTitle: 'عنوان الصفحة',
|
||||
docType: 'ترويسة نوع الصفحة',
|
||||
docTypeOther: 'ترويسة نوع صفحة أخرى',
|
||||
label: 'خصائص الصفحة',
|
||||
margin: 'هوامش الصفحة',
|
||||
marginBottom: 'سفلي',
|
||||
marginLeft: 'أيسر',
|
||||
marginRight: 'أيمن',
|
||||
marginTop: 'علوي',
|
||||
meta: 'المعرّفات الرأسية',
|
||||
metaAuthor: 'الكاتب',
|
||||
metaCopyright: 'المالك',
|
||||
metaDescription: 'وصف الصفحة',
|
||||
metaKeywords: 'الكلمات الأساسية (مفصولة بفواصل)َ',
|
||||
other: '<أخرى>',
|
||||
previewHtml: '<p>هذه مجرد <strong>كتابة بسيطة</strong>من أجل التمثيل. <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'خصائص الصفحة',
|
||||
txtColor: 'لون النص',
|
||||
xhtmlDec: 'تضمين إعلانات لغة XHTMLَ'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/bg.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/bg.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'bg', {
|
||||
bgColor: 'Фон',
|
||||
bgFixed: 'Non-scrolling (Fixed) Background', // MISSING
|
||||
bgImage: 'Background Image URL', // MISSING
|
||||
charset: 'Кодова таблица',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Централна европейска',
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Китайски традиционен',
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'Друга кодова таблица',
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Изберете',
|
||||
design: 'Дизайн',
|
||||
docTitle: 'Заглавие на страницата',
|
||||
docType: 'Document Type Heading', // MISSING
|
||||
docTypeOther: 'Other Document Type Heading', // MISSING
|
||||
label: 'Настройки на документа',
|
||||
margin: 'Page Margins', // MISSING
|
||||
marginBottom: 'Долу',
|
||||
marginLeft: 'Ляво',
|
||||
marginRight: 'Дясно',
|
||||
marginTop: 'Горе',
|
||||
meta: 'Мета етикети',
|
||||
metaAuthor: 'Author', // MISSING
|
||||
metaCopyright: 'Copyright', // MISSING
|
||||
metaDescription: 'Document Description', // MISSING
|
||||
metaKeywords: 'Document Indexing Keywords (comma separated)', // MISSING
|
||||
other: 'Други...',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Настройки на документа',
|
||||
txtColor: 'Цвят на шрифт',
|
||||
xhtmlDec: 'Include XHTML Declarations' // MISSING
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/bn.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/bn.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'bn', {
|
||||
bgColor: 'ব্যাকগ্রাউন্ড রং',
|
||||
bgFixed: 'স্ক্রলহীন ব্যাকগ্রাউন্ড',
|
||||
bgImage: 'ব্যাকগ্রাউন্ড ছবির URL',
|
||||
charset: 'ক্যারেক্টার সেট এনকোডিং',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'অন্য ক্যারেক্টার সেট এনকোডিং',
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'পেজ শীর্ষক',
|
||||
docType: 'ডক্যুমেন্ট টাইপ হেডিং',
|
||||
docTypeOther: 'অন্য ডক্যুমেন্ট টাইপ হেডিং',
|
||||
label: 'ডক্যুমেন্ট প্রোপার্টি',
|
||||
margin: 'পেজ মার্জিন',
|
||||
marginBottom: 'নীচে',
|
||||
marginLeft: 'বামে',
|
||||
marginRight: 'ডানে',
|
||||
marginTop: 'উপর',
|
||||
meta: 'মেটাডেটা',
|
||||
metaAuthor: 'লেখক',
|
||||
metaCopyright: 'কপীরাইট',
|
||||
metaDescription: 'ডক্যূমেন্ট বর্ণনা',
|
||||
metaKeywords: 'ডক্যুমেন্ট ইন্ডেক্স কিওয়ার্ড (কমা দ্বারা বিচ্ছিন্ন)',
|
||||
other: '<other>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'ডক্যুমেন্ট প্রোপার্টি',
|
||||
txtColor: 'টেক্স্ট রং',
|
||||
xhtmlDec: 'XHTML ডেক্লারেশন যুক্ত কর'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/bs.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/bs.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'bs', {
|
||||
bgColor: 'Background Color',
|
||||
bgFixed: 'Non-scrolling (Fixed) Background', // MISSING
|
||||
bgImage: 'Background Image URL', // MISSING
|
||||
charset: 'Character Set Encoding', // MISSING
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'Other Character Set Encoding', // MISSING
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Page Title', // MISSING
|
||||
docType: 'Document Type Heading', // MISSING
|
||||
docTypeOther: 'Other Document Type Heading', // MISSING
|
||||
label: 'Document Properties', // MISSING
|
||||
margin: 'Page Margins', // MISSING
|
||||
marginBottom: 'Dno',
|
||||
marginLeft: 'Lijevo',
|
||||
marginRight: 'Desno',
|
||||
marginTop: 'Vrh',
|
||||
meta: 'Meta Tags', // MISSING
|
||||
metaAuthor: 'Author', // MISSING
|
||||
metaCopyright: 'Copyright', // MISSING
|
||||
metaDescription: 'Document Description', // MISSING
|
||||
metaKeywords: 'Document Indexing Keywords (comma separated)', // MISSING
|
||||
other: 'Other...', // MISSING
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Document Properties', // MISSING
|
||||
txtColor: 'Boja teksta',
|
||||
xhtmlDec: 'Include XHTML Declarations' // MISSING
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/ca.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/ca.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'ca', {
|
||||
bgColor: 'Color de fons',
|
||||
bgFixed: 'Fons sense desplaçament (Fixe)',
|
||||
bgImage: 'URL de la imatge de fons',
|
||||
charset: 'Codificació de conjunt de caràcters',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Europeu Central',
|
||||
charsetCR: 'Ciríl·lic',
|
||||
charsetCT: 'Xinès tradicional (Big5)',
|
||||
charsetGR: 'Grec',
|
||||
charsetJP: 'Japonès',
|
||||
charsetKR: 'Coreà',
|
||||
charsetOther: 'Una altra codificació de caràcters',
|
||||
charsetTR: 'Turc',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Europeu occidental',
|
||||
chooseColor: 'Triar',
|
||||
design: 'Disseny',
|
||||
docTitle: 'Títol de la pàgina',
|
||||
docType: 'Capçalera de tipus de document',
|
||||
docTypeOther: 'Un altra capçalera de tipus de document',
|
||||
label: 'Propietats del document',
|
||||
margin: 'Marges de pàgina',
|
||||
marginBottom: 'Peu',
|
||||
marginLeft: 'Esquerra',
|
||||
marginRight: 'Dreta',
|
||||
marginTop: 'Cap',
|
||||
meta: 'Metadades',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Copyright',
|
||||
metaDescription: 'Descripció del document',
|
||||
metaKeywords: 'Paraules clau per a indexació (separats per coma)',
|
||||
other: 'Altre...',
|
||||
previewHtml: '<p>Aquest és un <strong>text d\'exemple</strong>. Estàs utilitzant <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Propietats del document',
|
||||
txtColor: 'Color de Text',
|
||||
xhtmlDec: 'Incloure declaracions XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/cs.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/cs.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'cs', {
|
||||
bgColor: 'Barva pozadí',
|
||||
bgFixed: 'Nerolovatelné (Pevné) pozadí',
|
||||
bgImage: 'URL obrázku na pozadí',
|
||||
charset: 'Znaková sada',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Středoevropské jazyky',
|
||||
charsetCR: 'Cyrilice',
|
||||
charsetCT: 'Tradiční čínština (Big5)',
|
||||
charsetGR: 'Řečtina',
|
||||
charsetJP: 'Japonština',
|
||||
charsetKR: 'Korejština',
|
||||
charsetOther: 'Další znaková sada',
|
||||
charsetTR: 'Turečtina',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Západoevropské jazyky',
|
||||
chooseColor: 'Výběr',
|
||||
design: 'Vzhled',
|
||||
docTitle: 'Titulek stránky',
|
||||
docType: 'Typ dokumentu',
|
||||
docTypeOther: 'Jiný typ dokumetu',
|
||||
label: 'Vlastnosti dokumentu',
|
||||
margin: 'Okraje stránky',
|
||||
marginBottom: 'Dolní',
|
||||
marginLeft: 'Levý',
|
||||
marginRight: 'Pravý',
|
||||
marginTop: 'Horní',
|
||||
meta: 'Metadata',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Autorská práva',
|
||||
metaDescription: 'Popis dokumentu',
|
||||
metaKeywords: 'Klíčová slova (oddělená čárkou)',
|
||||
other: '<jiný>',
|
||||
previewHtml: '<p>Toto je <strong>ukázkový text</strong>. Používáte <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Vlastnosti dokumentu',
|
||||
txtColor: 'Barva textu',
|
||||
xhtmlDec: 'Zahrnout deklarace XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/cy.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/cy.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'cy', {
|
||||
bgColor: 'Lliw Cefndir',
|
||||
bgFixed: 'Cefndir Sefydlog (Ddim yn Sgrolio)',
|
||||
bgImage: 'URL Delwedd Cefndir',
|
||||
charset: 'Amgodio Set Nodau',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Ewropeaidd Canol',
|
||||
charsetCR: 'Syrilig',
|
||||
charsetCT: 'Tsieinëeg Traddodiadol (Big5)',
|
||||
charsetGR: 'Groeg',
|
||||
charsetJP: 'Siapanëeg',
|
||||
charsetKR: 'Corëeg',
|
||||
charsetOther: 'Amgodio Set Nodau Arall',
|
||||
charsetTR: 'Tyrceg',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Ewropeaidd Gorllewinol',
|
||||
chooseColor: 'Dewis',
|
||||
design: 'Cynllunio',
|
||||
docTitle: 'Teitl y Dudalen',
|
||||
docType: 'Pennawd Math y Ddogfen',
|
||||
docTypeOther: 'Pennawd Math y Ddogfen Arall',
|
||||
label: 'Priodweddau Dogfen',
|
||||
margin: 'Ffin y Dudalen',
|
||||
marginBottom: 'Gwaelod',
|
||||
marginLeft: 'Chwith',
|
||||
marginRight: 'Dde',
|
||||
marginTop: 'Brig',
|
||||
meta: 'Tagiau Meta',
|
||||
metaAuthor: 'Awdur',
|
||||
metaCopyright: 'Hawlfraint',
|
||||
metaDescription: 'Disgrifiad y Ddogfen',
|
||||
metaKeywords: 'Allweddeiriau Indecsio Dogfen (gwahanu gyda choma)',
|
||||
other: 'Arall...',
|
||||
previewHtml: '<p>Dyma ychydig o <strong>destun sampl</strong>. Rydych chi\'n defnyddio <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Priodweddau Dogfen',
|
||||
txtColor: 'Lliw y Testun',
|
||||
xhtmlDec: 'Cynnwys Datganiadau XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/da.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/da.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'da', {
|
||||
bgColor: 'Baggrundsfarve',
|
||||
bgFixed: 'Fastlåst baggrund',
|
||||
bgImage: 'Baggrundsbillede URL',
|
||||
charset: 'Tegnsætskode',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Centraleuropæisk',
|
||||
charsetCR: 'Kyrillisk',
|
||||
charsetCT: 'Traditionel kinesisk (Big5)',
|
||||
charsetGR: 'Græsk',
|
||||
charsetJP: 'Japansk',
|
||||
charsetKR: 'Koreansk',
|
||||
charsetOther: 'Anden tegnsætskode',
|
||||
charsetTR: 'Tyrkisk',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Vesteuropæisk',
|
||||
chooseColor: 'Vælg',
|
||||
design: 'Design',
|
||||
docTitle: 'Sidetitel',
|
||||
docType: 'Dokumenttype kategori',
|
||||
docTypeOther: 'Anden dokumenttype kategori',
|
||||
label: 'Egenskaber for dokument',
|
||||
margin: 'Sidemargen',
|
||||
marginBottom: 'Nederst',
|
||||
marginLeft: 'Venstre',
|
||||
marginRight: 'Højre',
|
||||
marginTop: 'Øverst',
|
||||
meta: 'Metatags',
|
||||
metaAuthor: 'Forfatter',
|
||||
metaCopyright: 'Copyright',
|
||||
metaDescription: 'Dokumentbeskrivelse',
|
||||
metaKeywords: 'Dokument index nøgleord (kommasepareret)',
|
||||
other: '<anden>',
|
||||
previewHtml: '<p>Dette er et <strong>eksempel på noget tekst</strong>. Du benytter <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Egenskaber for dokument',
|
||||
txtColor: 'Tekstfarve',
|
||||
xhtmlDec: 'Inkludere XHTML deklartion'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/de.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/de.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'de', {
|
||||
bgColor: 'Hintergrundfarbe',
|
||||
bgFixed: 'feststehender Hintergrund',
|
||||
bgImage: 'Hintergrundbild URL',
|
||||
charset: 'Zeichenkodierung',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Zentraleuropäisch',
|
||||
charsetCR: 'Kyrillisch',
|
||||
charsetCT: 'traditionell Chinesisch (Big5)',
|
||||
charsetGR: 'Griechisch',
|
||||
charsetJP: 'Japanisch',
|
||||
charsetKR: 'Koreanisch',
|
||||
charsetOther: 'Andere Zeichenkodierung',
|
||||
charsetTR: 'Türkisch',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Westeuropäisch',
|
||||
chooseColor: 'Wählen',
|
||||
design: 'Design',
|
||||
docTitle: 'Seitentitel',
|
||||
docType: 'Dokumententyp',
|
||||
docTypeOther: 'Anderer Dokumententyp',
|
||||
label: 'Dokument-Eigenschaften',
|
||||
margin: 'Seitenränder',
|
||||
marginBottom: 'Unten',
|
||||
marginLeft: 'Links',
|
||||
marginRight: 'Rechts',
|
||||
marginTop: 'Oben',
|
||||
meta: 'Metadaten',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Copyright',
|
||||
metaDescription: 'Dokument-Beschreibung',
|
||||
metaKeywords: 'Schlüsselwörter (durch Komma getrennt)',
|
||||
other: '<andere>',
|
||||
previewHtml: '<p>Das ist ein <strong>Beispieltext</strong>. Du schreibst in <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Dokument-Eigenschaften',
|
||||
txtColor: 'Textfarbe',
|
||||
xhtmlDec: 'Beziehe XHTML Deklarationen ein'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/el.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/el.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'el', {
|
||||
bgColor: 'Χρώμα φόντου',
|
||||
bgFixed: 'Φόντο χωρίς κύλιση',
|
||||
bgImage: 'Διεύθυνση εικόνας φόντου',
|
||||
charset: 'Κωδικοποίηση Χαρακτήρων',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Κεντρικής Ευρώπης',
|
||||
charsetCR: 'Κυριλλική',
|
||||
charsetCT: 'Παραδοσιακά κινέζικα (Big5)',
|
||||
charsetGR: 'Ελληνική',
|
||||
charsetJP: 'Ιαπωνική',
|
||||
charsetKR: 'Κορεάτικη',
|
||||
charsetOther: 'Άλλη Κωδικοποίηση Χαρακτήρων',
|
||||
charsetTR: 'Τουρκική',
|
||||
charsetUN: 'Διεθνής (UTF-8)',
|
||||
charsetWE: 'Δυτικής Ευρώπης',
|
||||
chooseColor: 'Επιλέξτε',
|
||||
design: 'Σχεδιασμός',
|
||||
docTitle: 'Τίτλος Σελίδας',
|
||||
docType: 'Επικεφαλίδα τύπου εγγράφου',
|
||||
docTypeOther: 'Άλλη επικεφαλίδα τύπου εγγράφου',
|
||||
label: 'Ιδιότητες Εγγράφου',
|
||||
margin: 'Περιθώρια σελίδας',
|
||||
marginBottom: 'Κάτω',
|
||||
marginLeft: 'Αριστερά',
|
||||
marginRight: 'Δεξιά',
|
||||
marginTop: 'Κορυφή',
|
||||
meta: 'Δεδομένα Meta',
|
||||
metaAuthor: 'Συγγραφέας',
|
||||
metaCopyright: 'Πνευματικά Δικαιώματα',
|
||||
metaDescription: 'Περιγραφή εγγράφου',
|
||||
metaKeywords: 'Λέξεις κλειδιά δείκτες εγγράφου (διαχωρισμός με κόμμα)',
|
||||
other: 'Άλλο...',
|
||||
previewHtml: '<p>Αυτό είναι ένα <strong>κείμενο παραδείγματος</strong>. Χρησιμοποιείτε τον <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Ιδιότητες Εγγράφου',
|
||||
txtColor: 'Χρώμα Γραμμάτων',
|
||||
xhtmlDec: 'Να συμπεριληφθούν οι δηλώσεις XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/en-au.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/en-au.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'en-au', {
|
||||
bgColor: 'Background Color', // MISSING
|
||||
bgFixed: 'Non-scrolling (Fixed) Background', // MISSING
|
||||
bgImage: 'Background Image URL', // MISSING
|
||||
charset: 'Character Set Encoding', // MISSING
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'Other Character Set Encoding', // MISSING
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose', // MISSING
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Page Title', // MISSING
|
||||
docType: 'Document Type Heading', // MISSING
|
||||
docTypeOther: 'Other Document Type Heading', // MISSING
|
||||
label: 'Document Properties', // MISSING
|
||||
margin: 'Page Margins', // MISSING
|
||||
marginBottom: 'Bottom', // MISSING
|
||||
marginLeft: 'Left', // MISSING
|
||||
marginRight: 'Right', // MISSING
|
||||
marginTop: 'Top', // MISSING
|
||||
meta: 'Meta Tags', // MISSING
|
||||
metaAuthor: 'Author', // MISSING
|
||||
metaCopyright: 'Copyright', // MISSING
|
||||
metaDescription: 'Document Description', // MISSING
|
||||
metaKeywords: 'Document Indexing Keywords (comma separated)', // MISSING
|
||||
other: 'Other...', // MISSING
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Document Properties', // MISSING
|
||||
txtColor: 'Text Color', // MISSING
|
||||
xhtmlDec: 'Include XHTML Declarations' // MISSING
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/en-ca.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/en-ca.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'en-ca', {
|
||||
bgColor: 'Background Color', // MISSING
|
||||
bgFixed: 'Non-scrolling (Fixed) Background', // MISSING
|
||||
bgImage: 'Background Image URL', // MISSING
|
||||
charset: 'Character Set Encoding', // MISSING
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'Other Character Set Encoding', // MISSING
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose', // MISSING
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Page Title', // MISSING
|
||||
docType: 'Document Type Heading', // MISSING
|
||||
docTypeOther: 'Other Document Type Heading', // MISSING
|
||||
label: 'Document Properties', // MISSING
|
||||
margin: 'Page Margins', // MISSING
|
||||
marginBottom: 'Bottom', // MISSING
|
||||
marginLeft: 'Left', // MISSING
|
||||
marginRight: 'Right', // MISSING
|
||||
marginTop: 'Top', // MISSING
|
||||
meta: 'Meta Tags', // MISSING
|
||||
metaAuthor: 'Author', // MISSING
|
||||
metaCopyright: 'Copyright', // MISSING
|
||||
metaDescription: 'Document Description', // MISSING
|
||||
metaKeywords: 'Document Indexing Keywords (comma separated)', // MISSING
|
||||
other: 'Other...', // MISSING
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Document Properties', // MISSING
|
||||
txtColor: 'Text Color', // MISSING
|
||||
xhtmlDec: 'Include XHTML Declarations' // MISSING
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/en-gb.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/en-gb.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'en-gb', {
|
||||
bgColor: 'Background Color', // MISSING
|
||||
bgFixed: 'Non-scrolling (Fixed) Background', // MISSING
|
||||
bgImage: 'Background Image URL', // MISSING
|
||||
charset: 'Character Set Encoding', // MISSING
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'Other Character Set Encoding', // MISSING
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose', // MISSING
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Page Title', // MISSING
|
||||
docType: 'Document Type Heading', // MISSING
|
||||
docTypeOther: 'Other Document Type Heading', // MISSING
|
||||
label: 'Document Properties', // MISSING
|
||||
margin: 'Page Margins', // MISSING
|
||||
marginBottom: 'Bottom', // MISSING
|
||||
marginLeft: 'Left', // MISSING
|
||||
marginRight: 'Right', // MISSING
|
||||
marginTop: 'Top', // MISSING
|
||||
meta: 'Meta Tags', // MISSING
|
||||
metaAuthor: 'Author', // MISSING
|
||||
metaCopyright: 'Copyright', // MISSING
|
||||
metaDescription: 'Document Description', // MISSING
|
||||
metaKeywords: 'Document Indexing Keywords (comma separated)', // MISSING
|
||||
other: 'Other...', // MISSING
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Document Properties', // MISSING
|
||||
txtColor: 'Text Color', // MISSING
|
||||
xhtmlDec: 'Include XHTML Declarations' // MISSING
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/en.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/en.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'en', {
|
||||
bgColor: 'Background Color',
|
||||
bgFixed: 'Non-scrolling (Fixed) Background',
|
||||
bgImage: 'Background Image URL',
|
||||
charset: 'Character Set Encoding',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Central European',
|
||||
charsetCR: 'Cyrillic',
|
||||
charsetCT: 'Chinese Traditional (Big5)',
|
||||
charsetGR: 'Greek',
|
||||
charsetJP: 'Japanese',
|
||||
charsetKR: 'Korean',
|
||||
charsetOther: 'Other Character Set Encoding',
|
||||
charsetTR: 'Turkish',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Western European',
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design',
|
||||
docTitle: 'Page Title',
|
||||
docType: 'Document Type Heading',
|
||||
docTypeOther: 'Other Document Type Heading',
|
||||
label: 'Document Properties',
|
||||
margin: 'Page Margins',
|
||||
marginBottom: 'Bottom',
|
||||
marginLeft: 'Left',
|
||||
marginRight: 'Right',
|
||||
marginTop: 'Top',
|
||||
meta: 'Meta Tags',
|
||||
metaAuthor: 'Author',
|
||||
metaCopyright: 'Copyright',
|
||||
metaDescription: 'Document Description',
|
||||
metaKeywords: 'Document Indexing Keywords (comma separated)',
|
||||
other: 'Other...',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Document Properties',
|
||||
txtColor: 'Text Color',
|
||||
xhtmlDec: 'Include XHTML Declarations'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/eo.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/eo.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'eo', {
|
||||
bgColor: 'Fona Koloro',
|
||||
bgFixed: 'Neruluma Fono',
|
||||
bgImage: 'URL de Fona Bildo',
|
||||
charset: 'Signara Kodo',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Centra Eŭropa',
|
||||
charsetCR: 'Cirila',
|
||||
charsetCT: 'Tradicia Ĉina (Big5)',
|
||||
charsetGR: 'Greka',
|
||||
charsetJP: 'Japana',
|
||||
charsetKR: 'Korea',
|
||||
charsetOther: 'Alia Signara Kodo',
|
||||
charsetTR: 'Turka',
|
||||
charsetUN: 'Unikodo (UTF-8)',
|
||||
charsetWE: 'Okcidenta Eŭropa',
|
||||
chooseColor: 'Elektu',
|
||||
design: 'Dizajno',
|
||||
docTitle: 'Paĝotitolo',
|
||||
docType: 'Dokumenta Tipo',
|
||||
docTypeOther: 'Alia Dokumenta Tipo',
|
||||
label: 'Dokumentaj Atributoj',
|
||||
margin: 'Paĝaj Marĝenoj',
|
||||
marginBottom: 'Malsupra',
|
||||
marginLeft: 'Maldekstra',
|
||||
marginRight: 'Dekstra',
|
||||
marginTop: 'Supra',
|
||||
meta: 'Metadatenoj',
|
||||
metaAuthor: 'Verkinto',
|
||||
metaCopyright: 'Kopirajto',
|
||||
metaDescription: 'Dokumenta Priskribo',
|
||||
metaKeywords: 'Ŝlosilvortoj de la Dokumento (apartigitaj de komoj)',
|
||||
other: '<alia>',
|
||||
previewHtml: '<p>Tio estas <strong>sampla teksto</strong>. Vi estas uzanta <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Dokumentaj Atributoj',
|
||||
txtColor: 'Teksta Koloro',
|
||||
xhtmlDec: 'Inkluzivi XHTML Deklarojn'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/es.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/es.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'es', {
|
||||
bgColor: 'Color de fondo',
|
||||
bgFixed: 'Fondo fijo (no se desplaza)',
|
||||
bgImage: 'Imagen de fondo',
|
||||
charset: 'Codificación de caracteres',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Centro Europeo',
|
||||
charsetCR: 'Ruso',
|
||||
charsetCT: 'Chino Tradicional (Big5)',
|
||||
charsetGR: 'Griego',
|
||||
charsetJP: 'Japonés',
|
||||
charsetKR: 'Koreano',
|
||||
charsetOther: 'Otra codificación de caracteres',
|
||||
charsetTR: 'Turco',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Europeo occidental',
|
||||
chooseColor: 'Elegir',
|
||||
design: 'Diseño',
|
||||
docTitle: 'Título de página',
|
||||
docType: 'Tipo de documento',
|
||||
docTypeOther: 'Otro tipo de documento',
|
||||
label: 'Propiedades del documento',
|
||||
margin: 'Márgenes',
|
||||
marginBottom: 'Inferior',
|
||||
marginLeft: 'Izquierdo',
|
||||
marginRight: 'Derecho',
|
||||
marginTop: 'Superior',
|
||||
meta: 'Meta Tags',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Copyright',
|
||||
metaDescription: 'Descripción del documento',
|
||||
metaKeywords: 'Palabras claves del documento separadas por coma (meta keywords)',
|
||||
other: 'Otro...',
|
||||
previewHtml: '<p>Este es un <strong>texto de ejemplo</strong>. Usted está usando <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Propiedades del documento',
|
||||
txtColor: 'Color del texto',
|
||||
xhtmlDec: 'Incluir declaración XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/et.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/et.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'et', {
|
||||
bgColor: 'Taustavärv',
|
||||
bgFixed: 'Mittekeritav tagataust',
|
||||
bgImage: 'Taustapildi URL',
|
||||
charset: 'Märgistiku kodeering',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Kesk-Euroopa',
|
||||
charsetCR: 'Kirillisa',
|
||||
charsetCT: 'Hiina traditsiooniline (Big5)',
|
||||
charsetGR: 'Kreeka',
|
||||
charsetJP: 'Jaapani',
|
||||
charsetKR: 'Korea',
|
||||
charsetOther: 'Ülejäänud märgistike kodeeringud',
|
||||
charsetTR: 'Türgi',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Lääne-Euroopa',
|
||||
chooseColor: 'Vali',
|
||||
design: 'Disain',
|
||||
docTitle: 'Lehekülje tiitel',
|
||||
docType: 'Dokumendi tüüppäis',
|
||||
docTypeOther: 'Teised dokumendi tüüppäised',
|
||||
label: 'Dokumendi omadused',
|
||||
margin: 'Lehekülje äärised',
|
||||
marginBottom: 'Alaserv',
|
||||
marginLeft: 'Vasakserv',
|
||||
marginRight: 'Paremserv',
|
||||
marginTop: 'Ülaserv',
|
||||
meta: 'Meta andmed',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Autoriõigus',
|
||||
metaDescription: 'Dokumendi kirjeldus',
|
||||
metaKeywords: 'Dokumendi võtmesõnad (eraldatud komadega)',
|
||||
other: '<muu>',
|
||||
previewHtml: '<p>See on <strong>näidistekst</strong>. Sa kasutad <a href="javascript:void(0)">CKEditori</a>.</p>',
|
||||
title: 'Dokumendi omadused',
|
||||
txtColor: 'Teksti värv',
|
||||
xhtmlDec: 'Arva kaasa XHTML deklaratsioonid'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/eu.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/eu.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'eu', {
|
||||
bgColor: 'Atzeko Kolorea',
|
||||
bgFixed: 'Korritze gabeko Atzealdea',
|
||||
bgImage: 'Atzeko Irudiaren URL-a',
|
||||
charset: 'Karaktere Multzoaren Kodeketa',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Erdialdeko Europakoa',
|
||||
charsetCR: 'Zirilikoa',
|
||||
charsetCT: 'Txinatar Tradizionala (Big5)',
|
||||
charsetGR: 'Grekoa',
|
||||
charsetJP: 'Japoniarra',
|
||||
charsetKR: 'Korearra',
|
||||
charsetOther: 'Beste Karaktere Multzoko Kodeketa',
|
||||
charsetTR: 'Turkiarra',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Mendebaldeko Europakoa',
|
||||
chooseColor: 'Choose',
|
||||
design: 'Diseinua',
|
||||
docTitle: 'Orriaren Izenburua',
|
||||
docType: 'Document Type Goiburua',
|
||||
docTypeOther: 'Beste Document Type Goiburua',
|
||||
label: 'Dokumentuaren Ezarpenak',
|
||||
margin: 'Orrialdearen marjinak',
|
||||
marginBottom: 'Behean',
|
||||
marginLeft: 'Ezkerrean',
|
||||
marginRight: 'Eskuman',
|
||||
marginTop: 'Goian',
|
||||
meta: 'Meta Informazioa',
|
||||
metaAuthor: 'Egilea',
|
||||
metaCopyright: 'Copyright',
|
||||
metaDescription: 'Dokumentuaren Deskribapena',
|
||||
metaKeywords: 'Dokumentuaren Gako-hitzak (komarekin bananduta)',
|
||||
other: '<other>',
|
||||
previewHtml: '<p>Hau <strong>adibideko testua</strong> da. <a href="javascript:void(0)">CKEditor</a> erabiltzen ari zara.</p>',
|
||||
title: 'Dokumentuaren Ezarpenak',
|
||||
txtColor: 'Testu Kolorea',
|
||||
xhtmlDec: 'XHTML Ezarpenak'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/fa.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/fa.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'fa', {
|
||||
bgColor: 'رنگ پسزمینه',
|
||||
bgFixed: 'پسزمینهٴ ثابت (بدون حرکت)',
|
||||
bgImage: 'URL تصویر پسزمینه',
|
||||
charset: 'رمزگذاری نویسهگان',
|
||||
charsetASCII: 'اسکی',
|
||||
charsetCE: 'اروپای مرکزی',
|
||||
charsetCR: 'سیریلیک',
|
||||
charsetCT: 'چینی رسمی (Big5)',
|
||||
charsetGR: 'یونانی',
|
||||
charsetJP: 'ژاپنی',
|
||||
charsetKR: 'کرهای',
|
||||
charsetOther: 'رمزگذاری نویسهگان دیگر',
|
||||
charsetTR: 'ترکی',
|
||||
charsetUN: 'یونیکد (UTF-8)',
|
||||
charsetWE: 'اروپای غربی',
|
||||
chooseColor: 'انتخاب',
|
||||
design: 'طراحی',
|
||||
docTitle: 'عنوان صفحه',
|
||||
docType: 'عنوان نوع سند',
|
||||
docTypeOther: 'عنوان نوع سند دیگر',
|
||||
label: 'ویژگیهای سند',
|
||||
margin: 'حاشیههای صفحه',
|
||||
marginBottom: 'پایین',
|
||||
marginLeft: 'چپ',
|
||||
marginRight: 'راست',
|
||||
marginTop: 'بالا',
|
||||
meta: 'فراداده',
|
||||
metaAuthor: 'نویسنده',
|
||||
metaCopyright: 'حق انتشار',
|
||||
metaDescription: 'توصیف سند',
|
||||
metaKeywords: 'کلیدواژگان نمایهگذاری سند (با کاما جدا شوند)',
|
||||
other: '<سایر>',
|
||||
previewHtml: '<p>این یک <strong>متن نمونه</strong> است. شما در حال استفاده از <a href="javascript:void(0)">CKEditor</a> هستید.</p>',
|
||||
title: 'ویژگیهای سند',
|
||||
txtColor: 'رنگ متن',
|
||||
xhtmlDec: 'شامل تعاریف XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/fi.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/fi.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'fi', {
|
||||
bgColor: 'Taustaväri',
|
||||
bgFixed: 'Paikallaanpysyvä tausta',
|
||||
bgImage: 'Taustakuva',
|
||||
charset: 'Merkistökoodaus',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Keskieurooppalainen',
|
||||
charsetCR: 'Kyrillinen',
|
||||
charsetCT: 'Kiina, perinteinen (Big5)',
|
||||
charsetGR: 'Kreikka',
|
||||
charsetJP: 'Japani',
|
||||
charsetKR: 'Korealainen',
|
||||
charsetOther: 'Muu merkistökoodaus',
|
||||
charsetTR: 'Turkkilainen',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Länsieurooppalainen',
|
||||
chooseColor: 'Valitse',
|
||||
design: 'Sommittelu',
|
||||
docTitle: 'Sivun nimi',
|
||||
docType: 'Dokumentin tyyppi',
|
||||
docTypeOther: 'Muu dokumentin tyyppi',
|
||||
label: 'Dokumentin ominaisuudet',
|
||||
margin: 'Sivun marginaalit',
|
||||
marginBottom: 'Ala',
|
||||
marginLeft: 'Vasen',
|
||||
marginRight: 'Oikea',
|
||||
marginTop: 'Ylä',
|
||||
meta: 'Metatieto',
|
||||
metaAuthor: 'Tekijä',
|
||||
metaCopyright: 'Tekijänoikeudet',
|
||||
metaDescription: 'Kuvaus',
|
||||
metaKeywords: 'Hakusanat (pilkulla erotettuna)',
|
||||
other: '<muu>',
|
||||
previewHtml: '<p>Tämä on <strong>esimerkkitekstiä</strong>. Käytät juuri <a href="javascript:void(0)">CKEditoria</a>.</p>',
|
||||
title: 'Dokumentin ominaisuudet',
|
||||
txtColor: 'Tekstiväri',
|
||||
xhtmlDec: 'Lisää XHTML julistukset'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/fo.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/fo.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'fo', {
|
||||
bgColor: 'Bakgrundslitur',
|
||||
bgFixed: 'Læst bakgrund (rullar ikki)',
|
||||
bgImage: 'Leið til bakgrundsmynd (URL)',
|
||||
charset: 'Teknsett koda',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Miðeuropa',
|
||||
charsetCR: 'Cyrilliskt',
|
||||
charsetCT: 'Kinesiskt traditionelt (Big5)',
|
||||
charsetGR: 'Grikst',
|
||||
charsetJP: 'Japanskt',
|
||||
charsetKR: 'Koreanskt',
|
||||
charsetOther: 'Onnur teknsett koda',
|
||||
charsetTR: 'Turkiskt',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Vestureuropa',
|
||||
chooseColor: 'Vel',
|
||||
design: 'Design',
|
||||
docTitle: 'Síðuheiti',
|
||||
docType: 'Dokumentslag yvirskrift',
|
||||
docTypeOther: 'Annað dokumentslag yvirskrift',
|
||||
label: 'Eginleikar fyri dokument',
|
||||
margin: 'Síðubreddar',
|
||||
marginBottom: 'Niðast',
|
||||
marginLeft: 'Vinstra',
|
||||
marginRight: 'Høgra',
|
||||
marginTop: 'Ovast',
|
||||
meta: 'META-upplýsingar',
|
||||
metaAuthor: 'Høvundur',
|
||||
metaCopyright: 'Upphavsrættindi',
|
||||
metaDescription: 'Dokumentlýsing',
|
||||
metaKeywords: 'Dokument index lyklaorð (sundurbýtt við komma)',
|
||||
other: '<annað>',
|
||||
previewHtml: '<p>Hetta er ein <strong>royndartekstur</strong>. Tygum brúka <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Eginleikar fyri dokument',
|
||||
txtColor: 'Tekstlitur',
|
||||
xhtmlDec: 'Viðfest XHTML deklaratiónir'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/fr-ca.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/fr-ca.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'fr-ca', {
|
||||
bgColor: 'Couleur de fond',
|
||||
bgFixed: 'Image fixe sans défilement',
|
||||
bgImage: 'Image de fond',
|
||||
charset: 'Encodage',
|
||||
charsetASCII: 'ACSII',
|
||||
charsetCE: 'Europe Centrale',
|
||||
charsetCR: 'Cyrillique',
|
||||
charsetCT: 'Chinois Traditionnel (Big5)',
|
||||
charsetGR: 'Grecque',
|
||||
charsetJP: 'Japonais',
|
||||
charsetKR: 'Coréen',
|
||||
charsetOther: 'Autre encodage',
|
||||
charsetTR: 'Turque',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Occidental',
|
||||
chooseColor: 'Sélectionner',
|
||||
design: 'Design',
|
||||
docTitle: 'Titre de la page',
|
||||
docType: 'Type de document',
|
||||
docTypeOther: 'Autre type de document',
|
||||
label: 'Propriétés du document',
|
||||
margin: 'Marges',
|
||||
marginBottom: 'Bas',
|
||||
marginLeft: 'Gauche',
|
||||
marginRight: 'Droite',
|
||||
marginTop: 'Haut',
|
||||
meta: 'Méta-données',
|
||||
metaAuthor: 'Auteur',
|
||||
metaCopyright: 'Copyright',
|
||||
metaDescription: 'Description',
|
||||
metaKeywords: 'Mots-clés (séparés par des virgules)',
|
||||
other: 'Autre...',
|
||||
previewHtml: '<p>Voici un <strong>example de texte</strong>. Vous utilisez <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Propriétés du document',
|
||||
txtColor: 'Couleur de caractère',
|
||||
xhtmlDec: 'Inclure les déclarations XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/fr.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/fr.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'fr', {
|
||||
bgColor: 'Couleur de fond',
|
||||
bgFixed: 'Image fixe sans défilement',
|
||||
bgImage: 'Image de fond',
|
||||
charset: 'Encodage de caractère',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Europe Centrale',
|
||||
charsetCR: 'Cyrillique',
|
||||
charsetCT: 'Chinois Traditionnel (Big5)',
|
||||
charsetGR: 'Grec',
|
||||
charsetJP: 'Japonais',
|
||||
charsetKR: 'Coréen',
|
||||
charsetOther: 'Autre encodage de caractère',
|
||||
charsetTR: 'Turc',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Occidental',
|
||||
chooseColor: 'Choisissez',
|
||||
design: 'Design',
|
||||
docTitle: 'Titre de la page',
|
||||
docType: 'Type de document',
|
||||
docTypeOther: 'Autre type de document',
|
||||
label: 'Propriétés du document',
|
||||
margin: 'Marges',
|
||||
marginBottom: 'Bas',
|
||||
marginLeft: 'Gauche',
|
||||
marginRight: 'Droite',
|
||||
marginTop: 'Haut',
|
||||
meta: 'Métadonnées',
|
||||
metaAuthor: 'Auteur',
|
||||
metaCopyright: 'Copyright',
|
||||
metaDescription: 'Description',
|
||||
metaKeywords: 'Mots-clés (séparés par des virgules)',
|
||||
other: '<autre>',
|
||||
previewHtml: '<p>Ceci est un <strong>texte d\'exemple</strong>. Vous utilisez <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Propriétés du document',
|
||||
txtColor: 'Couleur de texte',
|
||||
xhtmlDec: 'Inclure les déclarations XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/gl.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/gl.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'gl', {
|
||||
bgColor: 'Cor do fondo',
|
||||
bgFixed: 'Fondo fixo (non se despraza)',
|
||||
bgImage: 'URL da imaxe do fondo',
|
||||
charset: 'Codificación de caracteres',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Centro europeo',
|
||||
charsetCR: 'Cirílico',
|
||||
charsetCT: 'Chinés tradicional (Big5)',
|
||||
charsetGR: 'Grego',
|
||||
charsetJP: 'Xaponés',
|
||||
charsetKR: 'Coreano',
|
||||
charsetOther: 'Outra codificación de caracteres',
|
||||
charsetTR: 'Turco',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Europeo occidental',
|
||||
chooseColor: 'Escoller',
|
||||
design: 'Deseño',
|
||||
docTitle: 'Título da páxina',
|
||||
docType: 'Cabeceira do tipo de documento',
|
||||
docTypeOther: 'Outra cabeceira do tipo de documento',
|
||||
label: 'Propiedades do documento',
|
||||
margin: 'Marxes da páxina',
|
||||
marginBottom: 'Abaixo',
|
||||
marginLeft: 'Esquerda',
|
||||
marginRight: 'Dereita',
|
||||
marginTop: 'Arriba',
|
||||
meta: 'Meta etiquetas',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Dereito de autoría',
|
||||
metaDescription: 'Descrición do documento',
|
||||
metaKeywords: 'Palabras clave de indexación do documento (separadas por comas)',
|
||||
other: 'Outro...',
|
||||
previewHtml: '<p>Este é un <strong>texto de exemplo</strong>. Vostede esta a empregar o <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Propiedades do documento',
|
||||
txtColor: 'Cor do texto',
|
||||
xhtmlDec: 'Incluír as declaracións XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/gu.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/gu.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'gu', {
|
||||
bgColor: 'બૅકગ્રાઉન્ડ રંગ',
|
||||
bgFixed: 'સ્ક્રોલ ન થાય તેવું બૅકગ્રાઉન્ડ',
|
||||
bgImage: 'બૅકગ્રાઉન્ડ ચિત્ર URL',
|
||||
charset: 'કેરેક્ટર સેટ એન્કોડિંગ',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'મધ્ય યુરોપિઅન (Central European)',
|
||||
charsetCR: 'સિરીલિક (Cyrillic)',
|
||||
charsetCT: 'ચાઇનીઝ (Chinese Traditional Big5)',
|
||||
charsetGR: 'ગ્રીક (Greek)',
|
||||
charsetJP: 'જાપાનિઝ (Japanese)',
|
||||
charsetKR: 'કોરીયન (Korean)',
|
||||
charsetOther: 'અન્ય કેરેક્ટર સેટ એન્કોડિંગ',
|
||||
charsetTR: 'ટર્કિ (Turkish)',
|
||||
charsetUN: 'યૂનિકોડ (UTF-8)',
|
||||
charsetWE: 'પશ્ચિમ યુરોપિઅન (Western European)',
|
||||
chooseColor: 'વિકલ્પ',
|
||||
design: 'ડીસા',
|
||||
docTitle: 'પેજ મથાળું/ટાઇટલ',
|
||||
docType: 'ડૉક્યુમન્ટ પ્રકાર શીર્ષક',
|
||||
docTypeOther: 'અન્ય ડૉક્યુમન્ટ પ્રકાર શીર્ષક',
|
||||
label: 'ડૉક્યુમન્ટ ગુણ/પ્રૉપર્ટિઝ',
|
||||
margin: 'પેજ માર્જિન',
|
||||
marginBottom: 'નીચે',
|
||||
marginLeft: 'ડાબી',
|
||||
marginRight: 'જમણી',
|
||||
marginTop: 'ઉપર',
|
||||
meta: 'મેટાડૅટા',
|
||||
metaAuthor: 'લેખક',
|
||||
metaCopyright: 'કૉપિરાઇટ',
|
||||
metaDescription: 'ડૉક્યુમન્ટ વર્ણન',
|
||||
metaKeywords: 'ડૉક્યુમન્ટ ઇન્ડેક્સ સંકેતશબ્દ (અલ્પવિરામ (,) થી અલગ કરો)',
|
||||
other: '<other>',
|
||||
previewHtml: '<p>આ એક <strong>સેમ્પલ ટેક્ષ્ત્</strong> છે. તમે <a href="javascript:void(0)">CKEditor</a> વાપરો છો.</p>',
|
||||
title: 'ડૉક્યુમન્ટ ગુણ/પ્રૉપર્ટિઝ',
|
||||
txtColor: 'શબ્દનો રંગ',
|
||||
xhtmlDec: 'XHTML સૂચના સમાવિષ્ટ કરવી'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/he.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/he.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'he', {
|
||||
bgColor: 'צבע רקע',
|
||||
bgFixed: 'רקע לא נגלל (צמוד)',
|
||||
bgImage: 'כתובת של תמונת רקע',
|
||||
charset: 'קידוד תווים',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'מרכז אירופאי',
|
||||
charsetCR: 'קירילי',
|
||||
charsetCT: 'סיני מסורתי (Big5)',
|
||||
charsetGR: 'יווני',
|
||||
charsetJP: 'יפני',
|
||||
charsetKR: 'קוריאני',
|
||||
charsetOther: 'קידוד תווים אחר',
|
||||
charsetTR: 'טורקי',
|
||||
charsetUN: 'יוניקוד (UTF-8)',
|
||||
charsetWE: 'מערב אירופאי',
|
||||
chooseColor: 'בחירה',
|
||||
design: 'עיצוב',
|
||||
docTitle: 'כותרת עמוד',
|
||||
docType: 'כותר סוג מסמך',
|
||||
docTypeOther: 'כותר סוג מסמך אחר',
|
||||
label: 'מאפייני מסמך',
|
||||
margin: 'מרווחי עמוד',
|
||||
marginBottom: 'תחתון',
|
||||
marginLeft: 'שמאלי',
|
||||
marginRight: 'ימני',
|
||||
marginTop: 'עליון',
|
||||
meta: 'תגי Meta',
|
||||
metaAuthor: 'מחבר/ת',
|
||||
metaCopyright: 'זכויות יוצרים',
|
||||
metaDescription: 'תיאור המסמך',
|
||||
metaKeywords: 'מילות מפתח של המסמך (מופרדות בפסיק)',
|
||||
other: 'אחר...',
|
||||
previewHtml: '<p>זהו <strong>טקסט הדגמה</strong>. את/ה משתמש/ת ב<a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'מאפייני מסמך',
|
||||
txtColor: 'צבע טקסט',
|
||||
xhtmlDec: 'כלול הכרזות XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/hi.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/hi.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'hi', {
|
||||
bgColor: 'बैक्ग्राउन्ड रंग',
|
||||
bgFixed: 'स्क्रॉल न करने वाला बैक्ग्राउन्ड',
|
||||
bgImage: 'बैक्ग्राउन्ड तस्वीर URL',
|
||||
charset: 'करेक्टर सॅट ऍन्कोडिंग',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'मध्य यूरोपीय (Central European)',
|
||||
charsetCR: 'सिरीलिक (Cyrillic)',
|
||||
charsetCT: 'चीनी (Chinese Traditional Big5)',
|
||||
charsetGR: 'यवन (Greek)',
|
||||
charsetJP: 'जापानी (Japanese)',
|
||||
charsetKR: 'कोरीयन (Korean)',
|
||||
charsetOther: 'अन्य करेक्टर सॅट ऍन्कोडिंग',
|
||||
charsetTR: 'तुर्की (Turkish)',
|
||||
charsetUN: 'यूनीकोड (UTF-8)',
|
||||
charsetWE: 'पश्चिम यूरोपीय (Western European)',
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'पेज शीर्षक',
|
||||
docType: 'डॉक्यूमॅन्ट प्रकार शीर्षक',
|
||||
docTypeOther: 'अन्य डॉक्यूमॅन्ट प्रकार शीर्षक',
|
||||
label: 'डॉक्यूमॅन्ट प्रॉपर्टीज़',
|
||||
margin: 'पेज मार्जिन',
|
||||
marginBottom: 'नीचे',
|
||||
marginLeft: 'बायें',
|
||||
marginRight: 'दायें',
|
||||
marginTop: 'ऊपर',
|
||||
meta: 'मॅटाडेटा',
|
||||
metaAuthor: 'लेखक',
|
||||
metaCopyright: 'कॉपीराइट',
|
||||
metaDescription: 'डॉक्यूमॅन्ट करॅक्टरन',
|
||||
metaKeywords: 'डॉक्युमॅन्ट इन्डेक्स संकेतशब्द (अल्पविराम से अलग करें)',
|
||||
other: '<अन्य>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'डॉक्यूमॅन्ट प्रॉपर्टीज़',
|
||||
txtColor: 'टेक्स्ट रंग',
|
||||
xhtmlDec: 'XHTML सूचना सम्मिलित करें'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/hr.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/hr.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'hr', {
|
||||
bgColor: 'Boja pozadine',
|
||||
bgFixed: 'Pozadine se ne pomiče',
|
||||
bgImage: 'URL slike pozadine',
|
||||
charset: 'Enkodiranje znakova',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Središnja Europa',
|
||||
charsetCR: 'Ćirilica',
|
||||
charsetCT: 'Tradicionalna kineska (Big5)',
|
||||
charsetGR: 'Grčka',
|
||||
charsetJP: 'Japanska',
|
||||
charsetKR: 'Koreanska',
|
||||
charsetOther: 'Ostalo enkodiranje znakova',
|
||||
charsetTR: 'Turska',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Zapadna Europa',
|
||||
chooseColor: 'Odaberi',
|
||||
design: 'Dizajn',
|
||||
docTitle: 'Naslov stranice',
|
||||
docType: 'Zaglavlje vrste dokumenta',
|
||||
docTypeOther: 'Ostalo zaglavlje vrste dokumenta',
|
||||
label: 'Svojstva dokumenta',
|
||||
margin: 'Margine stranice',
|
||||
marginBottom: 'Dolje',
|
||||
marginLeft: 'Lijevo',
|
||||
marginRight: 'Desno',
|
||||
marginTop: 'Vrh',
|
||||
meta: 'Meta Data',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Autorska prava',
|
||||
metaDescription: 'Opis dokumenta',
|
||||
metaKeywords: 'Ključne riječi dokumenta (odvojene zarezom)',
|
||||
other: '<drugi>',
|
||||
previewHtml: '<p>Ovo je neki <strong>primjer teksta</strong>. Vi koristite <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Svojstva dokumenta',
|
||||
txtColor: 'Boja teksta',
|
||||
xhtmlDec: 'Ubaci XHTML deklaracije'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/hu.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/hu.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'hu', {
|
||||
bgColor: 'Háttérszín',
|
||||
bgFixed: 'Nem gördíthető háttér',
|
||||
bgImage: 'Háttérkép cím',
|
||||
charset: 'Karakterkódolás',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Közép-Európai',
|
||||
charsetCR: 'Cyrill',
|
||||
charsetCT: 'Kínai Tradicionális (Big5)',
|
||||
charsetGR: 'Görög',
|
||||
charsetJP: 'Japán',
|
||||
charsetKR: 'Koreai',
|
||||
charsetOther: 'Más karakterkódolás',
|
||||
charsetTR: 'Török',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Nyugat-Európai',
|
||||
chooseColor: 'Válasszon',
|
||||
design: 'Design',
|
||||
docTitle: 'Oldalcím',
|
||||
docType: 'Dokumentum típus fejléc',
|
||||
docTypeOther: 'Más dokumentum típus fejléc',
|
||||
label: 'Dokumentum tulajdonságai',
|
||||
margin: 'Oldal margók',
|
||||
marginBottom: 'Alsó',
|
||||
marginLeft: 'Bal',
|
||||
marginRight: 'Jobb',
|
||||
marginTop: 'Felső',
|
||||
meta: 'Meta adatok',
|
||||
metaAuthor: 'Szerző',
|
||||
metaCopyright: 'Szerzői jog',
|
||||
metaDescription: 'Dokumentum leírás',
|
||||
metaKeywords: 'Dokumentum keresőszavak (vesszővel elválasztva)',
|
||||
other: '<más>',
|
||||
previewHtml: '<p>Ez itt egy <strong>példa</strong>. A <a href="javascript:void(0)">CKEditor</a>-t használod.</p>',
|
||||
title: 'Dokumentum tulajdonságai',
|
||||
txtColor: 'Betűszín',
|
||||
xhtmlDec: 'XHTML deklarációk beillesztése'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/id.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/id.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'id', {
|
||||
bgColor: 'Warna Latar Belakang',
|
||||
bgFixed: 'Non-scrolling (Fixed) Background', // MISSING
|
||||
bgImage: 'Background Image URL', // MISSING
|
||||
charset: 'Character Set Encoding', // MISSING
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'Other Character Set Encoding', // MISSING
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Pilih',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Page Title', // MISSING
|
||||
docType: 'Document Type Heading', // MISSING
|
||||
docTypeOther: 'Other Document Type Heading', // MISSING
|
||||
label: 'Document Properties', // MISSING
|
||||
margin: 'Page Margins', // MISSING
|
||||
marginBottom: 'Bawah',
|
||||
marginLeft: 'Kiri',
|
||||
marginRight: 'Kanan',
|
||||
marginTop: 'Atas',
|
||||
meta: 'Meta Tags', // MISSING
|
||||
metaAuthor: 'Author', // MISSING
|
||||
metaCopyright: 'Copyright', // MISSING
|
||||
metaDescription: 'Document Description', // MISSING
|
||||
metaKeywords: 'Document Indexing Keywords (comma separated)', // MISSING
|
||||
other: 'Other...', // MISSING
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Document Properties', // MISSING
|
||||
txtColor: 'Text Color', // MISSING
|
||||
xhtmlDec: 'Include XHTML Declarations' // MISSING
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/is.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/is.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'is', {
|
||||
bgColor: 'Bakgrunnslitur',
|
||||
bgFixed: 'Læstur bakgrunnur',
|
||||
bgImage: 'Slóð bakgrunnsmyndar',
|
||||
charset: 'Letursett',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Mið-evrópskt',
|
||||
charsetCR: 'Kýrilskt',
|
||||
charsetCT: 'Kínverskt, hefðbundið (Big5)',
|
||||
charsetGR: 'Grískt',
|
||||
charsetJP: 'Japanskt',
|
||||
charsetKR: 'Kóreskt',
|
||||
charsetOther: 'Annað letursett',
|
||||
charsetTR: 'Tyrkneskt',
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Vestur-evrópst',
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Titill síðu',
|
||||
docType: 'Flokkur skjalategunda',
|
||||
docTypeOther: 'Annar flokkur skjalategunda',
|
||||
label: 'Eigindi skjals',
|
||||
margin: 'Hliðarspássía',
|
||||
marginBottom: 'Neðst',
|
||||
marginLeft: 'Vinstri',
|
||||
marginRight: 'Hægri',
|
||||
marginTop: 'Efst',
|
||||
meta: 'Lýsigögn',
|
||||
metaAuthor: 'Höfundur',
|
||||
metaCopyright: 'Höfundarréttur',
|
||||
metaDescription: 'Lýsing skjals',
|
||||
metaKeywords: 'Lykilorð efnisorðaskrár (aðgreind með kommum)',
|
||||
other: '<annar>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Eigindi skjals',
|
||||
txtColor: 'Litur texta',
|
||||
xhtmlDec: 'Fella inn XHTML lýsingu'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/it.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/it.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'it', {
|
||||
bgColor: 'Colore di sfondo',
|
||||
bgFixed: 'Sfondo fissato',
|
||||
bgImage: 'Immagine di sfondo',
|
||||
charset: 'Set di caretteri',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Europa Centrale',
|
||||
charsetCR: 'Cirillico',
|
||||
charsetCT: 'Cinese Tradizionale (Big5)',
|
||||
charsetGR: 'Greco',
|
||||
charsetJP: 'Giapponese',
|
||||
charsetKR: 'Coreano',
|
||||
charsetOther: 'Altro set di caretteri',
|
||||
charsetTR: 'Turco',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Europa Occidentale',
|
||||
chooseColor: 'Scegli',
|
||||
design: 'Disegna',
|
||||
docTitle: 'Titolo pagina',
|
||||
docType: 'Intestazione DocType',
|
||||
docTypeOther: 'Altra intestazione DocType',
|
||||
label: 'Proprietà del Documento',
|
||||
margin: 'Margini',
|
||||
marginBottom: 'In Basso',
|
||||
marginLeft: 'A Sinistra',
|
||||
marginRight: 'A Destra',
|
||||
marginTop: 'In Alto',
|
||||
meta: 'Meta Data',
|
||||
metaAuthor: 'Autore',
|
||||
metaCopyright: 'Copyright',
|
||||
metaDescription: 'Descrizione documento',
|
||||
metaKeywords: 'Chiavi di indicizzazione documento (separate da virgola)',
|
||||
other: '<altro>',
|
||||
previewHtml: '<p>Questo è un <strong>testo di esempio</strong>. State usando <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Proprietà del Documento',
|
||||
txtColor: 'Colore testo',
|
||||
xhtmlDec: 'Includi dichiarazione XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/ja.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/ja.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'ja', {
|
||||
bgColor: '背景色',
|
||||
bgFixed: 'スクロールしない背景',
|
||||
bgImage: '背景画像 URL',
|
||||
charset: '文字セット符号化',
|
||||
charsetASCII: 'アスキー',
|
||||
charsetCE: 'Central European',
|
||||
charsetCR: 'Cyrillic',
|
||||
charsetCT: 'Chinese Traditional (Big5)',
|
||||
charsetGR: 'Greek',
|
||||
charsetJP: '日本語',
|
||||
charsetKR: 'Korean',
|
||||
charsetOther: '他の文字セット符号化',
|
||||
charsetTR: 'Turkish',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Western European',
|
||||
chooseColor: '色の選択',
|
||||
design: 'デザイン',
|
||||
docTitle: 'ページタイトル',
|
||||
docType: '文書タイプヘッダー',
|
||||
docTypeOther: 'その他文書タイプヘッダー',
|
||||
label: '文書 プロパティ',
|
||||
margin: 'ページ・マージン',
|
||||
marginBottom: '下部',
|
||||
marginLeft: '左',
|
||||
marginRight: '右',
|
||||
marginTop: '上部',
|
||||
meta: 'メタデータ',
|
||||
metaAuthor: '文書の作者',
|
||||
metaCopyright: '文書の著作権',
|
||||
metaDescription: '文書の概要',
|
||||
metaKeywords: '文書のキーワード(カンマ区切り)',
|
||||
other: '<その他の>',
|
||||
previewHtml: '<p>これは<strong>テキストサンプル</strong>です。 あなたは、<a href="javascript:void(0)">CKEditor</a>を使っています。</p>',
|
||||
title: '文書 プロパティ',
|
||||
txtColor: 'テキスト色',
|
||||
xhtmlDec: 'XHTML宣言をインクルード'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/ka.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/ka.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'ka', {
|
||||
bgColor: 'ფონის ფერი',
|
||||
bgFixed: 'უმოძრაო (ფიქსირებული) ფონი',
|
||||
bgImage: 'ფონური სურათის URL',
|
||||
charset: 'კოდირება',
|
||||
charsetASCII: 'ამერიკული (ASCII)',
|
||||
charsetCE: 'ცენტრალურ ევროპული',
|
||||
charsetCR: 'კირილური',
|
||||
charsetCT: 'ტრადიციული ჩინური (Big5)',
|
||||
charsetGR: 'ბერძნული',
|
||||
charsetJP: 'იაპონური',
|
||||
charsetKR: 'კორეული',
|
||||
charsetOther: 'სხვა კოდირებები',
|
||||
charsetTR: 'თურქული',
|
||||
charsetUN: 'უნიკოდი (UTF-8)',
|
||||
charsetWE: 'დასავლეთ ევროპული',
|
||||
chooseColor: 'არჩევა',
|
||||
design: 'დიზაინი',
|
||||
docTitle: 'გვერდის სათაური',
|
||||
docType: 'დოკუმენტის ტიპი',
|
||||
docTypeOther: 'სხვა ტიპის დოკუმენტი',
|
||||
label: 'დოკუმენტის პარამეტრები',
|
||||
margin: 'გვერდის კიდეები',
|
||||
marginBottom: 'ქვედა',
|
||||
marginLeft: 'მარცხენა',
|
||||
marginRight: 'მარჯვენა',
|
||||
marginTop: 'ზედა',
|
||||
meta: 'მეტაTag-ები',
|
||||
metaAuthor: 'ავტორი',
|
||||
metaCopyright: 'Copyright',
|
||||
metaDescription: 'დოკუმენტის აღწერა',
|
||||
metaKeywords: 'დოკუმენტის საკვანძო სიტყვები (მძიმით გამოყოფილი)',
|
||||
other: 'სხვა...',
|
||||
previewHtml: '<p>ეს არის <strong>საცდელი ტექსტი</strong>. თქვენ <a href="javascript:void(0)">CKEditor</a>-ით სარგებლობთ.</p>',
|
||||
title: 'დოკუმენტის პარამეტრები',
|
||||
txtColor: 'ტექსტის ფერი',
|
||||
xhtmlDec: 'XHTML დეკლარაციების ჩართვა'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/km.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/km.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'km', {
|
||||
bgColor: 'ពណ៌ខាងក្រោម',
|
||||
bgFixed: 'ទំព័រក្រោមមិនប្តូរ',
|
||||
bgImage: 'URL របស់រូបភាពខាងក្រោម',
|
||||
charset: 'កំណត់លេខកូតភាសា',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'កំណត់លេខកូតភាសាផ្សេងទៀត',
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'ចំណងជើងទំព័រ',
|
||||
docType: 'ប្រភេទក្បាលទំព័រ',
|
||||
docTypeOther: 'ប្រភេទក្បាលទំព័រផ្សេងទៀត',
|
||||
label: 'ការកំណត់ ឯកសារ',
|
||||
margin: 'ស៊ុមទំព័រ',
|
||||
marginBottom: 'ក្រោម',
|
||||
marginLeft: 'ឆ្វេង',
|
||||
marginRight: 'ស្ដាំ',
|
||||
marginTop: 'លើ',
|
||||
meta: 'ទិន្នន័យមេ',
|
||||
metaAuthor: 'អ្នកនិពន្ធ',
|
||||
metaCopyright: 'រក្សាសិទ្ធិ៏',
|
||||
metaDescription: 'សេចក្តីអត្ថាធិប្បាយអំពីឯកសារ',
|
||||
metaKeywords: 'ពាក្យនៅក្នុងឯកសារ (ផ្តាច់ពីគ្នាដោយក្បៀស)',
|
||||
other: '<other>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'ការកំណត់ ឯកសារ',
|
||||
txtColor: 'ពណ៌អក្សរ',
|
||||
xhtmlDec: 'បញ្ជូល XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/ko.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/ko.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'ko', {
|
||||
bgColor: '배경색상',
|
||||
bgFixed: '스크롤되지않는 배경',
|
||||
bgImage: '배경이미지 URL',
|
||||
charset: '캐릭터셋 인코딩',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: '다른 캐릭터셋 인코딩',
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: '페이지명',
|
||||
docType: '문서 헤드',
|
||||
docTypeOther: '다른 문서헤드',
|
||||
label: '문서 속성',
|
||||
margin: '페이지 여백',
|
||||
marginBottom: '아래',
|
||||
marginLeft: '왼쪽',
|
||||
marginRight: '오른쪽',
|
||||
marginTop: '위',
|
||||
meta: '메타데이터',
|
||||
metaAuthor: '작성자',
|
||||
metaCopyright: '저작권',
|
||||
metaDescription: '문서 설명',
|
||||
metaKeywords: '문서 키워드 (콤마로 구분)',
|
||||
other: '<기타>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: '문서 속성',
|
||||
txtColor: '글자 색상',
|
||||
xhtmlDec: 'XHTML 문서정의 포함'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/ku.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/ku.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'ku', {
|
||||
bgColor: 'ڕەنگی پاشبنەما',
|
||||
bgFixed: 'بێ هاتووچوپێکردنی (چەسپاو) پاشبنەمای وێنه',
|
||||
bgImage: 'ناونیشانی بەستەری وێنەی پاشبنەما',
|
||||
charset: 'دەستەی نووسەی بەکۆدکەر',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'ناوەڕاستی ئەوروپا',
|
||||
charsetCR: 'سیریلیك',
|
||||
charsetCT: 'چینی(Big5)',
|
||||
charsetGR: 'یۆنانی',
|
||||
charsetJP: 'ژاپۆنی',
|
||||
charsetKR: 'کۆریا',
|
||||
charsetOther: 'دەستەی نووسەی بەکۆدکەری تر',
|
||||
charsetTR: 'تورکی',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'ڕۆژئاوای ئەوروپا',
|
||||
chooseColor: 'هەڵبژێرە',
|
||||
design: 'شێوەکار',
|
||||
docTitle: 'سەردێڕی پەڕه',
|
||||
docType: 'سەرپەڕەی جۆری پەڕه',
|
||||
docTypeOther: 'سەرپەڕەی جۆری پەڕەی تر',
|
||||
label: 'خاسییەتی پەڕه',
|
||||
margin: 'تەنیشت پەڕه',
|
||||
marginBottom: 'ژێرەوه',
|
||||
marginLeft: 'چەپ',
|
||||
marginRight: 'ڕاست',
|
||||
marginTop: 'سەرەوه',
|
||||
meta: 'زانیاری مێتا',
|
||||
metaAuthor: 'نووسەر',
|
||||
metaCopyright: 'مافی بڵاوکردنەوەی',
|
||||
metaDescription: 'پێناسەی لاپەڕه',
|
||||
metaKeywords: 'بەڵگەنامەی وشەی کاریگەر(به کۆما لێکیان جیابکەوه)',
|
||||
other: 'هیتر...',
|
||||
previewHtml: '<p>ئەمە وەك نموونەی <strong>دەقه</strong>. تۆ بەکاردەهێنیت <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'خاسییەتی پەڕه',
|
||||
txtColor: 'ڕەنگی دەق',
|
||||
xhtmlDec: 'بەیاننامەکانی XHTML لەگەڵدابێت'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/lt.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/lt.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'lt', {
|
||||
bgColor: 'Fono spalva',
|
||||
bgFixed: 'Neslenkantis fonas',
|
||||
bgImage: 'Fono paveikslėlio nuoroda (URL)',
|
||||
charset: 'Simbolių kodavimo lentelė',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Centrinės Europos',
|
||||
charsetCR: 'Kirilica',
|
||||
charsetCT: 'Tradicinės kinų (Big5)',
|
||||
charsetGR: 'Graikų',
|
||||
charsetJP: 'Japonų',
|
||||
charsetKR: 'Korėjiečių',
|
||||
charsetOther: 'Kita simbolių kodavimo lentelė',
|
||||
charsetTR: 'Turkų',
|
||||
charsetUN: 'Unikodas (UTF-8)',
|
||||
charsetWE: 'Vakarų Europos',
|
||||
chooseColor: 'Pasirinkite',
|
||||
design: 'Išdėstymas',
|
||||
docTitle: 'Puslapio antraštė',
|
||||
docType: 'Dokumento tipo antraštė',
|
||||
docTypeOther: 'Kita dokumento tipo antraštė',
|
||||
label: 'Dokumento savybės',
|
||||
margin: 'Puslapio kraštinės',
|
||||
marginBottom: 'Apačioje',
|
||||
marginLeft: 'Kairėje',
|
||||
marginRight: 'Dešinėje',
|
||||
marginTop: 'Viršuje',
|
||||
meta: 'Meta duomenys',
|
||||
metaAuthor: 'Autorius',
|
||||
metaCopyright: 'Autorinės teisės',
|
||||
metaDescription: 'Dokumento apibūdinimas',
|
||||
metaKeywords: 'Dokumento indeksavimo raktiniai žodžiai (atskirti kableliais)',
|
||||
other: '<kitas>',
|
||||
previewHtml: '<p>Tai yra <strong>pavyzdinis tekstas</strong>. Jūs naudojate <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Dokumento savybės',
|
||||
txtColor: 'Teksto spalva',
|
||||
xhtmlDec: 'Įtraukti XHTML deklaracijas'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/lv.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/lv.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'lv', {
|
||||
bgColor: 'Fona krāsa',
|
||||
bgFixed: 'Fona attēls ir fiksēts',
|
||||
bgImage: 'Fona attēla hipersaite',
|
||||
charset: 'Simbolu kodējums',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Centrāleiropas',
|
||||
charsetCR: 'Kirilica',
|
||||
charsetCT: 'Ķīniešu tradicionālā (Big5)',
|
||||
charsetGR: 'Grieķu',
|
||||
charsetJP: 'Japāņu',
|
||||
charsetKR: 'Korejiešu',
|
||||
charsetOther: 'Cits simbolu kodējums',
|
||||
charsetTR: 'Turku',
|
||||
charsetUN: 'Unikods (UTF-8)',
|
||||
charsetWE: 'Rietumeiropas',
|
||||
chooseColor: 'Izvēlēties',
|
||||
design: 'Dizains',
|
||||
docTitle: 'Dokumenta virsraksts <Title>',
|
||||
docType: 'Dokumenta tips',
|
||||
docTypeOther: 'Cits dokumenta tips',
|
||||
label: 'Dokumenta īpašības',
|
||||
margin: 'Lapas robežas',
|
||||
marginBottom: 'Apakšā',
|
||||
marginLeft: 'Pa kreisi',
|
||||
marginRight: 'Pa labi',
|
||||
marginTop: 'Augšā',
|
||||
meta: 'META dati',
|
||||
metaAuthor: 'Autors',
|
||||
metaCopyright: 'Autortiesības',
|
||||
metaDescription: 'Dokumenta apraksts',
|
||||
metaKeywords: 'Dokumentu aprakstoši atslēgvārdi (atdalīti ar komatu)',
|
||||
other: '<cits>',
|
||||
previewHtml: '<p>Šis ir <strong>parauga teksts</strong>. Jūs izmantojiet <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Dokumenta īpašības',
|
||||
txtColor: 'Teksta krāsa',
|
||||
xhtmlDec: 'Ietvert XHTML deklarācijas'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/mk.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/mk.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'mk', {
|
||||
bgColor: 'Background Color',
|
||||
bgFixed: 'Non-scrolling (Fixed) Background', // MISSING
|
||||
bgImage: 'Background Image URL', // MISSING
|
||||
charset: 'Character Set Encoding', // MISSING
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'Other Character Set Encoding', // MISSING
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Page Title', // MISSING
|
||||
docType: 'Document Type Heading', // MISSING
|
||||
docTypeOther: 'Other Document Type Heading', // MISSING
|
||||
label: 'Document Properties', // MISSING
|
||||
margin: 'Page Margins', // MISSING
|
||||
marginBottom: 'Bottom', // MISSING
|
||||
marginLeft: 'Left', // MISSING
|
||||
marginRight: 'Right', // MISSING
|
||||
marginTop: 'Top', // MISSING
|
||||
meta: 'Meta Tags', // MISSING
|
||||
metaAuthor: 'Author', // MISSING
|
||||
metaCopyright: 'Copyright', // MISSING
|
||||
metaDescription: 'Document Description', // MISSING
|
||||
metaKeywords: 'Document Indexing Keywords (comma separated)', // MISSING
|
||||
other: 'Other...', // MISSING
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Document Properties', // MISSING
|
||||
txtColor: 'Text Color', // MISSING
|
||||
xhtmlDec: 'Include XHTML Declarations' // MISSING
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/mn.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/mn.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'mn', {
|
||||
bgColor: 'Фоно өнгө',
|
||||
bgFixed: 'Гүйдэггүй фоно',
|
||||
bgImage: 'Фоно зурагны URL',
|
||||
charset: 'Encoding тэмдэгт',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Төв европ',
|
||||
charsetCR: 'Крил',
|
||||
charsetCT: 'Хятадын уламжлалт (Big5)',
|
||||
charsetGR: 'Гред',
|
||||
charsetJP: 'Япон',
|
||||
charsetKR: 'Солонгос',
|
||||
charsetOther: 'Encoding-д өөр тэмдэгт оноох',
|
||||
charsetTR: 'Tурк',
|
||||
charsetUN: 'Юникод (UTF-8)',
|
||||
charsetWE: 'Баруун европ',
|
||||
chooseColor: 'Сонгох',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Хуудасны гарчиг',
|
||||
docType: 'Баримт бичгийн төрөл Heading',
|
||||
docTypeOther: 'Бусад баримт бичгийн төрөл Heading',
|
||||
label: 'Баримт бичиг шинж чанар',
|
||||
margin: 'Хуудасны захын зай',
|
||||
marginBottom: 'Доод тал',
|
||||
marginLeft: 'Зүүн тал',
|
||||
marginRight: 'Баруун тал',
|
||||
marginTop: 'Дээд тал',
|
||||
meta: 'Meta өгөгдөл',
|
||||
metaAuthor: 'Зохиогч',
|
||||
metaCopyright: 'Зохиогчийн эрх',
|
||||
metaDescription: 'Баримт бичгийн тайлбар',
|
||||
metaKeywords: 'Баримт бичгийн индекс түлхүүр үг (таслалаар тусгаарлагдана)',
|
||||
other: '<other>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Баримт бичиг шинж чанар',
|
||||
txtColor: 'Фонтны өнгө',
|
||||
xhtmlDec: 'XHTML-ийн мэдээллийг агуулах'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/ms.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/ms.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'ms', {
|
||||
bgColor: 'Warna Latarbelakang',
|
||||
bgFixed: 'Imej Latarbelakang tanpa Skrol',
|
||||
bgImage: 'URL Gambar Latarbelakang',
|
||||
charset: 'Enkod Set Huruf',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'Enkod Set Huruf yang Lain',
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Tajuk Muka Surat',
|
||||
docType: 'Jenis Kepala Dokumen',
|
||||
docTypeOther: 'Jenis Kepala Dokumen yang Lain',
|
||||
label: 'Ciri-ciri dokumen',
|
||||
margin: 'Margin Muka Surat',
|
||||
marginBottom: 'Bawah',
|
||||
marginLeft: 'Kiri',
|
||||
marginRight: 'Kanan',
|
||||
marginTop: 'Atas',
|
||||
meta: 'Data Meta',
|
||||
metaAuthor: 'Penulis',
|
||||
metaCopyright: 'Hakcipta',
|
||||
metaDescription: 'Keterangan Dokumen',
|
||||
metaKeywords: 'Kata Kunci Indeks Dokumen (dipisahkan oleh koma)',
|
||||
other: '<lain>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Ciri-ciri dokumen',
|
||||
txtColor: 'Warna Text',
|
||||
xhtmlDec: 'Masukkan pemula kod XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/nb.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/nb.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'nb', {
|
||||
bgColor: 'Bakgrunnsfarge',
|
||||
bgFixed: 'Lås bakgrunnsbilde',
|
||||
bgImage: 'URL for bakgrunnsbilde',
|
||||
charset: 'Tegnsett',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Sentraleuropeisk',
|
||||
charsetCR: 'Kyrillisk',
|
||||
charsetCT: 'Tradisonell kinesisk(Big5)',
|
||||
charsetGR: 'Gresk',
|
||||
charsetJP: 'Japansk',
|
||||
charsetKR: 'Koreansk',
|
||||
charsetOther: 'Annet tegnsett',
|
||||
charsetTR: 'Tyrkisk',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Vesteuropeisk',
|
||||
chooseColor: 'Velg',
|
||||
design: 'Design',
|
||||
docTitle: 'Sidetittel',
|
||||
docType: 'Dokumenttype header',
|
||||
docTypeOther: 'Annet dokumenttype header',
|
||||
label: 'Dokumentegenskaper',
|
||||
margin: 'Sidemargin',
|
||||
marginBottom: 'Bunn',
|
||||
marginLeft: 'Venstre',
|
||||
marginRight: 'Høyre',
|
||||
marginTop: 'Topp',
|
||||
meta: 'Meta-data',
|
||||
metaAuthor: 'Forfatter',
|
||||
metaCopyright: 'Kopirett',
|
||||
metaDescription: 'Dokumentbeskrivelse',
|
||||
metaKeywords: 'Dokument nøkkelord (kommaseparert)',
|
||||
other: '<annen>',
|
||||
previewHtml: '<p>Dette er en <strong>eksempeltekst</strong>. Du bruker <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Dokumentegenskaper',
|
||||
txtColor: 'Tekstfarge',
|
||||
xhtmlDec: 'Inkluder XHTML-deklarasjon'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/nl.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/nl.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'nl', {
|
||||
bgColor: 'Achtergrondkleur',
|
||||
bgFixed: 'Niet-scrollend (gefixeerde) achtergrond',
|
||||
bgImage: 'Achtergrondafbeelding URL',
|
||||
charset: 'Tekencodering',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Centraal Europees',
|
||||
charsetCR: 'Cyrillisch',
|
||||
charsetCT: 'Traditioneel Chinees (Big5)',
|
||||
charsetGR: 'Grieks',
|
||||
charsetJP: 'Japans',
|
||||
charsetKR: 'Koreaans',
|
||||
charsetOther: 'Andere tekencodering',
|
||||
charsetTR: 'Turks',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'West Europees',
|
||||
chooseColor: 'Kies',
|
||||
design: 'Ontwerp',
|
||||
docTitle: 'Paginatitel',
|
||||
docType: 'Documenttype-definitie',
|
||||
docTypeOther: 'Andere documenttype-definitie',
|
||||
label: 'Documenteigenschappen',
|
||||
margin: 'Pagina marges',
|
||||
marginBottom: 'Onder',
|
||||
marginLeft: 'Links',
|
||||
marginRight: 'Rechts',
|
||||
marginTop: 'Boven',
|
||||
meta: 'Meta tags',
|
||||
metaAuthor: 'Auteur',
|
||||
metaCopyright: 'Auteursrechten',
|
||||
metaDescription: 'Documentbeschrijving',
|
||||
metaKeywords: 'Trefwoorden voor indexering (komma-gescheiden)',
|
||||
other: 'Anders...',
|
||||
previewHtml: '<p>Dit is <strong>voorbeeld tekst</strong>. Je gebruikt <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Documenteigenschappen',
|
||||
txtColor: 'Tekstkleur',
|
||||
xhtmlDec: 'XHTML declaratie invoegen'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/no.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/no.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'no', {
|
||||
bgColor: 'Bakgrunnsfarge',
|
||||
bgFixed: 'Lås bakgrunnsbilde',
|
||||
bgImage: 'URL for bakgrunnsbilde',
|
||||
charset: 'Tegnsett',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Sentraleuropeisk',
|
||||
charsetCR: 'Kyrillisk',
|
||||
charsetCT: 'Tradisonell kinesisk(Big5)',
|
||||
charsetGR: 'Gresk',
|
||||
charsetJP: 'Japansk',
|
||||
charsetKR: 'Koreansk',
|
||||
charsetOther: 'Annet tegnsett',
|
||||
charsetTR: 'Tyrkisk',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Vesteuropeisk',
|
||||
chooseColor: 'Velg',
|
||||
design: 'Design',
|
||||
docTitle: 'Sidetittel',
|
||||
docType: 'Dokumenttype header',
|
||||
docTypeOther: 'Annet dokumenttype header',
|
||||
label: 'Dokumentegenskaper',
|
||||
margin: 'Sidemargin',
|
||||
marginBottom: 'Bunn',
|
||||
marginLeft: 'Venstre',
|
||||
marginRight: 'Høyre',
|
||||
marginTop: 'Topp',
|
||||
meta: 'Meta-data',
|
||||
metaAuthor: 'Forfatter',
|
||||
metaCopyright: 'Kopirett',
|
||||
metaDescription: 'Dokumentbeskrivelse',
|
||||
metaKeywords: 'Dokument nøkkelord (kommaseparert)',
|
||||
other: '<annen>',
|
||||
previewHtml: '<p>Dette er en <strong>eksempeltekst</strong>. Du bruker <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Dokumentegenskaper',
|
||||
txtColor: 'Tekstfarge',
|
||||
xhtmlDec: 'Inkluder XHTML-deklarasjon'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/pl.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/pl.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'pl', {
|
||||
bgColor: 'Kolor tła',
|
||||
bgFixed: 'Tło nieruchome (nieprzewijające się)',
|
||||
bgImage: 'Adres URL obrazka tła',
|
||||
charset: 'Kodowanie znaków',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Środkowoeuropejskie',
|
||||
charsetCR: 'Cyrylica',
|
||||
charsetCT: 'Chińskie tradycyjne (Big5)',
|
||||
charsetGR: 'Greckie',
|
||||
charsetJP: 'Japońskie',
|
||||
charsetKR: 'Koreańskie',
|
||||
charsetOther: 'Inne kodowanie znaków',
|
||||
charsetTR: 'Tureckie',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Zachodnioeuropejskie',
|
||||
chooseColor: 'Wybierz',
|
||||
design: 'Projekt strony',
|
||||
docTitle: 'Tytuł strony',
|
||||
docType: 'Definicja typu dokumentu',
|
||||
docTypeOther: 'Inna definicja typu dokumentu',
|
||||
label: 'Właściwości dokumentu',
|
||||
margin: 'Marginesy strony',
|
||||
marginBottom: 'Dolny',
|
||||
marginLeft: 'Lewy',
|
||||
marginRight: 'Prawy',
|
||||
marginTop: 'Górny',
|
||||
meta: 'Znaczniki meta',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Prawa autorskie',
|
||||
metaDescription: 'Opis dokumentu',
|
||||
metaKeywords: 'Słowa kluczowe dokumentu (oddzielone przecinkami)',
|
||||
other: 'Inne',
|
||||
previewHtml: '<p>To jest <strong>przykładowy tekst</strong>. Korzystasz z programu <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Właściwości dokumentu',
|
||||
txtColor: 'Kolor tekstu',
|
||||
xhtmlDec: 'Uwzględnij deklaracje XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/pt-br.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/pt-br.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'pt-br', {
|
||||
bgColor: 'Cor do Plano de Fundo',
|
||||
bgFixed: 'Plano de Fundo Fixo',
|
||||
bgImage: 'URL da Imagem de Plano de Fundo',
|
||||
charset: 'Codificação de Caracteres',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Europa Central',
|
||||
charsetCR: 'Cirílico',
|
||||
charsetCT: 'Chinês Tradicional (Big5)',
|
||||
charsetGR: 'Grego',
|
||||
charsetJP: 'Japonês',
|
||||
charsetKR: 'Coreano',
|
||||
charsetOther: 'Outra Codificação de Caracteres',
|
||||
charsetTR: 'Turco',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Europa Ocidental',
|
||||
chooseColor: 'Escolher',
|
||||
design: 'Design',
|
||||
docTitle: 'Título da Página',
|
||||
docType: 'Cabeçalho Tipo de Documento',
|
||||
docTypeOther: 'Outro Tipo de Documento',
|
||||
label: 'Propriedades Documento',
|
||||
margin: 'Margens da Página',
|
||||
marginBottom: 'Inferior',
|
||||
marginLeft: 'Inferior',
|
||||
marginRight: 'Direita',
|
||||
marginTop: 'Superior',
|
||||
meta: 'Meta Dados',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Direitos Autorais',
|
||||
metaDescription: 'Descrição do Documento',
|
||||
metaKeywords: 'Palavras-chave de Indexação do Documento (separadas por vírgula)',
|
||||
other: '<outro>',
|
||||
previewHtml: '<p>Este é um <strong>texto de exemplo</strong>. Você está usando <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Propriedades Documento',
|
||||
txtColor: 'Cor do Texto',
|
||||
xhtmlDec: 'Incluir Declarações XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/pt.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/pt.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'pt', {
|
||||
bgColor: 'Cor de Fundo',
|
||||
bgFixed: 'Fundo Fixo',
|
||||
bgImage: 'Caminho para a Imagem de Fundo',
|
||||
charset: 'Codificação de Caracteres',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Europa Central',
|
||||
charsetCR: 'Cirílico',
|
||||
charsetCT: 'Chinês Traditional (Big5)',
|
||||
charsetGR: 'Grego',
|
||||
charsetJP: 'Japonês',
|
||||
charsetKR: 'Coreano',
|
||||
charsetOther: 'Outra Codificação de Caracteres',
|
||||
charsetTR: 'Turco',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Europa Ocidental',
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Título da Página',
|
||||
docType: 'Tipo de Cabeçalho do Documento',
|
||||
docTypeOther: 'Outro Tipo de Cabeçalho do Documento',
|
||||
label: 'Propriedades do Documento',
|
||||
margin: 'Margem das Páginas',
|
||||
marginBottom: 'Fundo',
|
||||
marginLeft: 'Esquerda',
|
||||
marginRight: 'Direita',
|
||||
marginTop: 'Topo',
|
||||
meta: 'Meta Data',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Direitos de Autor',
|
||||
metaDescription: 'Descrição do Documento',
|
||||
metaKeywords: 'Palavras de Indexação do Documento (separadas por virgula)',
|
||||
other: '<outro>',
|
||||
previewHtml: '<p>Isto é algum <strong>texto amostra</strong>. Está a usar o <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Propriedades do Documento',
|
||||
txtColor: 'Cor do Texto',
|
||||
xhtmlDec: 'Incluir Declarações XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/ro.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/ro.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'ro', {
|
||||
bgColor: 'Culoarea fundalului (Background Color)',
|
||||
bgFixed: 'Fundal neflotant, fix (Non-scrolling Background)',
|
||||
bgImage: 'URL-ul imaginii din fundal (Background Image URL)',
|
||||
charset: 'Encoding setului de caractere',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Chirilic',
|
||||
charsetCT: 'Chinezesc tradiţional (Big5)',
|
||||
charsetGR: 'Grecesc',
|
||||
charsetJP: 'Japonez',
|
||||
charsetKR: 'Corean',
|
||||
charsetOther: 'Alt encoding al setului de caractere',
|
||||
charsetTR: 'Turcesc',
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Vest european',
|
||||
chooseColor: 'Alege',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Titlul paginii',
|
||||
docType: 'Document Type Heading', // MISSING
|
||||
docTypeOther: 'Alt Document Type Heading',
|
||||
label: 'Proprietăţile documentului',
|
||||
margin: 'Marginile paginii',
|
||||
marginBottom: 'Jos',
|
||||
marginLeft: 'Stânga',
|
||||
marginRight: 'Dreapta',
|
||||
marginTop: 'Sus',
|
||||
meta: 'Meta Tags', // MISSING
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Drepturi de autor',
|
||||
metaDescription: 'Descrierea documentului',
|
||||
metaKeywords: 'Cuvinte cheie după care se va indexa documentul (separate prin virgulă)',
|
||||
other: '<alt>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Proprietăţile documentului',
|
||||
txtColor: 'Culoarea textului',
|
||||
xhtmlDec: 'Include declaraţii XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/ru.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/ru.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'ru', {
|
||||
bgColor: 'Цвет фона',
|
||||
bgFixed: 'Фон прикреплён (не проматывается)',
|
||||
bgImage: 'Ссылка на фоновое изображение',
|
||||
charset: 'Кодировка набора символов',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Центрально-европейская',
|
||||
charsetCR: 'Кириллица',
|
||||
charsetCT: 'Китайская традиционная (Big5)',
|
||||
charsetGR: 'Греческая',
|
||||
charsetJP: 'Японская',
|
||||
charsetKR: 'Корейская',
|
||||
charsetOther: 'Другая кодировка набора символов',
|
||||
charsetTR: 'Турецкая',
|
||||
charsetUN: 'Юникод (UTF-8)',
|
||||
charsetWE: 'Западно-европейская',
|
||||
chooseColor: 'Выберите',
|
||||
design: 'Дизайн',
|
||||
docTitle: 'Заголовок страницы',
|
||||
docType: 'Заголовок типа документа',
|
||||
docTypeOther: 'Другой заголовок типа документа',
|
||||
label: 'Свойства документа',
|
||||
margin: 'Отступы страницы',
|
||||
marginBottom: 'Нижний',
|
||||
marginLeft: 'Левый',
|
||||
marginRight: 'Правый',
|
||||
marginTop: 'Верхний',
|
||||
meta: 'Метаданные',
|
||||
metaAuthor: 'Автор',
|
||||
metaCopyright: 'Авторские права',
|
||||
metaDescription: 'Описание документа',
|
||||
metaKeywords: 'Ключевые слова документа (через запятую)',
|
||||
other: 'Другой ...',
|
||||
previewHtml: '<p>Это <strong>пример</strong> текста, написанного с помощью <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Свойства документа',
|
||||
txtColor: 'Цвет текста',
|
||||
xhtmlDec: 'Включить объявления XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/si.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/si.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'si', {
|
||||
bgColor: 'පසුබිම් වර්ණය',
|
||||
bgFixed: 'Non-scrolling (Fixed) Background', // MISSING
|
||||
bgImage: 'පසුබිම් ',
|
||||
charset: 'Character Set Encoding', // MISSING
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'මාධ්ය ',
|
||||
charsetCR: 'සිරිලික් හෝඩිය',
|
||||
charsetCT: 'චීන සම්ප්රදාය',
|
||||
charsetGR: 'ග්රීක',
|
||||
charsetJP: 'ජපාන',
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'අනෙකුත් අක්ෂර කොටස්',
|
||||
charsetTR: 'තුර්කි',
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'බස්නාහිර ',
|
||||
chooseColor: 'තෝරන්න',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'පිටු මාතෘකාව',
|
||||
docType: 'ලිපිගොනු වර්ගයේ මාතෘකාව',
|
||||
docTypeOther: 'අනෙකුත් ලිපිගොනු වර්ගයේ මාතෘකා',
|
||||
label: 'ලිපිගොනු ',
|
||||
margin: 'පිටු සීමාවන්',
|
||||
marginBottom: 'පහල',
|
||||
marginLeft: 'වම',
|
||||
marginRight: 'දකුණ',
|
||||
marginTop: 'ඉ',
|
||||
meta: 'Meta Tags', // MISSING
|
||||
metaAuthor: 'Author', // MISSING
|
||||
metaCopyright: 'ප්රකාශන ',
|
||||
metaDescription: 'ලිපිගොනු ',
|
||||
metaKeywords: 'ලිපිගොනු පෙලගේසමේ විශේෂ වචන (කොමා වලින් වෙන්කරන ලද)',
|
||||
other: 'අනෙකුත්',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'පෝරමයේ ගුණ/',
|
||||
txtColor: 'අක්ෂර වර්ණ',
|
||||
xhtmlDec: 'Include XHTML Declarations' // MISSING
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/sk.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/sk.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'sk', {
|
||||
bgColor: 'Farba pozadia',
|
||||
bgFixed: 'Fixné pozadie',
|
||||
bgImage: 'URL obrázka na pozadí',
|
||||
charset: 'Znaková sada',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Stredoeurópska',
|
||||
charsetCR: 'Cyrillika',
|
||||
charsetCT: 'Čínština tradičná (Big5)',
|
||||
charsetGR: 'Gréčtina',
|
||||
charsetJP: 'Japončina',
|
||||
charsetKR: 'Korejčina',
|
||||
charsetOther: 'Iná znaková sada',
|
||||
charsetTR: 'Turečtina',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Západná európa',
|
||||
chooseColor: 'Vybrať',
|
||||
design: 'Design',
|
||||
docTitle: 'Titulok stránky',
|
||||
docType: 'Typ záhlavia dokumentu',
|
||||
docTypeOther: 'Iný typ záhlavia dokumentu',
|
||||
label: 'Vlastnosti dokumentu',
|
||||
margin: 'Okraje stránky (margins)',
|
||||
marginBottom: 'Dolný',
|
||||
marginLeft: 'Ľavý',
|
||||
marginRight: 'Pravý',
|
||||
marginTop: 'Horný',
|
||||
meta: 'Meta značky',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Autorské práva (copyright)',
|
||||
metaDescription: 'Popis dokumentu',
|
||||
metaKeywords: 'Indexované kľúčové slová dokumentu (oddelené čiarkou)',
|
||||
other: 'Iný...',
|
||||
previewHtml: '<p>Toto je nejaký <strong>ukážkový text</strong>. Používate <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Vlastnosti dokumentu',
|
||||
txtColor: 'Farba textu',
|
||||
xhtmlDec: 'Vložiť deklarácie XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/sl.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/sl.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'sl', {
|
||||
bgColor: 'Barva ozadja',
|
||||
bgFixed: 'Nepremično ozadje',
|
||||
bgImage: 'URL slike za ozadje',
|
||||
charset: 'Kodna tabela',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Srednjeevropsko',
|
||||
charsetCR: 'Cirilica',
|
||||
charsetCT: 'Tradicionalno Kitajsko (Big5)',
|
||||
charsetGR: 'Grško',
|
||||
charsetJP: 'Japonsko',
|
||||
charsetKR: 'Korejsko',
|
||||
charsetOther: 'Druga kodna tabela',
|
||||
charsetTR: 'Turško',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Zahodnoevropsko',
|
||||
chooseColor: 'Izberi',
|
||||
design: 'Oblika',
|
||||
docTitle: 'Naslov strani',
|
||||
docType: 'Glava tipa dokumenta',
|
||||
docTypeOther: 'Druga glava tipa dokumenta',
|
||||
label: 'Lastnosti dokumenta',
|
||||
margin: 'Zamiki strani',
|
||||
marginBottom: 'Spodaj',
|
||||
marginLeft: 'Levo',
|
||||
marginRight: 'Desno',
|
||||
marginTop: 'Na vrhu',
|
||||
meta: 'Meta podatki',
|
||||
metaAuthor: 'Avtor',
|
||||
metaCopyright: 'Avtorske pravice',
|
||||
metaDescription: 'Opis strani',
|
||||
metaKeywords: 'Ključne besede (ločene z vejicami)',
|
||||
other: '<drug>',
|
||||
previewHtml: '<p>Tole je<strong>primer besedila</strong>. Uporabljate <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Lastnosti dokumenta',
|
||||
txtColor: 'Barva besedila',
|
||||
xhtmlDec: 'Vstavi XHTML deklaracije'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/sq.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/sq.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'sq', {
|
||||
bgColor: 'Ngjyra e Prapavijës',
|
||||
bgFixed: 'Non-scrolling (Fixed) Background', // MISSING
|
||||
bgImage: 'URL e Fotografisë së Prapavijës',
|
||||
charset: 'Character Set Encoding', // MISSING
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Evropës Qendrore',
|
||||
charsetCR: 'Sllave',
|
||||
charsetCT: 'Kinezisht Tradicional (Big5)',
|
||||
charsetGR: 'Greke',
|
||||
charsetJP: 'Japoneze',
|
||||
charsetKR: 'Koreane',
|
||||
charsetOther: 'Other Character Set Encoding', // MISSING
|
||||
charsetTR: 'Turke',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Evropiano Perëndimor',
|
||||
chooseColor: 'Përzgjidh',
|
||||
design: 'Dizajni',
|
||||
docTitle: 'Titulli i Faqes',
|
||||
docType: 'Document Type Heading', // MISSING
|
||||
docTypeOther: 'Other Document Type Heading', // MISSING
|
||||
label: 'Karakteristikat e Dokumentit',
|
||||
margin: 'Kufijtë e Faqes',
|
||||
marginBottom: 'Poshtë',
|
||||
marginLeft: 'Majtas',
|
||||
marginRight: 'Djathtas',
|
||||
marginTop: 'Lart',
|
||||
meta: 'Meta Tags', // MISSING
|
||||
metaAuthor: 'Autori',
|
||||
metaCopyright: 'Të drejtat e kopjimit',
|
||||
metaDescription: 'Përshkrimi i Dokumentit',
|
||||
metaKeywords: 'Document Indexing Keywords (comma separated)', // MISSING
|
||||
other: 'Tjera...',
|
||||
previewHtml: '<p>Ky është nje <strong>tekst shembull</strong>. Ju jeni duke shfrytëzuar <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Karakteristikat e Dokumentit',
|
||||
txtColor: 'Ngjyra e Tekstit',
|
||||
xhtmlDec: 'Përfshij XHTML Deklarimet'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/sr-latn.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/sr-latn.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'sr-latn', {
|
||||
bgColor: 'Boja pozadine',
|
||||
bgFixed: 'Fiksirana pozadina',
|
||||
bgImage: 'URL pozadinske slike',
|
||||
charset: 'Kodiranje skupa karaktera',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'Ostala kodiranja skupa karaktera',
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Naslov stranice',
|
||||
docType: 'Zaglavlje tipa dokumenta',
|
||||
docTypeOther: 'Ostala zaglavlja tipa dokumenta',
|
||||
label: 'Osobine dokumenta',
|
||||
margin: 'Margine stranice',
|
||||
marginBottom: 'Donja',
|
||||
marginLeft: 'Leva',
|
||||
marginRight: 'Desna',
|
||||
marginTop: 'Gornja',
|
||||
meta: 'Metapodaci',
|
||||
metaAuthor: 'Autor',
|
||||
metaCopyright: 'Autorska prava',
|
||||
metaDescription: 'Opis dokumenta',
|
||||
metaKeywords: 'Ključne reci za indeksiranje dokumenta (razdvojene zarezima)',
|
||||
other: '<остало>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Osobine dokumenta',
|
||||
txtColor: 'Boja teksta',
|
||||
xhtmlDec: 'Ukljuci XHTML deklaracije'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/sr.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/sr.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'sr', {
|
||||
bgColor: 'Боја позадине',
|
||||
bgFixed: 'Фиксирана позадина',
|
||||
bgImage: 'УРЛ позадинске слике',
|
||||
charset: 'Кодирање скупа карактера',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: 'Central European', // MISSING
|
||||
charsetCR: 'Cyrillic', // MISSING
|
||||
charsetCT: 'Chinese Traditional (Big5)', // MISSING
|
||||
charsetGR: 'Greek', // MISSING
|
||||
charsetJP: 'Japanese', // MISSING
|
||||
charsetKR: 'Korean', // MISSING
|
||||
charsetOther: 'Остала кодирања скупа карактера',
|
||||
charsetTR: 'Turkish', // MISSING
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: 'Western European', // MISSING
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: 'Наслов странице',
|
||||
docType: 'Заглавље типа документа',
|
||||
docTypeOther: 'Остала заглавља типа документа',
|
||||
label: 'Особине документа',
|
||||
margin: 'Маргине странице',
|
||||
marginBottom: 'Доња',
|
||||
marginLeft: 'Лева',
|
||||
marginRight: 'Десна',
|
||||
marginTop: 'Горња',
|
||||
meta: 'Метаподаци',
|
||||
metaAuthor: 'Аутор',
|
||||
metaCopyright: 'Ауторска права',
|
||||
metaDescription: 'Опис документа',
|
||||
metaKeywords: 'Кључне речи за индексирање документа (раздвојене зарезом)',
|
||||
other: '<other>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: 'Особине документа',
|
||||
txtColor: 'Боја текста',
|
||||
xhtmlDec: 'Улључи XHTML декларације'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/sv.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/sv.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'sv', {
|
||||
bgColor: 'Bakgrundsfärg',
|
||||
bgFixed: 'Fast bakgrund',
|
||||
bgImage: 'Bakgrundsbildens URL',
|
||||
charset: 'Teckenuppsättningar',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Central Europa',
|
||||
charsetCR: 'Kyrillisk',
|
||||
charsetCT: 'Traditionell Kinesisk (Big5)',
|
||||
charsetGR: 'Grekiska',
|
||||
charsetJP: 'Japanska',
|
||||
charsetKR: 'Koreanska',
|
||||
charsetOther: 'Övriga teckenuppsättningar',
|
||||
charsetTR: 'Turkiska',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Väst Europa',
|
||||
chooseColor: 'Välj',
|
||||
design: 'Design',
|
||||
docTitle: 'Sidtitel',
|
||||
docType: 'Sidhuvud',
|
||||
docTypeOther: 'Övriga sidhuvuden',
|
||||
label: 'Dokumentegenskaper',
|
||||
margin: 'Sidmarginal',
|
||||
marginBottom: 'Botten',
|
||||
marginLeft: 'Vänster',
|
||||
marginRight: 'Höger',
|
||||
marginTop: 'Topp',
|
||||
meta: 'Metadata',
|
||||
metaAuthor: 'Författare',
|
||||
metaCopyright: 'Upphovsrätt',
|
||||
metaDescription: 'Sidans beskrivning',
|
||||
metaKeywords: 'Sidans nyckelord',
|
||||
other: '<annan>',
|
||||
previewHtml: '<p>Detta är en <strong>exempel text</strong>. Du använder <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Dokumentegenskaper',
|
||||
txtColor: 'Textfärg',
|
||||
xhtmlDec: 'Inkludera XHTML deklaration'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/th.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/th.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'th', {
|
||||
bgColor: 'สีพื้นหลัง',
|
||||
bgFixed: 'พื้นหลังแบบไม่มีแถบเลื่อน',
|
||||
bgImage: 'ที่อยู่อ้างอิงออนไลน์ของรูปพื้นหลัง (Image URL)',
|
||||
charset: 'ชุดตัวอักษร',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Central European',
|
||||
charsetCR: 'Cyrillic',
|
||||
charsetCT: 'Chinese Traditional (Big5)',
|
||||
charsetGR: 'Greek',
|
||||
charsetJP: 'Japanese',
|
||||
charsetKR: 'Korean',
|
||||
charsetOther: 'ชุดตัวอักษรอื่นๆ',
|
||||
charsetTR: 'Turkish',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Western European',
|
||||
chooseColor: 'Choose',
|
||||
design: 'ออกแบบ',
|
||||
docTitle: 'ชื่อไตเติ้ล',
|
||||
docType: 'ประเภทของเอกสาร',
|
||||
docTypeOther: 'ประเภทเอกสารอื่นๆ',
|
||||
label: 'คุณสมบัติของเอกสาร',
|
||||
margin: 'ระยะขอบของหน้าเอกสาร',
|
||||
marginBottom: 'ด้านล่าง',
|
||||
marginLeft: 'ด้านซ้าย',
|
||||
marginRight: 'ด้านขวา',
|
||||
marginTop: 'ด้านบน',
|
||||
meta: 'ข้อมูลสำหรับเสิร์ชเอนจิ้น',
|
||||
metaAuthor: 'ผู้สร้างเอกสาร',
|
||||
metaCopyright: 'สงวนลิขสิทธิ์',
|
||||
metaDescription: 'ประโยคอธิบายเกี่ยวกับเอกสาร',
|
||||
metaKeywords: 'คำสำคัญอธิบายเอกสาร (คั่นคำด้วย คอมม่า)',
|
||||
other: '<อื่น ๆ>',
|
||||
previewHtml: '<p>นี่เป็น <strong>ข้อความตัวอย่าง</strong>. คุณกำลังใช้งาน <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'คุณสมบัติของเอกสาร',
|
||||
txtColor: 'สีตัวอักษร',
|
||||
xhtmlDec: 'รวมเอา XHTML Declarations ไว้ด้วย'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/tr.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/tr.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'tr', {
|
||||
bgColor: 'Arka Plan Rengi',
|
||||
bgFixed: 'Sabit Arka Plan',
|
||||
bgImage: 'Arka Plan Resim URLsi',
|
||||
charset: 'Karakter Kümesi Kodlaması',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Orta Avrupa',
|
||||
charsetCR: 'Kiril',
|
||||
charsetCT: 'Geleneksel Çince (Big5)',
|
||||
charsetGR: 'Yunanca',
|
||||
charsetJP: 'Japonca',
|
||||
charsetKR: 'Korece',
|
||||
charsetOther: 'Diğer Karakter Kümesi Kodlaması',
|
||||
charsetTR: 'Türkçe',
|
||||
charsetUN: 'Evrensel Kod (UTF-8)',
|
||||
charsetWE: 'Batı Avrupa',
|
||||
chooseColor: 'Seçiniz',
|
||||
design: 'Dizayn',
|
||||
docTitle: 'Sayfa Başlığı',
|
||||
docType: 'Belge Türü Başlığı',
|
||||
docTypeOther: 'Diğer Belge Türü Başlığı',
|
||||
label: 'Belge Özellikleri',
|
||||
margin: 'Kenar Boşlukları',
|
||||
marginBottom: 'Alt',
|
||||
marginLeft: 'Sol',
|
||||
marginRight: 'Sağ',
|
||||
marginTop: 'Tepe',
|
||||
meta: 'Tanım Bilgisi (Meta)',
|
||||
metaAuthor: 'Yazar',
|
||||
metaCopyright: 'Telif',
|
||||
metaDescription: 'Belge Tanımı',
|
||||
metaKeywords: 'Belge Dizinleme Anahtar Kelimeleri (virgülle ayrılmış)',
|
||||
other: '<diğer>',
|
||||
previewHtml: '<p>Bu bir <strong>örnek metindir</strong>. <a href="javascript:void(0)">CKEditor</a> kullanıyorsunuz.</p>',
|
||||
title: 'Belge Özellikleri',
|
||||
txtColor: 'Yazı Rengi',
|
||||
xhtmlDec: 'XHTML Bildirimlerini Dahil Et'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/ug.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/ug.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'ug', {
|
||||
bgColor: 'تەگلىك رەڭگى',
|
||||
bgFixed: 'تەگلىك سۈرەتنى دومىلاتما',
|
||||
bgImage: 'تەگلىك سۈرەت',
|
||||
charset: 'ھەرپ كودلىنىشى',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'ئوتتۇرا ياۋرۇپا',
|
||||
charsetCR: 'سىلاۋيانچە',
|
||||
charsetCT: 'مۇرەككەپ خەنزۇچە (Big5)',
|
||||
charsetGR: 'گىرېكچە',
|
||||
charsetJP: 'ياپونچە',
|
||||
charsetKR: 'كۆرىيەچە',
|
||||
charsetOther: 'باشقا ھەرپ كودلىنىشى',
|
||||
charsetTR: 'تۈركچە',
|
||||
charsetUN: 'يۇنىكود (UTF-8)',
|
||||
charsetWE: 'غەربىي ياۋرۇپا',
|
||||
chooseColor: 'تاللاڭ',
|
||||
design: 'لايىھە',
|
||||
docTitle: 'بەت ماۋزۇسى',
|
||||
docType: 'پۈتۈك تىپى',
|
||||
docTypeOther: 'باشقا پۈتۈك تىپى',
|
||||
label: 'بەت خاسلىقى',
|
||||
margin: 'بەت گىرۋەك',
|
||||
marginBottom: 'ئاستى',
|
||||
marginLeft: 'سول',
|
||||
marginRight: 'ئوڭ',
|
||||
marginTop: 'ئۈستى',
|
||||
meta: 'مېتا سانلىق مەلۇمات',
|
||||
metaAuthor: 'يازغۇچى',
|
||||
metaCopyright: 'نەشر ھوقۇقى',
|
||||
metaDescription: 'بەت يۈزى چۈشەندۈرۈشى',
|
||||
metaKeywords: 'بەت يۈزى ئىندېكىس ھالقىلىق سۆزى (ئىنگلىزچە پەش [,] بىلەن ئايرىلىدۇ)',
|
||||
other: 'باشقا',
|
||||
previewHtml: '<p>بۇ بىر قىسىم <strong>كۆرسەتمىگە ئىشلىتىدىغان تېكىست </strong>سىز نۆۋەتتە <a href="javascript:void(0)">CKEditor</a>.نى ئىشلىتىۋاتىسىز.</p>',
|
||||
title: 'بەت خاسلىقى',
|
||||
txtColor: 'تېكىست رەڭگى',
|
||||
xhtmlDec: 'XHTML ئېنىقلىمىسىنى ئۆز ئىچىگە ئالىدۇ'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/uk.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/uk.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'uk', {
|
||||
bgColor: 'Колір тла',
|
||||
bgFixed: 'Тло без прокрутки',
|
||||
bgImage: 'URL зображення тла',
|
||||
charset: 'Кодування набору символів',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Центрально-європейська',
|
||||
charsetCR: 'Кирилиця',
|
||||
charsetCT: 'Китайська традиційна (Big5)',
|
||||
charsetGR: 'Грецька',
|
||||
charsetJP: 'Японська',
|
||||
charsetKR: 'Корейська',
|
||||
charsetOther: 'Інше кодування набору символів',
|
||||
charsetTR: 'Турецька',
|
||||
charsetUN: 'Юнікод (UTF-8)',
|
||||
charsetWE: 'Західно-европейская',
|
||||
chooseColor: 'Обрати',
|
||||
design: 'Дизайн',
|
||||
docTitle: 'Заголовок сторінки',
|
||||
docType: 'Заголовок типу документу',
|
||||
docTypeOther: 'Інший заголовок типу документу',
|
||||
label: 'Властивості документа',
|
||||
margin: 'Відступи сторінки',
|
||||
marginBottom: 'Нижній',
|
||||
marginLeft: 'Лівий',
|
||||
marginRight: 'Правий',
|
||||
marginTop: 'Верхній',
|
||||
meta: 'Мета дані',
|
||||
metaAuthor: 'Автор',
|
||||
metaCopyright: 'Авторські права',
|
||||
metaDescription: 'Опис документа',
|
||||
metaKeywords: 'Ключові слова документа (розділені комами)',
|
||||
other: '<інший>',
|
||||
previewHtml: '<p>Це приклад<strong>тексту</strong>. Ви використовуєте<a href="javascript:void(0)"> CKEditor </a>.</p>',
|
||||
title: 'Властивості документа',
|
||||
txtColor: 'Колір тексту',
|
||||
xhtmlDec: 'Ввімкнути XHTML оголошення'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/vi.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/vi.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'vi', {
|
||||
bgColor: 'Màu nền',
|
||||
bgFixed: 'Không cuộn nền',
|
||||
bgImage: 'URL của Hình ảnh nền',
|
||||
charset: 'Bảng mã ký tự',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: 'Trung Âu',
|
||||
charsetCR: 'Tiếng Kirin',
|
||||
charsetCT: 'Tiếng Trung Quốc (Big5)',
|
||||
charsetGR: 'Tiếng Hy Lạp',
|
||||
charsetJP: 'Tiếng Nhật',
|
||||
charsetKR: 'Tiếng Hàn',
|
||||
charsetOther: 'Bảng mã ký tự khác',
|
||||
charsetTR: 'Tiếng Thổ Nhĩ Kỳ',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: 'Tây Âu',
|
||||
chooseColor: 'Chọn màu',
|
||||
design: 'Thiết kế',
|
||||
docTitle: 'Tiêu đề Trang',
|
||||
docType: 'Kiểu Đề mục Tài liệu',
|
||||
docTypeOther: 'Kiểu Đề mục Tài liệu khác',
|
||||
label: 'Thuộc tính Tài liệu',
|
||||
margin: 'Đường biên của Trang',
|
||||
marginBottom: 'Dưới',
|
||||
marginLeft: 'Trái',
|
||||
marginRight: 'Phải',
|
||||
marginTop: 'Trên',
|
||||
meta: 'Siêu dữ liệu',
|
||||
metaAuthor: 'Tác giả',
|
||||
metaCopyright: 'Bản quyền',
|
||||
metaDescription: 'Mô tả tài liệu',
|
||||
metaKeywords: 'Các từ khóa chỉ mục tài liệu (phân cách bởi dấu phẩy)',
|
||||
other: '<khác>',
|
||||
previewHtml: '<p>Đây là một số <strong>văn bản mẫu</strong>. Bạn đang sử dụng <a href="javascript:void(0)">CKEditor</a>.</p>',
|
||||
title: 'Thuộc tính Tài liệu',
|
||||
txtColor: 'Màu chữ',
|
||||
xhtmlDec: 'Bao gồm cả định nghĩa XHTML'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/zh-cn.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/zh-cn.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'zh-cn', {
|
||||
bgColor: '背景颜色',
|
||||
bgFixed: '不滚动背景图像',
|
||||
bgImage: '背景图像',
|
||||
charset: '字符编码',
|
||||
charsetASCII: 'ASCII',
|
||||
charsetCE: '中欧',
|
||||
charsetCR: '西里尔文',
|
||||
charsetCT: '繁体中文 (Big5)',
|
||||
charsetGR: '希腊文',
|
||||
charsetJP: '日文',
|
||||
charsetKR: '韩文',
|
||||
charsetOther: '其它字符编码',
|
||||
charsetTR: '土耳其文',
|
||||
charsetUN: 'Unicode (UTF-8)',
|
||||
charsetWE: '西欧',
|
||||
chooseColor: '选择',
|
||||
design: '设计',
|
||||
docTitle: '页面标题',
|
||||
docType: '文档类型',
|
||||
docTypeOther: '其它文档类型',
|
||||
label: '页面属性',
|
||||
margin: '页面边距',
|
||||
marginBottom: '下',
|
||||
marginLeft: '左',
|
||||
marginRight: '右',
|
||||
marginTop: '上',
|
||||
meta: 'Meta 数据',
|
||||
metaAuthor: '作者',
|
||||
metaCopyright: '版权',
|
||||
metaDescription: '页面说明',
|
||||
metaKeywords: '页面索引关键字 (用半角逗号[,]分隔)',
|
||||
other: '<其他>',
|
||||
previewHtml: '<p>这是一些<strong>演示用文字</strong>。您当前正在使用<a href="javascript:void(0)">CKEditor</a>。</p>',
|
||||
title: '页面属性',
|
||||
txtColor: '文本颜色',
|
||||
xhtmlDec: '包含 XHTML 声明'
|
||||
});
|
||||
42
lib/ckeditor4/plugins/docprops/lang/zh.js
Executable file
42
lib/ckeditor4/plugins/docprops/lang/zh.js
Executable file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'docprops', 'zh', {
|
||||
bgColor: '背景顏色',
|
||||
bgFixed: '浮水印',
|
||||
bgImage: '背景影像',
|
||||
charset: '字元編碼',
|
||||
charsetASCII: 'ASCII', // MISSING
|
||||
charsetCE: '中歐語系',
|
||||
charsetCR: '斯拉夫文',
|
||||
charsetCT: '正體中文 (Big5)',
|
||||
charsetGR: '希臘文',
|
||||
charsetJP: '日文',
|
||||
charsetKR: '韓文',
|
||||
charsetOther: '其他字元編碼',
|
||||
charsetTR: '土耳其文',
|
||||
charsetUN: 'Unicode (UTF-8)', // MISSING
|
||||
charsetWE: '西歐語系',
|
||||
chooseColor: 'Choose',
|
||||
design: 'Design', // MISSING
|
||||
docTitle: '頁面標題',
|
||||
docType: '文件類型',
|
||||
docTypeOther: '其他文件類型',
|
||||
label: '文件屬性',
|
||||
margin: '頁面邊界',
|
||||
marginBottom: '下',
|
||||
marginLeft: '左',
|
||||
marginRight: '右',
|
||||
marginTop: '上',
|
||||
meta: 'Meta 資料',
|
||||
metaAuthor: '作者',
|
||||
metaCopyright: '版權所有',
|
||||
metaDescription: '文件說明',
|
||||
metaKeywords: '文件索引關鍵字 (用半形逗號[,]分隔)',
|
||||
other: '<其他>',
|
||||
previewHtml: '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', // MISSING
|
||||
title: '文件屬性',
|
||||
txtColor: '文字顏色',
|
||||
xhtmlDec: '包含 XHTML 定義'
|
||||
});
|
||||
35
lib/ckeditor4/plugins/docprops/plugin.js
Executable file
35
lib/ckeditor4/plugins/docprops/plugin.js
Executable file
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.add( 'docprops', {
|
||||
requires: 'wysiwygarea,dialog',
|
||||
lang: 'af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE%
|
||||
icons: 'docprops,docprops-rtl', // %REMOVE_LINE_CORE%
|
||||
hidpi: true, // %REMOVE_LINE_CORE%
|
||||
init: function( editor ) {
|
||||
var cmd = new CKEDITOR.dialogCommand( 'docProps' );
|
||||
// Only applicable on full page mode.
|
||||
cmd.modes = { wysiwyg: editor.config.fullPage };
|
||||
cmd.allowedContent = {
|
||||
body: {
|
||||
styles: '*',
|
||||
attributes: 'dir'
|
||||
},
|
||||
html: {
|
||||
attributes: 'lang,xml:lang'
|
||||
}
|
||||
};
|
||||
cmd.requiredContent = 'body';
|
||||
|
||||
editor.addCommand( 'docProps', cmd );
|
||||
CKEDITOR.dialog.add( 'docProps', this.path + 'dialogs/docprops.js' );
|
||||
|
||||
editor.ui.addButton && editor.ui.addButton( 'DocProps', {
|
||||
label: editor.lang.docprops.label,
|
||||
command: 'docProps',
|
||||
toolbar: 'document,30'
|
||||
});
|
||||
}
|
||||
});
|
||||
78
lib/ckeditor4/plugins/docprops/samples/docprops.html
Executable file
78
lib/ckeditor4/plugins/docprops/samples/docprops.html
Executable file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user