text
stringlengths
9
39.2M
dir
stringlengths
26
295
lang
stringclasses
185 values
created_date
timestamp[us]
updated_date
timestamp[us]
repo_name
stringlengths
1
97
repo_full_name
stringlengths
7
106
star
int64
1k
183k
len_tokens
int64
1
13.8M
```css /** * For licensing, see LICENSE.md or path_to_url */ @media (max-width: 900px) { .global-is-mobile-hidden { display: none !important; } } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { display: block; } body, html { margin: 0; padding: 0; font: ...
/content/code_sandbox/system/static/plugins/ckeditor/samples/css/samples.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
14,017
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <!--[if IE 8]><html class="ie8"><![endif]--> <!--[if gt IE 8]><html><![endif]--> <!--[if !IE]><!--><html><!--<![endif]--> <head> <meta charset="utf-8"> <title>Toolbar Configurator</title> <script src="../../ckeditor.js"></script> <script>...
/content/code_sandbox/system/static/plugins/ckeditor/samples/toolbarconfigurator/index.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
3,804
```css @font-face { font-family: 'fontello'; src: url('../font/fontello.eot?89024372'); src: url('../font/fontello.eot?89024372#iefix') format('embedded-opentype'), url('../font/fontello.woff?89024372') format('woff'), url('../font/fontello.ttf?89024372') format('truetype'), url('../font/font...
/content/code_sandbox/system/static/plugins/ckeditor/samples/toolbarconfigurator/css/fontello.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
484
```javascript (function(){function e(a){l.call(this,a);this.hintContainer=this.codeContainer=null}var l=ToolbarConfigurator.AbstractToolbarModifier,g=ToolbarConfigurator.FullToolbarEditor;ToolbarConfigurator.ToolbarTextModifier=e;e.prototype=Object.create(l.prototype);e.prototype._onInit=function(a,d){l.prototype._onIn...
/content/code_sandbox/system/static/plugins/ckeditor/samples/toolbarconfigurator/js/toolbartextmodifier.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
2,064
```javascript window.ToolbarConfigurator={}; (function(){function e(){this.instanceid="fte"+CKEDITOR.tools.getNextId();this.textarea=new CKEDITOR.dom.element("textarea");this.textarea.setAttributes({id:this.instanceid,name:this.instanceid,contentEditable:!0});this.editorInstance=this.buttons=null}ToolbarConfigurator.Fu...
/content/code_sandbox/system/static/plugins/ckeditor/samples/toolbarconfigurator/js/fulltoolbareditor.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,072
```javascript "function"!=typeof Object.create&&function(){var a=function(){};Object.create=function(b){if(1<arguments.length)throw Error("Second argument not supported");if(null===b)throw Error("Cannot set a null [[Prototype]]");if("object"!=typeof b)throw TypeError("Argument must be an object");a.prototype=b;return n...
/content/code_sandbox/system/static/plugins/ckeditor/samples/toolbarconfigurator/js/abstracttoolbarmodifier.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,648
```javascript (function(){function d(a,b){l.call(this,a,b);this.actualConfig=this.originalConfig=this.removedButtons=null;this.emptyVisible=!1;this.state="edit";this.toolbarButtons=[{text:{active:"Hide empty toolbar groups",inactive:"Show empty toolbar groups"},group:"edit",position:"left",cssClass:"button-a-soft",clic...
/content/code_sandbox/system/static/plugins/ckeditor/samples/toolbarconfigurator/js/toolbarmodifier.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
4,644
```javascript /** * For licensing, see LICENSE.md or path_to_url */ /* exported initSample */ if ( CKEDITOR.env.ie && CKEDITOR.env.version < 9 ) CKEDITOR.tools.enableHtml5Elements( document ); // The trick to keep the editor in the sample quite small // unless user specified own height. CKEDITOR.config.height = 1...
/content/code_sandbox/system/static/plugins/ckeditor/samples/js/sample.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
389
```javascript /* For licensing, see LICENSE.md or path_to_url */ var SF=function(){function d(a){return(a=a.attributes?a.attributes.getNamedItem("class"):null)?a.value.split(" "):[]}function c(a){var e=document.createAttribute("class");e.value=a.join(" ");return e}var b={attachListener:function(a,e,b){if(a.addEventLis...
/content/code_sandbox/system/static/plugins/ckeditor/samples/js/sf.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,782
```javascript /** * For licensing, see LICENSE.md or path_to_url */ // Tool scripts for the sample pages. // This file can be ignored and is not required to make use of CKEditor. ( function() { CKEDITOR.on( 'instanceReady', function( ev ) { // Check for sample compliance. var editor = ev.editor, meta = CKED...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/sample.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
429
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>UI Color Picker &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link rel="stylesheet" href="sample.css"> </head> <body> <h1 class="samples"> <a href="index.html">CK...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/uicolor.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
685
```php <?php /* <body><pre> your_sha256_hash--------------------------- CKEditor - Posted Data We are sorry, but your Web server does not support the PHP language used in this script. Please note that CKEditor can be used with any other server-side language than just PHP. To save the content created with CKE...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/sample_posteddata.php
php
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
132
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Replace Textareas by Class Name &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link rel="stylesheet" href="sample.css"> </head> <body> <h1 class="samples"> <a href...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/replacebyclass.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,911
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>CKEditor Samples</title> <link rel="stylesheet" href="sample.css"> </head> <body> <h1 class="samples"> CKEditor Samples </h1> <div class="warning deprecated"> These samples are not maintai...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/index.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,484
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>User Interface Globalization &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <script src="assets/uilanguages/languages.js"></script> <link rel="stylesheet" href="sampl...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/uilanguages.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,105
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>TAB Key-Based Navigation &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link href="sample.css" rel="stylesheet"> <style> .cke_focused, .cke_editable.cke_focused...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/tabindex.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
613
```css /* For licensing, see LICENSE.md or path_to_url */ html, body, h1, h2, h3, h4, h5, h6, div, span, blockquote, p, address, form, fieldset, img, ul, ol, dl, dt, dd, li, hr, table, td, th, strong, em, sup, sub, dfn, ins, del, q, cite, var, samp, code, kbd, tt, pre { line-height: 1.5; } body { padding: 10px 30px...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/sample.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,568
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>API Usage &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link href="sample.css" rel="stylesheet"> <script> // The instanceReady event is fired, when an instance of ...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/api.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,764
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Append To Page Element Using JavaScript Code &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link rel="stylesheet" href="sample.css"> </head> <body> <h1 class="sample...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/appendto.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
538
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Replace Textarea with Inline Editor &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link href="sample.css" rel="stylesheet"> <style> /* Style the CKEditor element ...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/inlinetextarea.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,351
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Inline Editing by Code &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link href="sample.css" rel="stylesheet"> <style> #editable { padding: 10px; float: l...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/inlinebycode.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,550
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Replace Textarea by Code &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link href="sample.css" rel="stylesheet"> </head> <body> <h1 class="samples"> <a href="index...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/replacebycode.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,863
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Replace DIV &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link href="sample.css" rel="stylesheet"> <style> div.editable { border: solid 2px transparent; ...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/divreplace.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,292
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Ajax &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link rel="stylesheet" href="sample.css"> <script> var editor, html = ''; function createEditor() { if ( ...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/ajax.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
639
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Data Filtering &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link rel="stylesheet" href="sample.css"> <script> // Remove advanced tabs for all editors. CKEDITOR...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/datafiltering.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
13,183
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>jQuery Adapter &mdash; CKEditor Sample</title> <script src="path_to_url"></script> <script src="../../ckeditor.js"></script> <script src="../../adapters/jquery.js"></script> <link href="sample...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/jquery.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,977
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>XHTML Compliant Output &mdash; CKEditor Sample</title> <meta name="ckeditor-sample-required-plugins" content="sourcearea"> <script src="../../ckeditor.js"></script> <script src="sample.js"></sc...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/xhtmlstyle.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,881
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Massive inline editing &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <script> // This code is generally not necessary, but it is here to demonstrate // how to cu...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/inlineall.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
3,127
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Using the CKEditor Read-Only API &mdash; CKEditor Sample</title> <script src="../../ckeditor.js"></script> <link rel="stylesheet" href="sample.css"> <script> var editor; // The instanceRe...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/readonly.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
712
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Using Magicline plugin &mdash; CKEditor Sample</title> <script src="../../../ckeditor.js"></script> <link rel="stylesheet" href="../../../samples/old/sample.css"> <meta name="ckeditor-sample-na...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/magicline/magicline.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
2,534
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Using API to Customize Dialog Windows &mdash; CKEditor Sample</title> <script src="../../../ckeditor.js"></script> <link rel="stylesheet" href="../../../samples/old/sample.css"> <meta name="cke...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/dialog/dialog.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,900
```javascript /** * For licensing, see LICENSE.md or path_to_url */ CKEDITOR.dialog.add( 'myDialog', function() { return { title: 'My Dialog', minWidth: 400, minHeight: 200, contents: [ { id: 'tab1', label: 'First Tab', title: 'First Tab', elements: [ { id: 'input1', type...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/dialog/assets/my_dialog.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
241
```php <!DOCTYPE html> <?php /* For licensing, see LICENSE.md or path_to_url */ ?> <html> <head> <meta charset="utf-8"> <title>Sample &mdash; CKEditor</title> <link rel="stylesheet" href="sample.css"> </head> <body> <h1 class="samples"> CKEditor &mdash; Posted Data </h1> <table border="1" cellspacing="0" id="ou...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/assets/posteddata.php
php
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
373
```css /* * For licensing, see LICENSE.md or path_to_url * * Styles used by the XHTML 1.1 sample page (xhtml.html). */ /** * Basic definitions for the editing area. */ body { font-family: Arial, Verdana, sans-serif; font-size: 80%; color: #000000; background-color: #ffffff; padding: 5px; margin: 0px; } /*...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
566
```javascript /* For licensing, see LICENSE.md or path_to_url */ var CKEDITOR_LANGS=function(){var c={af:"Afrikaans",ar:"Arabic",bg:"Bulgarian",bn:"Bengali/Bangla",bs:"Bosnian",ca:"Catalan",cs:"Czech",cy:"Welsh",da:"Danish",de:"German","de-ch":"German (Switzerland)",el:"Greek",en:"English","en-au":"English (Australia)...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/assets/uilanguages/languages.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
459
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>ENTER Key Configuration &mdash; CKEditor Sample</title> <script src="../../../ckeditor.js"></script> <link href="../../../samples/old/sample.css" rel="stylesheet"> <meta name="ckeditor-sample-n...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/enterkey/enterkey.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,180
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Full Page Editing &mdash; CKEditor Sample</title> <script src="../../../ckeditor.js"></script> <script src="../../../samples/old/sample.js"></script> <link rel="stylesheet" href="../../../sampl...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/wysiwygarea/fullpage.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
2,163
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Output for Flash &mdash; CKEditor Sample</title> <script src="../../../ckeditor.js"></script> <script src="../../../samples/old/sample.js"></script> <script src="assets/outputforflash/swfobject...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/htmlwriter/outputforflash.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
2,594
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>HTML Compliant Output &mdash; CKEditor Sample</title> <script src="../../../ckeditor.js"></script> <script src="../../../samples/old/sample.js"></script> <link href="../../../samples/old/sample...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/htmlwriter/outputhtml.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,886
```javascript var swfobject=function(){function w(){if(!u){try{var a=d.getElementsByTagName("body")[0].appendChild(d.createElement("span"));a.parentNode.removeChild(a)}catch(b){return}u=!0;for(var a=z.length,c=0;c<a;c++)z[c]()}}function M(a){u?a():z[z.length]=a}function N(a){if("undefined"!=typeof n.addEventListener)n....
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/swfobject.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
3,217
```html <!DOCTYPE html> <!-- For licensing, see LICENSE.md or path_to_url --> <html> <head> <meta charset="utf-8"> <title>Toolbar Configuration &mdash; CKEditor Sample</title> <meta name="ckeditor-sample-name" content="Toolbar Configurations"> <meta name="ckeditor-sample-group" content="Advanced Samples"> <meta na...
/content/code_sandbox/system/static/plugins/ckeditor/samples/old/toolbar/toolbar.html
html
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
2,242
```javascript /* For licensing, see LICENSE.md or path_to_url */ ```
/content/code_sandbox/system/static/plugins/ckeditor/lang/cs.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
14
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['gu']={"editor":" ","editorPanel":"Rich Text Editor panel","common":{"editorHelp":" ALT 0 ","browseServer":" ","url":"URL","protocol":"","upload":"","uploadSubmit":" ","image":"","flash":"","form":"/","checkbox":" ","radio":" ","textFiel...
/content/code_sandbox/system/static/plugins/ckeditor/lang/gu.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,742
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['si']={"editor":" ","editorPanel":"Rich Text Editor panel","common":{"editorHelp":" ALT ","browseServer":" ","url":"URL","protocol":"","upload":"","uploadSubmit":" ","image":"","flash":"","form":"","checkbox":" ","radio":" ","textField...
/content/code_sandbox/system/static/plugins/ckeditor/lang/si.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,964
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['ar']={"editor":" ","editorPanel":" ","common":{"editorHelp":" ALT + 0 .","browseServer":"","url":"","protocol":"","upload":"","uploadSubmit":"","image":"","flash":"","form":"","checkbox":" ","radio":" ","textField":" ","textarea":" ",...
/content/code_sandbox/system/static/plugins/ckeditor/lang/ar.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,599
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['pt']={"editor":"Editor de texto enriquecido","editorPanel":"Painel do editor de texto enriquecido","common":{"editorHelp":"Pressione ALT+0 para ajuda","browseServer":"Navegar no servidor","url":"URL","protocol":"Protocolo","upload":"Enviar"...
/content/code_sandbox/system/static/plugins/ckeditor/lang/pt.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
3,258
```javascript /* For licensing, see LICENSE.md or path_to_url */ (function(){if(window.CKEDITOR&&window.CKEDITOR.dom)return;window.CKEDITOR||(window.CKEDITOR=function(){var a=/(^|.*[\\\/])ckeditor\.js(?:\?.*|;.*)?$/i,d={timestamp:"G14E",version:"4.5.7",revision:"e98277f",rnd:Math.floor(900*Math.random())+100,_:{pending...
/content/code_sandbox/system/static/plugins/ckeditor/ckeditor.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
159,487
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['fa']={"editor":" ","editorPanel":" ","common":{"editorHelp":" Alt+0 ","browseServer":" ","url":"URL","protocol":"","upload":"","uploadSubmit":" ","image":"","flash":"","form":"","checkbox":"","radio":" ","textField":" ","textarea":" ...
/content/code_sandbox/system/static/plugins/ckeditor/lang/fa.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,615
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['zh-cn']={"editor":"","editorPanel":"","common":{"editorHelp":" ALT+0 ","browseServer":"","url":"URL","protocol":"","upload":"","uploadSubmit":"","image":"","flash":"Flash","form":"","checkbox":"","radio":"","textField":"","textarea":"","hid...
/content/code_sandbox/system/static/plugins/ckeditor/lang/zh-cn.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,282
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['ko']={"editor":" ","editorPanel":" ","common":{"editorHelp":" ALT 0 ","browseServer":" ","url":"URL","protocol":"","upload":"","uploadSubmit":" ","image":"","flash":"","form":"","checkbox":" ","radio":" ","textField":" ","textarea":"...
/content/code_sandbox/system/static/plugins/ckeditor/lang/ko.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,662
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['cy']={"editor":"Golygydd Testun Cyfoethog","editorPanel":"Panel Golygydd Testun Cyfoethog","common":{"editorHelp":"Gwasgwch ALT 0 am gymorth","browseServer":"Pori'r Gweinydd","url":"URL","protocol":"Protocol","upload":"Lanlwytho","uploadSub...
/content/code_sandbox/system/static/plugins/ckeditor/lang/cy.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
3,869
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['km']={"editor":"","editorPanel":"","common":{"editorHelp":" ALT 0 ","browseServer":"","url":"URL","protocol":"","upload":"","uploadSubmit":"","image":"","flash":"Flash","form":"","checkbox":"","radio":"","textField":"","textarea":"Textarea"...
/content/code_sandbox/system/static/plugins/ckeditor/lang/km.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,380
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['mk']={"editor":"Rich Text Editor","editorPanel":"Rich Text Editor panel","common":{"editorHelp":" ALT 0 ","browseServer":" ","url":"URL","protocol":"","upload":"","uploadSubmit":" ","image":"","flash":"Flash","form":"Form","checkbox":"Ch...
/content/code_sandbox/system/static/plugins/ckeditor/lang/mk.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
2,234
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['el']={"editor":" ","editorPanel":" ","common":{"editorHelp":" ALT 0 ","browseServer":" ","url":"URL","protocol":"","upload":"","uploadSubmit":" ","image":"","flash":"Flash","form":"","checkbox":" ","radio":" ","textField":" ","textare...
/content/code_sandbox/system/static/plugins/ckeditor/lang/el.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,656
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['sq']={"editor":"Redaktues i Pasur Teksti","editorPanel":"Paneli i redaktuesit t tekstit t plot","common":{"editorHelp":"Shtyp ALT 0 pr ndihm","browseServer":"Shfleto n Server","url":"URL","protocol":"Protokolli","upload":"Ngarko","uploadSub...
/content/code_sandbox/system/static/plugins/ckeditor/lang/sq.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
3,664
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['ku']={"editor":" ","editorPanel":" ","common":{"editorHelp":" ALT 0 ","browseServer":" ","url":" ","protocol":"","upload":"","uploadSubmit":" ","image":"","flash":"","form":"","checkbox":" ","radio":" ","textField":" ","textarea":" "...
/content/code_sandbox/system/static/plugins/ckeditor/lang/ku.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,587
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['af']={"editor":"Woordverwerker","editorPanel":"Woordverwerkerpaneel","common":{"editorHelp":"Druk op ALT 0 vir hulp","browseServer":"Blaai op bediener","url":"URL","protocol":"Protokol","upload":"Oplaai","uploadSubmit":"Stuur aan die bedien...
/content/code_sandbox/system/static/plugins/ckeditor/lang/af.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
3,386
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['id']={"editor":"Rich Text Editor","editorPanel":"Rich Text Editor panel","common":{"editorHelp":"Tekan ALT 0 untuk bantuan.","browseServer":"Jelajah Server","url":"URL","protocol":"Protokol","upload":"Unggah","uploadSubmit":"Kirim ke Server...
/content/code_sandbox/system/static/plugins/ckeditor/lang/id.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
2,982
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['lv']={"editor":"Bagtint teksta redaktors","editorPanel":"Bagtint teksta redaktora panelis","common":{"editorHelp":"Paldzbai, nospiediet ALT 0 ","browseServer":"Skatt servera saturu","url":"URL","protocol":"Protokols","upload":"Augupieldt","...
/content/code_sandbox/system/static/plugins/ckeditor/lang/lv.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
3,712
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.lang['vi']={"editor":"B son tho vn bn c nh dng","editorPanel":"Bng iu khin Rich Text Editor","common":{"editorHelp":"Nhn ALT + 0 c gip ","browseServer":"Duyt my ch","url":"URL","protocol":"Giao thc","upload":"Ti ln","uploadSubmit":"Ti ln my ch",...
/content/code_sandbox/system/static/plugins/ckeditor/lang/vi.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
3,315
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:1...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/dialog_ie.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
4,177
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:1...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/dialog_iequirks.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
4,184
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:1...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/dialog.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
3,911
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{marg...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/editor_ie8.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
9,531
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{marg...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/editor_ie7.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
10,096
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{marg...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/editor_iequirks.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
9,673
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{marg...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/editor_ie.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
9,476
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{marg...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/editor_gecko.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
9,210
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:1...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/dialog_ie8.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
4,219
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{marg...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/editor.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
9,186
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.dialog.add("about",function(a){a=a.lang.about;var b=CKEDITOR.getUrl(CKEDITOR.plugins.get("about").path+"dialogs/"+(CKEDITOR.env.hidpi?"hidpi/":"")+"logo_ckeditor.png");return{title:CKEDITOR.env.ie?a.dlgTitle:a.title,minWidth:390,minHeight:230,co...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/about/dialogs/about.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
519
```css /* For licensing, see LICENSE.md or path_to_url */ .cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:1...
/content/code_sandbox/system/static/plugins/ckeditor/skins/moono/dialog_ie7.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
4,319
```javascript CKEDITOR.dialog.add("scaytDialog",function(c){var f=c.scayt,q='\x3cp\x3e\x3cimg src\x3d"'+f.getLogo()+'" /\x3e\x3c/p\x3e\x3cp\x3e'+f.getLocal("version")+f.getVersion()+"\x3c/p\x3e\x3cp\x3e"+f.getLocal("text_copyrights")+"\x3c/p\x3e",r=CKEDITOR.document,n={isChanged:function(){return null===this.newLang||t...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/scayt/dialogs/options.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
2,790
```css 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; margin : 0px; }...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/scayt/dialogs/toolbar.css
css
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
414
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.dialog.add("a11yHelp",function(l){var a=l.lang.a11yhelp,n=CKEDITOR.tools.getNextId(),e={8:a.backspace,9:a.tab,13:a.enter,16:a.shift,17:a.ctrl,18:a.alt,19:a.pause,20:a.capslock,27:a.escape,33:a.pageUp,34:a.pageDown,35:a.end,36:a.home,37:a.leftArr...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,022
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","cs",{title:"Instrukce pro pstupnost",contents:"Obsah npovdy. Pro uzaven tohoto dialogu stisknte klvesu ESC.",legend:[{name:"Obecn",items:[{name:"Panel nstroj editoru",legend:"Stisknte${toolbarFocus} k prochzen panelu ...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,408
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","eu",{title:"Erabilerraztasunaren argibideak",contents:"Laguntzaren edukiak. Elkarrizketa-koadro hau ixteko sakatu ESC.",legend:[{name:"Orokorra",items:[{name:"Editorearen tresna-barra",legend:"Sakatu ${toolbarFocus} t...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,566
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","sk",{title:"Intrukcie prstupnosti",contents:"Pomocn obsah. Pre zatvorenie tohto okna, stlate ESC.",legend:[{name:"Veobecne",items:[{name:"Lita nstrojov editora",legend:"Stlate ${toolbarFocus} pre navigciu na litu nstr...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,432
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","gu",{title:" ",contents:". ESC .",legend:[{name:"",items:[{name:" ",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next an...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,005
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","eo",{title:"Uzindikoj pri atingeblo",contents:"Helpilenhavo. Por fermi tiun dialogon, premu la ESKAPAN klavon.",legend:[{name:"eneralaoj",items:[{name:"Ilbreto de la redaktilo",legend:"Premu ${toolbarFocus} por atingi...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,688
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","gl",{title:"Instrucins de accesibilidade",contents:"Axuda. Para pechar este dilogo prema ESC.",legend:[{name:"Xeral",items:[{name:"Barra de ferramentas do editor",legend:"Prema ${toolbarFocus} para navegar pola barra ...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,334
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","fr-ca",{title:"Instructions d'accessibilit",contents:"Contenu de l'aide. Pour fermer cette fentre, appuyez sur ESC.",legend:[{name:"Gnral",items:[{name:"Barre d'outil de l'diteur",legend:"Appuyer sur ${toolbarFocus} ...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,401
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","si",{title:" ",contents:" . ESC ",legend:[{name:" ",items:[{name:" ",legend:" ${ } . TAB SHIFT+TAB . RIGHT ARROW LEFT ARROW. SPACE ENTER ."},{name:" ",legend:"Inside a dialog, press TA...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/si.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
827
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","ar",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the ne...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,011
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","en-gb",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"General",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,025
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","pt",{title:"Instrues de acessibilidade",contents:"Contedo de ajuda. Use a tecla ESC para fechar esta janela.",legend:[{name:"Geral",items:[{name:"Barra de ferramentas do editor",legend:"Clique em ${toolbarFocus} para ...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,295
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","fa",{title:" ",contents:" . ESC .",legend:[{name:"",items:[{name:" ",legend:"${toolbarFocus} . Tab Shift+Tab . . Space Enter ."},{name:" ", legend:"Inside a dialog, ...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
732
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","ca",{title:"Instruccions d'Accessibilitat",contents:"Continguts de l'Ajuda. Per tancar aquest quadre de dileg premi ESC.",legend:[{name:"General",items:[{name:"Editor de barra d'eines",legend:"Premi ${toolbarFocus} pe...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,393
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","fr",{title:"Instructions d'accessibilit",contents:"Contenu de l'aide. Pour fermer ce dialogue, appuyez sur la touche CHAP (Echappement).",legend:[{name:"Gnral",items:[{name:"Barre d'outils de l'diteur",legend:"Appuyer...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,541
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","lt",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"Bendros savybs",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. ...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,028
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","zh-cn",{title:"",contents:" ESC ",legend:[{name:"",items:[{name:"",legend:" ${toolbarFocus} TAB SHIFT+TAB "},{name:"",legend:" TAB SHIFT + TAB ENTER ESC ALT + F10 TAB "},{name:"",legend:" ${contextMenu} TAB SH...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
522
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","no",{title:"Instruksjoner for tilgjengelighet",contents:"Innhold for hjelp. Trykk ESC for lukke denne dialogen.",legend:[{name:"Generelt",items:[{name:"Verktylinje for editor",legend:"Trykk ${toolbarFocus} for navig...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/no.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,302
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","cy",{title:"Canllawiau Hygyrchedd",contents:"Cynnwys Cymorth. I gau y deialog hwn, pwyswch ESC.",legend:[{name:"Cyffredinol",items:[{name:"Bar Offer y Golygydd",legend:"Pwyswch $ {toolbarFocus} i fynd at y bar offer. ...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,492
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","ug",{title:" ",contents:" . ESC .",legend:[{name:"",items:[{name:" ",legend:"${toolbarFocus} TAB SHIFT+TAB Enter ."},{name:" ",legend:" TAB SHIFT+TAB ENTER ESC . ALT+F10...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
659
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","zh",{title:"",contents:"ESC",legend:[{name:"",items:[{name:"",legend:" ${toolbarFocus} TAB SHIFT+TAB ENTER "},{name:"",legend:" TAB SHIFT+TAB ENTER ESC ALT+F10 TAB "},{name:"",legend:"${contextMenu}TABSHIFT + ...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
565
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","da",{title:"Tilgngelighedsinstrukser",contents:"Onlinehjlp. For at lukke dette vindue klik ESC",legend:[{name:"Generelt",items:[{name:"Editor vrktjslinje",legend:"Tryk ${toolbarFocus} for at navigere til vrktjslinjen....
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/da.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,170
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","hi",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the ne...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,021
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","ja",{title:"",contents:" ESC",legend:[{name:"",items:[{name:"",legend:"${toolbarFocus} /TabSHIFT+Tab/"},{name:"",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to th...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
621
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","pt-br",{title:"Instrues de Acessibilidade",contents:"Contedo da Ajuda. Para fechar este dilogo pressione ESC.",legend:[{name:"Geral",items:[{name:"Barra de Ferramentas do Editor",legend:"Pressione ${toolbarFocus} para...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
1,346
```javascript /* For licensing, see LICENSE.md or path_to_url */ CKEDITOR.plugins.setLang("a11yhelp","ko",{title:" ",contents:". ESC .",legend:[{name:"",items:[{name:" ",legend:" ${toolbarFocus} . / TAB SHIFT+TAB . / . SPACE ENTER ."},{name:" ",legend:"TAB , SHIFT+TAB . ENTER , ...
/content/code_sandbox/system/static/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js
javascript
2016-08-01T21:18:23
2024-08-12T19:24:07
home_surveillance
BrandonJoffe/home_surveillance
1,223
718