├── .gitignore ├── DjangoBlog ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── LICENSE ├── README.md ├── blog ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templatetags │ ├── __init__.py │ └── blog_tags.py ├── tests.py └── views.py ├── manage.py ├── requirements.txt ├── static ├── bootstrap │ ├── css │ │ └── default.css │ └── js │ │ └── highlight.pack.js ├── css │ ├── bootstrap.css │ ├── font-awesome.css │ ├── font-awesome.min.css │ └── main.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── home.jpg ├── img │ ├── blog01.jpg │ ├── favicon.png │ ├── iletisim.jpg │ ├── loader.gif │ ├── portfolio │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── port01.jpg │ │ ├── port02.jpg │ │ ├── port03.jpg │ │ ├── port04.jpg │ │ ├── port05.jpg │ │ └── port06.jpg │ ├── user.png │ └── zoom.png └── js │ ├── bootstrap.min.js │ ├── gulpfile.js │ ├── hover.zoom.conf.js │ ├── hover.zoom.js │ └── jquery.js ├── staticfiles ├── admin │ ├── css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── rtl.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── prepopulate_init.js │ │ ├── timeparse.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE-JQUERY.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ └── xregexp │ │ ├── LICENSE-XREGEXP.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js ├── bootstrap │ ├── css │ │ └── default.css │ └── js │ │ └── highlight.pack.js ├── ckeditor │ ├── ckeditor-init.js │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── adobeair │ │ │ │ └── plugin.js │ │ │ ├── ajax │ │ │ │ └── plugin.js │ │ │ ├── autoembed │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── tr.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── autogrow │ │ │ │ └── plugin.js │ │ │ ├── autolink │ │ │ │ └── plugin.js │ │ │ ├── bbcode │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── codesnippet │ │ │ │ ├── dialogs │ │ │ │ │ └── codesnippet.js │ │ │ │ ├── icons │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── codesnippet.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── samples │ │ │ │ │ └── codesnippet.html │ │ │ ├── codesnippetgeshi │ │ │ │ └── plugin.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── devtools │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── divarea │ │ │ │ └── plugin.js │ │ │ ├── docprops │ │ │ │ ├── dialogs │ │ │ │ │ └── docprops.js │ │ │ │ ├── icons │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ ├── docprops.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ │ └── docprops.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── embed │ │ │ │ ├── icons │ │ │ │ │ ├── embed.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── embed.png │ │ │ │ └── plugin.js │ │ │ ├── embedbase │ │ │ │ ├── dialogs │ │ │ │ │ └── embedbase.js │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── embedsemantic │ │ │ │ ├── icons │ │ │ │ │ ├── embedsemantic.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── embedsemantic.png │ │ │ │ └── plugin.js │ │ │ ├── filetools │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── image2 │ │ │ │ ├── dialogs │ │ │ │ │ └── image2.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── image.png │ │ │ │ │ └── image.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── language │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── language.png │ │ │ │ │ └── language.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── lineutils │ │ │ │ └── plugin.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── mathjax │ │ │ │ ├── dialogs │ │ │ │ │ └── mathjax.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── mathjax.png │ │ │ │ │ └── mathjax.png │ │ │ │ ├── images │ │ │ │ │ └── loader.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── menubutton │ │ │ │ └── plugin.js │ │ │ ├── notification │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── notificationaggregator │ │ │ │ └── plugin.js │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── placeholder │ │ │ │ ├── dialogs │ │ │ │ │ └── placeholder.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── sharedspace │ │ │ │ └── plugin.js │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ ├── sourcedialog │ │ │ │ ├── dialogs │ │ │ │ │ └── sourcedialog.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ │ └── sourcedialog.png │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ └── sourcedialog.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── stylesheetparser │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableresize │ │ │ │ └── plugin.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── uicolor │ │ │ │ ├── dialogs │ │ │ │ │ └── uicolor.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── uicolor.png │ │ │ │ │ └── uicolor.png │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── yui │ │ │ │ │ ├── assets │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ └── yui.css │ │ │ │ │ └── yui.js │ │ │ ├── uploadimage │ │ │ │ └── plugin.js │ │ │ ├── uploadwidget │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── widget │ │ │ │ ├── images │ │ │ │ │ └── handle.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── wsc.css │ │ │ └── xml │ │ │ │ └── plugin.js │ │ ├── skins │ │ │ ├── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ ├── file-icons │ │ ├── doc.png │ │ ├── file.png │ │ ├── pdf.png │ │ ├── ppt.png │ │ ├── swf.png │ │ ├── txt.png │ │ └── xls.png │ └── galleriffic │ │ ├── css │ │ ├── basic.css │ │ ├── black.css │ │ ├── caption.png │ │ ├── galleriffic-1.css │ │ ├── galleriffic-2.css │ │ ├── galleriffic-3.css │ │ ├── galleriffic-4.css │ │ ├── galleriffic-5.css │ │ ├── jush.css │ │ ├── loader.gif │ │ ├── loaderWhite.gif │ │ ├── nextPageArrow.gif │ │ ├── nextPageArrowWhite.gif │ │ ├── prevPageArrow.gif │ │ ├── prevPageArrowWhite.gif │ │ └── white.css │ │ └── js │ │ ├── jquery-1.3.2.js │ │ ├── jquery.galleriffic.js │ │ ├── jquery.history.js │ │ ├── jquery.opacityrollover.js │ │ └── jush.js ├── css │ ├── bootstrap.css │ ├── draceditor.css │ ├── font-awesome.css │ ├── font-awesome.min.css │ └── main.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── home.jpg ├── img │ ├── blog01.jpg │ ├── favicon.png │ ├── iletisim.jpg │ ├── loader.gif │ ├── portfolio │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── port01.jpg │ │ ├── port02.jpg │ │ ├── port03.jpg │ │ ├── port04.jpg │ │ ├── port05.jpg │ │ └── port06.jpg │ ├── user.png │ └── zoom.png ├── js │ ├── bootstrap.min.js │ ├── draceditor.js │ ├── gulpfile.js │ ├── hover.zoom.conf.js │ ├── hover.zoom.js │ └── jquery.js ├── mptt │ ├── arrow-move.png │ ├── disclosure-down.png │ ├── disclosure-right.png │ ├── draggable-admin.css │ └── draggable-admin.js └── plugins │ ├── css │ ├── ace.min.css │ └── semantic.min.css │ ├── fonts │ ├── icons.eot │ ├── icons.otf │ ├── icons.svg │ ├── icons.ttf │ ├── icons.woff │ └── icons.woff2 │ └── js │ ├── ace.js │ ├── emojis.min.js │ ├── ext-language_tools.js │ ├── highlight.min.js │ ├── jquery.min.js │ ├── mode-markdown.js │ ├── semantic.min.js │ ├── snippets │ └── markdown.js │ └── theme-github.js └── templates ├── 404.html ├── 500.html ├── about.html ├── admin └── base_site.html ├── base.html ├── blog_list.html ├── category_page.html ├── contact.html ├── home.html ├── post.html ├── robots.html └── tags.html /DjangoBlog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/DjangoBlog/__init__.py -------------------------------------------------------------------------------- /blog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/blog/__init__.py -------------------------------------------------------------------------------- /blog/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BlogConfig(AppConfig): 5 | name = 'blog' 6 | -------------------------------------------------------------------------------- /blog/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/blog/migrations/__init__.py -------------------------------------------------------------------------------- /blog/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/blog/templatetags/__init__.py -------------------------------------------------------------------------------- /blog/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django==1.10.5 2 | django-mptt==0.8.7 3 | django-imagekit==3.3 4 | pillow 5 | django-disqus==0.5 6 | django-ckeditor 7 | django-disqus 8 | 9 | -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/home.jpg -------------------------------------------------------------------------------- /static/img/blog01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/blog01.jpg -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/iletisim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/iletisim.jpg -------------------------------------------------------------------------------- /static/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/loader.gif -------------------------------------------------------------------------------- /static/img/portfolio/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/portfolio/1.jpg -------------------------------------------------------------------------------- /static/img/portfolio/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/portfolio/2.jpg -------------------------------------------------------------------------------- /static/img/portfolio/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/portfolio/3.jpg -------------------------------------------------------------------------------- /static/img/portfolio/port01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/portfolio/port01.jpg -------------------------------------------------------------------------------- /static/img/portfolio/port02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/portfolio/port02.jpg -------------------------------------------------------------------------------- /static/img/portfolio/port03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/portfolio/port03.jpg -------------------------------------------------------------------------------- /static/img/portfolio/port04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/portfolio/port04.jpg -------------------------------------------------------------------------------- /static/img/portfolio/port05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/portfolio/port05.jpg -------------------------------------------------------------------------------- /static/img/portfolio/port06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/portfolio/port06.jpg -------------------------------------------------------------------------------- /static/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/user.png -------------------------------------------------------------------------------- /static/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/static/img/zoom.png -------------------------------------------------------------------------------- /static/js/hover.zoom.conf.js: -------------------------------------------------------------------------------- 1 | $(function(){$(".blue").hoverZoom({overlayColor:"#3498db",zoom:0}),$(".green").hoverZoom({overlayColor:"#1abc9c",zoom:0}),$(".pink").hoverZoom({overlayColor:"#bd2e75",zoom:0}),$(".black").hoverZoom({overlayColor:"#2f2f2f",zoom:0}),$(".alizarin").hoverZoom({overlayColor:"#e74c3c",zoom:0})}); -------------------------------------------------------------------------------- /staticfiles/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | Weights used in this project: Light (300), Regular (400), Bold (700) 3 | -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/img/README.txt: -------------------------------------------------------------------------------- 1 | All icons are taken from Font Awesome (http://fontawesome.io/) project. 2 | The Font Awesome font is licensed under the SIL OFL 1.1: 3 | - http://scripts.sil.org/OFL 4 | 5 | SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG 6 | Font-Awesome-SVG-PNG is licensed under the MIT license (see file license 7 | in current folder). 8 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/js/cancel.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | $(function() { 4 | $('.cancel-link').click(function(e) { 5 | e.preventDefault(); 6 | window.history.back(); 7 | }); 8 | }); 9 | })(django.jQuery); 10 | -------------------------------------------------------------------------------- /staticfiles/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | /*global django:true, jQuery:false*/ 2 | /* Puts the included jQuery into our own namespace using noConflict and passing 3 | * it 'true'. This ensures that the included jQuery doesn't pollute the global 4 | * namespace (i.e. this preserves pre-existing values for both window.$ and 5 | * window.jQuery). 6 | */ 7 | var django = django || {}; 8 | django.jQuery = jQuery.noConflict(true); 9 | -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- 1 | (function(c){c.fn.prepopulate=function(e,f,g){return this.each(function(){var a=c(this),b=function(){if(!a.data("_changed")){var b=[];c.each(e,function(a,d){d=c(d);0",pathName:"שומר מקום"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/placeholder/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("placeholder","ja",{title:"プレースホルダのプロパティ",toolbar:"プレースホルダを作成",name:"プレースホルダ名",invalidName:"プレースホルダは空欄にできません。また、[, ], <, > の文字は使用できません。",pathName:"placeholder"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/placeholder/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("placeholder","ko",{title:"플레이스홀더 속성",toolbar:"플레이스홀더",name:"플레이스홀더 이름",invalidName:"플레이스홀더는 빈칸이거나 다음 문자열을 포함할 수 없습니다: [, ], <, >",pathName:"플레이스홀더"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/placeholder/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("placeholder","ku",{title:"خاسیەتی شوێن هەڵگر",toolbar:"درووستکردنی شوێن هەڵگر",name:"ناوی شوێنگر",invalidName:"شوێنگر نابێت بەتاڵ بێت یان هەریەکێک لەم نووسانەی خوارەوەی تێدابێت: [, ], <, >",pathName:"شوێنگر"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/placeholder/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("placeholder","tt",{title:"Тутырма үзлекләре",toolbar:"Тутырма",name:"Тутырма исеме",invalidName:"Тутырма буш булмаска тиеш һәм эчендә алдагы символлар булмаска тиеш: [, ], <, >",pathName:"тутырма"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/placeholder/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("placeholder","vi",{title:"Thuộc tính đặt chỗ",toolbar:"Tạo đặt chỗ",name:"Tên giữ chỗ",invalidName:"Giữ chỗ không thể để trống và không thể chứa bất kỳ ký tự sau: [,], <, >",pathName:"giữ chỗ"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/placeholder/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("placeholder","zh-cn",{title:"占位符属性",toolbar:"占位符",name:"占位符名称",invalidName:"占位符名称不能为空,并且不能包含以下字符:[、]、<、>",pathName:"占位符"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/placeholder/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("placeholder","zh",{title:"預留位置屬性",toolbar:"建立預留位置",name:"Placeholder 名稱",invalidName:"「預留位置」不可為空白且不可包含以下字元:[, ], <, >",pathName:"預留位置"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","af",{toolbar:"Bron",title:"Bron"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ar",{toolbar:"المصدر",title:"المصدر"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bg",{toolbar:"Източник",title:"Източник"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bn",{toolbar:"সোর্স",title:"সোর্স"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bs",{toolbar:"HTML kôd",title:"HTML kôd"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ca",{toolbar:"Codi font",title:"Codi font"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","cs",{toolbar:"Zdroj",title:"Zdroj"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","cy",{toolbar:"HTML",title:"HTML"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","da",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","de",{toolbar:"Quellcode",title:"Quellcode"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","el",{toolbar:"Κώδικας",title:"Κώδικας"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-au",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-ca",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-gb",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","eo",{toolbar:"Fonto",title:"Fonto"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","es",{toolbar:"Fuente HTML",title:"Fuente HTML"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","et",{toolbar:"Lähtekood",title:"Lähtekood"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","eu",{toolbar:"HTML Iturburua",title:"HTML Iturburua"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fa",{toolbar:"منبع",title:"منبع"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fi",{toolbar:"Koodi",title:"Koodi"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fo",{toolbar:"Kelda",title:"Kelda"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fr-ca",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fr",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","gl",{toolbar:"Orixe",title:"Orixe"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","gu",{toolbar:"મૂળ કે પ્રાથમિક દસ્તાવેજ",title:"મૂળ કે પ્રાથમિક દસ્તાવેજ"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","he",{toolbar:"מקור",title:"מקור"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hi",{toolbar:"सोर्स",title:"सोर्स"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hr",{toolbar:"Kôd",title:"Kôd"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hu",{toolbar:"Forráskód",title:"Forráskód"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","id",{toolbar:"Sumber",title:"Sumber"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","is",{toolbar:"Kóði",title:"Kóði"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","it",{toolbar:"Sorgente",title:"Sorgente"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ja",{toolbar:"ソース",title:"ソース"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ka",{toolbar:"კოდები",title:"კოდები"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","km",{toolbar:"អក្សរ​កូដ",title:"អក្សរ​កូដ"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ko",{toolbar:"소스",title:"소스"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ku",{toolbar:"سەرچاوە",title:"سەرچاوە"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","lt",{toolbar:"Šaltinis",title:"Šaltinis"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","lv",{toolbar:"HTML kods",title:"HTML kods"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","mn",{toolbar:"Код",title:"Код"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ms",{toolbar:"Sumber",title:"Sumber"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","nb",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","nl",{toolbar:"Broncode",title:"Broncode"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","no",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pl",{toolbar:"Źródło dokumentu",title:"Źródło dokumentu"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pt-br",{toolbar:"Código-Fonte",title:"Código-Fonte"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pt",{toolbar:"Fonte",title:"Fonte"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ro",{toolbar:"Sursa",title:"Sursa"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ru",{toolbar:"Исходник",title:"Источник"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","si",{toolbar:"මුලාශ්‍රය",title:"මුලාශ්‍රය"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sk",{toolbar:"Zdroj",title:"Zdroj"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sl",{toolbar:"Izvorna koda",title:"Izvorna koda"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sq",{toolbar:"Burimi",title:"Burimi"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sr-latn",{toolbar:"Kôd",title:"Kôd"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sr",{toolbar:"Kôд",title:"Kôд"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sv",{toolbar:"Källa",title:"Källa"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","th",{toolbar:"ดูรหัส HTML",title:"ดูรหัส HTML"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","tr",{toolbar:"Kaynak",title:"Kaynak"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","tt",{toolbar:"Чыганак",title:"Чыганак"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ug",{toolbar:"مەنبە",title:"مەنبە"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","uk",{toolbar:"Джерело",title:"Джерело"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","vi",{toolbar:"Mã HTML",title:"Mã HTML"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","zh-cn",{toolbar:"源码",title:"源码"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","zh",{toolbar:"原始碼",title:"原始碼"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","af",{title:"UI kleur keuse",preview:"Voorskou",config:"Voeg hierdie in jou config.js lêr in",predefined:"Voordefinieerte kleur keuses"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","ar",{title:"منتقي الألوان",preview:"معاينة مباشرة",config:"قص السطر إلى الملف config.js",predefined:"مجموعات ألوان معرفة مسبقا"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","bg",{title:"ПИ избор на цвят",preview:"Преглед",config:"Вмъкнете този низ във Вашия config.js fajl",predefined:"Предефинирани цветови палитри"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","ca",{title:"UI Color Picker",preview:"Vista prèvia",config:"Enganxa aquest text dins el fitxer config.js",predefined:"Conjunts de colors predefinits"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","cs",{title:"Výběr barvy rozhraní",preview:"Živý náhled",config:"Vložte tento řetězec do vašeho souboru config.js",predefined:"Přednastavené sady barev"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","cy",{title:"Dewisydd Lliwiau'r UI",preview:"Rhagolwg Byw",config:"Gludwch y llinyn hwn i'ch ffeil config.js",predefined:"Setiau lliw wedi'u cyn-ddiffinio"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","da",{title:"Brugerflade på farvevælger",preview:"Vis liveeksempel",config:"Indsæt denne streng i din config.js fil",predefined:"Prædefinerede farveskemaer"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","de",{title:"UI-Farbpipette",preview:"Live-Vorschau",config:"Fügen Sie diese Zeichenfolge in die Datei config.js ein.",predefined:"Vordefinierte Farbsätze"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","el",{title:"Διεπαφή Επιλογής Χρωμάτων",preview:"Ζωντανή Προεπισκόπηση",config:"Επικολλήστε αυτό το κείμενο στο αρχείο config.js",predefined:"Προκαθορισμένα σύνολα χρωμάτων"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","en-gb",{title:"UI Colour Picker",preview:"Live preview",config:"Paste this string into your config.js file",predefined:"Predefined colour sets"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","en",{title:"UI Color Picker",preview:"Live preview",config:"Paste this string into your config.js file",predefined:"Predefined color sets"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","eo",{title:"UI Kolorselektilo",preview:"Vidigi la aspekton",config:"Gluu tiun signoĉenon en vian dosieron config.js",predefined:"Antaŭdifinita koloraro"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","es",{title:"Recolector de Color de Interfaz de Usuario",preview:"Vista previa en vivo",config:"Pega esta cadena en tu archivo config.js",predefined:"Conjuntos predefinidos de colores"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","et",{title:"Värvivalija kasutajaliides",preview:"Automaatne eelvaade",config:"Aseta see sõne oma config.js faili.",predefined:"Eelmääratud värvikomplektid"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","eu",{title:"EI Kolore Hautatzailea",preview:"Zuzeneko aurreikuspena",config:"Itsatsi karaktere kate hau zure config.js fitxategian.",predefined:"Aurredefinitutako kolore multzoak"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","fa",{title:"انتخاب رنگ رابط کاربری",preview:"پیش‌نمایش زنده",config:"این رشته را در پروندهٔ config.js خود رونوشت کنید.",predefined:"مجموعه رنگ از پیش تعریف شده"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","fi",{title:"Käyttöliittymän väripaletti",preview:"Esikatsele heti",config:"Liitä tämä merkkijono config.js tiedostoosi",predefined:"Esimääritellyt värijoukot"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","fr-ca",{title:"Sélecteur de couleur",preview:"Aperçu",config:"Insérez cette ligne dans votre fichier config.js",predefined:"Ensemble de couleur prédéfinies"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","fr",{title:"UI Sélecteur de couleur",preview:"Aperçu",config:"Collez cette chaîne de caractères dans votre fichier config.js",predefined:"Palettes de couleurs prédéfinies"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","gl",{title:"Recolledor de cor da interface de usuario",preview:"Vista previa en vivo",config:"Pegue esta cadea no seu ficheiro config.js",predefined:"Conxuntos predefinidos de cores"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","he",{title:"בחירת צבע ממשק משתמש",preview:"תצוגה מקדימה",config:"הדבק את הטקסט הבא לתוך הקובץ config.js",predefined:"קבוצות צבעים מוגדרות מראש"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","hr",{title:"UI odabir boja",preview:"Pregled uživo",config:"Zalijepite ovaj tekst u Vašu config.js datoteku.",predefined:"Već postavljeni setovi boja"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","hu",{title:"UI Színválasztó",preview:"Élő előnézet",config:"Illessze be ezt a szöveget a config.js fájlba",predefined:"Előre definiált színbeállítások"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","id",{title:"Pengambil Warna UI",preview:"Pratinjau",config:"Tempel string ini ke arsip config.js anda.",predefined:"Set warna belum terdefinisi."}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","it",{title:"Selettore Colore UI",preview:"Anteprima Live",config:"Incolla questa stringa nel tuo file config.js",predefined:"Set di colori predefiniti"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","ja",{title:"UIカラーピッカー",preview:"ライブプレビュー",config:"この文字列を config.js ファイルへ貼り付け",predefined:"既定カラーセット"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","km",{title:"ប្រដាប់​រើស​ពណ៌",preview:"មើល​ជាមុន​ផ្ទាល់",config:"បិទ​ភ្ជាប់​ខ្សែ​អក្សរ​នេះ​ទៅ​ក្នុង​ឯកសារ config.js របស់​អ្នក",predefined:"ឈុត​ពណ៌​កំណត់​រួច​ស្រេច"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","ko",{title:"UI 색상 선택기",preview:"미리보기",config:"이 문자열을 config.js 에 붙여넣으세요",predefined:"미리 정의된 색상"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","ku",{title:"هەڵگری ڕەنگ بۆ ڕووکاری بەکارهێنەر",preview:"پێشبینین بە زیندوویی",config:"ئەم دەقانە بلکێنە بە پەڕگەی config.js-fil",predefined:"کۆمەڵە ڕەنگە دیاریکراوەکانی پێشوو"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","lv",{title:"UI krāsas izvēle",preview:"Priekšskatījums",config:"Ielīmējiet šo rindu jūsu config.js failā",predefined:"Predefinēti krāsu komplekti"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","mk",{title:"Палета со бои",preview:"Преглед",config:"Залепи го овој текст во config.js датотеката",predefined:"Предефинирани множества на бои"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","nb",{title:"Fargevelger for brukergrensesnitt",preview:"Forhåndsvisning i sanntid",config:"Lim inn følgende tekst i din config.js-fil",predefined:"Forhåndsdefinerte fargesett"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","nl",{title:"UI Kleurenkiezer",preview:"Live voorbeeld",config:"Plak deze tekst in jouw config.js bestand",predefined:"Voorgedefinieerde kleurensets"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","no",{title:"Fargevelger for brukergrensesnitt",preview:"Forhåndsvisning i sanntid",config:"Lim inn følgende tekst i din config.js-fil",predefined:"Forhåndsdefinerte fargesett"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","pl",{title:"Wybór koloru interfejsu",preview:"Podgląd na żywo",config:"Wklej poniższy łańcuch znaków do pliku config.js:",predefined:"Predefiniowane zestawy kolorów"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","pt-br",{title:"Paleta de Cores",preview:"Visualização ao vivo",config:"Cole o texto no seu arquivo config.js",predefined:"Conjuntos de cores predefinidos"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","pt",{title:"Seleção de Cor da IU",preview:"Pré-visualização ao vivo ",config:"Colar este item no seu ficheiro config.js",predefined:"Conjuntos de cor predefinidos"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","ru",{title:"Выбор цвета интерфейса",preview:"Предпросмотр в реальном времени",config:"Вставьте эту строку в файл config.js",predefined:"Предопределенные цветовые схемы"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","si",{title:"වර්ණ ",preview:"සජීව නැවත නරභීම",config:"මෙම අක්ෂර පේලිය ගෙන config.js ලිපිගොනුව මතින් තබන්න",predefined:"කලින් වෙන්කරගත් පරිදි ඇති වර්ණ"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","sk",{title:"UI výber farby",preview:"Živý náhľad",config:"Vložte tento reťazec do vášho config.js súboru",predefined:"Preddefinované sady farieb"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","sl",{title:"UI Izbiralec Barve",preview:"Živi predogled",config:"Prilepite ta niz v vašo config.js datoteko",predefined:"Vnaprej določeni barvni kompleti"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","sq",{title:"UI Mbledhës i Ngjyrave",preview:"Parapamje direkte",config:"Hidhni këtë varg në skedën tuaj config.js",predefined:"Setet e paradefinuara të ngjyrave"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","sv",{title:"UI Färgväljare",preview:"Live förhandsgranskning",config:"Klistra in den här strängen i din config.js-fil",predefined:"Fördefinierade färguppsättningar"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","tr",{title:"UI Renk Seçici",preview:"Canlı ön izleme",config:"Bu yazıyı config.js dosyasının içine yapıştırın",predefined:"Önceden tanımlı renk seti"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","tt",{title:"Интерфейс төсләрен сайлау",preview:"Тере карап алу",config:"Бу юлны config.js файлына языгыз",predefined:"Баштан билгеләнгән төсләр җыелмасы"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","ug",{title:"ئىشلەتكۈچى ئارايۈزى رەڭ تاللىغۇچ",preview:"شۇئان ئالدىن كۆزىتىش",config:"بۇ ھەرپ تىزىقىنى config.js ھۆججەتكە چاپلايدۇ",predefined:"ئالدىن بەلگىلەنگەن رەڭلەر"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","uk",{title:"Color Picker Інтерфейс",preview:"Перегляд наживо",config:"Вставте цей рядок у файл config.js",predefined:"Стандартний набір кольорів"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","vi",{title:"Giao diện người dùng Color Picker",preview:"Xem trước trực tiếp",config:"Dán chuỗi này vào tập tin config.js của bạn",predefined:"Tập màu định nghĩa sẵn"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","zh-cn",{title:"用户界面颜色选择器",preview:"即时预览",config:"粘贴此字符串到您的 config.js 文件",predefined:"预定义颜色集"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/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("uicolor","zh",{title:"UI 色彩選擇器",preview:"即時預覽",config:"請將此段字串複製到您的 config.js 檔案中。",predefined:"設定預先定義的色彩"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uploadwidget/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("uploadwidget","zh-cn",{abort:"上传已被用户中止。",doneOne:"文件上传成功。",doneMany:"成功上传了 %1 个文件。",uploadOne:"正在上传文件({percentage}%)……",uploadMany:"正在上传文件,{max} 中的 {current}({percentage}%)……"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/uploadwidget/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("uploadwidget","zh",{abort:"上傳由使用者放棄。",doneOne:"檔案成功上傳。",doneMany:"成功上傳 %1 檔案。",uploadOne:"正在上傳檔案({percentage}%)...",uploadMany:"正在上傳檔案,{max} 中的 {current} 已完成({percentage}%)..."}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","af",{move:"Klik en trek on te beweeg"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","ar",{move:"إضغط و إسحب للتحريك"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","bg",{move:"Кликни и влачи, за да преместиш"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","ca",{move:"Clicar i arrossegar per moure"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","cs",{move:"Klepněte a táhněte pro přesunutí"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","cy",{move:"Clcio a llusgo i symud"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","da",{move:"Klik og træk for at flytte"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","de",{move:"Zum Verschieben anwählen und ziehen"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","el",{move:"Κάνετε κλικ και σύρετε το ποντίκι για να μετακινήστε"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","en-gb",{move:"Click and drag to move"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","en",{move:"Click and drag to move"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","eo",{move:"klaki kaj treni por movi"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","es",{move:"Dar clic y arrastrar para mover"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","fa",{move:"کلیک و کشیدن برای جابجایی"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","fi",{move:"Siirrä klikkaamalla ja raahaamalla"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","fr",{move:"Cliquer et glisser pour déplacer"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","gl",{move:"Prema e arrastre para mover"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","he",{move:"לחץ וגרור להזזה"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","hr",{move:"Klikni i povuci da pomakneš"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","hu",{move:"Kattints és húzd a mozgatáshoz"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","it",{move:"Fare clic e trascinare per spostare"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","ja",{move:"ドラッグして移動"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","km",{move:"ចុច​ហើយ​ទាញ​ដើម្បី​ផ្លាស់​ទី"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","ko",{move:"움직이려면 클릭 후 드래그 하세요"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","ku",{move:"کرتەبکە و ڕایبکێشە بۆ جوڵاندن"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","lv",{move:"Klikšķina un velc, lai pārvietotu"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","nb",{move:"Klikk og dra for å flytte"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","nl",{move:"Klik en sleep om te verplaatsen"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","no",{move:"Klikk og dra for å flytte"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","pl",{move:"Kliknij i przeciągnij, by przenieść."}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","pt-br",{move:"Click e arraste para mover"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","pt",{move:"Clique e arraste para mover"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","ru",{move:"Нажмите и перетащите"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","sk",{move:"Kliknite a potiahnite pre presunutie"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","sl",{move:"Kliknite in povlecite, da premaknete"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","sq",{move:"Kliko dhe tërhiqe për ta lëvizur"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","sv",{move:"Klicka och drag för att flytta"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","tr",{move:"Taşımak için, tıklayın ve sürükleyin"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","tt",{move:"Күчереп куер өчен басып шудырыгыз"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","uk",{move:"Клікніть і потягніть для переміщення"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","vi",{move:"Nhấp chuột và kéo để di chuyển"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","zh-cn",{move:"点击并拖拽以移动"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/plugins/widget/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("widget","zh",{move:"拖曳以移動"}); -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/file-icons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/file-icons/doc.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/file-icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/file-icons/file.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/file-icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/file-icons/pdf.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/file-icons/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/file-icons/ppt.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/file-icons/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/file-icons/swf.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/file-icons/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/file-icons/txt.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/file-icons/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/file-icons/xls.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/galleriffic/css/caption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/galleriffic/css/caption.png -------------------------------------------------------------------------------- /staticfiles/ckeditor/galleriffic/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/galleriffic/css/loader.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/galleriffic/css/loaderWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/galleriffic/css/loaderWhite.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/galleriffic/css/nextPageArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/galleriffic/css/nextPageArrow.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/galleriffic/css/nextPageArrowWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/galleriffic/css/nextPageArrowWhite.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/galleriffic/css/prevPageArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/galleriffic/css/prevPageArrow.gif -------------------------------------------------------------------------------- /staticfiles/ckeditor/galleriffic/css/prevPageArrowWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/ckeditor/galleriffic/css/prevPageArrowWhite.gif -------------------------------------------------------------------------------- /staticfiles/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /staticfiles/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /staticfiles/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /staticfiles/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /staticfiles/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /staticfiles/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /staticfiles/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /staticfiles/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /staticfiles/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/home.jpg -------------------------------------------------------------------------------- /staticfiles/img/blog01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/blog01.jpg -------------------------------------------------------------------------------- /staticfiles/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/favicon.png -------------------------------------------------------------------------------- /staticfiles/img/iletisim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/iletisim.jpg -------------------------------------------------------------------------------- /staticfiles/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/loader.gif -------------------------------------------------------------------------------- /staticfiles/img/portfolio/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/portfolio/1.jpg -------------------------------------------------------------------------------- /staticfiles/img/portfolio/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/portfolio/2.jpg -------------------------------------------------------------------------------- /staticfiles/img/portfolio/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/portfolio/3.jpg -------------------------------------------------------------------------------- /staticfiles/img/portfolio/port01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/portfolio/port01.jpg -------------------------------------------------------------------------------- /staticfiles/img/portfolio/port02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/portfolio/port02.jpg -------------------------------------------------------------------------------- /staticfiles/img/portfolio/port03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/portfolio/port03.jpg -------------------------------------------------------------------------------- /staticfiles/img/portfolio/port04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/portfolio/port04.jpg -------------------------------------------------------------------------------- /staticfiles/img/portfolio/port05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/portfolio/port05.jpg -------------------------------------------------------------------------------- /staticfiles/img/portfolio/port06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/portfolio/port06.jpg -------------------------------------------------------------------------------- /staticfiles/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/user.png -------------------------------------------------------------------------------- /staticfiles/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/img/zoom.png -------------------------------------------------------------------------------- /staticfiles/js/hover.zoom.conf.js: -------------------------------------------------------------------------------- 1 | $(function(){$(".blue").hoverZoom({overlayColor:"#3498db",zoom:0}),$(".green").hoverZoom({overlayColor:"#1abc9c",zoom:0}),$(".pink").hoverZoom({overlayColor:"#bd2e75",zoom:0}),$(".black").hoverZoom({overlayColor:"#2f2f2f",zoom:0}),$(".alizarin").hoverZoom({overlayColor:"#e74c3c",zoom:0})}); -------------------------------------------------------------------------------- /staticfiles/mptt/arrow-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/mptt/arrow-move.png -------------------------------------------------------------------------------- /staticfiles/mptt/disclosure-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/mptt/disclosure-down.png -------------------------------------------------------------------------------- /staticfiles/mptt/disclosure-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/mptt/disclosure-right.png -------------------------------------------------------------------------------- /staticfiles/plugins/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/plugins/fonts/icons.eot -------------------------------------------------------------------------------- /staticfiles/plugins/fonts/icons.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/plugins/fonts/icons.otf -------------------------------------------------------------------------------- /staticfiles/plugins/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/plugins/fonts/icons.ttf -------------------------------------------------------------------------------- /staticfiles/plugins/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/plugins/fonts/icons.woff -------------------------------------------------------------------------------- /staticfiles/plugins/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliYmn/Django-Blog-Project/98ef136585d570b50d2c347332ac62d15ae4d9e4/staticfiles/plugins/fonts/icons.woff2 -------------------------------------------------------------------------------- /templates/admin/base_site.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/base.html" %} 2 | {% load blog_tags %} 3 | {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} 4 | 5 | {% block branding %} 6 |

{% site_title %} - {% site_slogan %}

7 | {% endblock %} 8 | 9 | {% block nav-global %}{% endblock %} 10 | -------------------------------------------------------------------------------- /templates/robots.html: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /admin/ 3 | Disallow: /*ref=* 4 | Disallow: /*?ref=* 5 | Disallow: /?ref=* 6 | Disallow: *?replytocom 7 | Sitemap: http://{{ domain }}/sitemap_post.xml 8 | Sitemap: http://{{ domain }}/sitemap_category.xml 9 | --------------------------------------------------------------------------------