forked from Wavyzz/dolibarr
natural search in list pages
This commit is contained in:
@@ -1,350 +1,350 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.dialog.add( 'specialchar', function( editor )
|
||||
{
|
||||
/**
|
||||
* Simulate "this" of a dialog for non-dialog events.
|
||||
* @type {CKEDITOR.dialog}
|
||||
*/
|
||||
var dialog,
|
||||
lang = editor.lang.specialChar;
|
||||
|
||||
var onChoice = function( evt )
|
||||
{
|
||||
var target, value;
|
||||
if ( evt.data )
|
||||
target = evt.data.getTarget();
|
||||
else
|
||||
target = new CKEDITOR.dom.element( evt );
|
||||
|
||||
if ( target.getName() == 'a' && ( value = target.getChild( 0 ).getHtml() ) )
|
||||
{
|
||||
target.removeClass( "cke_light_background" );
|
||||
dialog.hide();
|
||||
|
||||
// We must use "insertText" here to keep text styled.
|
||||
var span = editor.document.createElement( 'span' );
|
||||
span.setHtml( value );
|
||||
editor.insertText( span.getText() );
|
||||
}
|
||||
};
|
||||
|
||||
var onClick = CKEDITOR.tools.addFunction( onChoice );
|
||||
|
||||
var focusedNode;
|
||||
|
||||
var onFocus = function( evt, target )
|
||||
{
|
||||
var value;
|
||||
target = target || evt.data.getTarget();
|
||||
|
||||
if ( target.getName() == 'span' )
|
||||
target = target.getParent();
|
||||
|
||||
if ( target.getName() == 'a' && ( value = target.getChild( 0 ).getHtml() ) )
|
||||
{
|
||||
// Trigger blur manually if there is focused node.
|
||||
if ( focusedNode )
|
||||
onBlur( null, focusedNode );
|
||||
|
||||
var htmlPreview = dialog.getContentElement( 'info', 'htmlPreview' ).getElement();
|
||||
|
||||
dialog.getContentElement( 'info', 'charPreview' ).getElement().setHtml( value );
|
||||
htmlPreview.setHtml( CKEDITOR.tools.htmlEncode( value ) );
|
||||
target.getParent().addClass( "cke_light_background" );
|
||||
|
||||
// Memorize focused node.
|
||||
focusedNode = target;
|
||||
}
|
||||
};
|
||||
|
||||
var onBlur = function( evt, target )
|
||||
{
|
||||
target = target || evt.data.getTarget();
|
||||
|
||||
if ( target.getName() == 'span' )
|
||||
target = target.getParent();
|
||||
|
||||
if ( target.getName() == 'a' )
|
||||
{
|
||||
dialog.getContentElement( 'info', 'charPreview' ).getElement().setHtml( ' ' );
|
||||
dialog.getContentElement( 'info', 'htmlPreview' ).getElement().setHtml( ' ' );
|
||||
target.getParent().removeClass( "cke_light_background" );
|
||||
|
||||
focusedNode = undefined;
|
||||
}
|
||||
};
|
||||
|
||||
var onKeydown = CKEDITOR.tools.addFunction( function( ev )
|
||||
{
|
||||
ev = new CKEDITOR.dom.event( ev );
|
||||
|
||||
// Get an Anchor element.
|
||||
var element = ev.getTarget();
|
||||
var relative, nodeToMove;
|
||||
var keystroke = ev.getKeystroke(),
|
||||
rtl = editor.lang.dir == 'rtl';
|
||||
|
||||
switch ( keystroke )
|
||||
{
|
||||
// UP-ARROW
|
||||
case 38 :
|
||||
// relative is TR
|
||||
if ( ( relative = element.getParent().getParent().getPrevious() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( [element.getParent().getIndex(), 0] );
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
}
|
||||
ev.preventDefault();
|
||||
break;
|
||||
// DOWN-ARROW
|
||||
case 40 :
|
||||
// relative is TR
|
||||
if ( ( relative = element.getParent().getParent().getNext() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( [ element.getParent().getIndex(), 0 ] );
|
||||
if ( nodeToMove && nodeToMove.type == 1 )
|
||||
{
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
}
|
||||
}
|
||||
ev.preventDefault();
|
||||
break;
|
||||
// SPACE
|
||||
// ENTER is already handled as onClick
|
||||
case 32 :
|
||||
onChoice( { data: ev } );
|
||||
ev.preventDefault();
|
||||
break;
|
||||
|
||||
// RIGHT-ARROW
|
||||
case rtl ? 37 : 39 :
|
||||
// TAB
|
||||
case 9 :
|
||||
// relative is TD
|
||||
if ( ( relative = element.getParent().getNext() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( 0 );
|
||||
if ( nodeToMove.type == 1 )
|
||||
{
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
else
|
||||
onBlur( null, element );
|
||||
}
|
||||
// relative is TR
|
||||
else if ( ( relative = element.getParent().getParent().getNext() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( [ 0, 0 ] );
|
||||
if ( nodeToMove && nodeToMove.type == 1 )
|
||||
{
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
else
|
||||
onBlur( null, element );
|
||||
}
|
||||
break;
|
||||
|
||||
// LEFT-ARROW
|
||||
case rtl ? 39 : 37 :
|
||||
// SHIFT + TAB
|
||||
case CKEDITOR.SHIFT + 9 :
|
||||
// relative is TD
|
||||
if ( ( relative = element.getParent().getPrevious() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( 0 );
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
// relative is TR
|
||||
else if ( ( relative = element.getParent().getParent().getPrevious() ) )
|
||||
{
|
||||
nodeToMove = relative.getLast().getChild( 0 );
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
else
|
||||
onBlur( null, element );
|
||||
break;
|
||||
default :
|
||||
// Do not stop not handled events.
|
||||
return;
|
||||
}
|
||||
});
|
||||
|
||||
return {
|
||||
title : lang.title,
|
||||
minWidth : 430,
|
||||
minHeight : 280,
|
||||
buttons : [ CKEDITOR.dialog.cancelButton ],
|
||||
charColumns : 17,
|
||||
onLoad : function()
|
||||
{
|
||||
var columns = this.definition.charColumns,
|
||||
extraChars = editor.config.extraSpecialChars,
|
||||
chars = editor.config.specialChars;
|
||||
|
||||
var charsTableLabel = CKEDITOR.tools.getNextId() + '_specialchar_table_label';
|
||||
var html = [ '<table role="listbox" aria-labelledby="' + charsTableLabel + '"' +
|
||||
' style="width: 320px; height: 100%; border-collapse: separate;"' +
|
||||
' align="center" cellspacing="2" cellpadding="2" border="0">' ];
|
||||
|
||||
var i = 0,
|
||||
size = chars.length,
|
||||
character,
|
||||
charDesc;
|
||||
|
||||
while ( i < size )
|
||||
{
|
||||
html.push( '<tr>' ) ;
|
||||
|
||||
for ( var j = 0 ; j < columns ; j++, i++ )
|
||||
{
|
||||
if ( ( character = chars[ i ] ) )
|
||||
{
|
||||
charDesc = '';
|
||||
|
||||
if ( character instanceof Array )
|
||||
{
|
||||
charDesc = character[ 1 ];
|
||||
character = character[ 0 ];
|
||||
}
|
||||
else
|
||||
{
|
||||
var _tmpName = character.replace( '&', '' ).replace( ';', '' ).replace( '#', '' );
|
||||
|
||||
// Use character in case description unavailable.
|
||||
charDesc = lang[ _tmpName ] || character;
|
||||
}
|
||||
|
||||
var charLabelId = 'cke_specialchar_label_' + i + '_' + CKEDITOR.tools.getNextNumber();
|
||||
|
||||
html.push(
|
||||
'<td class="cke_dark_background" style="cursor: default" role="presentation">' +
|
||||
'<a href="javascript: void(0);" role="option"' +
|
||||
' aria-posinset="' + ( i +1 ) + '"',
|
||||
' aria-setsize="' + size + '"',
|
||||
' aria-labelledby="' + charLabelId + '"',
|
||||
' style="cursor: inherit; display: block; height: 1.25em; margin-top: 0.25em; text-align: center;" title="', CKEDITOR.tools.htmlEncode( charDesc ), '"' +
|
||||
' onkeydown="CKEDITOR.tools.callFunction( ' + onKeydown + ', event, this )"' +
|
||||
' onclick="CKEDITOR.tools.callFunction(' + onClick + ', this); return false;"' +
|
||||
' tabindex="-1">' +
|
||||
'<span style="margin: 0 auto;cursor: inherit">' +
|
||||
character +
|
||||
'</span>' +
|
||||
'<span class="cke_voice_label" id="' + charLabelId + '">' +
|
||||
charDesc +
|
||||
'</span></a>');
|
||||
}
|
||||
else
|
||||
html.push( '<td class="cke_dark_background"> ' );
|
||||
|
||||
html.push( '</td>' );
|
||||
}
|
||||
html.push( '</tr>' );
|
||||
}
|
||||
|
||||
html.push( '</tbody></table>', '<span id="' + charsTableLabel + '" class="cke_voice_label">' + lang.options +'</span>' );
|
||||
|
||||
this.getContentElement( 'info', 'charContainer' ).getElement().setHtml( html.join( '' ) );
|
||||
},
|
||||
contents : [
|
||||
{
|
||||
id : 'info',
|
||||
label : editor.lang.common.generalTab,
|
||||
title : editor.lang.common.generalTab,
|
||||
padding : 0,
|
||||
align : 'top',
|
||||
elements : [
|
||||
{
|
||||
type : 'hbox',
|
||||
align : 'top',
|
||||
widths : [ '320px', '90px' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'html',
|
||||
id : 'charContainer',
|
||||
html : '',
|
||||
onMouseover : onFocus,
|
||||
onMouseout : onBlur,
|
||||
focus : function()
|
||||
{
|
||||
var firstChar = this.getElement().getElementsByTag( 'a' ).getItem( 0 );
|
||||
setTimeout( function()
|
||||
{
|
||||
firstChar.focus();
|
||||
onFocus( null, firstChar );
|
||||
}, 0 );
|
||||
},
|
||||
onShow : function()
|
||||
{
|
||||
var firstChar = this.getElement().getChild( [ 0, 0, 0, 0, 0 ] );
|
||||
setTimeout( function()
|
||||
{
|
||||
firstChar.focus();
|
||||
onFocus( null, firstChar );
|
||||
}, 0 );
|
||||
},
|
||||
onLoad : function( event )
|
||||
{
|
||||
dialog = event.sender;
|
||||
}
|
||||
},
|
||||
{
|
||||
type : 'hbox',
|
||||
align : 'top',
|
||||
widths : [ '100%' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'vbox',
|
||||
align : 'top',
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'html',
|
||||
html : '<div></div>'
|
||||
},
|
||||
{
|
||||
type : 'html',
|
||||
id : 'charPreview',
|
||||
className : 'cke_dark_background',
|
||||
style : 'border:1px solid #eeeeee;font-size:28px;height:40px;width:70px;padding-top:9px;font-family:\'Microsoft Sans Serif\',Arial,Helvetica,Verdana;text-align:center;',
|
||||
html : '<div> </div>'
|
||||
},
|
||||
{
|
||||
type : 'html',
|
||||
id : 'htmlPreview',
|
||||
className : 'cke_dark_background',
|
||||
style : 'border:1px solid #eeeeee;font-size:14px;height:20px;width:70px;padding-top:2px;font-family:\'Microsoft Sans Serif\',Arial,Helvetica,Verdana;text-align:center;',
|
||||
html : '<div> </div>'
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
} );
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.dialog.add( 'specialchar', function( editor )
|
||||
{
|
||||
/**
|
||||
* Simulate "this" of a dialog for non-dialog events.
|
||||
* @type {CKEDITOR.dialog}
|
||||
*/
|
||||
var dialog,
|
||||
lang = editor.lang.specialChar;
|
||||
|
||||
var onChoice = function( evt )
|
||||
{
|
||||
var target, value;
|
||||
if ( evt.data )
|
||||
target = evt.data.getTarget();
|
||||
else
|
||||
target = new CKEDITOR.dom.element( evt );
|
||||
|
||||
if ( target.getName() == 'a' && ( value = target.getChild( 0 ).getHtml() ) )
|
||||
{
|
||||
target.removeClass( "cke_light_background" );
|
||||
dialog.hide();
|
||||
|
||||
// We must use "insertText" here to keep text styled.
|
||||
var span = editor.document.createElement( 'span' );
|
||||
span.setHtml( value );
|
||||
editor.insertText( span.getText() );
|
||||
}
|
||||
};
|
||||
|
||||
var onClick = CKEDITOR.tools.addFunction( onChoice );
|
||||
|
||||
var focusedNode;
|
||||
|
||||
var onFocus = function( evt, target )
|
||||
{
|
||||
var value;
|
||||
target = target || evt.data.getTarget();
|
||||
|
||||
if ( target.getName() == 'span' )
|
||||
target = target.getParent();
|
||||
|
||||
if ( target.getName() == 'a' && ( value = target.getChild( 0 ).getHtml() ) )
|
||||
{
|
||||
// Trigger blur manually if there is focused node.
|
||||
if ( focusedNode )
|
||||
onBlur( null, focusedNode );
|
||||
|
||||
var htmlPreview = dialog.getContentElement( 'info', 'htmlPreview' ).getElement();
|
||||
|
||||
dialog.getContentElement( 'info', 'charPreview' ).getElement().setHtml( value );
|
||||
htmlPreview.setHtml( CKEDITOR.tools.htmlEncode( value ) );
|
||||
target.getParent().addClass( "cke_light_background" );
|
||||
|
||||
// Memorize focused node.
|
||||
focusedNode = target;
|
||||
}
|
||||
};
|
||||
|
||||
var onBlur = function( evt, target )
|
||||
{
|
||||
target = target || evt.data.getTarget();
|
||||
|
||||
if ( target.getName() == 'span' )
|
||||
target = target.getParent();
|
||||
|
||||
if ( target.getName() == 'a' )
|
||||
{
|
||||
dialog.getContentElement( 'info', 'charPreview' ).getElement().setHtml( ' ' );
|
||||
dialog.getContentElement( 'info', 'htmlPreview' ).getElement().setHtml( ' ' );
|
||||
target.getParent().removeClass( "cke_light_background" );
|
||||
|
||||
focusedNode = undefined;
|
||||
}
|
||||
};
|
||||
|
||||
var onKeydown = CKEDITOR.tools.addFunction( function( ev )
|
||||
{
|
||||
ev = new CKEDITOR.dom.event( ev );
|
||||
|
||||
// Get an Anchor element.
|
||||
var element = ev.getTarget();
|
||||
var relative, nodeToMove;
|
||||
var keystroke = ev.getKeystroke(),
|
||||
rtl = editor.lang.dir == 'rtl';
|
||||
|
||||
switch ( keystroke )
|
||||
{
|
||||
// UP-ARROW
|
||||
case 38 :
|
||||
// relative is TR
|
||||
if ( ( relative = element.getParent().getParent().getPrevious() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( [element.getParent().getIndex(), 0] );
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
}
|
||||
ev.preventDefault();
|
||||
break;
|
||||
// DOWN-ARROW
|
||||
case 40 :
|
||||
// relative is TR
|
||||
if ( ( relative = element.getParent().getParent().getNext() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( [ element.getParent().getIndex(), 0 ] );
|
||||
if ( nodeToMove && nodeToMove.type == 1 )
|
||||
{
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
}
|
||||
}
|
||||
ev.preventDefault();
|
||||
break;
|
||||
// SPACE
|
||||
// ENTER is already handled as onClick
|
||||
case 32 :
|
||||
onChoice( { data: ev } );
|
||||
ev.preventDefault();
|
||||
break;
|
||||
|
||||
// RIGHT-ARROW
|
||||
case rtl ? 37 : 39 :
|
||||
// TAB
|
||||
case 9 :
|
||||
// relative is TD
|
||||
if ( ( relative = element.getParent().getNext() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( 0 );
|
||||
if ( nodeToMove.type == 1 )
|
||||
{
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
else
|
||||
onBlur( null, element );
|
||||
}
|
||||
// relative is TR
|
||||
else if ( ( relative = element.getParent().getParent().getNext() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( [ 0, 0 ] );
|
||||
if ( nodeToMove && nodeToMove.type == 1 )
|
||||
{
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
else
|
||||
onBlur( null, element );
|
||||
}
|
||||
break;
|
||||
|
||||
// LEFT-ARROW
|
||||
case rtl ? 39 : 37 :
|
||||
// SHIFT + TAB
|
||||
case CKEDITOR.SHIFT + 9 :
|
||||
// relative is TD
|
||||
if ( ( relative = element.getParent().getPrevious() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( 0 );
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
// relative is TR
|
||||
else if ( ( relative = element.getParent().getParent().getPrevious() ) )
|
||||
{
|
||||
nodeToMove = relative.getLast().getChild( 0 );
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
else
|
||||
onBlur( null, element );
|
||||
break;
|
||||
default :
|
||||
// Do not stop not handled events.
|
||||
return;
|
||||
}
|
||||
});
|
||||
|
||||
return {
|
||||
title : lang.title,
|
||||
minWidth : 430,
|
||||
minHeight : 280,
|
||||
buttons : [ CKEDITOR.dialog.cancelButton ],
|
||||
charColumns : 17,
|
||||
onLoad : function()
|
||||
{
|
||||
var columns = this.definition.charColumns,
|
||||
extraChars = editor.config.extraSpecialChars,
|
||||
chars = editor.config.specialChars;
|
||||
|
||||
var charsTableLabel = CKEDITOR.tools.getNextId() + '_specialchar_table_label';
|
||||
var html = [ '<table role="listbox" aria-labelledby="' + charsTableLabel + '"' +
|
||||
' style="width: 320px; height: 100%; border-collapse: separate;"' +
|
||||
' align="center" cellspacing="2" cellpadding="2" border="0">' ];
|
||||
|
||||
var i = 0,
|
||||
size = chars.length,
|
||||
character,
|
||||
charDesc;
|
||||
|
||||
while ( i < size )
|
||||
{
|
||||
html.push( '<tr>' ) ;
|
||||
|
||||
for ( var j = 0 ; j < columns ; j++, i++ )
|
||||
{
|
||||
if ( ( character = chars[ i ] ) )
|
||||
{
|
||||
charDesc = '';
|
||||
|
||||
if ( character instanceof Array )
|
||||
{
|
||||
charDesc = character[ 1 ];
|
||||
character = character[ 0 ];
|
||||
}
|
||||
else
|
||||
{
|
||||
var _tmpName = character.replace( '&', '' ).replace( ';', '' ).replace( '#', '' );
|
||||
|
||||
// Use character in case description unavailable.
|
||||
charDesc = lang[ _tmpName ] || character;
|
||||
}
|
||||
|
||||
var charLabelId = 'cke_specialchar_label_' + i + '_' + CKEDITOR.tools.getNextNumber();
|
||||
|
||||
html.push(
|
||||
'<td class="cke_dark_background" style="cursor: default" role="presentation">' +
|
||||
'<a href="javascript: void(0);" role="option"' +
|
||||
' aria-posinset="' + ( i +1 ) + '"',
|
||||
' aria-setsize="' + size + '"',
|
||||
' aria-labelledby="' + charLabelId + '"',
|
||||
' style="cursor: inherit; display: block; height: 1.25em; margin-top: 0.25em; text-align: center;" title="', CKEDITOR.tools.htmlEncode( charDesc ), '"' +
|
||||
' onkeydown="CKEDITOR.tools.callFunction( ' + onKeydown + ', event, this )"' +
|
||||
' onclick="CKEDITOR.tools.callFunction(' + onClick + ', this); return false;"' +
|
||||
' tabindex="-1">' +
|
||||
'<span style="margin: 0 auto;cursor: inherit">' +
|
||||
character +
|
||||
'</span>' +
|
||||
'<span class="cke_voice_label" id="' + charLabelId + '">' +
|
||||
charDesc +
|
||||
'</span></a>');
|
||||
}
|
||||
else
|
||||
html.push( '<td class="cke_dark_background"> ' );
|
||||
|
||||
html.push( '</td>' );
|
||||
}
|
||||
html.push( '</tr>' );
|
||||
}
|
||||
|
||||
html.push( '</tbody></table>', '<span id="' + charsTableLabel + '" class="cke_voice_label">' + lang.options +'</span>' );
|
||||
|
||||
this.getContentElement( 'info', 'charContainer' ).getElement().setHtml( html.join( '' ) );
|
||||
},
|
||||
contents : [
|
||||
{
|
||||
id : 'info',
|
||||
label : editor.lang.common.generalTab,
|
||||
title : editor.lang.common.generalTab,
|
||||
padding : 0,
|
||||
align : 'top',
|
||||
elements : [
|
||||
{
|
||||
type : 'hbox',
|
||||
align : 'top',
|
||||
widths : [ '320px', '90px' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'html',
|
||||
id : 'charContainer',
|
||||
html : '',
|
||||
onMouseover : onFocus,
|
||||
onMouseout : onBlur,
|
||||
focus : function()
|
||||
{
|
||||
var firstChar = this.getElement().getElementsByTag( 'a' ).getItem( 0 );
|
||||
setTimeout( function()
|
||||
{
|
||||
firstChar.focus();
|
||||
onFocus( null, firstChar );
|
||||
}, 0 );
|
||||
},
|
||||
onShow : function()
|
||||
{
|
||||
var firstChar = this.getElement().getChild( [ 0, 0, 0, 0, 0 ] );
|
||||
setTimeout( function()
|
||||
{
|
||||
firstChar.focus();
|
||||
onFocus( null, firstChar );
|
||||
}, 0 );
|
||||
},
|
||||
onLoad : function( event )
|
||||
{
|
||||
dialog = event.sender;
|
||||
}
|
||||
},
|
||||
{
|
||||
type : 'hbox',
|
||||
align : 'top',
|
||||
widths : [ '100%' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'vbox',
|
||||
align : 'top',
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'html',
|
||||
html : '<div></div>'
|
||||
},
|
||||
{
|
||||
type : 'html',
|
||||
id : 'charPreview',
|
||||
className : 'cke_dark_background',
|
||||
style : 'border:1px solid #eeeeee;font-size:28px;height:40px;width:70px;padding-top:9px;font-family:\'Microsoft Sans Serif\',Arial,Helvetica,Verdana;text-align:center;',
|
||||
html : '<div> </div>'
|
||||
},
|
||||
{
|
||||
type : 'html',
|
||||
id : 'htmlPreview',
|
||||
className : 'cke_dark_background',
|
||||
style : 'border:1px solid #eeeeee;font-size:14px;height:20px;width:70px;padding-top:2px;font-family:\'Microsoft Sans Serif\',Arial,Helvetica,Verdana;text-align:center;',
|
||||
html : '<div> </div>'
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
} );
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
|
||||
cs.js Found: 118 Missing: 0
|
||||
cy.js Found: 118 Missing: 0
|
||||
de.js Found: 118 Missing: 0
|
||||
el.js Found: 16 Missing: 102
|
||||
eo.js Found: 118 Missing: 0
|
||||
et.js Found: 31 Missing: 87
|
||||
fa.js Found: 24 Missing: 94
|
||||
fi.js Found: 23 Missing: 95
|
||||
fr.js Found: 118 Missing: 0
|
||||
he.js Found: 1 Missing: 117
|
||||
hr.js Found: 23 Missing: 95
|
||||
it.js Found: 118 Missing: 0
|
||||
nb.js Found: 118 Missing: 0
|
||||
nl.js Found: 118 Missing: 0
|
||||
no.js Found: 118 Missing: 0
|
||||
pt-br.js Found: 118 Missing: 0
|
||||
tr.js Found: 118 Missing: 0
|
||||
ug.js Found: 39 Missing: 79
|
||||
zh-cn.js Found: 118 Missing: 0
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
|
||||
cs.js Found: 118 Missing: 0
|
||||
cy.js Found: 118 Missing: 0
|
||||
de.js Found: 118 Missing: 0
|
||||
el.js Found: 16 Missing: 102
|
||||
eo.js Found: 118 Missing: 0
|
||||
et.js Found: 31 Missing: 87
|
||||
fa.js Found: 24 Missing: 94
|
||||
fi.js Found: 23 Missing: 95
|
||||
fr.js Found: 118 Missing: 0
|
||||
he.js Found: 1 Missing: 117
|
||||
hr.js Found: 23 Missing: 95
|
||||
it.js Found: 118 Missing: 0
|
||||
nb.js Found: 118 Missing: 0
|
||||
nl.js Found: 118 Missing: 0
|
||||
no.js Found: 118 Missing: 0
|
||||
pt-br.js Found: 118 Missing: 0
|
||||
tr.js Found: 118 Missing: 0
|
||||
ug.js Found: 39 Missing: 79
|
||||
zh-cn.js Found: 118 Missing: 0
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'cs',
|
||||
{
|
||||
euro: 'Znak eura',
|
||||
lsquo: 'Počáteční uvozovka jednoduchá',
|
||||
rsquo: 'Koncová uvozovka jednoduchá',
|
||||
ldquo: 'Počáteční uvozovka dvojitá',
|
||||
rdquo: 'Koncová uvozovka dvojitá',
|
||||
ndash: 'En pomlčka',
|
||||
mdash: 'Em pomlčka',
|
||||
iexcl: 'Obrácený vykřičník',
|
||||
cent: 'Znak centu',
|
||||
pound: 'Znak libry',
|
||||
curren: 'Znak měny',
|
||||
yen: 'Znak jenu',
|
||||
brvbar: 'Přerušená svislá čára',
|
||||
sect: 'Znak oddílu',
|
||||
uml: 'Přehláska',
|
||||
copy: 'Znak copyrightu',
|
||||
ordf: 'Ženský indikátor rodu',
|
||||
laquo: 'Znak dvojitých lomených uvozovek vlevo',
|
||||
not: 'Logistický zápor',
|
||||
reg: 'Znak registrace',
|
||||
macr: 'Pomlčka nad',
|
||||
deg: 'Znak stupně',
|
||||
sup2: 'Dvojka jako horní index',
|
||||
sup3: 'Trojka jako horní index',
|
||||
acute: 'Čárka nad vpravo',
|
||||
micro: 'Znak mikro',
|
||||
para: 'Znak odstavce',
|
||||
middot: 'Tečka uprostřed',
|
||||
cedil: 'Ocásek vlevo',
|
||||
sup1: 'Jednička jako horní index',
|
||||
ordm: 'Mužský indikátor rodu',
|
||||
raquo: 'Znak dvojitých lomených uvozovek vpravo',
|
||||
frac14: 'Obyčejný zlomek jedna čtvrtina',
|
||||
frac12: 'Obyčejný zlomek jedna polovina',
|
||||
frac34: 'Obyčejný zlomek tři čtvrtiny',
|
||||
iquest: 'Znak obráceného otazníku',
|
||||
Agrave: 'Velké písmeno latinky A s čárkou nad vlevo',
|
||||
Aacute: 'Velké písmeno latinky A s čárkou nad vpravo',
|
||||
Acirc: 'Velké písmeno latinky A s vokáněm',
|
||||
Atilde: 'Velké písmeno latinky A s tildou',
|
||||
Auml: 'Velké písmeno latinky A s dvěma tečkami',
|
||||
Aring: 'Velké písmeno latinky A s kroužkem nad',
|
||||
AElig: 'Velké písmeno latinky Ae',
|
||||
Ccedil: 'Velké písmeno latinky C s ocáskem vlevo',
|
||||
Egrave: 'Velké písmeno latinky E s čárkou nad vlevo',
|
||||
Eacute: 'Velké písmeno latinky E s čárkou nad vpravo',
|
||||
Ecirc: 'Velké písmeno latinky E s vokáněm',
|
||||
Euml: 'Velké písmeno latinky E s dvěma tečkami',
|
||||
Igrave: 'Velké písmeno latinky I s čárkou nad vlevo',
|
||||
Iacute: 'Velké písmeno latinky I s čárkou nad vpravo',
|
||||
Icirc: 'Velké písmeno latinky I s vokáněm',
|
||||
Iuml: 'Velké písmeno latinky I s dvěma tečkami',
|
||||
ETH: 'Velké písmeno latinky Eth',
|
||||
Ntilde: 'Velké písmeno latinky N s tildou',
|
||||
Ograve: 'Velké písmeno latinky O s čárkou nad vlevo',
|
||||
Oacute: 'Velké písmeno latinky O s čárkou nad vpravo',
|
||||
Ocirc: 'Velké písmeno latinky O s vokáněm',
|
||||
Otilde: 'Velké písmeno latinky O s tildou',
|
||||
Ouml: 'Velké písmeno latinky O s dvěma tečkami',
|
||||
times: 'Znak násobení',
|
||||
Oslash: 'Velké písmeno latinky O přeškrtnuté',
|
||||
Ugrave: 'Velké písmeno latinky U s čárkou nad vlevo',
|
||||
Uacute: 'Velké písmeno latinky U s čárkou nad vpravo',
|
||||
Ucirc: 'Velké písmeno latinky U s vokáněm',
|
||||
Uuml: 'Velké písmeno latinky U s dvěma tečkami',
|
||||
Yacute: 'Velké písmeno latinky Y s čárkou nad vpravo',
|
||||
THORN: 'Velké písmeno latinky Thorn',
|
||||
szlig: 'Malé písmeno latinky ostré s',
|
||||
agrave: 'Malé písmeno latinky a s čárkou nad vlevo',
|
||||
aacute: 'Malé písmeno latinky a s čárkou nad vpravo',
|
||||
acirc: 'Malé písmeno latinky a s vokáněm',
|
||||
atilde: 'Malé písmeno latinky a s tildou',
|
||||
auml: 'Malé písmeno latinky a s dvěma tečkami',
|
||||
aring: 'Malé písmeno latinky a s kroužkem nad',
|
||||
aelig: 'Malé písmeno latinky ae',
|
||||
ccedil: 'Malé písmeno latinky c s ocáskem vlevo',
|
||||
egrave: 'Malé písmeno latinky e s čárkou nad vlevo',
|
||||
eacute: 'Malé písmeno latinky e s čárkou nad vpravo',
|
||||
ecirc: 'Malé písmeno latinky e s vokáněm',
|
||||
euml: 'Malé písmeno latinky e s dvěma tečkami',
|
||||
igrave: 'Malé písmeno latinky i s čárkou nad vlevo',
|
||||
iacute: 'Malé písmeno latinky i s čárkou nad vpravo',
|
||||
icirc: 'Malé písmeno latinky i s vokáněm',
|
||||
iuml: 'Malé písmeno latinky i s dvěma tečkami',
|
||||
eth: 'Malé písmeno latinky eth',
|
||||
ntilde: 'Malé písmeno latinky n s tildou',
|
||||
ograve: 'Malé písmeno latinky o s čárkou nad vlevo',
|
||||
oacute: 'Malé písmeno latinky o s čárkou nad vpravo',
|
||||
ocirc: 'Malé písmeno latinky o s vokáněm',
|
||||
otilde: 'Malé písmeno latinky o s tildou',
|
||||
ouml: 'Malé písmeno latinky o s dvěma tečkami',
|
||||
divide: 'Znak dělení',
|
||||
oslash: 'Malé písmeno latinky o přeškrtnuté',
|
||||
ugrave: 'Malé písmeno latinky u s čárkou nad vlevo',
|
||||
uacute: 'Malé písmeno latinky u s čárkou nad vpravo',
|
||||
ucirc: 'Malé písmeno latinky u s vokáněm',
|
||||
uuml: 'Malé písmeno latinky u s dvěma tečkami',
|
||||
yacute: 'Malé písmeno latinky y s čárkou nad vpravo',
|
||||
thorn: 'Malé písmeno latinky thorn',
|
||||
yuml: 'Malé písmeno latinky y s dvěma tečkami',
|
||||
OElig: 'Velká ligatura latinky OE',
|
||||
oelig: 'Malá ligatura latinky OE',
|
||||
'372': 'Velké písmeno latinky W s vokáněm',
|
||||
'374': 'Velké písmeno latinky Y s vokáněm',
|
||||
'373': 'Malé písmeno latinky w s vokáněm',
|
||||
'375': 'Malé písmeno latinky y s vokáněm',
|
||||
sbquo: 'Dolní 9 uvozovka jednoduchá',
|
||||
'8219': 'Horní obrácená 9 uvozovka jednoduchá',
|
||||
bdquo: 'Dolní 9 uvozovka dvojitá',
|
||||
hellip: 'Trojtečkový úvod',
|
||||
trade: 'Obchodní značka',
|
||||
'9658': 'Černý ukazatel směřující vpravo',
|
||||
bull: 'Kolečko',
|
||||
rarr: 'Šipka vpravo',
|
||||
rArr: 'Dvojitá šipka vpravo',
|
||||
hArr: 'Dvojitá šipka vlevo a vpravo',
|
||||
diams: 'Černé piky',
|
||||
asymp: 'Téměř se rovná'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'cs',
|
||||
{
|
||||
euro: 'Znak eura',
|
||||
lsquo: 'Počáteční uvozovka jednoduchá',
|
||||
rsquo: 'Koncová uvozovka jednoduchá',
|
||||
ldquo: 'Počáteční uvozovka dvojitá',
|
||||
rdquo: 'Koncová uvozovka dvojitá',
|
||||
ndash: 'En pomlčka',
|
||||
mdash: 'Em pomlčka',
|
||||
iexcl: 'Obrácený vykřičník',
|
||||
cent: 'Znak centu',
|
||||
pound: 'Znak libry',
|
||||
curren: 'Znak měny',
|
||||
yen: 'Znak jenu',
|
||||
brvbar: 'Přerušená svislá čára',
|
||||
sect: 'Znak oddílu',
|
||||
uml: 'Přehláska',
|
||||
copy: 'Znak copyrightu',
|
||||
ordf: 'Ženský indikátor rodu',
|
||||
laquo: 'Znak dvojitých lomených uvozovek vlevo',
|
||||
not: 'Logistický zápor',
|
||||
reg: 'Znak registrace',
|
||||
macr: 'Pomlčka nad',
|
||||
deg: 'Znak stupně',
|
||||
sup2: 'Dvojka jako horní index',
|
||||
sup3: 'Trojka jako horní index',
|
||||
acute: 'Čárka nad vpravo',
|
||||
micro: 'Znak mikro',
|
||||
para: 'Znak odstavce',
|
||||
middot: 'Tečka uprostřed',
|
||||
cedil: 'Ocásek vlevo',
|
||||
sup1: 'Jednička jako horní index',
|
||||
ordm: 'Mužský indikátor rodu',
|
||||
raquo: 'Znak dvojitých lomených uvozovek vpravo',
|
||||
frac14: 'Obyčejný zlomek jedna čtvrtina',
|
||||
frac12: 'Obyčejný zlomek jedna polovina',
|
||||
frac34: 'Obyčejný zlomek tři čtvrtiny',
|
||||
iquest: 'Znak obráceného otazníku',
|
||||
Agrave: 'Velké písmeno latinky A s čárkou nad vlevo',
|
||||
Aacute: 'Velké písmeno latinky A s čárkou nad vpravo',
|
||||
Acirc: 'Velké písmeno latinky A s vokáněm',
|
||||
Atilde: 'Velké písmeno latinky A s tildou',
|
||||
Auml: 'Velké písmeno latinky A s dvěma tečkami',
|
||||
Aring: 'Velké písmeno latinky A s kroužkem nad',
|
||||
AElig: 'Velké písmeno latinky Ae',
|
||||
Ccedil: 'Velké písmeno latinky C s ocáskem vlevo',
|
||||
Egrave: 'Velké písmeno latinky E s čárkou nad vlevo',
|
||||
Eacute: 'Velké písmeno latinky E s čárkou nad vpravo',
|
||||
Ecirc: 'Velké písmeno latinky E s vokáněm',
|
||||
Euml: 'Velké písmeno latinky E s dvěma tečkami',
|
||||
Igrave: 'Velké písmeno latinky I s čárkou nad vlevo',
|
||||
Iacute: 'Velké písmeno latinky I s čárkou nad vpravo',
|
||||
Icirc: 'Velké písmeno latinky I s vokáněm',
|
||||
Iuml: 'Velké písmeno latinky I s dvěma tečkami',
|
||||
ETH: 'Velké písmeno latinky Eth',
|
||||
Ntilde: 'Velké písmeno latinky N s tildou',
|
||||
Ograve: 'Velké písmeno latinky O s čárkou nad vlevo',
|
||||
Oacute: 'Velké písmeno latinky O s čárkou nad vpravo',
|
||||
Ocirc: 'Velké písmeno latinky O s vokáněm',
|
||||
Otilde: 'Velké písmeno latinky O s tildou',
|
||||
Ouml: 'Velké písmeno latinky O s dvěma tečkami',
|
||||
times: 'Znak násobení',
|
||||
Oslash: 'Velké písmeno latinky O přeškrtnuté',
|
||||
Ugrave: 'Velké písmeno latinky U s čárkou nad vlevo',
|
||||
Uacute: 'Velké písmeno latinky U s čárkou nad vpravo',
|
||||
Ucirc: 'Velké písmeno latinky U s vokáněm',
|
||||
Uuml: 'Velké písmeno latinky U s dvěma tečkami',
|
||||
Yacute: 'Velké písmeno latinky Y s čárkou nad vpravo',
|
||||
THORN: 'Velké písmeno latinky Thorn',
|
||||
szlig: 'Malé písmeno latinky ostré s',
|
||||
agrave: 'Malé písmeno latinky a s čárkou nad vlevo',
|
||||
aacute: 'Malé písmeno latinky a s čárkou nad vpravo',
|
||||
acirc: 'Malé písmeno latinky a s vokáněm',
|
||||
atilde: 'Malé písmeno latinky a s tildou',
|
||||
auml: 'Malé písmeno latinky a s dvěma tečkami',
|
||||
aring: 'Malé písmeno latinky a s kroužkem nad',
|
||||
aelig: 'Malé písmeno latinky ae',
|
||||
ccedil: 'Malé písmeno latinky c s ocáskem vlevo',
|
||||
egrave: 'Malé písmeno latinky e s čárkou nad vlevo',
|
||||
eacute: 'Malé písmeno latinky e s čárkou nad vpravo',
|
||||
ecirc: 'Malé písmeno latinky e s vokáněm',
|
||||
euml: 'Malé písmeno latinky e s dvěma tečkami',
|
||||
igrave: 'Malé písmeno latinky i s čárkou nad vlevo',
|
||||
iacute: 'Malé písmeno latinky i s čárkou nad vpravo',
|
||||
icirc: 'Malé písmeno latinky i s vokáněm',
|
||||
iuml: 'Malé písmeno latinky i s dvěma tečkami',
|
||||
eth: 'Malé písmeno latinky eth',
|
||||
ntilde: 'Malé písmeno latinky n s tildou',
|
||||
ograve: 'Malé písmeno latinky o s čárkou nad vlevo',
|
||||
oacute: 'Malé písmeno latinky o s čárkou nad vpravo',
|
||||
ocirc: 'Malé písmeno latinky o s vokáněm',
|
||||
otilde: 'Malé písmeno latinky o s tildou',
|
||||
ouml: 'Malé písmeno latinky o s dvěma tečkami',
|
||||
divide: 'Znak dělení',
|
||||
oslash: 'Malé písmeno latinky o přeškrtnuté',
|
||||
ugrave: 'Malé písmeno latinky u s čárkou nad vlevo',
|
||||
uacute: 'Malé písmeno latinky u s čárkou nad vpravo',
|
||||
ucirc: 'Malé písmeno latinky u s vokáněm',
|
||||
uuml: 'Malé písmeno latinky u s dvěma tečkami',
|
||||
yacute: 'Malé písmeno latinky y s čárkou nad vpravo',
|
||||
thorn: 'Malé písmeno latinky thorn',
|
||||
yuml: 'Malé písmeno latinky y s dvěma tečkami',
|
||||
OElig: 'Velká ligatura latinky OE',
|
||||
oelig: 'Malá ligatura latinky OE',
|
||||
'372': 'Velké písmeno latinky W s vokáněm',
|
||||
'374': 'Velké písmeno latinky Y s vokáněm',
|
||||
'373': 'Malé písmeno latinky w s vokáněm',
|
||||
'375': 'Malé písmeno latinky y s vokáněm',
|
||||
sbquo: 'Dolní 9 uvozovka jednoduchá',
|
||||
'8219': 'Horní obrácená 9 uvozovka jednoduchá',
|
||||
bdquo: 'Dolní 9 uvozovka dvojitá',
|
||||
hellip: 'Trojtečkový úvod',
|
||||
trade: 'Obchodní značka',
|
||||
'9658': 'Černý ukazatel směřující vpravo',
|
||||
bull: 'Kolečko',
|
||||
rarr: 'Šipka vpravo',
|
||||
rArr: 'Dvojitá šipka vpravo',
|
||||
hArr: 'Dvojitá šipka vlevo a vpravo',
|
||||
diams: 'Černé piky',
|
||||
asymp: 'Téměř se rovná'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'cy',
|
||||
{
|
||||
euro: 'Arwydd yr Ewro',
|
||||
lsquo: 'Dyfynnod chwith unigol',
|
||||
rsquo: 'Dyfynnod dde unigol',
|
||||
ldquo: 'Dyfynnod chwith dwbl',
|
||||
rdquo: 'Dyfynnod dde dwbl',
|
||||
ndash: 'Cysylltnod en',
|
||||
mdash: 'Cysylltnod em',
|
||||
iexcl: 'Ebychnod gwrthdro',
|
||||
cent: 'Arwydd sent',
|
||||
pound: 'Arwydd punt',
|
||||
curren: 'Arwydd arian cyfred',
|
||||
yen: 'Arwydd yen',
|
||||
brvbar: 'Bar toriedig',
|
||||
sect: 'Arwydd adran',
|
||||
uml: 'Didolnod',
|
||||
copy: 'Arwydd hawlfraint',
|
||||
ordf: 'Dangosydd benywaidd',
|
||||
laquo: 'Dyfynnod dwbl ar ongl i\'r chwith',
|
||||
not: 'Arwydd Nid',
|
||||
reg: 'Arwydd cofrestredig',
|
||||
macr: 'Macron',
|
||||
deg: 'Arwydd gradd',
|
||||
sup2: 'Dau uwchsgript',
|
||||
sup3: 'Tri uwchsgript',
|
||||
acute: 'Acen ddyrchafedig',
|
||||
micro: 'Arwydd micro',
|
||||
para: 'Arwydd pilcrow',
|
||||
middot: 'Dot canol',
|
||||
cedil: 'Sedila',
|
||||
sup1: 'Un uwchsgript',
|
||||
ordm: 'Dangosydd gwrywaidd',
|
||||
raquo: 'Dyfynnod dwbl ar ongl i\'r dde',
|
||||
frac14: 'Ffracsiwn cyffredin un cwarter',
|
||||
frac12: 'Ffracsiwn cyffredin un hanner',
|
||||
frac34: 'Ffracsiwn cyffredin tri chwarter',
|
||||
iquest: 'Marc cwestiwn gwrthdroëdig',
|
||||
Agrave: 'Priflythyren A Lladinaidd gydag acen ddisgynedig',
|
||||
Aacute: 'Priflythyren A Lladinaidd gydag acen ddyrchafedig',
|
||||
Acirc: 'Priflythyren A Lladinaidd gydag acen grom',
|
||||
Atilde: 'Priflythyren A Lladinaidd gyda thild',
|
||||
Auml: 'Priflythyren A Lladinaidd gyda didolnod',
|
||||
Aring: 'Priflythyren A Lladinaidd gyda chylch uwchben',
|
||||
AElig: 'Priflythyren Æ Lladinaidd',
|
||||
Ccedil: 'Priflythyren C Lladinaidd gyda sedila',
|
||||
Egrave: 'Priflythyren E Lladinaidd gydag acen ddisgynedig',
|
||||
Eacute: 'Priflythyren E Lladinaidd gydag acen ddyrchafedig',
|
||||
Ecirc: 'Priflythyren E Lladinaidd gydag acen grom',
|
||||
Euml: 'Priflythyren E Lladinaidd gyda didolnod',
|
||||
Igrave: 'Priflythyren I Lladinaidd gydag acen ddisgynedig',
|
||||
Iacute: 'Priflythyren I Lladinaidd gydag acen ddyrchafedig',
|
||||
Icirc: 'Priflythyren I Lladinaidd gydag acen grom',
|
||||
Iuml: 'Priflythyren I Lladinaidd gyda didolnod',
|
||||
ETH: 'Priflythyren Eth',
|
||||
Ntilde: 'Priflythyren N Lladinaidd gyda thild',
|
||||
Ograve: 'Priflythyren O Lladinaidd gydag acen ddisgynedig',
|
||||
Oacute: 'Priflythyren O Lladinaidd gydag acen ddyrchafedig',
|
||||
Ocirc: 'Priflythyren O Lladinaidd gydag acen grom',
|
||||
Otilde: 'Priflythyren O Lladinaidd gyda thild',
|
||||
Ouml: 'Priflythyren O Lladinaidd gyda didolnod',
|
||||
times: 'Arwydd lluosi',
|
||||
Oslash: 'Priflythyren O Lladinaidd gyda strôc',
|
||||
Ugrave: 'Priflythyren U Lladinaidd gydag acen ddisgynedig',
|
||||
Uacute: 'Priflythyren U Lladinaidd gydag acen ddyrchafedig',
|
||||
Ucirc: 'Priflythyren U Lladinaidd gydag acen grom',
|
||||
Uuml: 'Priflythyren U Lladinaidd gyda didolnod',
|
||||
Yacute: 'Priflythyren Y Lladinaidd gydag acen ddyrchafedig',
|
||||
THORN: 'Priflythyren Thorn',
|
||||
szlig: 'Llythyren s fach Lladinaidd siarp ',
|
||||
agrave: 'Llythyren a fach Lladinaidd gydag acen ddisgynedig',
|
||||
aacute: 'Llythyren a fach Lladinaidd gydag acen ddyrchafedig',
|
||||
acirc: 'Llythyren a fach Lladinaidd gydag acen grom',
|
||||
atilde: 'Llythyren a fach Lladinaidd gyda thild',
|
||||
auml: 'Llythyren a fach Lladinaidd gyda didolnod',
|
||||
aring: 'Llythyren a fach Lladinaidd gyda chylch uwchben',
|
||||
aelig: 'Llythyren æ fach Lladinaidd',
|
||||
ccedil: 'Llythyren c fach Lladinaidd gyda sedila',
|
||||
egrave: 'Llythyren e fach Lladinaidd gydag acen ddisgynedig',
|
||||
eacute: 'Llythyren e fach Lladinaidd gydag acen ddyrchafedig',
|
||||
ecirc: 'Llythyren e fach Lladinaidd gydag acen grom',
|
||||
euml: 'Llythyren e fach Lladinaidd gyda didolnod',
|
||||
igrave: 'Llythyren i fach Lladinaidd gydag acen ddisgynedig',
|
||||
iacute: 'Llythyren i fach Lladinaidd gydag acen ddyrchafedig',
|
||||
icirc: 'Llythyren i fach Lladinaidd gydag acen grom',
|
||||
iuml: 'Llythyren i fach Lladinaidd gyda didolnod',
|
||||
eth: 'Llythyren eth fach',
|
||||
ntilde: 'Llythyren n fach Lladinaidd gyda thild',
|
||||
ograve: 'Llythyren o fach Lladinaidd gydag acen ddisgynedig',
|
||||
oacute: 'Llythyren o fach Lladinaidd gydag acen ddyrchafedig',
|
||||
ocirc: 'Llythyren o fach Lladinaidd gydag acen grom',
|
||||
otilde: 'Llythyren o fach Lladinaidd gyda thild',
|
||||
ouml: 'Llythyren o fach Lladinaidd gyda didolnod',
|
||||
divide: 'Arwydd rhannu',
|
||||
oslash: 'Llyth',
|
||||
ugrave: 'Llythyren u fach Lladinaidd gydag acen ddisgynedig',
|
||||
uacute: 'Llythyren u fach Lladinaidd gydag acen ddyrchafedig',
|
||||
ucirc: 'Llythyren u fach Lladinaidd gydag acen grom',
|
||||
uuml: 'Llythyren u fach Lladinaidd gyda didolnod',
|
||||
yacute: 'Llythyren y fach Lladinaidd gydag acen ddisgynedig',
|
||||
thorn: 'Llythyren o fach Lladinaidd gyda strôc',
|
||||
yuml: 'Llythyren y fach Lladinaidd gyda didolnod',
|
||||
OElig: 'Priflythyren cwlwm OE Lladinaidd ',
|
||||
oelig: 'Priflythyren cwlwm oe Lladinaidd ',
|
||||
'372': 'Priflythyren W gydag acen grom',
|
||||
'374': 'Priflythyren Y gydag acen grom',
|
||||
'373': 'Llythyren w fach gydag acen grom',
|
||||
'375': 'Llythyren y fach gydag acen grom',
|
||||
sbquo: 'Dyfynnod sengl 9-isel',
|
||||
'8219': 'Dyfynnod sengl 9-uchel cildro',
|
||||
bdquo: 'Dyfynnod dwbl 9-isel',
|
||||
hellip: 'Coll geiriau llorweddol',
|
||||
trade: 'Arwydd marc masnachol',
|
||||
'9658': 'Pwyntydd du i\'r dde',
|
||||
bull: 'Bwled',
|
||||
rarr: 'Saeth i\'r dde',
|
||||
rArr: 'Saeth ddwbl i\'r dde',
|
||||
hArr: 'Saeth ddwbl i\'r chwith',
|
||||
diams: 'Siwt diemwnt du',
|
||||
asymp: 'Bron yn hafal iddo'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'cy',
|
||||
{
|
||||
euro: 'Arwydd yr Ewro',
|
||||
lsquo: 'Dyfynnod chwith unigol',
|
||||
rsquo: 'Dyfynnod dde unigol',
|
||||
ldquo: 'Dyfynnod chwith dwbl',
|
||||
rdquo: 'Dyfynnod dde dwbl',
|
||||
ndash: 'Cysylltnod en',
|
||||
mdash: 'Cysylltnod em',
|
||||
iexcl: 'Ebychnod gwrthdro',
|
||||
cent: 'Arwydd sent',
|
||||
pound: 'Arwydd punt',
|
||||
curren: 'Arwydd arian cyfred',
|
||||
yen: 'Arwydd yen',
|
||||
brvbar: 'Bar toriedig',
|
||||
sect: 'Arwydd adran',
|
||||
uml: 'Didolnod',
|
||||
copy: 'Arwydd hawlfraint',
|
||||
ordf: 'Dangosydd benywaidd',
|
||||
laquo: 'Dyfynnod dwbl ar ongl i\'r chwith',
|
||||
not: 'Arwydd Nid',
|
||||
reg: 'Arwydd cofrestredig',
|
||||
macr: 'Macron',
|
||||
deg: 'Arwydd gradd',
|
||||
sup2: 'Dau uwchsgript',
|
||||
sup3: 'Tri uwchsgript',
|
||||
acute: 'Acen ddyrchafedig',
|
||||
micro: 'Arwydd micro',
|
||||
para: 'Arwydd pilcrow',
|
||||
middot: 'Dot canol',
|
||||
cedil: 'Sedila',
|
||||
sup1: 'Un uwchsgript',
|
||||
ordm: 'Dangosydd gwrywaidd',
|
||||
raquo: 'Dyfynnod dwbl ar ongl i\'r dde',
|
||||
frac14: 'Ffracsiwn cyffredin un cwarter',
|
||||
frac12: 'Ffracsiwn cyffredin un hanner',
|
||||
frac34: 'Ffracsiwn cyffredin tri chwarter',
|
||||
iquest: 'Marc cwestiwn gwrthdroëdig',
|
||||
Agrave: 'Priflythyren A Lladinaidd gydag acen ddisgynedig',
|
||||
Aacute: 'Priflythyren A Lladinaidd gydag acen ddyrchafedig',
|
||||
Acirc: 'Priflythyren A Lladinaidd gydag acen grom',
|
||||
Atilde: 'Priflythyren A Lladinaidd gyda thild',
|
||||
Auml: 'Priflythyren A Lladinaidd gyda didolnod',
|
||||
Aring: 'Priflythyren A Lladinaidd gyda chylch uwchben',
|
||||
AElig: 'Priflythyren Æ Lladinaidd',
|
||||
Ccedil: 'Priflythyren C Lladinaidd gyda sedila',
|
||||
Egrave: 'Priflythyren E Lladinaidd gydag acen ddisgynedig',
|
||||
Eacute: 'Priflythyren E Lladinaidd gydag acen ddyrchafedig',
|
||||
Ecirc: 'Priflythyren E Lladinaidd gydag acen grom',
|
||||
Euml: 'Priflythyren E Lladinaidd gyda didolnod',
|
||||
Igrave: 'Priflythyren I Lladinaidd gydag acen ddisgynedig',
|
||||
Iacute: 'Priflythyren I Lladinaidd gydag acen ddyrchafedig',
|
||||
Icirc: 'Priflythyren I Lladinaidd gydag acen grom',
|
||||
Iuml: 'Priflythyren I Lladinaidd gyda didolnod',
|
||||
ETH: 'Priflythyren Eth',
|
||||
Ntilde: 'Priflythyren N Lladinaidd gyda thild',
|
||||
Ograve: 'Priflythyren O Lladinaidd gydag acen ddisgynedig',
|
||||
Oacute: 'Priflythyren O Lladinaidd gydag acen ddyrchafedig',
|
||||
Ocirc: 'Priflythyren O Lladinaidd gydag acen grom',
|
||||
Otilde: 'Priflythyren O Lladinaidd gyda thild',
|
||||
Ouml: 'Priflythyren O Lladinaidd gyda didolnod',
|
||||
times: 'Arwydd lluosi',
|
||||
Oslash: 'Priflythyren O Lladinaidd gyda strôc',
|
||||
Ugrave: 'Priflythyren U Lladinaidd gydag acen ddisgynedig',
|
||||
Uacute: 'Priflythyren U Lladinaidd gydag acen ddyrchafedig',
|
||||
Ucirc: 'Priflythyren U Lladinaidd gydag acen grom',
|
||||
Uuml: 'Priflythyren U Lladinaidd gyda didolnod',
|
||||
Yacute: 'Priflythyren Y Lladinaidd gydag acen ddyrchafedig',
|
||||
THORN: 'Priflythyren Thorn',
|
||||
szlig: 'Llythyren s fach Lladinaidd siarp ',
|
||||
agrave: 'Llythyren a fach Lladinaidd gydag acen ddisgynedig',
|
||||
aacute: 'Llythyren a fach Lladinaidd gydag acen ddyrchafedig',
|
||||
acirc: 'Llythyren a fach Lladinaidd gydag acen grom',
|
||||
atilde: 'Llythyren a fach Lladinaidd gyda thild',
|
||||
auml: 'Llythyren a fach Lladinaidd gyda didolnod',
|
||||
aring: 'Llythyren a fach Lladinaidd gyda chylch uwchben',
|
||||
aelig: 'Llythyren æ fach Lladinaidd',
|
||||
ccedil: 'Llythyren c fach Lladinaidd gyda sedila',
|
||||
egrave: 'Llythyren e fach Lladinaidd gydag acen ddisgynedig',
|
||||
eacute: 'Llythyren e fach Lladinaidd gydag acen ddyrchafedig',
|
||||
ecirc: 'Llythyren e fach Lladinaidd gydag acen grom',
|
||||
euml: 'Llythyren e fach Lladinaidd gyda didolnod',
|
||||
igrave: 'Llythyren i fach Lladinaidd gydag acen ddisgynedig',
|
||||
iacute: 'Llythyren i fach Lladinaidd gydag acen ddyrchafedig',
|
||||
icirc: 'Llythyren i fach Lladinaidd gydag acen grom',
|
||||
iuml: 'Llythyren i fach Lladinaidd gyda didolnod',
|
||||
eth: 'Llythyren eth fach',
|
||||
ntilde: 'Llythyren n fach Lladinaidd gyda thild',
|
||||
ograve: 'Llythyren o fach Lladinaidd gydag acen ddisgynedig',
|
||||
oacute: 'Llythyren o fach Lladinaidd gydag acen ddyrchafedig',
|
||||
ocirc: 'Llythyren o fach Lladinaidd gydag acen grom',
|
||||
otilde: 'Llythyren o fach Lladinaidd gyda thild',
|
||||
ouml: 'Llythyren o fach Lladinaidd gyda didolnod',
|
||||
divide: 'Arwydd rhannu',
|
||||
oslash: 'Llyth',
|
||||
ugrave: 'Llythyren u fach Lladinaidd gydag acen ddisgynedig',
|
||||
uacute: 'Llythyren u fach Lladinaidd gydag acen ddyrchafedig',
|
||||
ucirc: 'Llythyren u fach Lladinaidd gydag acen grom',
|
||||
uuml: 'Llythyren u fach Lladinaidd gyda didolnod',
|
||||
yacute: 'Llythyren y fach Lladinaidd gydag acen ddisgynedig',
|
||||
thorn: 'Llythyren o fach Lladinaidd gyda strôc',
|
||||
yuml: 'Llythyren y fach Lladinaidd gyda didolnod',
|
||||
OElig: 'Priflythyren cwlwm OE Lladinaidd ',
|
||||
oelig: 'Priflythyren cwlwm oe Lladinaidd ',
|
||||
'372': 'Priflythyren W gydag acen grom',
|
||||
'374': 'Priflythyren Y gydag acen grom',
|
||||
'373': 'Llythyren w fach gydag acen grom',
|
||||
'375': 'Llythyren y fach gydag acen grom',
|
||||
sbquo: 'Dyfynnod sengl 9-isel',
|
||||
'8219': 'Dyfynnod sengl 9-uchel cildro',
|
||||
bdquo: 'Dyfynnod dwbl 9-isel',
|
||||
hellip: 'Coll geiriau llorweddol',
|
||||
trade: 'Arwydd marc masnachol',
|
||||
'9658': 'Pwyntydd du i\'r dde',
|
||||
bull: 'Bwled',
|
||||
rarr: 'Saeth i\'r dde',
|
||||
rArr: 'Saeth ddwbl i\'r dde',
|
||||
hArr: 'Saeth ddwbl i\'r chwith',
|
||||
diams: 'Siwt diemwnt du',
|
||||
asymp: 'Bron yn hafal iddo'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'de',
|
||||
{
|
||||
euro: 'Euro Zeichen',
|
||||
lsquo: 'Hochkomma links',
|
||||
rsquo: 'Hochkomma rechts',
|
||||
ldquo: 'Anführungszeichen links',
|
||||
rdquo: 'Anführungszeichen rechts',
|
||||
ndash: 'kleiner Strich',
|
||||
mdash: 'mittlerer Strich',
|
||||
iexcl: 'invertiertes Ausrufezeichen',
|
||||
cent: 'Cent',
|
||||
pound: 'Pfund',
|
||||
curren: 'Währung',
|
||||
yen: 'Yen',
|
||||
brvbar: 'gestrichelte Linie',
|
||||
sect: '§ Zeichen',
|
||||
uml: 'Diäresis',
|
||||
copy: 'Copyright',
|
||||
ordf: 'Feminine ordinal Anzeige',
|
||||
laquo: 'Nach links zeigenden Doppel-Winkel Anführungszeichen',
|
||||
not: 'Not-Zeichen',
|
||||
reg: 'Registriert',
|
||||
macr: 'Längezeichen',
|
||||
deg: 'Grad',
|
||||
sup2: 'Hoch 2',
|
||||
sup3: 'Hoch 3',
|
||||
acute: 'Akzentzeichen ',
|
||||
micro: 'Micro',
|
||||
para: 'Pilcrow-Zeichen',
|
||||
middot: 'Mittelpunkt',
|
||||
cedil: 'Cedilla',
|
||||
sup1: 'Hoch 1',
|
||||
ordm: 'Männliche Ordnungszahl Anzeige',
|
||||
raquo: 'Nach rechts zeigenden Doppel-Winkel Anführungszeichen',
|
||||
frac14: 'ein Viertel',
|
||||
frac12: 'Hälfte',
|
||||
frac34: 'Dreiviertel',
|
||||
iquest: 'Umgekehrtes Fragezeichen',
|
||||
Agrave: 'Lateinischer Buchstabe A mit AkzentGrave',
|
||||
Aacute: 'Lateinischer Buchstabe A mit Akutakzent',
|
||||
Acirc: 'Lateinischer Buchstabe A mit Zirkumflex',
|
||||
Atilde: 'Lateinischer Buchstabe A mit Tilde',
|
||||
Auml: 'Lateinischer Buchstabe A mit Trema',
|
||||
Aring: 'Lateinischer Buchstabe A mit Ring oben',
|
||||
AElig: 'Lateinischer Buchstabe Æ',
|
||||
Ccedil: 'Lateinischer Buchstabe C mit Cedille',
|
||||
Egrave: 'Lateinischer Buchstabe E mit AkzentGrave',
|
||||
Eacute: 'Lateinischer Buchstabe E mit Akutakzent',
|
||||
Ecirc: 'Lateinischer Buchstabe E mit Zirkumflex',
|
||||
Euml: 'Lateinischer Buchstabe E Trema',
|
||||
Igrave: 'Lateinischer Buchstabe I mit AkzentGrave',
|
||||
Iacute: 'Lateinischer Buchstabe I mit Akutakzent',
|
||||
Icirc: 'Lateinischer Buchstabe I mit Zirkumflex',
|
||||
Iuml: 'Lateinischer Buchstabe I mit Trema',
|
||||
ETH: 'Lateinischer Buchstabe Eth',
|
||||
Ntilde: 'Lateinischer Buchstabe N mit Tilde',
|
||||
Ograve: 'Lateinischer Buchstabe O mit AkzentGrave',
|
||||
Oacute: 'Lateinischer Buchstabe O mit Akutakzent',
|
||||
Ocirc: 'Lateinischer Buchstabe O mit Zirkumflex',
|
||||
Otilde: 'Lateinischer Buchstabe O mit Tilde',
|
||||
Ouml: 'Lateinischer Buchstabe O mit Trema',
|
||||
times: 'Multiplikation',
|
||||
Oslash: 'Lateinischer Buchstabe O durchgestrichen',
|
||||
Ugrave: 'Lateinischer Buchstabe U mit Akzentgrave',
|
||||
Uacute: 'Lateinischer Buchstabe U mit Akutakzent',
|
||||
Ucirc: 'Lateinischer Buchstabe U mit Zirkumflex',
|
||||
Uuml: 'Lateinischer Buchstabe a mit Trema',
|
||||
Yacute: 'Lateinischer Buchstabe a mit Akzent',
|
||||
THORN: 'Lateinischer Buchstabe mit Dorn',
|
||||
szlig: 'Kleiner lateinischer Buchstabe scharfe s',
|
||||
agrave: 'Kleiner lateinischer Buchstabe a mit Accent grave',
|
||||
aacute: 'Kleiner lateinischer Buchstabe a mit Akut',
|
||||
acirc: 'Lateinischer Buchstabe a mit Zirkumflex',
|
||||
atilde: 'Lateinischer Buchstabe a mit Tilde',
|
||||
auml: 'Kleiner lateinischer Buchstabe a mit Trema',
|
||||
aring: 'Kleiner lateinischer Buchstabe a mit Ring oben',
|
||||
aelig: 'Lateinischer Buchstabe æ',
|
||||
ccedil: 'Kleiner lateinischer Buchstabe c mit Cedille',
|
||||
egrave: 'Kleiner lateinischer Buchstabe e mit Accent grave',
|
||||
eacute: 'Kleiner lateinischer Buchstabe e mit Akut',
|
||||
ecirc: 'Kleiner lateinischer Buchstabe e mit Zirkumflex',
|
||||
euml: 'Kleiner lateinischer Buchstabe e mit Trema',
|
||||
igrave: 'Kleiner lateinischer Buchstabe i mit AkzentGrave',
|
||||
iacute: 'Kleiner lateinischer Buchstabe i mit Akzent',
|
||||
icirc: 'Kleiner lateinischer Buchstabe i mit Zirkumflex',
|
||||
iuml: 'Kleiner lateinischer Buchstabe i mit Trema',
|
||||
eth: 'Kleiner lateinischer Buchstabe eth',
|
||||
ntilde: 'Kleiner lateinischer Buchstabe n mit Tilde',
|
||||
ograve: 'Kleiner lateinischer Buchstabe o mit Accent grave',
|
||||
oacute: 'Kleiner lateinischer Buchstabe o mit Akzent',
|
||||
ocirc: 'Kleiner lateinischer Buchstabe o mit Zirkumflex',
|
||||
otilde: 'Lateinischer Buchstabe i mit Tilde',
|
||||
ouml: 'Kleiner lateinischer Buchstabe o mit Trema',
|
||||
divide: 'Divisionszeichen',
|
||||
oslash: 'Kleiner lateinischer Buchstabe o durchgestrichen',
|
||||
ugrave: 'Kleiner lateinischer Buchstabe u mit Accent grave',
|
||||
uacute: 'Kleiner lateinischer Buchstabe u mit Akut',
|
||||
ucirc: 'Kleiner lateinischer Buchstabe u mit Zirkumflex',
|
||||
uuml: 'Kleiner lateinischer Buchstabe u mit Trema',
|
||||
yacute: 'Kleiner lateinischer Buchstabe y mit Akut',
|
||||
thorn: 'Kleiner lateinischer Buchstabe Dorn',
|
||||
yuml: 'Kleiner lateinischer Buchstabe y mit Trema',
|
||||
OElig: 'Lateinischer Buchstabe Ligatur OE',
|
||||
oelig: 'Kleiner lateinischer Buchstabe Ligatur OE',
|
||||
'372': 'Lateinischer Buchstabe W mit Zirkumflex',
|
||||
'374': 'Lateinischer Buchstabe Y mit Zirkumflex',
|
||||
'373': 'Kleiner lateinischer Buchstabe w mit Zirkumflex',
|
||||
'375': 'Kleiner lateinischer Buchstabe y mit Zirkumflex',
|
||||
sbquo: 'Tiefergestelltes Komma',
|
||||
'8219': 'Rumgedrehtes Komma',
|
||||
bdquo: 'Doppeltes Anführungszeichen unten',
|
||||
hellip: 'horizontale Auslassungspunkte',
|
||||
trade: 'Handelszeichen',
|
||||
'9658': 'Dreickspfeil rechts',
|
||||
bull: 'Bullet',
|
||||
rarr: 'Pfeil rechts',
|
||||
rArr: 'Doppelpfeil rechts',
|
||||
hArr: 'Doppelpfeil links',
|
||||
diams: 'Karo',
|
||||
asymp: 'Ungefähr'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'de',
|
||||
{
|
||||
euro: 'Euro Zeichen',
|
||||
lsquo: 'Hochkomma links',
|
||||
rsquo: 'Hochkomma rechts',
|
||||
ldquo: 'Anführungszeichen links',
|
||||
rdquo: 'Anführungszeichen rechts',
|
||||
ndash: 'kleiner Strich',
|
||||
mdash: 'mittlerer Strich',
|
||||
iexcl: 'invertiertes Ausrufezeichen',
|
||||
cent: 'Cent',
|
||||
pound: 'Pfund',
|
||||
curren: 'Währung',
|
||||
yen: 'Yen',
|
||||
brvbar: 'gestrichelte Linie',
|
||||
sect: '§ Zeichen',
|
||||
uml: 'Diäresis',
|
||||
copy: 'Copyright',
|
||||
ordf: 'Feminine ordinal Anzeige',
|
||||
laquo: 'Nach links zeigenden Doppel-Winkel Anführungszeichen',
|
||||
not: 'Not-Zeichen',
|
||||
reg: 'Registriert',
|
||||
macr: 'Längezeichen',
|
||||
deg: 'Grad',
|
||||
sup2: 'Hoch 2',
|
||||
sup3: 'Hoch 3',
|
||||
acute: 'Akzentzeichen ',
|
||||
micro: 'Micro',
|
||||
para: 'Pilcrow-Zeichen',
|
||||
middot: 'Mittelpunkt',
|
||||
cedil: 'Cedilla',
|
||||
sup1: 'Hoch 1',
|
||||
ordm: 'Männliche Ordnungszahl Anzeige',
|
||||
raquo: 'Nach rechts zeigenden Doppel-Winkel Anführungszeichen',
|
||||
frac14: 'ein Viertel',
|
||||
frac12: 'Hälfte',
|
||||
frac34: 'Dreiviertel',
|
||||
iquest: 'Umgekehrtes Fragezeichen',
|
||||
Agrave: 'Lateinischer Buchstabe A mit AkzentGrave',
|
||||
Aacute: 'Lateinischer Buchstabe A mit Akutakzent',
|
||||
Acirc: 'Lateinischer Buchstabe A mit Zirkumflex',
|
||||
Atilde: 'Lateinischer Buchstabe A mit Tilde',
|
||||
Auml: 'Lateinischer Buchstabe A mit Trema',
|
||||
Aring: 'Lateinischer Buchstabe A mit Ring oben',
|
||||
AElig: 'Lateinischer Buchstabe Æ',
|
||||
Ccedil: 'Lateinischer Buchstabe C mit Cedille',
|
||||
Egrave: 'Lateinischer Buchstabe E mit AkzentGrave',
|
||||
Eacute: 'Lateinischer Buchstabe E mit Akutakzent',
|
||||
Ecirc: 'Lateinischer Buchstabe E mit Zirkumflex',
|
||||
Euml: 'Lateinischer Buchstabe E Trema',
|
||||
Igrave: 'Lateinischer Buchstabe I mit AkzentGrave',
|
||||
Iacute: 'Lateinischer Buchstabe I mit Akutakzent',
|
||||
Icirc: 'Lateinischer Buchstabe I mit Zirkumflex',
|
||||
Iuml: 'Lateinischer Buchstabe I mit Trema',
|
||||
ETH: 'Lateinischer Buchstabe Eth',
|
||||
Ntilde: 'Lateinischer Buchstabe N mit Tilde',
|
||||
Ograve: 'Lateinischer Buchstabe O mit AkzentGrave',
|
||||
Oacute: 'Lateinischer Buchstabe O mit Akutakzent',
|
||||
Ocirc: 'Lateinischer Buchstabe O mit Zirkumflex',
|
||||
Otilde: 'Lateinischer Buchstabe O mit Tilde',
|
||||
Ouml: 'Lateinischer Buchstabe O mit Trema',
|
||||
times: 'Multiplikation',
|
||||
Oslash: 'Lateinischer Buchstabe O durchgestrichen',
|
||||
Ugrave: 'Lateinischer Buchstabe U mit Akzentgrave',
|
||||
Uacute: 'Lateinischer Buchstabe U mit Akutakzent',
|
||||
Ucirc: 'Lateinischer Buchstabe U mit Zirkumflex',
|
||||
Uuml: 'Lateinischer Buchstabe a mit Trema',
|
||||
Yacute: 'Lateinischer Buchstabe a mit Akzent',
|
||||
THORN: 'Lateinischer Buchstabe mit Dorn',
|
||||
szlig: 'Kleiner lateinischer Buchstabe scharfe s',
|
||||
agrave: 'Kleiner lateinischer Buchstabe a mit Accent grave',
|
||||
aacute: 'Kleiner lateinischer Buchstabe a mit Akut',
|
||||
acirc: 'Lateinischer Buchstabe a mit Zirkumflex',
|
||||
atilde: 'Lateinischer Buchstabe a mit Tilde',
|
||||
auml: 'Kleiner lateinischer Buchstabe a mit Trema',
|
||||
aring: 'Kleiner lateinischer Buchstabe a mit Ring oben',
|
||||
aelig: 'Lateinischer Buchstabe æ',
|
||||
ccedil: 'Kleiner lateinischer Buchstabe c mit Cedille',
|
||||
egrave: 'Kleiner lateinischer Buchstabe e mit Accent grave',
|
||||
eacute: 'Kleiner lateinischer Buchstabe e mit Akut',
|
||||
ecirc: 'Kleiner lateinischer Buchstabe e mit Zirkumflex',
|
||||
euml: 'Kleiner lateinischer Buchstabe e mit Trema',
|
||||
igrave: 'Kleiner lateinischer Buchstabe i mit AkzentGrave',
|
||||
iacute: 'Kleiner lateinischer Buchstabe i mit Akzent',
|
||||
icirc: 'Kleiner lateinischer Buchstabe i mit Zirkumflex',
|
||||
iuml: 'Kleiner lateinischer Buchstabe i mit Trema',
|
||||
eth: 'Kleiner lateinischer Buchstabe eth',
|
||||
ntilde: 'Kleiner lateinischer Buchstabe n mit Tilde',
|
||||
ograve: 'Kleiner lateinischer Buchstabe o mit Accent grave',
|
||||
oacute: 'Kleiner lateinischer Buchstabe o mit Akzent',
|
||||
ocirc: 'Kleiner lateinischer Buchstabe o mit Zirkumflex',
|
||||
otilde: 'Lateinischer Buchstabe i mit Tilde',
|
||||
ouml: 'Kleiner lateinischer Buchstabe o mit Trema',
|
||||
divide: 'Divisionszeichen',
|
||||
oslash: 'Kleiner lateinischer Buchstabe o durchgestrichen',
|
||||
ugrave: 'Kleiner lateinischer Buchstabe u mit Accent grave',
|
||||
uacute: 'Kleiner lateinischer Buchstabe u mit Akut',
|
||||
ucirc: 'Kleiner lateinischer Buchstabe u mit Zirkumflex',
|
||||
uuml: 'Kleiner lateinischer Buchstabe u mit Trema',
|
||||
yacute: 'Kleiner lateinischer Buchstabe y mit Akut',
|
||||
thorn: 'Kleiner lateinischer Buchstabe Dorn',
|
||||
yuml: 'Kleiner lateinischer Buchstabe y mit Trema',
|
||||
OElig: 'Lateinischer Buchstabe Ligatur OE',
|
||||
oelig: 'Kleiner lateinischer Buchstabe Ligatur OE',
|
||||
'372': 'Lateinischer Buchstabe W mit Zirkumflex',
|
||||
'374': 'Lateinischer Buchstabe Y mit Zirkumflex',
|
||||
'373': 'Kleiner lateinischer Buchstabe w mit Zirkumflex',
|
||||
'375': 'Kleiner lateinischer Buchstabe y mit Zirkumflex',
|
||||
sbquo: 'Tiefergestelltes Komma',
|
||||
'8219': 'Rumgedrehtes Komma',
|
||||
bdquo: 'Doppeltes Anführungszeichen unten',
|
||||
hellip: 'horizontale Auslassungspunkte',
|
||||
trade: 'Handelszeichen',
|
||||
'9658': 'Dreickspfeil rechts',
|
||||
bull: 'Bullet',
|
||||
rarr: 'Pfeil rechts',
|
||||
rArr: 'Doppelpfeil rechts',
|
||||
hArr: 'Doppelpfeil links',
|
||||
diams: 'Karo',
|
||||
asymp: 'Ungefähr'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'el',
|
||||
{
|
||||
euro: 'Σύμβολο Ευρώ',
|
||||
lsquo: 'Αριστερός χαρακτήρας μονού εισαγωγικού',
|
||||
rsquo: 'Δεξιός χαρακτήρας μονού εισαγωγικού',
|
||||
ldquo: 'Αριστερός χαρακτήρας διπλού εισαγωγικού',
|
||||
rdquo: 'Δεξιός χαρακτήρας διπλού εισαγωγικού',
|
||||
ndash: 'Παύλα en',
|
||||
mdash: 'Παύλα em',
|
||||
iexcl: 'Ανάποδο θαυμαστικό',
|
||||
cent: 'Σύμβολο Σεντ',
|
||||
pound: 'Σύμβολο λίρας',
|
||||
curren: 'Σύμβολο συναλλαγματικής μονάδας',
|
||||
yen: 'Σύμβολο Γιέν',
|
||||
brvbar: 'Σπασμένη μπάρα',
|
||||
sect: 'Σύμβολο τμήματος',
|
||||
uml: 'Διαίρεση',
|
||||
copy: 'Σύμβολο πνευματικών δικαιωμάτων',
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Left-pointing double angle quotation mark', // MISSING
|
||||
not: 'Not sign', // MISSING
|
||||
reg: 'Registered sign', // MISSING
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'Degree sign', // MISSING
|
||||
sup2: 'Superscript two', // MISSING
|
||||
sup3: 'Superscript three', // MISSING
|
||||
acute: 'Acute accent', // MISSING
|
||||
micro: 'Micro sign', // MISSING
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'Middle dot', // MISSING
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Superscript one', // MISSING
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'Right-pointing double angle quotation mark', // MISSING
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Inverted question mark', // MISSING
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Rightwards arrow', // MISSING
|
||||
rArr: 'Rightwards double arrow', // MISSING
|
||||
hArr: 'Left right double arrow', // MISSING
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'Almost equal to' // MISSING
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'el',
|
||||
{
|
||||
euro: 'Σύμβολο Ευρώ',
|
||||
lsquo: 'Αριστερός χαρακτήρας μονού εισαγωγικού',
|
||||
rsquo: 'Δεξιός χαρακτήρας μονού εισαγωγικού',
|
||||
ldquo: 'Αριστερός χαρακτήρας διπλού εισαγωγικού',
|
||||
rdquo: 'Δεξιός χαρακτήρας διπλού εισαγωγικού',
|
||||
ndash: 'Παύλα en',
|
||||
mdash: 'Παύλα em',
|
||||
iexcl: 'Ανάποδο θαυμαστικό',
|
||||
cent: 'Σύμβολο Σεντ',
|
||||
pound: 'Σύμβολο λίρας',
|
||||
curren: 'Σύμβολο συναλλαγματικής μονάδας',
|
||||
yen: 'Σύμβολο Γιέν',
|
||||
brvbar: 'Σπασμένη μπάρα',
|
||||
sect: 'Σύμβολο τμήματος',
|
||||
uml: 'Διαίρεση',
|
||||
copy: 'Σύμβολο πνευματικών δικαιωμάτων',
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Left-pointing double angle quotation mark', // MISSING
|
||||
not: 'Not sign', // MISSING
|
||||
reg: 'Registered sign', // MISSING
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'Degree sign', // MISSING
|
||||
sup2: 'Superscript two', // MISSING
|
||||
sup3: 'Superscript three', // MISSING
|
||||
acute: 'Acute accent', // MISSING
|
||||
micro: 'Micro sign', // MISSING
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'Middle dot', // MISSING
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Superscript one', // MISSING
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'Right-pointing double angle quotation mark', // MISSING
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Inverted question mark', // MISSING
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Rightwards arrow', // MISSING
|
||||
rArr: 'Rightwards double arrow', // MISSING
|
||||
hArr: 'Left right double arrow', // MISSING
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'Almost equal to' // MISSING
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'en',
|
||||
{
|
||||
euro: 'Euro sign',
|
||||
lsquo: 'Left single quotation mark',
|
||||
rsquo: 'Right single quotation mark',
|
||||
ldquo: 'Left double quotation mark',
|
||||
rdquo: 'Right double quotation mark',
|
||||
ndash: 'En dash',
|
||||
mdash: 'Em dash',
|
||||
iexcl: 'Inverted exclamation mark',
|
||||
cent: 'Cent sign',
|
||||
pound: 'Pound sign',
|
||||
curren: 'Currency sign',
|
||||
yen: 'Yen sign',
|
||||
brvbar: 'Broken bar',
|
||||
sect: 'Section sign',
|
||||
uml: 'Diaeresis',
|
||||
copy: 'Copyright sign',
|
||||
ordf: 'Feminine ordinal indicator',
|
||||
laquo: 'Left-pointing double angle quotation mark',
|
||||
not: 'Not sign',
|
||||
reg: 'Registered sign',
|
||||
macr: 'Macron',
|
||||
deg: 'Degree sign',
|
||||
sup2: 'Superscript two',
|
||||
sup3: 'Superscript three',
|
||||
acute: 'Acute accent',
|
||||
micro: 'Micro sign',
|
||||
para: 'Pilcrow sign',
|
||||
middot: 'Middle dot',
|
||||
cedil: 'Cedilla',
|
||||
sup1: 'Superscript one',
|
||||
ordm: 'Masculine ordinal indicator',
|
||||
raquo: 'Right-pointing double angle quotation mark',
|
||||
frac14: 'Vulgar fraction one quarter',
|
||||
frac12: 'Vulgar fraction one half',
|
||||
frac34: 'Vulgar fraction three quarters',
|
||||
iquest: 'Inverted question mark',
|
||||
Agrave: 'Latin capital letter A with grave accent',
|
||||
Aacute: 'Latin capital letter A with acute accent',
|
||||
Acirc: 'Latin capital letter A with circumflex',
|
||||
Atilde: 'Latin capital letter A with tilde',
|
||||
Auml: 'Latin capital letter A with diaeresis',
|
||||
Aring: 'Latin capital letter A with ring above',
|
||||
AElig: 'Latin Capital letter Æ',
|
||||
Ccedil: 'Latin capital letter C with cedilla',
|
||||
Egrave: 'Latin capital letter E with grave accent',
|
||||
Eacute: 'Latin capital letter E with acute accent',
|
||||
Ecirc: 'Latin capital letter E with circumflex',
|
||||
Euml: 'Latin capital letter E with diaeresis',
|
||||
Igrave: 'Latin capital letter I with grave accent',
|
||||
Iacute: 'Latin capital letter I with acute accent',
|
||||
Icirc: 'Latin capital letter I with circumflex',
|
||||
Iuml: 'Latin capital letter I with diaeresis',
|
||||
ETH: 'Latin capital letter Eth',
|
||||
Ntilde: 'Latin capital letter N with tilde',
|
||||
Ograve: 'Latin capital letter O with grave accent',
|
||||
Oacute: 'Latin capital letter O with acute accent',
|
||||
Ocirc: 'Latin capital letter O with circumflex',
|
||||
Otilde: 'Latin capital letter O with tilde',
|
||||
Ouml: 'Latin capital letter O with diaeresis',
|
||||
times: 'Multiplication sign',
|
||||
Oslash: 'Latin capital letter O with stroke',
|
||||
Ugrave: 'Latin capital letter U with grave accent',
|
||||
Uacute: 'Latin capital letter U with acute accent',
|
||||
Ucirc: 'Latin capital letter U with circumflex',
|
||||
Uuml: 'Latin capital letter U with diaeresis',
|
||||
Yacute: 'Latin capital letter Y with acute accent',
|
||||
THORN: 'Latin capital letter Thorn',
|
||||
szlig: 'Latin small letter sharp s',
|
||||
agrave: 'Latin small letter a with grave accent',
|
||||
aacute: 'Latin small letter a with acute accent',
|
||||
acirc: 'Latin small letter a with circumflex',
|
||||
atilde: 'Latin small letter a with tilde',
|
||||
auml: 'Latin small letter a with diaeresis',
|
||||
aring: 'Latin small letter a with ring above',
|
||||
aelig: 'Latin small letter æ',
|
||||
ccedil: 'Latin small letter c with cedilla',
|
||||
egrave: 'Latin small letter e with grave accent',
|
||||
eacute: 'Latin small letter e with acute accent',
|
||||
ecirc: 'Latin small letter e with circumflex',
|
||||
euml: 'Latin small letter e with diaeresis',
|
||||
igrave: 'Latin small letter i with grave accent',
|
||||
iacute: 'Latin small letter i with acute accent',
|
||||
icirc: 'Latin small letter i with circumflex',
|
||||
iuml: 'Latin small letter i with diaeresis',
|
||||
eth: 'Latin small letter eth',
|
||||
ntilde: 'Latin small letter n with tilde',
|
||||
ograve: 'Latin small letter o with grave accent',
|
||||
oacute: 'Latin small letter o with acute accent',
|
||||
ocirc: 'Latin small letter o with circumflex',
|
||||
otilde: 'Latin small letter o with tilde',
|
||||
ouml: 'Latin small letter o with diaeresis',
|
||||
divide: 'Division sign',
|
||||
oslash: 'Latin small letter o with stroke',
|
||||
ugrave: 'Latin small letter u with grave accent',
|
||||
uacute: 'Latin small letter u with acute accent',
|
||||
ucirc: 'Latin small letter u with circumflex',
|
||||
uuml: 'Latin small letter u with diaeresis',
|
||||
yacute: 'Latin small letter y with acute accent',
|
||||
thorn: 'Latin small letter thorn',
|
||||
yuml: 'Latin small letter y with diaeresis',
|
||||
OElig: 'Latin capital ligature OE',
|
||||
oelig: 'Latin small ligature oe',
|
||||
'372': 'Latin capital letter W with circumflex',
|
||||
'374': 'Latin capital letter Y with circumflex',
|
||||
'373': 'Latin small letter w with circumflex',
|
||||
'375': 'Latin small letter y with circumflex',
|
||||
sbquo: 'Single low-9 quotation mark',
|
||||
'8219': 'Single high-reversed-9 quotation mark',
|
||||
bdquo: 'Double low-9 quotation mark',
|
||||
hellip: 'Horizontal ellipsis',
|
||||
trade: 'Trade mark sign',
|
||||
'9658': 'Black right-pointing pointer',
|
||||
bull: 'Bullet',
|
||||
rarr: 'Rightwards arrow',
|
||||
rArr: 'Rightwards double arrow',
|
||||
hArr: 'Left right double arrow',
|
||||
diams: 'Black diamond suit',
|
||||
asymp: 'Almost equal to'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'en',
|
||||
{
|
||||
euro: 'Euro sign',
|
||||
lsquo: 'Left single quotation mark',
|
||||
rsquo: 'Right single quotation mark',
|
||||
ldquo: 'Left double quotation mark',
|
||||
rdquo: 'Right double quotation mark',
|
||||
ndash: 'En dash',
|
||||
mdash: 'Em dash',
|
||||
iexcl: 'Inverted exclamation mark',
|
||||
cent: 'Cent sign',
|
||||
pound: 'Pound sign',
|
||||
curren: 'Currency sign',
|
||||
yen: 'Yen sign',
|
||||
brvbar: 'Broken bar',
|
||||
sect: 'Section sign',
|
||||
uml: 'Diaeresis',
|
||||
copy: 'Copyright sign',
|
||||
ordf: 'Feminine ordinal indicator',
|
||||
laquo: 'Left-pointing double angle quotation mark',
|
||||
not: 'Not sign',
|
||||
reg: 'Registered sign',
|
||||
macr: 'Macron',
|
||||
deg: 'Degree sign',
|
||||
sup2: 'Superscript two',
|
||||
sup3: 'Superscript three',
|
||||
acute: 'Acute accent',
|
||||
micro: 'Micro sign',
|
||||
para: 'Pilcrow sign',
|
||||
middot: 'Middle dot',
|
||||
cedil: 'Cedilla',
|
||||
sup1: 'Superscript one',
|
||||
ordm: 'Masculine ordinal indicator',
|
||||
raquo: 'Right-pointing double angle quotation mark',
|
||||
frac14: 'Vulgar fraction one quarter',
|
||||
frac12: 'Vulgar fraction one half',
|
||||
frac34: 'Vulgar fraction three quarters',
|
||||
iquest: 'Inverted question mark',
|
||||
Agrave: 'Latin capital letter A with grave accent',
|
||||
Aacute: 'Latin capital letter A with acute accent',
|
||||
Acirc: 'Latin capital letter A with circumflex',
|
||||
Atilde: 'Latin capital letter A with tilde',
|
||||
Auml: 'Latin capital letter A with diaeresis',
|
||||
Aring: 'Latin capital letter A with ring above',
|
||||
AElig: 'Latin Capital letter Æ',
|
||||
Ccedil: 'Latin capital letter C with cedilla',
|
||||
Egrave: 'Latin capital letter E with grave accent',
|
||||
Eacute: 'Latin capital letter E with acute accent',
|
||||
Ecirc: 'Latin capital letter E with circumflex',
|
||||
Euml: 'Latin capital letter E with diaeresis',
|
||||
Igrave: 'Latin capital letter I with grave accent',
|
||||
Iacute: 'Latin capital letter I with acute accent',
|
||||
Icirc: 'Latin capital letter I with circumflex',
|
||||
Iuml: 'Latin capital letter I with diaeresis',
|
||||
ETH: 'Latin capital letter Eth',
|
||||
Ntilde: 'Latin capital letter N with tilde',
|
||||
Ograve: 'Latin capital letter O with grave accent',
|
||||
Oacute: 'Latin capital letter O with acute accent',
|
||||
Ocirc: 'Latin capital letter O with circumflex',
|
||||
Otilde: 'Latin capital letter O with tilde',
|
||||
Ouml: 'Latin capital letter O with diaeresis',
|
||||
times: 'Multiplication sign',
|
||||
Oslash: 'Latin capital letter O with stroke',
|
||||
Ugrave: 'Latin capital letter U with grave accent',
|
||||
Uacute: 'Latin capital letter U with acute accent',
|
||||
Ucirc: 'Latin capital letter U with circumflex',
|
||||
Uuml: 'Latin capital letter U with diaeresis',
|
||||
Yacute: 'Latin capital letter Y with acute accent',
|
||||
THORN: 'Latin capital letter Thorn',
|
||||
szlig: 'Latin small letter sharp s',
|
||||
agrave: 'Latin small letter a with grave accent',
|
||||
aacute: 'Latin small letter a with acute accent',
|
||||
acirc: 'Latin small letter a with circumflex',
|
||||
atilde: 'Latin small letter a with tilde',
|
||||
auml: 'Latin small letter a with diaeresis',
|
||||
aring: 'Latin small letter a with ring above',
|
||||
aelig: 'Latin small letter æ',
|
||||
ccedil: 'Latin small letter c with cedilla',
|
||||
egrave: 'Latin small letter e with grave accent',
|
||||
eacute: 'Latin small letter e with acute accent',
|
||||
ecirc: 'Latin small letter e with circumflex',
|
||||
euml: 'Latin small letter e with diaeresis',
|
||||
igrave: 'Latin small letter i with grave accent',
|
||||
iacute: 'Latin small letter i with acute accent',
|
||||
icirc: 'Latin small letter i with circumflex',
|
||||
iuml: 'Latin small letter i with diaeresis',
|
||||
eth: 'Latin small letter eth',
|
||||
ntilde: 'Latin small letter n with tilde',
|
||||
ograve: 'Latin small letter o with grave accent',
|
||||
oacute: 'Latin small letter o with acute accent',
|
||||
ocirc: 'Latin small letter o with circumflex',
|
||||
otilde: 'Latin small letter o with tilde',
|
||||
ouml: 'Latin small letter o with diaeresis',
|
||||
divide: 'Division sign',
|
||||
oslash: 'Latin small letter o with stroke',
|
||||
ugrave: 'Latin small letter u with grave accent',
|
||||
uacute: 'Latin small letter u with acute accent',
|
||||
ucirc: 'Latin small letter u with circumflex',
|
||||
uuml: 'Latin small letter u with diaeresis',
|
||||
yacute: 'Latin small letter y with acute accent',
|
||||
thorn: 'Latin small letter thorn',
|
||||
yuml: 'Latin small letter y with diaeresis',
|
||||
OElig: 'Latin capital ligature OE',
|
||||
oelig: 'Latin small ligature oe',
|
||||
'372': 'Latin capital letter W with circumflex',
|
||||
'374': 'Latin capital letter Y with circumflex',
|
||||
'373': 'Latin small letter w with circumflex',
|
||||
'375': 'Latin small letter y with circumflex',
|
||||
sbquo: 'Single low-9 quotation mark',
|
||||
'8219': 'Single high-reversed-9 quotation mark',
|
||||
bdquo: 'Double low-9 quotation mark',
|
||||
hellip: 'Horizontal ellipsis',
|
||||
trade: 'Trade mark sign',
|
||||
'9658': 'Black right-pointing pointer',
|
||||
bull: 'Bullet',
|
||||
rarr: 'Rightwards arrow',
|
||||
rArr: 'Rightwards double arrow',
|
||||
hArr: 'Left right double arrow',
|
||||
diams: 'Black diamond suit',
|
||||
asymp: 'Almost equal to'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'eo',
|
||||
{
|
||||
euro: 'Eŭrosigno',
|
||||
lsquo: 'Supra 6-citilo',
|
||||
rsquo: 'Supra 9-citilo',
|
||||
ldquo: 'Supra 66-citilo',
|
||||
rdquo: 'Supra 99-citilo',
|
||||
ndash: 'Streketo',
|
||||
mdash: 'Substreko',
|
||||
iexcl: 'Renversita krisigno',
|
||||
cent: 'Cendosigno',
|
||||
pound: 'Pundosigno',
|
||||
curren: 'Monersigno',
|
||||
yen: 'Enosigno',
|
||||
brvbar: 'Rompita vertikala streko',
|
||||
sect: 'Kurba paragrafo',
|
||||
uml: 'Tremao',
|
||||
copy: 'Kopirajtosigno',
|
||||
ordf: 'Adjektiva numerfinaĵo',
|
||||
laquo: 'Duobla malplio-citilo',
|
||||
not: 'Negohoko',
|
||||
reg: 'Registrita marko',
|
||||
macr: 'Superstreko',
|
||||
deg: 'Gradosigno',
|
||||
sup2: 'Supra indico 2',
|
||||
sup3: 'Supra indico 3',
|
||||
acute: 'Dekstra korno',
|
||||
micro: 'Mikrosigno',
|
||||
para: 'Rekta paragrafo',
|
||||
middot: 'Meza punkto',
|
||||
cedil: 'Zoeto',
|
||||
sup1: 'Supra indico 1',
|
||||
ordm: 'Substantiva numerfinaĵo',
|
||||
raquo: 'Duobla plio-citilo',
|
||||
frac14: 'Kvaronosigno',
|
||||
frac12: 'Duonosigno',
|
||||
frac34: 'Trikvaronosigno',
|
||||
iquest: 'renversita demandosigno',
|
||||
Agrave: 'Latina ĉeflitero A kun liva korno',
|
||||
Aacute: 'Latina ĉeflitero A kun dekstra korno',
|
||||
Acirc: 'Latina ĉeflitero A kun ĉapelo',
|
||||
Atilde: 'Latina ĉeflitero A kun tildo',
|
||||
Auml: 'Latina ĉeflitero A kun tremao',
|
||||
Aring: 'Latina ĉeflitero A kun superringo',
|
||||
AElig: 'Latina ĉeflitera ligaturo Æ',
|
||||
Ccedil: 'Latina ĉeflitero C kun zoeto',
|
||||
Egrave: 'Latina ĉeflitero E kun liva korno',
|
||||
Eacute: 'Latina ĉeflitero E kun dekstra korno',
|
||||
Ecirc: 'Latina ĉeflitero E kun ĉapelo',
|
||||
Euml: 'Latina ĉeflitero E kun tremao',
|
||||
Igrave: 'Latina ĉeflitero I kun liva korno',
|
||||
Iacute: 'Latina ĉeflitero I kun dekstra korno',
|
||||
Icirc: 'Latina ĉeflitero I kun ĉapelo',
|
||||
Iuml: 'Latina ĉeflitero I kun tremao',
|
||||
ETH: 'Latina ĉeflitero islanda edo',
|
||||
Ntilde: 'Latina ĉeflitero N kun tildo',
|
||||
Ograve: 'Latina ĉeflitero O kun liva korno',
|
||||
Oacute: 'Latina ĉeflitero O kun dekstra korno',
|
||||
Ocirc: 'Latina ĉeflitero O kun ĉapelo',
|
||||
Otilde: 'Latina ĉeflitero O kun tildo',
|
||||
Ouml: 'Latina ĉeflitero O kun tremao',
|
||||
times: 'Multipliko',
|
||||
Oslash: 'Latina ĉeflitero O trastrekita',
|
||||
Ugrave: 'Latina ĉeflitero U kun liva korno',
|
||||
Uacute: 'Latina ĉeflitero U kun dekstra korno',
|
||||
Ucirc: 'Latina ĉeflitero U kun ĉapelo',
|
||||
Uuml: 'Latina ĉeflitero U kun tremao',
|
||||
Yacute: 'Latina ĉeflitero Y kun dekstra korno',
|
||||
THORN: 'Latina ĉeflitero islanda dorno',
|
||||
szlig: 'Latina etlitero germana sozo (akra s)',
|
||||
agrave: 'Latina etlitero a kun liva korno',
|
||||
aacute: 'Latina etlitero a kun dekstra korno',
|
||||
acirc: 'Latina etlitero a kun ĉapelo',
|
||||
atilde: 'Latina etlitero a kun tildo',
|
||||
auml: 'Latina etlitero a kun tremao',
|
||||
aring: 'Latina etlitero a kun superringo',
|
||||
aelig: 'Latina etlitera ligaturo æ',
|
||||
ccedil: 'Latina etlitero c kun zoeto',
|
||||
egrave: 'Latina etlitero e kun liva korno',
|
||||
eacute: 'Latina etlitero e kun dekstra korno',
|
||||
ecirc: 'Latina etlitero e kun ĉapelo',
|
||||
euml: 'Latina etlitero e kun tremao',
|
||||
igrave: 'Latina etlitero i kun liva korno',
|
||||
iacute: 'Latina etlitero i kun dekstra korno',
|
||||
icirc: 'Latina etlitero i kun ĉapelo',
|
||||
iuml: 'Latina etlitero i kun tremao',
|
||||
eth: 'Latina etlitero islanda edo',
|
||||
ntilde: 'Latina etlitero n kun tildo',
|
||||
ograve: 'Latina etlitero o kun liva korno',
|
||||
oacute: 'Latina etlitero o kun dekstra korno',
|
||||
ocirc: 'Latina etlitero o kun ĉapelo',
|
||||
otilde: 'Latina etlitero o kun tildo',
|
||||
ouml: 'Latina etlitero o kun tremao',
|
||||
divide: 'Dividosigno',
|
||||
oslash: 'Latina etlitero o trastrekita',
|
||||
ugrave: 'Latina etlitero u kun liva korno',
|
||||
uacute: 'Latina etlitero u kun dekstra korno',
|
||||
ucirc: 'Latina etlitero u kun ĉapelo',
|
||||
uuml: 'Latina etlitero u kun tremao',
|
||||
yacute: 'Latina etlitero y kun dekstra korno',
|
||||
thorn: 'Latina etlitero islanda dorno',
|
||||
yuml: 'Latina etlitero y kun tremao',
|
||||
OElig: 'Latina ĉeflitera ligaturo Œ',
|
||||
oelig: 'Latina etlitera ligaturo œ',
|
||||
'372': 'Latina ĉeflitero W kun ĉapelo',
|
||||
'374': 'Latina ĉeflitero Y kun ĉapelo',
|
||||
'373': 'Latina etlitero w kun ĉapelo',
|
||||
'375': 'Latina etlitero y kun ĉapelo',
|
||||
sbquo: 'Suba 9-citilo',
|
||||
'8219': 'Supra renversita 9-citilo',
|
||||
bdquo: 'Suba 99-citilo',
|
||||
hellip: 'Tripunkto',
|
||||
trade: 'Varmarka signo',
|
||||
'9658': 'Nigra sago dekstren',
|
||||
bull: 'Bulmarko',
|
||||
rarr: 'Sago dekstren',
|
||||
rArr: 'Duobla sago dekstren',
|
||||
hArr: 'Duobla sago maldekstren',
|
||||
diams: 'Nigra kvadrato',
|
||||
asymp: 'Preskaŭ egala'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'eo',
|
||||
{
|
||||
euro: 'Eŭrosigno',
|
||||
lsquo: 'Supra 6-citilo',
|
||||
rsquo: 'Supra 9-citilo',
|
||||
ldquo: 'Supra 66-citilo',
|
||||
rdquo: 'Supra 99-citilo',
|
||||
ndash: 'Streketo',
|
||||
mdash: 'Substreko',
|
||||
iexcl: 'Renversita krisigno',
|
||||
cent: 'Cendosigno',
|
||||
pound: 'Pundosigno',
|
||||
curren: 'Monersigno',
|
||||
yen: 'Enosigno',
|
||||
brvbar: 'Rompita vertikala streko',
|
||||
sect: 'Kurba paragrafo',
|
||||
uml: 'Tremao',
|
||||
copy: 'Kopirajtosigno',
|
||||
ordf: 'Adjektiva numerfinaĵo',
|
||||
laquo: 'Duobla malplio-citilo',
|
||||
not: 'Negohoko',
|
||||
reg: 'Registrita marko',
|
||||
macr: 'Superstreko',
|
||||
deg: 'Gradosigno',
|
||||
sup2: 'Supra indico 2',
|
||||
sup3: 'Supra indico 3',
|
||||
acute: 'Dekstra korno',
|
||||
micro: 'Mikrosigno',
|
||||
para: 'Rekta paragrafo',
|
||||
middot: 'Meza punkto',
|
||||
cedil: 'Zoeto',
|
||||
sup1: 'Supra indico 1',
|
||||
ordm: 'Substantiva numerfinaĵo',
|
||||
raquo: 'Duobla plio-citilo',
|
||||
frac14: 'Kvaronosigno',
|
||||
frac12: 'Duonosigno',
|
||||
frac34: 'Trikvaronosigno',
|
||||
iquest: 'renversita demandosigno',
|
||||
Agrave: 'Latina ĉeflitero A kun liva korno',
|
||||
Aacute: 'Latina ĉeflitero A kun dekstra korno',
|
||||
Acirc: 'Latina ĉeflitero A kun ĉapelo',
|
||||
Atilde: 'Latina ĉeflitero A kun tildo',
|
||||
Auml: 'Latina ĉeflitero A kun tremao',
|
||||
Aring: 'Latina ĉeflitero A kun superringo',
|
||||
AElig: 'Latina ĉeflitera ligaturo Æ',
|
||||
Ccedil: 'Latina ĉeflitero C kun zoeto',
|
||||
Egrave: 'Latina ĉeflitero E kun liva korno',
|
||||
Eacute: 'Latina ĉeflitero E kun dekstra korno',
|
||||
Ecirc: 'Latina ĉeflitero E kun ĉapelo',
|
||||
Euml: 'Latina ĉeflitero E kun tremao',
|
||||
Igrave: 'Latina ĉeflitero I kun liva korno',
|
||||
Iacute: 'Latina ĉeflitero I kun dekstra korno',
|
||||
Icirc: 'Latina ĉeflitero I kun ĉapelo',
|
||||
Iuml: 'Latina ĉeflitero I kun tremao',
|
||||
ETH: 'Latina ĉeflitero islanda edo',
|
||||
Ntilde: 'Latina ĉeflitero N kun tildo',
|
||||
Ograve: 'Latina ĉeflitero O kun liva korno',
|
||||
Oacute: 'Latina ĉeflitero O kun dekstra korno',
|
||||
Ocirc: 'Latina ĉeflitero O kun ĉapelo',
|
||||
Otilde: 'Latina ĉeflitero O kun tildo',
|
||||
Ouml: 'Latina ĉeflitero O kun tremao',
|
||||
times: 'Multipliko',
|
||||
Oslash: 'Latina ĉeflitero O trastrekita',
|
||||
Ugrave: 'Latina ĉeflitero U kun liva korno',
|
||||
Uacute: 'Latina ĉeflitero U kun dekstra korno',
|
||||
Ucirc: 'Latina ĉeflitero U kun ĉapelo',
|
||||
Uuml: 'Latina ĉeflitero U kun tremao',
|
||||
Yacute: 'Latina ĉeflitero Y kun dekstra korno',
|
||||
THORN: 'Latina ĉeflitero islanda dorno',
|
||||
szlig: 'Latina etlitero germana sozo (akra s)',
|
||||
agrave: 'Latina etlitero a kun liva korno',
|
||||
aacute: 'Latina etlitero a kun dekstra korno',
|
||||
acirc: 'Latina etlitero a kun ĉapelo',
|
||||
atilde: 'Latina etlitero a kun tildo',
|
||||
auml: 'Latina etlitero a kun tremao',
|
||||
aring: 'Latina etlitero a kun superringo',
|
||||
aelig: 'Latina etlitera ligaturo æ',
|
||||
ccedil: 'Latina etlitero c kun zoeto',
|
||||
egrave: 'Latina etlitero e kun liva korno',
|
||||
eacute: 'Latina etlitero e kun dekstra korno',
|
||||
ecirc: 'Latina etlitero e kun ĉapelo',
|
||||
euml: 'Latina etlitero e kun tremao',
|
||||
igrave: 'Latina etlitero i kun liva korno',
|
||||
iacute: 'Latina etlitero i kun dekstra korno',
|
||||
icirc: 'Latina etlitero i kun ĉapelo',
|
||||
iuml: 'Latina etlitero i kun tremao',
|
||||
eth: 'Latina etlitero islanda edo',
|
||||
ntilde: 'Latina etlitero n kun tildo',
|
||||
ograve: 'Latina etlitero o kun liva korno',
|
||||
oacute: 'Latina etlitero o kun dekstra korno',
|
||||
ocirc: 'Latina etlitero o kun ĉapelo',
|
||||
otilde: 'Latina etlitero o kun tildo',
|
||||
ouml: 'Latina etlitero o kun tremao',
|
||||
divide: 'Dividosigno',
|
||||
oslash: 'Latina etlitero o trastrekita',
|
||||
ugrave: 'Latina etlitero u kun liva korno',
|
||||
uacute: 'Latina etlitero u kun dekstra korno',
|
||||
ucirc: 'Latina etlitero u kun ĉapelo',
|
||||
uuml: 'Latina etlitero u kun tremao',
|
||||
yacute: 'Latina etlitero y kun dekstra korno',
|
||||
thorn: 'Latina etlitero islanda dorno',
|
||||
yuml: 'Latina etlitero y kun tremao',
|
||||
OElig: 'Latina ĉeflitera ligaturo Œ',
|
||||
oelig: 'Latina etlitera ligaturo œ',
|
||||
'372': 'Latina ĉeflitero W kun ĉapelo',
|
||||
'374': 'Latina ĉeflitero Y kun ĉapelo',
|
||||
'373': 'Latina etlitero w kun ĉapelo',
|
||||
'375': 'Latina etlitero y kun ĉapelo',
|
||||
sbquo: 'Suba 9-citilo',
|
||||
'8219': 'Supra renversita 9-citilo',
|
||||
bdquo: 'Suba 99-citilo',
|
||||
hellip: 'Tripunkto',
|
||||
trade: 'Varmarka signo',
|
||||
'9658': 'Nigra sago dekstren',
|
||||
bull: 'Bulmarko',
|
||||
rarr: 'Sago dekstren',
|
||||
rArr: 'Duobla sago dekstren',
|
||||
hArr: 'Duobla sago maldekstren',
|
||||
diams: 'Nigra kvadrato',
|
||||
asymp: 'Preskaŭ egala'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'et',
|
||||
{
|
||||
euro: 'Euromärk',
|
||||
lsquo: 'Alustav ühekordne jutumärk',
|
||||
rsquo: 'Lõpetav ühekordne jutumärk',
|
||||
ldquo: 'Alustav kahekordne jutumärk',
|
||||
rdquo: 'Lõpetav kahekordne jutumärk',
|
||||
ndash: 'Enn-kriips',
|
||||
mdash: 'Emm-kriips',
|
||||
iexcl: 'Pööratud hüüumärk',
|
||||
cent: 'Sendimärk',
|
||||
pound: 'Naela märk',
|
||||
curren: 'Valuutamärk',
|
||||
yen: 'Jeeni märk',
|
||||
brvbar: 'Katkestatud kriips',
|
||||
sect: 'Lõigu märk',
|
||||
uml: 'Täpid',
|
||||
copy: 'Autoriõiguse märk',
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Left-pointing double angle quotation mark', // MISSING
|
||||
not: 'Ei-märk',
|
||||
reg: 'Registered sign', // MISSING
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'Kraadimärk',
|
||||
sup2: 'Ülaindeks kaks',
|
||||
sup3: 'Ülaindeks kolm',
|
||||
acute: 'Acute accent', // MISSING
|
||||
micro: 'Mikro-märk',
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'Keskpunkt',
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Ülaindeks üks',
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'Right-pointing double angle quotation mark', // MISSING
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Inverted question mark', // MISSING
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Ladina suur A tildega',
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Täppidega ladina suur O',
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Kandilise katusega suur ladina U',
|
||||
Uuml: 'Täppidega ladina suur U',
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Ladina väike terav s',
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Kandilise katusega ladina väike a',
|
||||
atilde: 'Tildega ladina väike a',
|
||||
auml: 'Täppidega ladina väike a',
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Rightwards arrow', // MISSING
|
||||
rArr: 'Rightwards double arrow', // MISSING
|
||||
hArr: 'Left right double arrow', // MISSING
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'Almost equal to' // MISSING
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'et',
|
||||
{
|
||||
euro: 'Euromärk',
|
||||
lsquo: 'Alustav ühekordne jutumärk',
|
||||
rsquo: 'Lõpetav ühekordne jutumärk',
|
||||
ldquo: 'Alustav kahekordne jutumärk',
|
||||
rdquo: 'Lõpetav kahekordne jutumärk',
|
||||
ndash: 'Enn-kriips',
|
||||
mdash: 'Emm-kriips',
|
||||
iexcl: 'Pööratud hüüumärk',
|
||||
cent: 'Sendimärk',
|
||||
pound: 'Naela märk',
|
||||
curren: 'Valuutamärk',
|
||||
yen: 'Jeeni märk',
|
||||
brvbar: 'Katkestatud kriips',
|
||||
sect: 'Lõigu märk',
|
||||
uml: 'Täpid',
|
||||
copy: 'Autoriõiguse märk',
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Left-pointing double angle quotation mark', // MISSING
|
||||
not: 'Ei-märk',
|
||||
reg: 'Registered sign', // MISSING
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'Kraadimärk',
|
||||
sup2: 'Ülaindeks kaks',
|
||||
sup3: 'Ülaindeks kolm',
|
||||
acute: 'Acute accent', // MISSING
|
||||
micro: 'Mikro-märk',
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'Keskpunkt',
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Ülaindeks üks',
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'Right-pointing double angle quotation mark', // MISSING
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Inverted question mark', // MISSING
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Ladina suur A tildega',
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Täppidega ladina suur O',
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Kandilise katusega suur ladina U',
|
||||
Uuml: 'Täppidega ladina suur U',
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Ladina väike terav s',
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Kandilise katusega ladina väike a',
|
||||
atilde: 'Tildega ladina väike a',
|
||||
auml: 'Täppidega ladina väike a',
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Rightwards arrow', // MISSING
|
||||
rArr: 'Rightwards double arrow', // MISSING
|
||||
hArr: 'Left right double arrow', // MISSING
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'Almost equal to' // MISSING
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'fa',
|
||||
{
|
||||
euro: 'نشان یورو',
|
||||
lsquo: 'علامت نقل قول تکی چپ',
|
||||
rsquo: 'علامت نقل قول تکی راست',
|
||||
ldquo: 'علامت دوتایی نقل قول چپ',
|
||||
rdquo: 'علامت دوتایی نقل قول راست',
|
||||
ndash: 'En dash', // MISSING
|
||||
mdash: 'Em dash', // MISSING
|
||||
iexcl: 'علامت گذاری به عنوان علامت تعجب وارونه',
|
||||
cent: 'نشان سنت',
|
||||
pound: 'نشان پوند',
|
||||
curren: 'نشان ارز',
|
||||
yen: 'نشان ین',
|
||||
brvbar: 'نوار شکسته',
|
||||
sect: 'نشان بخش',
|
||||
uml: 'Diaeresis', // MISSING
|
||||
copy: 'نشان کپی رایت',
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Left-pointing double angle quotation mark', // MISSING
|
||||
not: 'علامت ثبت نشده',
|
||||
reg: 'علامت ثبت شده',
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'نشان درجه',
|
||||
sup2: 'بالانویس دو',
|
||||
sup3: 'بالانویس سه',
|
||||
acute: 'لهجه غلیظ',
|
||||
micro: 'نشان مایکرو',
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'نقطه میانی',
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Superscript one', // MISSING
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'نشان زاویهدار دوتایی نقل قول راست چین',
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Inverted question mark', // MISSING
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Rightwards arrow', // MISSING
|
||||
rArr: 'Rightwards double arrow', // MISSING
|
||||
hArr: 'جهتنمای دوتایی چپ به راست',
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'تقریبا برابر با'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'fa',
|
||||
{
|
||||
euro: 'نشان یورو',
|
||||
lsquo: 'علامت نقل قول تکی چپ',
|
||||
rsquo: 'علامت نقل قول تکی راست',
|
||||
ldquo: 'علامت دوتایی نقل قول چپ',
|
||||
rdquo: 'علامت دوتایی نقل قول راست',
|
||||
ndash: 'En dash', // MISSING
|
||||
mdash: 'Em dash', // MISSING
|
||||
iexcl: 'علامت گذاری به عنوان علامت تعجب وارونه',
|
||||
cent: 'نشان سنت',
|
||||
pound: 'نشان پوند',
|
||||
curren: 'نشان ارز',
|
||||
yen: 'نشان ین',
|
||||
brvbar: 'نوار شکسته',
|
||||
sect: 'نشان بخش',
|
||||
uml: 'Diaeresis', // MISSING
|
||||
copy: 'نشان کپی رایت',
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Left-pointing double angle quotation mark', // MISSING
|
||||
not: 'علامت ثبت نشده',
|
||||
reg: 'علامت ثبت شده',
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'نشان درجه',
|
||||
sup2: 'بالانویس دو',
|
||||
sup3: 'بالانویس سه',
|
||||
acute: 'لهجه غلیظ',
|
||||
micro: 'نشان مایکرو',
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'نقطه میانی',
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Superscript one', // MISSING
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'نشان زاویهدار دوتایی نقل قول راست چین',
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Inverted question mark', // MISSING
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Rightwards arrow', // MISSING
|
||||
rArr: 'Rightwards double arrow', // MISSING
|
||||
hArr: 'جهتنمای دوتایی چپ به راست',
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'تقریبا برابر با'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'fi',
|
||||
{
|
||||
euro: 'Euron merkki',
|
||||
lsquo: 'Vasen yksittäinen lainausmerkki',
|
||||
rsquo: 'Oikea yksittäinen lainausmerkki',
|
||||
ldquo: 'Vasen kaksoislainausmerkki',
|
||||
rdquo: 'Oikea kaksoislainausmerkki',
|
||||
ndash: 'En dash', // MISSING
|
||||
mdash: 'Em dash', // MISSING
|
||||
iexcl: 'Inverted exclamation mark', // MISSING
|
||||
cent: 'Sentin merkki',
|
||||
pound: 'Punnan merkki',
|
||||
curren: 'Valuuttamerkki',
|
||||
yen: 'Yenin merkki',
|
||||
brvbar: 'Broken bar', // MISSING
|
||||
sect: 'Section sign', // MISSING
|
||||
uml: 'Diaeresis', // MISSING
|
||||
copy: 'Copyright sign', // MISSING
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Left-pointing double angle quotation mark', // MISSING
|
||||
not: 'Not sign', // MISSING
|
||||
reg: 'Rekisteröity merkki',
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'Asteen merkki',
|
||||
sup2: 'Yläindeksi kaksi',
|
||||
sup3: 'Yläindeksi kolme',
|
||||
acute: 'Acute accent', // MISSING
|
||||
micro: 'Mikron merkki',
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'Middle dot', // MISSING
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Yläindeksi yksi',
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'Right-pointing double angle quotation mark', // MISSING
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Ylösalaisin oleva kysymysmerkki',
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Kertomerkki',
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Jakomerkki',
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Tavaramerkki merkki',
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Nuoli oikealle',
|
||||
rArr: 'Kaksoisnuoli oikealle',
|
||||
hArr: 'Kaksoisnuoli oikealle ja vasemmalle',
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'Noin'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'fi',
|
||||
{
|
||||
euro: 'Euron merkki',
|
||||
lsquo: 'Vasen yksittäinen lainausmerkki',
|
||||
rsquo: 'Oikea yksittäinen lainausmerkki',
|
||||
ldquo: 'Vasen kaksoislainausmerkki',
|
||||
rdquo: 'Oikea kaksoislainausmerkki',
|
||||
ndash: 'En dash', // MISSING
|
||||
mdash: 'Em dash', // MISSING
|
||||
iexcl: 'Inverted exclamation mark', // MISSING
|
||||
cent: 'Sentin merkki',
|
||||
pound: 'Punnan merkki',
|
||||
curren: 'Valuuttamerkki',
|
||||
yen: 'Yenin merkki',
|
||||
brvbar: 'Broken bar', // MISSING
|
||||
sect: 'Section sign', // MISSING
|
||||
uml: 'Diaeresis', // MISSING
|
||||
copy: 'Copyright sign', // MISSING
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Left-pointing double angle quotation mark', // MISSING
|
||||
not: 'Not sign', // MISSING
|
||||
reg: 'Rekisteröity merkki',
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'Asteen merkki',
|
||||
sup2: 'Yläindeksi kaksi',
|
||||
sup3: 'Yläindeksi kolme',
|
||||
acute: 'Acute accent', // MISSING
|
||||
micro: 'Mikron merkki',
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'Middle dot', // MISSING
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Yläindeksi yksi',
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'Right-pointing double angle quotation mark', // MISSING
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Ylösalaisin oleva kysymysmerkki',
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Kertomerkki',
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Jakomerkki',
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Tavaramerkki merkki',
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Nuoli oikealle',
|
||||
rArr: 'Kaksoisnuoli oikealle',
|
||||
hArr: 'Kaksoisnuoli oikealle ja vasemmalle',
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'Noin'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'fr',
|
||||
{
|
||||
euro: 'Symbole Euro',
|
||||
lsquo: 'Guillemet simple ouvrant',
|
||||
rsquo: 'Guillemet simple fermant',
|
||||
ldquo: 'Guillemet double ouvrant',
|
||||
rdquo: 'Guillemet double fermant',
|
||||
ndash: 'Tiret haut',
|
||||
mdash: 'Tiret bas underscore',
|
||||
iexcl: 'Point d\'exclamation inversé',
|
||||
cent: 'Symbole Cent',
|
||||
pound: 'Symbole Livre Sterling',
|
||||
curren: 'Symbole monétaire',
|
||||
yen: 'Symbole Yen',
|
||||
brvbar: 'Barre verticale scindée',
|
||||
sect: 'Section',
|
||||
uml: 'Tréma',
|
||||
copy: 'Symbole Copyright',
|
||||
ordf: 'Indicateur ordinal féminin',
|
||||
laquo: 'Guillemet français ouvrant',
|
||||
not: 'Crochet de négation',
|
||||
reg: 'Marque déposée',
|
||||
macr: 'Macron',
|
||||
deg: 'Degré',
|
||||
sup2: 'Exposant 2',
|
||||
sup3: '\\tExposant 3',
|
||||
acute: 'Accent aigu',
|
||||
micro: 'Omicron',
|
||||
para: 'Paragraphe',
|
||||
middot: 'Point médian',
|
||||
cedil: 'Cédille',
|
||||
sup1: '\\tExposant 1',
|
||||
ordm: 'Indicateur ordinal masculin',
|
||||
raquo: 'Guillemet français fermant',
|
||||
frac14: 'Un quart',
|
||||
frac12: 'Un demi',
|
||||
frac34: 'Trois quarts',
|
||||
iquest: 'Point d\'interrogation inversé',
|
||||
Agrave: 'A majuscule accent grave',
|
||||
Aacute: 'A majuscule accent aigu',
|
||||
Acirc: 'A majuscule accent circonflexe',
|
||||
Atilde: 'A majuscule avec caron',
|
||||
Auml: 'A majuscule tréma',
|
||||
Aring: 'A majuscule avec un rond au-dessus',
|
||||
AElig: 'Æ majuscule ligaturés',
|
||||
Ccedil: 'C majuscule cédille',
|
||||
Egrave: 'E majuscule accent grave',
|
||||
Eacute: 'E majuscule accent aigu',
|
||||
Ecirc: 'E majuscule accent circonflexe',
|
||||
Euml: 'E majuscule tréma',
|
||||
Igrave: 'I majuscule accent grave',
|
||||
Iacute: 'I majuscule accent aigu',
|
||||
Icirc: 'I majuscule accent circonflexe',
|
||||
Iuml: 'I majuscule tréma',
|
||||
ETH: 'Lettre majuscule islandaise ED',
|
||||
Ntilde: 'N majuscule avec caron',
|
||||
Ograve: 'O majuscule accent grave',
|
||||
Oacute: 'O majuscule accent aigu',
|
||||
Ocirc: 'O majuscule accent circonflexe',
|
||||
Otilde: 'O majuscule avec caron',
|
||||
Ouml: 'O majuscule tréma',
|
||||
times: 'Multiplication',
|
||||
Oslash: 'O majuscule barré',
|
||||
Ugrave: 'U majuscule accent grave',
|
||||
Uacute: 'U majuscule accent aigu',
|
||||
Ucirc: 'U majuscule accent circonflexe',
|
||||
Uuml: 'U majuscule tréma',
|
||||
Yacute: 'Y majuscule accent aigu',
|
||||
THORN: 'Lettre islandaise Thorn majuscule',
|
||||
szlig: 'Lettre minuscule allemande s dur',
|
||||
agrave: 'a minuscule accent grave',
|
||||
aacute: 'a minuscule accent aigu',
|
||||
acirc: 'a minuscule accent circonflexe',
|
||||
atilde: 'a minuscule avec caron',
|
||||
auml: 'a minuscule tréma',
|
||||
aring: 'a minuscule avec un rond au-dessus',
|
||||
aelig: 'æ minuscule ligaturés',
|
||||
ccedil: 'c minuscule cédille',
|
||||
egrave: 'e minuscule accent grave',
|
||||
eacute: 'e minuscule accent aigu',
|
||||
ecirc: 'e minuscule accent circonflexe',
|
||||
euml: 'e minuscule tréma',
|
||||
igrave: 'i minuscule accent grave',
|
||||
iacute: 'i minuscule accent aigu',
|
||||
icirc: 'i minuscule accent circonflexe',
|
||||
iuml: 'i minuscule tréma',
|
||||
eth: 'Lettre minuscule islandaise ED',
|
||||
ntilde: 'n minuscule avec caron',
|
||||
ograve: 'o minuscule accent grave',
|
||||
oacute: 'o minuscule accent aigu',
|
||||
ocirc: 'o minuscule accent circonflexe',
|
||||
otilde: 'o minuscule avec caron',
|
||||
ouml: 'o minuscule tréma',
|
||||
divide: 'Division',
|
||||
oslash: 'o minuscule barré',
|
||||
ugrave: 'u minuscule accent grave',
|
||||
uacute: 'u minuscule accent aigu',
|
||||
ucirc: 'u minuscule accent circonflexe',
|
||||
uuml: 'u minuscule tréma',
|
||||
yacute: 'y minuscule accent aigu',
|
||||
thorn: 'Lettre islandaise thorn minuscule',
|
||||
yuml: 'y minuscule tréma',
|
||||
OElig: 'ligature majuscule latine Œ',
|
||||
oelig: 'ligature minuscule latine œ',
|
||||
'372': 'W majuscule accent circonflexe',
|
||||
'374': 'Y majuscule accent circonflexe',
|
||||
'373': 'w minuscule accent circonflexe',
|
||||
'375': 'y minuscule accent circonflexe',
|
||||
sbquo: 'Guillemet simple fermant (anglais)',
|
||||
'8219': 'Guillemet-virgule supérieur culbuté',
|
||||
bdquo: 'Guillemet-virgule double inférieur',
|
||||
hellip: 'Points de suspension',
|
||||
trade: 'Marque commerciale (trade mark)',
|
||||
'9658': 'Flèche noire pointant vers la droite',
|
||||
bull: 'Gros point médian',
|
||||
rarr: 'Flèche vers la droite',
|
||||
rArr: 'Double flèche vers la droite',
|
||||
hArr: 'Double flèche vers la gauche',
|
||||
diams: 'Carreau noir',
|
||||
asymp: 'Presque égal'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'fr',
|
||||
{
|
||||
euro: 'Symbole Euro',
|
||||
lsquo: 'Guillemet simple ouvrant',
|
||||
rsquo: 'Guillemet simple fermant',
|
||||
ldquo: 'Guillemet double ouvrant',
|
||||
rdquo: 'Guillemet double fermant',
|
||||
ndash: 'Tiret haut',
|
||||
mdash: 'Tiret bas underscore',
|
||||
iexcl: 'Point d\'exclamation inversé',
|
||||
cent: 'Symbole Cent',
|
||||
pound: 'Symbole Livre Sterling',
|
||||
curren: 'Symbole monétaire',
|
||||
yen: 'Symbole Yen',
|
||||
brvbar: 'Barre verticale scindée',
|
||||
sect: 'Section',
|
||||
uml: 'Tréma',
|
||||
copy: 'Symbole Copyright',
|
||||
ordf: 'Indicateur ordinal féminin',
|
||||
laquo: 'Guillemet français ouvrant',
|
||||
not: 'Crochet de négation',
|
||||
reg: 'Marque déposée',
|
||||
macr: 'Macron',
|
||||
deg: 'Degré',
|
||||
sup2: 'Exposant 2',
|
||||
sup3: '\\tExposant 3',
|
||||
acute: 'Accent aigu',
|
||||
micro: 'Omicron',
|
||||
para: 'Paragraphe',
|
||||
middot: 'Point médian',
|
||||
cedil: 'Cédille',
|
||||
sup1: '\\tExposant 1',
|
||||
ordm: 'Indicateur ordinal masculin',
|
||||
raquo: 'Guillemet français fermant',
|
||||
frac14: 'Un quart',
|
||||
frac12: 'Un demi',
|
||||
frac34: 'Trois quarts',
|
||||
iquest: 'Point d\'interrogation inversé',
|
||||
Agrave: 'A majuscule accent grave',
|
||||
Aacute: 'A majuscule accent aigu',
|
||||
Acirc: 'A majuscule accent circonflexe',
|
||||
Atilde: 'A majuscule avec caron',
|
||||
Auml: 'A majuscule tréma',
|
||||
Aring: 'A majuscule avec un rond au-dessus',
|
||||
AElig: 'Æ majuscule ligaturés',
|
||||
Ccedil: 'C majuscule cédille',
|
||||
Egrave: 'E majuscule accent grave',
|
||||
Eacute: 'E majuscule accent aigu',
|
||||
Ecirc: 'E majuscule accent circonflexe',
|
||||
Euml: 'E majuscule tréma',
|
||||
Igrave: 'I majuscule accent grave',
|
||||
Iacute: 'I majuscule accent aigu',
|
||||
Icirc: 'I majuscule accent circonflexe',
|
||||
Iuml: 'I majuscule tréma',
|
||||
ETH: 'Lettre majuscule islandaise ED',
|
||||
Ntilde: 'N majuscule avec caron',
|
||||
Ograve: 'O majuscule accent grave',
|
||||
Oacute: 'O majuscule accent aigu',
|
||||
Ocirc: 'O majuscule accent circonflexe',
|
||||
Otilde: 'O majuscule avec caron',
|
||||
Ouml: 'O majuscule tréma',
|
||||
times: 'Multiplication',
|
||||
Oslash: 'O majuscule barré',
|
||||
Ugrave: 'U majuscule accent grave',
|
||||
Uacute: 'U majuscule accent aigu',
|
||||
Ucirc: 'U majuscule accent circonflexe',
|
||||
Uuml: 'U majuscule tréma',
|
||||
Yacute: 'Y majuscule accent aigu',
|
||||
THORN: 'Lettre islandaise Thorn majuscule',
|
||||
szlig: 'Lettre minuscule allemande s dur',
|
||||
agrave: 'a minuscule accent grave',
|
||||
aacute: 'a minuscule accent aigu',
|
||||
acirc: 'a minuscule accent circonflexe',
|
||||
atilde: 'a minuscule avec caron',
|
||||
auml: 'a minuscule tréma',
|
||||
aring: 'a minuscule avec un rond au-dessus',
|
||||
aelig: 'æ minuscule ligaturés',
|
||||
ccedil: 'c minuscule cédille',
|
||||
egrave: 'e minuscule accent grave',
|
||||
eacute: 'e minuscule accent aigu',
|
||||
ecirc: 'e minuscule accent circonflexe',
|
||||
euml: 'e minuscule tréma',
|
||||
igrave: 'i minuscule accent grave',
|
||||
iacute: 'i minuscule accent aigu',
|
||||
icirc: 'i minuscule accent circonflexe',
|
||||
iuml: 'i minuscule tréma',
|
||||
eth: 'Lettre minuscule islandaise ED',
|
||||
ntilde: 'n minuscule avec caron',
|
||||
ograve: 'o minuscule accent grave',
|
||||
oacute: 'o minuscule accent aigu',
|
||||
ocirc: 'o minuscule accent circonflexe',
|
||||
otilde: 'o minuscule avec caron',
|
||||
ouml: 'o minuscule tréma',
|
||||
divide: 'Division',
|
||||
oslash: 'o minuscule barré',
|
||||
ugrave: 'u minuscule accent grave',
|
||||
uacute: 'u minuscule accent aigu',
|
||||
ucirc: 'u minuscule accent circonflexe',
|
||||
uuml: 'u minuscule tréma',
|
||||
yacute: 'y minuscule accent aigu',
|
||||
thorn: 'Lettre islandaise thorn minuscule',
|
||||
yuml: 'y minuscule tréma',
|
||||
OElig: 'ligature majuscule latine Œ',
|
||||
oelig: 'ligature minuscule latine œ',
|
||||
'372': 'W majuscule accent circonflexe',
|
||||
'374': 'Y majuscule accent circonflexe',
|
||||
'373': 'w minuscule accent circonflexe',
|
||||
'375': 'y minuscule accent circonflexe',
|
||||
sbquo: 'Guillemet simple fermant (anglais)',
|
||||
'8219': 'Guillemet-virgule supérieur culbuté',
|
||||
bdquo: 'Guillemet-virgule double inférieur',
|
||||
hellip: 'Points de suspension',
|
||||
trade: 'Marque commerciale (trade mark)',
|
||||
'9658': 'Flèche noire pointant vers la droite',
|
||||
bull: 'Gros point médian',
|
||||
rarr: 'Flèche vers la droite',
|
||||
rArr: 'Double flèche vers la droite',
|
||||
hArr: 'Double flèche vers la gauche',
|
||||
diams: 'Carreau noir',
|
||||
asymp: 'Presque égal'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'he',
|
||||
{
|
||||
euro: 'יורו',
|
||||
lsquo: 'Left single quotation mark', // MISSING
|
||||
rsquo: 'Right single quotation mark', // MISSING
|
||||
ldquo: 'Left double quotation mark', // MISSING
|
||||
rdquo: 'Right double quotation mark', // MISSING
|
||||
ndash: 'En dash', // MISSING
|
||||
mdash: 'Em dash', // MISSING
|
||||
iexcl: 'Inverted exclamation mark', // MISSING
|
||||
cent: 'Cent sign', // MISSING
|
||||
pound: 'Pound sign', // MISSING
|
||||
curren: 'Currency sign', // MISSING
|
||||
yen: 'Yen sign', // MISSING
|
||||
brvbar: 'Broken bar', // MISSING
|
||||
sect: 'Section sign', // MISSING
|
||||
uml: 'Diaeresis', // MISSING
|
||||
copy: 'Copyright sign', // MISSING
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Left-pointing double angle quotation mark', // MISSING
|
||||
not: 'Not sign', // MISSING
|
||||
reg: 'Registered sign', // MISSING
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'Degree sign', // MISSING
|
||||
sup2: 'Superscript two', // MISSING
|
||||
sup3: 'Superscript three', // MISSING
|
||||
acute: 'Acute accent', // MISSING
|
||||
micro: 'Micro sign', // MISSING
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'Middle dot', // MISSING
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Superscript one', // MISSING
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'Right-pointing double angle quotation mark', // MISSING
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Inverted question mark', // MISSING
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Rightwards arrow', // MISSING
|
||||
rArr: 'Rightwards double arrow', // MISSING
|
||||
hArr: 'Left right double arrow', // MISSING
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'Almost equal to' // MISSING
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'he',
|
||||
{
|
||||
euro: 'יורו',
|
||||
lsquo: 'Left single quotation mark', // MISSING
|
||||
rsquo: 'Right single quotation mark', // MISSING
|
||||
ldquo: 'Left double quotation mark', // MISSING
|
||||
rdquo: 'Right double quotation mark', // MISSING
|
||||
ndash: 'En dash', // MISSING
|
||||
mdash: 'Em dash', // MISSING
|
||||
iexcl: 'Inverted exclamation mark', // MISSING
|
||||
cent: 'Cent sign', // MISSING
|
||||
pound: 'Pound sign', // MISSING
|
||||
curren: 'Currency sign', // MISSING
|
||||
yen: 'Yen sign', // MISSING
|
||||
brvbar: 'Broken bar', // MISSING
|
||||
sect: 'Section sign', // MISSING
|
||||
uml: 'Diaeresis', // MISSING
|
||||
copy: 'Copyright sign', // MISSING
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Left-pointing double angle quotation mark', // MISSING
|
||||
not: 'Not sign', // MISSING
|
||||
reg: 'Registered sign', // MISSING
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'Degree sign', // MISSING
|
||||
sup2: 'Superscript two', // MISSING
|
||||
sup3: 'Superscript three', // MISSING
|
||||
acute: 'Acute accent', // MISSING
|
||||
micro: 'Micro sign', // MISSING
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'Middle dot', // MISSING
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Superscript one', // MISSING
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'Right-pointing double angle quotation mark', // MISSING
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Inverted question mark', // MISSING
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Rightwards arrow', // MISSING
|
||||
rArr: 'Rightwards double arrow', // MISSING
|
||||
hArr: 'Left right double arrow', // MISSING
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'Almost equal to' // MISSING
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'hr',
|
||||
{
|
||||
euro: 'Euro znak',
|
||||
lsquo: 'Lijevi jednostruki navodnik',
|
||||
rsquo: 'Desni jednostruki navodnik',
|
||||
ldquo: 'Lijevi dvostruki navodnik',
|
||||
rdquo: 'Desni dvostruki navodnik',
|
||||
ndash: 'En crtica',
|
||||
mdash: 'Em crtica',
|
||||
iexcl: 'Naopaki uskličnik',
|
||||
cent: 'Cent znak',
|
||||
pound: 'Funta znak',
|
||||
curren: 'Znak valute',
|
||||
yen: 'Yen znak',
|
||||
brvbar: 'Potrgana prečka',
|
||||
sect: 'Znak odjeljka',
|
||||
uml: 'Diaeresis', // MISSING
|
||||
copy: 'Copyright znak',
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Lijevi dvostruki uglati navodnik',
|
||||
not: 'Not znak',
|
||||
reg: 'Registered znak',
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'Stupanj znak',
|
||||
sup2: 'Superscript two', // MISSING
|
||||
sup3: 'Superscript three', // MISSING
|
||||
acute: 'Acute accent', // MISSING
|
||||
micro: 'Micro sign', // MISSING
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'Srednja točka',
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Superscript one', // MISSING
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'Desni dvostruku uglati navodnik',
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Naopaki upitnik',
|
||||
Agrave: 'Veliko latinsko slovo A s akcentom',
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Rightwards arrow', // MISSING
|
||||
rArr: 'Rightwards double arrow', // MISSING
|
||||
hArr: 'Left right double arrow', // MISSING
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'Almost equal to' // MISSING
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'hr',
|
||||
{
|
||||
euro: 'Euro znak',
|
||||
lsquo: 'Lijevi jednostruki navodnik',
|
||||
rsquo: 'Desni jednostruki navodnik',
|
||||
ldquo: 'Lijevi dvostruki navodnik',
|
||||
rdquo: 'Desni dvostruki navodnik',
|
||||
ndash: 'En crtica',
|
||||
mdash: 'Em crtica',
|
||||
iexcl: 'Naopaki uskličnik',
|
||||
cent: 'Cent znak',
|
||||
pound: 'Funta znak',
|
||||
curren: 'Znak valute',
|
||||
yen: 'Yen znak',
|
||||
brvbar: 'Potrgana prečka',
|
||||
sect: 'Znak odjeljka',
|
||||
uml: 'Diaeresis', // MISSING
|
||||
copy: 'Copyright znak',
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'Lijevi dvostruki uglati navodnik',
|
||||
not: 'Not znak',
|
||||
reg: 'Registered znak',
|
||||
macr: 'Macron', // MISSING
|
||||
deg: 'Stupanj znak',
|
||||
sup2: 'Superscript two', // MISSING
|
||||
sup3: 'Superscript three', // MISSING
|
||||
acute: 'Acute accent', // MISSING
|
||||
micro: 'Micro sign', // MISSING
|
||||
para: 'Pilcrow sign', // MISSING
|
||||
middot: 'Srednja točka',
|
||||
cedil: 'Cedilla', // MISSING
|
||||
sup1: 'Superscript one', // MISSING
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'Desni dvostruku uglati navodnik',
|
||||
frac14: 'Vulgar fraction one quarter', // MISSING
|
||||
frac12: 'Vulgar fraction one half', // MISSING
|
||||
frac34: 'Vulgar fraction three quarters', // MISSING
|
||||
iquest: 'Naopaki upitnik',
|
||||
Agrave: 'Veliko latinsko slovo A s akcentom',
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'Latin capital letter O with grave accent', // MISSING
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'Latin small letter n with tilde', // MISSING
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'Rightwards arrow', // MISSING
|
||||
rArr: 'Rightwards double arrow', // MISSING
|
||||
hArr: 'Left right double arrow', // MISSING
|
||||
diams: 'Black diamond suit', // MISSING
|
||||
asymp: 'Almost equal to' // MISSING
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'it',
|
||||
{
|
||||
euro: 'Simbolo Euro',
|
||||
lsquo: 'Virgoletta singola sinistra',
|
||||
rsquo: 'Virgoletta singola destra',
|
||||
ldquo: 'Virgolette aperte',
|
||||
rdquo: 'Virgolette chiuse',
|
||||
ndash: 'Trattino',
|
||||
mdash: 'Trattino lungo',
|
||||
iexcl: 'Punto esclavamativo invertito',
|
||||
cent: 'Simbolo Cent',
|
||||
pound: 'Simbolo Sterlina',
|
||||
curren: 'Simbolo Moneta',
|
||||
yen: 'Simbolo Yen',
|
||||
brvbar: 'Barra interrotta',
|
||||
sect: 'Simbolo di sezione',
|
||||
uml: 'Dieresi',
|
||||
copy: 'Simbolo Copyright',
|
||||
ordf: 'Indicatore ordinale femminile',
|
||||
laquo: 'Virgolette basse aperte',
|
||||
not: 'Nessun segno',
|
||||
reg: 'Simbolo Registrato',
|
||||
macr: 'Macron',
|
||||
deg: 'Simbolo Grado',
|
||||
sup2: 'Apice Due',
|
||||
sup3: 'Apice Tre',
|
||||
acute: 'Accento acuto',
|
||||
micro: 'Simbolo Micro',
|
||||
para: 'Simbolo Paragrafo',
|
||||
middot: 'Punto centrale',
|
||||
cedil: 'Cediglia',
|
||||
sup1: 'Apice Uno',
|
||||
ordm: 'Indicatore ordinale maschile',
|
||||
raquo: 'Virgolette basse chiuse',
|
||||
frac14: 'Frazione volgare un quarto',
|
||||
frac12: 'Frazione volgare un mezzo',
|
||||
frac34: 'Frazione volgare tre quarti',
|
||||
iquest: 'Punto interrogativo invertito',
|
||||
Agrave: 'Lettera maiuscola latina A con accento grave',
|
||||
Aacute: 'Lettera maiuscola latina A con accento acuto',
|
||||
Acirc: 'Lettera maiuscola latina A con accento circonflesso',
|
||||
Atilde: 'Lettera maiuscola latina A con tilde',
|
||||
Auml: 'Lettera maiuscola latina A con dieresi',
|
||||
Aring: 'Lettera maiuscola latina A con anello sopra',
|
||||
AElig: 'Lettera maiuscola latina AE',
|
||||
Ccedil: 'Lettera maiuscola latina C con cediglia',
|
||||
Egrave: 'Lettera maiuscola latina E con accento grave',
|
||||
Eacute: 'Lettera maiuscola latina E con accento acuto',
|
||||
Ecirc: 'Lettera maiuscola latina E con accento circonflesso',
|
||||
Euml: 'Lettera maiuscola latina E con dieresi',
|
||||
Igrave: 'Lettera maiuscola latina I con accento grave',
|
||||
Iacute: 'Lettera maiuscola latina I con accento acuto',
|
||||
Icirc: 'Lettera maiuscola latina I con accento circonflesso',
|
||||
Iuml: 'Lettera maiuscola latina I con dieresi',
|
||||
ETH: 'Lettera maiuscola latina Eth',
|
||||
Ntilde: 'Lettera maiuscola latina N con tilde',
|
||||
Ograve: 'Lettera maiuscola latina O con accento grave',
|
||||
Oacute: 'Lettera maiuscola latina O con accento acuto',
|
||||
Ocirc: 'Lettera maiuscola latina O con accento circonflesso',
|
||||
Otilde: 'Lettera maiuscola latina O con tilde',
|
||||
Ouml: 'Lettera maiuscola latina O con dieresi',
|
||||
times: 'Simbolo di moltiplicazione',
|
||||
Oslash: 'Lettera maiuscola latina O barrata',
|
||||
Ugrave: 'Lettera maiuscola latina U con accento grave',
|
||||
Uacute: 'Lettera maiuscola latina U con accento acuto',
|
||||
Ucirc: 'Lettera maiuscola latina U con accento circonflesso',
|
||||
Uuml: 'Lettera maiuscola latina U con accento circonflesso',
|
||||
Yacute: 'Lettera maiuscola latina Y con accento acuto',
|
||||
THORN: 'Lettera maiuscola latina Thorn',
|
||||
szlig: 'Lettera latina minuscola doppia S',
|
||||
agrave: 'Lettera minuscola latina a con accento grave',
|
||||
aacute: 'Lettera minuscola latina a con accento acuto',
|
||||
acirc: 'Lettera minuscola latina a con accento circonflesso',
|
||||
atilde: 'Lettera minuscola latina a con tilde',
|
||||
auml: 'Lettera minuscola latina a con dieresi',
|
||||
aring: 'Lettera minuscola latina a con anello superiore',
|
||||
aelig: 'Lettera minuscola latina ae',
|
||||
ccedil: 'Lettera minuscola latina c con cediglia',
|
||||
egrave: 'Lettera minuscola latina e con accento grave',
|
||||
eacute: 'Lettera minuscola latina e con accento acuto',
|
||||
ecirc: 'Lettera minuscola latina e con accento circonflesso',
|
||||
euml: 'Lettera minuscola latina e con dieresi',
|
||||
igrave: 'Lettera minuscola latina i con accento grave',
|
||||
iacute: 'Lettera minuscola latina i con accento acuto',
|
||||
icirc: 'Lettera minuscola latina i con accento circonflesso',
|
||||
iuml: 'Lettera minuscola latina i con dieresi',
|
||||
eth: 'Lettera minuscola latina eth',
|
||||
ntilde: 'Lettera minuscola latina n con tilde',
|
||||
ograve: 'Lettera minuscola latina o con accento grave',
|
||||
oacute: 'Lettera minuscola latina o con accento acuto',
|
||||
ocirc: 'Lettera minuscola latina o con accento circonflesso',
|
||||
otilde: 'Lettera minuscola latina o con tilde',
|
||||
ouml: 'Lettera minuscola latina o con dieresi',
|
||||
divide: 'Simbolo di divisione',
|
||||
oslash: 'Lettera minuscola latina o barrata',
|
||||
ugrave: 'Lettera minuscola latina u con accento grave',
|
||||
uacute: 'Lettera minuscola latina u con accento acuto',
|
||||
ucirc: 'Lettera minuscola latina u con accento circonflesso',
|
||||
uuml: 'Lettera minuscola latina u con dieresi',
|
||||
yacute: 'Lettera minuscola latina y con accento acuto',
|
||||
thorn: 'Lettera minuscola latina thorn',
|
||||
yuml: 'Lettera minuscola latina y con dieresi',
|
||||
OElig: 'Legatura maiuscola latina OE',
|
||||
oelig: 'Legatura minuscola latina oe',
|
||||
'372': 'Lettera maiuscola latina W con accento circonflesso',
|
||||
'374': 'Lettera maiuscola latina Y con accento circonflesso',
|
||||
'373': 'Lettera minuscola latina w con accento circonflesso',
|
||||
'375': 'Lettera minuscola latina y con accento circonflesso',
|
||||
sbquo: 'Singola virgoletta bassa low-9',
|
||||
'8219': 'Singola virgoletta bassa low-9 inversa',
|
||||
bdquo: 'Doppia virgoletta bassa low-9',
|
||||
hellip: 'Ellissi orizzontale',
|
||||
trade: 'Simbolo TM',
|
||||
'9658': 'Puntatore nero rivolto verso destra',
|
||||
bull: 'Punto',
|
||||
rarr: 'Freccia verso destra',
|
||||
rArr: 'Doppia freccia verso destra',
|
||||
hArr: 'Doppia freccia sinistra destra',
|
||||
diams: 'Simbolo nero diamante',
|
||||
asymp: 'Quasi uguale a'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'it',
|
||||
{
|
||||
euro: 'Simbolo Euro',
|
||||
lsquo: 'Virgoletta singola sinistra',
|
||||
rsquo: 'Virgoletta singola destra',
|
||||
ldquo: 'Virgolette aperte',
|
||||
rdquo: 'Virgolette chiuse',
|
||||
ndash: 'Trattino',
|
||||
mdash: 'Trattino lungo',
|
||||
iexcl: 'Punto esclavamativo invertito',
|
||||
cent: 'Simbolo Cent',
|
||||
pound: 'Simbolo Sterlina',
|
||||
curren: 'Simbolo Moneta',
|
||||
yen: 'Simbolo Yen',
|
||||
brvbar: 'Barra interrotta',
|
||||
sect: 'Simbolo di sezione',
|
||||
uml: 'Dieresi',
|
||||
copy: 'Simbolo Copyright',
|
||||
ordf: 'Indicatore ordinale femminile',
|
||||
laquo: 'Virgolette basse aperte',
|
||||
not: 'Nessun segno',
|
||||
reg: 'Simbolo Registrato',
|
||||
macr: 'Macron',
|
||||
deg: 'Simbolo Grado',
|
||||
sup2: 'Apice Due',
|
||||
sup3: 'Apice Tre',
|
||||
acute: 'Accento acuto',
|
||||
micro: 'Simbolo Micro',
|
||||
para: 'Simbolo Paragrafo',
|
||||
middot: 'Punto centrale',
|
||||
cedil: 'Cediglia',
|
||||
sup1: 'Apice Uno',
|
||||
ordm: 'Indicatore ordinale maschile',
|
||||
raquo: 'Virgolette basse chiuse',
|
||||
frac14: 'Frazione volgare un quarto',
|
||||
frac12: 'Frazione volgare un mezzo',
|
||||
frac34: 'Frazione volgare tre quarti',
|
||||
iquest: 'Punto interrogativo invertito',
|
||||
Agrave: 'Lettera maiuscola latina A con accento grave',
|
||||
Aacute: 'Lettera maiuscola latina A con accento acuto',
|
||||
Acirc: 'Lettera maiuscola latina A con accento circonflesso',
|
||||
Atilde: 'Lettera maiuscola latina A con tilde',
|
||||
Auml: 'Lettera maiuscola latina A con dieresi',
|
||||
Aring: 'Lettera maiuscola latina A con anello sopra',
|
||||
AElig: 'Lettera maiuscola latina AE',
|
||||
Ccedil: 'Lettera maiuscola latina C con cediglia',
|
||||
Egrave: 'Lettera maiuscola latina E con accento grave',
|
||||
Eacute: 'Lettera maiuscola latina E con accento acuto',
|
||||
Ecirc: 'Lettera maiuscola latina E con accento circonflesso',
|
||||
Euml: 'Lettera maiuscola latina E con dieresi',
|
||||
Igrave: 'Lettera maiuscola latina I con accento grave',
|
||||
Iacute: 'Lettera maiuscola latina I con accento acuto',
|
||||
Icirc: 'Lettera maiuscola latina I con accento circonflesso',
|
||||
Iuml: 'Lettera maiuscola latina I con dieresi',
|
||||
ETH: 'Lettera maiuscola latina Eth',
|
||||
Ntilde: 'Lettera maiuscola latina N con tilde',
|
||||
Ograve: 'Lettera maiuscola latina O con accento grave',
|
||||
Oacute: 'Lettera maiuscola latina O con accento acuto',
|
||||
Ocirc: 'Lettera maiuscola latina O con accento circonflesso',
|
||||
Otilde: 'Lettera maiuscola latina O con tilde',
|
||||
Ouml: 'Lettera maiuscola latina O con dieresi',
|
||||
times: 'Simbolo di moltiplicazione',
|
||||
Oslash: 'Lettera maiuscola latina O barrata',
|
||||
Ugrave: 'Lettera maiuscola latina U con accento grave',
|
||||
Uacute: 'Lettera maiuscola latina U con accento acuto',
|
||||
Ucirc: 'Lettera maiuscola latina U con accento circonflesso',
|
||||
Uuml: 'Lettera maiuscola latina U con accento circonflesso',
|
||||
Yacute: 'Lettera maiuscola latina Y con accento acuto',
|
||||
THORN: 'Lettera maiuscola latina Thorn',
|
||||
szlig: 'Lettera latina minuscola doppia S',
|
||||
agrave: 'Lettera minuscola latina a con accento grave',
|
||||
aacute: 'Lettera minuscola latina a con accento acuto',
|
||||
acirc: 'Lettera minuscola latina a con accento circonflesso',
|
||||
atilde: 'Lettera minuscola latina a con tilde',
|
||||
auml: 'Lettera minuscola latina a con dieresi',
|
||||
aring: 'Lettera minuscola latina a con anello superiore',
|
||||
aelig: 'Lettera minuscola latina ae',
|
||||
ccedil: 'Lettera minuscola latina c con cediglia',
|
||||
egrave: 'Lettera minuscola latina e con accento grave',
|
||||
eacute: 'Lettera minuscola latina e con accento acuto',
|
||||
ecirc: 'Lettera minuscola latina e con accento circonflesso',
|
||||
euml: 'Lettera minuscola latina e con dieresi',
|
||||
igrave: 'Lettera minuscola latina i con accento grave',
|
||||
iacute: 'Lettera minuscola latina i con accento acuto',
|
||||
icirc: 'Lettera minuscola latina i con accento circonflesso',
|
||||
iuml: 'Lettera minuscola latina i con dieresi',
|
||||
eth: 'Lettera minuscola latina eth',
|
||||
ntilde: 'Lettera minuscola latina n con tilde',
|
||||
ograve: 'Lettera minuscola latina o con accento grave',
|
||||
oacute: 'Lettera minuscola latina o con accento acuto',
|
||||
ocirc: 'Lettera minuscola latina o con accento circonflesso',
|
||||
otilde: 'Lettera minuscola latina o con tilde',
|
||||
ouml: 'Lettera minuscola latina o con dieresi',
|
||||
divide: 'Simbolo di divisione',
|
||||
oslash: 'Lettera minuscola latina o barrata',
|
||||
ugrave: 'Lettera minuscola latina u con accento grave',
|
||||
uacute: 'Lettera minuscola latina u con accento acuto',
|
||||
ucirc: 'Lettera minuscola latina u con accento circonflesso',
|
||||
uuml: 'Lettera minuscola latina u con dieresi',
|
||||
yacute: 'Lettera minuscola latina y con accento acuto',
|
||||
thorn: 'Lettera minuscola latina thorn',
|
||||
yuml: 'Lettera minuscola latina y con dieresi',
|
||||
OElig: 'Legatura maiuscola latina OE',
|
||||
oelig: 'Legatura minuscola latina oe',
|
||||
'372': 'Lettera maiuscola latina W con accento circonflesso',
|
||||
'374': 'Lettera maiuscola latina Y con accento circonflesso',
|
||||
'373': 'Lettera minuscola latina w con accento circonflesso',
|
||||
'375': 'Lettera minuscola latina y con accento circonflesso',
|
||||
sbquo: 'Singola virgoletta bassa low-9',
|
||||
'8219': 'Singola virgoletta bassa low-9 inversa',
|
||||
bdquo: 'Doppia virgoletta bassa low-9',
|
||||
hellip: 'Ellissi orizzontale',
|
||||
trade: 'Simbolo TM',
|
||||
'9658': 'Puntatore nero rivolto verso destra',
|
||||
bull: 'Punto',
|
||||
rarr: 'Freccia verso destra',
|
||||
rArr: 'Doppia freccia verso destra',
|
||||
hArr: 'Doppia freccia sinistra destra',
|
||||
diams: 'Simbolo nero diamante',
|
||||
asymp: 'Quasi uguale a'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'nb',
|
||||
{
|
||||
euro: 'Eurosymbol',
|
||||
lsquo: 'Venstre enkelt anførselstegn',
|
||||
rsquo: 'Høyre enkelt anførselstegn',
|
||||
ldquo: 'Venstre dobbelt anførselstegn',
|
||||
rdquo: 'Høyre anførsesltegn',
|
||||
ndash: 'Kort tankestrek',
|
||||
mdash: 'Lang tankestrek',
|
||||
iexcl: 'Omvendt utropstegn',
|
||||
cent: 'Centsymbol',
|
||||
pound: 'Pundsymbol',
|
||||
curren: 'Valutategn',
|
||||
yen: 'Yensymbol',
|
||||
brvbar: 'Brutt loddrett strek',
|
||||
sect: 'Paragraftegn',
|
||||
uml: 'Tøddel',
|
||||
copy: 'Copyrighttegn',
|
||||
ordf: 'Feminin ordensindikator',
|
||||
laquo: 'Venstre anførselstegn',
|
||||
not: 'Negasjonstegn',
|
||||
reg: 'Registrert varemerke-tegn',
|
||||
macr: 'Makron',
|
||||
deg: 'Gradsymbol',
|
||||
sup2: 'Hevet totall',
|
||||
sup3: 'Hevet tretall',
|
||||
acute: 'Akutt aksent',
|
||||
micro: 'Mikrosymbol',
|
||||
para: 'Avsnittstegn',
|
||||
middot: 'Midtstilt prikk',
|
||||
cedil: 'Cedille',
|
||||
sup1: 'Hevet ettall',
|
||||
ordm: 'Maskulin ordensindikator',
|
||||
raquo: 'Høyre anførselstegn',
|
||||
frac14: 'Fjerdedelsbrøk',
|
||||
frac12: 'Halvbrøk',
|
||||
frac34: 'Tre fjerdedelers brøk',
|
||||
iquest: 'Omvendt spørsmålstegn',
|
||||
Agrave: 'Stor A med grav aksent',
|
||||
Aacute: 'Stor A med akutt aksent',
|
||||
Acirc: 'Stor A med cirkumfleks',
|
||||
Atilde: 'Stor A med tilde',
|
||||
Auml: 'Stor A med tøddel',
|
||||
Aring: 'Stor Å',
|
||||
AElig: 'Stor Æ',
|
||||
Ccedil: 'Stor C med cedille',
|
||||
Egrave: 'Stor E med grav aksent',
|
||||
Eacute: 'Stor E med akutt aksent',
|
||||
Ecirc: 'Stor E med cirkumfleks',
|
||||
Euml: 'Stor E med tøddel',
|
||||
Igrave: 'Stor I med grav aksent',
|
||||
Iacute: 'Stor I med akutt aksent',
|
||||
Icirc: 'Stor I med cirkumfleks',
|
||||
Iuml: 'Stor I med tøddel',
|
||||
ETH: 'Stor Edd/stungen D',
|
||||
Ntilde: 'Stor N med tilde',
|
||||
Ograve: 'Stor O med grav aksent',
|
||||
Oacute: 'Stor O med akutt aksent',
|
||||
Ocirc: 'Stor O med cirkumfleks',
|
||||
Otilde: 'Stor O med tilde',
|
||||
Ouml: 'Stor O med tøddel',
|
||||
times: 'Multiplikasjonstegn',
|
||||
Oslash: 'Stor Ø',
|
||||
Ugrave: 'Stor U med grav aksent',
|
||||
Uacute: 'Stor U med akutt aksent',
|
||||
Ucirc: 'Stor U med cirkumfleks',
|
||||
Uuml: 'Stor U med tøddel',
|
||||
Yacute: 'Stor Y med akutt aksent',
|
||||
THORN: 'Stor Thorn',
|
||||
szlig: 'Liten dobbelt-s/Eszett',
|
||||
agrave: 'Liten a med grav aksent',
|
||||
aacute: 'Liten a med akutt aksent',
|
||||
acirc: 'Liten a med cirkumfleks',
|
||||
atilde: 'Liten a med tilde',
|
||||
auml: 'Liten a med tøddel',
|
||||
aring: 'Liten å',
|
||||
aelig: 'Liten æ',
|
||||
ccedil: 'Liten c med cedille',
|
||||
egrave: 'Liten e med grav aksent',
|
||||
eacute: 'Liten e med akutt aksent',
|
||||
ecirc: 'Liten e med cirkumfleks',
|
||||
euml: 'Liten e med tøddel',
|
||||
igrave: 'Liten i med grav aksent',
|
||||
iacute: 'Liten i med akutt aksent',
|
||||
icirc: 'Liten i med cirkumfleks',
|
||||
iuml: 'Liten i med tøddel',
|
||||
eth: 'Liten edd/stungen d',
|
||||
ntilde: 'Liten n med tilde',
|
||||
ograve: 'Liten o med grav aksent',
|
||||
oacute: 'Liten o med akutt aksent',
|
||||
ocirc: 'Liten o med cirkumfleks',
|
||||
otilde: 'Liten o med tilde',
|
||||
ouml: 'Liten o med tøddel',
|
||||
divide: 'Divisjonstegn',
|
||||
oslash: 'Liten ø',
|
||||
ugrave: 'Liten u med grav aksent',
|
||||
uacute: 'Liten u med akutt aksent',
|
||||
ucirc: 'Liten u med cirkumfleks',
|
||||
uuml: 'Liten u med tøddel',
|
||||
yacute: 'Liten y med akutt aksent',
|
||||
thorn: 'Liten thorn',
|
||||
yuml: 'Liten y med tøddel',
|
||||
OElig: 'Stor ligatur av O og E',
|
||||
oelig: 'Liten ligatur av o og e',
|
||||
'372': 'Stor W med cirkumfleks',
|
||||
'374': 'Stor Y med cirkumfleks',
|
||||
'373': 'Liten w med cirkumfleks',
|
||||
'375': 'Liten y med cirkumfleks',
|
||||
sbquo: 'Enkelt lavt 9-anførselstegn',
|
||||
'8219': 'Enkelt høyt reversert 9-anførselstegn',
|
||||
bdquo: 'Dobbelt lavt 9-anførselstegn',
|
||||
hellip: 'Ellipse',
|
||||
trade: 'Varemerkesymbol',
|
||||
'9658': 'Svart høyrevendt peker',
|
||||
bull: 'Tykk interpunkt',
|
||||
rarr: 'Høyrevendt pil',
|
||||
rArr: 'Dobbel høyrevendt pil',
|
||||
hArr: 'Dobbel venstrevendt pil',
|
||||
diams: 'Svart ruter',
|
||||
asymp: 'Omtrent likhetstegn'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'nb',
|
||||
{
|
||||
euro: 'Eurosymbol',
|
||||
lsquo: 'Venstre enkelt anførselstegn',
|
||||
rsquo: 'Høyre enkelt anførselstegn',
|
||||
ldquo: 'Venstre dobbelt anførselstegn',
|
||||
rdquo: 'Høyre anførsesltegn',
|
||||
ndash: 'Kort tankestrek',
|
||||
mdash: 'Lang tankestrek',
|
||||
iexcl: 'Omvendt utropstegn',
|
||||
cent: 'Centsymbol',
|
||||
pound: 'Pundsymbol',
|
||||
curren: 'Valutategn',
|
||||
yen: 'Yensymbol',
|
||||
brvbar: 'Brutt loddrett strek',
|
||||
sect: 'Paragraftegn',
|
||||
uml: 'Tøddel',
|
||||
copy: 'Copyrighttegn',
|
||||
ordf: 'Feminin ordensindikator',
|
||||
laquo: 'Venstre anførselstegn',
|
||||
not: 'Negasjonstegn',
|
||||
reg: 'Registrert varemerke-tegn',
|
||||
macr: 'Makron',
|
||||
deg: 'Gradsymbol',
|
||||
sup2: 'Hevet totall',
|
||||
sup3: 'Hevet tretall',
|
||||
acute: 'Akutt aksent',
|
||||
micro: 'Mikrosymbol',
|
||||
para: 'Avsnittstegn',
|
||||
middot: 'Midtstilt prikk',
|
||||
cedil: 'Cedille',
|
||||
sup1: 'Hevet ettall',
|
||||
ordm: 'Maskulin ordensindikator',
|
||||
raquo: 'Høyre anførselstegn',
|
||||
frac14: 'Fjerdedelsbrøk',
|
||||
frac12: 'Halvbrøk',
|
||||
frac34: 'Tre fjerdedelers brøk',
|
||||
iquest: 'Omvendt spørsmålstegn',
|
||||
Agrave: 'Stor A med grav aksent',
|
||||
Aacute: 'Stor A med akutt aksent',
|
||||
Acirc: 'Stor A med cirkumfleks',
|
||||
Atilde: 'Stor A med tilde',
|
||||
Auml: 'Stor A med tøddel',
|
||||
Aring: 'Stor Å',
|
||||
AElig: 'Stor Æ',
|
||||
Ccedil: 'Stor C med cedille',
|
||||
Egrave: 'Stor E med grav aksent',
|
||||
Eacute: 'Stor E med akutt aksent',
|
||||
Ecirc: 'Stor E med cirkumfleks',
|
||||
Euml: 'Stor E med tøddel',
|
||||
Igrave: 'Stor I med grav aksent',
|
||||
Iacute: 'Stor I med akutt aksent',
|
||||
Icirc: 'Stor I med cirkumfleks',
|
||||
Iuml: 'Stor I med tøddel',
|
||||
ETH: 'Stor Edd/stungen D',
|
||||
Ntilde: 'Stor N med tilde',
|
||||
Ograve: 'Stor O med grav aksent',
|
||||
Oacute: 'Stor O med akutt aksent',
|
||||
Ocirc: 'Stor O med cirkumfleks',
|
||||
Otilde: 'Stor O med tilde',
|
||||
Ouml: 'Stor O med tøddel',
|
||||
times: 'Multiplikasjonstegn',
|
||||
Oslash: 'Stor Ø',
|
||||
Ugrave: 'Stor U med grav aksent',
|
||||
Uacute: 'Stor U med akutt aksent',
|
||||
Ucirc: 'Stor U med cirkumfleks',
|
||||
Uuml: 'Stor U med tøddel',
|
||||
Yacute: 'Stor Y med akutt aksent',
|
||||
THORN: 'Stor Thorn',
|
||||
szlig: 'Liten dobbelt-s/Eszett',
|
||||
agrave: 'Liten a med grav aksent',
|
||||
aacute: 'Liten a med akutt aksent',
|
||||
acirc: 'Liten a med cirkumfleks',
|
||||
atilde: 'Liten a med tilde',
|
||||
auml: 'Liten a med tøddel',
|
||||
aring: 'Liten å',
|
||||
aelig: 'Liten æ',
|
||||
ccedil: 'Liten c med cedille',
|
||||
egrave: 'Liten e med grav aksent',
|
||||
eacute: 'Liten e med akutt aksent',
|
||||
ecirc: 'Liten e med cirkumfleks',
|
||||
euml: 'Liten e med tøddel',
|
||||
igrave: 'Liten i med grav aksent',
|
||||
iacute: 'Liten i med akutt aksent',
|
||||
icirc: 'Liten i med cirkumfleks',
|
||||
iuml: 'Liten i med tøddel',
|
||||
eth: 'Liten edd/stungen d',
|
||||
ntilde: 'Liten n med tilde',
|
||||
ograve: 'Liten o med grav aksent',
|
||||
oacute: 'Liten o med akutt aksent',
|
||||
ocirc: 'Liten o med cirkumfleks',
|
||||
otilde: 'Liten o med tilde',
|
||||
ouml: 'Liten o med tøddel',
|
||||
divide: 'Divisjonstegn',
|
||||
oslash: 'Liten ø',
|
||||
ugrave: 'Liten u med grav aksent',
|
||||
uacute: 'Liten u med akutt aksent',
|
||||
ucirc: 'Liten u med cirkumfleks',
|
||||
uuml: 'Liten u med tøddel',
|
||||
yacute: 'Liten y med akutt aksent',
|
||||
thorn: 'Liten thorn',
|
||||
yuml: 'Liten y med tøddel',
|
||||
OElig: 'Stor ligatur av O og E',
|
||||
oelig: 'Liten ligatur av o og e',
|
||||
'372': 'Stor W med cirkumfleks',
|
||||
'374': 'Stor Y med cirkumfleks',
|
||||
'373': 'Liten w med cirkumfleks',
|
||||
'375': 'Liten y med cirkumfleks',
|
||||
sbquo: 'Enkelt lavt 9-anførselstegn',
|
||||
'8219': 'Enkelt høyt reversert 9-anførselstegn',
|
||||
bdquo: 'Dobbelt lavt 9-anførselstegn',
|
||||
hellip: 'Ellipse',
|
||||
trade: 'Varemerkesymbol',
|
||||
'9658': 'Svart høyrevendt peker',
|
||||
bull: 'Tykk interpunkt',
|
||||
rarr: 'Høyrevendt pil',
|
||||
rArr: 'Dobbel høyrevendt pil',
|
||||
hArr: 'Dobbel venstrevendt pil',
|
||||
diams: 'Svart ruter',
|
||||
asymp: 'Omtrent likhetstegn'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'nl',
|
||||
{
|
||||
euro: 'Euro-teken',
|
||||
lsquo: 'Linker enkel aanhalingsteken',
|
||||
rsquo: 'Rechter enkel aanhalingsteken',
|
||||
ldquo: 'Linker dubbel aanhalingsteken',
|
||||
rdquo: 'Rechter dubbel aanhalingsteken',
|
||||
ndash: 'En dash',
|
||||
mdash: 'Em dash',
|
||||
iexcl: 'Omgekeerd uitroepteken',
|
||||
cent: 'Cent-teken',
|
||||
pound: 'Pond-teken',
|
||||
curren: 'Valuta-teken',
|
||||
yen: 'Yen-teken',
|
||||
brvbar: 'Gebroken streep',
|
||||
sect: 'Paragraaf-teken',
|
||||
uml: 'Trema',
|
||||
copy: 'Copyright-teken',
|
||||
ordf: 'Vrouwelijk ordinaal',
|
||||
laquo: 'Linker guillemet',
|
||||
not: 'Ongelijk-teken',
|
||||
reg: 'Geregistreerd handelsmerk-teken',
|
||||
macr: 'Macron',
|
||||
deg: 'Graden-teken',
|
||||
sup2: 'Superscript twee',
|
||||
sup3: 'Superscript drie',
|
||||
acute: 'Accent aigu',
|
||||
micro: 'Mico-teken',
|
||||
para: 'Alinea-teken',
|
||||
middot: 'Halfhoge punt',
|
||||
cedil: 'Cedille',
|
||||
sup1: 'Superscript een',
|
||||
ordm: 'Mannelijk ordinaal',
|
||||
raquo: 'Rechter guillemet',
|
||||
frac14: 'Breuk kwart',
|
||||
frac12: 'Breuk half',
|
||||
frac34: 'Breuk driekwart',
|
||||
iquest: 'Omgekeerd vraagteken',
|
||||
Agrave: 'Latijnse hoofdletter A met een accent grave',
|
||||
Aacute: 'Latijnse hoofdletter A met een accent aigu',
|
||||
Acirc: 'Latijnse hoofdletter A met een circonflexe',
|
||||
Atilde: 'Latijnse hoofdletter A met een tilde',
|
||||
Auml: 'Latijnse hoofdletter A met een trema',
|
||||
Aring: 'Latijnse hoofdletter A met een corona',
|
||||
AElig: 'Latijnse hoofdletter Æ',
|
||||
Ccedil: 'Latijnse hoofdletter C met een cedille',
|
||||
Egrave: 'Latijnse hoofdletter E met een accent grave',
|
||||
Eacute: 'Latijnse hoofdletter E met een accent aigu',
|
||||
Ecirc: 'Latijnse hoofdletter E met een circonflexe',
|
||||
Euml: 'Latijnse hoofdletter E met een trema',
|
||||
Igrave: 'Latijnse hoofdletter I met een accent grave',
|
||||
Iacute: 'Latijnse hoofdletter I met een accent aigu',
|
||||
Icirc: 'Latijnse hoofdletter I met een circonflexe',
|
||||
Iuml: 'Latijnse hoofdletter I met een trema',
|
||||
ETH: 'Latijnse hoofdletter Eth',
|
||||
Ntilde: 'Latijnse hoofdletter N met een tilde',
|
||||
Ograve: 'Latijnse hoofdletter O met een accent grave',
|
||||
Oacute: 'Latijnse hoofdletter O met een accent aigu',
|
||||
Ocirc: 'Latijnse hoofdletter O met een circonflexe',
|
||||
Otilde: 'Latijnse hoofdletter O met een tilde',
|
||||
Ouml: 'Latijnse hoofdletter O met een trema',
|
||||
times: 'Maal-teken',
|
||||
Oslash: 'Latijnse hoofdletter O met een schuine streep',
|
||||
Ugrave: 'Latijnse hoofdletter U met een accent grave',
|
||||
Uacute: 'Latijnse hoofdletter U met een accent aigu',
|
||||
Ucirc: 'Latijnse hoofdletter U met een circonflexe',
|
||||
Uuml: 'Latijnse hoofdletter U met een trema',
|
||||
Yacute: 'Latijnse hoofdletter Y met een accent aigu',
|
||||
THORN: 'Latijnse hoofdletter Thorn',
|
||||
szlig: 'Latijnse kleine ringel-s',
|
||||
agrave: 'Latijnse kleine letter a met een accent grave',
|
||||
aacute: 'Latijnse kleine letter a met een accent aigu',
|
||||
acirc: 'Latijnse kleine letter a met een circonflexe',
|
||||
atilde: 'Latijnse kleine letter a met een tilde',
|
||||
auml: 'Latijnse kleine letter a met een trema',
|
||||
aring: 'Latijnse kleine letter a met een corona',
|
||||
aelig: 'Latijnse kleine letter æ',
|
||||
ccedil: 'Latijnse kleine letter c met een cedille',
|
||||
egrave: 'Latijnse kleine letter e met een accent grave',
|
||||
eacute: 'Latijnse kleine letter e met een accent aigu',
|
||||
ecirc: 'Latijnse kleine letter e met een circonflexe',
|
||||
euml: 'Latijnse kleine letter e met een trema',
|
||||
igrave: 'Latijnse kleine letter i met een accent grave',
|
||||
iacute: 'Latijnse kleine letter i met een accent aigu',
|
||||
icirc: 'Latijnse kleine letter i met een circonflexe',
|
||||
iuml: 'Latijnse kleine letter i met een trema',
|
||||
eth: 'Latijnse kleine letter eth',
|
||||
ntilde: 'Latijnse kleine letter n met een tilde',
|
||||
ograve: 'Latijnse kleine letter o met een accent grave',
|
||||
oacute: 'Latijnse kleine letter o met een accent aigu',
|
||||
ocirc: 'Latijnse kleine letter o met een circonflexe',
|
||||
otilde: 'Latijnse kleine letter o met een tilde',
|
||||
ouml: 'Latijnse kleine letter o met een trema',
|
||||
divide: 'Deel-teken',
|
||||
oslash: 'Latijnse kleine letter o met een schuine streep',
|
||||
ugrave: 'Latijnse kleine letter u met een accent grave',
|
||||
uacute: 'Latijnse kleine letter u met een accent aigu',
|
||||
ucirc: 'Latijnse kleine letter u met een circonflexe',
|
||||
uuml: 'Latijnse kleine letter u met een trema',
|
||||
yacute: 'Latijnse kleine letter y met een accent aigu',
|
||||
thorn: 'Latijnse kleine letter thorn',
|
||||
yuml: 'Latijnse kleine letter y met een trema',
|
||||
OElig: 'Latijnse hoofdletter Œ',
|
||||
oelig: 'Latijnse kleine letter œ',
|
||||
'372': 'Latijnse hoofdletter W met een circonflexe',
|
||||
'374': 'Latijnse hoofdletter Y met een circonflexe',
|
||||
'373': 'Latijnse kleine letter w met een circonflexe',
|
||||
'375': 'Latijnse kleine letter y met een circonflexe',
|
||||
sbquo: 'Lage enkele aanhalingsteken',
|
||||
'8219': 'Hoge omgekeerde enkele aanhalingsteken',
|
||||
bdquo: 'Lage dubbele aanhalingsteken',
|
||||
hellip: 'Beletselteken',
|
||||
trade: 'Trademark-teken',
|
||||
'9658': 'Zwarte driehoek naar rechts',
|
||||
bull: 'Bullet',
|
||||
rarr: 'Pijl naar rechts',
|
||||
rArr: 'Dubbele pijl naar rechts',
|
||||
hArr: 'Dubbele pijl naar links',
|
||||
diams: 'Zwart ruitje',
|
||||
asymp: 'Benaderingsteken'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'nl',
|
||||
{
|
||||
euro: 'Euro-teken',
|
||||
lsquo: 'Linker enkel aanhalingsteken',
|
||||
rsquo: 'Rechter enkel aanhalingsteken',
|
||||
ldquo: 'Linker dubbel aanhalingsteken',
|
||||
rdquo: 'Rechter dubbel aanhalingsteken',
|
||||
ndash: 'En dash',
|
||||
mdash: 'Em dash',
|
||||
iexcl: 'Omgekeerd uitroepteken',
|
||||
cent: 'Cent-teken',
|
||||
pound: 'Pond-teken',
|
||||
curren: 'Valuta-teken',
|
||||
yen: 'Yen-teken',
|
||||
brvbar: 'Gebroken streep',
|
||||
sect: 'Paragraaf-teken',
|
||||
uml: 'Trema',
|
||||
copy: 'Copyright-teken',
|
||||
ordf: 'Vrouwelijk ordinaal',
|
||||
laquo: 'Linker guillemet',
|
||||
not: 'Ongelijk-teken',
|
||||
reg: 'Geregistreerd handelsmerk-teken',
|
||||
macr: 'Macron',
|
||||
deg: 'Graden-teken',
|
||||
sup2: 'Superscript twee',
|
||||
sup3: 'Superscript drie',
|
||||
acute: 'Accent aigu',
|
||||
micro: 'Mico-teken',
|
||||
para: 'Alinea-teken',
|
||||
middot: 'Halfhoge punt',
|
||||
cedil: 'Cedille',
|
||||
sup1: 'Superscript een',
|
||||
ordm: 'Mannelijk ordinaal',
|
||||
raquo: 'Rechter guillemet',
|
||||
frac14: 'Breuk kwart',
|
||||
frac12: 'Breuk half',
|
||||
frac34: 'Breuk driekwart',
|
||||
iquest: 'Omgekeerd vraagteken',
|
||||
Agrave: 'Latijnse hoofdletter A met een accent grave',
|
||||
Aacute: 'Latijnse hoofdletter A met een accent aigu',
|
||||
Acirc: 'Latijnse hoofdletter A met een circonflexe',
|
||||
Atilde: 'Latijnse hoofdletter A met een tilde',
|
||||
Auml: 'Latijnse hoofdletter A met een trema',
|
||||
Aring: 'Latijnse hoofdletter A met een corona',
|
||||
AElig: 'Latijnse hoofdletter Æ',
|
||||
Ccedil: 'Latijnse hoofdletter C met een cedille',
|
||||
Egrave: 'Latijnse hoofdletter E met een accent grave',
|
||||
Eacute: 'Latijnse hoofdletter E met een accent aigu',
|
||||
Ecirc: 'Latijnse hoofdletter E met een circonflexe',
|
||||
Euml: 'Latijnse hoofdletter E met een trema',
|
||||
Igrave: 'Latijnse hoofdletter I met een accent grave',
|
||||
Iacute: 'Latijnse hoofdletter I met een accent aigu',
|
||||
Icirc: 'Latijnse hoofdletter I met een circonflexe',
|
||||
Iuml: 'Latijnse hoofdletter I met een trema',
|
||||
ETH: 'Latijnse hoofdletter Eth',
|
||||
Ntilde: 'Latijnse hoofdletter N met een tilde',
|
||||
Ograve: 'Latijnse hoofdletter O met een accent grave',
|
||||
Oacute: 'Latijnse hoofdletter O met een accent aigu',
|
||||
Ocirc: 'Latijnse hoofdletter O met een circonflexe',
|
||||
Otilde: 'Latijnse hoofdletter O met een tilde',
|
||||
Ouml: 'Latijnse hoofdletter O met een trema',
|
||||
times: 'Maal-teken',
|
||||
Oslash: 'Latijnse hoofdletter O met een schuine streep',
|
||||
Ugrave: 'Latijnse hoofdletter U met een accent grave',
|
||||
Uacute: 'Latijnse hoofdletter U met een accent aigu',
|
||||
Ucirc: 'Latijnse hoofdletter U met een circonflexe',
|
||||
Uuml: 'Latijnse hoofdletter U met een trema',
|
||||
Yacute: 'Latijnse hoofdletter Y met een accent aigu',
|
||||
THORN: 'Latijnse hoofdletter Thorn',
|
||||
szlig: 'Latijnse kleine ringel-s',
|
||||
agrave: 'Latijnse kleine letter a met een accent grave',
|
||||
aacute: 'Latijnse kleine letter a met een accent aigu',
|
||||
acirc: 'Latijnse kleine letter a met een circonflexe',
|
||||
atilde: 'Latijnse kleine letter a met een tilde',
|
||||
auml: 'Latijnse kleine letter a met een trema',
|
||||
aring: 'Latijnse kleine letter a met een corona',
|
||||
aelig: 'Latijnse kleine letter æ',
|
||||
ccedil: 'Latijnse kleine letter c met een cedille',
|
||||
egrave: 'Latijnse kleine letter e met een accent grave',
|
||||
eacute: 'Latijnse kleine letter e met een accent aigu',
|
||||
ecirc: 'Latijnse kleine letter e met een circonflexe',
|
||||
euml: 'Latijnse kleine letter e met een trema',
|
||||
igrave: 'Latijnse kleine letter i met een accent grave',
|
||||
iacute: 'Latijnse kleine letter i met een accent aigu',
|
||||
icirc: 'Latijnse kleine letter i met een circonflexe',
|
||||
iuml: 'Latijnse kleine letter i met een trema',
|
||||
eth: 'Latijnse kleine letter eth',
|
||||
ntilde: 'Latijnse kleine letter n met een tilde',
|
||||
ograve: 'Latijnse kleine letter o met een accent grave',
|
||||
oacute: 'Latijnse kleine letter o met een accent aigu',
|
||||
ocirc: 'Latijnse kleine letter o met een circonflexe',
|
||||
otilde: 'Latijnse kleine letter o met een tilde',
|
||||
ouml: 'Latijnse kleine letter o met een trema',
|
||||
divide: 'Deel-teken',
|
||||
oslash: 'Latijnse kleine letter o met een schuine streep',
|
||||
ugrave: 'Latijnse kleine letter u met een accent grave',
|
||||
uacute: 'Latijnse kleine letter u met een accent aigu',
|
||||
ucirc: 'Latijnse kleine letter u met een circonflexe',
|
||||
uuml: 'Latijnse kleine letter u met een trema',
|
||||
yacute: 'Latijnse kleine letter y met een accent aigu',
|
||||
thorn: 'Latijnse kleine letter thorn',
|
||||
yuml: 'Latijnse kleine letter y met een trema',
|
||||
OElig: 'Latijnse hoofdletter Œ',
|
||||
oelig: 'Latijnse kleine letter œ',
|
||||
'372': 'Latijnse hoofdletter W met een circonflexe',
|
||||
'374': 'Latijnse hoofdletter Y met een circonflexe',
|
||||
'373': 'Latijnse kleine letter w met een circonflexe',
|
||||
'375': 'Latijnse kleine letter y met een circonflexe',
|
||||
sbquo: 'Lage enkele aanhalingsteken',
|
||||
'8219': 'Hoge omgekeerde enkele aanhalingsteken',
|
||||
bdquo: 'Lage dubbele aanhalingsteken',
|
||||
hellip: 'Beletselteken',
|
||||
trade: 'Trademark-teken',
|
||||
'9658': 'Zwarte driehoek naar rechts',
|
||||
bull: 'Bullet',
|
||||
rarr: 'Pijl naar rechts',
|
||||
rArr: 'Dubbele pijl naar rechts',
|
||||
hArr: 'Dubbele pijl naar links',
|
||||
diams: 'Zwart ruitje',
|
||||
asymp: 'Benaderingsteken'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'no',
|
||||
{
|
||||
euro: 'Eurosymbol',
|
||||
lsquo: 'Venstre enkelt anførselstegn',
|
||||
rsquo: 'Høyre enkelt anførselstegn',
|
||||
ldquo: 'Venstre dobbelt anførselstegn',
|
||||
rdquo: 'Høyre anførsesltegn',
|
||||
ndash: 'Kort tankestrek',
|
||||
mdash: 'Lang tankestrek',
|
||||
iexcl: 'Omvendt utropstegn',
|
||||
cent: 'Centsymbol',
|
||||
pound: 'Pundsymbol',
|
||||
curren: 'Valutategn',
|
||||
yen: 'Yensymbol',
|
||||
brvbar: 'Brutt loddrett strek',
|
||||
sect: 'Paragraftegn',
|
||||
uml: 'Tøddel',
|
||||
copy: 'Copyrighttegn',
|
||||
ordf: 'Feminin ordensindikator',
|
||||
laquo: 'Venstre anførselstegn',
|
||||
not: 'Negasjonstegn',
|
||||
reg: 'Registrert varemerke-tegn',
|
||||
macr: 'Makron',
|
||||
deg: 'Gradsymbol',
|
||||
sup2: 'Hevet totall',
|
||||
sup3: 'Hevet tretall',
|
||||
acute: 'Akutt aksent',
|
||||
micro: 'Mikrosymbol',
|
||||
para: 'Avsnittstegn',
|
||||
middot: 'Midtstilt prikk',
|
||||
cedil: 'Cedille',
|
||||
sup1: 'Hevet ettall',
|
||||
ordm: 'Maskulin ordensindikator',
|
||||
raquo: 'Høyre anførselstegn',
|
||||
frac14: 'Fjerdedelsbrøk',
|
||||
frac12: 'Halvbrøk',
|
||||
frac34: 'Tre fjerdedelers brøk',
|
||||
iquest: 'Omvendt spørsmålstegn',
|
||||
Agrave: 'Stor A med grav aksent',
|
||||
Aacute: 'Stor A med akutt aksent',
|
||||
Acirc: 'Stor A med cirkumfleks',
|
||||
Atilde: 'Stor A med tilde',
|
||||
Auml: 'Stor A med tøddel',
|
||||
Aring: 'Stor Å',
|
||||
AElig: 'Stor Æ',
|
||||
Ccedil: 'Stor C med cedille',
|
||||
Egrave: 'Stor E med grav aksent',
|
||||
Eacute: 'Stor E med akutt aksent',
|
||||
Ecirc: 'Stor E med cirkumfleks',
|
||||
Euml: 'Stor E med tøddel',
|
||||
Igrave: 'Stor I med grav aksent',
|
||||
Iacute: 'Stor I med akutt aksent',
|
||||
Icirc: 'Stor I med cirkumfleks',
|
||||
Iuml: 'Stor I med tøddel',
|
||||
ETH: 'Stor Edd/stungen D',
|
||||
Ntilde: 'Stor N med tilde',
|
||||
Ograve: 'Stor O med grav aksent',
|
||||
Oacute: 'Stor O med akutt aksent',
|
||||
Ocirc: 'Stor O med cirkumfleks',
|
||||
Otilde: 'Stor O med tilde',
|
||||
Ouml: 'Stor O med tøddel',
|
||||
times: 'Multiplikasjonstegn',
|
||||
Oslash: 'Stor Ø',
|
||||
Ugrave: 'Stor U med grav aksent',
|
||||
Uacute: 'Stor U med akutt aksent',
|
||||
Ucirc: 'Stor U med cirkumfleks',
|
||||
Uuml: 'Stor U med tøddel',
|
||||
Yacute: 'Stor Y med akutt aksent',
|
||||
THORN: 'Stor Thorn',
|
||||
szlig: 'Liten dobbelt-s/Eszett',
|
||||
agrave: 'Liten a med grav aksent',
|
||||
aacute: 'Liten a med akutt aksent',
|
||||
acirc: 'Liten a med cirkumfleks',
|
||||
atilde: 'Liten a med tilde',
|
||||
auml: 'Liten a med tøddel',
|
||||
aring: 'Liten å',
|
||||
aelig: 'Liten æ',
|
||||
ccedil: 'Liten c med cedille',
|
||||
egrave: 'Liten e med grav aksent',
|
||||
eacute: 'Liten e med akutt aksent',
|
||||
ecirc: 'Liten e med cirkumfleks',
|
||||
euml: 'Liten e med tøddel',
|
||||
igrave: 'Liten i med grav aksent',
|
||||
iacute: 'Liten i med akutt aksent',
|
||||
icirc: 'Liten i med cirkumfleks',
|
||||
iuml: 'Liten i med tøddel',
|
||||
eth: 'Liten edd/stungen d',
|
||||
ntilde: 'Liten n med tilde',
|
||||
ograve: 'Liten o med grav aksent',
|
||||
oacute: 'Liten o med akutt aksent',
|
||||
ocirc: 'Liten o med cirkumfleks',
|
||||
otilde: 'Liten o med tilde',
|
||||
ouml: 'Liten o med tøddel',
|
||||
divide: 'Divisjonstegn',
|
||||
oslash: 'Liten ø',
|
||||
ugrave: 'Liten u med grav aksent',
|
||||
uacute: 'Liten u med akutt aksent',
|
||||
ucirc: 'Liten u med cirkumfleks',
|
||||
uuml: 'Liten u med tøddel',
|
||||
yacute: 'Liten y med akutt aksent',
|
||||
thorn: 'Liten thorn',
|
||||
yuml: 'Liten y med tøddel',
|
||||
OElig: 'Stor ligatur av O og E',
|
||||
oelig: 'Liten ligatur av o og e',
|
||||
'372': 'Stor W med cirkumfleks',
|
||||
'374': 'Stor Y med cirkumfleks',
|
||||
'373': 'Liten w med cirkumfleks',
|
||||
'375': 'Liten y med cirkumfleks',
|
||||
sbquo: 'Enkelt lavt 9-anførselstegn',
|
||||
'8219': 'Enkelt høyt reversert 9-anførselstegn',
|
||||
bdquo: 'Dobbelt lavt 9-anførselstegn',
|
||||
hellip: 'Ellipse',
|
||||
trade: 'Varemerkesymbol',
|
||||
'9658': 'Svart høyrevendt peker',
|
||||
bull: 'Tykk interpunkt',
|
||||
rarr: 'Høyrevendt pil',
|
||||
rArr: 'Dobbel høyrevendt pil',
|
||||
hArr: 'Dobbel venstrevendt pil',
|
||||
diams: 'Svart ruter',
|
||||
asymp: 'Omtrent likhetstegn'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'no',
|
||||
{
|
||||
euro: 'Eurosymbol',
|
||||
lsquo: 'Venstre enkelt anførselstegn',
|
||||
rsquo: 'Høyre enkelt anførselstegn',
|
||||
ldquo: 'Venstre dobbelt anførselstegn',
|
||||
rdquo: 'Høyre anførsesltegn',
|
||||
ndash: 'Kort tankestrek',
|
||||
mdash: 'Lang tankestrek',
|
||||
iexcl: 'Omvendt utropstegn',
|
||||
cent: 'Centsymbol',
|
||||
pound: 'Pundsymbol',
|
||||
curren: 'Valutategn',
|
||||
yen: 'Yensymbol',
|
||||
brvbar: 'Brutt loddrett strek',
|
||||
sect: 'Paragraftegn',
|
||||
uml: 'Tøddel',
|
||||
copy: 'Copyrighttegn',
|
||||
ordf: 'Feminin ordensindikator',
|
||||
laquo: 'Venstre anførselstegn',
|
||||
not: 'Negasjonstegn',
|
||||
reg: 'Registrert varemerke-tegn',
|
||||
macr: 'Makron',
|
||||
deg: 'Gradsymbol',
|
||||
sup2: 'Hevet totall',
|
||||
sup3: 'Hevet tretall',
|
||||
acute: 'Akutt aksent',
|
||||
micro: 'Mikrosymbol',
|
||||
para: 'Avsnittstegn',
|
||||
middot: 'Midtstilt prikk',
|
||||
cedil: 'Cedille',
|
||||
sup1: 'Hevet ettall',
|
||||
ordm: 'Maskulin ordensindikator',
|
||||
raquo: 'Høyre anførselstegn',
|
||||
frac14: 'Fjerdedelsbrøk',
|
||||
frac12: 'Halvbrøk',
|
||||
frac34: 'Tre fjerdedelers brøk',
|
||||
iquest: 'Omvendt spørsmålstegn',
|
||||
Agrave: 'Stor A med grav aksent',
|
||||
Aacute: 'Stor A med akutt aksent',
|
||||
Acirc: 'Stor A med cirkumfleks',
|
||||
Atilde: 'Stor A med tilde',
|
||||
Auml: 'Stor A med tøddel',
|
||||
Aring: 'Stor Å',
|
||||
AElig: 'Stor Æ',
|
||||
Ccedil: 'Stor C med cedille',
|
||||
Egrave: 'Stor E med grav aksent',
|
||||
Eacute: 'Stor E med akutt aksent',
|
||||
Ecirc: 'Stor E med cirkumfleks',
|
||||
Euml: 'Stor E med tøddel',
|
||||
Igrave: 'Stor I med grav aksent',
|
||||
Iacute: 'Stor I med akutt aksent',
|
||||
Icirc: 'Stor I med cirkumfleks',
|
||||
Iuml: 'Stor I med tøddel',
|
||||
ETH: 'Stor Edd/stungen D',
|
||||
Ntilde: 'Stor N med tilde',
|
||||
Ograve: 'Stor O med grav aksent',
|
||||
Oacute: 'Stor O med akutt aksent',
|
||||
Ocirc: 'Stor O med cirkumfleks',
|
||||
Otilde: 'Stor O med tilde',
|
||||
Ouml: 'Stor O med tøddel',
|
||||
times: 'Multiplikasjonstegn',
|
||||
Oslash: 'Stor Ø',
|
||||
Ugrave: 'Stor U med grav aksent',
|
||||
Uacute: 'Stor U med akutt aksent',
|
||||
Ucirc: 'Stor U med cirkumfleks',
|
||||
Uuml: 'Stor U med tøddel',
|
||||
Yacute: 'Stor Y med akutt aksent',
|
||||
THORN: 'Stor Thorn',
|
||||
szlig: 'Liten dobbelt-s/Eszett',
|
||||
agrave: 'Liten a med grav aksent',
|
||||
aacute: 'Liten a med akutt aksent',
|
||||
acirc: 'Liten a med cirkumfleks',
|
||||
atilde: 'Liten a med tilde',
|
||||
auml: 'Liten a med tøddel',
|
||||
aring: 'Liten å',
|
||||
aelig: 'Liten æ',
|
||||
ccedil: 'Liten c med cedille',
|
||||
egrave: 'Liten e med grav aksent',
|
||||
eacute: 'Liten e med akutt aksent',
|
||||
ecirc: 'Liten e med cirkumfleks',
|
||||
euml: 'Liten e med tøddel',
|
||||
igrave: 'Liten i med grav aksent',
|
||||
iacute: 'Liten i med akutt aksent',
|
||||
icirc: 'Liten i med cirkumfleks',
|
||||
iuml: 'Liten i med tøddel',
|
||||
eth: 'Liten edd/stungen d',
|
||||
ntilde: 'Liten n med tilde',
|
||||
ograve: 'Liten o med grav aksent',
|
||||
oacute: 'Liten o med akutt aksent',
|
||||
ocirc: 'Liten o med cirkumfleks',
|
||||
otilde: 'Liten o med tilde',
|
||||
ouml: 'Liten o med tøddel',
|
||||
divide: 'Divisjonstegn',
|
||||
oslash: 'Liten ø',
|
||||
ugrave: 'Liten u med grav aksent',
|
||||
uacute: 'Liten u med akutt aksent',
|
||||
ucirc: 'Liten u med cirkumfleks',
|
||||
uuml: 'Liten u med tøddel',
|
||||
yacute: 'Liten y med akutt aksent',
|
||||
thorn: 'Liten thorn',
|
||||
yuml: 'Liten y med tøddel',
|
||||
OElig: 'Stor ligatur av O og E',
|
||||
oelig: 'Liten ligatur av o og e',
|
||||
'372': 'Stor W med cirkumfleks',
|
||||
'374': 'Stor Y med cirkumfleks',
|
||||
'373': 'Liten w med cirkumfleks',
|
||||
'375': 'Liten y med cirkumfleks',
|
||||
sbquo: 'Enkelt lavt 9-anførselstegn',
|
||||
'8219': 'Enkelt høyt reversert 9-anførselstegn',
|
||||
bdquo: 'Dobbelt lavt 9-anførselstegn',
|
||||
hellip: 'Ellipse',
|
||||
trade: 'Varemerkesymbol',
|
||||
'9658': 'Svart høyrevendt peker',
|
||||
bull: 'Tykk interpunkt',
|
||||
rarr: 'Høyrevendt pil',
|
||||
rArr: 'Dobbel høyrevendt pil',
|
||||
hArr: 'Dobbel venstrevendt pil',
|
||||
diams: 'Svart ruter',
|
||||
asymp: 'Omtrent likhetstegn'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'pt-br',
|
||||
{
|
||||
euro: 'Euro',
|
||||
lsquo: 'Aspas simples esquerda',
|
||||
rsquo: 'Aspas simples direita',
|
||||
ldquo: 'Aspas duplas esquerda',
|
||||
rdquo: 'Aspas duplas direita',
|
||||
ndash: 'Traço',
|
||||
mdash: 'Travessão',
|
||||
iexcl: 'Ponto de exclamação invertido',
|
||||
cent: 'Cent',
|
||||
pound: 'Cerquilha',
|
||||
curren: 'Dinheiro',
|
||||
yen: 'Yen',
|
||||
brvbar: 'Bara interrompida',
|
||||
sect: 'Símbolo de Parágrafo',
|
||||
uml: 'Trema',
|
||||
copy: 'Direito de Cópia',
|
||||
ordf: 'Indicador ordinal feminino',
|
||||
laquo: 'Aspas duplas angulares esquerda',
|
||||
not: 'Negação',
|
||||
reg: 'Marca Registrada',
|
||||
macr: 'Mácron',
|
||||
deg: 'Grau',
|
||||
sup2: '2 Superscrito',
|
||||
sup3: '3 Superscrito',
|
||||
acute: 'Acento agudo',
|
||||
micro: 'Micro',
|
||||
para: 'Pé de mosca',
|
||||
middot: 'Ponto mediano',
|
||||
cedil: 'Cedilha',
|
||||
sup1: '1 Superscrito',
|
||||
ordm: 'Indicador ordinal masculino',
|
||||
raquo: 'Aspas duplas angulares direita',
|
||||
frac14: 'Um quarto',
|
||||
frac12: 'Um meio',
|
||||
frac34: 'Três quartos',
|
||||
iquest: 'Interrogação invertida',
|
||||
Agrave: 'A maiúsculo com acento grave',
|
||||
Aacute: 'A maiúsculo com acento agudo',
|
||||
Acirc: 'A maiúsculo com acento circunflexo',
|
||||
Atilde: 'A maiúsculo com til',
|
||||
Auml: 'A maiúsculo com trema',
|
||||
Aring: 'A maiúsculo com anel acima',
|
||||
AElig: 'Æ maiúsculo',
|
||||
Ccedil: 'Ç maiúlculo',
|
||||
Egrave: 'E maiúsculo com acento grave',
|
||||
Eacute: 'E maiúsculo com acento agudo',
|
||||
Ecirc: 'E maiúsculo com acento circumflexo',
|
||||
Euml: 'E maiúsculo com trema',
|
||||
Igrave: 'I maiúsculo com acento grave',
|
||||
Iacute: 'I maiúsculo com acento agudo',
|
||||
Icirc: 'I maiúsculo com acento circunflexo',
|
||||
Iuml: 'I maiúsculo com crase',
|
||||
ETH: 'Eth maiúsculo',
|
||||
Ntilde: 'N maiúsculo com til',
|
||||
Ograve: 'O maiúsculo com acento grave',
|
||||
Oacute: 'O maiúsculo com acento agudo',
|
||||
Ocirc: 'O maiúsculo com acento circunflexo',
|
||||
Otilde: 'O maiúsculo com til',
|
||||
Ouml: 'O maiúsculo com trema',
|
||||
times: 'Multiplicação',
|
||||
Oslash: 'Diâmetro',
|
||||
Ugrave: 'U maiúsculo com acento grave',
|
||||
Uacute: 'U maiúsculo com acento agudo',
|
||||
Ucirc: 'U maiúsculo com acento circunflexo',
|
||||
Uuml: 'U maiúsculo com trema',
|
||||
Yacute: 'Y maiúsculo com acento agudo',
|
||||
THORN: 'Thorn maiúsculo',
|
||||
szlig: 'Eszett minúsculo',
|
||||
agrave: 'a minúsculo com acento grave',
|
||||
aacute: 'a minúsculo com acento agudo',
|
||||
acirc: 'a minúsculo com acento circunflexo',
|
||||
atilde: 'a minúsculo com til',
|
||||
auml: 'a minúsculo com trema',
|
||||
aring: 'a minúsculo com anel acima',
|
||||
aelig: 'æ minúsculo',
|
||||
ccedil: 'ç minúsculo',
|
||||
egrave: 'e minúsculo com acento grave',
|
||||
eacute: 'e minúsculo com acento agudo',
|
||||
ecirc: 'e minúsculo com acento circunflexo',
|
||||
euml: 'e minúsculo com trema',
|
||||
igrave: 'i minúsculo com acento grave',
|
||||
iacute: 'i minúsculo com acento agudo',
|
||||
icirc: 'i minúsculo com acento circunflexo',
|
||||
iuml: 'i minúsculo com trema',
|
||||
eth: 'eth minúsculo',
|
||||
ntilde: 'n minúsculo com til',
|
||||
ograve: 'o minúsculo com acento grave',
|
||||
oacute: 'o minúsculo com acento agudo',
|
||||
ocirc: 'o minúsculo com acento circunflexo',
|
||||
otilde: 'o minúsculo com til',
|
||||
ouml: 'o minúsculo com trema',
|
||||
divide: 'Divisão',
|
||||
oslash: 'o minúsculo com cortado ou diâmetro',
|
||||
ugrave: 'u minúsculo com acento grave',
|
||||
uacute: 'u minúsculo com acento agudo',
|
||||
ucirc: 'u minúsculo com acento circunflexo',
|
||||
uuml: 'u minúsculo com trema',
|
||||
yacute: 'y minúsculo com acento agudo',
|
||||
thorn: 'thorn minúsculo',
|
||||
yuml: 'y minúsculo com trema',
|
||||
OElig: 'Ligação tipográfica OE maiúscula',
|
||||
oelig: 'Ligação tipográfica oe minúscula',
|
||||
'372': 'W maiúsculo com acento circunflexo',
|
||||
'374': 'Y maiúsculo com acento circunflexo',
|
||||
'373': 'w minúsculo com acento circunflexo',
|
||||
'375': 'y minúsculo com acento circunflexo',
|
||||
sbquo: 'Aspas simples inferior direita',
|
||||
'8219': 'Aspas simples superior esquerda',
|
||||
bdquo: 'Aspas duplas inferior direita',
|
||||
hellip: 'Reticências',
|
||||
trade: 'Trade mark',
|
||||
'9658': 'Ponta de seta preta para direita',
|
||||
bull: 'Ponto lista',
|
||||
rarr: 'Seta para direita',
|
||||
rArr: 'Seta dupla para direita',
|
||||
hArr: 'Seta dupla direita e esquerda',
|
||||
diams: 'Ouros',
|
||||
asymp: 'Aproximadamente'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'pt-br',
|
||||
{
|
||||
euro: 'Euro',
|
||||
lsquo: 'Aspas simples esquerda',
|
||||
rsquo: 'Aspas simples direita',
|
||||
ldquo: 'Aspas duplas esquerda',
|
||||
rdquo: 'Aspas duplas direita',
|
||||
ndash: 'Traço',
|
||||
mdash: 'Travessão',
|
||||
iexcl: 'Ponto de exclamação invertido',
|
||||
cent: 'Cent',
|
||||
pound: 'Cerquilha',
|
||||
curren: 'Dinheiro',
|
||||
yen: 'Yen',
|
||||
brvbar: 'Bara interrompida',
|
||||
sect: 'Símbolo de Parágrafo',
|
||||
uml: 'Trema',
|
||||
copy: 'Direito de Cópia',
|
||||
ordf: 'Indicador ordinal feminino',
|
||||
laquo: 'Aspas duplas angulares esquerda',
|
||||
not: 'Negação',
|
||||
reg: 'Marca Registrada',
|
||||
macr: 'Mácron',
|
||||
deg: 'Grau',
|
||||
sup2: '2 Superscrito',
|
||||
sup3: '3 Superscrito',
|
||||
acute: 'Acento agudo',
|
||||
micro: 'Micro',
|
||||
para: 'Pé de mosca',
|
||||
middot: 'Ponto mediano',
|
||||
cedil: 'Cedilha',
|
||||
sup1: '1 Superscrito',
|
||||
ordm: 'Indicador ordinal masculino',
|
||||
raquo: 'Aspas duplas angulares direita',
|
||||
frac14: 'Um quarto',
|
||||
frac12: 'Um meio',
|
||||
frac34: 'Três quartos',
|
||||
iquest: 'Interrogação invertida',
|
||||
Agrave: 'A maiúsculo com acento grave',
|
||||
Aacute: 'A maiúsculo com acento agudo',
|
||||
Acirc: 'A maiúsculo com acento circunflexo',
|
||||
Atilde: 'A maiúsculo com til',
|
||||
Auml: 'A maiúsculo com trema',
|
||||
Aring: 'A maiúsculo com anel acima',
|
||||
AElig: 'Æ maiúsculo',
|
||||
Ccedil: 'Ç maiúlculo',
|
||||
Egrave: 'E maiúsculo com acento grave',
|
||||
Eacute: 'E maiúsculo com acento agudo',
|
||||
Ecirc: 'E maiúsculo com acento circumflexo',
|
||||
Euml: 'E maiúsculo com trema',
|
||||
Igrave: 'I maiúsculo com acento grave',
|
||||
Iacute: 'I maiúsculo com acento agudo',
|
||||
Icirc: 'I maiúsculo com acento circunflexo',
|
||||
Iuml: 'I maiúsculo com crase',
|
||||
ETH: 'Eth maiúsculo',
|
||||
Ntilde: 'N maiúsculo com til',
|
||||
Ograve: 'O maiúsculo com acento grave',
|
||||
Oacute: 'O maiúsculo com acento agudo',
|
||||
Ocirc: 'O maiúsculo com acento circunflexo',
|
||||
Otilde: 'O maiúsculo com til',
|
||||
Ouml: 'O maiúsculo com trema',
|
||||
times: 'Multiplicação',
|
||||
Oslash: 'Diâmetro',
|
||||
Ugrave: 'U maiúsculo com acento grave',
|
||||
Uacute: 'U maiúsculo com acento agudo',
|
||||
Ucirc: 'U maiúsculo com acento circunflexo',
|
||||
Uuml: 'U maiúsculo com trema',
|
||||
Yacute: 'Y maiúsculo com acento agudo',
|
||||
THORN: 'Thorn maiúsculo',
|
||||
szlig: 'Eszett minúsculo',
|
||||
agrave: 'a minúsculo com acento grave',
|
||||
aacute: 'a minúsculo com acento agudo',
|
||||
acirc: 'a minúsculo com acento circunflexo',
|
||||
atilde: 'a minúsculo com til',
|
||||
auml: 'a minúsculo com trema',
|
||||
aring: 'a minúsculo com anel acima',
|
||||
aelig: 'æ minúsculo',
|
||||
ccedil: 'ç minúsculo',
|
||||
egrave: 'e minúsculo com acento grave',
|
||||
eacute: 'e minúsculo com acento agudo',
|
||||
ecirc: 'e minúsculo com acento circunflexo',
|
||||
euml: 'e minúsculo com trema',
|
||||
igrave: 'i minúsculo com acento grave',
|
||||
iacute: 'i minúsculo com acento agudo',
|
||||
icirc: 'i minúsculo com acento circunflexo',
|
||||
iuml: 'i minúsculo com trema',
|
||||
eth: 'eth minúsculo',
|
||||
ntilde: 'n minúsculo com til',
|
||||
ograve: 'o minúsculo com acento grave',
|
||||
oacute: 'o minúsculo com acento agudo',
|
||||
ocirc: 'o minúsculo com acento circunflexo',
|
||||
otilde: 'o minúsculo com til',
|
||||
ouml: 'o minúsculo com trema',
|
||||
divide: 'Divisão',
|
||||
oslash: 'o minúsculo com cortado ou diâmetro',
|
||||
ugrave: 'u minúsculo com acento grave',
|
||||
uacute: 'u minúsculo com acento agudo',
|
||||
ucirc: 'u minúsculo com acento circunflexo',
|
||||
uuml: 'u minúsculo com trema',
|
||||
yacute: 'y minúsculo com acento agudo',
|
||||
thorn: 'thorn minúsculo',
|
||||
yuml: 'y minúsculo com trema',
|
||||
OElig: 'Ligação tipográfica OE maiúscula',
|
||||
oelig: 'Ligação tipográfica oe minúscula',
|
||||
'372': 'W maiúsculo com acento circunflexo',
|
||||
'374': 'Y maiúsculo com acento circunflexo',
|
||||
'373': 'w minúsculo com acento circunflexo',
|
||||
'375': 'y minúsculo com acento circunflexo',
|
||||
sbquo: 'Aspas simples inferior direita',
|
||||
'8219': 'Aspas simples superior esquerda',
|
||||
bdquo: 'Aspas duplas inferior direita',
|
||||
hellip: 'Reticências',
|
||||
trade: 'Trade mark',
|
||||
'9658': 'Ponta de seta preta para direita',
|
||||
bull: 'Ponto lista',
|
||||
rarr: 'Seta para direita',
|
||||
rArr: 'Seta dupla para direita',
|
||||
hArr: 'Seta dupla direita e esquerda',
|
||||
diams: 'Ouros',
|
||||
asymp: 'Aproximadamente'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'tr',
|
||||
{
|
||||
euro: 'Euro işareti',
|
||||
lsquo: 'Sol tek tırnak işareti',
|
||||
rsquo: 'Sağ tek tırnak işareti',
|
||||
ldquo: 'Sol çift tırnak işareti',
|
||||
rdquo: 'Sağ çift tırnak işareti',
|
||||
ndash: 'En tire',
|
||||
mdash: 'Em tire',
|
||||
iexcl: 'Ters ünlem işareti',
|
||||
cent: 'Cent işareti',
|
||||
pound: 'Pound işareti',
|
||||
curren: 'Para birimi işareti',
|
||||
yen: 'Yen işareti',
|
||||
brvbar: 'Kırık bar',
|
||||
sect: 'Bölüm işareti',
|
||||
uml: 'İki sesli harfin ayrılması',
|
||||
copy: 'Telif hakkı işareti',
|
||||
ordf: 'Dişil sıralı gösterge',
|
||||
laquo: 'Sol-işaret çift açı tırnak işareti',
|
||||
not: 'Not işareti',
|
||||
reg: 'Kayıtlı işareti',
|
||||
macr: 'Makron',
|
||||
deg: 'Derece işareti',
|
||||
sup2: 'İkili üstsimge',
|
||||
sup3: 'Üçlü üstsimge',
|
||||
acute: 'Aksan işareti',
|
||||
micro: 'Mikro işareti',
|
||||
para: 'Pilcrow işareti',
|
||||
middot: 'Orta nokta',
|
||||
cedil: 'Kedilla',
|
||||
sup1: 'Üstsimge',
|
||||
ordm: 'Eril sıralı gösterge',
|
||||
raquo: 'Sağ işaret çift açı tırnak işareti',
|
||||
frac14: 'Bayağı kesrin dörtte biri',
|
||||
frac12: 'Bayağı kesrin bir yarım',
|
||||
frac34: 'Bayağı kesrin dörtte üç',
|
||||
iquest: 'Ters soru işareti',
|
||||
Agrave: 'Aksanlı latin harfi',
|
||||
Aacute: 'Aşırı aksanıyla Latin harfi',
|
||||
Acirc: 'Çarpık Latin harfi',
|
||||
Atilde: 'Tilde latin harfi',
|
||||
Auml: 'Sesli harf ayrılımlıı latin harfi',
|
||||
Aring: 'Halkalı latin büyük A harfi',
|
||||
AElig: 'Latin büyük Æ harfi',
|
||||
Ccedil: 'Latin büyük C harfi ile kedilla',
|
||||
Egrave: 'Aksanlı latin büyük E harfi',
|
||||
Eacute: 'Aşırı vurgulu latin büyük E harfi',
|
||||
Ecirc: 'Çarpık latin büyük E harfi',
|
||||
Euml: 'Sesli harf ayrılımlıı latin büyük E harfi',
|
||||
Igrave: 'Aksanlı latin büyük I harfi',
|
||||
Iacute: 'Aşırı aksanlı latin büyük I harfi',
|
||||
Icirc: 'Çarpık latin büyük I harfi',
|
||||
Iuml: 'Sesli harf ayrılımlıı latin büyük I harfi',
|
||||
ETH: 'Latin büyük Eth harfi',
|
||||
Ntilde: 'Tildeli latin büyük N harfi',
|
||||
Ograve: 'Aksanlı latin büyük O harfi',
|
||||
Oacute: 'Aşırı aksanlı latin büyük O harfi',
|
||||
Ocirc: 'Çarpık latin büyük O harfi',
|
||||
Otilde: 'Tildeli latin büyük O harfi',
|
||||
Ouml: 'Sesli harf ayrılımlı latin büyük O harfi',
|
||||
times: 'Çarpma işareti',
|
||||
Oslash: 'Vurgulu latin büyük O harfi',
|
||||
Ugrave: 'Aksanlı latin büyük U harfi',
|
||||
Uacute: 'Aşırı aksanlı latin büyük U harfi',
|
||||
Ucirc: 'Çarpık latin büyük U harfi',
|
||||
Uuml: 'Sesli harf ayrılımlı latin büyük U harfi',
|
||||
Yacute: 'Aşırı aksanlı latin büyük Y harfi',
|
||||
THORN: 'Latin büyük Thorn harfi',
|
||||
szlig: 'Latin küçük keskin s harfi',
|
||||
agrave: 'Aksanlı latin küçük a harfi',
|
||||
aacute: 'Aşırı aksanlı latin küçük a harfi',
|
||||
acirc: 'Çarpık latin küçük a harfi',
|
||||
atilde: 'Tildeli latin küçük a harfi',
|
||||
auml: 'Sesli harf ayrılımlı latin küçük a harfi',
|
||||
aring: 'Halkalı latin küçük a harfi',
|
||||
aelig: 'Latin büyük æ harfi',
|
||||
ccedil: 'Kedillalı latin küçük c harfi',
|
||||
egrave: 'Aksanlı latin küçük e harfi',
|
||||
eacute: 'Aşırı aksanlı latin küçük e harfi',
|
||||
ecirc: 'Çarpık latin küçük e harfi',
|
||||
euml: 'Sesli harf ayrılımlı latin küçük e harfi',
|
||||
igrave: 'Aksanlı latin küçük i harfi',
|
||||
iacute: 'Aşırı aksanlı latin küçük i harfi',
|
||||
icirc: 'Çarpık latin küçük i harfi',
|
||||
iuml: 'Sesli harf ayrılımlı latin küçük i harfi',
|
||||
eth: 'Latin küçük eth harfi',
|
||||
ntilde: 'Tildeli latin küçük n harfi',
|
||||
ograve: 'Aksanlı latin küçük o harfi',
|
||||
oacute: 'Aşırı aksanlı latin küçük o harfi',
|
||||
ocirc: 'Çarpık latin küçük o harfi',
|
||||
otilde: 'Tildeli latin küçük o harfi',
|
||||
ouml: 'Sesli harf ayrılımlı latin küçük o harfi',
|
||||
divide: 'Bölme işareti',
|
||||
oslash: 'Vurgulu latin küçük o harfi',
|
||||
ugrave: 'Aksanlı latin küçük u harfi',
|
||||
uacute: 'Aşırı aksanlı latin küçük u harfi',
|
||||
ucirc: 'Çarpık latin küçük u harfi',
|
||||
uuml: 'Sesli harf ayrılımlı latin küçük u harfi',
|
||||
yacute: 'Aşırı aksanlı latin küçük y harfi',
|
||||
thorn: 'Latin küçük thorn harfi',
|
||||
yuml: 'Sesli harf ayrılımlı latin küçük y harfi',
|
||||
OElig: 'Latin büyük bağlı OE harfi',
|
||||
oelig: 'Latin küçük bağlı oe harfi',
|
||||
'372': 'Çarpık latin büyük W harfi',
|
||||
'374': 'Çarpık latin büyük Y harfi',
|
||||
'373': 'Çarpık latin küçük w harfi',
|
||||
'375': 'Çarpık latin küçük y harfi',
|
||||
sbquo: 'Tek düşük-9 tırnak işareti',
|
||||
'8219': 'Tek yüksek-ters-9 tırnak işareti',
|
||||
bdquo: 'Çift düşük-9 tırnak işareti',
|
||||
hellip: 'Yatay elips',
|
||||
trade: 'Marka tescili işareti',
|
||||
'9658': 'Siyah sağ işaret işaretçisi',
|
||||
bull: 'Koyu nokta',
|
||||
rarr: 'Sağa doğru ok',
|
||||
rArr: 'Sağa doğru çift ok',
|
||||
hArr: 'Sol, sağ çift ok',
|
||||
diams: 'Siyah elmas takımı',
|
||||
asymp: 'Hemen hemen eşit'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'tr',
|
||||
{
|
||||
euro: 'Euro işareti',
|
||||
lsquo: 'Sol tek tırnak işareti',
|
||||
rsquo: 'Sağ tek tırnak işareti',
|
||||
ldquo: 'Sol çift tırnak işareti',
|
||||
rdquo: 'Sağ çift tırnak işareti',
|
||||
ndash: 'En tire',
|
||||
mdash: 'Em tire',
|
||||
iexcl: 'Ters ünlem işareti',
|
||||
cent: 'Cent işareti',
|
||||
pound: 'Pound işareti',
|
||||
curren: 'Para birimi işareti',
|
||||
yen: 'Yen işareti',
|
||||
brvbar: 'Kırık bar',
|
||||
sect: 'Bölüm işareti',
|
||||
uml: 'İki sesli harfin ayrılması',
|
||||
copy: 'Telif hakkı işareti',
|
||||
ordf: 'Dişil sıralı gösterge',
|
||||
laquo: 'Sol-işaret çift açı tırnak işareti',
|
||||
not: 'Not işareti',
|
||||
reg: 'Kayıtlı işareti',
|
||||
macr: 'Makron',
|
||||
deg: 'Derece işareti',
|
||||
sup2: 'İkili üstsimge',
|
||||
sup3: 'Üçlü üstsimge',
|
||||
acute: 'Aksan işareti',
|
||||
micro: 'Mikro işareti',
|
||||
para: 'Pilcrow işareti',
|
||||
middot: 'Orta nokta',
|
||||
cedil: 'Kedilla',
|
||||
sup1: 'Üstsimge',
|
||||
ordm: 'Eril sıralı gösterge',
|
||||
raquo: 'Sağ işaret çift açı tırnak işareti',
|
||||
frac14: 'Bayağı kesrin dörtte biri',
|
||||
frac12: 'Bayağı kesrin bir yarım',
|
||||
frac34: 'Bayağı kesrin dörtte üç',
|
||||
iquest: 'Ters soru işareti',
|
||||
Agrave: 'Aksanlı latin harfi',
|
||||
Aacute: 'Aşırı aksanıyla Latin harfi',
|
||||
Acirc: 'Çarpık Latin harfi',
|
||||
Atilde: 'Tilde latin harfi',
|
||||
Auml: 'Sesli harf ayrılımlıı latin harfi',
|
||||
Aring: 'Halkalı latin büyük A harfi',
|
||||
AElig: 'Latin büyük Æ harfi',
|
||||
Ccedil: 'Latin büyük C harfi ile kedilla',
|
||||
Egrave: 'Aksanlı latin büyük E harfi',
|
||||
Eacute: 'Aşırı vurgulu latin büyük E harfi',
|
||||
Ecirc: 'Çarpık latin büyük E harfi',
|
||||
Euml: 'Sesli harf ayrılımlıı latin büyük E harfi',
|
||||
Igrave: 'Aksanlı latin büyük I harfi',
|
||||
Iacute: 'Aşırı aksanlı latin büyük I harfi',
|
||||
Icirc: 'Çarpık latin büyük I harfi',
|
||||
Iuml: 'Sesli harf ayrılımlıı latin büyük I harfi',
|
||||
ETH: 'Latin büyük Eth harfi',
|
||||
Ntilde: 'Tildeli latin büyük N harfi',
|
||||
Ograve: 'Aksanlı latin büyük O harfi',
|
||||
Oacute: 'Aşırı aksanlı latin büyük O harfi',
|
||||
Ocirc: 'Çarpık latin büyük O harfi',
|
||||
Otilde: 'Tildeli latin büyük O harfi',
|
||||
Ouml: 'Sesli harf ayrılımlı latin büyük O harfi',
|
||||
times: 'Çarpma işareti',
|
||||
Oslash: 'Vurgulu latin büyük O harfi',
|
||||
Ugrave: 'Aksanlı latin büyük U harfi',
|
||||
Uacute: 'Aşırı aksanlı latin büyük U harfi',
|
||||
Ucirc: 'Çarpık latin büyük U harfi',
|
||||
Uuml: 'Sesli harf ayrılımlı latin büyük U harfi',
|
||||
Yacute: 'Aşırı aksanlı latin büyük Y harfi',
|
||||
THORN: 'Latin büyük Thorn harfi',
|
||||
szlig: 'Latin küçük keskin s harfi',
|
||||
agrave: 'Aksanlı latin küçük a harfi',
|
||||
aacute: 'Aşırı aksanlı latin küçük a harfi',
|
||||
acirc: 'Çarpık latin küçük a harfi',
|
||||
atilde: 'Tildeli latin küçük a harfi',
|
||||
auml: 'Sesli harf ayrılımlı latin küçük a harfi',
|
||||
aring: 'Halkalı latin küçük a harfi',
|
||||
aelig: 'Latin büyük æ harfi',
|
||||
ccedil: 'Kedillalı latin küçük c harfi',
|
||||
egrave: 'Aksanlı latin küçük e harfi',
|
||||
eacute: 'Aşırı aksanlı latin küçük e harfi',
|
||||
ecirc: 'Çarpık latin küçük e harfi',
|
||||
euml: 'Sesli harf ayrılımlı latin küçük e harfi',
|
||||
igrave: 'Aksanlı latin küçük i harfi',
|
||||
iacute: 'Aşırı aksanlı latin küçük i harfi',
|
||||
icirc: 'Çarpık latin küçük i harfi',
|
||||
iuml: 'Sesli harf ayrılımlı latin küçük i harfi',
|
||||
eth: 'Latin küçük eth harfi',
|
||||
ntilde: 'Tildeli latin küçük n harfi',
|
||||
ograve: 'Aksanlı latin küçük o harfi',
|
||||
oacute: 'Aşırı aksanlı latin küçük o harfi',
|
||||
ocirc: 'Çarpık latin küçük o harfi',
|
||||
otilde: 'Tildeli latin küçük o harfi',
|
||||
ouml: 'Sesli harf ayrılımlı latin küçük o harfi',
|
||||
divide: 'Bölme işareti',
|
||||
oslash: 'Vurgulu latin küçük o harfi',
|
||||
ugrave: 'Aksanlı latin küçük u harfi',
|
||||
uacute: 'Aşırı aksanlı latin küçük u harfi',
|
||||
ucirc: 'Çarpık latin küçük u harfi',
|
||||
uuml: 'Sesli harf ayrılımlı latin küçük u harfi',
|
||||
yacute: 'Aşırı aksanlı latin küçük y harfi',
|
||||
thorn: 'Latin küçük thorn harfi',
|
||||
yuml: 'Sesli harf ayrılımlı latin küçük y harfi',
|
||||
OElig: 'Latin büyük bağlı OE harfi',
|
||||
oelig: 'Latin küçük bağlı oe harfi',
|
||||
'372': 'Çarpık latin büyük W harfi',
|
||||
'374': 'Çarpık latin büyük Y harfi',
|
||||
'373': 'Çarpık latin küçük w harfi',
|
||||
'375': 'Çarpık latin küçük y harfi',
|
||||
sbquo: 'Tek düşük-9 tırnak işareti',
|
||||
'8219': 'Tek yüksek-ters-9 tırnak işareti',
|
||||
bdquo: 'Çift düşük-9 tırnak işareti',
|
||||
hellip: 'Yatay elips',
|
||||
trade: 'Marka tescili işareti',
|
||||
'9658': 'Siyah sağ işaret işaretçisi',
|
||||
bull: 'Koyu nokta',
|
||||
rarr: 'Sağa doğru ok',
|
||||
rArr: 'Sağa doğru çift ok',
|
||||
hArr: 'Sol, sağ çift ok',
|
||||
diams: 'Siyah elmas takımı',
|
||||
asymp: 'Hemen hemen eşit'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'ug',
|
||||
{
|
||||
euro: 'ياۋرو بەلگىسى',
|
||||
lsquo: 'يالاڭ پەش سول',
|
||||
rsquo: 'يالاڭ پەش ئوڭ',
|
||||
ldquo: 'قوش پەش سول',
|
||||
rdquo: 'قوش پەش ئوڭ',
|
||||
ndash: 'سىزىقچە',
|
||||
mdash: 'سىزىق',
|
||||
iexcl: 'ئۈندەش',
|
||||
cent: 'تىيىن بەلگىسى',
|
||||
pound: 'فوند ستېرلىڭ',
|
||||
curren: 'پۇل بەلگىسى',
|
||||
yen: 'ياپونىيە يىنى',
|
||||
brvbar: 'ئۈزۈك بالداق',
|
||||
sect: 'پاراگراف بەلگىسى',
|
||||
uml: 'تاۋۇش ئايرىش بەلگىسى',
|
||||
copy: 'نەشر ھوقۇقى بەلگىسى',
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'قوش تىرناق سول',
|
||||
not: 'غەيرى بەلگە',
|
||||
reg: 'خەتلەتكەن تاۋار ماركىسى',
|
||||
macr: 'سوزۇش بەلگىسى',
|
||||
deg: 'گىرادۇس بەلگىسى',
|
||||
sup2: 'يۇقىرى ئىندېكىس 2',
|
||||
sup3: 'يۇقىرى ئىندېكىس 3',
|
||||
acute: 'ئۇرغۇ بەلگىسى',
|
||||
micro: 'Micro sign', // MISSING
|
||||
para: 'ئابزاس بەلگىسى',
|
||||
middot: 'ئوتتۇرا چېكىت',
|
||||
cedil: 'ئاستىغا قوشۇلىدىغان بەلگە',
|
||||
sup1: 'يۇقىرى ئىندېكىس 1',
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'قوش تىرناق ئوڭ',
|
||||
frac14: 'ئاددىي كەسىر تۆتتىن بىر',
|
||||
frac12: 'ئاددىي كەسىر ئىككىدىن بىر',
|
||||
frac34: 'ئاددىي كەسىر ئۈچتىن تۆرت',
|
||||
iquest: 'Inverted question mark', // MISSING
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'قوش پەش ئوڭ',
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'تىك موللاق سوئال بەلگىسى',
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'ئوڭ يا ئوق',
|
||||
rArr: 'ئوڭ قوش سىزىق يا ئوق',
|
||||
hArr: 'ئوڭ سول قوش سىزىق يا ئوق',
|
||||
diams: 'ئۇيۇل غىچ',
|
||||
asymp: 'تەخمىنەن تەڭ'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'ug',
|
||||
{
|
||||
euro: 'ياۋرو بەلگىسى',
|
||||
lsquo: 'يالاڭ پەش سول',
|
||||
rsquo: 'يالاڭ پەش ئوڭ',
|
||||
ldquo: 'قوش پەش سول',
|
||||
rdquo: 'قوش پەش ئوڭ',
|
||||
ndash: 'سىزىقچە',
|
||||
mdash: 'سىزىق',
|
||||
iexcl: 'ئۈندەش',
|
||||
cent: 'تىيىن بەلگىسى',
|
||||
pound: 'فوند ستېرلىڭ',
|
||||
curren: 'پۇل بەلگىسى',
|
||||
yen: 'ياپونىيە يىنى',
|
||||
brvbar: 'ئۈزۈك بالداق',
|
||||
sect: 'پاراگراف بەلگىسى',
|
||||
uml: 'تاۋۇش ئايرىش بەلگىسى',
|
||||
copy: 'نەشر ھوقۇقى بەلگىسى',
|
||||
ordf: 'Feminine ordinal indicator', // MISSING
|
||||
laquo: 'قوش تىرناق سول',
|
||||
not: 'غەيرى بەلگە',
|
||||
reg: 'خەتلەتكەن تاۋار ماركىسى',
|
||||
macr: 'سوزۇش بەلگىسى',
|
||||
deg: 'گىرادۇس بەلگىسى',
|
||||
sup2: 'يۇقىرى ئىندېكىس 2',
|
||||
sup3: 'يۇقىرى ئىندېكىس 3',
|
||||
acute: 'ئۇرغۇ بەلگىسى',
|
||||
micro: 'Micro sign', // MISSING
|
||||
para: 'ئابزاس بەلگىسى',
|
||||
middot: 'ئوتتۇرا چېكىت',
|
||||
cedil: 'ئاستىغا قوشۇلىدىغان بەلگە',
|
||||
sup1: 'يۇقىرى ئىندېكىس 1',
|
||||
ordm: 'Masculine ordinal indicator', // MISSING
|
||||
raquo: 'قوش تىرناق ئوڭ',
|
||||
frac14: 'ئاددىي كەسىر تۆتتىن بىر',
|
||||
frac12: 'ئاددىي كەسىر ئىككىدىن بىر',
|
||||
frac34: 'ئاددىي كەسىر ئۈچتىن تۆرت',
|
||||
iquest: 'Inverted question mark', // MISSING
|
||||
Agrave: 'Latin capital letter A with grave accent', // MISSING
|
||||
Aacute: 'Latin capital letter A with acute accent', // MISSING
|
||||
Acirc: 'Latin capital letter A with circumflex', // MISSING
|
||||
Atilde: 'Latin capital letter A with tilde', // MISSING
|
||||
Auml: 'Latin capital letter A with diaeresis', // MISSING
|
||||
Aring: 'Latin capital letter A with ring above', // MISSING
|
||||
AElig: 'Latin Capital letter Æ', // MISSING
|
||||
Ccedil: 'Latin capital letter C with cedilla', // MISSING
|
||||
Egrave: 'Latin capital letter E with grave accent', // MISSING
|
||||
Eacute: 'Latin capital letter E with acute accent', // MISSING
|
||||
Ecirc: 'Latin capital letter E with circumflex', // MISSING
|
||||
Euml: 'Latin capital letter E with diaeresis', // MISSING
|
||||
Igrave: 'Latin capital letter I with grave accent', // MISSING
|
||||
Iacute: 'Latin capital letter I with acute accent', // MISSING
|
||||
Icirc: 'Latin capital letter I with circumflex', // MISSING
|
||||
Iuml: 'Latin capital letter I with diaeresis', // MISSING
|
||||
ETH: 'Latin capital letter Eth', // MISSING
|
||||
Ntilde: 'Latin capital letter N with tilde', // MISSING
|
||||
Ograve: 'قوش پەش ئوڭ',
|
||||
Oacute: 'Latin capital letter O with acute accent', // MISSING
|
||||
Ocirc: 'Latin capital letter O with circumflex', // MISSING
|
||||
Otilde: 'Latin capital letter O with tilde', // MISSING
|
||||
Ouml: 'Latin capital letter O with diaeresis', // MISSING
|
||||
times: 'Multiplication sign', // MISSING
|
||||
Oslash: 'Latin capital letter O with stroke', // MISSING
|
||||
Ugrave: 'Latin capital letter U with grave accent', // MISSING
|
||||
Uacute: 'Latin capital letter U with acute accent', // MISSING
|
||||
Ucirc: 'Latin capital letter U with circumflex', // MISSING
|
||||
Uuml: 'Latin capital letter U with diaeresis', // MISSING
|
||||
Yacute: 'Latin capital letter Y with acute accent', // MISSING
|
||||
THORN: 'Latin capital letter Thorn', // MISSING
|
||||
szlig: 'Latin small letter sharp s', // MISSING
|
||||
agrave: 'Latin small letter a with grave accent', // MISSING
|
||||
aacute: 'Latin small letter a with acute accent', // MISSING
|
||||
acirc: 'Latin small letter a with circumflex', // MISSING
|
||||
atilde: 'Latin small letter a with tilde', // MISSING
|
||||
auml: 'Latin small letter a with diaeresis', // MISSING
|
||||
aring: 'Latin small letter a with ring above', // MISSING
|
||||
aelig: 'Latin small letter æ', // MISSING
|
||||
ccedil: 'Latin small letter c with cedilla', // MISSING
|
||||
egrave: 'Latin small letter e with grave accent', // MISSING
|
||||
eacute: 'Latin small letter e with acute accent', // MISSING
|
||||
ecirc: 'Latin small letter e with circumflex', // MISSING
|
||||
euml: 'Latin small letter e with diaeresis', // MISSING
|
||||
igrave: 'Latin small letter i with grave accent', // MISSING
|
||||
iacute: 'Latin small letter i with acute accent', // MISSING
|
||||
icirc: 'Latin small letter i with circumflex', // MISSING
|
||||
iuml: 'Latin small letter i with diaeresis', // MISSING
|
||||
eth: 'Latin small letter eth', // MISSING
|
||||
ntilde: 'تىك موللاق سوئال بەلگىسى',
|
||||
ograve: 'Latin small letter o with grave accent', // MISSING
|
||||
oacute: 'Latin small letter o with acute accent', // MISSING
|
||||
ocirc: 'Latin small letter o with circumflex', // MISSING
|
||||
otilde: 'Latin small letter o with tilde', // MISSING
|
||||
ouml: 'Latin small letter o with diaeresis', // MISSING
|
||||
divide: 'Division sign', // MISSING
|
||||
oslash: 'Latin small letter o with stroke', // MISSING
|
||||
ugrave: 'Latin small letter u with grave accent', // MISSING
|
||||
uacute: 'Latin small letter u with acute accent', // MISSING
|
||||
ucirc: 'Latin small letter u with circumflex', // MISSING
|
||||
uuml: 'Latin small letter u with diaeresis', // MISSING
|
||||
yacute: 'Latin small letter y with acute accent', // MISSING
|
||||
thorn: 'Latin small letter thorn', // MISSING
|
||||
yuml: 'Latin small letter y with diaeresis', // MISSING
|
||||
OElig: 'Latin capital ligature OE', // MISSING
|
||||
oelig: 'Latin small ligature oe', // MISSING
|
||||
'372': 'Latin capital letter W with circumflex', // MISSING
|
||||
'374': 'Latin capital letter Y with circumflex', // MISSING
|
||||
'373': 'Latin small letter w with circumflex', // MISSING
|
||||
'375': 'Latin small letter y with circumflex', // MISSING
|
||||
sbquo: 'Single low-9 quotation mark', // MISSING
|
||||
'8219': 'Single high-reversed-9 quotation mark', // MISSING
|
||||
bdquo: 'Double low-9 quotation mark', // MISSING
|
||||
hellip: 'Horizontal ellipsis', // MISSING
|
||||
trade: 'Trade mark sign', // MISSING
|
||||
'9658': 'Black right-pointing pointer', // MISSING
|
||||
bull: 'Bullet', // MISSING
|
||||
rarr: 'ئوڭ يا ئوق',
|
||||
rArr: 'ئوڭ قوش سىزىق يا ئوق',
|
||||
hArr: 'ئوڭ سول قوش سىزىق يا ئوق',
|
||||
diams: 'ئۇيۇل غىچ',
|
||||
asymp: 'تەخمىنەن تەڭ'
|
||||
});
|
||||
|
||||
@@ -1,126 +1,126 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'zh-cn',
|
||||
{
|
||||
euro: '欧元符号',
|
||||
lsquo: '左单引号',
|
||||
rsquo: '右单引号',
|
||||
ldquo: '左双引号',
|
||||
rdquo: '右双引号',
|
||||
ndash: '短划线',
|
||||
mdash: '破折号',
|
||||
iexcl: '竖翻叹号',
|
||||
cent: '分币标记',
|
||||
pound: '英镑标记',
|
||||
curren: '货币标记',
|
||||
yen: '日元标记',
|
||||
brvbar: '间断条',
|
||||
sect: '节标记',
|
||||
uml: '分音符',
|
||||
copy: '版权所有标记',
|
||||
ordf: '阴性顺序指示符',
|
||||
laquo: '左指双尖引号',
|
||||
not: '非标记',
|
||||
reg: '注册标记',
|
||||
macr: '长音符',
|
||||
deg: '度标记',
|
||||
sup2: '上标二',
|
||||
sup3: '上标三',
|
||||
acute: '锐音符',
|
||||
micro: '微符',
|
||||
para: '段落标记',
|
||||
middot: '中间点',
|
||||
cedil: '下加符',
|
||||
sup1: '上标一',
|
||||
ordm: '阳性顺序指示符',
|
||||
raquo: '右指双尖引号',
|
||||
frac14: '普通分数四分之一',
|
||||
frac12: '普通分数二分之一',
|
||||
frac34: '普通分数四分之三',
|
||||
iquest: '竖翻问号',
|
||||
Agrave: '带抑音符的拉丁文大写字母 A',
|
||||
Aacute: '带锐音符的拉丁文大写字母 A',
|
||||
Acirc: '带扬抑符的拉丁文大写字母 A',
|
||||
Atilde: '带颚化符的拉丁文大写字母 A',
|
||||
Auml: '带分音符的拉丁文大写字母 A',
|
||||
Aring: '带上圆圈的拉丁文大写字母 A',
|
||||
AElig: '拉丁文大写字母 Ae',
|
||||
Ccedil: '带下加符的拉丁文大写字母 C',
|
||||
Egrave: '带抑音符的拉丁文大写字母 E',
|
||||
Eacute: '带锐音符的拉丁文大写字母 E',
|
||||
Ecirc: '带扬抑符的拉丁文大写字母 E',
|
||||
Euml: '带分音符的拉丁文大写字母 E',
|
||||
Igrave: '带抑音符的拉丁文大写字母 I',
|
||||
Iacute: '带锐音符的拉丁文大写字母 I',
|
||||
Icirc: '带扬抑符的拉丁文大写字母 I',
|
||||
Iuml: '带分音符的拉丁文大写字母 I',
|
||||
ETH: '拉丁文大写字母 Eth',
|
||||
Ntilde: '带颚化符的拉丁文大写字母 N',
|
||||
Ograve: '带抑音符的拉丁文大写字母 O',
|
||||
Oacute: '带锐音符的拉丁文大写字母 O',
|
||||
Ocirc: '带扬抑符的拉丁文大写字母 O',
|
||||
Otilde: '带颚化符的拉丁文大写字母 O',
|
||||
Ouml: '带分音符的拉丁文大写字母 O',
|
||||
times: '乘号',
|
||||
Oslash: '带粗线的拉丁文大写字母 O',
|
||||
Ugrave: '带抑音符的拉丁文大写字母 U',
|
||||
Uacute: '带锐音符的拉丁文大写字母 U',
|
||||
Ucirc: '带扬抑符的拉丁文大写字母 U',
|
||||
Uuml: '带分音符的拉丁文大写字母 U',
|
||||
Yacute: '带抑音符的拉丁文大写字母 Y',
|
||||
THORN: '拉丁文大写字母 Thorn',
|
||||
szlig: '拉丁文小写字母清音 S',
|
||||
agrave: '带抑音符的拉丁文小写字母 A',
|
||||
aacute: '带锐音符的拉丁文小写字母 A',
|
||||
acirc: '带扬抑符的拉丁文小写字母 A',
|
||||
atilde: '带颚化符的拉丁文小写字母 A',
|
||||
auml: '带分音符的拉丁文小写字母 A',
|
||||
aring: '带上圆圈的拉丁文小写字母 A',
|
||||
aelig: '拉丁文小写字母 Ae',
|
||||
ccedil: '带下加符的拉丁文小写字母 C',
|
||||
egrave: '带抑音符的拉丁文小写字母 E',
|
||||
eacute: '带锐音符的拉丁文小写字母 E',
|
||||
ecirc: '带扬抑符的拉丁文小写字母 E',
|
||||
euml: '带分音符的拉丁文小写字母 E',
|
||||
igrave: '带抑音符的拉丁文小写字母 I',
|
||||
iacute: '带锐音符的拉丁文小写字母 I',
|
||||
icirc: '带扬抑符的拉丁文小写字母 I',
|
||||
iuml: '带分音符的拉丁文小写字母 I',
|
||||
eth: '拉丁文小写字母 Eth',
|
||||
ntilde: '带颚化符的拉丁文小写字母 N',
|
||||
ograve: '带抑音符的拉丁文小写字母 O',
|
||||
oacute: '带锐音符的拉丁文小写字母 O',
|
||||
ocirc: '带扬抑符的拉丁文小写字母 O',
|
||||
otilde: '带颚化符的拉丁文小写字母 O',
|
||||
ouml: '带分音符的拉丁文小写字母 O',
|
||||
divide: '除号',
|
||||
oslash: '带粗线的拉丁文小写字母 O',
|
||||
ugrave: '带抑音符的拉丁文小写字母 U',
|
||||
uacute: '带锐音符的拉丁文小写字母 U',
|
||||
ucirc: '带扬抑符的拉丁文小写字母 U',
|
||||
uuml: '带分音符的拉丁文小写字母 U',
|
||||
yacute: '带抑音符的拉丁文小写字母 Y',
|
||||
thorn: '拉丁文小写字母 Thorn',
|
||||
yuml: '带分音符的拉丁文小写字母 Y',
|
||||
OElig: '拉丁文大写连字 Oe',
|
||||
oelig: '拉丁文小写连字 Oe',
|
||||
'372': '带扬抑符的拉丁文大写字母 W',
|
||||
'374': '带扬抑符的拉丁文大写字母 Y',
|
||||
'373': '带扬抑符的拉丁文小写字母 W',
|
||||
'375': '带扬抑符的拉丁文小写字母 Y',
|
||||
sbquo: '单下 9 形引号',
|
||||
'8219': '单高横翻 9 形引号',
|
||||
bdquo: '双下 9 形引号',
|
||||
hellip: '水平省略号',
|
||||
trade: '商标标志',
|
||||
'9658': '实心右指指针',
|
||||
bull: '加重号',
|
||||
rarr: '向右箭头',
|
||||
rArr: '向右双线箭头',
|
||||
hArr: '左右双线箭头',
|
||||
diams: '实心方块纸牌',
|
||||
asymp: '约等于'
|
||||
});
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'zh-cn',
|
||||
{
|
||||
euro: '欧元符号',
|
||||
lsquo: '左单引号',
|
||||
rsquo: '右单引号',
|
||||
ldquo: '左双引号',
|
||||
rdquo: '右双引号',
|
||||
ndash: '短划线',
|
||||
mdash: '破折号',
|
||||
iexcl: '竖翻叹号',
|
||||
cent: '分币标记',
|
||||
pound: '英镑标记',
|
||||
curren: '货币标记',
|
||||
yen: '日元标记',
|
||||
brvbar: '间断条',
|
||||
sect: '节标记',
|
||||
uml: '分音符',
|
||||
copy: '版权所有标记',
|
||||
ordf: '阴性顺序指示符',
|
||||
laquo: '左指双尖引号',
|
||||
not: '非标记',
|
||||
reg: '注册标记',
|
||||
macr: '长音符',
|
||||
deg: '度标记',
|
||||
sup2: '上标二',
|
||||
sup3: '上标三',
|
||||
acute: '锐音符',
|
||||
micro: '微符',
|
||||
para: '段落标记',
|
||||
middot: '中间点',
|
||||
cedil: '下加符',
|
||||
sup1: '上标一',
|
||||
ordm: '阳性顺序指示符',
|
||||
raquo: '右指双尖引号',
|
||||
frac14: '普通分数四分之一',
|
||||
frac12: '普通分数二分之一',
|
||||
frac34: '普通分数四分之三',
|
||||
iquest: '竖翻问号',
|
||||
Agrave: '带抑音符的拉丁文大写字母 A',
|
||||
Aacute: '带锐音符的拉丁文大写字母 A',
|
||||
Acirc: '带扬抑符的拉丁文大写字母 A',
|
||||
Atilde: '带颚化符的拉丁文大写字母 A',
|
||||
Auml: '带分音符的拉丁文大写字母 A',
|
||||
Aring: '带上圆圈的拉丁文大写字母 A',
|
||||
AElig: '拉丁文大写字母 Ae',
|
||||
Ccedil: '带下加符的拉丁文大写字母 C',
|
||||
Egrave: '带抑音符的拉丁文大写字母 E',
|
||||
Eacute: '带锐音符的拉丁文大写字母 E',
|
||||
Ecirc: '带扬抑符的拉丁文大写字母 E',
|
||||
Euml: '带分音符的拉丁文大写字母 E',
|
||||
Igrave: '带抑音符的拉丁文大写字母 I',
|
||||
Iacute: '带锐音符的拉丁文大写字母 I',
|
||||
Icirc: '带扬抑符的拉丁文大写字母 I',
|
||||
Iuml: '带分音符的拉丁文大写字母 I',
|
||||
ETH: '拉丁文大写字母 Eth',
|
||||
Ntilde: '带颚化符的拉丁文大写字母 N',
|
||||
Ograve: '带抑音符的拉丁文大写字母 O',
|
||||
Oacute: '带锐音符的拉丁文大写字母 O',
|
||||
Ocirc: '带扬抑符的拉丁文大写字母 O',
|
||||
Otilde: '带颚化符的拉丁文大写字母 O',
|
||||
Ouml: '带分音符的拉丁文大写字母 O',
|
||||
times: '乘号',
|
||||
Oslash: '带粗线的拉丁文大写字母 O',
|
||||
Ugrave: '带抑音符的拉丁文大写字母 U',
|
||||
Uacute: '带锐音符的拉丁文大写字母 U',
|
||||
Ucirc: '带扬抑符的拉丁文大写字母 U',
|
||||
Uuml: '带分音符的拉丁文大写字母 U',
|
||||
Yacute: '带抑音符的拉丁文大写字母 Y',
|
||||
THORN: '拉丁文大写字母 Thorn',
|
||||
szlig: '拉丁文小写字母清音 S',
|
||||
agrave: '带抑音符的拉丁文小写字母 A',
|
||||
aacute: '带锐音符的拉丁文小写字母 A',
|
||||
acirc: '带扬抑符的拉丁文小写字母 A',
|
||||
atilde: '带颚化符的拉丁文小写字母 A',
|
||||
auml: '带分音符的拉丁文小写字母 A',
|
||||
aring: '带上圆圈的拉丁文小写字母 A',
|
||||
aelig: '拉丁文小写字母 Ae',
|
||||
ccedil: '带下加符的拉丁文小写字母 C',
|
||||
egrave: '带抑音符的拉丁文小写字母 E',
|
||||
eacute: '带锐音符的拉丁文小写字母 E',
|
||||
ecirc: '带扬抑符的拉丁文小写字母 E',
|
||||
euml: '带分音符的拉丁文小写字母 E',
|
||||
igrave: '带抑音符的拉丁文小写字母 I',
|
||||
iacute: '带锐音符的拉丁文小写字母 I',
|
||||
icirc: '带扬抑符的拉丁文小写字母 I',
|
||||
iuml: '带分音符的拉丁文小写字母 I',
|
||||
eth: '拉丁文小写字母 Eth',
|
||||
ntilde: '带颚化符的拉丁文小写字母 N',
|
||||
ograve: '带抑音符的拉丁文小写字母 O',
|
||||
oacute: '带锐音符的拉丁文小写字母 O',
|
||||
ocirc: '带扬抑符的拉丁文小写字母 O',
|
||||
otilde: '带颚化符的拉丁文小写字母 O',
|
||||
ouml: '带分音符的拉丁文小写字母 O',
|
||||
divide: '除号',
|
||||
oslash: '带粗线的拉丁文小写字母 O',
|
||||
ugrave: '带抑音符的拉丁文小写字母 U',
|
||||
uacute: '带锐音符的拉丁文小写字母 U',
|
||||
ucirc: '带扬抑符的拉丁文小写字母 U',
|
||||
uuml: '带分音符的拉丁文小写字母 U',
|
||||
yacute: '带抑音符的拉丁文小写字母 Y',
|
||||
thorn: '拉丁文小写字母 Thorn',
|
||||
yuml: '带分音符的拉丁文小写字母 Y',
|
||||
OElig: '拉丁文大写连字 Oe',
|
||||
oelig: '拉丁文小写连字 Oe',
|
||||
'372': '带扬抑符的拉丁文大写字母 W',
|
||||
'374': '带扬抑符的拉丁文大写字母 Y',
|
||||
'373': '带扬抑符的拉丁文小写字母 W',
|
||||
'375': '带扬抑符的拉丁文小写字母 Y',
|
||||
sbquo: '单下 9 形引号',
|
||||
'8219': '单高横翻 9 形引号',
|
||||
bdquo: '双下 9 形引号',
|
||||
hellip: '水平省略号',
|
||||
trade: '商标标志',
|
||||
'9658': '实心右指指针',
|
||||
bull: '加重号',
|
||||
rarr: '向右箭头',
|
||||
rArr: '向右双线箭头',
|
||||
hArr: '左右双线箭头',
|
||||
diams: '实心方块纸牌',
|
||||
asymp: '约等于'
|
||||
});
|
||||
|
||||
@@ -1,72 +1,72 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file Special Character plugin
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.add( 'specialchar',
|
||||
{
|
||||
requires : [ 'dialog' ],
|
||||
|
||||
// List of available localizations.
|
||||
availableLangs : { cs:1, cy:1, de:1, el:1, en:1, eo:1, et:1, fa:1, fi:1, fr:1, he:1, hr:1, it:1, nb:1, nl:1, no:1, 'pt-br':1, tr:1, ug:1, 'zh-cn':1 },
|
||||
|
||||
init : function( editor )
|
||||
{
|
||||
var pluginName = 'specialchar',
|
||||
plugin = this;
|
||||
|
||||
// Register the dialog.
|
||||
CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/specialchar.js' );
|
||||
|
||||
editor.addCommand( pluginName,
|
||||
{
|
||||
exec : function()
|
||||
{
|
||||
var langCode = editor.langCode;
|
||||
langCode = plugin.availableLangs[ langCode ] ? langCode : 'en';
|
||||
|
||||
CKEDITOR.scriptLoader.load(
|
||||
CKEDITOR.getUrl( plugin.path + 'lang/' + langCode + '.js' ),
|
||||
function()
|
||||
{
|
||||
CKEDITOR.tools.extend( editor.lang.specialChar, plugin.langEntries[ langCode ] );
|
||||
editor.openDialog( pluginName );
|
||||
});
|
||||
},
|
||||
modes : { wysiwyg:1 },
|
||||
canUndo : false
|
||||
});
|
||||
|
||||
// Register the toolbar button.
|
||||
editor.ui.addButton( 'SpecialChar',
|
||||
{
|
||||
label : editor.lang.specialChar.toolbar,
|
||||
command : pluginName
|
||||
});
|
||||
}
|
||||
} );
|
||||
|
||||
/**
|
||||
* The list of special characters visible in the Special Character dialog window.
|
||||
* @type Array
|
||||
* @example
|
||||
* config.specialChars = [ '"', '’', [ '&custom;', 'Custom label' ] ];
|
||||
* config.specialChars = config.specialChars.concat( [ '"', [ '’', 'Custom label' ] ] );
|
||||
*/
|
||||
CKEDITOR.config.specialChars =
|
||||
[
|
||||
'!','"','#','$','%','&',"'",'(',')','*','+','-','.','/',
|
||||
'0','1','2','3','4','5','6','7','8','9',':',';',
|
||||
'<','=','>','?','@',
|
||||
'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O',
|
||||
'P','Q','R','S','T','U','V','W','X','Y','Z',
|
||||
'[',']','^','_','`',
|
||||
'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p',
|
||||
'q','r','s','t','u','v','w','x','y','z',
|
||||
'{','|','}','~',
|
||||
"€", "‘", "’", "“", "”", "–", "—", "¡", "¢", "£", "¤", "¥", "¦", "§", "¨", "©", "ª", "«", "¬", "®", "¯", "°", "²", "³", "´", "µ", "¶", "·", "¸", "¹", "º", "»", "¼", "½", "¾", "¿", "À", "Á", "Â", "Ã", "Ä", "Å", "Æ", "Ç", "È", "É", "Ê", "Ë", "Ì", "Í", "Î", "Ï", "Ð", "Ñ", "Ò", "Ó", "Ô", "Õ", "Ö", "×", "Ø", "Ù", "Ú", "Û", "Ü", "Ý", "Þ", "ß", "à", "á", "â", "ã", "ä", "å", "æ", "ç", "è", "é", "ê", "ë", "ì", "í", "î", "ï", "ð", "ñ", "ò", "ó", "ô", "õ", "ö", "÷", "ø", "ù", "ú", "û", "ü", "ý", "þ", "ÿ", "Œ", "œ", "Ŵ", "Ŷ", "ŵ", "ŷ", "‚", "‛", "„", "…", "™", "►", "•", "→", "⇒", "⇔", "♦", "≈"
|
||||
];
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file Special Character plugin
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.add( 'specialchar',
|
||||
{
|
||||
requires : [ 'dialog' ],
|
||||
|
||||
// List of available localizations.
|
||||
availableLangs : { cs:1, cy:1, de:1, el:1, en:1, eo:1, et:1, fa:1, fi:1, fr:1, he:1, hr:1, it:1, nb:1, nl:1, no:1, 'pt-br':1, tr:1, ug:1, 'zh-cn':1 },
|
||||
|
||||
init : function( editor )
|
||||
{
|
||||
var pluginName = 'specialchar',
|
||||
plugin = this;
|
||||
|
||||
// Register the dialog.
|
||||
CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/specialchar.js' );
|
||||
|
||||
editor.addCommand( pluginName,
|
||||
{
|
||||
exec : function()
|
||||
{
|
||||
var langCode = editor.langCode;
|
||||
langCode = plugin.availableLangs[ langCode ] ? langCode : 'en';
|
||||
|
||||
CKEDITOR.scriptLoader.load(
|
||||
CKEDITOR.getUrl( plugin.path + 'lang/' + langCode + '.js' ),
|
||||
function()
|
||||
{
|
||||
CKEDITOR.tools.extend( editor.lang.specialChar, plugin.langEntries[ langCode ] );
|
||||
editor.openDialog( pluginName );
|
||||
});
|
||||
},
|
||||
modes : { wysiwyg:1 },
|
||||
canUndo : false
|
||||
});
|
||||
|
||||
// Register the toolbar button.
|
||||
editor.ui.addButton( 'SpecialChar',
|
||||
{
|
||||
label : editor.lang.specialChar.toolbar,
|
||||
command : pluginName
|
||||
});
|
||||
}
|
||||
} );
|
||||
|
||||
/**
|
||||
* The list of special characters visible in the Special Character dialog window.
|
||||
* @type Array
|
||||
* @example
|
||||
* config.specialChars = [ '"', '’', [ '&custom;', 'Custom label' ] ];
|
||||
* config.specialChars = config.specialChars.concat( [ '"', [ '’', 'Custom label' ] ] );
|
||||
*/
|
||||
CKEDITOR.config.specialChars =
|
||||
[
|
||||
'!','"','#','$','%','&',"'",'(',')','*','+','-','.','/',
|
||||
'0','1','2','3','4','5','6','7','8','9',':',';',
|
||||
'<','=','>','?','@',
|
||||
'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O',
|
||||
'P','Q','R','S','T','U','V','W','X','Y','Z',
|
||||
'[',']','^','_','`',
|
||||
'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p',
|
||||
'q','r','s','t','u','v','w','x','y','z',
|
||||
'{','|','}','~',
|
||||
"€", "‘", "’", "“", "”", "–", "—", "¡", "¢", "£", "¤", "¥", "¦", "§", "¨", "©", "ª", "«", "¬", "®", "¯", "°", "²", "³", "´", "µ", "¶", "·", "¸", "¹", "º", "»", "¼", "½", "¾", "¿", "À", "Á", "Â", "Ã", "Ä", "Å", "Æ", "Ç", "È", "É", "Ê", "Ë", "Ì", "Í", "Î", "Ï", "Ð", "Ñ", "Ò", "Ó", "Ô", "Õ", "Ö", "×", "Ø", "Ù", "Ú", "Û", "Ü", "Ý", "Þ", "ß", "à", "á", "â", "ã", "ä", "å", "æ", "ç", "è", "é", "ê", "ë", "ì", "í", "î", "ï", "ð", "ñ", "ò", "ó", "ô", "õ", "ö", "÷", "ø", "ù", "ú", "û", "ü", "ý", "þ", "ÿ", "Œ", "œ", "Ŵ", "Ŷ", "ŵ", "ŷ", "‚", "‛", "„", "…", "™", "►", "•", "→", "⇒", "⇔", "♦", "≈"
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user