code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231
values | license stringclasses 13
values | size int64 1 2.01M |
|---|---|---|---|---|---|
/*
* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
function getListElement( editor, listTag )
{
var range;
try { range = editor.getSelection().getRanges()[ 0 ]; }
catch( e ) { return ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js | JavaScript | gpl3 | 6,082 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'docprops',
{
init : function( editor )
{
var cmd = new CKEDITOR.dialogCommand( 'docProps' );
// Only applicable on full page mode.
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/docprops/plugin.js | JavaScript | gpl3 | 611 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'docProps', function( editor )
{
var lang = editor.lang.docprops,
langCommon = editor.lang.common,
metaHash = {};
function getDialogVa... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/docprops/dialogs/docprops.js | JavaScript | gpl3 | 20,837 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
var cssStyle = CKEDITOR.htmlParser.cssStyle,
cssLength = CKEDITOR.tools.cssLength;
var cssLengthRegex = /^((?:\d*(?:\.\d+))|(?:\d+))(.*)?$/i;
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/fakeobjects/plugin.js | JavaScript | gpl3 | 5,160 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Horizontal Page Break
*/
// Register a plugin named "pagebreak".
CKEDITOR.plugins.add( 'pagebreak',
{
init : function( editor )
{
// Registe... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/pagebreak/plugin.js | JavaScript | gpl3 | 4,674 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
// #### checkSelectionChange : START
// The selection change check basically saves the element parent tree of
// the current node and check it on... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/selection/plugin.js | JavaScript | gpl3 | 58,551 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'popup' );
CKEDITOR.tools.extend( CKEDITOR.editor.prototype,
{
/**
* Opens Browser in a popup. The "width" and "height" parameters accept... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/popup/plugin.js | JavaScript | gpl3 | 2,137 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview The "elementspath" plugin. It shows all elements in the DOM
* parent tree relative to the current selection in the editing area.
*/
(funct... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/elementspath/plugin.js | JavaScript | gpl3 | 6,519 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
var guardElements = { table:1, ul:1, ol:1, blockquote:1, div:1 },
directSelectionGuardElements = {},
// All guard elements which can have a direc... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/bidi/plugin.js | JavaScript | gpl3 | 10,441 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
// Register a templates definition set named "default".
CKEDITOR.addTemplates( 'default',
{
// The name of sub folder which hold the shortcut preview images of the
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/templates/templates/default.js | JavaScript | gpl3 | 2,520 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
var doc = CKEDITOR.document;
CKEDITOR.dialog.add( 'templates', function( editor )
{
// Constructs the HTML view of the specified templates d... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/templates/dialogs/templates.js | JavaScript | gpl3 | 6,361 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview Plugin definition for the a11yhelp, which provides a dialog
* with accessibility related help.
*/
(function()
{
var pluginName = 'a11yhe... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/plugin.js | JavaScript | gpl3 | 1,306 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'cy',
{
accessibilityHelp :
{
title : 'Canllawiau Hygyrchedd',
contents : 'Cynnwys Cymorth. I gau y deialog hwn, pwyswc... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/cy.js | JavaScript | gpl3 | 3,411 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'tr',
{
accessibilityHelp :
{
title : 'Erişilebilirlik Talimatları',
contents : 'Yardım içeriği. Bu pencereyi kapatmak ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/tr.js | JavaScript | gpl3 | 3,618 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'nb',
{
accessibilityHelp :
{
title : 'Instruksjoner for tilgjengelighet',
contents : 'Innhold for hjelp. Trykk ESC for... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/nb.js | JavaScript | gpl3 | 3,372 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'fr',
{
accessibilityHelp :
{
title : 'Instructions pour l\'accessibilité',
contents : 'Contenu de l\'aide. Pour fermer... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/fr.js | JavaScript | gpl3 | 4,298 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'fa',
{
accessibilityHelp :
{
title : 'دستورالعملهای دسترسی',
contents : 'راهنمای فهرست مطالب. برای بستن این کادر محاور... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/fa.js | JavaScript | gpl3 | 4,588 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'eo',
{
accessibilityHelp :
{
title : 'Uzindikoj pri atingeblo',
contents : 'Helpilenhavo. Por fermi tiun dialogon, pre... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/eo.js | JavaScript | gpl3 | 3,814 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'he',
{
accessibilityHelp :
{
title : 'הוראות נגישות',
contents : 'הוראות נגישות. לסגירה לחץ אסקייפ (ESC).',
legend ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/he.js | JavaScript | gpl3 | 4,002 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'de',
{
accessibilityHelp :
{
title : 'Barrierefreiheitinformationen',
contents : 'Hilfeinhalt. Um den Dialog zu schlie... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/de.js | JavaScript | gpl3 | 3,531 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'no',
{
accessibilityHelp :
{
title : 'Instruksjoner for tilgjengelighet',
contents : 'Innhold for hjelp. Trykk ESC for... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/no.js | JavaScript | gpl3 | 3,372 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'el',
{
accessibilityHelp :
{
title : 'Οδηγίες Προσβασιμότητας',
contents : 'Περιεχόμενα Βοήθειας. Πατήστε ESC για κλεί... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/el.js | JavaScript | gpl3 | 3,874 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'vi',
{
accessibilityHelp :
{
title : 'Accessibility Instructions', // MISSING
contents : 'Nội dung Hỗ trợ. Nhấn ESC để... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/vi.js | JavaScript | gpl3 | 3,535 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'mk',
{
accessibilityHelp :
{
title : 'Инструкции за пристапност',
contents : 'Содржина на делот за помош. За да го зат... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/mk.js | JavaScript | gpl3 | 3,560 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'it',
{
accessibilityHelp :
{
title : 'Istruzioni di Accessibilità',
contents : 'Contenuti di Aiuto. Per chiudere quest... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/it.js | JavaScript | gpl3 | 3,726 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'nl',
{
accessibilityHelp :
{
title : 'Toegankelijkheidsinstructies',
contents : 'Help inhoud. Druk op ESC om dit dialo... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/nl.js | JavaScript | gpl3 | 3,520 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'da',
{
accessibilityHelp :
{
title : 'Accessibility Instructions', // MISSING
contents : 'Help Contents. To close this... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/da.js | JavaScript | gpl3 | 3,357 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'gu',
{
accessibilityHelp :
{
title : 'એક્ક્ષેબિલિટી ની વિગતો',
contents : 'હેલ્પ. આ બંધ કરવા ESC દબાવો.',
legend :
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/gu.js | JavaScript | gpl3 | 3,542 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'cs',
{
accessibilityHelp :
{
title : 'Instrukce pro přístupnost',
contents : 'Obsah nápovědy. Pro uzavření tohoto dial... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/cs.js | JavaScript | gpl3 | 3,614 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'fi',
{
accessibilityHelp :
{
title : 'Saavutettavuus ohjeet',
contents : 'Ohjeen sisällöt. Sulkeaksesi tämän dialogin ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/fi.js | JavaScript | gpl3 | 3,613 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'ug',
{
accessibilityHelp :
{
title : 'قوشۇمچە چۈشەندۈرۈش',
contents : 'ياردەم مەزمۇنى. بۇ سۆزلەشكۈنى ياپماقچى بولسىڭىز... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/ug.js | JavaScript | gpl3 | 3,928 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'zh-cn',
{
accessibilityHelp :
{
title : '辅助说明',
contents : '帮助内容。要关闭此对话框请按 ESC 键。',
legend :
[
{
name :... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/zh-cn.js | JavaScript | gpl3 | 3,013 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'a11yhelp', 'en',
{
accessibilityHelp :
{
title : 'Accessibility Instructions',
contents : 'Help Contents. To close this dialog pre... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/lang/en.js | JavaScript | gpl3 | 3,414 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'a11yHelp', function( editor )
{
var lang = editor.lang.accessibilityHelp,
id = CKEDITOR.tools.getNextId();
// CharCode <-> KeyChar.
va... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js | JavaScript | gpl3 | 5,456 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'link',
{
init : function( editor )
{
// Add the link and unlink buttons.
editor.addCommand( 'link', new CKEDITOR.dialogCommand( 'link'... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/link/plugin.js | JavaScript | gpl3 | 10,654 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'anchor', function( editor )
{
// Function called in onShow to load selected element.
var loadElements = function( element )
{
this._.sel... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/link/dialogs/anchor.js | JavaScript | gpl3 | 3,717 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'link', function( editor )
{
var plugin = CKEDITOR.plugins.link;
// Handles the event when the "Target" selection box is changed.
var target... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/link/dialogs/link.js | JavaScript | gpl3 | 39,814 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Increse and decrease indent commands.
*/
(function()
{
var listNodeNames = { ol : 1, ul : 1 },
isNotWhitespaces = CKEDITOR.dom.walker.whitespac... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/indent/plugin.js | JavaScript | gpl3 | 16,142 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Horizontal Rule plugin.
*/
(function()
{
var horizontalruleCmd =
{
canUndo : false, // The undo snapshot will be handled by 'insertElement... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/horizontalrule/plugin.js | JavaScript | gpl3 | 1,290 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Print Plugin
*/
CKEDITOR.plugins.add( 'print',
{
init : function( editor )
{
var pluginName = 'print';
// Register the command.
var c... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/print/plugin.js | JavaScript | gpl3 | 912 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview The default editing block plugin, which holds the editing area
* and source view.
*/
(function()
{
// This is a semaphore used to avoid... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/editingblock/plugin.js | JavaScript | gpl3 | 7,289 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'menu',
{
beforeInit : function( editor )
{
var groups = editor.config.menu_groups.split( ',' ),
groupsOrder = editor._.menuGroups = {... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/menu/plugin.js | JavaScript | gpl3 | 15,967 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Horizontal Page Break
*/
// Register a plugin named "newpage".
CKEDITOR.plugins.add( 'newpage',
{
init : function( editor )
{
editor.addComm... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/newpage/plugin.js | JavaScript | gpl3 | 1,244 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'htmlwriter' );
/**
* Class used to write HTML data.
* @constructor
* @example
* var writer = new CKEDITOR.htmlWriter();
* writer.ope... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/htmlwriter/plugin.js | JavaScript | gpl3 | 8,463 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Preview plugin.
*/
(function()
{
var previewCmd =
{
modes : { wysiwyg:1, source:1 },
canUndo : false,
readOnly : 1,
exec : function(... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/preview/plugin.js | JavaScript | gpl3 | 2,968 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'uicolor',
{
requires : [ 'dialog' ],
lang : [ 'bg', 'cs', 'cy', 'da', 'de', 'el', 'en', 'eo', 'et', 'fa', 'fi', 'fr', 'he', 'hr', 'it', 'mk'... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/plugin.js | JavaScript | gpl3 | 1,117 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'cy',
{
uicolor :
{
title : 'Dewisydd Lliwiau\'r UI',
preview : 'Rhagolwg Byw',
config : 'Gludwch y llinyn hwn i\'ch ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/cy.js | JavaScript | gpl3 | 402 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'tr',
{
uicolor :
{
title : 'UI Renk Seçicisi',
preview : 'Canlı önizleme',
config : 'Bu dizeyi config.js dosyasının ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/tr.js | JavaScript | gpl3 | 418 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'nb',
{
uicolor :
{
title : 'Fargevelger for brukergrensesnitt',
preview : 'Forhåndsvisning i sanntid',
config : 'Lim... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/nb.js | JavaScript | gpl3 | 423 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'fr',
{
uicolor :
{
title : 'UI Sélecteur de couleur',
preview : 'Aperçu',
config : 'Collez cette chaîne de caractère... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/fr.js | JavaScript | gpl3 | 422 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'fa',
{
uicolor :
{
title : 'انتخاب رنگ UI',
preview : 'پیشنمایش زنده',
config : 'این رشته را در فایل config.js خود ب... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/fa.js | JavaScript | gpl3 | 458 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'eo',
{
uicolor :
{
title : 'UI Kolorselektilo',
preview : 'Vidigi la aspekton',
config : 'Gluu tiun signoĉenon en vi... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/eo.js | JavaScript | gpl3 | 399 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'uk',
{
uicolor :
{
title : 'Color Picker Інтерфейс',
preview : 'Перегляд наживо',
config : 'Вставте цей рядок у файл... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/uk.js | JavaScript | gpl3 | 457 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'he',
{
uicolor :
{
title : 'בחירת צבע ממשק משתמש',
preview : 'תצוגה מקדימה',
config : 'הדבק את הטקסט הבא לתוך הקובץ ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/he.js | JavaScript | gpl3 | 461 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'de',
{
uicolor :
{
title : 'UI Pipette',
preview : 'Live-Vorschau',
config : 'Fügen Sie diese Zeichenfolge in die \'... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/de.js | JavaScript | gpl3 | 397 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'no',
{
uicolor :
{
title : 'Fargevelger for brukergrensesnitt',
preview : 'Forhåndsvisning i sanntid',
config : 'Lim... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/no.js | JavaScript | gpl3 | 423 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'el',
{
uicolor :
{
title : 'Διεπαφή Επιλογέα Χρωμάτων',
preview : 'Ζωντανή Προεπισκόπηση',
config : 'Επικολλήστε αυτ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/el.js | JavaScript | gpl3 | 521 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'vi',
{
uicolor :
{
title : 'Giao diện người dùng Color Picker',
preview : 'Xem trước trực tiếp',
config : 'Dán chuỗi... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/vi.js | JavaScript | gpl3 | 443 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'mk',
{
uicolor :
{
title : 'Палета со бои',
preview : 'Преглед',
config : 'Залепи го овој текст во config.js датотек... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/mk.js | JavaScript | gpl3 | 461 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'it',
{
uicolor :
{
title : 'Selettore Colore UI',
preview : 'Anteprima Live',
config : 'Incolla questa stringa nel t... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/it.js | JavaScript | gpl3 | 396 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'nl',
{
uicolor :
{
title : 'UI Kleurenkiezer',
preview : 'Live voorbeeld',
config : 'Plak deze tekst in jouw config.... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/nl.js | JavaScript | gpl3 | 393 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'da',
{
uicolor :
{
title : 'Brugerflade på farvevælger',
preview : 'Vis liveeksempel',
config : 'Indsæt denne streng... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/da.js | JavaScript | gpl3 | 404 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'et',
{
uicolor :
{
title : 'Värvivalija kasutajaliides',
preview : 'Automaatne eelvaade',
config : 'Aseta see sõne o... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/et.js | JavaScript | gpl3 | 405 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'pl',
{
uicolor :
{
title : 'Wybór koloru interfejsu',
preview : 'Podgląd na żywo',
config : 'Wklej poniższy łańcuch ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/pl.js | JavaScript | gpl3 | 418 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'cs',
{
uicolor :
{
title : 'Výběr barvy rozhraní',
preview : 'Živý náhled',
config : 'Vložte tento řetězec do Vašeho... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/cs.js | JavaScript | gpl3 | 408 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'hr',
{
uicolor :
{
title : 'UI odabir boja',
preview : 'Pregled uživo',
config : 'Zalijepite ovaj tekst u Vašu confi... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/hr.js | JavaScript | gpl3 | 398 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'fi',
{
uicolor :
{
title : 'Käyttöliittymän värivalitsin',
preview : 'Esikatsele',
config : 'Liitä tämä merkkijono c... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/fi.js | JavaScript | gpl3 | 409 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'ug',
{
uicolor :
{
title : 'ئىشلەتكۈچى ئارايۈزى رەڭ تاللىغۇچ',
preview : 'شۇئان ئالدىن كۆزىتىش',
config : 'بۇ ھەرپ ت... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/ug.js | JavaScript | gpl3 | 514 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'zh-cn',
{
uicolor :
{
title : '用户界面颜色选择器',
preview : '即时预览',
config : '粘贴此字符串到你的 config.js 文件',
predefined : '预定义... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/zh-cn.js | JavaScript | gpl3 | 397 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'bg',
{
uicolor :
{
title : 'ПИ избор на цвят',
preview : 'Преглед',
config : 'Вмъкнете този низ във Вашия config.js ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/bg.js | JavaScript | gpl3 | 457 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'uicolor', 'en',
{
uicolor :
{
title : 'UI Color Picker',
preview : 'Live preview',
config : 'Paste this string into your config... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/lang/en.js | JavaScript | gpl3 | 383 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'uicolor', function( editor )
{
var dialog, picker, pickerContents,
// Actual UI color value.
uiColor = editor.getUiColor(),
pickerId =... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js | JavaScript | gpl3 | 5,808 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview Plugin for making iframe based dialogs.
*/
CKEDITOR.plugins.add( 'iframedialog',
{
requires : [ 'dialog' ],
onLoad : function()
{
/... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/iframedialog/plugin.js | JavaScript | gpl3 | 5,719 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'panelbutton',
{
requires : [ 'button' ],
onLoad : function()
{
function clickFn( editor )
{
var _ = this._;
if ( _.state =... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/panelbutton/plugin.js | JavaScript | gpl3 | 3,125 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
function addCombo( editor, comboName, styleType, lang, entries, defaultLabel, styleDefinition )
{
var config = editor.config;
// Gets the lis... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/font/plugin.js | JavaScript | gpl3 | 7,254 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview Defines the "virtual" dialog, dialog content and dialog button
* definition classes.
*/
/**
* The definition of a dialog window.
* <div... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/dialog/dialogDefinition.js | JavaScript | gpl3 | 31,825 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview The floating dialog plugin.
*/
/**
* No resize for this dialog.
* @constant
*/
CKEDITOR.DIALOG_RESIZE_NONE = 0;
/**
* Only allow ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/dialog/plugin.js | JavaScript | gpl3 | 101,332 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'styles',
{
requires : [ 'selection' ],
init : function( editor )
{
// This doesn't look like correct, but it's the safest way to proper... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/styles/plugin.js | JavaScript | gpl3 | 53,337 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.stylesSet.add( 'default',
[
/* Block Styles */
// These styles are already available in the "Format" combo, so they are
// not needed here by default.... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/styles/styles/default.js | JavaScript | gpl3 | 2,966 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'format',
{
requires : [ 'richcombo', 'styles' ],
init : function( editor )
{
var config = editor.config,
lang = editor.lang.forma... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/format/plugin.js | JavaScript | gpl3 | 5,708 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview Undo/Redo system for saving shapshot for document modification
* and other recordable changes.
*/
(function()
{
CKEDITOR.plugins.add( '... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/undo/plugin.js | JavaScript | gpl3 | 15,459 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Justify commands.
*/
(function()
{
function getAlignment( element, useComputedState )
{
useComputedState = useComputedState === undefined || ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/justify/plugin.js | JavaScript | gpl3 | 7,067 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview The "show border" plugin. The command display visible outline
* border line around all table elements if table doesn't have a none-zero 'border'... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/showborders/plugin.js | JavaScript | gpl3 | 5,800 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview Spell Check As You Type (SCAYT).
* Button name : Scayt.
*/
(function()
{
var commandName = 'scaytcheck',
openPage = '';
// Check... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/scayt/plugin.js | JavaScript | gpl3 | 29,975 |
a
{
text-decoration:none;
padding: 2px 4px 4px 6px;
display : block;
border-width: 1px;
border-style: solid;
margin : 0px;
}
a.cke_scayt_toogle:hover,
a.cke_scayt_toogle:focus,
a.cke_scayt_toogle:active
{
border-color: #316ac5;
background-color: #dff1ff;
color : #000;
cursor: pointer;
marg... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/scayt/dialogs/toolbar.css | CSS | gpl3 | 1,302 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'scaytcheck', function( editor )
{
var firstLoad = true,
captions,
doc = CKEDITOR.document,
editorName = editor.name,
tags = CKEDITO... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/scayt/dialogs/options.js | JavaScript | gpl3 | 16,191 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'devtools',
{
lang : [ 'bg', 'cs', 'cy', 'da', 'de', 'el', 'en', 'eo', 'et', 'fa', 'fi', 'fr', 'gu', 'he', 'hr', 'it', 'nb', 'nl', 'no', 'pl', ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/plugin.js | JavaScript | gpl3 | 5,816 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'cy',
{
devTools :
{
title : 'Gwybodaeth am yr Elfen',
dialogName : 'Enw ffenestr y deialog',
tabName : 'Enw\'r ta... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/cy.js | JavaScript | gpl3 | 399 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'tr',
{
devTools :
{
title : 'Eleman Bilgisi',
dialogName : 'İletişim pencere ismi',
tabName : 'Sekme adı',
ele... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/tr.js | JavaScript | gpl3 | 390 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'nb',
{
devTools :
{
title : 'Elementinformasjon',
dialogName : 'Navn på dialogvindu',
tabName : 'Navn på fane',
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/nb.js | JavaScript | gpl3 | 393 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'fr',
{
devTools :
{
title : 'Information sur l\'élément',
dialogName : 'Nom de la fenêtre de dialogue',
tabName :... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/fr.js | JavaScript | gpl3 | 433 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'fa',
{
devTools :
{
title : 'اطلاعات عنصر',
dialogName : 'نام پنجره محاورهای',
tabName : 'نام برگه',
elementId... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/fa.js | JavaScript | gpl3 | 419 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'eo',
{
devTools :
{
title : 'Informo pri la elemento',
dialogName : 'Nomo de la dialogfenestro',
tabName : 'Lange... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/eo.js | JavaScript | gpl3 | 415 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'uk',
{
devTools :
{
title : 'Відомості про Елемент',
dialogName : 'Заголовок діалогового вікна',
tabName : 'Назва... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/uk.js | JavaScript | gpl3 | 504 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'he',
{
devTools :
{
title : 'מידע על האלמנט',
dialogName : 'שם הדיאלוג',
tabName : 'שם הטאב',
elementId : 'ID ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/he.js | JavaScript | gpl3 | 418 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'de',
{
devTools :
{
title : 'Elementinformation',
dialogName : 'Dialogfenstername',
tabName : 'Reitername',
el... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/de.js | JavaScript | gpl3 | 386 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'no',
{
devTools :
{
title : 'Elementinformasjon',
dialogName : 'Navn på dialogvindu',
tabName : 'Navn på fane',
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/no.js | JavaScript | gpl3 | 393 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'el',
{
devTools :
{
title : 'Πληροφορίες Στοιχείου',
dialogName : 'Όνομα παραθύρου διαλόγου',
tabName : 'Όνομα κα... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/el.js | JavaScript | gpl3 | 485 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'vi',
{
devTools :
{
title : 'Thông tin thành ph',
dialogName : 'Tên hộp tho',
tabName : 'Tên th',
elementId : ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/vi.js | JavaScript | gpl3 | 391 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'devtools', 'it',
{
devTools :
{
title : 'Informazioni elemento',
dialogName : 'Nome finestra di dialogo',
tabName : 'Nome Tab... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/devtools/lang/it.js | JavaScript | gpl3 | 398 |