├── ckeditor ├── config.js ├── plugins │ ├── icons.png │ ├── icons_hidpi.png │ ├── link │ │ └── images │ │ │ ├── anchor.png │ │ │ └── hidpi │ │ │ └── anchor.png │ ├── music │ │ ├── icons │ │ │ ├── music.png │ │ │ └── index.html │ │ └── images │ │ │ └── placeholder.png │ ├── smiley │ │ ├── images │ │ │ ├── kiss.gif │ │ │ ├── kiss.png │ │ │ ├── heart.gif │ │ │ ├── heart.png │ │ │ ├── cry_smile.gif │ │ │ ├── cry_smile.png │ │ │ ├── envelope.gif │ │ │ ├── envelope.png │ │ │ ├── lightbulb.gif │ │ │ ├── lightbulb.png │ │ │ ├── omg_smile.gif │ │ │ ├── omg_smile.png │ │ │ ├── sad_smile.gif │ │ │ ├── sad_smile.png │ │ │ ├── thumbs_up.gif │ │ │ ├── thumbs_up.png │ │ │ ├── angel_smile.gif │ │ │ ├── angel_smile.png │ │ │ ├── angry_smile.gif │ │ │ ├── angry_smile.png │ │ │ ├── broken_heart.gif │ │ │ ├── broken_heart.png │ │ │ ├── devil_smile.gif │ │ │ ├── devil_smile.png │ │ │ ├── shades_smile.gif │ │ │ ├── shades_smile.png │ │ │ ├── teeth_smile.gif │ │ │ ├── teeth_smile.png │ │ │ ├── thumbs_down.gif │ │ │ ├── thumbs_down.png │ │ │ ├── tongue_smile.gif │ │ │ ├── tongue_smile.png │ │ │ ├── tounge_smile.gif │ │ │ ├── wink_smile.gif │ │ │ ├── wink_smile.png │ │ │ ├── confused_smile.gif │ │ │ ├── confused_smile.png │ │ │ ├── regular_smile.gif │ │ │ ├── regular_smile.png │ │ │ ├── embaressed_smile.gif │ │ │ ├── embarrassed_smile.gif │ │ │ ├── embarrassed_smile.png │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ └── whatchutalkingabout_smile.png │ │ ├── icons │ │ │ ├── smiley.png │ │ │ └── hidpi │ │ │ │ └── smiley.png │ │ └── lang │ │ │ ├── ja.js │ │ │ ├── zh.js │ │ │ ├── ko.js │ │ │ ├── zh-cn.js │ │ │ ├── ru.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── en.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── he.js │ │ │ ├── hr.js │ │ │ ├── id.js │ │ │ ├── nl.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── en-gb.js │ │ │ ├── fo.js │ │ │ ├── gu.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── nb.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sv.js │ │ │ ├── uk.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── el.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── ka.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ms.js │ │ │ ├── pt.js │ │ │ ├── sr.js │ │ │ ├── bn.js │ │ │ ├── cy.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── es.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── hi.js │ │ │ ├── hu.js │ │ │ ├── ku.js │ │ │ ├── pt-br.js │ │ │ ├── eo.js │ │ │ ├── fr-ca.js │ │ │ ├── mn.js │ │ │ ├── sr-latn.js │ │ │ ├── th.js │ │ │ ├── km.js │ │ │ ├── mk.js │ │ │ ├── ug.js │ │ │ ├── ro.js │ │ │ └── vi.js │ ├── image │ │ └── images │ │ │ └── noimage.png │ ├── magicline │ │ └── images │ │ │ ├── icon.png │ │ │ ├── icon-rtl.png │ │ │ └── hidpi │ │ │ ├── icon.png │ │ │ └── icon-rtl.png │ ├── preview │ │ ├── icons │ │ │ ├── preview.png │ │ │ ├── preview-rtl.png │ │ │ └── hidpi │ │ │ │ ├── preview.png │ │ │ │ └── preview-rtl.png │ │ ├── lang │ │ │ ├── ko.js │ │ │ ├── zh.js │ │ │ ├── af.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── de.js │ │ │ ├── en.js │ │ │ ├── et.js │ │ │ ├── fa.js │ │ │ ├── fr.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── ms.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ ├── ar.js │ │ │ ├── da.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── es.js │ │ │ ├── eu.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── km.js │ │ │ ├── lv.js │ │ │ ├── mn.js │ │ │ ├── nb.js │ │ │ ├── no.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ug.js │ │ │ ├── eo.js │ │ │ ├── fr-ca.js │ │ │ ├── mk.js │ │ │ ├── pt-br.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── uk.js │ │ │ ├── ca.js │ │ │ ├── ru.js │ │ │ ├── th.js │ │ │ └── sr-latn.js │ │ └── preview.html │ ├── widget │ │ ├── images │ │ │ └── handle.png │ │ ├── dev │ │ │ └── assets │ │ │ │ ├── sample.jpg │ │ │ │ ├── simplebox │ │ │ │ └── icons │ │ │ │ │ └── simplebox.png │ │ │ │ └── contents.css │ │ └── lang │ │ │ ├── zh.js │ │ │ ├── ja.js │ │ │ ├── he.js │ │ │ ├── zh-cn.js │ │ │ ├── ar.js │ │ │ ├── ko.js │ │ │ ├── ru.js │ │ │ ├── ug.js │ │ │ ├── af.js │ │ │ ├── cy.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── fa.js │ │ │ ├── nb.js │ │ │ ├── no.js │ │ │ ├── ca.js │ │ │ ├── da.js │ │ │ ├── en-gb.js │ │ │ ├── gl.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── km.js │ │ │ ├── ku.js │ │ │ ├── pt.js │ │ │ ├── sv.js │ │ │ ├── vi.js │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── es.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── it.js │ │ │ ├── lv.js │ │ │ ├── nl.js │ │ │ ├── pt-br.js │ │ │ ├── sq.js │ │ │ ├── tt.js │ │ │ ├── pl.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ └── el.js │ ├── clearall │ │ ├── icons │ │ │ ├── clearall.png │ │ │ └── index.html │ │ └── plugin.js │ ├── markdown │ │ ├── icons │ │ │ ├── markdown.png │ │ │ └── hidpi │ │ │ │ └── markdown.png │ │ └── theme │ │ │ └── ambiance-mobile.css │ ├── eqneditor │ │ ├── icons │ │ │ └── eqneditor.png │ │ ├── lang │ │ │ └── en.js │ │ └── dialogs │ │ │ └── lang │ │ │ └── en.js │ ├── flash │ │ └── images │ │ │ └── placeholder.png │ ├── forms │ │ └── images │ │ │ └── hiddenfield.gif │ ├── iframe │ │ └── images │ │ │ └── placeholder.png │ ├── pagebreak │ │ └── images │ │ │ └── pagebreak.gif │ ├── selectall │ │ ├── icons │ │ │ ├── selectall.png │ │ │ └── hidpi │ │ │ │ └── selectall.png │ │ └── lang │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── zh.js │ │ │ ├── ar.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── en.js │ │ │ ├── fa.js │ │ │ ├── he.js │ │ │ ├── is.js │ │ │ ├── nb.js │ │ │ ├── no.js │ │ │ ├── si.js │ │ │ ├── sl.js │ │ │ ├── sr.js │ │ │ ├── tr.js │ │ │ ├── zh-cn.js │ │ │ ├── af.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── cy.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── eo.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── gu.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── it.js │ │ │ ├── km.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ms.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── ca.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── es.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── ka.js │ │ │ ├── ku.js │ │ │ ├── mn.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── fr-ca.js │ │ │ ├── mk.js │ │ │ └── pt-br.js │ ├── showblocks │ │ └── images │ │ │ ├── block_h1.png │ │ │ ├── block_h2.png │ │ │ ├── block_h3.png │ │ │ ├── block_h4.png │ │ │ ├── block_h5.png │ │ │ ├── block_h6.png │ │ │ ├── block_p.png │ │ │ ├── block_div.png │ │ │ ├── block_pre.png │ │ │ ├── block_address.png │ │ │ └── block_blockquote.png │ ├── templates │ │ ├── icons │ │ │ ├── templates.png │ │ │ ├── hidpi │ │ │ │ ├── templates.png │ │ │ │ └── templates-rtl.png │ │ │ └── templates-rtl.png │ │ ├── templates │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ └── lang │ │ │ ├── zh.js │ │ │ ├── zh-cn.js │ │ │ ├── ko.js │ │ │ ├── ar.js │ │ │ ├── ja.js │ │ │ ├── ug.js │ │ │ ├── he.js │ │ │ ├── ka.js │ │ │ ├── fi.js │ │ │ ├── id.js │ │ │ ├── si.js │ │ │ ├── nb.js │ │ │ ├── no.js │ │ │ ├── cy.js │ │ │ ├── en.js │ │ │ ├── gl.js │ │ │ ├── sk.js │ │ │ ├── en-gb.js │ │ │ ├── de.js │ │ │ ├── fa.js │ │ │ ├── it.js │ │ │ ├── ku.js │ │ │ ├── pt.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── tt.js │ │ │ ├── eo.js │ │ │ ├── fr-ca.js │ │ │ ├── gu.js │ │ │ ├── bg.js │ │ │ ├── et.js │ │ │ ├── fr.js │ │ │ ├── el.js │ │ │ ├── km.js │ │ │ ├── ru.js │ │ │ ├── sv.js │ │ │ ├── af.js │ │ │ ├── sq.js │ │ │ ├── cs.js │ │ │ ├── lv.js │ │ │ ├── uk.js │ │ │ ├── hu.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── lt.js │ │ │ ├── sl.js │ │ │ ├── eu.js │ │ │ ├── is.js │ │ │ ├── ms.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── da.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── es.js │ │ │ ├── vi.js │ │ │ ├── ca.js │ │ │ ├── fo.js │ │ │ └── sr.js │ ├── about │ │ └── dialogs │ │ │ ├── logo_ckeditor.png │ │ │ └── hidpi │ │ │ └── logo_ckeditor.png │ ├── fontawesome │ │ ├── icons │ │ │ ├── fontawesome.png │ │ │ └── index.html │ │ ├── font-awesome │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── css │ │ │ │ └── index.html │ │ ├── index.html │ │ └── dialogs │ │ │ └── index.html │ ├── wordcount │ │ ├── css │ │ │ └── wordcount.css │ │ └── lang │ │ │ ├── no.js │ │ │ ├── tr.js │ │ │ ├── fr.js │ │ │ ├── zh-cn.js │ │ │ ├── de.js │ │ │ ├── jp.js │ │ │ ├── nl.js │ │ │ ├── sv.js │ │ │ ├── hr.js │ │ │ ├── pl.js │ │ │ ├── ru.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── ca.js │ │ │ └── pt-br.js │ ├── dialog │ │ └── dialogDefinition.js │ └── notification │ │ └── lang │ │ ├── ko.js │ │ ├── zh.js │ │ ├── eo.js │ │ ├── zh-cn.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── en.js │ │ ├── it.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── ru.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── gl.js │ │ ├── ku.js │ │ ├── de.js │ │ ├── fr.js │ │ ├── pt-br.js │ │ └── pl.js ├── samples │ ├── img │ │ ├── logo.png │ │ ├── header-bg.png │ │ ├── github-top.png │ │ ├── navigation-tip.png │ │ └── header-separator.png │ ├── old │ │ ├── assets │ │ │ ├── sample.jpg │ │ │ └── inlineall │ │ │ │ └── logo.png │ │ └── htmlwriter │ │ │ └── assets │ │ │ └── outputforflash │ │ │ ├── outputforflash.fla │ │ │ └── outputforflash.swf │ └── toolbarconfigurator │ │ └── font │ │ ├── fontello.eot │ │ ├── fontello.ttf │ │ ├── fontello.woff │ │ └── LICENSE.txt └── skins │ ├── moono │ ├── icons.png │ ├── icons_hidpi.png │ └── images │ │ ├── arrow.png │ │ ├── close.png │ │ ├── lock.png │ │ ├── refresh.png │ │ ├── spinner.gif │ │ ├── hidpi │ │ ├── lock.png │ │ ├── close.png │ │ ├── lock-open.png │ │ └── refresh.png │ │ └── lock-open.png │ └── minimalist │ ├── icons.png │ ├── icons_hidpi.png │ ├── images │ ├── arrow.png │ ├── close.png │ ├── lock.png │ ├── refresh.png │ ├── hidpi │ │ ├── lock.png │ │ ├── close.png │ │ ├── lock-open.png │ │ └── refresh.png │ └── lock-open.png │ └── readme.md ├── CNAME ├── baimizhou.jpg ├── docs └── screenshot.jpg ├── test └── mocha.opts ├── .gitignore ├── styles └── images │ ├── arrow.png │ ├── avatar.jpg │ └── hr │ ├── hr-11.png │ └── hr-12.png ├── templates ├── paras │ └── list.html ├── hr │ └── list.html └── follow │ └── list.html ├── .travis.yml ├── .jshintrc ├── scripts └── spectrum │ ├── i18n │ ├── jquery.spectrum-dk.js │ ├── jquery.spectrum-ru.js │ ├── jquery.spectrum-tr.js │ ├── jquery.spectrum-fa.js │ ├── jquery.spectrum-ja.js │ ├── jquery.spectrum-fi.js │ ├── jquery.spectrum-sv.js │ ├── jquery.spectrum-it.js │ ├── jquery.spectrum-nl.js │ ├── jquery.spectrum-ar.js │ ├── jquery.spectrum-zh-cn.js │ ├── jquery.spectrum-zh-tw.js │ ├── jquery.spectrum-he.js │ └── jquery.spectrum-pl.js │ └── bower.json └── .editorconfig /ckeditor/config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | editor.phodal.com 2 | -------------------------------------------------------------------------------- /baimizhou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/baimizhou.jpg -------------------------------------------------------------------------------- /docs/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/docs/screenshot.jpg -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --ui bdd 3 | --growl 4 | --colors 5 | test/spec 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .tmp 4 | .idea 5 | bower_components 6 | coverage 7 | -------------------------------------------------------------------------------- /styles/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/styles/images/arrow.png -------------------------------------------------------------------------------- /styles/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/styles/images/avatar.jpg -------------------------------------------------------------------------------- /ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /styles/images/hr/hr-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/styles/images/hr/hr-11.png -------------------------------------------------------------------------------- /styles/images/hr/hr-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/styles/images/hr/hr-12.png -------------------------------------------------------------------------------- /ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/icons.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /ckeditor/plugins/music/icons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/music/icons/music.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /ckeditor/plugins/preview/icons/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/preview/icons/preview.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/icons/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/icons/smiley.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/icons_hidpi.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/images/arrow.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/images/close.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/images/lock.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /ckeditor/plugins/clearall/icons/clearall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/clearall/icons/clearall.png -------------------------------------------------------------------------------- /ckeditor/plugins/markdown/icons/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/markdown/icons/markdown.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/images/refresh.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /ckeditor/plugins/eqneditor/icons/eqneditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/eqneditor/icons/eqneditor.png -------------------------------------------------------------------------------- /ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /ckeditor/plugins/music/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/music/images/placeholder.png -------------------------------------------------------------------------------- /ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /ckeditor/plugins/preview/icons/preview-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/preview/icons/preview-rtl.png -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/icons/selectall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/selectall/icons/selectall.png -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/icons/hidpi/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/icons/hidpi/smiley.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/templates/icons/templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/templates/icons/templates.png -------------------------------------------------------------------------------- /ckeditor/plugins/widget/dev/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/widget/dev/assets/sample.jpg -------------------------------------------------------------------------------- /ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/images/hidpi/lock.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/images/lock-open.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /ckeditor/plugins/preview/icons/hidpi/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/preview/icons/hidpi/preview.png -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/images/hidpi/close.png -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/icons/fontawesome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/fontawesome/icons/fontawesome.png -------------------------------------------------------------------------------- /ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /ckeditor/plugins/markdown/icons/hidpi/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/markdown/icons/hidpi/markdown.png -------------------------------------------------------------------------------- /ckeditor/plugins/preview/icons/hidpi/preview-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/preview/icons/hidpi/preview-rtl.png -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/icons/hidpi/selectall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/selectall/icons/hidpi/selectall.png -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/templates/icons/hidpi/templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/templates/icons/hidpi/templates.png -------------------------------------------------------------------------------- /ckeditor/plugins/templates/icons/templates-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/templates/icons/templates-rtl.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/skins/minimalist/images/hidpi/refresh.png -------------------------------------------------------------------------------- /ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /ckeditor/plugins/templates/icons/hidpi/templates-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/templates/icons/hidpi/templates-rtl.png -------------------------------------------------------------------------------- /ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/fontawesome/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ckeditor/plugins/markdown/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | box-shadow: none; 5 | } 6 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/dev/assets/simplebox/icons/simplebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/widget/dev/assets/simplebox/icons/simplebox.png -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/fontawesome/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/fontawesome/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/fontawesome/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/css/wordcount.css: -------------------------------------------------------------------------------- 1 | .cke_wordcount {display:block;float:right;margin-top:-2px;margin-right:3px;color:black;} 2 | 3 | .cke_wordcountLimitReached {color:red! important} -------------------------------------------------------------------------------- /ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/congee/HEAD/ckeditor/plugins/fontawesome/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/dialogs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/icons/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/music/icons/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/clearall/icons/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/font-awesome/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/font-awesome/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/fontawesome/font-awesome/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /ckeditor/skins/minimalist/readme.md: -------------------------------------------------------------------------------- 1 | "Minimalist" Skin 2 | ==================== 3 | 4 | A port of the default CKEditor skin, Moono, without the gradients. 5 | 6 | Jeff Lyon 7 | [Albatross Digital](albatrossdigital.com) 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/eqneditor/lang/en.js: -------------------------------------------------------------------------------- 1 | 2 | CKEDITOR.plugins.setLang( 'eqneditor', 'en', 3 | { 4 | title : 'CodeCogs Equation Editor', 5 | menu : 'Maths', 6 | toolbar : 'Insert Equation', 7 | edit : 'Edit Equation' 8 | }); 9 | -------------------------------------------------------------------------------- /ckeditor/plugins/eqneditor/dialogs/lang/en.js: -------------------------------------------------------------------------------- 1 | 2 | CKEDITOR.plugins.setLang( 'eqneditor', 'en', 3 | { 4 | title : 'CodeCogs Equation Editor', 5 | menu : 'Maths', 6 | toolbar : 'Insert Equation', 7 | edit : 'Edit Equation' 8 | }); 9 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'ko', { 6 | preview: '미리보기' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'zh', { 6 | preview: '預覽' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'af', { 6 | preview: 'Voorbeeld' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'bg', { 6 | preview: 'Преглед' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'bn', { 6 | preview: 'প্রিভিউ' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/bs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'bs', { 6 | preview: 'Prikaži' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'cs', { 6 | preview: 'Náhled' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'cy', { 6 | preview: 'Rhagolwg' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'de', { 6 | preview: 'Vorschau' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'en', { 6 | preview: 'Preview' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'et', { 6 | preview: 'Eelvaade' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'fa', { 6 | preview: 'پیشنمایش' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'fr', { 6 | preview: 'Aperçu' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'hi', { 6 | preview: 'प्रीव्यू' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'hr', { 6 | preview: 'Pregledaj' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'hu', { 6 | preview: 'Előnézet' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'id', { 6 | preview: 'Pratinjau' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'is', { 6 | preview: 'Forskoða' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'it', { 6 | preview: 'Anteprima' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'ja', { 6 | preview: 'プレビュー' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'ka', { 6 | preview: 'გადახედვა' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'ku', { 6 | preview: 'پێشبینین' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'lt', { 6 | preview: 'Peržiūra' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'ms', { 6 | preview: 'Prebiu' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'nl', { 6 | preview: 'Voorbeeld' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'pl', { 6 | preview: 'Podgląd' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'si', { 6 | preview: 'නැවත ' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'sk', { 6 | preview: 'Náhľad' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'sl', { 6 | preview: 'Predogled' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'sq', { 6 | preview: 'Parashiko' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'tr', { 6 | preview: 'Ön İzleme' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'tt', { 6 | preview: 'Карап алу' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'vi', { 6 | preview: 'Xem trước' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'zh-cn', { 6 | preview: '预览' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'ja', { 6 | toolbar: 'すべて選択' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'ko', { 6 | toolbar: '모두 선택' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'zh', { 6 | toolbar: '全選' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'ar', { 6 | preview: 'معاينة الصفحة' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'da', { 6 | preview: 'Vis eksempel' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'el', { 6 | preview: 'Προεπισκόπιση' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'en-au', { 6 | preview: 'Preview' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'en-ca', { 6 | preview: 'Preview' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'en-gb', { 6 | preview: 'Preview' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'es', { 6 | preview: 'Vista Previa' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'eu', { 6 | preview: 'Aurrebista' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'fi', { 6 | preview: 'Esikatsele' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'fo', { 6 | preview: 'Frumsýning' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'gl', { 6 | preview: 'Vista previa' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'gu', { 6 | preview: 'પૂર્વદર્શન' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'he', { 6 | preview: 'תצוגה מקדימה' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'km', { 6 | preview: 'មើល​ជា​មុន' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'lv', { 6 | preview: 'Priekšskatīt' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'mn', { 6 | preview: 'Уридчлан харах' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'nb', { 6 | preview: 'Forhåndsvis' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'no', { 6 | preview: 'Forhåndsvis' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'pt', { 6 | preview: 'Pré-visualizar' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'ro', { 6 | preview: 'Previzualizare' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'ug', { 6 | preview: 'ئالدىن كۆزەت' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'ar', { 6 | toolbar: 'تحديد الكل' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'cs', { 6 | toolbar: 'Vybrat vše' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'da', { 6 | toolbar: 'Vælg alt' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'en', { 6 | toolbar: 'Select All' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'fa', { 6 | toolbar: 'گزینش همه' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'he', { 6 | toolbar: 'בחירת הכל' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'is', { 6 | toolbar: 'Velja allt' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'nb', { 6 | toolbar: 'Merk alt' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'no', { 6 | toolbar: 'Merk alt' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'si', { 6 | toolbar: 'සියල්ලම ' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'sl', { 6 | toolbar: 'Izberi vse' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'sr', { 6 | toolbar: 'Означи све' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'tr', { 6 | toolbar: 'Tümünü Seç' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'zh-cn', { 6 | toolbar: '全选' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ko', { 6 | closed: '알림이 닫힘.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'zh', { 6 | closed: '通知已關閉。' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'eo', { 6 | preview: 'Vidigi Aspekton' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'fr-ca', { 6 | preview: 'Prévisualiser' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'mk', { 6 | preview: 'Preview' // MISSING 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'pt-br', { 6 | preview: 'Visualizar' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'sr', { 6 | preview: 'Изглед странице' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'sv', { 6 | preview: 'Förhandsgranska' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'uk', { 6 | preview: 'Попередній перегляд' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'af', { 6 | toolbar: 'Selekteer alles' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'bg', { 6 | toolbar: 'Избери всичко' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'bn', { 6 | toolbar: 'সব সিলেক্ট কর' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/bs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'bs', { 6 | toolbar: 'Selektuj sve' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'cy', { 6 | toolbar: 'Dewis Popeth' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'de', { 6 | toolbar: 'Alles auswählen' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'el', { 6 | toolbar: 'Επιλογή όλων' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'eo', { 6 | toolbar: 'Elekti ĉion' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'et', { 6 | toolbar: 'Kõige valimine' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'eu', { 6 | toolbar: 'Hautatu dena' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'fi', { 6 | toolbar: 'Valitse kaikki' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'fo', { 6 | toolbar: 'Markera alt' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'gu', { 6 | toolbar: 'બઘું પસંદ કરવું' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'hi', { 6 | toolbar: 'सब सॅलॅक्ट करें' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'hr', { 6 | toolbar: 'Odaberi sve' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'hu', { 6 | toolbar: 'Mindent kijelöl' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'id', { 6 | toolbar: 'Pilih Semua' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'it', { 6 | toolbar: 'Seleziona tutto' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'km', { 6 | toolbar: 'រើស​ទាំង​អស់' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'lt', { 6 | toolbar: 'Pažymėti viską' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'lv', { 6 | toolbar: 'Iezīmēt visu' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'ms', { 6 | toolbar: 'Pilih Semua' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'pt', { 6 | toolbar: 'Selecionar tudo' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'ro', { 6 | toolbar: 'Selectează tot' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'ru', { 6 | toolbar: 'Выделить все' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'sk', { 6 | toolbar: 'Vybrať všetko' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'sv', { 6 | toolbar: 'Markera allt' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/th.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'th', { 6 | toolbar: 'เลือกทั้งหมด' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'tt', { 6 | toolbar: 'Барысын сайлау' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'ug', { 6 | toolbar: 'ھەممىنى تاللا' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'uk', { 6 | toolbar: 'Виділити все' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'vi', { 6 | toolbar: 'Chọn tất cả' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/zh.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'zh', { 6 | 'move': '拖曳以移動' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'eo', { 6 | closed: 'Sciigo fermita' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'zh-cn', { 6 | closed: '通知已关闭。' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'ca', { 6 | preview: 'Visualització prèvia' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'ru', { 6 | preview: 'Предварительный просмотр' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/th.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'th', { 6 | preview: 'ดูหน้าเอกสารตัวอย่าง' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'ca', { 6 | toolbar: 'Selecciona-ho tot' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'en-au', { 6 | toolbar: 'Select All' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'en-ca', { 6 | toolbar: 'Select All' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'en-gb', { 6 | toolbar: 'Select All' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'es', { 6 | toolbar: 'Seleccionar Todo' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'fr', { 6 | toolbar: 'Tout sélectionner' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'gl', { 6 | toolbar: 'Seleccionar todo' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'ka', { 6 | toolbar: 'ყველაფრის მონიშნვა' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'ku', { 6 | toolbar: 'دیاریکردنی هەمووی' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'mn', { 6 | toolbar: 'Бүгдийг нь сонгох' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'nl', { 6 | toolbar: 'Alles selecteren' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'pl', { 6 | toolbar: 'Zaznacz wszystko' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'sq', { 6 | toolbar: 'Përzgjidh të Gjitha' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'sr-latn', { 6 | toolbar: 'Označi sve' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ja', { 6 | 'move': 'ドラッグして移動' 7 | } ); 8 | -------------------------------------------------------------------------------- /templates/paras/list.html: -------------------------------------------------------------------------------- 1 | {{#Style}} 2 |
3 |
4 |

段落啦啦

5 |
6 |
7 | {{/Style}} 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'cs', { 6 | closed: 'Oznámení zavřeno.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'da', { 6 | closed: 'Notefikation lukket.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'en', { 6 | closed: 'Notification closed.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'it', { 6 | closed: 'Notifica chiusa.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'nb', { 6 | closed: 'Varsling lukket.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'nl', { 6 | closed: 'Melding gesloten.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ru', { 6 | closed: 'Уведомление закрыто' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'sv', { 6 | closed: 'Notifiering stängd.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'tr', { 6 | closed: 'Uyarılar kapatıldı.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ug', { 6 | closed: 'ئوقتۇرۇش تاقالدى.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'preview', 'sr-latn', { 6 | preview: 'Izgled stranice' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'fr-ca', { 6 | toolbar: 'Sélectionner tout' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'mk', { 6 | toolbar: 'Select All' // MISSING 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/selectall/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'selectall', 'pt-br', { 6 | toolbar: 'Selecionar Tudo' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'he', { 6 | 'move': 'לחץ וגרור להזזה' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'zh-cn', { 6 | 'move': '点击并拖拽以移动' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'gl', { 6 | closed: 'Notificación pechada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ku', { 6 | closed: 'ئاگادارکەرەوەکە داخرا.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ar', { 6 | 'move': 'إضغط و إسحب للتحريك' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ko', { 6 | 'move': '움직이려면 클릭 후 드래그 하세요' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ru', { 6 | 'move': 'Нажмите и перетащите' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/ug.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ug', { 6 | 'move': 'يۆتكەشتە چېكىپ سۆرەڭ' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'de', { 6 | closed: 'Benachrichtigung geschlossen.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'fr', { 6 | closed: 'La notification est close.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'pt-br', { 6 | closed: 'Notificação fechada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/af.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'af', { 6 | 'move': 'Klik en trek on te beweeg' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'cy', { 6 | 'move': 'Clcio a llusgo i symud' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/en.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'en', { 6 | 'move': 'Click and drag to move' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/eo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'eo', { 6 | 'move': 'klaki kaj treni por movi' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'fa', { 6 | 'move': 'کلیک و کشیدن برای جابجایی' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'nb', { 6 | 'move': 'Klikk og dra for å flytte' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'no', { 6 | 'move': 'Klikk og dra for å flytte' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/notification/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'pl', { 6 | closed: 'Powiadomienie zostało zamknięte.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ca', { 6 | 'move': 'Clicar i arrossegar per moure' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'da', { 6 | 'move': 'Klik og træk for at flytte' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'en-gb', { 6 | 'move': 'Click and drag to move' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/gl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'gl', { 6 | 'move': 'Prema e arrastre para mover' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'hr', { 6 | 'move': 'Klikni i povuci da pomakneš' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'hu', { 6 | 'move': 'Kattints és húzd a mozgatáshoz' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/km.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'km', { 6 | 'move': 'ចុច​ហើយ​ទាញ​ដើម្បី​ផ្លាស់​ទី' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/ku.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ku', { 6 | 'move': 'کرتەبکە و ڕایبکێشە بۆ جوڵاندن' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/pt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'pt', { 6 | 'move': 'Clique e arraste para mover' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sv', { 6 | 'move': 'Klicka och drag för att flytta' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'vi', { 6 | 'move': 'Nhấp chuột và kéo để di chuyển' 7 | } ); 8 | -------------------------------------------------------------------------------- /templates/hr/list.html: -------------------------------------------------------------------------------- 1 | {{#hrStyle}} 2 |
3 |
4 |

5 |
6 |
7 | {{/hrStyle}} 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'bg', { 6 | 'move': 'Кликни и влачи, за да преместиш' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'cs', { 6 | 'move': 'Klepněte a táhněte pro přesunutí' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'de', { 6 | 'move': 'Zum Verschieben anwählen und ziehen' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'es', { 6 | 'move': 'Dar clic y arrastrar para mover' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'fi', { 6 | 'move': 'Siirrä klikkaamalla ja raahaamalla' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'fr', { 6 | 'move': 'Cliquer et glisser pour déplacer' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'it', { 6 | 'move': 'Fare clic e trascinare per spostare' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'lv', { 6 | 'move': 'Klikšķina un velc, lai pārvietotu' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'nl', { 6 | 'move': 'Klik en sleep om te verplaatsen' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'pt-br', { 6 | 'move': 'Click e arraste para mover' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sq', { 6 | 'move': 'Kliko dhe tërhiqe për ta lëvizur' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/tt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'tt', { 6 | 'move': 'Күчереп куер өчен басып шудырыгыз' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/pl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'pl', { 6 | 'move': 'Kliknij i przeciągnij, by przenieść.' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sk', { 6 | 'move': 'Kliknite a potiahnite pre presunutie' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sl', { 6 | 'move': 'Kliknite in povlecite, da premaknete' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'tr', { 6 | 'move': 'Taşımak için, tıklayın ve sürükleyin' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/uk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'uk', { 6 | 'move': 'Клікніть і потягніть для переміщення' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'ja', { 6 | options: '絵文字オプション', 7 | title: '顔文字挿入', 8 | toolbar: '絵文字' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'zh', { 6 | options: '表情符號選項', 7 | title: '插入表情符號', 8 | toolbar: '表情符號' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'ko', { 6 | options: '이모티콘 옵션', 7 | title: '이모티콘 삽입', 8 | toolbar: '이모티콘' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'zh-cn', { 6 | options: '表情图标选项', 7 | title: '插入表情图标', 8 | toolbar: '表情符' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/lang/el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'el', { 6 | 'move': 'Κάνετε κλικ και σύρετε το ποντίκι για να μετακινήστε' 7 | } ); 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'ru', { 6 | options: 'Выбор смайла', 7 | title: 'Вставить смайл', 8 | toolbar: 'Смайлы' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'tr', { 6 | options: 'İfade Seçenekleri', 7 | title: 'İfade Ekle', 8 | toolbar: 'İfade' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'tt', { 6 | options: 'Смайл көйләүләре', 7 | title: 'Смайл өстәү', 8 | toolbar: 'Смайл' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'da', { 6 | options: 'Smileymuligheder', 7 | title: 'Vælg smiley', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'de', { 6 | options: 'Smiley-Optionen', 7 | title: 'Smiley auswählen', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'en', { 6 | options: 'Smiley Options', 7 | title: 'Insert a Smiley', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'fa', { 6 | options: 'گزینه​های خندانک', 7 | title: 'گنجاندن خندانک', 8 | toolbar: 'خندانک' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'fi', { 6 | options: 'Hymiön ominaisuudet', 7 | title: 'Lisää hymiö', 8 | toolbar: 'Hymiö' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'he', { 6 | options: 'אפשרויות סמיילים', 7 | title: 'הוספת סמיילי', 8 | toolbar: 'סמיילי' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'hr', { 6 | options: 'Opcije smješka', 7 | title: 'Ubaci smješka', 8 | toolbar: 'Smješko' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'id', { 6 | options: 'Opsi Smiley', 7 | title: 'Sisip sebuah Smiley', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'nl', { 6 | options: 'Smiley opties', 7 | title: 'Smiley invoegen', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'sl', { 6 | options: 'Možnosti Smeška', 7 | title: 'Vstavi smeška', 8 | toolbar: 'Smeško' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'sq', { 6 | options: 'Opsionet e Ikonave', 7 | title: 'Vendos Ikonë', 8 | toolbar: 'Ikona' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'af', { 6 | options: 'Lagbekkie opsies', 7 | title: 'Voeg lagbekkie by', 8 | toolbar: 'Lagbekkie' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'ar', { 6 | options: 'خصائص الإبتسامات', 7 | title: 'إدراج ابتسامات', 8 | toolbar: 'ابتسامات' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'en-gb', { 6 | options: 'Smiley Options', 7 | title: 'Insert a Smiley', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'fo', { 6 | options: 'Møguleikar fyri Smiley', 7 | title: 'Vel Smiley', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'gu', { 6 | options: 'સમ્ય્લી વિકલ્પો', 7 | title: 'સ્માઇલી પસંદ કરો', 8 | toolbar: 'સ્માઇલી' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'is', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'Velja svip', 8 | toolbar: 'Svipur' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'it', { 6 | options: 'Opzioni Smiley', 7 | title: 'Inserisci emoticon', 8 | toolbar: 'Emoticon' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'nb', { 6 | options: 'Alternativer for smil', 7 | title: 'Sett inn smil', 8 | toolbar: 'Smil' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'no', { 6 | options: 'Alternativer for smil', 7 | title: 'Sett inn smil', 8 | toolbar: 'Smil' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'pl', { 6 | options: 'Opcje emotikonów', 7 | title: 'Wstaw emotikona', 8 | toolbar: 'Emotikony' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'si', { 6 | options: 'හාස්‍ය විකල්ප', 7 | title: 'හාස්‍යන් ඇතුලත් කිරීම', 8 | toolbar: 'හාස්‍යන්' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'sk', { 6 | options: 'Možnosti smajlíkov', 7 | title: 'Vložiť smajlíka', 8 | toolbar: 'Smajlíky' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'sv', { 6 | options: 'Smileyinställningar', 7 | title: 'Infoga smiley', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'uk', { 6 | options: 'Опції смайликів', 7 | title: 'Вставити смайлик', 8 | toolbar: 'Смайлик' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'bg', { 6 | options: 'Опции за усмивката', 7 | title: 'Вмъкване на усмивка', 8 | toolbar: 'Усмивка' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/bs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'bs', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'Ubaci smješka', 8 | toolbar: 'Smješko' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'ca', { 6 | options: 'Opcions d\'emoticones', 7 | title: 'Insereix una icona', 8 | toolbar: 'Icona' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'cs', { 6 | options: 'Nastavení smajlíků', 7 | title: 'Vkládání smajlíků', 8 | toolbar: 'Smajlíci' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'el', { 6 | options: 'Επιλογές Φατσούλων', 7 | title: 'Εισάγετε μια Φατσούλα', 8 | toolbar: 'Φατσούλα' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'et', { 6 | options: 'Emotikonide valikud', 7 | title: 'Sisesta emotikon', 8 | toolbar: 'Emotikon' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'eu', { 6 | options: 'Aurpegiera Aukerak', 7 | title: 'Aurpegiera Sartu', 8 | toolbar: 'Aurpegierak' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'ka', { 6 | options: 'სიცილაკის პარამეტრები', 7 | title: 'სიცილაკის ჩასმა', 8 | toolbar: 'სიცილაკები' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'lt', { 6 | options: 'Šypsenėlių nustatymai', 7 | title: 'Įterpti veidelį', 8 | toolbar: 'Veideliai' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'lv', { 6 | options: 'Smaidiņu uzstādījumi', 7 | title: 'Ievietot smaidiņu', 8 | toolbar: 'Smaidiņi' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'ms', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'Masukkan Smiley', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'pt', { 6 | options: 'Opções de Emoticons', 7 | title: 'Inserir um Emoticon', 8 | toolbar: 'Emoticons' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'sr', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'Унеси смајлија', 8 | toolbar: 'Смајли' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'bn', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'স্মাইলী যুক্ত কর', 8 | toolbar: 'স্মাইলী' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'cy', { 6 | options: 'Opsiynau Gwenogluniau', 7 | title: 'Mewnosod Gwenoglun', 8 | toolbar: 'Gwenoglun' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'en-au', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'Insert a Smiley', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'en-ca', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'Insert a Smiley', 8 | toolbar: 'Smiley' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'es', { 6 | options: 'Opciones de emoticonos', 7 | title: 'Insertar un Emoticon', 8 | toolbar: 'Emoticonos' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'fr', { 6 | options: 'Options des émoticones', 7 | title: 'Insérer un émoticone', 8 | toolbar: 'Émoticones' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'gl', { 6 | options: 'Opcións de emoticonas', 7 | title: 'Inserir unha emoticona', 8 | toolbar: 'Emoticona' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'hi', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'स्माइली इन्सर्ट करें', 8 | toolbar: 'स्माइली' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'hu', { 6 | options: 'Hangulatjel opciók', 7 | title: 'Hangulatjel beszúrása', 8 | toolbar: 'Hangulatjelek' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'ku', { 6 | options: 'هەڵبژاردەی زەردەخەنه', 7 | title: 'دانانی زەردەخەنەیەك', 8 | toolbar: 'زەردەخەنه' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'pt-br', { 6 | options: 'Opções de Emoticons', 7 | title: 'Inserir Emoticon', 8 | toolbar: 'Emoticon' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'eo', { 6 | options: 'Opcioj pri mienvinjetoj', 7 | title: 'Enmeti Mienvinjeton', 8 | toolbar: 'Mienvinjeto' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'fr-ca', { 6 | options: 'Options d\'émoticônes', 7 | title: 'Insérer un émoticône', 8 | toolbar: 'Émoticône' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'mn', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'Тодорхойлолт оруулах', 8 | toolbar: 'Тодорхойлолт' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'sr-latn', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'Unesi smajlija', 8 | toolbar: 'Smajli' 9 | } ); 10 | -------------------------------------------------------------------------------- /templates/follow/list.html: -------------------------------------------------------------------------------- 1 | {{#Style}} 2 |
3 |
4 | 点击上方"{{.mpName}}"关注我们 5 |
6 |
7 | {{/Style}} 8 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/th.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'th', { 6 | options: 'ตัวเลือกไอคอนแสดงอารมณ์', 7 | title: 'แทรกสัญลักษณ์สื่ออารมณ์', 8 | toolbar: 'รูปสื่ออารมณ์' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'km', { 6 | options: 'ជម្រើស​រូប​សញ្ញា​អារម្មណ៍', 7 | title: 'បញ្ចូល​រូប​សញ្ញា​អារម្មណ៍', 8 | toolbar: 'រូប​សញ្ញ​អារម្មណ៍' 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'mk', { 6 | options: 'Smiley Options', // MISSING 7 | title: 'Insert a Smiley', // MISSING 8 | toolbar: 'Smiley' // MISSING 9 | } ); 10 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'ug', { 6 | options: 'چىراي ئىپادە سىنبەلگە تاللانمىسى', 7 | title: 'چىراي ئىپادە سىنبەلگە قىستۇر', 8 | toolbar: 'چىراي ئىپادە' 9 | } ); 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | 5 | notifications: 6 | email: false 7 | 8 | branches: 9 | only: 10 | - gh-pages 11 | before_install: npm install -g codeclimate-test-reporter 12 | after_sucess: CODECLIMATE_REPO_TOKEN=1485c05d5746f9e444c8de7c99ccef4261349bf8f337ddbca74da34e42aba0d4 codeclimate-test-reporter < coverage/lcov.info 13 | 14 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "browser": true, 3 | "esnext": true, 4 | "bitwise": false, 5 | "curly": true, 6 | "eqeqeq": true, 7 | "eqnull": true, 8 | "immed": true, 9 | "latedef": false, 10 | "newcap": true, 11 | "noarg": true, 12 | "undef": true, 13 | "strict": true, 14 | "quotmark": "single", 15 | "predef" : ["define", "require"], 16 | "scripturl": true 17 | } 18 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'ro', { 6 | options: 'Opțiuni figuri expresive', 7 | title: 'Inserează o figură expresivă (Emoticon)', 8 | toolbar: 'Figură expresivă (Emoticon)' 9 | } ); 10 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-dk.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Danish (dk) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["dk"] = { 8 | cancelText: "annuller", 9 | chooseText: "Vælg" 10 | }; 11 | 12 | $.extend($.fn.spectrum.defaults, localization); 13 | 14 | })( jQuery ); 15 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-ru.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Russian (ru) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["ru"] = { 8 | cancelText: "отмена", 9 | chooseText: "выбрать" 10 | }; 11 | 12 | $.extend($.fn.spectrum.defaults, localization); 13 | 14 | })( jQuery ); 15 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-tr.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Turkish (tr) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["tr"] = { 8 | cancelText: "iptal", 9 | chooseText: "tamam" 10 | }; 11 | 12 | $.extend($.fn.spectrum.defaults, localization); 13 | 14 | })( jQuery ); 15 | -------------------------------------------------------------------------------- /ckeditor/plugins/smiley/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'smiley', 'vi', { 6 | options: 'Tùy chọn hình biểu lộ cảm xúc', 7 | title: 'Chèn hình biểu lộ cảm xúc (mặt cười)', 8 | toolbar: 'Hình biểu lộ cảm xúc (mặt cười)' 9 | } ); 10 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-fa.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Persian (fa) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["fa"] = { 8 | cancelText: "لغو", 9 | chooseText: "انتخاب" 10 | }; 11 | 12 | $.extend($.fn.spectrum.defaults, localization); 13 | 14 | })( jQuery ); 15 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-ja.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Japanese (ja) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["ja"] = { 8 | cancelText: "中止", 9 | chooseText: "選択" 10 | }; 11 | 12 | $.extend($.fn.spectrum.defaults, localization); 13 | 14 | })( jQuery ); 15 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-fi.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Finnish (fi) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["fi"] = { 8 | cancelText: "Kumoa", 9 | chooseText: "Valitse" 10 | }; 11 | 12 | $.extend($.fn.spectrum.defaults, localization); 13 | 14 | })( jQuery ); 15 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-sv.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Swedish (sv) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["sv"] = { 8 | cancelText: "Avbryt", 9 | chooseText: "Välj" 10 | }; 11 | 12 | $.extend($.fn.spectrum.defaults, localization); 13 | 14 | })( jQuery ); 15 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'zh', { 6 | button: '範本', 7 | emptyListMsg: '(尚未定義任何範本)', 8 | insertOption: '替代實際內容', 9 | options: '範本選項', 10 | selectPromptMsg: '請選擇要在編輯器中開啟的範本。', 11 | title: '內容範本' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'zh-cn', { 6 | button: '模板', 7 | emptyListMsg: '(没有模板)', 8 | insertOption: '替换当前内容', 9 | options: '模板选项', 10 | selectPromptMsg: '请选择要在编辑器中使用的模板:', 11 | title: '内容模板' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/no.js: -------------------------------------------------------------------------------- 1 | // Norwegian translation by Vegard S. 2 | CKEDITOR.plugins.setLang('wordcount', 'no', { 3 | WordCount: 'Ord:', 4 | CharCount: 'Tegn:', 5 | CharCountWithHTML: 'Tegn (including HTML):', 6 | Paragraphs: 'Paragraphs:', 7 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 8 | Selected: 'Selected: ', 9 | title: 'Statistikk' 10 | }); 11 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'ko', { 6 | button: '템플릿', 7 | emptyListMsg: '(템플릿이 없습니다)', 8 | insertOption: '현재 내용 바꾸기', 9 | options: '템플릿 옵션', 10 | selectPromptMsg: '에디터에서 사용할 템플릿을 선택하십시오', 11 | title: '내용 템플릿' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Mesut ÇAKIR 3 | mesut.cakir@hotmail.com.tr 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'tr', { 6 | WordCount: 'Kelime:', 7 | CharCount: 'Karakter:', 8 | CharCountWithHTML: 'Karakter (HTML dahil):', 9 | Paragraphs: 'Paragraf:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'İstatistik' 13 | }); 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/widget/dev/assets/contents.css: -------------------------------------------------------------------------------- 1 | .mediumBorder { 2 | border-width: 2px; 3 | } 4 | .thickBorder { 5 | border-width: 5px; 6 | } 7 | img.thickBorder, img.mediumBorder { 8 | border-style: solid; 9 | border-color: #CCC; 10 | } 11 | .important.soMuch { 12 | margin: 25px; 13 | padding: 25px; 14 | background: red; 15 | border: none; 16 | } 17 | 18 | span.redMarker { 19 | background-color: red; 20 | } 21 | .invisible { 22 | opacity: 0.1; 23 | } -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/fr.js: -------------------------------------------------------------------------------- 1 | // French Translation by Nicolas M. et Pierre-Luc Auclair 2 | 3 | CKEDITOR.plugins.setLang('wordcount', 'fr', { 4 | WordCount: 'Mots:', 5 | CharCount: 'Caractères:', 6 | CharCountWithHTML: 'Caractères (incluant HTML):', 7 | Paragraphs: 'Paragraphes:', 8 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 9 | Selected: 'Selected: ', 10 | title: 'Statistiques' 11 | }); 12 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'zh-cn', { 6 | WordCount: '词数:', 7 | CharCount: '字符:', 8 | CharCountWithHTML: ' (含HTML)', 9 | Paragraphs: '段落:', 10 | pasteWarning: '由于上限允许,内容不能粘贴', 11 | Selected: '已选择: ', 12 | title: '统计' 13 | }); 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'ar', { 6 | button: 'القوالب', 7 | emptyListMsg: '(لم يتم تعريف أي قالب)', 8 | insertOption: 'استبدال المحتوى', 9 | options: 'خصائص القوالب', 10 | selectPromptMsg: 'اختر القالب الذي تود وضعه في المحرر', 11 | title: 'قوالب المحتوى' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'ja', { 6 | button: 'テンプレート', 7 | emptyListMsg: '(テンプレートが定義されていません)', 8 | insertOption: '現在のエディタの内容と置き換えます', 9 | options: 'テンプレートオプション', 10 | selectPromptMsg: 'エディターで使用するテンプレートを選択してください。
(現在のエディタの内容は失われます):', 11 | title: '内容テンプレート' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'ug', { 6 | button: 'قېلىپ', 7 | emptyListMsg: '(قېلىپ يوق)', 8 | insertOption: 'نۆۋەتتىكى مەزمۇننى ئالماشتۇر', 9 | options: 'قېلىپ تاللانمىسى', 10 | selectPromptMsg: 'تەھرىرلىگۈچنىڭ مەزمۇن قېلىپىنى تاللاڭ:', 11 | title: 'مەزمۇن قېلىپى' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'he', { 6 | button: 'תבניות', 7 | emptyListMsg: '(לא הוגדרו תבניות)', 8 | insertOption: 'החלפת תוכן ממשי', 9 | options: 'אפשרויות התבניות', 10 | selectPromptMsg: 'יש לבחור תבנית לפתיחה בעורך.
התוכן המקורי ימחק:', 11 | title: 'תביות תוכן' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'ka', { 6 | button: 'თარგები', 7 | emptyListMsg: '(თარგი არაა განსაზღვრული)', 8 | insertOption: 'მიმდინარე შეგთავსის შეცვლა', 9 | options: 'თარგების პარამეტრები', 10 | selectPromptMsg: 'აირჩიეთ თარგი რედაქტორისთვის', 11 | title: 'თარგები' 12 | } ); 13 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-it.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Italian (it) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["it"] = { 8 | cancelText: "annulla", 9 | chooseText: "scegli", 10 | clearText: "Annulla selezione colore", 11 | noColorSelectedText: "Nessun colore selezionato" 12 | }; 13 | 14 | $.extend($.fn.spectrum.defaults, localization); 15 | 16 | })( jQuery ); 17 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'fi', { 6 | button: 'Pohjat', 7 | emptyListMsg: '(Ei määriteltyjä pohjia)', 8 | insertOption: 'Korvaa koko sisältö', 9 | options: 'Sisältöpohjan ominaisuudet', 10 | selectPromptMsg: 'Valitse editoriin avattava pohja', 11 | title: 'Sisältöpohjat' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'id', { 6 | button: 'Contoh', 7 | emptyListMsg: '(Tidak ada contoh didefinisikan)', 8 | insertOption: 'Ganti konten sebenarnya', 9 | options: 'Opsi Contoh', 10 | selectPromptMsg: 'Mohon pilih contoh untuk dibuka di editor', 11 | title: 'Contoh Konten' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'si', { 6 | button: 'අච්චුව', 7 | emptyListMsg: 'කිසිම අච්චුවක් කලින් තීරණය කර ', 8 | insertOption: 'සත්‍ය අන්තර්ගතයන් ප්‍රතිස්ථාපනය කරන්න', 9 | options: 'අච්චු ', 10 | selectPromptMsg: 'කරුණාකර සංස්කරණය සදහා අච්චුවක් ', 11 | title: 'අන්තර්ගත් අච්චුන්' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'nb', { 6 | button: 'Maler', 7 | emptyListMsg: '(Ingen maler definert)', 8 | insertOption: 'Erstatt gjeldende innhold', 9 | options: 'Alternativer for mal', 10 | selectPromptMsg: 'Velg malen du vil åpne i redigeringsverktøyet:', 11 | title: 'Innholdsmaler' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'no', { 6 | button: 'Maler', 7 | emptyListMsg: '(Ingen maler definert)', 8 | insertOption: 'Erstatt gjeldende innhold', 9 | options: 'Alternativer for mal', 10 | selectPromptMsg: 'Velg malen du vil åpne i redigeringsverktøyet:', 11 | title: 'Innholdsmaler' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'cy', { 6 | button: 'Templedi', 7 | emptyListMsg: '(Dim templedi wedi\'u diffinio)', 8 | insertOption: 'Amnewid y cynnwys go iawn', 9 | options: 'Opsiynau Templedi', 10 | selectPromptMsg: 'Dewiswch dempled i\'w agor yn y golygydd', 11 | title: 'Templedi Cynnwys' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'en', { 6 | button: 'Templates', 7 | emptyListMsg: '(No templates defined)', 8 | insertOption: 'Replace actual contents', 9 | options: 'Template Options', 10 | selectPromptMsg: 'Please select the template to open in the editor', 11 | title: 'Content Templates' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'gl', { 6 | button: 'Modelos', 7 | emptyListMsg: '(Non hai modelos definidos)', 8 | insertOption: 'Substituír o contido actual', 9 | options: 'Opcións de modelos', 10 | selectPromptMsg: 'Seleccione o modelo a abrir no editor', 11 | title: 'Modelos de contido' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'sk', { 6 | button: 'Šablóny', 7 | emptyListMsg: '(Žiadne šablóny nedefinované)', 8 | insertOption: 'Nahradiť aktuálny obsah', 9 | options: 'Možnosti šablóny', 10 | selectPromptMsg: 'Prosím vyberte šablónu na otvorenie v editore', 11 | title: 'Šablóny obsahu' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'en-gb', { 6 | button: 'Templates', 7 | emptyListMsg: '(No templates defined)', 8 | insertOption: 'Replace actual contents', 9 | options: 'Template Options', 10 | selectPromptMsg: 'Please select the template to open in the editor', 11 | title: 'Content Templates' 12 | } ); 13 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | 10 | # Change these settings to your own preference 11 | indent_style = space 12 | indent_size = 2 13 | 14 | # We recommend you to keep these unchanged 15 | end_of_line = lf 16 | charset = utf-8 17 | trim_trailing_whitespace = true 18 | insert_final_newline = true 19 | 20 | [*.md] 21 | trim_trailing_whitespace = false 22 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'de', { 6 | button: 'Vorlagen', 7 | emptyListMsg: '(Keine Vorlagen definiert)', 8 | insertOption: 'Aktuelle Inhalte ersetzen', 9 | options: 'Vorlagenoptionen', 10 | selectPromptMsg: 'Klicken Sie auf eine Vorlage, um sie im Editor zu öffnen', 11 | title: 'Inhaltsvorlagen' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'fa', { 6 | button: 'الگوها', 7 | emptyListMsg: '(الگوئی تعریف نشده است)', 8 | insertOption: 'محتویات کنونی جایگزین شوند', 9 | options: 'گزینه‌های الگو', 10 | selectPromptMsg: 'لطفاً الگوی مورد نظر را برای بازکردن در ویرایشگر انتخاب کنید', 11 | title: 'الگوهای محتویات' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'it', { 6 | button: 'Modelli', 7 | emptyListMsg: '(Nessun modello definito)', 8 | insertOption: 'Cancella il contenuto corrente', 9 | options: 'Opzioni del Modello', 10 | selectPromptMsg: 'Seleziona il modello da aprire nell\'editor', 11 | title: 'Contenuto dei modelli' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'ku', { 6 | button: 'ڕووکار', 7 | emptyListMsg: '(هیچ ڕووکارێك دیارینەکراوە)', 8 | insertOption: 'لە شوێن دانانی ئەم پێکهاتانەی ئێستا', 9 | options: 'هەڵبژاردەکانی ڕووکار', 10 | selectPromptMsg: 'ڕووکارێك هەڵبژێره بۆ کردنەوەی له سەرنووسەر:', 11 | title: 'پێکهاتەی ڕووکار' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'pt', { 6 | button: 'Modelos', 7 | emptyListMsg: '(Sem modelos definidos)', 8 | insertOption: 'Substituir conteúdos atuais', 9 | options: 'Opções do modelo', 10 | selectPromptMsg: 'Por favor, selecione o modelo para abrir no editor', 11 | title: 'Conteúdo dos Modelos' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'en-au', { 6 | button: 'Templates', 7 | emptyListMsg: '(No templates defined)', 8 | insertOption: 'Replace actual contents', 9 | options: 'Template Options', // MISSING 10 | selectPromptMsg: 'Please select the template to open in the editor', 11 | title: 'Content Templates' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'en-ca', { 6 | button: 'Templates', 7 | emptyListMsg: '(No templates defined)', 8 | insertOption: 'Replace actual contents', 9 | options: 'Template Options', // MISSING 10 | selectPromptMsg: 'Please select the template to open in the editor', 11 | title: 'Content Templates' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'tt', { 6 | button: 'Шаблоннар', 7 | emptyListMsg: '(Шаблоннар билгеләнмәгән)', 8 | insertOption: 'Әлеге эчтәлекне алмаштыру', 9 | options: 'Шаблон үзлекләре', 10 | selectPromptMsg: 'Please select the template to open in the editor', // MISSING 11 | title: 'Эчтәлек шаблоннары' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'eo', { 6 | button: 'Ŝablonoj', 7 | emptyListMsg: '(Neniu ŝablono difinita)', 8 | insertOption: 'Anstataŭigi la nunan enhavon', 9 | options: 'Opcioj pri ŝablonoj', 10 | selectPromptMsg: 'Bonvolu selekti la ŝablonon por malfermi ĝin en la redaktilo', 11 | title: 'Enhavo de ŝablonoj' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'fr-ca', { 6 | button: 'Modèles', 7 | emptyListMsg: '(Aucun modèle disponible)', 8 | insertOption: 'Remplacer tout le contenu actuel', 9 | options: 'Options de modèles', 10 | selectPromptMsg: 'Sélectionner le modèle à ouvrir dans l\'éditeur', 11 | title: 'Modèles de contenu' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'gu', { 6 | button: 'ટેમ્પ્લેટ', 7 | emptyListMsg: '(કોઈ ટેમ્પ્લેટ ડિફાઇન નથી)', 8 | insertOption: 'મૂળ શબ્દને બદલો', 9 | options: 'ટેમ્પ્લેટના વિકલ્પો', 10 | selectPromptMsg: 'એડિટરમાં ઓપન કરવા ટેમ્પ્લેટ પસંદ કરો (વર્તમાન કન્ટેન્ટ સેવ નહીં થાય):', 11 | title: 'કન્ટેન્ટ ટેમ્પ્લેટ' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'bg', { 6 | button: 'Шаблони', 7 | emptyListMsg: '(Няма дефинирани шаблони)', 8 | insertOption: 'Препокрива актуалното съдържание', 9 | options: 'Опции за шаблона', 10 | selectPromptMsg: 'Изберете шаблон
(текущото съдържание на редактора ще бъде загубено):', 11 | title: 'Шаблони' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'et', { 6 | button: 'Mall', 7 | emptyListMsg: '(Ühtegi malli ei ole defineeritud)', 8 | insertOption: 'Praegune sisu asendatakse', 9 | options: 'Malli valikud', 10 | selectPromptMsg: 'Palun vali mall, mis avada redaktoris
(praegune sisu läheb kaotsi):', 11 | title: 'Sisumallid' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'fr', { 6 | button: 'Modèles', 7 | emptyListMsg: '(Aucun modèle disponible)', 8 | insertOption: 'Remplacer le contenu actuel', 9 | options: 'Options des modèles', 10 | selectPromptMsg: 'Veuillez sélectionner le modèle pour l\'ouvrir dans l\'éditeur', 11 | title: 'Contenu des modèles' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'el', { 6 | button: 'Πρότυπα', 7 | emptyListMsg: '(Δεν έχουν καθοριστεί πρότυπα)', 8 | insertOption: 'Αντικατάσταση υπάρχοντων περιεχομένων', 9 | options: 'Επιλογές Προτύπου', 10 | selectPromptMsg: 'Παρακαλώ επιλέξτε πρότυπο για εισαγωγή στο πρόγραμμα', 11 | title: 'Πρότυπα Περιεχομένου' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'km', { 6 | button: 'ពុម្ព​គំរូ', 7 | emptyListMsg: '(មិន​មាន​ពុម្ព​គំរូ​ត្រូវ​បាន​កំណត់)', 8 | insertOption: 'ជំនួស​ក្នុង​មាតិកា​បច្ចុប្បន្ន', 9 | options: 'ជម្រើស​ពុម្ព​គំរូ', 10 | selectPromptMsg: 'សូម​រើស​ពុម្ព​គំរូ​ដើម្បី​បើក​ក្នុង​កម្មវិធី​សរសេរ​អត្ថបទ', 11 | title: 'ពុម្ព​គំរូ​មាតិកា' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'ru', { 6 | button: 'Шаблоны', 7 | emptyListMsg: '(не определено ни одного шаблона)', 8 | insertOption: 'Заменить текущее содержимое', 9 | options: 'Параметры шаблона', 10 | selectPromptMsg: 'Пожалуйста, выберите, какой шаблон следует открыть в редакторе', 11 | title: 'Шаблоны содержимого' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'sv', { 6 | button: 'Sidmallar', 7 | emptyListMsg: '(Ingen mall är vald)', 8 | insertOption: 'Ersätt aktuellt innehåll', 9 | options: 'Inställningar för mall', 10 | selectPromptMsg: 'Var god välj en mall att använda med editorn
(allt nuvarande innehåll raderas):', 11 | title: 'Sidmallar' 12 | } ); 13 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-nl.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Dutch (nl-nl) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["nl-nl"] = { 8 | cancelText: "Annuleer", 9 | chooseText: "Kies", 10 | clearText: "Wis kleur selectie", 11 | togglePaletteMoreText: 'Meer', 12 | togglePaletteLessText: 'Minder' 13 | }; 14 | 15 | $.extend($.fn.spectrum.defaults, localization); 16 | 17 | })( jQuery ); 18 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'af', { 6 | button: 'Sjablone', 7 | emptyListMsg: '(Geen sjablone gedefineer nie)', 8 | insertOption: 'Vervang huidige inhoud', 9 | options: 'Sjabloon opsies', 10 | selectPromptMsg: 'Kies die sjabloon om te gebruik in die redigeerder (huidige inhoud gaan verlore):', 11 | title: 'Inhoud Sjablone' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'sq', { 6 | button: 'Shabllonet', 7 | emptyListMsg: '(Asnjë shabllon nuk është paradefinuar)', 8 | insertOption: 'Zëvendëso përmbajtjen aktuale', 9 | options: 'Opsionet e Shabllonit', 10 | selectPromptMsg: 'Përzgjidhni shabllonin për të hapur tek redaktuesi', 11 | title: 'Përmbajtja e Shabllonit' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'de', { 6 | WordCount: 'Wörter:', 7 | CharCount: 'Zeichen:', 8 | CharCountWithHTML: 'Zeichen (inkl. HTML):', 9 | Paragraphs: 'Absätze:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Statistik' 13 | }); 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/jp.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'jp', { 6 | WordCount: '単語数:', 7 | CharCount: '文字数:', 8 | CharCountWithHTML: ' (with HTML: %charCountHTML%)', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'ワードカウント' 13 | }); -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'cs', { 6 | button: 'Šablony', 7 | emptyListMsg: '(Není definována žádná šablona)', 8 | insertOption: 'Nahradit aktuální obsah', 9 | options: 'Nastavení šablon', 10 | selectPromptMsg: 'Prosím zvolte šablonu pro otevření v editoru
(aktuální obsah editoru bude ztracen):', 11 | title: 'Šablony obsahu' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'lv', { 6 | button: 'Sagataves', 7 | emptyListMsg: '(Nav norādītas sagataves)', 8 | insertOption: 'Aizvietot pašreizējo saturu', 9 | options: 'Sagataves uzstādījumi', 10 | selectPromptMsg: 'Lūdzu, norādiet sagatavi, ko atvērt editorā
(patreizējie dati tiks zaudēti):', 11 | title: 'Satura sagataves' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'uk', { 6 | button: 'Шаблони', 7 | emptyListMsg: '(Не знайдено жодного шаблону)', 8 | insertOption: 'Замінити поточний вміст', 9 | options: 'Опції шаблону', 10 | selectPromptMsg: 'Оберіть, будь ласка, шаблон для відкриття в редакторі
(поточний зміст буде втрачено):', 11 | title: 'Шаблони змісту' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'nl', { 6 | WordCount: 'Woorden:', 7 | CharCount: 'Tekens:', 8 | CharCountWithHTML: 'Tekens (inclusief HTML):', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Statistieken' 13 | }); -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'sv', { 6 | WordCount: 'Ord:', 7 | CharCount: 'Tecken:', 8 | CharCountWithHTML: 'Tecken (inklusive HTML):', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Statistik' 13 | }); 14 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-ar.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Arabic (ar) localization 3 | // https://github.com/bgrins/spectrum 4 | (function ( $ ) { 5 | 6 | var localization = $.spectrum.localization["ar"] = { 7 | cancelText: "إلغاء", 8 | chooseText: "إختار", 9 | clearText: "إرجاع الألوان على ما كانت", 10 | noColorSelectedText: "لم تختار أي لون", 11 | togglePaletteMoreText: "أكثر", 12 | togglePaletteLessText: "أقل" 13 | }; 14 | 15 | $.extend($.fn.spectrum.defaults, localization); 16 | 17 | })( jQuery ); 18 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'hu', { 6 | button: 'Sablonok', 7 | emptyListMsg: '(Nincs sablon megadva)', 8 | insertOption: 'Kicseréli a jelenlegi tartalmat', 9 | options: 'Sablon opciók', 10 | selectPromptMsg: 'Válassza ki melyik sablon nyíljon meg a szerkesztőben
(a jelenlegi tartalom elveszik):', 11 | title: 'Elérhető sablonok' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'hr', { 6 | WordCount: 'Riječi:', 7 | CharCount: 'Znakova:', 8 | CharCountWithHTML: 'Znakova (uključujući HTML):', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Statistika' 13 | }); 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'pl', { 6 | WordCount: 'Słów:', 7 | CharCount: 'Znaków:', 8 | CharCountWithHTML: 'Znaków (wraz z kodem HTML):', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Statystyka' 13 | }); 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'ru', { 6 | WordCount: 'Слов:', 7 | CharCount: 'Символов:', 8 | CharCountWithHTML: 'Символов (включая HTML):', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Статистика' 13 | }); 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'hi', { 6 | button: 'टॅम्प्लेट', 7 | emptyListMsg: '(कोई टॅम्प्लेट डिफ़ाइन नहीं किया गया है)', 8 | insertOption: 'मूल शब्दों को बदलें', 9 | options: 'Template Options', // MISSING 10 | selectPromptMsg: 'ऍडिटर में ओपन करने हेतु टॅम्प्लेट चुनें(वर्तमान कन्टॅन्ट सेव नहीं होंगे):', 11 | title: 'कन्टेन्ट टॅम्प्लेट' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'hr', { 6 | button: 'Predlošci', 7 | emptyListMsg: '(Nema definiranih predložaka)', 8 | insertOption: 'Zamijeni trenutne sadržaje', 9 | options: 'Opcije predložaka', 10 | selectPromptMsg: 'Molimo odaberite predložak koji želite otvoriti
(stvarni sadržaj će biti izgubljen):', 11 | title: 'Predlošci sadržaja' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'lt', { 6 | button: 'Šablonai', 7 | emptyListMsg: '(Šablonų sąrašas tuščias)', 8 | insertOption: 'Pakeisti dabartinį turinį pasirinktu šablonu', 9 | options: 'Template Options', 10 | selectPromptMsg: 'Pasirinkite norimą šabloną
(Dėmesio! esamas turinys bus prarastas):', 11 | title: 'Turinio šablonai' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'sl', { 6 | button: 'Predloge', 7 | emptyListMsg: '(Ni pripravljenih predlog)', 8 | insertOption: 'Zamenjaj trenutno vsebino', 9 | options: 'Možnosti Predloge', 10 | selectPromptMsg: 'Izberite predlogo, ki jo želite odpreti v urejevalniku
(trenutna vsebina bo izgubljena):', 11 | title: 'Vsebinske predloge' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'el', { 6 | WordCount: 'Λέξεις:', 7 | CharCount: 'Χαρακτήρες:', 8 | CharCountWithHTML: 'Χαρακτήρες (μαζί με HTML):', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Στατιστικά' 13 | }); 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'en', { 6 | WordCount: 'Words:', 7 | CharCount: 'Characters:', 8 | CharCountWithHTML: ' (with HTML: %charCountHTML%)', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Statistics' 13 | }); 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'es', { 6 | WordCount: 'Palabras:', 7 | CharCount: 'Caràcteres:', 8 | CharCountWithHTML: 'Caràcteres (con HTML):', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Estadísticas' 13 | }); 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'eu', { 6 | button: 'Txantiloiak', 7 | emptyListMsg: '(Ez dago definitutako txantiloirik)', 8 | insertOption: 'Ordeztu oraingo edukiak', 9 | options: 'Txantiloi Aukerak', 10 | selectPromptMsg: 'Mesedez txantiloia aukeratu editorean kargatzeko
(orain dauden edukiak galduko dira):', 11 | title: 'Eduki Txantiloiak' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'is', { 6 | button: 'Sniðmát', 7 | emptyListMsg: '(Ekkert sniðmát er skilgreint!)', 8 | insertOption: 'Skipta út raunverulegu innihaldi', 9 | options: 'Template Options', // MISSING 10 | selectPromptMsg: 'Veldu sniðmát til að opna í ritlinum.
(Núverandi innihald víkur fyrir því!):', 11 | title: 'Innihaldssniðmát' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'ms', { 6 | button: 'Templat', 7 | emptyListMsg: '(Tiada Templat Disimpan)', 8 | insertOption: 'Replace actual contents', // MISSING 9 | options: 'Template Options', // MISSING 10 | selectPromptMsg: 'Sila pilih templat untuk dibuka oleh editor
(kandungan sebenar akan hilang):', 11 | title: 'Templat Kandungan' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'nl', { 6 | button: 'Sjablonen', 7 | emptyListMsg: '(Geen sjablonen gedefinieerd)', 8 | insertOption: 'Vervang de huidige inhoud', 9 | options: 'Template opties', 10 | selectPromptMsg: 'Selecteer het sjabloon dat in de editor geopend moet worden (de actuele inhoud gaat verloren):', 11 | title: 'Inhoud sjablonen' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'pl', { 6 | button: 'Szablony', 7 | emptyListMsg: '(Brak zdefiniowanych szablonów)', 8 | insertOption: 'Zastąp obecną zawartość', 9 | options: 'Opcje szablonów', 10 | selectPromptMsg: 'Wybierz szablon do otwarcia w edytorze
(obecna zawartość okna edytora zostanie utracona):', 11 | title: 'Szablony zawartości' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/th.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'th', { 6 | button: 'เทมเพลต', 7 | emptyListMsg: '(ยังไม่มีการกำหนดเทมเพลต)', 8 | insertOption: 'แทนที่เนื้อหาเว็บไซต์ที่เลือก', 9 | options: 'ตัวเลือกเกี่ยวกับเทมเพลท', 10 | selectPromptMsg: 'กรุณาเลือก เทมเพลต เพื่อนำไปแก้ไขในอีดิตเตอร์
(เนื้อหาส่วนนี้จะหายไป):', 11 | title: 'เทมเพลตของส่วนเนื้อหาเว็บไซต์' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'tr', { 6 | button: 'Şablonlar', 7 | emptyListMsg: '(Belirli bir şablon seçilmedi)', 8 | insertOption: 'Mevcut içerik ile değiştir', 9 | options: 'Şablon Seçenekleri', 10 | selectPromptMsg: 'Düzenleyicide açmak için lütfen bir şablon seçin.
(hali hazırdaki içerik kaybolacaktır.):', 11 | title: 'İçerik Şablonları' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'ca', { 6 | WordCount: 'Paraules:', 7 | CharCount: 'Caràcters:', 8 | CharCountWithHTML: 'Caràcters (including HTML):', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Estadístiques' 13 | }); 14 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'bn', { 6 | button: 'টেমপ্লেট', 7 | emptyListMsg: '(কোন টেমপ্লেট ডিফাইন করা নেই)', 8 | insertOption: 'Replace actual contents', // MISSING 9 | options: 'Template Options', // MISSING 10 | selectPromptMsg: 'অনুগ্রহ করে এডিটরে ওপেন করার জন্য টেমপ্লেট বাছাই করুন
(আসল কনটেন্ট হারিয়ে যাবে):', 11 | title: 'কনটেন্ট টেমপ্লেট' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/bs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'bs', { 6 | button: 'Templates', // MISSING 7 | emptyListMsg: '(No templates defined)', // MISSING 8 | insertOption: 'Replace actual contents', // MISSING 9 | options: 'Template Options', // MISSING 10 | selectPromptMsg: 'Please select the template to open in the editor', // MISSING 11 | title: 'Content Templates' // MISSING 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'da', { 6 | button: 'Skabeloner', 7 | emptyListMsg: '(Der er ikke defineret nogen skabelon)', 8 | insertOption: 'Erstat det faktiske indhold', 9 | options: 'Skabelon muligheder', 10 | selectPromptMsg: 'Vælg den skabelon, som skal åbnes i editoren (nuværende indhold vil blive overskrevet):', 11 | title: 'Indholdsskabeloner' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'mk', { 6 | button: 'Templates', // MISSING 7 | emptyListMsg: '(No templates defined)', // MISSING 8 | insertOption: 'Replace actual contents', // MISSING 9 | options: 'Template Options', // MISSING 10 | selectPromptMsg: 'Please select the template to open in the editor', // MISSING 11 | title: 'Content Templates' // MISSING 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'mn', { 6 | button: 'Загварууд', 7 | emptyListMsg: '(Загвар тодорхойлогдоогүй байна)', 8 | insertOption: 'Одоогийн агууллагыг дарж бичих', 9 | options: 'Template Options', // MISSING 10 | selectPromptMsg: 'Загварыг нээж editor-рүү сонгож оруулна уу
(Одоогийн агууллагыг устаж магадгүй):', 11 | title: 'Загварын агуулга' 12 | } ); 13 | -------------------------------------------------------------------------------- /scripts/spectrum/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "spectrum", 3 | "version": "1.7.1", 4 | "main": ["./spectrum.css", "./spectrum.js"], 5 | "docs": "http://bgrins.github.com/spectrum", 6 | "homepage": "http://bgrins.github.com/spectrum", 7 | "demo": "http://jsfiddle.net/bgrins/ctkY3/", 8 | "dependencies": { 9 | "jquery": ">=1.7.2" 10 | }, 11 | "ignore": [ 12 | ".gitignore", 13 | ".travis.yml", 14 | "build/", 15 | "docs/", 16 | "example/", 17 | "Gruntfile.js", 18 | "LICENSE", 19 | "README.md", 20 | "test/" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-zh-cn.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Simplified Chinese (zh-cn) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["zh-cn"] = { 8 | cancelText: "取消", 9 | chooseText: "选择", 10 | clearText: "清除", 11 | togglePaletteMoreText: "更多选项", 12 | togglePaletteLessText: "隐藏", 13 | noColorSelectedText: "尚未选择任何颜色" 14 | }; 15 | 16 | $.extend($.fn.spectrum.defaults, localization); 17 | 18 | })( jQuery ); 19 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-zh-tw.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Traditional Chinese (zh-tw) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["zh-tw"] = { 8 | cancelText: "取消", 9 | chooseText: "選擇", 10 | clearText: "清除", 11 | togglePaletteMoreText: "更多選項", 12 | togglePaletteLessText: "隱藏", 13 | noColorSelectedText: "尚未選擇任何顏色" 14 | }; 15 | 16 | $.extend($.fn.spectrum.defaults, localization); 17 | 18 | })( jQuery ); 19 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'es', { 6 | button: 'Plantillas', 7 | emptyListMsg: '(No hay plantillas definidas)', 8 | insertOption: 'Reemplazar el contenido actual', 9 | options: 'Opciones de plantillas', 10 | selectPromptMsg: 'Por favor selecciona la plantilla a abrir en el editor
(el contenido actual se perderá):', 11 | title: 'Contenido de Plantillas' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'vi', { 6 | button: 'Mẫu dựng sẵn', 7 | emptyListMsg: '(Không có mẫu dựng sẵn nào được định nghĩa)', 8 | insertOption: 'Thay thế nội dung hiện tại', 9 | options: 'Tùy chọn mẫu dựng sẵn', 10 | selectPromptMsg: 'Hãy chọn mẫu dựng sẵn để mở trong trình biên tập
(nội dung hiện tại sẽ bị mất):', 11 | title: 'Nội dung Mẫu dựng sẵn' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'ca', { 6 | button: 'Plantilles', 7 | emptyListMsg: '(No hi ha plantilles definides)', 8 | insertOption: 'Reemplaça el contingut actual', 9 | options: 'Opcions de plantilla', 10 | selectPromptMsg: 'Seleccioneu una plantilla per usar a l\'editor
(per defecte s\'elimina el contingut actual):', 11 | title: 'Plantilles de contingut' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'fo', { 6 | button: 'Skabelónir', 7 | emptyListMsg: '(Ongar skabelónir tøkar)', 8 | insertOption: 'Yvirskriva núverandi innihald', 9 | options: 'Møguleikar fyri Template', 10 | selectPromptMsg: 'Vinarliga vel ta skabelón, ið skal opnast í tekstviðgeranum
(Hetta yvirskrivar núverandi innihald):', 11 | title: 'Innihaldsskabelónir' 12 | } ); 13 | -------------------------------------------------------------------------------- /ckeditor/plugins/clearall/plugin.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.add("clearall", 2 | { 3 | require: 'notification', 4 | icons: 'clearall', 5 | init: function (editor) { 6 | editor.addCommand('clearall', { 7 | modes: {wysiwyg: 1, source: 1}, 8 | exec: function (editor) { 9 | editor.setData(''); 10 | }, 11 | canUndo: false 12 | }); 13 | 14 | editor.ui.addButton && editor.ui.addButton('ClearAll', { 15 | label: "清空文档", 16 | command: 'clearall', 17 | toolbar: 'insert,50' 18 | }); 19 | } 20 | }); 21 | -------------------------------------------------------------------------------- /ckeditor/plugins/templates/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'templates', 'sr', { 6 | button: 'Обрасци', 7 | emptyListMsg: '(Нема дефинисаних образаца)', 8 | insertOption: 'Replace actual contents', // MISSING 9 | options: 'Template Options', // MISSING 10 | selectPromptMsg: 'Молимо Вас да одаберете образац који ће бити примењен на страницу (тренутни садржај ће бити обрисан):', 11 | title: 'Обрасци за садржај' 12 | } ); 13 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-he.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Hebrew (he) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["he"] = { 8 | cancelText: "בטל בחירה", 9 | chooseText: "בחר צבע", 10 | clearText: "אפס בחירה", 11 | noColorSelectedText: "לא נבחר צבע", 12 | togglePaletteMoreText: "עוד צבעים", 13 | togglePaletteLessText: "פחות צבעים" 14 | }; 15 | 16 | $.extend($.fn.spectrum.defaults, localization); 17 | 18 | })( jQuery ); 19 | -------------------------------------------------------------------------------- /scripts/spectrum/i18n/jquery.spectrum-pl.js: -------------------------------------------------------------------------------- 1 | // Spectrum Colorpicker 2 | // Polish (pl) localization 3 | // https://github.com/bgrins/spectrum 4 | 5 | (function ( $ ) { 6 | 7 | var localization = $.spectrum.localization["pl"] = { 8 | cancelText: "Anuluj", 9 | chooseText: "Wybierz", 10 | clearText: "Usuń wybór koloru", 11 | noColorSelectedText: "Nie wybrano koloru", 12 | togglePaletteMoreText: "Więcej", 13 | togglePaletteLessText: "Mniej" 14 | }; 15 | 16 | $.extend($.fn.spectrum.defaults, localization); 17 | 18 | })( jQuery ); 19 | -------------------------------------------------------------------------------- /ckeditor/plugins/wordcount/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang('wordcount', 'pt-br', { 6 | WordCount: 'Contagem de palavras:', 7 | CharCount: 'Contagem de caracteres:', 8 | CharCountWithHTML: 'Characters (including HTML):', 9 | Paragraphs: 'Paragraphs:', 10 | pasteWarning: 'Content can not be pasted because it is above the allowed limit', 11 | Selected: 'Selected: ', 12 | title: 'Estatísticas' 13 | }); 14 | --------------------------------------------------------------------------------