mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-03 16:25:59 +00:00
18 lines
571 B
JavaScript
Executable File
18 lines
571 B
JavaScript
Executable File
/**
|
|
* @author: Önder Ceylan <onderceylan@gmail.com>
|
|
* @copyright Copyright (c) 2013 - Önder Ceylan. All rights reserved.
|
|
* @license Licensed under the terms of GPL, LGPL and MPL licenses.
|
|
* @version 1.0
|
|
*
|
|
* Date: 5/10/13
|
|
* Time: 9:45 AM
|
|
*/
|
|
|
|
// set CKeditor lang
|
|
CKEDITOR.plugins.setLang( 'texttransform', 'en', {
|
|
transformTextSwitchLabel: 'Transform Text Switcher',
|
|
transformTextToLowercaseLabel: 'Transform Text to Lowercase',
|
|
transformTextToUppercaseLabel: 'Transform Text to Uppercase',
|
|
transformTextCapitalizeLabel: 'Capitalize Text'
|
|
});
|