Bootstrap version 4
Bootstrap Version 4
100
4/ckeditor/plugins/forms/dialogs/button.js
Executable file
@@ -0,0 +1,100 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.dialog.add( 'button', function( editor ) {
|
||||
function commitAttributes( element ) {
|
||||
var val = this.getValue();
|
||||
if ( val ) {
|
||||
element.attributes[ this.id ] = val;
|
||||
if ( this.id == 'name' )
|
||||
element.attributes[ 'data-cke-saved-name' ] = val;
|
||||
} else {
|
||||
delete element.attributes[ this.id ];
|
||||
if ( this.id == 'name' )
|
||||
delete element.attributes[ 'data-cke-saved-name' ];
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
title: editor.lang.forms.button.title,
|
||||
minWidth: 350,
|
||||
minHeight: 150,
|
||||
onShow: function() {
|
||||
delete this.button;
|
||||
var element = this.getParentEditor().getSelection().getSelectedElement();
|
||||
if ( element && element.is( 'input' ) ) {
|
||||
var type = element.getAttribute( 'type' );
|
||||
if ( type in { button: 1, reset: 1, submit: 1 } ) {
|
||||
this.button = element;
|
||||
this.setupContent( element );
|
||||
}
|
||||
}
|
||||
},
|
||||
onOk: function() {
|
||||
var editor = this.getParentEditor(),
|
||||
element = this.button,
|
||||
isInsertMode = !element;
|
||||
|
||||
var fake = element ? CKEDITOR.htmlParser.fragment.fromHtml( element.getOuterHtml() ).children[ 0 ] : new CKEDITOR.htmlParser.element( 'input' );
|
||||
this.commitContent( fake );
|
||||
|
||||
var writer = new CKEDITOR.htmlParser.basicWriter();
|
||||
fake.writeHtml( writer );
|
||||
var newElement = CKEDITOR.dom.element.createFromHtml( writer.getHtml(), editor.document );
|
||||
|
||||
if ( isInsertMode )
|
||||
editor.insertElement( newElement );
|
||||
else {
|
||||
newElement.replace( element );
|
||||
editor.getSelection().selectElement( newElement );
|
||||
}
|
||||
},
|
||||
contents: [ {
|
||||
id: 'info',
|
||||
label: editor.lang.forms.button.title,
|
||||
title: editor.lang.forms.button.title,
|
||||
elements: [
|
||||
{
|
||||
id: 'name',
|
||||
type: 'text',
|
||||
bidi: true,
|
||||
label: editor.lang.common.name,
|
||||
'default': '',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.data( 'cke-saved-name' ) || element.getAttribute( 'name' ) || '' );
|
||||
},
|
||||
commit: commitAttributes
|
||||
},
|
||||
{
|
||||
id: 'value',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.button.text,
|
||||
accessKey: 'V',
|
||||
'default': '',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'value' ) || '' );
|
||||
},
|
||||
commit: commitAttributes
|
||||
},
|
||||
{
|
||||
id: 'type',
|
||||
type: 'select',
|
||||
label: editor.lang.forms.button.type,
|
||||
'default': 'button',
|
||||
accessKey: 'T',
|
||||
items: [
|
||||
[ editor.lang.forms.button.typeBtn, 'button' ],
|
||||
[ editor.lang.forms.button.typeSbm, 'submit' ],
|
||||
[ editor.lang.forms.button.typeRst, 'reset' ]
|
||||
],
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'type' ) || '' );
|
||||
},
|
||||
commit: commitAttributes
|
||||
}
|
||||
]
|
||||
} ]
|
||||
};
|
||||
} );
|
||||
146
4/ckeditor/plugins/forms/dialogs/checkbox.js
Executable file
@@ -0,0 +1,146 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.dialog.add( 'checkbox', function( editor ) {
|
||||
return {
|
||||
title: editor.lang.forms.checkboxAndRadio.checkboxTitle,
|
||||
minWidth: 350,
|
||||
minHeight: 140,
|
||||
onShow: function() {
|
||||
delete this.checkbox;
|
||||
|
||||
var element = this.getParentEditor().getSelection().getSelectedElement();
|
||||
|
||||
if ( element && element.getAttribute( 'type' ) == 'checkbox' ) {
|
||||
this.checkbox = element;
|
||||
this.setupContent( element );
|
||||
}
|
||||
},
|
||||
onOk: function() {
|
||||
var editor,
|
||||
element = this.checkbox,
|
||||
isInsertMode = !element;
|
||||
|
||||
if ( isInsertMode ) {
|
||||
editor = this.getParentEditor();
|
||||
element = editor.document.createElement( 'input' );
|
||||
element.setAttribute( 'type', 'checkbox' );
|
||||
editor.insertElement( element );
|
||||
}
|
||||
this.commitContent( { element: element } );
|
||||
},
|
||||
contents: [ {
|
||||
id: 'info',
|
||||
label: editor.lang.forms.checkboxAndRadio.checkboxTitle,
|
||||
title: editor.lang.forms.checkboxAndRadio.checkboxTitle,
|
||||
startupFocus: 'txtName',
|
||||
elements: [ {
|
||||
id: 'txtName',
|
||||
type: 'text',
|
||||
label: editor.lang.common.name,
|
||||
'default': '',
|
||||
accessKey: 'N',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.data( 'cke-saved-name' ) || element.getAttribute( 'name' ) || '' );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element;
|
||||
|
||||
// IE failed to update 'name' property on input elements, protect it now.
|
||||
if ( this.getValue() )
|
||||
element.data( 'cke-saved-name', this.getValue() );
|
||||
else {
|
||||
element.data( 'cke-saved-name', false );
|
||||
element.removeAttribute( 'name' );
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'txtValue',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.checkboxAndRadio.value,
|
||||
'default': '',
|
||||
accessKey: 'V',
|
||||
setup: function( element ) {
|
||||
var value = element.getAttribute( 'value' );
|
||||
// IE Return 'on' as default attr value.
|
||||
this.setValue( CKEDITOR.env.ie && value == 'on' ? '' : value );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element,
|
||||
value = this.getValue();
|
||||
|
||||
if ( value && !( CKEDITOR.env.ie && value == 'on' ) )
|
||||
element.setAttribute( 'value', value );
|
||||
else {
|
||||
if ( CKEDITOR.env.ie ) {
|
||||
// Remove attribute 'value' of checkbox (#4721).
|
||||
var checkbox = new CKEDITOR.dom.element( 'input', element.getDocument() );
|
||||
element.copyAttributes( checkbox, { value: 1 } );
|
||||
checkbox.replace( element );
|
||||
editor.getSelection().selectElement( checkbox );
|
||||
data.element = checkbox;
|
||||
} else {
|
||||
element.removeAttribute( 'value' );
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'cmbSelected',
|
||||
type: 'checkbox',
|
||||
label: editor.lang.forms.checkboxAndRadio.selected,
|
||||
'default': '',
|
||||
accessKey: 'S',
|
||||
value: 'checked',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'checked' ) );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element;
|
||||
|
||||
if ( CKEDITOR.env.ie ) {
|
||||
var isElementChecked = !!element.getAttribute( 'checked' ),
|
||||
isChecked = !!this.getValue();
|
||||
|
||||
if ( isElementChecked != isChecked ) {
|
||||
var replace = CKEDITOR.dom.element.createFromHtml( '<input type="checkbox"' + ( isChecked ? ' checked="checked"' : '' ) +
|
||||
'/>', editor.document );
|
||||
|
||||
element.copyAttributes( replace, { type: 1, checked: 1 } );
|
||||
replace.replace( element );
|
||||
editor.getSelection().selectElement( replace );
|
||||
data.element = replace;
|
||||
}
|
||||
} else {
|
||||
var value = this.getValue();
|
||||
if ( value )
|
||||
element.setAttribute( 'checked', 'checked' );
|
||||
else
|
||||
element.removeAttribute( 'checked' );
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'required',
|
||||
type: 'checkbox',
|
||||
label: editor.lang.forms.checkboxAndRadio.required,
|
||||
'default': '',
|
||||
accessKey: 'Q',
|
||||
value: 'required',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'required' ) );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element;
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'required', 'required' );
|
||||
else
|
||||
element.removeAttribute( 'required' );
|
||||
}
|
||||
} ]
|
||||
} ]
|
||||
};
|
||||
} );
|
||||
145
4/ckeditor/plugins/forms/dialogs/form.js
Executable file
@@ -0,0 +1,145 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.dialog.add( 'form', function( editor ) {
|
||||
var autoAttributes = { action: 1, id: 1, method: 1, enctype: 1, target: 1 };
|
||||
|
||||
return {
|
||||
title: editor.lang.forms.form.title,
|
||||
minWidth: 350,
|
||||
minHeight: 200,
|
||||
onShow: function() {
|
||||
delete this.form;
|
||||
|
||||
var path = this.getParentEditor().elementPath(),
|
||||
form = path.contains( 'form', 1 );
|
||||
|
||||
if ( form ) {
|
||||
this.form = form;
|
||||
this.setupContent( form );
|
||||
}
|
||||
},
|
||||
onOk: function() {
|
||||
var editor,
|
||||
element = this.form,
|
||||
isInsertMode = !element;
|
||||
|
||||
if ( isInsertMode ) {
|
||||
editor = this.getParentEditor();
|
||||
element = editor.document.createElement( 'form' );
|
||||
element.appendBogus();
|
||||
}
|
||||
|
||||
if ( isInsertMode )
|
||||
editor.insertElement( element );
|
||||
this.commitContent( element );
|
||||
},
|
||||
onLoad: function() {
|
||||
function autoSetup( element ) {
|
||||
this.setValue( element.getAttribute( this.id ) || '' );
|
||||
}
|
||||
|
||||
function autoCommit( element ) {
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( this.id, this.getValue() );
|
||||
else
|
||||
element.removeAttribute( this.id );
|
||||
}
|
||||
|
||||
this.foreach( function( contentObj ) {
|
||||
if ( autoAttributes[ contentObj.id ] ) {
|
||||
contentObj.setup = autoSetup;
|
||||
contentObj.commit = autoCommit;
|
||||
}
|
||||
} );
|
||||
},
|
||||
contents: [ {
|
||||
id: 'info',
|
||||
label: editor.lang.forms.form.title,
|
||||
title: editor.lang.forms.form.title,
|
||||
elements: [ {
|
||||
id: 'txtName',
|
||||
bidi: true,
|
||||
type: 'text',
|
||||
label: editor.lang.common.name,
|
||||
'default': '',
|
||||
accessKey: 'N',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.data( 'cke-saved-name' ) || element.getAttribute( 'name' ) || '' );
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.data( 'cke-saved-name', this.getValue() );
|
||||
else {
|
||||
element.data( 'cke-saved-name', false );
|
||||
element.removeAttribute( 'name' );
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'action',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.form.action,
|
||||
'default': '',
|
||||
accessKey: 'T'
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
widths: [ '45%', '55%' ],
|
||||
children: [ {
|
||||
id: 'id',
|
||||
type: 'text',
|
||||
label: editor.lang.common.id,
|
||||
'default': '',
|
||||
accessKey: 'I'
|
||||
},
|
||||
{
|
||||
id: 'enctype',
|
||||
type: 'select',
|
||||
label: editor.lang.forms.form.encoding,
|
||||
style: 'width:100%',
|
||||
accessKey: 'E',
|
||||
'default': '',
|
||||
items: [
|
||||
[ '' ],
|
||||
[ 'text/plain' ],
|
||||
[ 'multipart/form-data' ],
|
||||
[ 'application/x-www-form-urlencoded' ]
|
||||
]
|
||||
} ]
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
widths: [ '45%', '55%' ],
|
||||
children: [ {
|
||||
id: 'target',
|
||||
type: 'select',
|
||||
label: editor.lang.common.target,
|
||||
style: 'width:100%',
|
||||
accessKey: 'M',
|
||||
'default': '',
|
||||
items: [
|
||||
[ editor.lang.common.notSet, '' ],
|
||||
[ editor.lang.common.targetNew, '_blank' ],
|
||||
[ editor.lang.common.targetTop, '_top' ],
|
||||
[ editor.lang.common.targetSelf, '_self' ],
|
||||
[ editor.lang.common.targetParent, '_parent' ]
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'method',
|
||||
type: 'select',
|
||||
label: editor.lang.forms.form.method,
|
||||
accessKey: 'M',
|
||||
'default': 'GET',
|
||||
items: [
|
||||
[ 'GET', 'get' ],
|
||||
[ 'POST', 'post' ]
|
||||
]
|
||||
} ]
|
||||
} ]
|
||||
} ]
|
||||
};
|
||||
} );
|
||||
83
4/ckeditor/plugins/forms/dialogs/hiddenfield.js
Executable file
@@ -0,0 +1,83 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.dialog.add( 'hiddenfield', function( editor ) {
|
||||
return {
|
||||
title: editor.lang.forms.hidden.title,
|
||||
hiddenField: null,
|
||||
minWidth: 350,
|
||||
minHeight: 110,
|
||||
onShow: function() {
|
||||
delete this.hiddenField;
|
||||
|
||||
var editor = this.getParentEditor(),
|
||||
selection = editor.getSelection(),
|
||||
element = selection.getSelectedElement();
|
||||
|
||||
if ( element && element.data( 'cke-real-element-type' ) && element.data( 'cke-real-element-type' ) == 'hiddenfield' ) {
|
||||
this.hiddenField = element;
|
||||
element = editor.restoreRealElement( this.hiddenField );
|
||||
this.setupContent( element );
|
||||
selection.selectElement( this.hiddenField );
|
||||
}
|
||||
},
|
||||
onOk: function() {
|
||||
var name = this.getValueOf( 'info', '_cke_saved_name' ),
|
||||
editor = this.getParentEditor(),
|
||||
element = CKEDITOR.env.ie && CKEDITOR.document.$.documentMode < 8 ?
|
||||
editor.document.createElement( '<input name="' + CKEDITOR.tools.htmlEncode( name ) + '">' ) :
|
||||
editor.document.createElement( 'input' );
|
||||
|
||||
element.setAttribute( 'type', 'hidden' );
|
||||
this.commitContent( element );
|
||||
var fakeElement = editor.createFakeElement( element, 'cke_hidden', 'hiddenfield' );
|
||||
if ( !this.hiddenField )
|
||||
editor.insertElement( fakeElement );
|
||||
else {
|
||||
fakeElement.replace( this.hiddenField );
|
||||
editor.getSelection().selectElement( fakeElement );
|
||||
}
|
||||
return true;
|
||||
},
|
||||
contents: [ {
|
||||
id: 'info',
|
||||
label: editor.lang.forms.hidden.title,
|
||||
title: editor.lang.forms.hidden.title,
|
||||
elements: [ {
|
||||
id: '_cke_saved_name',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.hidden.name,
|
||||
'default': '',
|
||||
accessKey: 'N',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.data( 'cke-saved-name' ) || element.getAttribute( 'name' ) || '' );
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'name', this.getValue() );
|
||||
else
|
||||
element.removeAttribute( 'name' );
|
||||
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'value',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.hidden.value,
|
||||
'default': '',
|
||||
accessKey: 'V',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'value' ) || '' );
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'value', this.getValue() );
|
||||
else
|
||||
element.removeAttribute( 'value' );
|
||||
}
|
||||
} ]
|
||||
} ]
|
||||
};
|
||||
} );
|
||||
129
4/ckeditor/plugins/forms/dialogs/radio.js
Executable file
@@ -0,0 +1,129 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.dialog.add( 'radio', function( editor ) {
|
||||
return {
|
||||
title: editor.lang.forms.checkboxAndRadio.radioTitle,
|
||||
minWidth: 350,
|
||||
minHeight: 140,
|
||||
onShow: function() {
|
||||
delete this.radioButton;
|
||||
|
||||
var element = this.getParentEditor().getSelection().getSelectedElement();
|
||||
if ( element && element.getName() == 'input' && element.getAttribute( 'type' ) == 'radio' ) {
|
||||
this.radioButton = element;
|
||||
this.setupContent( element );
|
||||
}
|
||||
},
|
||||
onOk: function() {
|
||||
var editor,
|
||||
element = this.radioButton,
|
||||
isInsertMode = !element;
|
||||
|
||||
if ( isInsertMode ) {
|
||||
editor = this.getParentEditor();
|
||||
element = editor.document.createElement( 'input' );
|
||||
element.setAttribute( 'type', 'radio' );
|
||||
}
|
||||
|
||||
if ( isInsertMode )
|
||||
editor.insertElement( element );
|
||||
this.commitContent( { element: element } );
|
||||
},
|
||||
contents: [ {
|
||||
id: 'info',
|
||||
label: editor.lang.forms.checkboxAndRadio.radioTitle,
|
||||
title: editor.lang.forms.checkboxAndRadio.radioTitle,
|
||||
elements: [ {
|
||||
id: 'name',
|
||||
type: 'text',
|
||||
label: editor.lang.common.name,
|
||||
'default': '',
|
||||
accessKey: 'N',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.data( 'cke-saved-name' ) || element.getAttribute( 'name' ) || '' );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element;
|
||||
|
||||
if ( this.getValue() )
|
||||
element.data( 'cke-saved-name', this.getValue() );
|
||||
else {
|
||||
element.data( 'cke-saved-name', false );
|
||||
element.removeAttribute( 'name' );
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'value',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.checkboxAndRadio.value,
|
||||
'default': '',
|
||||
accessKey: 'V',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'value' ) || '' );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element;
|
||||
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'value', this.getValue() );
|
||||
else
|
||||
element.removeAttribute( 'value' );
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'checked',
|
||||
type: 'checkbox',
|
||||
label: editor.lang.forms.checkboxAndRadio.selected,
|
||||
'default': '',
|
||||
accessKey: 'S',
|
||||
value: 'checked',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'checked' ) );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element;
|
||||
|
||||
if ( !CKEDITOR.env.ie ) {
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'checked', 'checked' );
|
||||
else
|
||||
element.removeAttribute( 'checked' );
|
||||
} else {
|
||||
var isElementChecked = element.getAttribute( 'checked' );
|
||||
var isChecked = !!this.getValue();
|
||||
|
||||
if ( isElementChecked != isChecked ) {
|
||||
var replace = CKEDITOR.dom.element.createFromHtml( '<input type="radio"' + ( isChecked ? ' checked="checked"' : '' ) +
|
||||
'></input>', editor.document );
|
||||
element.copyAttributes( replace, { type: 1, checked: 1 } );
|
||||
replace.replace( element );
|
||||
editor.getSelection().selectElement( replace );
|
||||
data.element = replace;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'required',
|
||||
type: 'checkbox',
|
||||
label: editor.lang.forms.checkboxAndRadio.required,
|
||||
'default': '',
|
||||
accessKey: 'Q',
|
||||
value: 'required',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'required' ) );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element;
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'required', 'required' );
|
||||
else
|
||||
element.removeAttribute( 'required' );
|
||||
}
|
||||
} ]
|
||||
} ]
|
||||
};
|
||||
} );
|
||||
507
4/ckeditor/plugins/forms/dialogs/select.js
Executable file
@@ -0,0 +1,507 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.dialog.add( 'select', function( editor ) {
|
||||
// Add a new option to a SELECT object (combo or list).
|
||||
function addOption( combo, optionText, optionValue, documentObject, index ) {
|
||||
combo = getSelect( combo );
|
||||
var oOption;
|
||||
if ( documentObject )
|
||||
oOption = documentObject.createElement( 'OPTION' );
|
||||
else
|
||||
oOption = document.createElement( 'OPTION' );
|
||||
|
||||
if ( combo && oOption && oOption.getName() == 'option' ) {
|
||||
if ( CKEDITOR.env.ie ) {
|
||||
if ( !isNaN( parseInt( index, 10 ) ) )
|
||||
combo.$.options.add( oOption.$, index );
|
||||
else
|
||||
combo.$.options.add( oOption.$ );
|
||||
|
||||
oOption.$.innerHTML = optionText.length > 0 ? optionText : '';
|
||||
oOption.$.value = optionValue;
|
||||
} else {
|
||||
if ( index !== null && index < combo.getChildCount() )
|
||||
combo.getChild( index < 0 ? 0 : index ).insertBeforeMe( oOption );
|
||||
else
|
||||
combo.append( oOption );
|
||||
|
||||
oOption.setText( optionText.length > 0 ? optionText : '' );
|
||||
oOption.setValue( optionValue );
|
||||
}
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
|
||||
return oOption;
|
||||
}
|
||||
// Remove all selected options from a SELECT object.
|
||||
function removeSelectedOptions( combo ) {
|
||||
combo = getSelect( combo );
|
||||
|
||||
// Save the selected index
|
||||
var iSelectedIndex = getSelectedIndex( combo );
|
||||
|
||||
// Remove all selected options.
|
||||
for ( var i = combo.getChildren().count() - 1; i >= 0; i-- ) {
|
||||
if ( combo.getChild( i ).$.selected )
|
||||
combo.getChild( i ).remove();
|
||||
}
|
||||
|
||||
// Reset the selection based on the original selected index.
|
||||
setSelectedIndex( combo, iSelectedIndex );
|
||||
}
|
||||
//Modify option from a SELECT object.
|
||||
function modifyOption( combo, index, title, value ) {
|
||||
combo = getSelect( combo );
|
||||
if ( index < 0 )
|
||||
return false;
|
||||
var child = combo.getChild( index );
|
||||
child.setText( title );
|
||||
child.setValue( value );
|
||||
return child;
|
||||
}
|
||||
|
||||
function removeAllOptions( combo ) {
|
||||
combo = getSelect( combo );
|
||||
while ( combo.getChild( 0 ) && combo.getChild( 0 ).remove() ) {
|
||||
|
||||
}
|
||||
}
|
||||
// Moves the selected option by a number of steps (also negative).
|
||||
function changeOptionPosition( combo, steps, documentObject ) {
|
||||
combo = getSelect( combo );
|
||||
var iActualIndex = getSelectedIndex( combo );
|
||||
if ( iActualIndex < 0 )
|
||||
return false;
|
||||
|
||||
var iFinalIndex = iActualIndex + steps;
|
||||
iFinalIndex = ( iFinalIndex < 0 ) ? 0 : iFinalIndex;
|
||||
iFinalIndex = ( iFinalIndex >= combo.getChildCount() ) ? combo.getChildCount() - 1 : iFinalIndex;
|
||||
|
||||
if ( iActualIndex == iFinalIndex )
|
||||
return false;
|
||||
|
||||
var oOption = combo.getChild( iActualIndex ),
|
||||
sText = oOption.getText(),
|
||||
sValue = oOption.getValue();
|
||||
|
||||
oOption.remove();
|
||||
|
||||
oOption = addOption( combo, sText, sValue, ( !documentObject ) ? null : documentObject, iFinalIndex );
|
||||
setSelectedIndex( combo, iFinalIndex );
|
||||
return oOption;
|
||||
}
|
||||
|
||||
function getSelectedIndex( combo ) {
|
||||
combo = getSelect( combo );
|
||||
return combo ? combo.$.selectedIndex : -1;
|
||||
}
|
||||
|
||||
function setSelectedIndex( combo, index ) {
|
||||
combo = getSelect( combo );
|
||||
if ( index < 0 )
|
||||
return null;
|
||||
var count = combo.getChildren().count();
|
||||
combo.$.selectedIndex = ( index >= count ) ? ( count - 1 ) : index;
|
||||
return combo;
|
||||
}
|
||||
|
||||
function getOptions( combo ) {
|
||||
combo = getSelect( combo );
|
||||
return combo ? combo.getChildren() : false;
|
||||
}
|
||||
|
||||
function getSelect( obj ) {
|
||||
if ( obj && obj.domId && obj.getInputElement().$ ) // Dialog element.
|
||||
return obj.getInputElement();
|
||||
else if ( obj && obj.$ )
|
||||
return obj;
|
||||
return false;
|
||||
}
|
||||
|
||||
return {
|
||||
title: editor.lang.forms.select.title,
|
||||
minWidth: CKEDITOR.env.ie ? 460 : 395,
|
||||
minHeight: CKEDITOR.env.ie ? 320 : 300,
|
||||
onShow: function() {
|
||||
delete this.selectBox;
|
||||
this.setupContent( 'clear' );
|
||||
var element = this.getParentEditor().getSelection().getSelectedElement();
|
||||
if ( element && element.getName() == 'select' ) {
|
||||
this.selectBox = element;
|
||||
this.setupContent( element.getName(), element );
|
||||
|
||||
// Load Options into dialog.
|
||||
var objOptions = getOptions( element );
|
||||
for ( var i = 0; i < objOptions.count(); i++ )
|
||||
this.setupContent( 'option', objOptions.getItem( i ) );
|
||||
}
|
||||
},
|
||||
onOk: function() {
|
||||
var editor = this.getParentEditor(),
|
||||
element = this.selectBox,
|
||||
isInsertMode = !element;
|
||||
|
||||
if ( isInsertMode )
|
||||
element = editor.document.createElement( 'select' );
|
||||
this.commitContent( element );
|
||||
|
||||
if ( isInsertMode ) {
|
||||
editor.insertElement( element );
|
||||
if ( CKEDITOR.env.ie ) {
|
||||
var sel = editor.getSelection(),
|
||||
bms = sel.createBookmarks();
|
||||
setTimeout( function() {
|
||||
sel.selectBookmarks( bms );
|
||||
}, 0 );
|
||||
}
|
||||
}
|
||||
},
|
||||
contents: [ {
|
||||
id: 'info',
|
||||
label: editor.lang.forms.select.selectInfo,
|
||||
title: editor.lang.forms.select.selectInfo,
|
||||
accessKey: '',
|
||||
elements: [ {
|
||||
id: 'txtName',
|
||||
type: 'text',
|
||||
widths: [ '25%', '75%' ],
|
||||
labelLayout: 'horizontal',
|
||||
label: editor.lang.common.name,
|
||||
'default': '',
|
||||
accessKey: 'N',
|
||||
style: 'width:350px',
|
||||
setup: function( name, element ) {
|
||||
if ( name == 'clear' )
|
||||
this.setValue( this[ 'default' ] || '' );
|
||||
else if ( name == 'select' )
|
||||
this.setValue( element.data( 'cke-saved-name' ) || element.getAttribute( 'name' ) || '' );
|
||||
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.data( 'cke-saved-name', this.getValue() );
|
||||
else {
|
||||
element.data( 'cke-saved-name', false );
|
||||
element.removeAttribute( 'name' );
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'txtValue',
|
||||
type: 'text',
|
||||
widths: [ '25%', '75%' ],
|
||||
labelLayout: 'horizontal',
|
||||
label: editor.lang.forms.select.value,
|
||||
style: 'width:350px',
|
||||
'default': '',
|
||||
className: 'cke_disabled',
|
||||
onLoad: function() {
|
||||
this.getInputElement().setAttribute( 'readOnly', true );
|
||||
},
|
||||
setup: function( name, element ) {
|
||||
if ( name == 'clear' )
|
||||
this.setValue( '' );
|
||||
else if ( name == 'option' && element.getAttribute( 'selected' ) )
|
||||
this.setValue( element.$.value );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
className: 'cke_dialog_forms_select_order_txtsize',
|
||||
widths: [ '175px', '170px' ],
|
||||
children: [ {
|
||||
id: 'txtSize',
|
||||
type: 'text',
|
||||
labelLayout: 'horizontal',
|
||||
label: editor.lang.forms.select.size,
|
||||
'default': '',
|
||||
accessKey: 'S',
|
||||
style: 'width:175px',
|
||||
validate: function() {
|
||||
var func = CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed );
|
||||
return ( ( this.getValue() === '' ) || func.apply( this ) );
|
||||
},
|
||||
setup: function( name, element ) {
|
||||
if ( name == 'select' )
|
||||
this.setValue( element.getAttribute( 'size' ) || '' );
|
||||
if ( CKEDITOR.env.webkit )
|
||||
this.getInputElement().setStyle( 'width', '86px' );
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'size', this.getValue() );
|
||||
else
|
||||
element.removeAttribute( 'size' );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'html',
|
||||
html: '<span>' + CKEDITOR.tools.htmlEncode( editor.lang.forms.select.lines ) + '</span>'
|
||||
} ]
|
||||
},
|
||||
{
|
||||
type: 'html',
|
||||
html: '<span>' + CKEDITOR.tools.htmlEncode( editor.lang.forms.select.opAvail ) + '</span>'
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
widths: [ '115px', '115px', '100px' ],
|
||||
className: 'cke_dialog_forms_select_order',
|
||||
children: [ {
|
||||
type: 'vbox',
|
||||
children: [ {
|
||||
id: 'txtOptName',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.select.opText,
|
||||
style: 'width:115px',
|
||||
setup: function( name ) {
|
||||
if ( name == 'clear' )
|
||||
this.setValue( '' );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'select',
|
||||
id: 'cmbName',
|
||||
label: '',
|
||||
title: '',
|
||||
size: 5,
|
||||
style: 'width:115px;height:75px',
|
||||
items: [],
|
||||
onChange: function() {
|
||||
var dialog = this.getDialog(),
|
||||
values = dialog.getContentElement( 'info', 'cmbValue' ),
|
||||
optName = dialog.getContentElement( 'info', 'txtOptName' ),
|
||||
optValue = dialog.getContentElement( 'info', 'txtOptValue' ),
|
||||
iIndex = getSelectedIndex( this );
|
||||
|
||||
setSelectedIndex( values, iIndex );
|
||||
optName.setValue( this.getValue() );
|
||||
optValue.setValue( values.getValue() );
|
||||
},
|
||||
setup: function( name, element ) {
|
||||
if ( name == 'clear' )
|
||||
removeAllOptions( this );
|
||||
else if ( name == 'option' )
|
||||
addOption( this, element.getText(), element.getText(), this.getDialog().getParentEditor().document );
|
||||
},
|
||||
commit: function( element ) {
|
||||
var dialog = this.getDialog(),
|
||||
optionsNames = getOptions( this ),
|
||||
optionsValues = getOptions( dialog.getContentElement( 'info', 'cmbValue' ) ),
|
||||
selectValue = dialog.getContentElement( 'info', 'txtValue' ).getValue();
|
||||
|
||||
removeAllOptions( element );
|
||||
|
||||
for ( var i = 0; i < optionsNames.count(); i++ ) {
|
||||
var oOption = addOption( element, optionsNames.getItem( i ).getValue(), optionsValues.getItem( i ).getValue(), dialog.getParentEditor().document );
|
||||
if ( optionsValues.getItem( i ).getValue() == selectValue ) {
|
||||
oOption.setAttribute( 'selected', 'selected' );
|
||||
oOption.selected = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
} ]
|
||||
},
|
||||
{
|
||||
type: 'vbox',
|
||||
children: [ {
|
||||
id: 'txtOptValue',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.select.opValue,
|
||||
style: 'width:115px',
|
||||
setup: function( name ) {
|
||||
if ( name == 'clear' )
|
||||
this.setValue( '' );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'select',
|
||||
id: 'cmbValue',
|
||||
label: '',
|
||||
size: 5,
|
||||
style: 'width:115px;height:75px',
|
||||
items: [],
|
||||
onChange: function() {
|
||||
var dialog = this.getDialog(),
|
||||
names = dialog.getContentElement( 'info', 'cmbName' ),
|
||||
optName = dialog.getContentElement( 'info', 'txtOptName' ),
|
||||
optValue = dialog.getContentElement( 'info', 'txtOptValue' ),
|
||||
iIndex = getSelectedIndex( this );
|
||||
|
||||
setSelectedIndex( names, iIndex );
|
||||
optName.setValue( names.getValue() );
|
||||
optValue.setValue( this.getValue() );
|
||||
},
|
||||
setup: function( name, element ) {
|
||||
if ( name == 'clear' )
|
||||
removeAllOptions( this );
|
||||
else if ( name == 'option' ) {
|
||||
var oValue = element.getValue();
|
||||
addOption( this, oValue, oValue, this.getDialog().getParentEditor().document );
|
||||
if ( element.getAttribute( 'selected' ) == 'selected' )
|
||||
this.getDialog().getContentElement( 'info', 'txtValue' ).setValue( oValue );
|
||||
}
|
||||
}
|
||||
} ]
|
||||
},
|
||||
{
|
||||
type: 'vbox',
|
||||
padding: 5,
|
||||
children: [ {
|
||||
type: 'button',
|
||||
id: 'btnAdd',
|
||||
label: editor.lang.forms.select.btnAdd,
|
||||
title: editor.lang.forms.select.btnAdd,
|
||||
style: 'width:100%;',
|
||||
onClick: function() {
|
||||
//Add new option.
|
||||
var dialog = this.getDialog(),
|
||||
optName = dialog.getContentElement( 'info', 'txtOptName' ),
|
||||
optValue = dialog.getContentElement( 'info', 'txtOptValue' ),
|
||||
names = dialog.getContentElement( 'info', 'cmbName' ),
|
||||
values = dialog.getContentElement( 'info', 'cmbValue' );
|
||||
|
||||
addOption( names, optName.getValue(), optName.getValue(), dialog.getParentEditor().document );
|
||||
addOption( values, optValue.getValue(), optValue.getValue(), dialog.getParentEditor().document );
|
||||
|
||||
optName.setValue( '' );
|
||||
optValue.setValue( '' );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'button',
|
||||
id: 'btnModify',
|
||||
label: editor.lang.forms.select.btnModify,
|
||||
title: editor.lang.forms.select.btnModify,
|
||||
style: 'width:100%;',
|
||||
onClick: function() {
|
||||
//Modify selected option.
|
||||
var dialog = this.getDialog(),
|
||||
optName = dialog.getContentElement( 'info', 'txtOptName' ),
|
||||
optValue = dialog.getContentElement( 'info', 'txtOptValue' ),
|
||||
names = dialog.getContentElement( 'info', 'cmbName' ),
|
||||
values = dialog.getContentElement( 'info', 'cmbValue' ),
|
||||
iIndex = getSelectedIndex( names );
|
||||
|
||||
if ( iIndex >= 0 ) {
|
||||
modifyOption( names, iIndex, optName.getValue(), optName.getValue() );
|
||||
modifyOption( values, iIndex, optValue.getValue(), optValue.getValue() );
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'button',
|
||||
id: 'btnUp',
|
||||
style: 'width:100%;',
|
||||
label: editor.lang.forms.select.btnUp,
|
||||
title: editor.lang.forms.select.btnUp,
|
||||
onClick: function() {
|
||||
//Move up.
|
||||
var dialog = this.getDialog(),
|
||||
names = dialog.getContentElement( 'info', 'cmbName' ),
|
||||
values = dialog.getContentElement( 'info', 'cmbValue' );
|
||||
|
||||
changeOptionPosition( names, -1, dialog.getParentEditor().document );
|
||||
changeOptionPosition( values, -1, dialog.getParentEditor().document );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'button',
|
||||
id: 'btnDown',
|
||||
style: 'width:100%;',
|
||||
label: editor.lang.forms.select.btnDown,
|
||||
title: editor.lang.forms.select.btnDown,
|
||||
onClick: function() {
|
||||
//Move down.
|
||||
var dialog = this.getDialog(),
|
||||
names = dialog.getContentElement( 'info', 'cmbName' ),
|
||||
values = dialog.getContentElement( 'info', 'cmbValue' );
|
||||
|
||||
changeOptionPosition( names, 1, dialog.getParentEditor().document );
|
||||
changeOptionPosition( values, 1, dialog.getParentEditor().document );
|
||||
}
|
||||
} ]
|
||||
} ]
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
widths: [ '40%', '20%', '40%' ],
|
||||
children: [ {
|
||||
type: 'button',
|
||||
id: 'btnSetValue',
|
||||
label: editor.lang.forms.select.btnSetValue,
|
||||
title: editor.lang.forms.select.btnSetValue,
|
||||
onClick: function() {
|
||||
//Set as default value.
|
||||
var dialog = this.getDialog(),
|
||||
values = dialog.getContentElement( 'info', 'cmbValue' ),
|
||||
txtValue = dialog.getContentElement( 'info', 'txtValue' );
|
||||
txtValue.setValue( values.getValue() );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'button',
|
||||
id: 'btnDelete',
|
||||
label: editor.lang.forms.select.btnDelete,
|
||||
title: editor.lang.forms.select.btnDelete,
|
||||
onClick: function() {
|
||||
// Delete option.
|
||||
var dialog = this.getDialog(),
|
||||
names = dialog.getContentElement( 'info', 'cmbName' ),
|
||||
values = dialog.getContentElement( 'info', 'cmbValue' ),
|
||||
optName = dialog.getContentElement( 'info', 'txtOptName' ),
|
||||
optValue = dialog.getContentElement( 'info', 'txtOptValue' );
|
||||
|
||||
removeSelectedOptions( names );
|
||||
removeSelectedOptions( values );
|
||||
|
||||
optName.setValue( '' );
|
||||
optValue.setValue( '' );
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'vbox',
|
||||
children: [ {
|
||||
id: 'chkMulti',
|
||||
type: 'checkbox',
|
||||
label: editor.lang.forms.select.chkMulti,
|
||||
'default': '',
|
||||
accessKey: 'M',
|
||||
value: 'checked',
|
||||
setup: function( name, element ) {
|
||||
if ( name == 'select' )
|
||||
this.setValue( element.getAttribute( 'multiple' ) );
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'multiple', this.getValue() );
|
||||
else
|
||||
element.removeAttribute( 'multiple' );
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'required',
|
||||
type: 'checkbox',
|
||||
label: editor.lang.forms.select.required,
|
||||
'default': '',
|
||||
accessKey: 'Q',
|
||||
value: 'checked',
|
||||
setup: function( name, element ) {
|
||||
if ( name == 'select' )
|
||||
this.setValue( element.getAttribute( 'required' ) );
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'required', 'required' );
|
||||
else
|
||||
element.removeAttribute( 'required' );
|
||||
}
|
||||
} ]
|
||||
} ]
|
||||
} ]
|
||||
} ]
|
||||
};
|
||||
} );
|
||||
128
4/ckeditor/plugins/forms/dialogs/textarea.js
Executable file
@@ -0,0 +1,128 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.dialog.add( 'textarea', function( editor ) {
|
||||
return {
|
||||
title: editor.lang.forms.textarea.title,
|
||||
minWidth: 350,
|
||||
minHeight: 220,
|
||||
onShow: function() {
|
||||
delete this.textarea;
|
||||
|
||||
var element = this.getParentEditor().getSelection().getSelectedElement();
|
||||
if ( element && element.getName() == 'textarea' ) {
|
||||
this.textarea = element;
|
||||
this.setupContent( element );
|
||||
}
|
||||
},
|
||||
onOk: function() {
|
||||
var editor,
|
||||
element = this.textarea,
|
||||
isInsertMode = !element;
|
||||
|
||||
if ( isInsertMode ) {
|
||||
editor = this.getParentEditor();
|
||||
element = editor.document.createElement( 'textarea' );
|
||||
}
|
||||
this.commitContent( element );
|
||||
|
||||
if ( isInsertMode )
|
||||
editor.insertElement( element );
|
||||
},
|
||||
contents: [ {
|
||||
id: 'info',
|
||||
label: editor.lang.forms.textarea.title,
|
||||
title: editor.lang.forms.textarea.title,
|
||||
elements: [ {
|
||||
id: '_cke_saved_name',
|
||||
type: 'text',
|
||||
label: editor.lang.common.name,
|
||||
'default': '',
|
||||
accessKey: 'N',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.data( 'cke-saved-name' ) || element.getAttribute( 'name' ) || '' );
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.data( 'cke-saved-name', this.getValue() );
|
||||
else {
|
||||
element.data( 'cke-saved-name', false );
|
||||
element.removeAttribute( 'name' );
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
widths: [ '50%', '50%' ],
|
||||
children: [ {
|
||||
id: 'cols',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.textarea.cols,
|
||||
'default': '',
|
||||
accessKey: 'C',
|
||||
style: 'width:50px',
|
||||
validate: CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed ),
|
||||
setup: function( element ) {
|
||||
var value = element.hasAttribute( 'cols' ) && element.getAttribute( 'cols' );
|
||||
this.setValue( value || '' );
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'cols', this.getValue() );
|
||||
else
|
||||
element.removeAttribute( 'cols' );
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'rows',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.textarea.rows,
|
||||
'default': '',
|
||||
accessKey: 'R',
|
||||
style: 'width:50px',
|
||||
validate: CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed ),
|
||||
setup: function( element ) {
|
||||
var value = element.hasAttribute( 'rows' ) && element.getAttribute( 'rows' );
|
||||
this.setValue( value || '' );
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'rows', this.getValue() );
|
||||
else
|
||||
element.removeAttribute( 'rows' );
|
||||
}
|
||||
} ]
|
||||
},
|
||||
{
|
||||
id: 'value',
|
||||
type: 'textarea',
|
||||
label: editor.lang.forms.textfield.value,
|
||||
'default': '',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.$.defaultValue );
|
||||
},
|
||||
commit: function( element ) {
|
||||
element.$.value = element.$.defaultValue = this.getValue();
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'required',
|
||||
type: 'checkbox',
|
||||
label: editor.lang.forms.textfield.required,
|
||||
'default': '',
|
||||
accessKey: 'Q',
|
||||
value: 'required',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'required' ) );
|
||||
},
|
||||
commit: function( element ) {
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'required', 'required' );
|
||||
else
|
||||
element.removeAttribute( 'required' );
|
||||
}
|
||||
} ]
|
||||
} ]
|
||||
};
|
||||
} );
|
||||
193
4/ckeditor/plugins/forms/dialogs/textfield.js
Executable file
@@ -0,0 +1,193 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.dialog.add( 'textfield', function( editor ) {
|
||||
|
||||
var acceptedTypes = { email: 1, password: 1, search: 1, tel: 1, text: 1, url: 1 };
|
||||
|
||||
function autoCommit( data ) {
|
||||
var element = data.element;
|
||||
var value = this.getValue();
|
||||
|
||||
value ? element.setAttribute( this.id, value ) : element.removeAttribute( this.id );
|
||||
}
|
||||
|
||||
function autoSetup( element ) {
|
||||
var value = element.hasAttribute( this.id ) && element.getAttribute( this.id );
|
||||
this.setValue( value || '' );
|
||||
}
|
||||
|
||||
return {
|
||||
title: editor.lang.forms.textfield.title,
|
||||
minWidth: 350,
|
||||
minHeight: 150,
|
||||
onShow: function() {
|
||||
delete this.textField;
|
||||
|
||||
var element = this.getParentEditor().getSelection().getSelectedElement();
|
||||
if ( element && element.getName() == 'input' && ( acceptedTypes[ element.getAttribute( 'type' ) ] || !element.getAttribute( 'type' ) ) ) {
|
||||
this.textField = element;
|
||||
this.setupContent( element );
|
||||
}
|
||||
},
|
||||
onOk: function() {
|
||||
var editor = this.getParentEditor(),
|
||||
element = this.textField,
|
||||
isInsertMode = !element;
|
||||
|
||||
if ( isInsertMode ) {
|
||||
element = editor.document.createElement( 'input' );
|
||||
element.setAttribute( 'type', 'text' );
|
||||
}
|
||||
|
||||
var data = { element: element };
|
||||
|
||||
if ( isInsertMode )
|
||||
editor.insertElement( data.element );
|
||||
|
||||
this.commitContent( data );
|
||||
|
||||
// Element might be replaced by commitment.
|
||||
if ( !isInsertMode )
|
||||
editor.getSelection().selectElement( data.element );
|
||||
},
|
||||
onLoad: function() {
|
||||
this.foreach( function( contentObj ) {
|
||||
if ( contentObj.getValue ) {
|
||||
if ( !contentObj.setup )
|
||||
contentObj.setup = autoSetup;
|
||||
if ( !contentObj.commit )
|
||||
contentObj.commit = autoCommit;
|
||||
}
|
||||
} );
|
||||
},
|
||||
contents: [ {
|
||||
id: 'info',
|
||||
label: editor.lang.forms.textfield.title,
|
||||
title: editor.lang.forms.textfield.title,
|
||||
elements: [ {
|
||||
type: 'hbox',
|
||||
widths: [ '50%', '50%' ],
|
||||
children: [ {
|
||||
id: '_cke_saved_name',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.textfield.name,
|
||||
'default': '',
|
||||
accessKey: 'N',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.data( 'cke-saved-name' ) || element.getAttribute( 'name' ) || '' );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element;
|
||||
|
||||
if ( this.getValue() )
|
||||
element.data( 'cke-saved-name', this.getValue() );
|
||||
else {
|
||||
element.data( 'cke-saved-name', false );
|
||||
element.removeAttribute( 'name' );
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'value',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.textfield.value,
|
||||
'default': '',
|
||||
accessKey: 'V',
|
||||
commit: function( data ) {
|
||||
if ( CKEDITOR.env.ie && !this.getValue() ) {
|
||||
var element = data.element,
|
||||
fresh = new CKEDITOR.dom.element( 'input', editor.document );
|
||||
element.copyAttributes( fresh, { value: 1 } );
|
||||
fresh.replace( element );
|
||||
data.element = fresh;
|
||||
} else {
|
||||
autoCommit.call( this, data );
|
||||
}
|
||||
}
|
||||
} ]
|
||||
},
|
||||
{
|
||||
type: 'hbox',
|
||||
widths: [ '50%', '50%' ],
|
||||
children: [ {
|
||||
id: 'size',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.textfield.charWidth,
|
||||
'default': '',
|
||||
accessKey: 'C',
|
||||
style: 'width:50px',
|
||||
validate: CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed )
|
||||
},
|
||||
{
|
||||
id: 'maxLength',
|
||||
type: 'text',
|
||||
label: editor.lang.forms.textfield.maxChars,
|
||||
'default': '',
|
||||
accessKey: 'M',
|
||||
style: 'width:50px',
|
||||
validate: CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed )
|
||||
} ],
|
||||
onLoad: function() {
|
||||
// Repaint the style for IE7 (#6068)
|
||||
if ( CKEDITOR.env.ie7Compat )
|
||||
this.getElement().setStyle( 'zoom', '100%' );
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'type',
|
||||
type: 'select',
|
||||
label: editor.lang.forms.textfield.type,
|
||||
'default': 'text',
|
||||
accessKey: 'M',
|
||||
items: [
|
||||
[ editor.lang.forms.textfield.typeEmail, 'email' ],
|
||||
[ editor.lang.forms.textfield.typePass, 'password' ],
|
||||
[ editor.lang.forms.textfield.typeSearch, 'search' ],
|
||||
[ editor.lang.forms.textfield.typeTel, 'tel' ],
|
||||
[ editor.lang.forms.textfield.typeText, 'text' ],
|
||||
[ editor.lang.forms.textfield.typeUrl, 'url' ]
|
||||
],
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'type' ) );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element;
|
||||
|
||||
if ( CKEDITOR.env.ie ) {
|
||||
var elementType = element.getAttribute( 'type' );
|
||||
var myType = this.getValue();
|
||||
|
||||
if ( elementType != myType ) {
|
||||
var replace = CKEDITOR.dom.element.createFromHtml( '<input type="' + myType + '"></input>', editor.document );
|
||||
element.copyAttributes( replace, { type: 1 } );
|
||||
replace.replace( element );
|
||||
data.element = replace;
|
||||
}
|
||||
} else {
|
||||
element.setAttribute( 'type', this.getValue() );
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'required',
|
||||
type: 'checkbox',
|
||||
label: editor.lang.forms.textfield.required,
|
||||
'default': '',
|
||||
accessKey: 'Q',
|
||||
value: 'required',
|
||||
setup: function( element ) {
|
||||
this.setValue( element.getAttribute( 'required' ) );
|
||||
},
|
||||
commit: function( data ) {
|
||||
var element = data.element;
|
||||
if ( this.getValue() )
|
||||
element.setAttribute( 'required', 'required' );
|
||||
else
|
||||
element.removeAttribute( 'required' );
|
||||
}
|
||||
} ]
|
||||
} ]
|
||||
};
|
||||
} );
|
||||
BIN
4/ckeditor/plugins/forms/icons/button.png
Executable file
|
After Width: | Height: | Size: 493 B |
BIN
4/ckeditor/plugins/forms/icons/checkbox.png
Executable file
|
After Width: | Height: | Size: 544 B |
BIN
4/ckeditor/plugins/forms/icons/form.png
Executable file
|
After Width: | Height: | Size: 380 B |
BIN
4/ckeditor/plugins/forms/icons/hiddenfield.png
Executable file
|
After Width: | Height: | Size: 613 B |
BIN
4/ckeditor/plugins/forms/icons/hidpi/button.png
Executable file
|
After Width: | Height: | Size: 833 B |
BIN
4/ckeditor/plugins/forms/icons/hidpi/checkbox.png
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
4/ckeditor/plugins/forms/icons/hidpi/form.png
Executable file
|
After Width: | Height: | Size: 660 B |
BIN
4/ckeditor/plugins/forms/icons/hidpi/hiddenfield.png
Executable file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
4/ckeditor/plugins/forms/icons/hidpi/imagebutton.png
Executable file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
4/ckeditor/plugins/forms/icons/hidpi/radio.png
Executable file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
4/ckeditor/plugins/forms/icons/hidpi/select-rtl.png
Executable file
|
After Width: | Height: | Size: 920 B |
BIN
4/ckeditor/plugins/forms/icons/hidpi/select.png
Executable file
|
After Width: | Height: | Size: 905 B |
BIN
4/ckeditor/plugins/forms/icons/hidpi/textarea-rtl.png
Executable file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
4/ckeditor/plugins/forms/icons/hidpi/textarea.png
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
4/ckeditor/plugins/forms/icons/hidpi/textfield-rtl.png
Executable file
|
After Width: | Height: | Size: 805 B |
BIN
4/ckeditor/plugins/forms/icons/hidpi/textfield.png
Executable file
|
After Width: | Height: | Size: 805 B |
BIN
4/ckeditor/plugins/forms/icons/imagebutton.png
Executable file
|
After Width: | Height: | Size: 755 B |
BIN
4/ckeditor/plugins/forms/icons/radio.png
Executable file
|
After Width: | Height: | Size: 655 B |
BIN
4/ckeditor/plugins/forms/icons/select-rtl.png
Executable file
|
After Width: | Height: | Size: 455 B |
BIN
4/ckeditor/plugins/forms/icons/select.png
Executable file
|
After Width: | Height: | Size: 451 B |
BIN
4/ckeditor/plugins/forms/icons/textarea-rtl.png
Executable file
|
After Width: | Height: | Size: 568 B |
BIN
4/ckeditor/plugins/forms/icons/textarea.png
Executable file
|
After Width: | Height: | Size: 524 B |
BIN
4/ckeditor/plugins/forms/icons/textfield-rtl.png
Executable file
|
After Width: | Height: | Size: 419 B |
BIN
4/ckeditor/plugins/forms/icons/textfield.png
Executable file
|
After Width: | Height: | Size: 419 B |
BIN
4/ckeditor/plugins/forms/images/hiddenfield.gif
Executable file
|
After Width: | Height: | Size: 178 B |
71
4/ckeditor/plugins/forms/lang/af.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'af', {
|
||||
button: {
|
||||
title: 'Knop eienskappe',
|
||||
text: 'Teks (Waarde)',
|
||||
type: 'Soort',
|
||||
typeBtn: 'Knop',
|
||||
typeSbm: 'Stuur',
|
||||
typeRst: 'Maak leeg'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Merkhokkie eienskappe',
|
||||
radioTitle: 'Radioknoppie eienskappe',
|
||||
value: 'Waarde',
|
||||
selected: 'Geselekteer',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Vorm eienskappe',
|
||||
menu: 'Vorm eienskappe',
|
||||
action: 'Aksie',
|
||||
method: 'Metode',
|
||||
encoding: 'Kodering'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Verborge veld eienskappe',
|
||||
name: 'Naam',
|
||||
value: 'Waarde'
|
||||
},
|
||||
select: {
|
||||
title: 'Keuseveld eienskappe',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Beskikbare opsies',
|
||||
value: 'Waarde',
|
||||
size: 'Grootte',
|
||||
lines: 'Lyne',
|
||||
chkMulti: 'Laat meer as een keuse toe',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Teks',
|
||||
opValue: 'Waarde',
|
||||
btnAdd: 'Byvoeg',
|
||||
btnModify: 'Wysig',
|
||||
btnUp: 'Op',
|
||||
btnDown: 'Af',
|
||||
btnSetValue: 'Stel as geselekteerde waarde',
|
||||
btnDelete: 'Verwyder'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Teks-area eienskappe',
|
||||
cols: 'Kolomme',
|
||||
rows: 'Rye'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Teksveld eienskappe',
|
||||
name: 'Naam',
|
||||
value: 'Waarde',
|
||||
charWidth: 'Breedte (karakters)',
|
||||
maxChars: 'Maksimum karakters',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Soort',
|
||||
typeText: 'Teks',
|
||||
typePass: 'Wagwoord',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/ar.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'ar', {
|
||||
button: {
|
||||
title: 'خصائص زر الضغط',
|
||||
text: 'القيمة/التسمية',
|
||||
type: 'نوع الزر',
|
||||
typeBtn: 'زر',
|
||||
typeSbm: 'إرسال',
|
||||
typeRst: 'إعادة تعيين'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'خصائص خانة الإختيار',
|
||||
radioTitle: 'خصائص زر الخيار',
|
||||
value: 'القيمة',
|
||||
selected: 'محدد',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'خصائص النموذج',
|
||||
menu: 'خصائص النموذج',
|
||||
action: 'اسم الملف',
|
||||
method: 'الأسلوب',
|
||||
encoding: 'تشفير'
|
||||
},
|
||||
hidden: {
|
||||
title: 'خصائص الحقل المخفي',
|
||||
name: 'الاسم',
|
||||
value: 'القيمة'
|
||||
},
|
||||
select: {
|
||||
title: 'خصائص اختيار الحقل',
|
||||
selectInfo: 'اختار معلومات',
|
||||
opAvail: 'الخيارات المتاحة',
|
||||
value: 'القيمة',
|
||||
size: 'الحجم',
|
||||
lines: 'الأسطر',
|
||||
chkMulti: 'السماح بتحديدات متعددة',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'النص',
|
||||
opValue: 'القيمة',
|
||||
btnAdd: 'إضافة',
|
||||
btnModify: 'تعديل',
|
||||
btnUp: 'أعلى',
|
||||
btnDown: 'أسفل',
|
||||
btnSetValue: 'إجعلها محددة',
|
||||
btnDelete: 'إزالة'
|
||||
},
|
||||
textarea: {
|
||||
title: 'خصائص مساحة النص',
|
||||
cols: 'الأعمدة',
|
||||
rows: 'الصفوف'
|
||||
},
|
||||
textfield: {
|
||||
title: 'خصائص مربع النص',
|
||||
name: 'الاسم',
|
||||
value: 'القيمة',
|
||||
charWidth: 'عرض السمات',
|
||||
maxChars: 'اقصى عدد للسمات',
|
||||
required: 'Required', // MISSING
|
||||
type: 'نوع المحتوى',
|
||||
typeText: 'نص',
|
||||
typePass: 'كلمة مرور',
|
||||
typeEmail: 'بريد إلكتروني',
|
||||
typeSearch: 'بحث',
|
||||
typeTel: 'رقم الهاتف',
|
||||
typeUrl: 'الرابط'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/az.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'az', {
|
||||
button: {
|
||||
title: 'Düymənin xüsusiyyətləri',
|
||||
text: 'Mətn (kəmiyyət)',
|
||||
type: 'Növ',
|
||||
typeBtn: 'Düymə',
|
||||
typeSbm: 'Təsdiq et',
|
||||
typeRst: 'Dəyişiklikləri imtina et'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Qutucuqun xüsusiyyətləri',
|
||||
radioTitle: 'Radio düyməsinin xüsusiyyətləri',
|
||||
value: 'Kəmiyyət',
|
||||
selected: 'Seçilmiş',
|
||||
required: 'Tələb olunur'
|
||||
},
|
||||
form: {
|
||||
title: 'Formanın xüsusiyyətləri',
|
||||
menu: 'Formanın xüsusiyyətləri',
|
||||
action: 'Emal edən ünvan',
|
||||
method: 'Göndərilmə üsulu',
|
||||
encoding: 'Kodlaşdırma'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Gizli xanasının xüsusiyyətləri',
|
||||
name: 'Ad',
|
||||
value: 'Kəmiyyət'
|
||||
},
|
||||
select: {
|
||||
title: 'SELECT elementinin xüsusiyyətləri',
|
||||
selectInfo: 'SELECT elementinin haqqında məlumat',
|
||||
opAvail: 'Mövcud olan seçimləri',
|
||||
value: 'Kəmiyyət',
|
||||
size: 'Ölçülər',
|
||||
lines: 'xəttlər',
|
||||
chkMulti: 'Çox kəmiyyətli xana',
|
||||
required: 'Tələb olunur',
|
||||
opText: 'Mətn',
|
||||
opValue: 'Kəmiyyət',
|
||||
btnAdd: 'Əıavə et',
|
||||
btnModify: 'Redaktə et',
|
||||
btnUp: 'Yuxarı',
|
||||
btnDown: 'Aşağı',
|
||||
btnSetValue: 'Susmaya görə kəmiyyəti kimi seç',
|
||||
btnDelete: 'Sil'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Mətn xanasının xüsusiyyətləri',
|
||||
cols: 'Sütunlar',
|
||||
rows: 'Sətirlər'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Mətn xanasının xüsusiyyətləri',
|
||||
name: 'Ad',
|
||||
value: 'Kəmiyyət',
|
||||
charWidth: 'İşarənin eni',
|
||||
maxChars: 'İşarələrin hüdudu',
|
||||
required: 'Tələb olunur',
|
||||
type: 'Növ',
|
||||
typeText: 'Mətn',
|
||||
typePass: 'Şifrə',
|
||||
typeEmail: 'E-poçt',
|
||||
typeSearch: 'Axtarış',
|
||||
typeTel: 'Telefon nömrəsi',
|
||||
typeUrl: 'Link'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/bg.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'bg', {
|
||||
button: {
|
||||
title: 'Настройки на бутона',
|
||||
text: 'Текст (стойност)',
|
||||
type: 'Тип',
|
||||
typeBtn: 'Бутон',
|
||||
typeSbm: 'Добави',
|
||||
typeRst: 'Нулиране'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Checkbox Properties',
|
||||
radioTitle: 'Настройки на радиобутон',
|
||||
value: 'Стойност',
|
||||
selected: 'Избрано',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Настройки на формата',
|
||||
menu: 'Настройки на формата',
|
||||
action: 'Действие',
|
||||
method: 'Метод',
|
||||
encoding: 'Кодиране'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Настройки за скрито поле',
|
||||
name: 'Име',
|
||||
value: 'Стойност'
|
||||
},
|
||||
select: {
|
||||
title: 'Selection Field Properties',
|
||||
selectInfo: 'Select Info',
|
||||
opAvail: 'Налични опции',
|
||||
value: 'Стойност',
|
||||
size: 'Размер',
|
||||
lines: 'линии',
|
||||
chkMulti: 'Allow multiple selections',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Текст',
|
||||
opValue: 'Стойност',
|
||||
btnAdd: 'Добави',
|
||||
btnModify: 'Промени',
|
||||
btnUp: 'На горе',
|
||||
btnDown: 'На долу',
|
||||
btnSetValue: 'Set as selected value',
|
||||
btnDelete: 'Изтриване'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Опции за текстовата зона',
|
||||
cols: 'Колони',
|
||||
rows: 'Редове'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Настройки за текстово поле',
|
||||
name: 'Име',
|
||||
value: 'Стойност',
|
||||
charWidth: 'Ширина на знаците',
|
||||
maxChars: 'Макс. знаци',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Тип',
|
||||
typeText: 'Текст',
|
||||
typePass: 'Парола',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Търсене',
|
||||
typeTel: 'Телефонен номер',
|
||||
typeUrl: 'Уеб адрес'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/bn.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'bn', {
|
||||
button: {
|
||||
title: 'বাটন সম্বন্ধীয়',
|
||||
text: 'টেক্সট (ভ্যালু)',
|
||||
type: 'প্রকার',
|
||||
typeBtn: 'বাটন',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'চেক বক্স প্রোপার্টি',
|
||||
radioTitle: 'রেডিও বাটন সম্বন্ধীয়',
|
||||
value: 'ভ্যালু',
|
||||
selected: 'সিলেক্টেড',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'ফর্ম প্রোপার্টি',
|
||||
menu: 'ফর্ম প্রোপার্টি',
|
||||
action: 'একশ্যন',
|
||||
method: 'পদ্ধতি',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'গুপ্ত ফীল্ড প্রোপার্টি',
|
||||
name: 'নাম',
|
||||
value: 'ভ্যালু'
|
||||
},
|
||||
select: {
|
||||
title: 'বাছাই ফীল্ড প্রোপার্টি',
|
||||
selectInfo: 'তথ্য',
|
||||
opAvail: 'অন্যান্য বিকল্প',
|
||||
value: 'ভ্যালু',
|
||||
size: 'সাইজ',
|
||||
lines: 'লাইন সমূহ',
|
||||
chkMulti: 'একাধিক সিলেকশন এলাউ কর',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'টেক্সট',
|
||||
opValue: 'ভ্যালু',
|
||||
btnAdd: 'যুক্ত',
|
||||
btnModify: 'বদলে দাও',
|
||||
btnUp: 'উপর',
|
||||
btnDown: 'নীচে',
|
||||
btnSetValue: 'বাছাই করা ভ্যালু হিসেবে সেট কর',
|
||||
btnDelete: 'ডিলীট'
|
||||
},
|
||||
textarea: {
|
||||
title: 'টেক্সট এরিয়া প্রোপার্টি',
|
||||
cols: 'কলাম',
|
||||
rows: 'রো'
|
||||
},
|
||||
textfield: {
|
||||
title: 'টেক্সট ফীল্ড প্রোপার্টি',
|
||||
name: 'নাম',
|
||||
value: 'ভ্যালু',
|
||||
charWidth: 'ক্যারেক্টার প্রশস্ততা',
|
||||
maxChars: 'সর্বাধিক ক্যারেক্টার',
|
||||
required: 'Required', // MISSING
|
||||
type: 'টাইপ',
|
||||
typeText: 'টেক্সট',
|
||||
typePass: 'পাসওয়ার্ড',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/bs.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'bs', {
|
||||
button: {
|
||||
title: 'Button Properties',
|
||||
text: 'Text (Value)',
|
||||
type: 'Type',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Checkbox Properties',
|
||||
radioTitle: 'Radio Button Properties',
|
||||
value: 'Value',
|
||||
selected: 'Selected',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Form Properties',
|
||||
menu: 'Form Properties',
|
||||
action: 'Action',
|
||||
method: 'Method',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Hidden Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value'
|
||||
},
|
||||
select: {
|
||||
title: 'Selection Field Properties',
|
||||
selectInfo: 'Select Info',
|
||||
opAvail: 'Available Options',
|
||||
value: 'Value',
|
||||
size: 'Size',
|
||||
lines: 'lines',
|
||||
chkMulti: 'Allow multiple selections',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Text',
|
||||
opValue: 'Value',
|
||||
btnAdd: 'Add',
|
||||
btnModify: 'Modify',
|
||||
btnUp: 'Up',
|
||||
btnDown: 'Down',
|
||||
btnSetValue: 'Set as selected value',
|
||||
btnDelete: 'Delete'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textarea Properties',
|
||||
cols: 'Columns',
|
||||
rows: 'Rows'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Text Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value',
|
||||
charWidth: 'Character Width',
|
||||
maxChars: 'Maximum Characters',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Type',
|
||||
typeText: 'Text',
|
||||
typePass: 'Password',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/ca.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'ca', {
|
||||
button: {
|
||||
title: 'Propietats del botó',
|
||||
text: 'Text (Valor)',
|
||||
type: 'Tipus',
|
||||
typeBtn: 'Botó',
|
||||
typeSbm: 'Transmet formulari',
|
||||
typeRst: 'Reinicia formulari'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Propietats de la casella de verificació',
|
||||
radioTitle: 'Propietats del botó d\'opció',
|
||||
value: 'Valor',
|
||||
selected: 'Seleccionat',
|
||||
required: 'Necessari'
|
||||
},
|
||||
form: {
|
||||
title: 'Propietats del formulari',
|
||||
menu: 'Propietats del formulari',
|
||||
action: 'Acció',
|
||||
method: 'Mètode',
|
||||
encoding: 'Codificació'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Propietats del camp ocult',
|
||||
name: 'Nom',
|
||||
value: 'Valor'
|
||||
},
|
||||
select: {
|
||||
title: 'Propietats del camp de selecció',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Opcions disponibles',
|
||||
value: 'Valor',
|
||||
size: 'Mida',
|
||||
lines: 'Línies',
|
||||
chkMulti: 'Permet múltiples seleccions',
|
||||
required: 'Necessari',
|
||||
opText: 'Text',
|
||||
opValue: 'Valor',
|
||||
btnAdd: 'Afegeix',
|
||||
btnModify: 'Modifica',
|
||||
btnUp: 'Amunt',
|
||||
btnDown: 'Avall',
|
||||
btnSetValue: 'Selecciona per defecte',
|
||||
btnDelete: 'Elimina'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Propietats de l\'àrea de text',
|
||||
cols: 'Columnes',
|
||||
rows: 'Files'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Propietats del camp de text',
|
||||
name: 'Nom',
|
||||
value: 'Valor',
|
||||
charWidth: 'Amplada',
|
||||
maxChars: 'Nombre màxim de caràcters',
|
||||
required: 'Necessari',
|
||||
type: 'Tipus',
|
||||
typeText: 'Text',
|
||||
typePass: 'Contrasenya',
|
||||
typeEmail: 'Correu electrònic',
|
||||
typeSearch: 'Cercar',
|
||||
typeTel: 'Número de telèfon',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/cs.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'cs', {
|
||||
button: {
|
||||
title: 'Vlastnosti tlačítka',
|
||||
text: 'Popisek',
|
||||
type: 'Typ',
|
||||
typeBtn: 'Tlačítko',
|
||||
typeSbm: 'Odeslat',
|
||||
typeRst: 'Obnovit'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Vlastnosti zaškrtávacího políčka',
|
||||
radioTitle: 'Vlastnosti přepínače',
|
||||
value: 'Hodnota',
|
||||
selected: 'Zaškrtnuto',
|
||||
required: 'Vyžadováno'
|
||||
},
|
||||
form: {
|
||||
title: 'Vlastnosti formuláře',
|
||||
menu: 'Vlastnosti formuláře',
|
||||
action: 'Akce',
|
||||
method: 'Metoda',
|
||||
encoding: 'Kódování'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Vlastnosti skrytého pole',
|
||||
name: 'Název',
|
||||
value: 'Hodnota'
|
||||
},
|
||||
select: {
|
||||
title: 'Vlastnosti seznamu',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Dostupná nastavení',
|
||||
value: 'Hodnota',
|
||||
size: 'Velikost',
|
||||
lines: 'Řádků',
|
||||
chkMulti: 'Povolit mnohonásobné výběry',
|
||||
required: 'Vyžadováno',
|
||||
opText: 'Text',
|
||||
opValue: 'Hodnota',
|
||||
btnAdd: 'Přidat',
|
||||
btnModify: 'Změnit',
|
||||
btnUp: 'Nahoru',
|
||||
btnDown: 'Dolů',
|
||||
btnSetValue: 'Nastavit jako vybranou hodnotu',
|
||||
btnDelete: 'Smazat'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Vlastnosti textové oblasti',
|
||||
cols: 'Sloupců',
|
||||
rows: 'Řádků'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Vlastnosti textového pole',
|
||||
name: 'Název',
|
||||
value: 'Hodnota',
|
||||
charWidth: 'Šířka ve znacích',
|
||||
maxChars: 'Maximální počet znaků',
|
||||
required: 'Vyžadováno',
|
||||
type: 'Typ',
|
||||
typeText: 'Text',
|
||||
typePass: 'Heslo',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Hledat',
|
||||
typeTel: 'Telefonní číslo',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/cy.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'cy', {
|
||||
button: {
|
||||
title: 'Priodweddau Botymau',
|
||||
text: 'Testun (Gwerth)',
|
||||
type: 'Math',
|
||||
typeBtn: 'Botwm',
|
||||
typeSbm: 'Anfon',
|
||||
typeRst: 'Ailosod'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Priodweddau Blwch Ticio',
|
||||
radioTitle: 'Priodweddau Botwm Radio',
|
||||
value: 'Gwerth',
|
||||
selected: 'Dewiswyd',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Priodweddau Ffurflen',
|
||||
menu: 'Priodweddau Ffurflen',
|
||||
action: 'Gweithred',
|
||||
method: 'Dull',
|
||||
encoding: 'Amgodio'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Priodweddau Maes Cudd',
|
||||
name: 'Enw',
|
||||
value: 'Gwerth'
|
||||
},
|
||||
select: {
|
||||
title: 'Priodweddau Maes Dewis',
|
||||
selectInfo: 'Gwyb Dewis',
|
||||
opAvail: 'Opsiynau ar Gael',
|
||||
value: 'Gwerth',
|
||||
size: 'Maint',
|
||||
lines: 'llinellau',
|
||||
chkMulti: 'Caniatàu aml-ddewisiadau',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Testun',
|
||||
opValue: 'Gwerth',
|
||||
btnAdd: 'Ychwanegu',
|
||||
btnModify: 'Newid',
|
||||
btnUp: 'Lan',
|
||||
btnDown: 'Lawr',
|
||||
btnSetValue: 'Gosod fel gwerth a ddewiswyd',
|
||||
btnDelete: 'Dileu'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Priodweddau Ardal Testun',
|
||||
cols: 'Colofnau',
|
||||
rows: 'Rhesi'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Priodweddau Maes Testun',
|
||||
name: 'Enw',
|
||||
value: 'Gwerth',
|
||||
charWidth: 'Lled Nod',
|
||||
maxChars: 'Uchafswm y Nodau',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Math',
|
||||
typeText: 'Testun',
|
||||
typePass: 'Cyfrinair',
|
||||
typeEmail: 'Ebost',
|
||||
typeSearch: 'Chwilio',
|
||||
typeTel: 'Rhif Ffôn',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/da.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'da', {
|
||||
button: {
|
||||
title: 'Egenskaber for knap',
|
||||
text: 'Tekst',
|
||||
type: 'Type',
|
||||
typeBtn: 'Knap',
|
||||
typeSbm: 'Send',
|
||||
typeRst: 'Nulstil'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Egenskaber for afkrydsningsfelt',
|
||||
radioTitle: 'Egenskaber for alternativknap',
|
||||
value: 'Værdi',
|
||||
selected: 'Valgt',
|
||||
required: 'Påkrævet'
|
||||
},
|
||||
form: {
|
||||
title: 'Egenskaber for formular',
|
||||
menu: 'Egenskaber for formular',
|
||||
action: 'Handling',
|
||||
method: 'Metode',
|
||||
encoding: 'Kodning (encoding)'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Egenskaber for skjult felt',
|
||||
name: 'Navn',
|
||||
value: 'Værdi'
|
||||
},
|
||||
select: {
|
||||
title: 'Egenskaber for liste',
|
||||
selectInfo: 'Generelt',
|
||||
opAvail: 'Valgmuligheder',
|
||||
value: 'Værdi',
|
||||
size: 'Størrelse',
|
||||
lines: 'Linjer',
|
||||
chkMulti: 'Tillad flere valg',
|
||||
required: 'Påkrævet',
|
||||
opText: 'Tekst',
|
||||
opValue: 'Værdi',
|
||||
btnAdd: 'Tilføj',
|
||||
btnModify: 'Redigér',
|
||||
btnUp: 'Op',
|
||||
btnDown: 'Ned',
|
||||
btnSetValue: 'Sæt som valgt',
|
||||
btnDelete: 'Slet'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Egenskaber for tekstboks',
|
||||
cols: 'Kolonner',
|
||||
rows: 'Rækker'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Egenskaber for tekstfelt',
|
||||
name: 'Navn',
|
||||
value: 'Værdi',
|
||||
charWidth: 'Bredde (tegn)',
|
||||
maxChars: 'Max. antal tegn',
|
||||
required: 'Påkrævet',
|
||||
type: 'Type',
|
||||
typeText: 'Tekst',
|
||||
typePass: 'Adgangskode',
|
||||
typeEmail: 'E-mail',
|
||||
typeSearch: 'Søg',
|
||||
typeTel: 'Telefon nummer',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/de-ch.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'de-ch', {
|
||||
button: {
|
||||
title: 'Schaltflächeneigenschaften',
|
||||
text: 'Text (Wert)',
|
||||
type: 'Typ',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Absenden',
|
||||
typeRst: 'Zurücksetzen'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Kontrollboxeigenschaften',
|
||||
radioTitle: 'Optionsfeldeigenschaften',
|
||||
value: 'Wert',
|
||||
selected: 'Ausgewählt',
|
||||
required: 'Erforderlich'
|
||||
},
|
||||
form: {
|
||||
title: 'Formulareigenschaften',
|
||||
menu: 'Formulareigenschaften',
|
||||
action: 'Aktion',
|
||||
method: 'Methode',
|
||||
encoding: 'Kodierung'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Versteckte Feldeigenschaften',
|
||||
name: 'Name',
|
||||
value: 'Wert'
|
||||
},
|
||||
select: {
|
||||
title: 'Auswahlfeldeigenschaften',
|
||||
selectInfo: 'Info auswählen',
|
||||
opAvail: 'Verfügbare Optionen',
|
||||
value: 'Wert',
|
||||
size: 'Grösse',
|
||||
lines: 'Linien',
|
||||
chkMulti: 'Mehrfachauswahl erlauben',
|
||||
required: 'Erforderlich',
|
||||
opText: 'Text',
|
||||
opValue: 'Wert',
|
||||
btnAdd: 'Hinzufügen',
|
||||
btnModify: 'Ändern',
|
||||
btnUp: 'Hoch',
|
||||
btnDown: 'Runter',
|
||||
btnSetValue: 'Als ausgewählten Wert festlegen',
|
||||
btnDelete: 'Entfernen'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textfeldeigenschaften',
|
||||
cols: 'Spalten',
|
||||
rows: 'Reihen'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Textfeldeigenschaften',
|
||||
name: 'Name',
|
||||
value: 'Wert',
|
||||
charWidth: 'Zeichenbreite',
|
||||
maxChars: 'Max. Zeichen',
|
||||
required: 'Erforderlich',
|
||||
type: 'Typ',
|
||||
typeText: 'Text',
|
||||
typePass: 'Passwort',
|
||||
typeEmail: 'E-mail',
|
||||
typeSearch: 'Suche',
|
||||
typeTel: 'Telefonnummer',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/de.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'de', {
|
||||
button: {
|
||||
title: 'Schaltflächeneigenschaften',
|
||||
text: 'Text (Wert)',
|
||||
type: 'Typ',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Absenden',
|
||||
typeRst: 'Zurücksetzen'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Kontrollboxeigenschaften',
|
||||
radioTitle: 'Optionsfeldeigenschaften',
|
||||
value: 'Wert',
|
||||
selected: 'Ausgewählt',
|
||||
required: 'Erforderlich'
|
||||
},
|
||||
form: {
|
||||
title: 'Formulareigenschaften',
|
||||
menu: 'Formulareigenschaften',
|
||||
action: 'Aktion',
|
||||
method: 'Methode',
|
||||
encoding: 'Kodierung'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Versteckte Feldeigenschaften',
|
||||
name: 'Name',
|
||||
value: 'Wert'
|
||||
},
|
||||
select: {
|
||||
title: 'Auswahlfeldeigenschaften',
|
||||
selectInfo: 'Info auswählen',
|
||||
opAvail: 'Verfügbare Optionen',
|
||||
value: 'Wert',
|
||||
size: 'Größe',
|
||||
lines: 'Linien',
|
||||
chkMulti: 'Mehrfachauswahl erlauben',
|
||||
required: 'Erforderlich',
|
||||
opText: 'Text',
|
||||
opValue: 'Wert',
|
||||
btnAdd: 'Hinzufügen',
|
||||
btnModify: 'Ändern',
|
||||
btnUp: 'Hoch',
|
||||
btnDown: 'Runter',
|
||||
btnSetValue: 'Als ausgewählten Wert festlegen',
|
||||
btnDelete: 'Entfernen'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textfeldeigenschaften',
|
||||
cols: 'Spalten',
|
||||
rows: 'Reihen'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Textfeldeigenschaften',
|
||||
name: 'Name',
|
||||
value: 'Wert',
|
||||
charWidth: 'Zeichenbreite',
|
||||
maxChars: 'Max. Zeichen',
|
||||
required: 'Erforderlich',
|
||||
type: 'Typ',
|
||||
typeText: 'Text',
|
||||
typePass: 'Passwort',
|
||||
typeEmail: 'E-mail',
|
||||
typeSearch: 'Suche',
|
||||
typeTel: 'Telefonnummer',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/el.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'el', {
|
||||
button: {
|
||||
title: 'Ιδιότητες Κουμπιού',
|
||||
text: 'Κείμενο (Τιμή)',
|
||||
type: 'Τύπος',
|
||||
typeBtn: 'Κουμπί',
|
||||
typeSbm: 'Υποβολή',
|
||||
typeRst: 'Επαναφορά'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Ιδιότητες Κουτιού Επιλογής',
|
||||
radioTitle: 'Ιδιότητες Κουμπιού Επιλογής',
|
||||
value: 'Τιμή',
|
||||
selected: 'Επιλεγμένο',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Ιδιότητες Φόρμας',
|
||||
menu: 'Ιδιότητες Φόρμας',
|
||||
action: 'Ενέργεια',
|
||||
method: 'Μέθοδος',
|
||||
encoding: 'Κωδικοποίηση'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Ιδιότητες Κρυφού Πεδίου',
|
||||
name: 'Όνομα',
|
||||
value: 'Τιμή'
|
||||
},
|
||||
select: {
|
||||
title: 'Ιδιότητες Πεδίου Επιλογής',
|
||||
selectInfo: 'Πληροφορίες Πεδίου Επιλογής',
|
||||
opAvail: 'Διαθέσιμες Επιλογές',
|
||||
value: 'Τιμή',
|
||||
size: 'Μέγεθος',
|
||||
lines: 'γραμμές',
|
||||
chkMulti: 'Να επιτρέπονται οι πολλαπλές επιλογές',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Κείμενο',
|
||||
opValue: 'Τιμή',
|
||||
btnAdd: 'Προσθήκη',
|
||||
btnModify: 'Τροποποίηση',
|
||||
btnUp: 'Πάνω',
|
||||
btnDown: 'Κάτω',
|
||||
btnSetValue: 'Θέση ως προεπιλογή',
|
||||
btnDelete: 'Διαγραφή'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Ιδιότητες Περιοχής Κειμένου',
|
||||
cols: 'Στήλες',
|
||||
rows: 'Σειρές'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Ιδιότητες Πεδίου Κειμένου',
|
||||
name: 'Όνομα',
|
||||
value: 'Τιμή',
|
||||
charWidth: 'Πλάτος Χαρακτήρων',
|
||||
maxChars: 'Μέγιστοι χαρακτήρες',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Τύπος',
|
||||
typeText: 'Κείμενο',
|
||||
typePass: 'Κωδικός',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Αναζήτηση',
|
||||
typeTel: 'Αριθμός Τηλεφώνου',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/en-au.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'en-au', {
|
||||
button: {
|
||||
title: 'Button Properties',
|
||||
text: 'Text (Value)',
|
||||
type: 'Type',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Checkbox Properties',
|
||||
radioTitle: 'Radio Button Properties',
|
||||
value: 'Value',
|
||||
selected: 'Selected',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Form Properties',
|
||||
menu: 'Form Properties',
|
||||
action: 'Action',
|
||||
method: 'Method',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Hidden Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value'
|
||||
},
|
||||
select: {
|
||||
title: 'Selection Field Properties',
|
||||
selectInfo: 'Select Info',
|
||||
opAvail: 'Available Options',
|
||||
value: 'Value',
|
||||
size: 'Size',
|
||||
lines: 'lines',
|
||||
chkMulti: 'Allow multiple selections',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Text',
|
||||
opValue: 'Value',
|
||||
btnAdd: 'Add',
|
||||
btnModify: 'Modify',
|
||||
btnUp: 'Up',
|
||||
btnDown: 'Down',
|
||||
btnSetValue: 'Set as selected value',
|
||||
btnDelete: 'Delete'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textarea Properties',
|
||||
cols: 'Columns',
|
||||
rows: 'Rows'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Text Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value',
|
||||
charWidth: 'Character Width',
|
||||
maxChars: 'Maximum Characters',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Type',
|
||||
typeText: 'Text',
|
||||
typePass: 'Password',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/en-ca.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'en-ca', {
|
||||
button: {
|
||||
title: 'Button Properties',
|
||||
text: 'Text (Value)',
|
||||
type: 'Type',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Checkbox Properties',
|
||||
radioTitle: 'Radio Button Properties',
|
||||
value: 'Value',
|
||||
selected: 'Selected',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Form Properties',
|
||||
menu: 'Form Properties',
|
||||
action: 'Action',
|
||||
method: 'Method',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Hidden Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value'
|
||||
},
|
||||
select: {
|
||||
title: 'Selection Field Properties',
|
||||
selectInfo: 'Select Info',
|
||||
opAvail: 'Available Options',
|
||||
value: 'Value',
|
||||
size: 'Size',
|
||||
lines: 'lines',
|
||||
chkMulti: 'Allow multiple selections',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Text',
|
||||
opValue: 'Value',
|
||||
btnAdd: 'Add',
|
||||
btnModify: 'Modify',
|
||||
btnUp: 'Up',
|
||||
btnDown: 'Down',
|
||||
btnSetValue: 'Set as selected value',
|
||||
btnDelete: 'Delete'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textarea Properties',
|
||||
cols: 'Columns',
|
||||
rows: 'Rows'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Text Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value',
|
||||
charWidth: 'Character Width',
|
||||
maxChars: 'Maximum Characters',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Type',
|
||||
typeText: 'Text',
|
||||
typePass: 'Password',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/en-gb.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'en-gb', {
|
||||
button: {
|
||||
title: 'Button Properties',
|
||||
text: 'Text (Value)',
|
||||
type: 'Type',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Checkbox Properties',
|
||||
radioTitle: 'Radio Button Properties',
|
||||
value: 'Value',
|
||||
selected: 'Selected',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Form Properties',
|
||||
menu: 'Form Properties',
|
||||
action: 'Action',
|
||||
method: 'Method',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Hidden Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value'
|
||||
},
|
||||
select: {
|
||||
title: 'Selection Field Properties',
|
||||
selectInfo: 'Select Info',
|
||||
opAvail: 'Available Options',
|
||||
value: 'Value',
|
||||
size: 'Size',
|
||||
lines: 'lines',
|
||||
chkMulti: 'Allow multiple selections',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Text',
|
||||
opValue: 'Value',
|
||||
btnAdd: 'Add',
|
||||
btnModify: 'Modify',
|
||||
btnUp: 'Up',
|
||||
btnDown: 'Down',
|
||||
btnSetValue: 'Set as selected value',
|
||||
btnDelete: 'Delete'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textarea Properties',
|
||||
cols: 'Columns',
|
||||
rows: 'Rows'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Text Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value',
|
||||
charWidth: 'Character Width',
|
||||
maxChars: 'Maximum Characters',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Type',
|
||||
typeText: 'Text',
|
||||
typePass: 'Password',
|
||||
typeEmail: 'E-mail',
|
||||
typeSearch: 'Search',
|
||||
typeTel: 'Telephone Number',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/en.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'en', {
|
||||
button: {
|
||||
title: 'Button Properties',
|
||||
text: 'Text (Value)',
|
||||
type: 'Type',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Checkbox Properties',
|
||||
radioTitle: 'Radio Button Properties',
|
||||
value: 'Value',
|
||||
selected: 'Selected',
|
||||
required: 'Required'
|
||||
},
|
||||
form: {
|
||||
title: 'Form Properties',
|
||||
menu: 'Form Properties',
|
||||
action: 'Action',
|
||||
method: 'Method',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Hidden Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value'
|
||||
},
|
||||
select: {
|
||||
title: 'Selection Field Properties',
|
||||
selectInfo: 'Select Info',
|
||||
opAvail: 'Available Options',
|
||||
value: 'Value',
|
||||
size: 'Size',
|
||||
lines: 'lines',
|
||||
chkMulti: 'Allow multiple selections',
|
||||
required: 'Required',
|
||||
opText: 'Text',
|
||||
opValue: 'Value',
|
||||
btnAdd: 'Add',
|
||||
btnModify: 'Modify',
|
||||
btnUp: 'Up',
|
||||
btnDown: 'Down',
|
||||
btnSetValue: 'Set as selected value',
|
||||
btnDelete: 'Delete'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textarea Properties',
|
||||
cols: 'Columns',
|
||||
rows: 'Rows'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Text Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value',
|
||||
charWidth: 'Character Width',
|
||||
maxChars: 'Maximum Characters',
|
||||
required: 'Required',
|
||||
type: 'Type',
|
||||
typeText: 'Text',
|
||||
typePass: 'Password',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Search',
|
||||
typeTel: 'Telephone Number',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/eo.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'eo', {
|
||||
button: {
|
||||
title: 'Butonaj atributoj',
|
||||
text: 'Teksto (Valoro)',
|
||||
type: 'Tipo',
|
||||
typeBtn: 'Butono',
|
||||
typeSbm: 'Validigi (submit)',
|
||||
typeRst: 'Remeti en la originstaton (Reset)'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Markobutonaj Atributoj',
|
||||
radioTitle: 'Radiobutonaj Atributoj',
|
||||
value: 'Valoro',
|
||||
selected: 'Selektita',
|
||||
required: 'Postulata'
|
||||
},
|
||||
form: {
|
||||
title: 'Formularaj Atributoj',
|
||||
menu: 'Formularaj Atributoj',
|
||||
action: 'Ago',
|
||||
method: 'Metodo',
|
||||
encoding: 'Kodoprezento'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Atributoj de Kaŝita Kampo',
|
||||
name: 'Nomo',
|
||||
value: 'Valoro'
|
||||
},
|
||||
select: {
|
||||
title: 'Atributoj de Elekta Kampo',
|
||||
selectInfo: 'Informoj pri la rulummenuo',
|
||||
opAvail: 'Elektoj Disponeblaj',
|
||||
value: 'Valoro',
|
||||
size: 'Grando',
|
||||
lines: 'Linioj',
|
||||
chkMulti: 'Permesi Plurajn Elektojn',
|
||||
required: 'Postulata',
|
||||
opText: 'Teksto',
|
||||
opValue: 'Valoro',
|
||||
btnAdd: 'Aldoni',
|
||||
btnModify: 'Modifi',
|
||||
btnUp: 'Supren',
|
||||
btnDown: 'Malsupren',
|
||||
btnSetValue: 'Agordi kiel Elektitan Valoron',
|
||||
btnDelete: 'Forigi'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Atributoj de Teksta Areo',
|
||||
cols: 'Kolumnoj',
|
||||
rows: 'Linioj'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Atributoj de Teksta Kampo',
|
||||
name: 'Nomo',
|
||||
value: 'Valoro',
|
||||
charWidth: 'Signolarĝo',
|
||||
maxChars: 'Maksimuma Nombro da Signoj',
|
||||
required: 'Postulata',
|
||||
type: 'Tipo',
|
||||
typeText: 'Teksto',
|
||||
typePass: 'Pasvorto',
|
||||
typeEmail: 'retpoŝtadreso',
|
||||
typeSearch: 'Serĉi',
|
||||
typeTel: 'Telefonnumero',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/es.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'es', {
|
||||
button: {
|
||||
title: 'Propiedades de Botón',
|
||||
text: 'Texto (Valor)',
|
||||
type: 'Tipo',
|
||||
typeBtn: 'Boton',
|
||||
typeSbm: 'Enviar',
|
||||
typeRst: 'Reestablecer'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Propiedades de Casilla',
|
||||
radioTitle: 'Propiedades de Botón de Radio',
|
||||
value: 'Valor',
|
||||
selected: 'Seleccionado',
|
||||
required: 'Requerido'
|
||||
},
|
||||
form: {
|
||||
title: 'Propiedades de Formulario',
|
||||
menu: 'Propiedades de Formulario',
|
||||
action: 'Acción',
|
||||
method: 'Método',
|
||||
encoding: 'Codificación'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Propiedades de Campo Oculto',
|
||||
name: 'Nombre',
|
||||
value: 'Valor'
|
||||
},
|
||||
select: {
|
||||
title: 'Propiedades de Campo de Selección',
|
||||
selectInfo: 'Información',
|
||||
opAvail: 'Opciones disponibles',
|
||||
value: 'Valor',
|
||||
size: 'Tamaño',
|
||||
lines: 'Lineas',
|
||||
chkMulti: 'Permitir múltiple selección',
|
||||
required: 'Requerido',
|
||||
opText: 'Texto',
|
||||
opValue: 'Valor',
|
||||
btnAdd: 'Agregar',
|
||||
btnModify: 'Modificar',
|
||||
btnUp: 'Subir',
|
||||
btnDown: 'Bajar',
|
||||
btnSetValue: 'Establecer como predeterminado',
|
||||
btnDelete: 'Eliminar'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Propiedades de Area de Texto',
|
||||
cols: 'Columnas',
|
||||
rows: 'Filas'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Propiedades de Campo de Texto',
|
||||
name: 'Nombre',
|
||||
value: 'Valor',
|
||||
charWidth: 'Caracteres de ancho',
|
||||
maxChars: 'Máximo caracteres',
|
||||
required: 'Requerido',
|
||||
type: 'Tipo',
|
||||
typeText: 'Texto',
|
||||
typePass: 'Contraseña',
|
||||
typeEmail: 'Correo electrónico',
|
||||
typeSearch: 'Buscar',
|
||||
typeTel: 'Número de teléfono',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/et.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'et', {
|
||||
button: {
|
||||
title: 'Nupu omadused',
|
||||
text: 'Tekst (väärtus)',
|
||||
type: 'Liik',
|
||||
typeBtn: 'Nupp',
|
||||
typeSbm: 'Saada',
|
||||
typeRst: 'Lähtesta'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Märkeruudu omadused',
|
||||
radioTitle: 'Raadionupu omadused',
|
||||
value: 'Väärtus',
|
||||
selected: 'Märgitud',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Vormi omadused',
|
||||
menu: 'Vormi omadused',
|
||||
action: 'Toiming',
|
||||
method: 'Meetod',
|
||||
encoding: 'Kodeering'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Varjatud lahtri omadused',
|
||||
name: 'Nimi',
|
||||
value: 'Väärtus'
|
||||
},
|
||||
select: {
|
||||
title: 'Valiklahtri omadused',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Võimalikud valikud:',
|
||||
value: 'Väärtus',
|
||||
size: 'Suurus',
|
||||
lines: 'ridu',
|
||||
chkMulti: 'Võimalik mitu valikut',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Tekst',
|
||||
opValue: 'Väärtus',
|
||||
btnAdd: 'Lisa',
|
||||
btnModify: 'Muuda',
|
||||
btnUp: 'Üles',
|
||||
btnDown: 'Alla',
|
||||
btnSetValue: 'Määra vaikimisi',
|
||||
btnDelete: 'Kustuta'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Tekstiala omadused',
|
||||
cols: 'Veerge',
|
||||
rows: 'Ridu'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Tekstilahtri omadused',
|
||||
name: 'Nimi',
|
||||
value: 'Väärtus',
|
||||
charWidth: 'Laius (tähemärkides)',
|
||||
maxChars: 'Maksimaalselt tähemärke',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Liik',
|
||||
typeText: 'Tekst',
|
||||
typePass: 'Parool',
|
||||
typeEmail: 'E-mail',
|
||||
typeSearch: 'Otsi',
|
||||
typeTel: 'Telefon',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/eu.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'eu', {
|
||||
button: {
|
||||
title: 'Botoiaren ezaugarriak',
|
||||
text: 'Testua (balioa)',
|
||||
type: 'Mota',
|
||||
typeBtn: 'Botoia',
|
||||
typeSbm: 'Bidali',
|
||||
typeRst: 'Berrezarri'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Kontrol-laukiaren propietateak',
|
||||
radioTitle: 'Aukera-botoiaren propietateak',
|
||||
value: 'Balioa',
|
||||
selected: 'Hautatuta',
|
||||
required: 'Beharrezkoa'
|
||||
},
|
||||
form: {
|
||||
title: 'Formularioaren propietateak',
|
||||
menu: 'Formularioaren propietateak',
|
||||
action: 'Ekintza',
|
||||
method: 'Metodoa',
|
||||
encoding: 'Kodeketa'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Ezkutuko eremuaren propietateak',
|
||||
name: 'Izena',
|
||||
value: 'Balioa'
|
||||
},
|
||||
select: {
|
||||
title: 'Hautespen eremuaren propietateak',
|
||||
selectInfo: 'Hautatu informazioa',
|
||||
opAvail: 'Erabilgarri dauden aukerak',
|
||||
value: 'Balioa',
|
||||
size: 'Tamaina',
|
||||
lines: 'lerro kopurua',
|
||||
chkMulti: 'baimendu hautapen anitzak',
|
||||
required: 'Beharrezkoa',
|
||||
opText: 'Testua',
|
||||
opValue: 'Balioa',
|
||||
btnAdd: 'Gehitu',
|
||||
btnModify: 'Aldatu',
|
||||
btnUp: 'Gora',
|
||||
btnDown: 'Behera',
|
||||
btnSetValue: 'Ezarri hautatutako balio bezala',
|
||||
btnDelete: 'Ezabatu'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Testu-arearen propietateak',
|
||||
cols: 'Zutabeak',
|
||||
rows: 'Errenkadak'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Testu-eremuaren propietateak',
|
||||
name: 'Izena',
|
||||
value: 'Balioa',
|
||||
charWidth: 'Karaktere-zabalera',
|
||||
maxChars: 'Gehienezko karaktereak',
|
||||
required: 'Beharrezkoa',
|
||||
type: 'Mota',
|
||||
typeText: 'Testua',
|
||||
typePass: 'Pasahitza',
|
||||
typeEmail: 'E-posta',
|
||||
typeSearch: 'Bilatu',
|
||||
typeTel: 'Telefono zenbakia',
|
||||
typeUrl: 'URLa'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/fa.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'fa', {
|
||||
button: {
|
||||
title: 'ویژگیهای دکمه',
|
||||
text: 'متن (مقدار)',
|
||||
type: 'نوع',
|
||||
typeBtn: 'دکمه',
|
||||
typeSbm: 'ثبت',
|
||||
typeRst: 'بازنشانی (Reset)'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'ویژگیهای خانهٴ گزینهای',
|
||||
radioTitle: 'ویژگیهای دکمهٴ رادیویی',
|
||||
value: 'مقدار',
|
||||
selected: 'برگزیده',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'ویژگیهای فرم',
|
||||
menu: 'ویژگیهای فرم',
|
||||
action: 'رویداد',
|
||||
method: 'متد',
|
||||
encoding: 'رمزنگاری'
|
||||
},
|
||||
hidden: {
|
||||
title: 'ویژگیهای فیلد پنهان',
|
||||
name: 'نام',
|
||||
value: 'مقدار'
|
||||
},
|
||||
select: {
|
||||
title: 'ویژگیهای فیلد چندگزینهای',
|
||||
selectInfo: 'اطلاعات',
|
||||
opAvail: 'گزینههای دردسترس',
|
||||
value: 'مقدار',
|
||||
size: 'اندازه',
|
||||
lines: 'خطوط',
|
||||
chkMulti: 'گزینش چندگانه فراهم باشد',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'متن',
|
||||
opValue: 'مقدار',
|
||||
btnAdd: 'افزودن',
|
||||
btnModify: 'ویرایش',
|
||||
btnUp: 'بالا',
|
||||
btnDown: 'پائین',
|
||||
btnSetValue: 'تنظیم به عنوان مقدار برگزیده',
|
||||
btnDelete: 'پاککردن'
|
||||
},
|
||||
textarea: {
|
||||
title: 'ویژگیهای ناحیهٴ متنی',
|
||||
cols: 'ستونها',
|
||||
rows: 'سطرها'
|
||||
},
|
||||
textfield: {
|
||||
title: 'ویژگیهای فیلد متنی',
|
||||
name: 'نام',
|
||||
value: 'مقدار',
|
||||
charWidth: 'پهنای نویسه',
|
||||
maxChars: 'بیشینهٴ نویسهها',
|
||||
required: 'Required', // MISSING
|
||||
type: 'نوع',
|
||||
typeText: 'متن',
|
||||
typePass: 'گذرواژه',
|
||||
typeEmail: 'ایمیل',
|
||||
typeSearch: 'جستجو',
|
||||
typeTel: 'شماره تلفن',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/fi.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'fi', {
|
||||
button: {
|
||||
title: 'Painikkeen ominaisuudet',
|
||||
text: 'Teksti (arvo)',
|
||||
type: 'Tyyppi',
|
||||
typeBtn: 'Painike',
|
||||
typeSbm: 'Lähetä',
|
||||
typeRst: 'Tyhjennä'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Valintaruudun ominaisuudet',
|
||||
radioTitle: 'Radiopainikkeen ominaisuudet',
|
||||
value: 'Arvo',
|
||||
selected: 'Valittu',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Lomakkeen ominaisuudet',
|
||||
menu: 'Lomakkeen ominaisuudet',
|
||||
action: 'Toiminto',
|
||||
method: 'Tapa',
|
||||
encoding: 'Enkoodaus'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Piilokentän ominaisuudet',
|
||||
name: 'Nimi',
|
||||
value: 'Arvo'
|
||||
},
|
||||
select: {
|
||||
title: 'Valintakentän ominaisuudet',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Ominaisuudet',
|
||||
value: 'Arvo',
|
||||
size: 'Koko',
|
||||
lines: 'Rivit',
|
||||
chkMulti: 'Salli usea valinta',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Teksti',
|
||||
opValue: 'Arvo',
|
||||
btnAdd: 'Lisää',
|
||||
btnModify: 'Muuta',
|
||||
btnUp: 'Ylös',
|
||||
btnDown: 'Alas',
|
||||
btnSetValue: 'Aseta valituksi',
|
||||
btnDelete: 'Poista'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Tekstilaatikon ominaisuudet',
|
||||
cols: 'Sarakkeita',
|
||||
rows: 'Rivejä'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Tekstikentän ominaisuudet',
|
||||
name: 'Nimi',
|
||||
value: 'Arvo',
|
||||
charWidth: 'Leveys',
|
||||
maxChars: 'Maksimi merkkimäärä',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Tyyppi',
|
||||
typeText: 'Teksti',
|
||||
typePass: 'Salasana',
|
||||
typeEmail: 'Sähköposti',
|
||||
typeSearch: 'Haku',
|
||||
typeTel: 'Puhelinnumero',
|
||||
typeUrl: 'Osoite'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/fo.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'fo', {
|
||||
button: {
|
||||
title: 'Eginleikar fyri knøtt',
|
||||
text: 'Tekstur',
|
||||
type: 'Slag',
|
||||
typeBtn: 'Knøttur',
|
||||
typeSbm: 'Send',
|
||||
typeRst: 'Nullstilla'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Eginleikar fyri flugubein',
|
||||
radioTitle: 'Eginleikar fyri radioknøtt',
|
||||
value: 'Virði',
|
||||
selected: 'Valt',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Eginleikar fyri Form',
|
||||
menu: 'Eginleikar fyri Form',
|
||||
action: 'Hending',
|
||||
method: 'Háttur',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Eginleikar fyri fjaldan teig',
|
||||
name: 'Navn',
|
||||
value: 'Virði'
|
||||
},
|
||||
select: {
|
||||
title: 'Eginleikar fyri valskrá',
|
||||
selectInfo: 'Upplýsingar',
|
||||
opAvail: 'Tøkir møguleikar',
|
||||
value: 'Virði',
|
||||
size: 'Stødd',
|
||||
lines: 'Linjur',
|
||||
chkMulti: 'Loyv fleiri valmøguleikum samstundis',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Tekstur',
|
||||
opValue: 'Virði',
|
||||
btnAdd: 'Legg afturat',
|
||||
btnModify: 'Broyt',
|
||||
btnUp: 'Upp',
|
||||
btnDown: 'Niður',
|
||||
btnSetValue: 'Set sum valt virði',
|
||||
btnDelete: 'Strika'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Eginleikar fyri tekstumráði',
|
||||
cols: 'kolonnur',
|
||||
rows: 'røðir'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Eginleikar fyri tekstteig',
|
||||
name: 'Navn',
|
||||
value: 'Virði',
|
||||
charWidth: 'Breidd (sjónlig tekn)',
|
||||
maxChars: 'Mest loyvdu tekn',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Slag',
|
||||
typeText: 'Tekstur',
|
||||
typePass: 'Loyniorð',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/fr-ca.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'fr-ca', {
|
||||
button: {
|
||||
title: 'Propriétés du bouton',
|
||||
text: 'Texte (Valeur)',
|
||||
type: 'Type',
|
||||
typeBtn: 'Bouton',
|
||||
typeSbm: 'Soumettre',
|
||||
typeRst: 'Réinitialiser'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Propriétés de la case à cocher',
|
||||
radioTitle: 'Propriétés du bouton radio',
|
||||
value: 'Valeur',
|
||||
selected: 'Sélectionné',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Propriétés du formulaire',
|
||||
menu: 'Propriétés du formulaire',
|
||||
action: 'Action',
|
||||
method: 'Méthode',
|
||||
encoding: 'Encodage'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Propriétés du champ caché',
|
||||
name: 'Nom',
|
||||
value: 'Valeur'
|
||||
},
|
||||
select: {
|
||||
title: 'Propriétés du champ de sélection',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Options disponibles',
|
||||
value: 'Valeur',
|
||||
size: 'Taille',
|
||||
lines: 'lignes',
|
||||
chkMulti: 'Permettre les sélections multiples',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Texte',
|
||||
opValue: 'Valeur',
|
||||
btnAdd: 'Ajouter',
|
||||
btnModify: 'Modifier',
|
||||
btnUp: 'Monter',
|
||||
btnDown: 'Descendre',
|
||||
btnSetValue: 'Valeur sélectionnée',
|
||||
btnDelete: 'Supprimer'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Propriétés de la zone de texte',
|
||||
cols: 'Colonnes',
|
||||
rows: 'Lignes'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Propriétés du champ texte',
|
||||
name: 'Nom',
|
||||
value: 'Valeur',
|
||||
charWidth: 'Largeur de caractères',
|
||||
maxChars: 'Nombre maximum de caractères',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Type',
|
||||
typeText: 'Texte',
|
||||
typePass: 'Mot de passe',
|
||||
typeEmail: 'Courriel',
|
||||
typeSearch: 'Recherche',
|
||||
typeTel: 'Numéro de téléphone',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/fr.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'fr', {
|
||||
button: {
|
||||
title: 'Propriétés du bouton',
|
||||
text: 'Texte',
|
||||
type: 'Type',
|
||||
typeBtn: 'Bouton',
|
||||
typeSbm: 'Validation',
|
||||
typeRst: 'Remise à zéro'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Propriétés de la case à cocher',
|
||||
radioTitle: 'Propriétés du bouton radio',
|
||||
value: 'Valeur',
|
||||
selected: 'Sélectionné',
|
||||
required: 'Requis'
|
||||
},
|
||||
form: {
|
||||
title: 'Propriétés du formulaire',
|
||||
menu: 'Propriétés du formulaire',
|
||||
action: 'Action',
|
||||
method: 'Méthode',
|
||||
encoding: 'Encodage'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Propriétés du champ invisible',
|
||||
name: 'Nom',
|
||||
value: 'Valeur'
|
||||
},
|
||||
select: {
|
||||
title: 'Propriétés du menu déroulant',
|
||||
selectInfo: 'Informations sur le menu déroulant',
|
||||
opAvail: 'Options disponibles',
|
||||
value: 'Valeur',
|
||||
size: 'Taille',
|
||||
lines: 'lignes',
|
||||
chkMulti: 'Permettre les sélections multiples',
|
||||
required: 'Requis',
|
||||
opText: 'Texte',
|
||||
opValue: 'Valeur',
|
||||
btnAdd: 'Ajouter',
|
||||
btnModify: 'Modifier',
|
||||
btnUp: 'Haut',
|
||||
btnDown: 'Bas',
|
||||
btnSetValue: 'Définir comme valeur sélectionnée',
|
||||
btnDelete: 'Supprimer'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Propriétés de la zone de texte',
|
||||
cols: 'Colonnes',
|
||||
rows: 'Lignes'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Propriétés du champ texte',
|
||||
name: 'Nom',
|
||||
value: 'Valeur',
|
||||
charWidth: 'Largeur des caractères',
|
||||
maxChars: 'Nombre maximum de caractères',
|
||||
required: 'Requis',
|
||||
type: 'Type',
|
||||
typeText: 'Texte',
|
||||
typePass: 'Mot de passe',
|
||||
typeEmail: 'Courriel',
|
||||
typeSearch: 'Rechercher',
|
||||
typeTel: 'Numéro de téléphone',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/gl.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'gl', {
|
||||
button: {
|
||||
title: 'Propiedades do botón',
|
||||
text: 'Texto (Valor)',
|
||||
type: 'Tipo',
|
||||
typeBtn: 'Botón',
|
||||
typeSbm: 'Enviar',
|
||||
typeRst: 'Restabelever'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Propiedades da caixa de selección',
|
||||
radioTitle: 'Propiedades do botón de opción',
|
||||
value: 'Valor',
|
||||
selected: 'Seleccionado',
|
||||
required: 'Requirido'
|
||||
},
|
||||
form: {
|
||||
title: 'Propiedades do formulario',
|
||||
menu: 'Propiedades do formulario',
|
||||
action: 'Acción',
|
||||
method: 'Método',
|
||||
encoding: 'Codificación'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Propiedades do campo agochado',
|
||||
name: 'Nome',
|
||||
value: 'Valor'
|
||||
},
|
||||
select: {
|
||||
title: 'Propiedades do campo de selección',
|
||||
selectInfo: 'Información',
|
||||
opAvail: 'Opcións dispoñíbeis',
|
||||
value: 'Valor',
|
||||
size: 'Tamaño',
|
||||
lines: 'liñas',
|
||||
chkMulti: 'Permitir múltiplas seleccións',
|
||||
required: 'Requirido',
|
||||
opText: 'Texto',
|
||||
opValue: 'Valor',
|
||||
btnAdd: 'Engadir',
|
||||
btnModify: 'Modificar',
|
||||
btnUp: 'Subir',
|
||||
btnDown: 'Baixar',
|
||||
btnSetValue: 'Estabelecer como valor seleccionado',
|
||||
btnDelete: 'Eliminar'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Propiedades da área de texto',
|
||||
cols: 'Columnas',
|
||||
rows: 'Filas'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Propiedades do campo de texto',
|
||||
name: 'Nome',
|
||||
value: 'Valor',
|
||||
charWidth: 'Largo do carácter',
|
||||
maxChars: 'Núm. máximo de caracteres',
|
||||
required: 'Requirido',
|
||||
type: 'Tipo',
|
||||
typeText: 'Texto',
|
||||
typePass: 'Contrasinal',
|
||||
typeEmail: 'Correo',
|
||||
typeSearch: 'Buscar',
|
||||
typeTel: 'Número de teléfono',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/gu.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'gu', {
|
||||
button: {
|
||||
title: 'બટનના ગુણ',
|
||||
text: 'ટેક્સ્ટ (વૅલ્યૂ)',
|
||||
type: 'પ્રકાર',
|
||||
typeBtn: 'બટન',
|
||||
typeSbm: 'સબ્મિટ',
|
||||
typeRst: 'રિસેટ'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'ચેક બોક્સ ગુણ',
|
||||
radioTitle: 'રેડિઓ બટનના ગુણ',
|
||||
value: 'વૅલ્યૂ',
|
||||
selected: 'સિલેક્ટેડ',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'ફૉર્મ/પત્રકના ગુણ',
|
||||
menu: 'ફૉર્મ/પત્રકના ગુણ',
|
||||
action: 'ક્રિયા',
|
||||
method: 'પદ્ધતિ',
|
||||
encoding: 'અન્કોડીન્ગ'
|
||||
},
|
||||
hidden: {
|
||||
title: 'ગુપ્ત ક્ષેત્રના ગુણ',
|
||||
name: 'નામ',
|
||||
value: 'વૅલ્યૂ'
|
||||
},
|
||||
select: {
|
||||
title: 'પસંદગી ક્ષેત્રના ગુણ',
|
||||
selectInfo: 'સૂચના',
|
||||
opAvail: 'ઉપલબ્ધ વિકલ્પ',
|
||||
value: 'વૅલ્યૂ',
|
||||
size: 'સાઇઝ',
|
||||
lines: 'લીટીઓ',
|
||||
chkMulti: 'એકથી વધારે પસંદ કરી શકો',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'ટેક્સ્ટ',
|
||||
opValue: 'વૅલ્યૂ',
|
||||
btnAdd: 'ઉમેરવું',
|
||||
btnModify: 'બદલવું',
|
||||
btnUp: 'ઉપર',
|
||||
btnDown: 'નીચે',
|
||||
btnSetValue: 'પસંદ કરલી વૅલ્યૂ સેટ કરો',
|
||||
btnDelete: 'રદ કરવું'
|
||||
},
|
||||
textarea: {
|
||||
title: 'ટેક્સ્ટ એઅરિઆ, શબ્દ વિસ્તારના ગુણ',
|
||||
cols: 'કૉલમ/ઊભી કટાર',
|
||||
rows: 'પંક્તિઓ'
|
||||
},
|
||||
textfield: {
|
||||
title: 'ટેક્સ્ટ ફીલ્ડ, શબ્દ ક્ષેત્રના ગુણ',
|
||||
name: 'નામ',
|
||||
value: 'વૅલ્યૂ',
|
||||
charWidth: 'કેરેક્ટરની પહોળાઈ',
|
||||
maxChars: 'અધિકતમ કેરેક્ટર',
|
||||
required: 'Required', // MISSING
|
||||
type: 'ટાઇપ',
|
||||
typeText: 'ટેક્સ્ટ',
|
||||
typePass: 'પાસવર્ડ',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/he.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'he', {
|
||||
button: {
|
||||
title: 'מאפייני כפתור',
|
||||
text: 'טקסט (ערך)',
|
||||
type: 'סוג',
|
||||
typeBtn: 'כפתור',
|
||||
typeSbm: 'שליחה',
|
||||
typeRst: 'איפוס'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'מאפייני תיבת סימון',
|
||||
radioTitle: 'מאפייני לחצן אפשרויות',
|
||||
value: 'ערך',
|
||||
selected: 'מסומן',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'מאפיני טופס',
|
||||
menu: 'מאפיני טופס',
|
||||
action: 'שלח אל',
|
||||
method: 'סוג שליחה',
|
||||
encoding: 'קידוד'
|
||||
},
|
||||
hidden: {
|
||||
title: 'מאפיני שדה חבוי',
|
||||
name: 'שם',
|
||||
value: 'ערך'
|
||||
},
|
||||
select: {
|
||||
title: 'מאפייני שדה בחירה',
|
||||
selectInfo: 'מידע',
|
||||
opAvail: 'אפשרויות זמינות',
|
||||
value: 'ערך',
|
||||
size: 'גודל',
|
||||
lines: 'שורות',
|
||||
chkMulti: 'איפשור בחירות מרובות',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'טקסט',
|
||||
opValue: 'ערך',
|
||||
btnAdd: 'הוספה',
|
||||
btnModify: 'שינוי',
|
||||
btnUp: 'למעלה',
|
||||
btnDown: 'למטה',
|
||||
btnSetValue: 'קביעה כברירת מחדל',
|
||||
btnDelete: 'מחיקה'
|
||||
},
|
||||
textarea: {
|
||||
title: 'מאפייני איזור טקסט',
|
||||
cols: 'עמודות',
|
||||
rows: 'שורות'
|
||||
},
|
||||
textfield: {
|
||||
title: 'מאפייני שדה טקסט',
|
||||
name: 'שם',
|
||||
value: 'ערך',
|
||||
charWidth: 'רוחב לפי תווים',
|
||||
maxChars: 'מקסימום תווים',
|
||||
required: 'Required', // MISSING
|
||||
type: 'סוג',
|
||||
typeText: 'טקסט',
|
||||
typePass: 'סיסמה',
|
||||
typeEmail: 'דוא"ל',
|
||||
typeSearch: 'חיפוש',
|
||||
typeTel: 'מספר טלפון',
|
||||
typeUrl: 'כתובת (URL)'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/hi.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'hi', {
|
||||
button: {
|
||||
title: 'बटन प्रॉपर्टीज़',
|
||||
text: 'टेक्स्ट (वैल्यू)',
|
||||
type: 'प्रकार',
|
||||
typeBtn: 'बटन',
|
||||
typeSbm: 'सब्मिट',
|
||||
typeRst: 'रिसेट'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'चॅक बॉक्स प्रॉपर्टीज़',
|
||||
radioTitle: 'रेडिओ बटन प्रॉपर्टीज़',
|
||||
value: 'वैल्यू',
|
||||
selected: 'सॅलॅक्टॅड',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'फ़ॉर्म प्रॉपर्टीज़',
|
||||
menu: 'फ़ॉर्म प्रॉपर्टीज़',
|
||||
action: 'क्रिया',
|
||||
method: 'तरीका',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'गुप्त फ़ील्ड प्रॉपर्टीज़',
|
||||
name: 'नाम',
|
||||
value: 'वैल्यू'
|
||||
},
|
||||
select: {
|
||||
title: 'चुनाव फ़ील्ड प्रॉपर्टीज़',
|
||||
selectInfo: 'सूचना',
|
||||
opAvail: 'उपलब्ध विकल्प',
|
||||
value: 'वैल्यू',
|
||||
size: 'साइज़',
|
||||
lines: 'पंक्तियाँ',
|
||||
chkMulti: 'एक से ज्यादा विकल्प चुनने दें',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'टेक्स्ट',
|
||||
opValue: 'वैल्यू',
|
||||
btnAdd: 'जोड़ें',
|
||||
btnModify: 'बदलें',
|
||||
btnUp: 'ऊपर',
|
||||
btnDown: 'नीचे',
|
||||
btnSetValue: 'चुनी गई वैल्यू सॅट करें',
|
||||
btnDelete: 'डिलीट'
|
||||
},
|
||||
textarea: {
|
||||
title: 'टेक्स्त एरिया प्रॉपर्टीज़',
|
||||
cols: 'कालम',
|
||||
rows: 'पंक्तियां'
|
||||
},
|
||||
textfield: {
|
||||
title: 'टेक्स्ट फ़ील्ड प्रॉपर्टीज़',
|
||||
name: 'नाम',
|
||||
value: 'वैल्यू',
|
||||
charWidth: 'करॅक्टर की चौढ़ाई',
|
||||
maxChars: 'अधिकतम करॅक्टर',
|
||||
required: 'Required', // MISSING
|
||||
type: 'टाइप',
|
||||
typeText: 'टेक्स्ट',
|
||||
typePass: 'पास्वर्ड',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/hr.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'hr', {
|
||||
button: {
|
||||
title: 'Button svojstva',
|
||||
text: 'Tekst (vrijednost)',
|
||||
type: 'Vrsta',
|
||||
typeBtn: 'Gumb',
|
||||
typeSbm: 'Pošalji',
|
||||
typeRst: 'Poništi'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Checkbox svojstva',
|
||||
radioTitle: 'Radio Button svojstva',
|
||||
value: 'Vrijednost',
|
||||
selected: 'Odabrano',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Form svojstva',
|
||||
menu: 'Form svojstva',
|
||||
action: 'Akcija',
|
||||
method: 'Metoda',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Hidden Field svojstva',
|
||||
name: 'Ime',
|
||||
value: 'Vrijednost'
|
||||
},
|
||||
select: {
|
||||
title: 'Selection svojstva',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Dostupne opcije',
|
||||
value: 'Vrijednost',
|
||||
size: 'Veličina',
|
||||
lines: 'linija',
|
||||
chkMulti: 'Dozvoli višestruki odabir',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Tekst',
|
||||
opValue: 'Vrijednost',
|
||||
btnAdd: 'Dodaj',
|
||||
btnModify: 'Promijeni',
|
||||
btnUp: 'Gore',
|
||||
btnDown: 'Dolje',
|
||||
btnSetValue: 'Postavi kao odabranu vrijednost',
|
||||
btnDelete: 'Obriši'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textarea svojstva',
|
||||
cols: 'Kolona',
|
||||
rows: 'Redova'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Text Field svojstva',
|
||||
name: 'Ime',
|
||||
value: 'Vrijednost',
|
||||
charWidth: 'Širina',
|
||||
maxChars: 'Najviše karaktera',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Vrsta',
|
||||
typeText: 'Tekst',
|
||||
typePass: 'Šifra',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Traži',
|
||||
typeTel: 'Broj telefona',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/hu.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'hu', {
|
||||
button: {
|
||||
title: 'Gomb tulajdonságai',
|
||||
text: 'Szöveg (Érték)',
|
||||
type: 'Típus',
|
||||
typeBtn: 'Gomb',
|
||||
typeSbm: 'Küldés',
|
||||
typeRst: 'Alaphelyzet'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Jelölőnégyzet tulajdonságai',
|
||||
radioTitle: 'Választógomb tulajdonságai',
|
||||
value: 'Érték',
|
||||
selected: 'Kiválasztott',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Űrlap tulajdonságai',
|
||||
menu: 'Űrlap tulajdonságai',
|
||||
action: 'Adatfeldolgozást végző hivatkozás',
|
||||
method: 'Adatküldés módja',
|
||||
encoding: 'Kódolás'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Rejtett mező tulajdonságai',
|
||||
name: 'Név',
|
||||
value: 'Érték'
|
||||
},
|
||||
select: {
|
||||
title: 'Legördülő lista tulajdonságai',
|
||||
selectInfo: 'Alaptulajdonságok',
|
||||
opAvail: 'Elérhető opciók',
|
||||
value: 'Érték',
|
||||
size: 'Méret',
|
||||
lines: 'sor',
|
||||
chkMulti: 'több sor is kiválasztható',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Szöveg',
|
||||
opValue: 'Érték',
|
||||
btnAdd: 'Hozzáad',
|
||||
btnModify: 'Módosít',
|
||||
btnUp: 'Fel',
|
||||
btnDown: 'Le',
|
||||
btnSetValue: 'Legyen az alapértelmezett érték',
|
||||
btnDelete: 'Töröl'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Szövegterület tulajdonságai',
|
||||
cols: 'Karakterek száma egy sorban',
|
||||
rows: 'Sorok száma'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Szövegmező tulajdonságai',
|
||||
name: 'Név',
|
||||
value: 'Érték',
|
||||
charWidth: 'Megjelenített karakterek száma',
|
||||
maxChars: 'Maximális karakterszám',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Típus',
|
||||
typeText: 'Szöveg',
|
||||
typePass: 'Jelszó',
|
||||
typeEmail: 'Ímél',
|
||||
typeSearch: 'Keresés',
|
||||
typeTel: 'Telefonszám',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/id.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'id', {
|
||||
button: {
|
||||
title: 'Properti Tombol',
|
||||
text: 'Teks (Nilai)',
|
||||
type: 'Tipe',
|
||||
typeBtn: 'Tombol',
|
||||
typeSbm: 'Menyerahkan',
|
||||
typeRst: 'Atur Ulang'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Checkbox Properties', // MISSING
|
||||
radioTitle: 'Radio Button Properties', // MISSING
|
||||
value: 'Nilai',
|
||||
selected: 'Terpilih',
|
||||
required: 'Wajib'
|
||||
},
|
||||
form: {
|
||||
title: 'Form Properties', // MISSING
|
||||
menu: 'Form Properties', // MISSING
|
||||
action: 'Aksi',
|
||||
method: 'Metode',
|
||||
encoding: 'Encoding' // MISSING
|
||||
},
|
||||
hidden: {
|
||||
title: 'Hidden Field Properties', // MISSING
|
||||
name: 'Nama',
|
||||
value: 'Nilai'
|
||||
},
|
||||
select: {
|
||||
title: 'Selection Field Properties', // MISSING
|
||||
selectInfo: 'Select Info', // MISSING
|
||||
opAvail: 'Available Options', // MISSING
|
||||
value: 'Nilai',
|
||||
size: 'Ukuran',
|
||||
lines: 'garis',
|
||||
chkMulti: 'Izinkan pemilihan ganda',
|
||||
required: 'Wajib',
|
||||
opText: 'Teks',
|
||||
opValue: 'Nilai',
|
||||
btnAdd: 'Tambah',
|
||||
btnModify: 'Modifikasi',
|
||||
btnUp: 'Atas',
|
||||
btnDown: 'Bawah',
|
||||
btnSetValue: 'Atur sebagai nilai yang dipilih',
|
||||
btnDelete: 'Hapus'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textarea Properties', // MISSING
|
||||
cols: 'Kolom',
|
||||
rows: 'Baris'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Text Field Properties', // MISSING
|
||||
name: 'Name',
|
||||
value: 'Nilai',
|
||||
charWidth: 'Character Width', // MISSING
|
||||
maxChars: 'Maximum Characters', // MISSING
|
||||
required: 'Wajib',
|
||||
type: 'Tipe',
|
||||
typeText: 'Teks',
|
||||
typePass: 'Kata kunci',
|
||||
typeEmail: 'Surel',
|
||||
typeSearch: 'Cari',
|
||||
typeTel: 'Nomor Telepon',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/is.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'is', {
|
||||
button: {
|
||||
title: 'Eigindi hnapps',
|
||||
text: 'Texti',
|
||||
type: 'Gerð',
|
||||
typeBtn: 'Hnappur',
|
||||
typeSbm: 'Staðfesta',
|
||||
typeRst: 'Hreinsa'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Eigindi markreits',
|
||||
radioTitle: 'Eigindi valhnapps',
|
||||
value: 'Gildi',
|
||||
selected: 'Valið',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Eigindi innsláttarforms',
|
||||
menu: 'Eigindi innsláttarforms',
|
||||
action: 'Aðgerð',
|
||||
method: 'Aðferð',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Eigindi falins svæðis',
|
||||
name: 'Nafn',
|
||||
value: 'Gildi'
|
||||
},
|
||||
select: {
|
||||
title: 'Eigindi lista',
|
||||
selectInfo: 'Upplýsingar',
|
||||
opAvail: 'Kostir',
|
||||
value: 'Gildi',
|
||||
size: 'Stærð',
|
||||
lines: 'línur',
|
||||
chkMulti: 'Leyfa fleiri kosti',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Texti',
|
||||
opValue: 'Gildi',
|
||||
btnAdd: 'Bæta við',
|
||||
btnModify: 'Breyta',
|
||||
btnUp: 'Upp',
|
||||
btnDown: 'Niður',
|
||||
btnSetValue: 'Merkja sem valið',
|
||||
btnDelete: 'Eyða'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Eigindi textasvæðis',
|
||||
cols: 'Dálkar',
|
||||
rows: 'Línur'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Eigindi textareits',
|
||||
name: 'Nafn',
|
||||
value: 'Gildi',
|
||||
charWidth: 'Breidd (leturtákn)',
|
||||
maxChars: 'Hámarksfjöldi leturtákna',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Gerð',
|
||||
typeText: 'Texti',
|
||||
typePass: 'Lykilorð',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'Vefslóð'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/it.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'it', {
|
||||
button: {
|
||||
title: 'Proprietà bottone',
|
||||
text: 'Testo (Valore)',
|
||||
type: 'Tipo',
|
||||
typeBtn: 'Bottone',
|
||||
typeSbm: 'Invio',
|
||||
typeRst: 'Annulla'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Proprietà checkbox',
|
||||
radioTitle: 'Proprietà radio button',
|
||||
value: 'Valore',
|
||||
selected: 'Selezionato',
|
||||
required: 'Richiesto'
|
||||
},
|
||||
form: {
|
||||
title: 'Proprietà modulo',
|
||||
menu: 'Proprietà modulo',
|
||||
action: 'Azione',
|
||||
method: 'Metodo',
|
||||
encoding: 'Codifica'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Proprietà campo nascosto',
|
||||
name: 'Nome',
|
||||
value: 'Valore'
|
||||
},
|
||||
select: {
|
||||
title: 'Proprietà menu di selezione',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Opzioni disponibili',
|
||||
value: 'Valore',
|
||||
size: 'Dimensione',
|
||||
lines: 'righe',
|
||||
chkMulti: 'Permetti selezione multipla',
|
||||
required: 'Richiesto',
|
||||
opText: 'Testo',
|
||||
opValue: 'Valore',
|
||||
btnAdd: 'Aggiungi',
|
||||
btnModify: 'Modifica',
|
||||
btnUp: 'Su',
|
||||
btnDown: 'Gi',
|
||||
btnSetValue: 'Imposta come predefinito',
|
||||
btnDelete: 'Rimuovi'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Proprietà area di testo',
|
||||
cols: 'Colonne',
|
||||
rows: 'Righe'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Proprietà campo di testo',
|
||||
name: 'Nome',
|
||||
value: 'Valore',
|
||||
charWidth: 'Larghezza',
|
||||
maxChars: 'Numero massimo di caratteri',
|
||||
required: 'Richiesto',
|
||||
type: 'Tipo',
|
||||
typeText: 'Testo',
|
||||
typePass: 'Password',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Cerca',
|
||||
typeTel: 'Numero di telefono',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/ja.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'ja', {
|
||||
button: {
|
||||
title: 'ボタン プロパティ',
|
||||
text: 'テキスト (値)',
|
||||
type: 'タイプ',
|
||||
typeBtn: 'ボタン',
|
||||
typeSbm: '送信',
|
||||
typeRst: 'リセット'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'チェックボックスのプロパティ',
|
||||
radioTitle: 'ラジオボタンのプロパティ',
|
||||
value: '値',
|
||||
selected: '選択済み',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'フォームのプロパティ',
|
||||
menu: 'フォームのプロパティ',
|
||||
action: 'アクション (action)',
|
||||
method: 'メソッド (method)',
|
||||
encoding: 'エンコード方式 (encoding)'
|
||||
},
|
||||
hidden: {
|
||||
title: '不可視フィールド プロパティ',
|
||||
name: '名前 (name)',
|
||||
value: '値 (value)'
|
||||
},
|
||||
select: {
|
||||
title: '選択フィールドのプロパティ',
|
||||
selectInfo: '情報',
|
||||
opAvail: '利用可能なオプション',
|
||||
value: '選択項目値',
|
||||
size: 'サイズ',
|
||||
lines: '行',
|
||||
chkMulti: '複数選択を許可',
|
||||
required: 'Required', // MISSING
|
||||
opText: '選択項目名',
|
||||
opValue: '値',
|
||||
btnAdd: '追加',
|
||||
btnModify: '編集',
|
||||
btnUp: '上へ',
|
||||
btnDown: '下へ',
|
||||
btnSetValue: '選択した値を設定',
|
||||
btnDelete: '削除'
|
||||
},
|
||||
textarea: {
|
||||
title: 'テキストエリア プロパティ',
|
||||
cols: '列',
|
||||
rows: '行'
|
||||
},
|
||||
textfield: {
|
||||
title: '1行テキスト プロパティ',
|
||||
name: '名前',
|
||||
value: '値',
|
||||
charWidth: 'サイズ',
|
||||
maxChars: '最大長',
|
||||
required: 'Required', // MISSING
|
||||
type: 'タイプ',
|
||||
typeText: 'テキスト',
|
||||
typePass: 'パスワード入力',
|
||||
typeEmail: 'メール',
|
||||
typeSearch: '検索',
|
||||
typeTel: '電話番号',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/ka.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'ka', {
|
||||
button: {
|
||||
title: 'ღილაკის პარამეტრები',
|
||||
text: 'ტექსტი',
|
||||
type: 'ტიპი',
|
||||
typeBtn: 'ღილაკი',
|
||||
typeSbm: 'გაგზავნა',
|
||||
typeRst: 'გასუფთავება'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'მონიშვნის ღილაკის (Checkbox) პარამეტრები',
|
||||
radioTitle: 'ასარჩევი ღილაკის (Radio) პარამეტრები',
|
||||
value: 'ტექსტი',
|
||||
selected: 'არჩეული',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'ფორმის პარამეტრები',
|
||||
menu: 'ფორმის პარამეტრები',
|
||||
action: 'ქმედება',
|
||||
method: 'მეთოდი',
|
||||
encoding: 'კოდირება'
|
||||
},
|
||||
hidden: {
|
||||
title: 'მალული ველის პარამეტრები',
|
||||
name: 'სახელი',
|
||||
value: 'მნიშვნელობა'
|
||||
},
|
||||
select: {
|
||||
title: 'არჩევის ველის პარამეტრები',
|
||||
selectInfo: 'ინფორმაცია',
|
||||
opAvail: 'შესაძლებელი ვარიანტები',
|
||||
value: 'მნიშვნელობა',
|
||||
size: 'ზომა',
|
||||
lines: 'ხაზები',
|
||||
chkMulti: 'მრავლობითი არჩევანის საშუალება',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'ტექსტი',
|
||||
opValue: 'მნიშვნელობა',
|
||||
btnAdd: 'დამატება',
|
||||
btnModify: 'შეცვლა',
|
||||
btnUp: 'ზემოთ',
|
||||
btnDown: 'ქვემოთ',
|
||||
btnSetValue: 'ამორჩეულ მნიშვნელოვნად დაყენება',
|
||||
btnDelete: 'წაშლა'
|
||||
},
|
||||
textarea: {
|
||||
title: 'ტექსტური არის პარამეტრები',
|
||||
cols: 'სვეტები',
|
||||
rows: 'სტრიქონები'
|
||||
},
|
||||
textfield: {
|
||||
title: 'ტექსტური ველის პარამეტრები',
|
||||
name: 'სახელი',
|
||||
value: 'მნიშვნელობა',
|
||||
charWidth: 'სიმბოლოს ზომა',
|
||||
maxChars: 'ასოების მაქსიმალური ოდენობა',
|
||||
required: 'Required', // MISSING
|
||||
type: 'ტიპი',
|
||||
typeText: 'ტექსტი',
|
||||
typePass: 'პაროლი',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/km.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'km', {
|
||||
button: {
|
||||
title: 'លក្ខណៈប៊ូតុង',
|
||||
text: 'អត្ថបទ (តម្លៃ)',
|
||||
type: 'ប្រភេទ',
|
||||
typeBtn: 'ប៊ូតុង',
|
||||
typeSbm: 'ដាក់ស្នើ',
|
||||
typeRst: 'កំណត់ឡើងវិញ'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'លក្ខណៈប្រអប់ធីក',
|
||||
radioTitle: 'លក្ខនៈប៊ូតុងមូល',
|
||||
value: 'តម្លៃ',
|
||||
selected: 'បានជ្រើស',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'លក្ខណៈបែបបទ',
|
||||
menu: 'លក្ខណៈបែបបទ',
|
||||
action: 'សកម្មភាព',
|
||||
method: 'វិធីសាស្ត្រ',
|
||||
encoding: 'ការអ៊ិនកូដ'
|
||||
},
|
||||
hidden: {
|
||||
title: 'លក្ខណៈវាលកំបាំង',
|
||||
name: 'ឈ្មោះ',
|
||||
value: 'តម្លៃ'
|
||||
},
|
||||
select: {
|
||||
title: 'លក្ខណៈវាលជម្រើស',
|
||||
selectInfo: 'ព័ត៌មានជម្រើស',
|
||||
opAvail: 'ជម្រើសដែលមាន',
|
||||
value: 'តម្លៃ',
|
||||
size: 'ទំហំ',
|
||||
lines: 'បន្ទាត់',
|
||||
chkMulti: 'អនុញ្ញាតពហុជម្រើស',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'អត្ថបទ',
|
||||
opValue: 'តម្លៃ',
|
||||
btnAdd: 'បន្ថែម',
|
||||
btnModify: 'ផ្លាស់ប្តូរ',
|
||||
btnUp: 'លើ',
|
||||
btnDown: 'ក្រោម',
|
||||
btnSetValue: 'កំណត់ជាតម្លៃដែលបានជ្រើស',
|
||||
btnDelete: 'លុប'
|
||||
},
|
||||
textarea: {
|
||||
title: 'លក្ខណៈប្រអប់អត្ថបទ',
|
||||
cols: 'ជួរឈរ',
|
||||
rows: 'ជួរដេក'
|
||||
},
|
||||
textfield: {
|
||||
title: 'លក្ខណៈវាលអត្ថបទ',
|
||||
name: 'ឈ្មោះ',
|
||||
value: 'តម្លៃ',
|
||||
charWidth: 'ទទឹងតួអក្សរ',
|
||||
maxChars: 'អក្សរអតិបរិមា',
|
||||
required: 'Required', // MISSING
|
||||
type: 'ប្រភេទ',
|
||||
typeText: 'អត្ថបទ',
|
||||
typePass: 'ពាក្យសម្ងាត់',
|
||||
typeEmail: 'អ៊ីមែល',
|
||||
typeSearch: 'ស្វែងរក',
|
||||
typeTel: 'លេខទូរសព្ទ',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/ko.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'ko', {
|
||||
button: {
|
||||
title: '버튼 속성',
|
||||
text: '글자 (값)',
|
||||
type: '종류',
|
||||
typeBtn: '버튼',
|
||||
typeSbm: '제출',
|
||||
typeRst: '재설정'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: '체크 박스 속성',
|
||||
radioTitle: '라디오 버튼 속성',
|
||||
value: '값',
|
||||
selected: '선택됨',
|
||||
required: '필수 항목'
|
||||
},
|
||||
form: {
|
||||
title: '폼 속성',
|
||||
menu: '폼 속성',
|
||||
action: '실행 경로(Action)',
|
||||
method: '방법(Method)',
|
||||
encoding: '인코딩'
|
||||
},
|
||||
hidden: {
|
||||
title: '숨은 입력 칸 속성',
|
||||
name: '이름',
|
||||
value: '값'
|
||||
},
|
||||
select: {
|
||||
title: '선택 목록 속성',
|
||||
selectInfo: '선택 정보',
|
||||
opAvail: '옵션',
|
||||
value: '값',
|
||||
size: '크기',
|
||||
lines: '줄',
|
||||
chkMulti: '여러 항목 선택 허용',
|
||||
required: '필수 항목',
|
||||
opText: '이름',
|
||||
opValue: '값',
|
||||
btnAdd: '추가',
|
||||
btnModify: '수정',
|
||||
btnUp: '위',
|
||||
btnDown: '아래',
|
||||
btnSetValue: '선택된 것으로 설정',
|
||||
btnDelete: '삭제'
|
||||
},
|
||||
textarea: {
|
||||
title: '여러 줄 입력 칸 속성',
|
||||
cols: '칸 수',
|
||||
rows: '줄 수'
|
||||
},
|
||||
textfield: {
|
||||
title: '한 줄 입력 칸 속성',
|
||||
name: '이름',
|
||||
value: '값',
|
||||
charWidth: '글자 너비',
|
||||
maxChars: '최대 글자 수',
|
||||
required: '필수 항목',
|
||||
type: '형식',
|
||||
typeText: '문자열',
|
||||
typePass: '비밀번호',
|
||||
typeEmail: '이메일',
|
||||
typeSearch: '검색',
|
||||
typeTel: '전화번호',
|
||||
typeUrl: '웹 주소(URL)'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/ku.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'ku', {
|
||||
button: {
|
||||
title: 'خاسیەتی دوگمە',
|
||||
text: '(نرخی) دەق',
|
||||
type: 'جۆر',
|
||||
typeBtn: 'دوگمە',
|
||||
typeSbm: 'بنێرە',
|
||||
typeRst: 'ڕێکخستنەوە'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'خاسیەتی چووارگۆشی پشکنین',
|
||||
radioTitle: 'خاسیەتی جێگرەوەی دوگمە',
|
||||
value: 'نرخ',
|
||||
selected: 'هەڵبژاردرا',
|
||||
required: 'پێویستە'
|
||||
},
|
||||
form: {
|
||||
title: 'خاسیەتی داڕشتە',
|
||||
menu: 'خاسیەتی داڕشتە',
|
||||
action: 'کردار',
|
||||
method: 'ڕێگە',
|
||||
encoding: 'بەکۆدکەر'
|
||||
},
|
||||
hidden: {
|
||||
title: 'خاسیەتی خانەی شاردراوە',
|
||||
name: 'ناو',
|
||||
value: 'نرخ'
|
||||
},
|
||||
select: {
|
||||
title: 'هەڵبژاردەی خاسیەتی خانە',
|
||||
selectInfo: 'زانیاری',
|
||||
opAvail: 'هەڵبژاردەی لەبەردەستدابوون',
|
||||
value: 'نرخ',
|
||||
size: 'گەورەیی',
|
||||
lines: 'هێڵەکان',
|
||||
chkMulti: 'ڕێدان بەفره هەڵبژارده',
|
||||
required: 'پێویستە',
|
||||
opText: 'دەق',
|
||||
opValue: 'نرخ',
|
||||
btnAdd: 'زیادکردن',
|
||||
btnModify: 'گۆڕانکاری',
|
||||
btnUp: 'سەرەوه',
|
||||
btnDown: 'خوارەوە',
|
||||
btnSetValue: 'دابنێ وەك نرخێکی هەڵبژێردراو',
|
||||
btnDelete: 'سڕینەوه'
|
||||
},
|
||||
textarea: {
|
||||
title: 'خاسیەتی ڕووبەری دەق',
|
||||
cols: 'ستوونەکان',
|
||||
rows: 'ڕیزەکان'
|
||||
},
|
||||
textfield: {
|
||||
title: 'خاسیەتی خانەی دەق',
|
||||
name: 'ناو',
|
||||
value: 'نرخ',
|
||||
charWidth: 'پانی نووسە',
|
||||
maxChars: 'ئەوپەڕی نووسە',
|
||||
required: 'پێویستە',
|
||||
type: 'جۆر',
|
||||
typeText: 'دەق',
|
||||
typePass: 'پێپەڕەوشە',
|
||||
typeEmail: 'ئیمەیل',
|
||||
typeSearch: 'گەڕان',
|
||||
typeTel: 'ژمارەی تەلەفۆن',
|
||||
typeUrl: 'ناونیشانی بەستەر'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/lt.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'lt', {
|
||||
button: {
|
||||
title: 'Mygtuko savybės',
|
||||
text: 'Tekstas (Reikšmė)',
|
||||
type: 'Tipas',
|
||||
typeBtn: 'Mygtukas',
|
||||
typeSbm: 'Siųsti',
|
||||
typeRst: 'Išvalyti'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Žymimojo langelio savybės',
|
||||
radioTitle: 'Žymimosios akutės savybės',
|
||||
value: 'Reikšmė',
|
||||
selected: 'Pažymėtas',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Formos savybės',
|
||||
menu: 'Formos savybės',
|
||||
action: 'Veiksmas',
|
||||
method: 'Metodas',
|
||||
encoding: 'Kodavimas'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Nerodomo lauko savybės',
|
||||
name: 'Vardas',
|
||||
value: 'Reikšmė'
|
||||
},
|
||||
select: {
|
||||
title: 'Atrankos lauko savybės',
|
||||
selectInfo: 'Informacija',
|
||||
opAvail: 'Galimos parinktys',
|
||||
value: 'Reikšmė',
|
||||
size: 'Dydis',
|
||||
lines: 'eilučių',
|
||||
chkMulti: 'Leisti daugeriopą atranką',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Tekstas',
|
||||
opValue: 'Reikšmė',
|
||||
btnAdd: 'Įtraukti',
|
||||
btnModify: 'Modifikuoti',
|
||||
btnUp: 'Aukštyn',
|
||||
btnDown: 'Žemyn',
|
||||
btnSetValue: 'Laikyti pažymėta reikšme',
|
||||
btnDelete: 'Trinti'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Teksto srities savybės',
|
||||
cols: 'Ilgis',
|
||||
rows: 'Plotis'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Teksto lauko savybės',
|
||||
name: 'Vardas',
|
||||
value: 'Reikšmė',
|
||||
charWidth: 'Ilgis simboliais',
|
||||
maxChars: 'Maksimalus simbolių skaičius',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Tipas',
|
||||
typeText: 'Tekstas',
|
||||
typePass: 'Slaptažodis',
|
||||
typeEmail: 'El. paštas',
|
||||
typeSearch: 'Paieška',
|
||||
typeTel: 'Telefono numeris',
|
||||
typeUrl: 'Nuoroda'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/lv.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'lv', {
|
||||
button: {
|
||||
title: 'Pogas īpašības',
|
||||
text: 'Teksts (vērtība)',
|
||||
type: 'Tips',
|
||||
typeBtn: 'Poga',
|
||||
typeSbm: 'Nosūtīt',
|
||||
typeRst: 'Atcelt'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Atzīmēšanas kastītes īpašības',
|
||||
radioTitle: 'Izvēles poga īpašības',
|
||||
value: 'Vērtība',
|
||||
selected: 'Iezīmēts',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Formas īpašības',
|
||||
menu: 'Formas īpašības',
|
||||
action: 'Darbība',
|
||||
method: 'Metode',
|
||||
encoding: 'Kodējums'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Paslēptās teksta rindas īpašības',
|
||||
name: 'Nosaukums',
|
||||
value: 'Vērtība'
|
||||
},
|
||||
select: {
|
||||
title: 'Iezīmēšanas lauka īpašības',
|
||||
selectInfo: 'Informācija',
|
||||
opAvail: 'Pieejamās iespējas',
|
||||
value: 'Vērtība',
|
||||
size: 'Izmērs',
|
||||
lines: 'rindas',
|
||||
chkMulti: 'Atļaut vairākus iezīmējumus',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Teksts',
|
||||
opValue: 'Vērtība',
|
||||
btnAdd: 'Pievienot',
|
||||
btnModify: 'Veikt izmaiņas',
|
||||
btnUp: 'Augšup',
|
||||
btnDown: 'Lejup',
|
||||
btnSetValue: 'Noteikt kā iezīmēto vērtību',
|
||||
btnDelete: 'Dzēst'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Teksta laukuma īpašības',
|
||||
cols: 'Kolonnas',
|
||||
rows: 'Rindas'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Teksta rindas īpašības',
|
||||
name: 'Nosaukums',
|
||||
value: 'Vērtība',
|
||||
charWidth: 'Simbolu platums',
|
||||
maxChars: 'Simbolu maksimālais daudzums',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Tips',
|
||||
typeText: 'Teksts',
|
||||
typePass: 'Parole',
|
||||
typeEmail: 'Epasts',
|
||||
typeSearch: 'Meklēt',
|
||||
typeTel: 'Tālruņa numurs',
|
||||
typeUrl: 'Adrese'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/mk.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'mk', {
|
||||
button: {
|
||||
title: 'Button Properties',
|
||||
text: 'Text (Value)',
|
||||
type: 'Type',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Checkbox Properties',
|
||||
radioTitle: 'Radio Button Properties',
|
||||
value: 'Value',
|
||||
selected: 'Selected',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Form Properties',
|
||||
menu: 'Form Properties',
|
||||
action: 'Action',
|
||||
method: 'Method',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Hidden Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value'
|
||||
},
|
||||
select: {
|
||||
title: 'Selection Field Properties',
|
||||
selectInfo: 'Select Info',
|
||||
opAvail: 'Available Options',
|
||||
value: 'Value',
|
||||
size: 'Size',
|
||||
lines: 'lines',
|
||||
chkMulti: 'Allow multiple selections',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Text',
|
||||
opValue: 'Value',
|
||||
btnAdd: 'Add',
|
||||
btnModify: 'Modify',
|
||||
btnUp: 'Up',
|
||||
btnDown: 'Down',
|
||||
btnSetValue: 'Set as selected value',
|
||||
btnDelete: 'Delete'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textarea Properties',
|
||||
cols: 'Columns',
|
||||
rows: 'Rows'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Text Field Properties',
|
||||
name: 'Name',
|
||||
value: 'Value',
|
||||
charWidth: 'Character Width',
|
||||
maxChars: 'Maximum Characters',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Type',
|
||||
typeText: 'Text',
|
||||
typePass: 'Password',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/mn.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'mn', {
|
||||
button: {
|
||||
title: 'Товчны шинж чанар',
|
||||
text: 'Тэкст (Утга)',
|
||||
type: 'Төрөл',
|
||||
typeBtn: 'Товч',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Болих'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Чекбоксны шинж чанар',
|
||||
radioTitle: 'Радио товчны шинж чанар',
|
||||
value: 'Утга',
|
||||
selected: 'Сонгогдсон',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Форм шинж чанар',
|
||||
menu: 'Форм шинж чанар',
|
||||
action: 'Үйлдэл',
|
||||
method: 'Арга',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Нууц талбарын шинж чанар',
|
||||
name: 'Нэр',
|
||||
value: 'Утга'
|
||||
},
|
||||
select: {
|
||||
title: 'Согогч талбарын шинж чанар',
|
||||
selectInfo: 'Мэдээлэл',
|
||||
opAvail: 'Идвэхтэй сонголт',
|
||||
value: 'Утга',
|
||||
size: 'Хэмжээ',
|
||||
lines: 'Мөр',
|
||||
chkMulti: 'Олон зүйл зэрэг сонгохыг зөвшөөрөх',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Тэкст',
|
||||
opValue: 'Утга',
|
||||
btnAdd: 'Нэмэх',
|
||||
btnModify: 'Өөрчлөх',
|
||||
btnUp: 'Дээш',
|
||||
btnDown: 'Доош',
|
||||
btnSetValue: 'Сонгогдсан утга оноох',
|
||||
btnDelete: 'Устгах'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Текст орчны шинж чанар',
|
||||
cols: 'Багана',
|
||||
rows: 'Мөр'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Текст талбарын шинж чанар',
|
||||
name: 'Нэр',
|
||||
value: 'Утга',
|
||||
charWidth: 'Тэмдэгтын өргөн',
|
||||
maxChars: 'Хамгийн их тэмдэгт',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Төрөл',
|
||||
typeText: 'Текст',
|
||||
typePass: 'Нууц үг',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'цахим хуудасны хаяг (URL)'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/ms.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'ms', {
|
||||
button: {
|
||||
title: 'Ciri-ciri Butang',
|
||||
text: 'Teks (Nilai)',
|
||||
type: 'Jenis',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Ciri-ciri Checkbox',
|
||||
radioTitle: 'Ciri-ciri Butang Radio',
|
||||
value: 'Nilai',
|
||||
selected: 'Dipilih',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Ciri-ciri Borang',
|
||||
menu: 'Ciri-ciri Borang',
|
||||
action: 'Tindakan borang',
|
||||
method: 'Cara borang dihantar',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Ciri-ciri Field Tersembunyi',
|
||||
name: 'Nama',
|
||||
value: 'Nilai'
|
||||
},
|
||||
select: {
|
||||
title: 'Ciri-ciri Selection Field',
|
||||
selectInfo: 'Select Info',
|
||||
opAvail: 'Pilihan sediada',
|
||||
value: 'Nilai',
|
||||
size: 'Saiz',
|
||||
lines: 'garisan',
|
||||
chkMulti: 'Benarkan pilihan pelbagai',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Teks',
|
||||
opValue: 'Nilai',
|
||||
btnAdd: 'Tambah Pilihan',
|
||||
btnModify: 'Ubah Pilihan',
|
||||
btnUp: 'Naik ke atas',
|
||||
btnDown: 'Turun ke bawah',
|
||||
btnSetValue: 'Set sebagai nilai terpilih',
|
||||
btnDelete: 'Padam'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Ciri-ciri Textarea',
|
||||
cols: 'Lajur',
|
||||
rows: 'Baris'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Ciri-ciri Text Field',
|
||||
name: 'Nama',
|
||||
value: 'Nilai',
|
||||
charWidth: 'Lebar isian',
|
||||
maxChars: 'Isian Maksimum',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Jenis',
|
||||
typeText: 'Teks',
|
||||
typePass: 'Kata Laluan',
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/nb.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'nb', {
|
||||
button: {
|
||||
title: 'Egenskaper for knapp',
|
||||
text: 'Tekst (verdi)',
|
||||
type: 'Type',
|
||||
typeBtn: 'Knapp',
|
||||
typeSbm: 'Send',
|
||||
typeRst: 'Nullstill'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Egenskaper for avmerkingsboks',
|
||||
radioTitle: 'Egenskaper for alternativknapp',
|
||||
value: 'Verdi',
|
||||
selected: 'Valgt',
|
||||
required: 'Påkrevd'
|
||||
},
|
||||
form: {
|
||||
title: 'Egenskaper for skjema',
|
||||
menu: 'Egenskaper for skjema',
|
||||
action: 'Handling',
|
||||
method: 'Metode',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Egenskaper for skjult felt',
|
||||
name: 'Navn',
|
||||
value: 'Verdi'
|
||||
},
|
||||
select: {
|
||||
title: 'Egenskaper for rullegardinliste',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Tilgjengelige alternativer',
|
||||
value: 'Verdi',
|
||||
size: 'Størrelse',
|
||||
lines: 'Linjer',
|
||||
chkMulti: 'Tillat flervalg',
|
||||
required: 'Påkrevd',
|
||||
opText: 'Tekst',
|
||||
opValue: 'Verdi',
|
||||
btnAdd: 'Legg til',
|
||||
btnModify: 'Endre',
|
||||
btnUp: 'Opp',
|
||||
btnDown: 'Ned',
|
||||
btnSetValue: 'Sett som valgt',
|
||||
btnDelete: 'Slett'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Egenskaper for tekstområde',
|
||||
cols: 'Kolonner',
|
||||
rows: 'Rader'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Egenskaper for tekstfelt',
|
||||
name: 'Navn',
|
||||
value: 'Verdi',
|
||||
charWidth: 'Tegnbredde',
|
||||
maxChars: 'Maks antall tegn',
|
||||
required: 'Påkrevd',
|
||||
type: 'Type',
|
||||
typeText: 'Tekst',
|
||||
typePass: 'Passord',
|
||||
typeEmail: 'Epost',
|
||||
typeSearch: 'Søk',
|
||||
typeTel: 'Telefonnummer',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/nl.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'nl', {
|
||||
button: {
|
||||
title: 'Eigenschappen knop',
|
||||
text: 'Tekst (waarde)',
|
||||
type: 'Soort',
|
||||
typeBtn: 'Knop',
|
||||
typeSbm: 'Versturen',
|
||||
typeRst: 'Leegmaken'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Eigenschappen aanvinkvakje',
|
||||
radioTitle: 'Eigenschappen selectievakje',
|
||||
value: 'Waarde',
|
||||
selected: 'Geselecteerd',
|
||||
required: 'Vereist'
|
||||
},
|
||||
form: {
|
||||
title: 'Eigenschappen formulier',
|
||||
menu: 'Eigenschappen formulier',
|
||||
action: 'Actie',
|
||||
method: 'Methode',
|
||||
encoding: 'Codering'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Eigenschappen verborgen veld',
|
||||
name: 'Naam',
|
||||
value: 'Waarde'
|
||||
},
|
||||
select: {
|
||||
title: 'Eigenschappen selectieveld',
|
||||
selectInfo: 'Informatie',
|
||||
opAvail: 'Beschikbare opties',
|
||||
value: 'Waarde',
|
||||
size: 'Grootte',
|
||||
lines: 'Regels',
|
||||
chkMulti: 'Gecombineerde selecties toestaan',
|
||||
required: 'Vereist',
|
||||
opText: 'Tekst',
|
||||
opValue: 'Waarde',
|
||||
btnAdd: 'Toevoegen',
|
||||
btnModify: 'Wijzigen',
|
||||
btnUp: 'Omhoog',
|
||||
btnDown: 'Omlaag',
|
||||
btnSetValue: 'Als geselecteerde waarde instellen',
|
||||
btnDelete: 'Verwijderen'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Eigenschappen tekstvak',
|
||||
cols: 'Kolommen',
|
||||
rows: 'Rijen'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Eigenschappen tekstveld',
|
||||
name: 'Naam',
|
||||
value: 'Waarde',
|
||||
charWidth: 'Breedte (tekens)',
|
||||
maxChars: 'Maximum aantal tekens',
|
||||
required: 'Vereist',
|
||||
type: 'Soort',
|
||||
typeText: 'Tekst',
|
||||
typePass: 'Wachtwoord',
|
||||
typeEmail: 'E-mail',
|
||||
typeSearch: 'Zoeken',
|
||||
typeTel: 'Telefoonnummer',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/no.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'no', {
|
||||
button: {
|
||||
title: 'Egenskaper for knapp',
|
||||
text: 'Tekst (verdi)',
|
||||
type: 'Type',
|
||||
typeBtn: 'Knapp',
|
||||
typeSbm: 'Send',
|
||||
typeRst: 'Nullstill'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Egenskaper for avmerkingsboks',
|
||||
radioTitle: 'Egenskaper for alternativknapp',
|
||||
value: 'Verdi',
|
||||
selected: 'Valgt',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Egenskaper for skjema',
|
||||
menu: 'Egenskaper for skjema',
|
||||
action: 'Handling',
|
||||
method: 'Metode',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Egenskaper for skjult felt',
|
||||
name: 'Navn',
|
||||
value: 'Verdi'
|
||||
},
|
||||
select: {
|
||||
title: 'Egenskaper for rullegardinliste',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Tilgjenglige alternativer',
|
||||
value: 'Verdi',
|
||||
size: 'Størrelse',
|
||||
lines: 'Linjer',
|
||||
chkMulti: 'Tillat flervalg',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Tekst',
|
||||
opValue: 'Verdi',
|
||||
btnAdd: 'Legg til',
|
||||
btnModify: 'Endre',
|
||||
btnUp: 'Opp',
|
||||
btnDown: 'Ned',
|
||||
btnSetValue: 'Sett som valgt',
|
||||
btnDelete: 'Slett'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Egenskaper for tekstområde',
|
||||
cols: 'Kolonner',
|
||||
rows: 'Rader'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Egenskaper for tekstfelt',
|
||||
name: 'Navn',
|
||||
value: 'Verdi',
|
||||
charWidth: 'Tegnbredde',
|
||||
maxChars: 'Maks antall tegn',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Type',
|
||||
typeText: 'Tekst',
|
||||
typePass: 'Passord',
|
||||
typeEmail: 'Epost',
|
||||
typeSearch: 'Søk',
|
||||
typeTel: 'Telefonnummer',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/oc.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'oc', {
|
||||
button: {
|
||||
title: 'Proprietats del boton',
|
||||
text: 'Tèxte',
|
||||
type: 'Tipe',
|
||||
typeBtn: 'Boton',
|
||||
typeSbm: 'Validacion',
|
||||
typeRst: 'Remesa a zèro'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Proprietats de la casa de marcar',
|
||||
radioTitle: 'Proprietats del boton ràdio',
|
||||
value: 'Valor',
|
||||
selected: 'Seleccionat',
|
||||
required: 'Requesit'
|
||||
},
|
||||
form: {
|
||||
title: 'Proprietats del formulari',
|
||||
menu: 'Proprietats del formulari',
|
||||
action: 'Accion',
|
||||
method: 'Metòde',
|
||||
encoding: 'Encodatge'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Proprietats del camp invisible',
|
||||
name: 'Nom',
|
||||
value: 'Valor'
|
||||
},
|
||||
select: {
|
||||
title: 'Proprietats del menú desenrotlant',
|
||||
selectInfo: 'Informacions sul menú desenrotlant',
|
||||
opAvail: 'Opcions disponiblas',
|
||||
value: 'Valor',
|
||||
size: 'Talha',
|
||||
lines: 'linhas',
|
||||
chkMulti: 'Permetre las seleccions multiplas',
|
||||
required: 'Requesit',
|
||||
opText: 'Tèxte',
|
||||
opValue: 'Valor',
|
||||
btnAdd: 'Apondre',
|
||||
btnModify: 'Modificar',
|
||||
btnUp: 'Naut',
|
||||
btnDown: 'Bas',
|
||||
btnSetValue: 'Definir coma valor seleccionada',
|
||||
btnDelete: 'Suprimir'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Proprietats de la zòna de tèxte',
|
||||
cols: 'Colomnas',
|
||||
rows: 'Linhas'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Proprietats del camp tèxte',
|
||||
name: 'Nom',
|
||||
value: 'Valor',
|
||||
charWidth: 'Largor dels caractèrs',
|
||||
maxChars: 'Nombre maximum de caractèrs',
|
||||
required: 'Requesit',
|
||||
type: 'Tipe',
|
||||
typeText: 'Tèxte',
|
||||
typePass: 'Senhal',
|
||||
typeEmail: 'Corrièr electronic',
|
||||
typeSearch: 'Recercar',
|
||||
typeTel: 'Numèro de telefòn',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/pl.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'pl', {
|
||||
button: {
|
||||
title: 'Właściwości przycisku',
|
||||
text: 'Tekst (Wartość)',
|
||||
type: 'Typ',
|
||||
typeBtn: 'Przycisk',
|
||||
typeSbm: 'Wyślij',
|
||||
typeRst: 'Wyczyść'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Właściwości pola wyboru (checkbox)',
|
||||
radioTitle: 'Właściwości przycisku opcji (radio)',
|
||||
value: 'Wartość',
|
||||
selected: 'Zaznaczone',
|
||||
required: 'Wymagane'
|
||||
},
|
||||
form: {
|
||||
title: 'Właściwości formularza',
|
||||
menu: 'Właściwości formularza',
|
||||
action: 'Akcja',
|
||||
method: 'Metoda',
|
||||
encoding: 'Kodowanie'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Właściwości pola ukrytego',
|
||||
name: 'Nazwa',
|
||||
value: 'Wartość'
|
||||
},
|
||||
select: {
|
||||
title: 'Właściwości listy wyboru',
|
||||
selectInfo: 'Informacje',
|
||||
opAvail: 'Dostępne opcje',
|
||||
value: 'Wartość',
|
||||
size: 'Rozmiar',
|
||||
lines: 'wierszy',
|
||||
chkMulti: 'Wielokrotny wybór',
|
||||
required: 'Wymagane',
|
||||
opText: 'Tekst',
|
||||
opValue: 'Wartość',
|
||||
btnAdd: 'Dodaj',
|
||||
btnModify: 'Zmień',
|
||||
btnUp: 'Do góry',
|
||||
btnDown: 'Do dołu',
|
||||
btnSetValue: 'Ustaw jako zaznaczoną',
|
||||
btnDelete: 'Usuń'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Właściwości obszaru tekstowego',
|
||||
cols: 'Liczba kolumn',
|
||||
rows: 'Liczba wierszy'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Właściwości pola tekstowego',
|
||||
name: 'Nazwa',
|
||||
value: 'Wartość',
|
||||
charWidth: 'Szerokość w znakach',
|
||||
maxChars: 'Szerokość maksymalna',
|
||||
required: 'Wymagane',
|
||||
type: 'Typ',
|
||||
typeText: 'Tekst',
|
||||
typePass: 'Hasło',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Szukaj',
|
||||
typeTel: 'Numer telefonu',
|
||||
typeUrl: 'Adres URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/pt-br.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'pt-br', {
|
||||
button: {
|
||||
title: 'Formatar Botão',
|
||||
text: 'Texto (Valor)',
|
||||
type: 'Tipo',
|
||||
typeBtn: 'Botão',
|
||||
typeSbm: 'Enviar',
|
||||
typeRst: 'Limpar'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Formatar Caixa de Seleção',
|
||||
radioTitle: 'Formatar Botão de Opção',
|
||||
value: 'Valor',
|
||||
selected: 'Selecionado',
|
||||
required: 'Obrigatório'
|
||||
},
|
||||
form: {
|
||||
title: 'Formatar Formulário',
|
||||
menu: 'Formatar Formulário',
|
||||
action: 'Ação',
|
||||
method: 'Método',
|
||||
encoding: 'Codificação'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Formatar Campo Oculto',
|
||||
name: 'Nome',
|
||||
value: 'Valor'
|
||||
},
|
||||
select: {
|
||||
title: 'Formatar Caixa de Listagem',
|
||||
selectInfo: 'Informações',
|
||||
opAvail: 'Opções disponíveis',
|
||||
value: 'Valor',
|
||||
size: 'Tamanho',
|
||||
lines: 'linhas',
|
||||
chkMulti: 'Permitir múltiplas seleções',
|
||||
required: 'Obrigatório',
|
||||
opText: 'Texto',
|
||||
opValue: 'Valor',
|
||||
btnAdd: 'Adicionar',
|
||||
btnModify: 'Modificar',
|
||||
btnUp: 'Para cima',
|
||||
btnDown: 'Para baixo',
|
||||
btnSetValue: 'Definir como selecionado',
|
||||
btnDelete: 'Remover'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Formatar Área de Texto',
|
||||
cols: 'Colunas',
|
||||
rows: 'Linhas'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Formatar Caixa de Texto',
|
||||
name: 'Nome',
|
||||
value: 'Valor',
|
||||
charWidth: 'Comprimento (em caracteres)',
|
||||
maxChars: 'Número Máximo de Caracteres',
|
||||
required: 'Obrigatório',
|
||||
type: 'Tipo',
|
||||
typeText: 'Texto',
|
||||
typePass: 'Senha',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Busca',
|
||||
typeTel: 'Número de Telefone',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/pt.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'pt', {
|
||||
button: {
|
||||
title: 'Propriedades do botão',
|
||||
text: 'Texto (valor)',
|
||||
type: 'Tipo',
|
||||
typeBtn: 'Botão',
|
||||
typeSbm: 'Enviar',
|
||||
typeRst: 'Repor'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Propriedades da caixa de verificação',
|
||||
radioTitle: 'Propriedades do botão de rádio',
|
||||
value: 'Valor',
|
||||
selected: 'Selecionado',
|
||||
required: 'Obrigatório'
|
||||
},
|
||||
form: {
|
||||
title: 'Propriedades do formulário',
|
||||
menu: 'Propriedades do formulário',
|
||||
action: 'Ação',
|
||||
method: 'Método',
|
||||
encoding: 'Codificação'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Propriedades do campo oculto',
|
||||
name: 'Nome',
|
||||
value: 'Valor'
|
||||
},
|
||||
select: {
|
||||
title: 'Propriedades da caixa de seleção',
|
||||
selectInfo: 'Informação',
|
||||
opAvail: 'Opções disponíveis',
|
||||
value: 'Valor',
|
||||
size: 'Tamanho',
|
||||
lines: 'linhas',
|
||||
chkMulti: 'Permitir seleções múltiplas',
|
||||
required: 'Obrigatório',
|
||||
opText: 'Texto',
|
||||
opValue: 'Valor',
|
||||
btnAdd: 'Adicionar',
|
||||
btnModify: 'Modificar',
|
||||
btnUp: 'Subir',
|
||||
btnDown: 'Descer',
|
||||
btnSetValue: 'Definir como valor selecionado',
|
||||
btnDelete: 'Apagar'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Propriedades da área de texto',
|
||||
cols: 'Colunas',
|
||||
rows: 'Linhas'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Propriedades do campo de texto',
|
||||
name: 'Nome',
|
||||
value: 'Valor',
|
||||
charWidth: 'Tamanho do caracter',
|
||||
maxChars: 'Máximo de caracteres',
|
||||
required: 'Obrigatório',
|
||||
type: 'Tipo',
|
||||
typeText: 'Texto',
|
||||
typePass: 'Senha',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Pesquisar',
|
||||
typeTel: 'Telefone',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/ro.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'ro', {
|
||||
button: {
|
||||
title: 'Proprietăţi buton',
|
||||
text: 'Text (Valoare)',
|
||||
type: 'Tip',
|
||||
typeBtn: 'Buton',
|
||||
typeSbm: 'Trimite',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Proprietăţi bifă (Checkbox)',
|
||||
radioTitle: 'Proprietăţi buton radio (Radio Button)',
|
||||
value: 'Valoare',
|
||||
selected: 'Selectat',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Proprietăţi formular (Form)',
|
||||
menu: 'Proprietăţi formular (Form)',
|
||||
action: 'Acţiune',
|
||||
method: 'Metodă',
|
||||
encoding: 'Encodare'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Proprietăţi câmp ascuns (Hidden Field)',
|
||||
name: 'Nume',
|
||||
value: 'Valoare'
|
||||
},
|
||||
select: {
|
||||
title: 'Proprietăţi câmp selecţie (Selection Field)',
|
||||
selectInfo: 'Informaţii',
|
||||
opAvail: 'Opţiuni disponibile',
|
||||
value: 'Valoare',
|
||||
size: 'Mărime',
|
||||
lines: 'linii',
|
||||
chkMulti: 'Permite selecţii multiple',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Text',
|
||||
opValue: 'Valoare',
|
||||
btnAdd: 'Adaugă',
|
||||
btnModify: 'Modifică',
|
||||
btnUp: 'Sus',
|
||||
btnDown: 'Jos',
|
||||
btnSetValue: 'Setează ca valoare selectată',
|
||||
btnDelete: 'Şterge'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Proprietăţi suprafaţă text (Textarea)',
|
||||
cols: 'Coloane',
|
||||
rows: 'Linii'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Proprietăţi câmp text (Text Field)',
|
||||
name: 'Nume',
|
||||
value: 'Valoare',
|
||||
charWidth: 'Lărgimea caracterului',
|
||||
maxChars: 'Caractere maxime',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Tip',
|
||||
typeText: 'Text',
|
||||
typePass: 'Parolă',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Cauta',
|
||||
typeTel: 'Numar de telefon',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/ru.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'ru', {
|
||||
button: {
|
||||
title: 'Свойства кнопки',
|
||||
text: 'Текст (Значение)',
|
||||
type: 'Тип',
|
||||
typeBtn: 'Кнопка',
|
||||
typeSbm: 'Отправка',
|
||||
typeRst: 'Сброс'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Свойства флаговой кнопки',
|
||||
radioTitle: 'Свойства кнопки выбора',
|
||||
value: 'Значение',
|
||||
selected: 'Выбрано',
|
||||
required: 'Обязательное поле'
|
||||
},
|
||||
form: {
|
||||
title: 'Свойства формы',
|
||||
menu: 'Свойства формы',
|
||||
action: 'Действие',
|
||||
method: 'Метод',
|
||||
encoding: 'Кодировка'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Свойства скрытого поля',
|
||||
name: 'Имя',
|
||||
value: 'Значение'
|
||||
},
|
||||
select: {
|
||||
title: 'Свойства списка выбора',
|
||||
selectInfo: 'Информация о списке выбора',
|
||||
opAvail: 'Доступные варианты',
|
||||
value: 'Значение',
|
||||
size: 'Размер',
|
||||
lines: 'строк(и)',
|
||||
chkMulti: 'Разрешить выбор нескольких вариантов',
|
||||
required: 'Обязательное поле',
|
||||
opText: 'Текст',
|
||||
opValue: 'Значение',
|
||||
btnAdd: 'Добавить',
|
||||
btnModify: 'Изменить',
|
||||
btnUp: 'Поднять',
|
||||
btnDown: 'Опустить',
|
||||
btnSetValue: 'Пометить как выбранное',
|
||||
btnDelete: 'Удалить'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Свойства многострочного текстового поля',
|
||||
cols: 'Колонок',
|
||||
rows: 'Строк'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Свойства текстового поля',
|
||||
name: 'Имя',
|
||||
value: 'Значение',
|
||||
charWidth: 'Ширина поля (в символах)',
|
||||
maxChars: 'Макс. количество символов',
|
||||
required: 'Обязательное поле',
|
||||
type: 'Тип содержимого',
|
||||
typeText: 'Текст',
|
||||
typePass: 'Пароль',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Поиск',
|
||||
typeTel: 'Номер телефона',
|
||||
typeUrl: 'Ссылка'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/si.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'si', {
|
||||
button: {
|
||||
title: 'බොත්තම් ගුණ',
|
||||
text: 'වගන්තිය(වටිනාකම)',
|
||||
type: 'වර්ගය',
|
||||
typeBtn: 'බොත්තම',
|
||||
typeSbm: 'යොමුකරනවා',
|
||||
typeRst: 'නැවත ආරම්භකතත්වයට පත් කරනවා'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'ලකුණු කිරීමේ කොටුවේ ලක්ෂණ',
|
||||
radioTitle: 'Radio Button Properties', // MISSING
|
||||
value: 'Value', // MISSING
|
||||
selected: 'Selected', // MISSING
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'පෝරමයේ ',
|
||||
menu: 'පෝරමයේ ගුණ/',
|
||||
action: 'ගන්නා පියවර',
|
||||
method: 'ක්රමය',
|
||||
encoding: 'කේතීකරණය'
|
||||
},
|
||||
hidden: {
|
||||
title: 'සැඟවුණු ප්රදේශයේ ',
|
||||
name: 'නම',
|
||||
value: 'Value' // MISSING
|
||||
},
|
||||
select: {
|
||||
title: 'තේරීම් ප්රදේශයේ ',
|
||||
selectInfo: 'විස්තර තෝරන්න',
|
||||
opAvail: 'ඉතුරුවී ඇති වීකල්ප',
|
||||
value: 'Value', // MISSING
|
||||
size: 'විශාලත්වය',
|
||||
lines: 'lines', // MISSING
|
||||
chkMulti: 'Allow multiple selections', // MISSING
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Text', // MISSING
|
||||
opValue: 'Value', // MISSING
|
||||
btnAdd: 'Add', // MISSING
|
||||
btnModify: 'Modify', // MISSING
|
||||
btnUp: 'Up', // MISSING
|
||||
btnDown: 'Down', // MISSING
|
||||
btnSetValue: 'Set as selected value', // MISSING
|
||||
btnDelete: 'මකා දැම්ම'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Textarea Properties', // MISSING
|
||||
cols: 'සිරස් ',
|
||||
rows: 'Rows' // MISSING
|
||||
},
|
||||
textfield: {
|
||||
title: 'Text Field Properties', // MISSING
|
||||
name: 'නම',
|
||||
value: 'Value', // MISSING
|
||||
charWidth: 'Character Width', // MISSING
|
||||
maxChars: 'Maximum Characters', // MISSING
|
||||
required: 'Required', // MISSING
|
||||
type: 'වර්ගය',
|
||||
typeText: 'Text', // MISSING
|
||||
typePass: 'Password', // MISSING
|
||||
typeEmail: 'Email', // MISSING
|
||||
typeSearch: 'Search', // MISSING
|
||||
typeTel: 'Telephone Number', // MISSING
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/sk.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'sk', {
|
||||
button: {
|
||||
title: 'Vlastnosti tlačidla',
|
||||
text: 'Text (Hodnota)',
|
||||
type: 'Typ',
|
||||
typeBtn: 'Tlačidlo',
|
||||
typeSbm: 'Odoslať',
|
||||
typeRst: 'Resetovať'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Vlastnosti zaškrtávacieho políčka',
|
||||
radioTitle: 'Vlastnosti prepínača (radio button)',
|
||||
value: 'Hodnota',
|
||||
selected: 'Vybrané (selected)',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Vlastnosti formulára',
|
||||
menu: 'Vlastnosti formulára',
|
||||
action: 'Akcia (action)',
|
||||
method: 'Metóda (method)',
|
||||
encoding: 'Kódovanie (encoding)'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Vlastnosti skrytého poľa',
|
||||
name: 'Názov (name)',
|
||||
value: 'Hodnota'
|
||||
},
|
||||
select: {
|
||||
title: 'Vlastnosti rozbaľovacieho zoznamu',
|
||||
selectInfo: 'Informácie o výbere',
|
||||
opAvail: 'Dostupné možnosti',
|
||||
value: 'Hodnota',
|
||||
size: 'Veľkosť',
|
||||
lines: 'riadkov',
|
||||
chkMulti: 'Povoliť viacnásobný výber',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Text',
|
||||
opValue: 'Hodnota',
|
||||
btnAdd: 'Pridať',
|
||||
btnModify: 'Upraviť',
|
||||
btnUp: 'Hore',
|
||||
btnDown: 'Dole',
|
||||
btnSetValue: 'Nastaviť ako vybranú hodnotu',
|
||||
btnDelete: 'Vymazať'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Vlastnosti textovej oblasti (textarea)',
|
||||
cols: 'Stĺpcov',
|
||||
rows: 'Riadkov'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Vlastnosti textového poľa',
|
||||
name: 'Názov (name)',
|
||||
value: 'Hodnota',
|
||||
charWidth: 'Šírka poľa (podľa znakov)',
|
||||
maxChars: 'Maximálny počet znakov',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Typ',
|
||||
typeText: 'Text',
|
||||
typePass: 'Heslo',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Hľadať',
|
||||
typeTel: 'Telefónne číslo',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/sl.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'sl', {
|
||||
button: {
|
||||
title: 'Lastnosti gumba',
|
||||
text: 'Besedilo (Vrednost)',
|
||||
type: 'Vrsta',
|
||||
typeBtn: 'Gumb',
|
||||
typeSbm: 'Potrdi',
|
||||
typeRst: 'Ponastavi'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Lastnosti potrditvenega polja',
|
||||
radioTitle: 'Lastnosti izbirnega polja',
|
||||
value: 'Vrednost',
|
||||
selected: 'Izbrano',
|
||||
required: 'Zahtevano'
|
||||
},
|
||||
form: {
|
||||
title: 'Lastnosti obrazca',
|
||||
menu: 'Lastnosti obrazca',
|
||||
action: 'Dejanje',
|
||||
method: 'Metoda',
|
||||
encoding: 'Kodiranje znakov'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Lastnosti skritega polja',
|
||||
name: 'Ime',
|
||||
value: 'Vrednost'
|
||||
},
|
||||
select: {
|
||||
title: 'Lastnosti spustnega seznama',
|
||||
selectInfo: 'Podatki',
|
||||
opAvail: 'Razpoložljive izbire',
|
||||
value: 'Vrednost',
|
||||
size: 'Velikost',
|
||||
lines: 'vrstic',
|
||||
chkMulti: 'Dovoli izbor več vrednosti',
|
||||
required: 'Zahtevano',
|
||||
opText: 'Besedilo',
|
||||
opValue: 'Vrednost',
|
||||
btnAdd: 'Dodaj',
|
||||
btnModify: 'Spremeni',
|
||||
btnUp: 'Gor',
|
||||
btnDown: 'Dol',
|
||||
btnSetValue: 'Določi kot privzeto izbiro',
|
||||
btnDelete: 'Izbriši'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Lastnosti besedilnega območja',
|
||||
cols: 'Stolpcev',
|
||||
rows: 'Vrstic'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Lastnosti besedilnega polja',
|
||||
name: 'Ime',
|
||||
value: 'Vrednost',
|
||||
charWidth: 'Širina',
|
||||
maxChars: 'Največje število znakov',
|
||||
required: 'Zahtevano',
|
||||
type: 'Vrsta',
|
||||
typeText: 'Besedilo',
|
||||
typePass: 'Geslo',
|
||||
typeEmail: 'E-pošta',
|
||||
typeSearch: 'Iskanje',
|
||||
typeTel: 'Telefonska številka',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/sq.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'sq', {
|
||||
button: {
|
||||
title: 'Rekuizitat e Pullës',
|
||||
text: 'Teskti (Vlera)',
|
||||
type: 'LLoji',
|
||||
typeBtn: 'Buton',
|
||||
typeSbm: 'Dërgo',
|
||||
typeRst: 'Rikthe'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Rekuizitat e Kutizë Përzgjedhëse',
|
||||
radioTitle: 'Rekuizitat e Pullës',
|
||||
value: 'Vlera',
|
||||
selected: 'Përzgjedhur',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Rekuizitat e Formës',
|
||||
menu: 'Rekuizitat e Formës',
|
||||
action: 'Veprim',
|
||||
method: 'Metoda',
|
||||
encoding: 'Kodimi'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Rekuizitat e Fushës së Fshehur',
|
||||
name: 'Emër',
|
||||
value: 'Vlera'
|
||||
},
|
||||
select: {
|
||||
title: 'Rekuizitat e Fushës së Përzgjedhur',
|
||||
selectInfo: 'Përzgjidh Informacionin',
|
||||
opAvail: 'Opsionet e Mundshme',
|
||||
value: 'Vlera',
|
||||
size: 'Madhësia',
|
||||
lines: 'rreshtat',
|
||||
chkMulti: 'Lejo përzgjidhje të shumëfishta',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Teksti',
|
||||
opValue: 'Vlera',
|
||||
btnAdd: 'Vendos',
|
||||
btnModify: 'Ndrysho',
|
||||
btnUp: 'Sipër',
|
||||
btnDown: 'Poshtë',
|
||||
btnSetValue: 'Bëje si vlerë të përzgjedhur',
|
||||
btnDelete: 'Grise'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Rekuzitat e Fushës së Tekstit',
|
||||
cols: 'Kolonat',
|
||||
rows: 'Rreshtat'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Rekuizitat e Fushës së Tekstit',
|
||||
name: 'Emër',
|
||||
value: 'Vlera',
|
||||
charWidth: 'Gjerësia e Karakterit',
|
||||
maxChars: 'Numri maksimal i karaktereve',
|
||||
required: 'Required', // MISSING
|
||||
type: 'LLoji',
|
||||
typeText: 'Teksti',
|
||||
typePass: 'Fjalëkalimi',
|
||||
typeEmail: 'Posta Elektronike',
|
||||
typeSearch: 'Kërko',
|
||||
typeTel: 'Numri i Telefonit',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/sr-latn.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'sr-latn', {
|
||||
button: {
|
||||
title: 'Osobine dugmeta',
|
||||
text: 'Tekst (vrednost)',
|
||||
type: 'Tip',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Osobine polja za potvrdu',
|
||||
radioTitle: 'Osobine radio-dugmeta',
|
||||
value: 'Vrednost',
|
||||
selected: 'Označeno',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Osobine forme',
|
||||
menu: 'Osobine forme',
|
||||
action: 'Akcija',
|
||||
method: 'Metoda',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Osobine skrivenog polja',
|
||||
name: 'Naziv',
|
||||
value: 'Vrednost'
|
||||
},
|
||||
select: {
|
||||
title: 'Osobine izbornog polja',
|
||||
selectInfo: 'Info',
|
||||
opAvail: 'Dostupne opcije',
|
||||
value: 'Vrednost',
|
||||
size: 'Veličina',
|
||||
lines: 'linija',
|
||||
chkMulti: 'Dozvoli višestruku selekciju',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Tekst',
|
||||
opValue: 'Vrednost',
|
||||
btnAdd: 'Dodaj',
|
||||
btnModify: 'Izmeni',
|
||||
btnUp: 'Gore',
|
||||
btnDown: 'Dole',
|
||||
btnSetValue: 'Podesi kao označenu vrednost',
|
||||
btnDelete: 'Obriši'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Osobine zone teksta',
|
||||
cols: 'Broj kolona',
|
||||
rows: 'Broj redova'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Osobine tekstualnog polja',
|
||||
name: 'Naziv',
|
||||
value: 'Vrednost',
|
||||
charWidth: 'Širina (karaktera)',
|
||||
maxChars: 'Maksimalno karaktera',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Tip',
|
||||
typeText: 'Tekst',
|
||||
typePass: 'Lozinka',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Pretraži',
|
||||
typeTel: 'Broj telefona',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/sr.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'sr', {
|
||||
button: {
|
||||
title: 'Особине дугмета',
|
||||
text: 'Текст (вредност)',
|
||||
type: 'Tип',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Особине поља за потврду',
|
||||
radioTitle: 'Особине радио-дугмета',
|
||||
value: 'Вредност',
|
||||
selected: 'Означено',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'Особине форме',
|
||||
menu: 'Особине форме',
|
||||
action: 'Aкција',
|
||||
method: 'Mетода',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Особине скривеног поља',
|
||||
name: 'Назив',
|
||||
value: 'Вредност'
|
||||
},
|
||||
select: {
|
||||
title: 'Особине изборног поља',
|
||||
selectInfo: 'Инфо',
|
||||
opAvail: 'Доступне опције',
|
||||
value: 'Вредност',
|
||||
size: 'Величина',
|
||||
lines: 'линија',
|
||||
chkMulti: 'Дозволи вишеструку селекцију',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'Текст',
|
||||
opValue: 'Вредност',
|
||||
btnAdd: 'Додај',
|
||||
btnModify: 'Измени',
|
||||
btnUp: 'Горе',
|
||||
btnDown: 'Доле',
|
||||
btnSetValue: 'Подеси као означену вредност',
|
||||
btnDelete: 'Обриши'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Особине зоне текста',
|
||||
cols: 'Број колона',
|
||||
rows: 'Број редова'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Особине текстуалног поља',
|
||||
name: 'Назив',
|
||||
value: 'Вредност',
|
||||
charWidth: 'Ширина (карактера)',
|
||||
maxChars: 'Максимално карактера',
|
||||
required: 'Required', // MISSING
|
||||
type: 'Тип',
|
||||
typeText: 'Текст',
|
||||
typePass: 'Лозинка',
|
||||
typeEmail: 'Е-пошта',
|
||||
typeSearch: 'Претрага',
|
||||
typeTel: 'Број телефона',
|
||||
typeUrl: 'УРЛ'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/sv.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'sv', {
|
||||
button: {
|
||||
title: 'Egenskaper för knapp',
|
||||
text: 'Text (värde)',
|
||||
type: 'Typ',
|
||||
typeBtn: 'Knapp',
|
||||
typeSbm: 'Skicka',
|
||||
typeRst: 'Återställ'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Egenskaper för kryssruta',
|
||||
radioTitle: 'Egenskaper för alternativknapp',
|
||||
value: 'Värde',
|
||||
selected: 'Vald',
|
||||
required: 'Krävs'
|
||||
},
|
||||
form: {
|
||||
title: 'Egenskaper för formulär',
|
||||
menu: 'Egenskaper för formulär',
|
||||
action: 'Funktion',
|
||||
method: 'Metod',
|
||||
encoding: 'Kodning'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Egenskaper för dolt fält',
|
||||
name: 'Namn',
|
||||
value: 'Värde'
|
||||
},
|
||||
select: {
|
||||
title: 'Egenskaper för flervalslista',
|
||||
selectInfo: 'Information',
|
||||
opAvail: 'Befintliga val',
|
||||
value: 'Värde',
|
||||
size: 'Storlek',
|
||||
lines: 'Linjer',
|
||||
chkMulti: 'Tillåt flerval',
|
||||
required: 'Krävs',
|
||||
opText: 'Text',
|
||||
opValue: 'Värde',
|
||||
btnAdd: 'Lägg till',
|
||||
btnModify: 'Redigera',
|
||||
btnUp: 'Upp',
|
||||
btnDown: 'Ner',
|
||||
btnSetValue: 'Markera som valt värde',
|
||||
btnDelete: 'Radera'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Egenskaper för textruta',
|
||||
cols: 'Kolumner',
|
||||
rows: 'Rader'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Egenskaper för textfält',
|
||||
name: 'Namn',
|
||||
value: 'Värde',
|
||||
charWidth: 'Teckenbredd',
|
||||
maxChars: 'Max antal tecken',
|
||||
required: 'Krävs',
|
||||
type: 'Typ',
|
||||
typeText: 'Text',
|
||||
typePass: 'Lösenord',
|
||||
typeEmail: 'E-post',
|
||||
typeSearch: 'Sök',
|
||||
typeTel: 'Telefonnummer',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/th.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'th', {
|
||||
button: {
|
||||
title: 'รายละเอียดของ ปุ่ม',
|
||||
text: 'ข้อความ (ค่าตัวแปร)',
|
||||
type: 'ข้อความ',
|
||||
typeBtn: 'Button',
|
||||
typeSbm: 'Submit',
|
||||
typeRst: 'Reset'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'คุณสมบัติของ เช็คบ๊อก',
|
||||
radioTitle: 'คุณสมบัติของ เรดิโอบัตตอน',
|
||||
value: 'ค่าตัวแปร',
|
||||
selected: 'เลือกเป็นค่าเริ่มต้น',
|
||||
required: 'Required' // MISSING
|
||||
},
|
||||
form: {
|
||||
title: 'คุณสมบัติของ แบบฟอร์ม',
|
||||
menu: 'คุณสมบัติของ แบบฟอร์ม',
|
||||
action: 'แอคชั่น',
|
||||
method: 'เมธอด',
|
||||
encoding: 'Encoding'
|
||||
},
|
||||
hidden: {
|
||||
title: 'คุณสมบัติของ ฮิดเดนฟิลด์',
|
||||
name: 'ชื่อ',
|
||||
value: 'ค่าตัวแปร'
|
||||
},
|
||||
select: {
|
||||
title: 'คุณสมบัติของ แถบตัวเลือก',
|
||||
selectInfo: 'อินโฟ',
|
||||
opAvail: 'รายการตัวเลือก',
|
||||
value: 'ค่าตัวแปร',
|
||||
size: 'ขนาด',
|
||||
lines: 'บรรทัด',
|
||||
chkMulti: 'เลือกหลายค่าได้',
|
||||
required: 'Required', // MISSING
|
||||
opText: 'ข้อความ',
|
||||
opValue: 'ค่าตัวแปร',
|
||||
btnAdd: 'เพิ่ม',
|
||||
btnModify: 'แก้ไข',
|
||||
btnUp: 'บน',
|
||||
btnDown: 'ล่าง',
|
||||
btnSetValue: 'เลือกเป็นค่าเริ่มต้น',
|
||||
btnDelete: 'ลบ'
|
||||
},
|
||||
textarea: {
|
||||
title: 'คุณสมบัติของ เท็กแอเรีย',
|
||||
cols: 'สดมภ์',
|
||||
rows: 'แถว'
|
||||
},
|
||||
textfield: {
|
||||
title: 'คุณสมบัติของ เท็กซ์ฟิลด์',
|
||||
name: 'ชื่อ',
|
||||
value: 'ค่าตัวแปร',
|
||||
charWidth: 'ความกว้าง',
|
||||
maxChars: 'จำนวนตัวอักษรสูงสุด',
|
||||
required: 'Required', // MISSING
|
||||
type: 'ชนิด',
|
||||
typeText: 'ข้อความ',
|
||||
typePass: 'รหัสผ่าน',
|
||||
typeEmail: 'อีเมล',
|
||||
typeSearch: 'ค้นหาก',
|
||||
typeTel: 'หมายเลขโทรศัพท์',
|
||||
typeUrl: 'ที่อยู่อ้างอิง URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/tr.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'tr', {
|
||||
button: {
|
||||
title: 'Düğme Özellikleri',
|
||||
text: 'Metin (Değer)',
|
||||
type: 'Tip',
|
||||
typeBtn: 'Düğme',
|
||||
typeSbm: 'Gönder',
|
||||
typeRst: 'Sıfırla'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Onay Kutusu Özellikleri',
|
||||
radioTitle: 'Seçenek Düğmesi Özellikleri',
|
||||
value: 'Değer',
|
||||
selected: 'Seçili',
|
||||
required: 'Zorunlu'
|
||||
},
|
||||
form: {
|
||||
title: 'Form Özellikleri',
|
||||
menu: 'Form Özellikleri',
|
||||
action: 'İşlem',
|
||||
method: 'Yöntem',
|
||||
encoding: 'Kodlama'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Gizli Veri Özellikleri',
|
||||
name: 'Ad',
|
||||
value: 'Değer'
|
||||
},
|
||||
select: {
|
||||
title: 'Seçim Menüsü Özellikleri',
|
||||
selectInfo: 'Bilgi',
|
||||
opAvail: 'Mevcut Seçenekler',
|
||||
value: 'Değer',
|
||||
size: 'Boyut',
|
||||
lines: 'satır',
|
||||
chkMulti: 'Çoklu seçime izin ver',
|
||||
required: 'Zorunlu',
|
||||
opText: 'Metin',
|
||||
opValue: 'Değer',
|
||||
btnAdd: 'Ekle',
|
||||
btnModify: 'Düzenle',
|
||||
btnUp: 'Yukarı',
|
||||
btnDown: 'Aşağı',
|
||||
btnSetValue: 'Seçili değer olarak ata',
|
||||
btnDelete: 'Sil'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Çok Satırlı Metin Özellikleri',
|
||||
cols: 'Sütunlar',
|
||||
rows: 'Satırlar'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Metin Girişi Özellikleri',
|
||||
name: 'Ad',
|
||||
value: 'Değer',
|
||||
charWidth: 'Karakter Genişliği',
|
||||
maxChars: 'En Fazla Karakter',
|
||||
required: 'Zorunlu',
|
||||
type: 'Tür',
|
||||
typeText: 'Metin',
|
||||
typePass: 'Şifre',
|
||||
typeEmail: 'E-posta',
|
||||
typeSearch: 'Ara',
|
||||
typeTel: 'Telefon Numarası',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/tt.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'tt', {
|
||||
button: {
|
||||
title: 'Төймә үзлекләре',
|
||||
text: 'Текст (күләм)',
|
||||
type: 'Төр',
|
||||
typeBtn: 'Төймә',
|
||||
typeSbm: 'Җибәрү',
|
||||
typeRst: 'Кире кайтару'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Checkbox Properties', // MISSING
|
||||
radioTitle: 'Радио төймə үзлекләре',
|
||||
value: 'Күләм',
|
||||
selected: 'Сайланган',
|
||||
required: 'Мәҗбүри'
|
||||
},
|
||||
form: {
|
||||
title: 'Форма үзлекләре',
|
||||
menu: 'Форма үзлекләре',
|
||||
action: 'Гамәл',
|
||||
method: 'Ысул',
|
||||
encoding: 'Кодировка'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Яшерен кыр үзлекләре',
|
||||
name: 'Исем',
|
||||
value: 'Күләм'
|
||||
},
|
||||
select: {
|
||||
title: 'Selection Field Properties', // MISSING
|
||||
selectInfo: 'Информацияне сайлау',
|
||||
opAvail: 'Мөмкин булган көйләүләр',
|
||||
value: 'Күләм',
|
||||
size: 'Зурлык',
|
||||
lines: 'юллар',
|
||||
chkMulti: 'Allow multiple selections', // MISSING
|
||||
required: 'Мәҗбүри',
|
||||
opText: 'Текст',
|
||||
opValue: 'Күләм',
|
||||
btnAdd: 'Кушу',
|
||||
btnModify: 'Үзгәртү',
|
||||
btnUp: 'Өскә',
|
||||
btnDown: 'Аска',
|
||||
btnSetValue: 'Сайланган күләм булып билгеләргә',
|
||||
btnDelete: 'Бетерү'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Текст мәйданы үзлекләре',
|
||||
cols: 'Баганалар',
|
||||
rows: 'Юллар'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Текст кыры үзлекләре',
|
||||
name: 'Исем',
|
||||
value: 'Күләм',
|
||||
charWidth: 'Символлар киңлеге',
|
||||
maxChars: 'Maximum Characters', // MISSING
|
||||
required: 'Мәҗбүри',
|
||||
type: 'Төр',
|
||||
typeText: 'Текст',
|
||||
typePass: 'Сер сүз',
|
||||
typeEmail: 'Эл. почта',
|
||||
typeSearch: 'Эзләү',
|
||||
typeTel: 'Телефон номеры',
|
||||
typeUrl: 'Сылталама'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/ug.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'ug', {
|
||||
button: {
|
||||
title: 'توپچا خاسلىقى',
|
||||
text: 'بەلگە (قىممەت)',
|
||||
type: 'تىپى',
|
||||
typeBtn: 'توپچا',
|
||||
typeSbm: 'تاپشۇر',
|
||||
typeRst: 'ئەسلىگە قايتۇر'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'كۆپ تاللاش خاسلىقى',
|
||||
radioTitle: 'تاق تاللاش توپچا خاسلىقى',
|
||||
value: 'تاللىغان قىممەت',
|
||||
selected: 'تاللانغان',
|
||||
required: 'زۆرۈر'
|
||||
},
|
||||
form: {
|
||||
title: 'جەدۋەل خاسلىقى',
|
||||
menu: 'جەدۋەل خاسلىقى',
|
||||
action: 'مەشغۇلات',
|
||||
method: 'ئۇسۇل',
|
||||
encoding: 'جەدۋەل كودلىنىشى'
|
||||
},
|
||||
hidden: {
|
||||
title: 'يوشۇرۇن دائىرە خاسلىقى',
|
||||
name: 'ئات',
|
||||
value: 'دەسلەپكى قىممىتى'
|
||||
},
|
||||
select: {
|
||||
title: 'جەدۋەل/تىزىم خاسلىقى',
|
||||
selectInfo: 'ئۇچۇر تاللاڭ',
|
||||
opAvail: 'تاللاش تۈرلىرى',
|
||||
value: 'قىممەت',
|
||||
size: 'ئېگىزلىكى',
|
||||
lines: 'قۇر',
|
||||
chkMulti: 'كۆپ تاللاشچان',
|
||||
required: 'زۆرۈر',
|
||||
opText: 'تاللانما تېكىستى',
|
||||
opValue: 'تاللانما قىممىتى',
|
||||
btnAdd: 'قوش',
|
||||
btnModify: 'ئۆزگەرت',
|
||||
btnUp: 'ئۈستىگە',
|
||||
btnDown: 'ئاستىغا',
|
||||
btnSetValue: 'دەسلەپكى تاللانما قىممىتىگە تەڭشە',
|
||||
btnDelete: 'ئۆچۈر'
|
||||
},
|
||||
textarea: {
|
||||
title: ' كۆپ قۇرلۇق تېكىست خاسلىقى',
|
||||
cols: 'ھەرپ كەڭلىكى',
|
||||
rows: 'قۇر سانى'
|
||||
},
|
||||
textfield: {
|
||||
title: 'تاق قۇرلۇق تېكىست خاسلىقى',
|
||||
name: 'ئات',
|
||||
value: 'دەسلەپكى قىممىتى',
|
||||
charWidth: 'ھەرپ كەڭلىكى',
|
||||
maxChars: 'ئەڭ كۆپ ھەرپ سانى',
|
||||
required: 'زۆرۈر',
|
||||
type: 'تىپى',
|
||||
typeText: 'تېكىست',
|
||||
typePass: 'ئىم',
|
||||
typeEmail: 'تورخەت',
|
||||
typeSearch: 'ئىزدە',
|
||||
typeTel: 'تېلېفون نومۇر',
|
||||
typeUrl: 'ئادرېس'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/uk.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'uk', {
|
||||
button: {
|
||||
title: 'Властивості кнопки',
|
||||
text: 'Значення',
|
||||
type: 'Тип',
|
||||
typeBtn: 'Кнопка (button)',
|
||||
typeSbm: 'Надіслати (submit)',
|
||||
typeRst: 'Очистити (reset)'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Властивості галочки',
|
||||
radioTitle: 'Властивості кнопки вибору',
|
||||
value: 'Значення',
|
||||
selected: 'Обрана',
|
||||
required: 'Обов’язкове поле'
|
||||
},
|
||||
form: {
|
||||
title: 'Властивості форми',
|
||||
menu: 'Властивості форми',
|
||||
action: 'Дія',
|
||||
method: 'Метод',
|
||||
encoding: 'Кодування'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Властивості прихованого поля',
|
||||
name: 'Ім\'я',
|
||||
value: 'Значення'
|
||||
},
|
||||
select: {
|
||||
title: 'Властивості списку',
|
||||
selectInfo: 'Інфо',
|
||||
opAvail: 'Доступні варіанти',
|
||||
value: 'Значення',
|
||||
size: 'Кількість',
|
||||
lines: 'видимих позицій у списку',
|
||||
chkMulti: 'Список з мультивибором',
|
||||
required: 'Обов’язкове поле',
|
||||
opText: 'Текст',
|
||||
opValue: 'Значення',
|
||||
btnAdd: 'Добавити',
|
||||
btnModify: 'Змінити',
|
||||
btnUp: 'Вгору',
|
||||
btnDown: 'Вниз',
|
||||
btnSetValue: 'Встановити як обране значення',
|
||||
btnDelete: 'Видалити'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Властивості текстової області',
|
||||
cols: 'Стовбці',
|
||||
rows: 'Рядки'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Властивості текстового поля',
|
||||
name: 'Ім\'я',
|
||||
value: 'Значення',
|
||||
charWidth: 'Ширина',
|
||||
maxChars: 'Макс. к-ть символів',
|
||||
required: 'Обов’язкове поле',
|
||||
type: 'Тип',
|
||||
typeText: 'Текст',
|
||||
typePass: 'Пароль',
|
||||
typeEmail: 'Пошта',
|
||||
typeSearch: 'Пошук',
|
||||
typeTel: 'Мобільний',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||
71
4/ckeditor/plugins/forms/lang/vi.js
Executable file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'forms', 'vi', {
|
||||
button: {
|
||||
title: 'Thuộc tính của nút',
|
||||
text: 'Chuỗi hiển thị (giá trị)',
|
||||
type: 'Kiểu',
|
||||
typeBtn: 'Nút bấm',
|
||||
typeSbm: 'Nút gửi',
|
||||
typeRst: 'Nút nhập lại'
|
||||
},
|
||||
checkboxAndRadio: {
|
||||
checkboxTitle: 'Thuộc tính nút kiểm',
|
||||
radioTitle: 'Thuộc tính nút chọn',
|
||||
value: 'Giá trị',
|
||||
selected: 'Được chọn',
|
||||
required: 'Bắt buộc'
|
||||
},
|
||||
form: {
|
||||
title: 'Thuộc tính biểu mẫu',
|
||||
menu: 'Thuộc tính biểu mẫu',
|
||||
action: 'Hành động',
|
||||
method: 'Phương thức',
|
||||
encoding: 'Bảng mã'
|
||||
},
|
||||
hidden: {
|
||||
title: 'Thuộc tính trường ẩn',
|
||||
name: 'Tên',
|
||||
value: 'Giá trị'
|
||||
},
|
||||
select: {
|
||||
title: 'Thuộc tính ô chọn',
|
||||
selectInfo: 'Thông tin',
|
||||
opAvail: 'Các tùy chọn có thể sử dụng',
|
||||
value: 'Giá trị',
|
||||
size: 'Kích cỡ',
|
||||
lines: 'dòng',
|
||||
chkMulti: 'Cho phép chọn nhiều',
|
||||
required: 'Bắt buộc',
|
||||
opText: 'Văn bản',
|
||||
opValue: 'Giá trị',
|
||||
btnAdd: 'Thêm',
|
||||
btnModify: 'Thay đổi',
|
||||
btnUp: 'Lên',
|
||||
btnDown: 'Xuống',
|
||||
btnSetValue: 'Giá trị được chọn',
|
||||
btnDelete: 'Nút xoá'
|
||||
},
|
||||
textarea: {
|
||||
title: 'Thuộc tính vùng văn bản',
|
||||
cols: 'Số cột',
|
||||
rows: 'Số hàng'
|
||||
},
|
||||
textfield: {
|
||||
title: 'Thuộc tính trường văn bản',
|
||||
name: 'Tên',
|
||||
value: 'Giá trị',
|
||||
charWidth: 'Độ rộng của ký tự',
|
||||
maxChars: 'Số ký tự tối đa',
|
||||
required: 'Bắt buộc',
|
||||
type: 'Kiểu',
|
||||
typeText: 'Ký tự',
|
||||
typePass: 'Mật khẩu',
|
||||
typeEmail: 'Email',
|
||||
typeSearch: 'Tìm kiếm',
|
||||
typeTel: 'Số điện thoại',
|
||||
typeUrl: 'URL'
|
||||
}
|
||||
} );
|
||||