├── blog
└── __init__.py
├── user
├── __init__.py
├── migrations
│ ├── __init__.py
│ └── __pycache__
│ │ ├── __init__.cpython-35.pyc
│ │ └── __init__.cpython-36.pyc
├── models.py
├── admin.py
├── tests.py
├── apps.py
├── __pycache__
│ ├── urls.cpython-35.pyc
│ ├── urls.cpython-36.pyc
│ ├── admin.cpython-35.pyc
│ ├── admin.cpython-36.pyc
│ ├── forms.cpython-35.pyc
│ ├── forms.cpython-36.pyc
│ ├── models.cpython-35.pyc
│ ├── models.cpython-36.pyc
│ ├── views.cpython-35.pyc
│ ├── views.cpython-36.pyc
│ ├── __init__.cpython-35.pyc
│ └── __init__.cpython-36.pyc
└── urls.py
├── article
├── __init__.py
├── tests.py
├── apps.py
└── forms.py
├── djangoblogapp
└── README.md
├── media
├── wp.jpeg
├── django.png
├── python.png
└── vector-cartoon-space-illustration.jpg
├── staticfiles
├── ckeditor
│ ├── ckeditor
│ │ ├── plugins
│ │ │ ├── notification
│ │ │ │ └── lang
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ └── pl.js
│ │ │ ├── sourcedialog
│ │ │ │ ├── lang
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── is.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── mn.js
│ │ │ │ │ ├── sr.js
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── bn.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fo.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── hi.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── ka.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── ms.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── bs.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── en-au.js
│ │ │ │ │ ├── en-ca.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ └── gu.js
│ │ │ │ └── icons
│ │ │ │ │ ├── sourcedialog.png
│ │ │ │ │ ├── hidpi
│ │ │ │ │ ├── sourcedialog.png
│ │ │ │ │ └── sourcedialog-rtl.png
│ │ │ │ │ └── sourcedialog-rtl.png
│ │ │ ├── icons.png
│ │ │ ├── autoembed
│ │ │ │ └── lang
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ └── it.js
│ │ │ ├── icons_hidpi.png
│ │ │ ├── embed
│ │ │ │ └── icons
│ │ │ │ │ ├── embed.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ └── embed.png
│ │ │ ├── image2
│ │ │ │ ├── icons
│ │ │ │ │ ├── image.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ │ └── image.png
│ │ │ │ └── lang
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ └── ar.js
│ │ │ ├── link
│ │ │ │ └── images
│ │ │ │ │ ├── anchor.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ └── anchor.png
│ │ │ ├── smiley
│ │ │ │ └── images
│ │ │ │ │ ├── heart.gif
│ │ │ │ │ ├── heart.png
│ │ │ │ │ ├── kiss.gif
│ │ │ │ │ ├── kiss.png
│ │ │ │ │ ├── envelope.gif
│ │ │ │ │ ├── envelope.png
│ │ │ │ │ ├── cry_smile.gif
│ │ │ │ │ ├── cry_smile.png
│ │ │ │ │ ├── lightbulb.gif
│ │ │ │ │ ├── lightbulb.png
│ │ │ │ │ ├── omg_smile.gif
│ │ │ │ │ ├── omg_smile.png
│ │ │ │ │ ├── sad_smile.gif
│ │ │ │ │ ├── sad_smile.png
│ │ │ │ │ ├── thumbs_up.gif
│ │ │ │ │ ├── thumbs_up.png
│ │ │ │ │ ├── wink_smile.gif
│ │ │ │ │ ├── wink_smile.png
│ │ │ │ │ ├── angel_smile.gif
│ │ │ │ │ ├── angel_smile.png
│ │ │ │ │ ├── angry_smile.gif
│ │ │ │ │ ├── angry_smile.png
│ │ │ │ │ ├── broken_heart.gif
│ │ │ │ │ ├── broken_heart.png
│ │ │ │ │ ├── devil_smile.gif
│ │ │ │ │ ├── devil_smile.png
│ │ │ │ │ ├── regular_smile.gif
│ │ │ │ │ ├── regular_smile.png
│ │ │ │ │ ├── shades_smile.gif
│ │ │ │ │ ├── shades_smile.png
│ │ │ │ │ ├── teeth_smile.gif
│ │ │ │ │ ├── teeth_smile.png
│ │ │ │ │ ├── thumbs_down.gif
│ │ │ │ │ ├── thumbs_down.png
│ │ │ │ │ ├── tongue_smile.gif
│ │ │ │ │ ├── tongue_smile.png
│ │ │ │ │ ├── tounge_smile.gif
│ │ │ │ │ ├── confused_smile.gif
│ │ │ │ │ ├── confused_smile.png
│ │ │ │ │ ├── embaressed_smile.gif
│ │ │ │ │ ├── embarrassed_smile.gif
│ │ │ │ │ ├── embarrassed_smile.png
│ │ │ │ │ ├── whatchutalkingabout_smile.gif
│ │ │ │ │ └── whatchutalkingabout_smile.png
│ │ │ ├── image
│ │ │ │ └── images
│ │ │ │ │ └── noimage.png
│ │ │ ├── magicline
│ │ │ │ └── images
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── hidpi
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── icon-rtl.png
│ │ │ │ │ └── icon-rtl.png
│ │ │ ├── mathjax
│ │ │ │ ├── icons
│ │ │ │ │ ├── mathjax.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ │ └── mathjax.png
│ │ │ │ ├── images
│ │ │ │ │ └── loader.gif
│ │ │ │ └── lang
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ └── tt.js
│ │ │ ├── uicolor
│ │ │ │ ├── icons
│ │ │ │ │ ├── uicolor.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ │ └── uicolor.png
│ │ │ │ ├── yui
│ │ │ │ │ └── assets
│ │ │ │ │ │ ├── hue_bg.png
│ │ │ │ │ │ ├── hue_thumb.png
│ │ │ │ │ │ ├── picker_mask.png
│ │ │ │ │ │ └── picker_thumb.png
│ │ │ │ └── lang
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── mk.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ └── es.js
│ │ │ ├── widget
│ │ │ │ ├── images
│ │ │ │ │ └── handle.png
│ │ │ │ └── lang
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ └── el.js
│ │ │ ├── docprops
│ │ │ │ └── icons
│ │ │ │ │ ├── docprops.png
│ │ │ │ │ ├── docprops-rtl.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ ├── docprops.png
│ │ │ │ │ └── docprops-rtl.png
│ │ │ ├── flash
│ │ │ │ └── images
│ │ │ │ │ └── placeholder.png
│ │ │ ├── forms
│ │ │ │ └── images
│ │ │ │ │ └── hiddenfield.gif
│ │ │ ├── language
│ │ │ │ ├── icons
│ │ │ │ │ ├── language.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ │ └── language.png
│ │ │ │ └── lang
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── fo.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ └── pt-br.js
│ │ │ ├── about
│ │ │ │ └── dialogs
│ │ │ │ │ ├── logo_ckeditor.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ └── logo_ckeditor.png
│ │ │ ├── iframe
│ │ │ │ └── images
│ │ │ │ │ └── placeholder.png
│ │ │ ├── pagebreak
│ │ │ │ └── images
│ │ │ │ │ └── pagebreak.gif
│ │ │ ├── showblocks
│ │ │ │ └── images
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── block_address.png
│ │ │ │ │ └── block_blockquote.png
│ │ │ ├── codesnippet
│ │ │ │ ├── icons
│ │ │ │ │ ├── codesnippet.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ │ └── codesnippet.png
│ │ │ │ ├── lib
│ │ │ │ │ └── highlight
│ │ │ │ │ │ └── styles
│ │ │ │ │ │ ├── pojoaque.jpg
│ │ │ │ │ │ ├── school_book.png
│ │ │ │ │ │ └── brown_papersq.png
│ │ │ │ └── lang
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ └── bg.js
│ │ │ ├── placeholder
│ │ │ │ ├── icons
│ │ │ │ │ ├── placeholder.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ │ └── placeholder.png
│ │ │ │ └── lang
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ └── vi.js
│ │ │ ├── embedsemantic
│ │ │ │ └── icons
│ │ │ │ │ ├── embedsemantic.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ └── embedsemantic.png
│ │ │ ├── dialog
│ │ │ │ └── dialogDefinition.js
│ │ │ ├── templates
│ │ │ │ └── templates
│ │ │ │ │ └── images
│ │ │ │ │ ├── template1.gif
│ │ │ │ │ ├── template2.gif
│ │ │ │ │ └── template3.gif
│ │ │ ├── devtools
│ │ │ │ └── lang
│ │ │ │ │ ├── zh.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── gu.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ └── es.js
│ │ │ ├── embedbase
│ │ │ │ └── lang
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ ├── zh.js
│ │ │ │ │ └── ko.js
│ │ │ ├── preview
│ │ │ │ └── preview.html
│ │ │ └── uploadwidget
│ │ │ │ └── lang
│ │ │ │ ├── zh.js
│ │ │ │ └── zh-cn.js
│ │ ├── skins
│ │ │ ├── moono
│ │ │ │ ├── icons.png
│ │ │ │ ├── icons_hidpi.png
│ │ │ │ └── images
│ │ │ │ │ ├── arrow.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── lock.png
│ │ │ │ │ ├── refresh.png
│ │ │ │ │ ├── spinner.gif
│ │ │ │ │ ├── hidpi
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── lock.png
│ │ │ │ │ ├── refresh.png
│ │ │ │ │ └── lock-open.png
│ │ │ │ │ └── lock-open.png
│ │ │ └── moono-lisa
│ │ │ │ ├── icons.png
│ │ │ │ ├── icons_hidpi.png
│ │ │ │ └── images
│ │ │ │ ├── arrow.png
│ │ │ │ ├── close.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── refresh.png
│ │ │ │ ├── spinner.gif
│ │ │ │ ├── hidpi
│ │ │ │ ├── close.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── refresh.png
│ │ │ │ └── lock-open.png
│ │ │ │ └── lock-open.png
│ │ └── config.js
│ ├── file-icons
│ │ ├── doc.png
│ │ ├── pdf.png
│ │ ├── ppt.png
│ │ ├── swf.png
│ │ ├── txt.png
│ │ ├── xls.png
│ │ └── file.png
│ └── galleriffic
│ │ └── css
│ │ ├── caption.png
│ │ ├── loader.gif
│ │ ├── loaderWhite.gif
│ │ ├── nextPageArrow.gif
│ │ ├── prevPageArrow.gif
│ │ ├── nextPageArrowWhite.gif
│ │ └── prevPageArrowWhite.gif
└── admin
│ ├── fonts
│ ├── Roboto-Bold-webfont.woff
│ ├── Roboto-Light-webfont.woff
│ ├── Roboto-Regular-webfont.woff
│ └── README.txt
│ ├── js
│ ├── cancel.js
│ ├── prepopulate.min.js
│ └── jquery.init.js
│ └── img
│ ├── tooltag-arrowright.svg
│ ├── README.txt
│ ├── icon-addlink.svg
│ ├── tooltag-add.svg
│ ├── icon-changelink.svg
│ └── icon-deletelink.svg
└── requirements.txt
/blog/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/user/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/article/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/user/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/djangoblogapp/README.md:
--------------------------------------------------------------------------------
1 | "# djangoblogapp"
2 |
--------------------------------------------------------------------------------
/user/models.py:
--------------------------------------------------------------------------------
1 | from django.db import models
2 |
3 | # Create your models here.
4 |
--------------------------------------------------------------------------------
/article/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/user/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 |
3 | # Register your models here.
4 |
--------------------------------------------------------------------------------
/user/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/media/wp.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/media/wp.jpeg
--------------------------------------------------------------------------------
/media/django.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/media/django.png
--------------------------------------------------------------------------------
/media/python.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/media/python.png
--------------------------------------------------------------------------------
/user/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class UserConfig(AppConfig):
5 | name = 'user'
6 |
--------------------------------------------------------------------------------
/article/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class ArticleConfig(AppConfig):
5 | name = 'article'
6 |
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/ko.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","ko",{closed:"알림이 닫힘."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/zh.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","zh",{closed:"通知已關閉。"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/eo.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","eo",{closed:"Sciigo fermita"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/zh-cn.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","zh-cn",{closed:"通知已关闭。"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ko.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","ko",{toolbar:"소스",title:"소스"});
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | Django==2.0
2 | django-ckeditor==5.4.0
3 | django-cleanup==2.1.0
4 | django-crispy-forms==1.7.2
5 | django-js-asset==1.0.0
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/cs.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","cs",{closed:"Oznámení zavřeno."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/it.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","it",{closed:"Notifica chiusa."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/nb.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","nb",{closed:"Varsling lukket."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/nl.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","nl",{closed:"Melding gesloten."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/ru.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","ru",{closed:"Уведомление закрыто"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/sv.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","sv",{closed:"Notifiering stängd."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/tr.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","tr",{closed:"Uyarılar kapatıldı."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/af.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","af",{toolbar:"Bron",title:"Bron"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/cy.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","cy",{toolbar:"HTML",title:"HTML"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/fa.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","fa",{toolbar:"منبع",title:"منبع"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/he.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","he",{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/is.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","is",{toolbar:"Kóði",title:"Kóði"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ja.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","ja",{toolbar:"ソース",title:"ソース"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/mn.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","mn",{toolbar:"Код",title:"Код"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/sr.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","sr",{toolbar:"Kôд",title:"Kôд"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/zh.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","zh",{toolbar:"原始碼",title:"原始碼"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/da.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","da",{closed:"Notefikation lukket."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/en.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","en",{closed:"Notification closed."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/gl.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","gl",{closed:"Notificación pechada."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/ku.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","ku",{closed:"ئاگادارکەرەوەکە داخرا."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ar.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","ar",{toolbar:"المصدر",title:"المصدر"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/bn.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","bn",{toolbar:"সোর্স",title:"সোর্স"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/cs.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","cs",{toolbar:"Zdroj",title:"Zdroj"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/da.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","da",{toolbar:"Kilde",title:"Kilde"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/el.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","el",{toolbar:"Κώδικας",title:"Κώδικας"});
--------------------------------------------------------------------------------
/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/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.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/hi.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","hi",{toolbar:"सोर्स",title:"सोर्स"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/id.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","id",{toolbar:"Sumber",title:"Sumber"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ka.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","ka",{toolbar:"კოდები",title:"კოდები"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/ku.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","ku",{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/no.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","no",{toolbar:"Kilde",title:"Kilde"});
--------------------------------------------------------------------------------
/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/sk.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","sk",{toolbar:"Zdroj",title:"Zdroj"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/sq.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","sq",{toolbar:"Burimi",title:"Burimi"});
--------------------------------------------------------------------------------
/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/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:"源码"});
--------------------------------------------------------------------------------
/user/__pycache__/urls.cpython-35.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/urls.cpython-35.pyc
--------------------------------------------------------------------------------
/user/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/de.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","de",{closed:"Benachrichtigung geschlossen."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/fr.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","fr",{closed:"La notification est close."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/pt-br.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","pt-br",{closed:"Notificação fechada."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/bg.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","bg",{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/de.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","de",{toolbar:"Quellcode",title:"Quellcode"});
--------------------------------------------------------------------------------
/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/et.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","et",{toolbar:"Lähtekood",title:"Lähtekood"});
--------------------------------------------------------------------------------
/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/hu.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","hu",{toolbar:"Forráskód",title:"Forráskód"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/it.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","it",{toolbar:"Sorgente",title:"Sorgente"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/km.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","km",{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/nl.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","nl",{toolbar:"Broncode",title:"Broncode"});
--------------------------------------------------------------------------------
/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/sr-latn.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","sr-latn",{toolbar:"Kôd",title:"Kôd"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/file-icons/doc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/file-icons/doc.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/file-icons/pdf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/file-icons/pdf.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/file-icons/ppt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/file-icons/ppt.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/file-icons/swf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/file-icons/swf.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/file-icons/txt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/file-icons/txt.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/file-icons/xls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/file-icons/xls.png
--------------------------------------------------------------------------------
/user/__pycache__/admin.cpython-35.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/admin.cpython-35.pyc
--------------------------------------------------------------------------------
/user/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/user/__pycache__/forms.cpython-35.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/forms.cpython-35.pyc
--------------------------------------------------------------------------------
/user/__pycache__/forms.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/forms.cpython-36.pyc
--------------------------------------------------------------------------------
/user/__pycache__/models.cpython-35.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/models.cpython-35.pyc
--------------------------------------------------------------------------------
/user/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/user/__pycache__/views.cpython-35.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/views.cpython-35.pyc
--------------------------------------------------------------------------------
/user/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/notification/lang/pl.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("notification","pl",{closed:"Powiadomienie zostało zamknięte."});
--------------------------------------------------------------------------------
/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/sl.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","sl",{toolbar:"Izvorna koda",title:"Izvorna koda"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/th.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","th",{toolbar:"ดูรหัส HTML",title:"ดูรหัส HTML"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/file-icons/file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/file-icons/file.png
--------------------------------------------------------------------------------
/user/__pycache__/__init__.cpython-35.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/__init__.cpython-35.pyc
--------------------------------------------------------------------------------
/user/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/media/vector-cartoon-space-illustration.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/media/vector-cartoon-space-illustration.jpg
--------------------------------------------------------------------------------
/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/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/admin/fonts/Roboto-Bold-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/admin/fonts/Roboto-Bold-webfont.woff
--------------------------------------------------------------------------------
/staticfiles/admin/fonts/Roboto-Light-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/admin/fonts/Roboto-Light-webfont.woff
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/icons.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/galleriffic/css/caption.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/galleriffic/css/caption.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/galleriffic/css/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/galleriffic/css/loader.gif
--------------------------------------------------------------------------------
/staticfiles/admin/fonts/Roboto-Regular-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/admin/fonts/Roboto-Regular-webfont.woff
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/icons.png
--------------------------------------------------------------------------------
/user/migrations/__pycache__/__init__.cpython-35.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/migrations/__pycache__/__init__.cpython-35.pyc
--------------------------------------------------------------------------------
/user/migrations/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/user/migrations/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/autoembed/lang/zh.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("autoembed","zh",{embeddingInProgress:"正在嘗試嵌入已貼上的 URL...",embeddingFailed:"這個 URL 無法被自動嵌入。"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/icons_hidpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/icons_hidpi.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/lang/gu.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("sourcedialog","gu",{toolbar:"મૂળ કે પ્રાથમિક દસ્તાવેજ",title:"મૂળ કે પ્રાથમિક દસ્તાવેજ"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/galleriffic/css/loaderWhite.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/galleriffic/css/loaderWhite.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/galleriffic/css/nextPageArrow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/galleriffic/css/nextPageArrow.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/galleriffic/css/prevPageArrow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/galleriffic/css/prevPageArrow.gif
--------------------------------------------------------------------------------
/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/ckeditor/ckeditor/skins/moono-lisa/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/icons.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/embed/icons/embed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/embed/icons/embed.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/icons_hidpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/icons_hidpi.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/images/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/images/arrow.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/images/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/images/close.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/images/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/images/lock.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/galleriffic/css/nextPageArrowWhite.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/galleriffic/css/nextPageArrowWhite.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/galleriffic/css/prevPageArrowWhite.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/galleriffic/css/prevPageArrowWhite.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/image2/icons/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/image2/icons/image.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/link/images/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/link/images/anchor.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/heart.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/heart.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/heart.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/kiss.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/kiss.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/kiss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/kiss.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/images/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/images/refresh.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/images/spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/images/spinner.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/image/images/noimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/image/images/noimage.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/magicline/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/magicline/images/icon.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/images/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/mathjax/images/loader.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/envelope.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/envelope.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/envelope.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/envelope.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/widget/images/handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/widget/images/handle.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/close.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/lock.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/close.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/images/lock-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/images/lock-open.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/docprops/icons/docprops.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/docprops/icons/docprops.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/flash/images/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/flash/images/placeholder.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/icons/language.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/language/icons/language.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/iframe/images/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/iframe/images/placeholder.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_div.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_div.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_p.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_p.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/autoembed/lang/cs.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("autoembed","cs",{embeddingInProgress:"Pokus o vnoření vložené URL",embeddingFailed:"Tato URL nemůže být automaticky vnořena."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/icons/codesnippet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/codesnippet/icons/codesnippet.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png
--------------------------------------------------------------------------------
/article/forms.py:
--------------------------------------------------------------------------------
1 | from django import forms
2 | from .models import Article
3 | class ArticleForm(forms.ModelForm):
4 | class Meta:
5 | model = Article
6 | fields = ["title","content","article_image"]
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_address.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_address.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/autoembed/lang/en.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("autoembed","en",{embeddingInProgress:"Trying to embed pasted URL...",embeddingFailed:"This URL could not be automatically embedded."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/autoembed/lang/nb.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("autoembed","nb",{embeddingInProgress:"Prøver å bygge inn innlimt URL...",embeddingFailed:"URL-en kunne ikke bli automatisk bygget inn."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/autoembed/lang/tr.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("autoembed","tr",{embeddingInProgress:"Yapıştırdığınız URL gömülmeye çalışılıyor...",embeddingFailed:"Bu URL otomatik olarak gömülemedi."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/autoembed/lang/ku.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("autoembed","ku",{embeddingInProgress:"لەهەوڵی لکاندنی بەستەری ناونیشانە...",embeddingFailed:"ئەم بەستەرە خۆکارانە ناتواندرێت بخرێتە ناوێ."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/icons/hidpi/codesnippet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/codesnippet/icons/hidpi/codesnippet.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 |
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/autoembed/lang/pt-br.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("autoembed","pt-br",{embeddingInProgress:"Tentando embutir a URL colada...",embeddingFailed:"Esta URL não pode ser embutida automaticamente."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/autoembed/lang/pl.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("autoembed","pl",{embeddingInProgress:"Osadzanie wklejonego adresu URL...",embeddingFailed:"Ten adres URL multimediów nie może być automatycznie osadzony."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/autoembed/lang/de.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("autoembed","de",{embeddingInProgress:"Einbetten der eingefügten URL wird versucht...",embeddingFailed:"Diese URL konnte nicht automatisch eingebettet werden."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/autoembed/lang/it.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("autoembed","it",{embeddingInProgress:"Prova a incorporare l'URL incollato...",embeddingFailed:"Non è stato possibile incorporare automaticamente questo URL."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mustafamuratcoskun/django-blog-app/HEAD/staticfiles/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/zh.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","zh",{title:"以 TeX 表示數學",button:"數學",dialogInput:"請輸入 TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX 說明文件",loading:"載入中…",pathName:"數學"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/ja.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","ja",{title:"TeX形式の数式",button:"数式",dialogInput:"TeX形式の数式を入力してください",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeXの解説",loading:"読み込み中…",pathName:"math"});
--------------------------------------------------------------------------------
/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/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/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/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/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/mathjax/lang/he.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","he",{title:"מתמטיקה בTeX",button:"מתמטיקה",dialogInput:"כתוב את הTeX שלך כאן",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"תיעוד TeX",loading:"טוען...",pathName:"מתמטיקה"});
--------------------------------------------------------------------------------
/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/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/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/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/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/language/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("language","ja",{button:"言語を設定",remove:"言語を削除"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","zh",{button:"設定語言",remove:"移除語言"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/af.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","af",{title:"Wiskunde in TeX",button:"Wiskunde",dialogInput:"Skryf you Tex hier",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokument",loading:"laai...",pathName:"wiskunde"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/sv.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","sv",{title:"Mattematik i TeX",button:"Matte",dialogInput:"Skriv din TeX här",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentation",loading:"laddar...",pathName:"matte"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/vi.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","vi",{title:"Toán học bằng TeX",button:"Toán",dialogInput:"Nhập mã TeX ở đây",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Tài liệu TeX",loading:"đang nạp...",pathName:"toán"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/zh-cn.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","zh-cn",{title:"TeX 语法的数学公式编辑器",button:"数学公式",dialogInput:"在此编写您的 TeX 指令",docUrl:"http://zh.wikipedia.org/wiki/TeX",docLabel:"TeX 语法(可以参考维基百科自身关于数学公式显示方式的帮助)",loading:"正在加载...",pathName:"数字公式"});
--------------------------------------------------------------------------------
/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/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/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/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/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/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/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/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/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/language/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("language","he",{button:"צור שפה",remove:"הסר שפה"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","ko",{button:"언어 설정",remove:"언어 설정 지우기"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","zh-cn",{button:"设置语言",remove:"移除语言"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/ar.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","ar",{title:"الرياصيات في Tex",button:"رياضيات",dialogInput:"أكتب Tex خاصتك هنا",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"وثائق Tex",loading:"جاري التحميل...",pathName:"رياضيات"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/en.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","en",{title:"Mathematics in TeX",button:"Math",dialogInput:"Write your TeX here",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentation",loading:"loading...",pathName:"math"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/hu.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","hu",{title:"Matematika a TeX-ben",button:"Matek",dialogInput:"Írd a TeX-ed ide",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentáció",loading:"töltés...",pathName:"matek"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/nb.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","nb",{title:"Matematikk i TeX",button:"Matte",dialogInput:"Skriv TeX-koden her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-dokumentasjon",loading:"laster...",pathName:"matte"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/nl.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","nl",{title:"Wiskunde in TeX",button:"Wiskunde",dialogInput:"Typ hier uw TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentatie",loading:"laden...",pathName:"wiskunde"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/no.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","no",{title:"Matematikk i TeX",button:"Matte",dialogInput:"Skriv TeX-koden her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-dokumentasjon",loading:"laster...",pathName:"matte"});
--------------------------------------------------------------------------------
/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/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/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/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/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/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/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/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/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/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/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/language/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("language","ar",{button:"حدد اللغة",remove:"حذف اللغة"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","da",{button:"Vælg sprog",remove:"Fjern sprog"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","fa",{button:"تعیین زبان",remove:"حذف زبان"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","km",{button:"កំណត់ភាសា",remove:"លុបភាសា"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","nb",{button:"Sett språk",remove:"Fjern språk"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","no",{button:"Sett språk",remove:"Fjern språk"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","pl",{button:"Ustaw język",remove:"Usuń język"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","tr",{button:"Dili seç",remove:"Dili kaldır"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/cy.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","cy",{title:"Mathemateg mewn TeX",button:"Math",dialogInput:"Ysgrifennwch eich TeX yma",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dogfennaeth TeX",loading:"llwytho...",pathName:"math"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/da.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","da",{title:"Matematik i TeX",button:"Matematik",dialogInput:"Skriv din TeX her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentation",loading:"henter...",pathName:"matematik"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/en-gb.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","en-gb",{title:"Mathematics in TeX",button:"Math",dialogInput:"Write you TeX here",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentation",loading:"loading...",pathName:"math"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/es.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","es",{title:"Matemáticas en TeX",button:"Matemáticas",dialogInput:"Escribe tu TeX aquí",docUrl:"http://es.wikipedia.org/wiki/TeX",docLabel:"Documentación de TeX",loading:"cargando...",pathName:"matemáticas"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/fa.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","fa",{title:"ریاضیات در تک",button:"ریاضی",dialogInput:"فرمول خود را اینجا بنویسید",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"مستندسازی فرمول نویسی",loading:"بارگیری",pathName:"ریاضی"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/ku.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","ku",{title:"بیرکاری لە TeX",button:"بیرکاری",dialogInput:"TeXەکەت لێرە بنووسە",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"بەڵگەنامەکردنی TeX",loading:"بارکردن...",pathName:"بیرکاری"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/sk.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","sk",{title:"Matematika v TeX",button:"Matika",dialogInput:"Napíšte svoj TeX sem",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentácia TeX",loading:"načítavanie...",pathName:"matika"});
--------------------------------------------------------------------------------
/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/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/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/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/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/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/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/language/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("language","bg",{button:"Задай език",remove:"Премахни език"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","cy",{button:"Gosod iaith",remove:"Tynnu iaith"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","fi",{button:"Aseta kieli",remove:"Poista kieli"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","hr",{button:"Namjesti jezik",remove:"Makni jezik"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","sv",{button:"Sätt språk",remove:"Ta bort språk"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","tt",{button:"Тел сайлау",remove:"Телне бетерү"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/ko.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","ko",{title:"TeX 문법 수식",button:"수식",dialogInput:"여기 TeX 를 입력하세요",docUrl:"http://ko.wikipedia.org/wiki/%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:TeX_%EB%AC%B8%EB%B2%95",docLabel:"TeX 문서",loading:"불러오는 중...",pathName:"수식"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/lt.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","lt",{title:"Matematika per TeX",button:"Matematika",dialogInput:"Parašyk savo TeX čia",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX žinynas",loading:"kraunasi...",pathName:"matematika"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/ro.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","ro",{title:"Matematici in TeX",button:"Matematici",dialogInput:"Scrie TeX-ul aici",docUrl:"http://ro.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentatie TeX",loading:"încarcă...",pathName:"matematici"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/ru.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","ru",{title:"Математика в TeX-системе",button:"Математика",dialogInput:"Введите здесь TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX документация",loading:"загрузка...",pathName:"мат."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","ca",{button:"Definir l'idioma",remove:"Eliminar idioma"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","cs",{button:"Nastavit jazyk",remove:"Odstranit jazyk"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","el",{button:"Θέση γλώσσας",remove:"Αφαίρεση γλώσσας"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","en",{button:"Set language",remove:"Remove language"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","eo",{button:"Instali lingvon",remove:"Forigi lingvon"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","es",{button:"Fijar lenguaje",remove:"Quitar lenguaje"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/lang/fo.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.plugins.setLang("language","fo",{button:"Velja tungumál",remove:"Remove language"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","it",{button:"Imposta lingua",remove:"Rimuovi lingua"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","ku",{button:"جێگیرکردنی زمان",remove:"لابردنی زمان"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","nl",{button:"Taal instellen",remove:"Taal verwijderen"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","pt",{button:"Definir Idioma",remove:"Remover idioma"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","ru",{button:"Установка языка",remove:"Удалить язык"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","sk",{button:"Nastaviť jazyk",remove:"Odstrániť jazyk"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","sl",{button:"Nastavi jezik",remove:"Odstrani jezik"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","uk",{button:"Установити мову",remove:"Вилучити мову"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/ca.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","ca",{title:"Matemàtiques a TeX",button:"Matemàtiques",dialogInput:"Escriu el TeX aquí",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentació TeX",loading:"carregant...",pathName:"matemàtiques"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/de.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","de",{title:"Mathematik in Tex",button:"Rechnung",dialogInput:"Schreiben Sie hier in Tex",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-Dokumentation",loading:"Ladevorgang...",pathName:"rechnen"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/eo.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","eo",{title:"Matematiko en TeX",button:"Matematiko",dialogInput:"Skribu vian TeX tien",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentado",loading:"estas ŝarganta",pathName:"matematiko"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/hr.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","hr",{title:"Matematika u TeXu",button:"Matematika",dialogInput:"Napiši svoj TeX ovdje",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentacija",loading:"učitavanje...",pathName:"matematika"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/it.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","it",{title:"Formule in TeX",button:"Formule",dialogInput:"Scrivere qui il proprio TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentazione TeX",loading:"caricamento…",pathName:"formula"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/pt.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","pt",{title:"Matemática em TeX",button:"Matemática",dialogInput:"Escreva aqui o seu Tex",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentação TeX",loading:"a carregar ...",pathName:"matemática"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/sl.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","sl",{title:"Matematika v TeX",button:"Matematika",dialogInput:"Napišite svoj TeX tukaj",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentacija",loading:"nalaganje...",pathName:"matematika"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","de",{button:"Sprache festlegen",remove:"Sprache entfernen"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","en-gb",{button:"Set language",remove:"Remove language"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","fr",{button:"Définir la langue",remove:"Supprimer la langue"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","gl",{button:"Estabelezer o idioma",remove:"Retirar o idioma"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","hu",{button:"Nyelv beállítása",remove:"Nyelv eltávolítása"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","sq",{button:"Përzgjidhni gjuhën",remove:"Largoni gjuhën"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/language/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("language","vi",{button:"Thiết lập ngôn ngữ",remove:"Loại bỏ ngôn ngữ"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/cs.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","cs",{title:"Matematika v TeXu",button:"Matematika",dialogInput:"Zde napište TeXový kód",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentace k TeXu",loading:"Nahrává se...",pathName:"Matematika"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/fi.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","fi",{title:"Matematiikkaa TeX:llä",button:"Matematiikka",dialogInput:"Kirjoita TeX:iä tähän",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentaatio",loading:"lataa...",pathName:"matematiikka"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/gl.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","gl",{title:"Matemáticas en TeX",button:"Matemáticas",dialogInput:"Escriba o seu TeX aquí",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentación de TeX",loading:"cargando...",pathName:"matemáticas"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/km.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","km",{title:"គណិតវិទ្យាក្នុង TeX",button:"គណិត",dialogInput:"សរសេរ TeX របស់អ្នកនៅទីនេះ",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"ឯកសារអត្ថបទពី TeX",loading:"កំពុងផ្ទុក..",pathName:"គណិត"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/pt-br.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","pt-br",{title:"Matemática em TeX",button:"Matemática",dialogInput:"Escreva seu TeX aqui",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentação TeX",loading:"carregando...",pathName:"Matemática"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/sq.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","sq",{title:"Matematikë në TeX",button:"Matematikë",dialogInput:"Shkruani TeX-in tuaj këtu",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Tex dokumentimi",loading:"duke u hapur...",pathName:"matematikë"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/tr.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","tr",{title:"TeX ile Matematik",button:"Matematik",dialogInput:"TeX kodunuzu buraya yazın",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX yardım dökümanı",loading:"yükleniyor...",pathName:"matematik"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/uk.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","uk",{title:"Математика у TeX",button:"Математика",dialogInput:"Наберіть тут на TeX'у",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Документація про TeX",loading:"завантажується…",pathName:"математика"});
--------------------------------------------------------------------------------
/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/language/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("language","pt-br",{button:"Configure o Idioma",remove:"Remover Idioma"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/el.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","el",{title:"Μαθηματικά με τη γλώσσα TeX",button:"Μαθηματικά",dialogInput:"Γράψτε κώδικα TeX εδώ",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Τεκμηρίωση TeX",loading:"γίνεται φόρτωση...",pathName:"μαθηματικά"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/pl.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","pl",{title:"Wzory matematyczne w TeX",button:"Wzory matematyczne",dialogInput:"Wpisz wyrażenie w TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentacja TeX",loading:"ładowanie...",pathName:"matematyka"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/bg.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","bg",{title:"Формули в TeX формат",button:"Формули",dialogInput:"Въведете вашите данни с TeX форматиране тук",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX документация",loading:"зареждане...",pathName:"формули"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/fr.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","fr",{title:"Mathématiques au format TeX",button:"Math",dialogInput:"Saisir la formule TeX ici",docUrl:"http://fr.wikibooks.org/wiki/LaTeX/Math%C3%A9matiques",docLabel:"Documentation du format TeX",loading:"chargement...",pathName:"math"});
--------------------------------------------------------------------------------
/staticfiles/admin/img/tooltag-arrowright.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/mathjax/lang/tt.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("mathjax","tt",{title:"TeX'та математика",button:"Математика",dialogInput:"Биредә TeX форматында аңлатмагызны языгыз",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX турыдна документлар",loading:"йөкләнә...",pathName:"математика"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/image2/lang/zh-cn.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("image2","zh-cn",{alt:"替换文本",btnUpload:"上传到服务器",captioned:"带标题图像",captionPlaceholder:"标题",infoTab:"图像信息",lockRatio:"锁定比例",menu:"图像属性",pathName:"图像",pathNameCaption:"标题",resetSize:"原始尺寸",resizer:"点击并拖拽以改变尺寸",title:"图像属性",uploadTab:"上传",urlMissing:"缺少图像源文件地址"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/image2/lang/zh.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("image2","zh",{alt:"替代文字",btnUpload:"傳送至伺服器",captioned:"已加標題之圖片",captionPlaceholder:"標題",infoTab:"影像資訊",lockRatio:"固定比例",menu:"影像屬性",pathName:"圖片",pathNameCaption:"標題",resetSize:"重設大小",resizer:"拖曳以改變大小",title:"影像屬性",uploadTab:"上傳",urlMissing:"遺失圖片來源之 URL "});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","zh",{title:"元件資訊",dialogName:"對話視窗名稱",tabName:"標籤名稱",elementId:"元件 ID",elementType:"元件類型"});
--------------------------------------------------------------------------------
/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/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/devtools/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("devtools","ja",{title:"エレメント情報",dialogName:"ダイアログウィンドウ名",tabName:"タブ名",elementId:"エレメントID",elementType:"要素タイプ"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","ko",{title:"구성 요소 정보",dialogName:"다이얼로그 윈도우 이름",tabName:"탭 이름",elementId:"요소 ID",elementType:"요소 형식"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","zh-cn",{title:"元素信息",dialogName:"对话框窗口名称",tabName:"选项卡名称",elementId:"元素 ID",elementType:"元素类型"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/embedbase/lang/zh-cn.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("embedbase","zh-cn",{pathName:"媒体对象",title:"嵌入媒体",button:"插入媒体",unsupportedUrlGiven:"不支持指定的 URL。",unsupportedUrl:"嵌入媒体不支持此 URL {url}。",fetchingFailedGiven:"无法抓取此 URL 的内容。",fetchingFailed:"无法抓取 {url} 的内容。",fetchingOne:"正在抓取……",fetchingMany:"正在抓取,{max} 中的 {current} ……"});
--------------------------------------------------------------------------------
/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:"既定カラーセット"});
--------------------------------------------------------------------------------
/user/urls.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 | from django.urls import path
3 | from . import views
4 |
5 | app_name = "user"
6 |
7 | urlpatterns = [
8 | path('register/',views.register,name = "register"),
9 | path('login/',views.loginUser,name = "login"),
10 | path('logout/',views.logoutUser,name = "logout"),
11 |
12 | ]
13 |
--------------------------------------------------------------------------------
/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/preview/preview.html:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/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/ckeditor/ckeditor/plugins/devtools/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("devtools","fa",{title:"اطلاعات عنصر",dialogName:"نام پنجره محاورهای",tabName:"نام برگه",elementId:"ID عنصر",elementType:"نوع عنصر"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","he",{title:"מידע על האלמנט",dialogName:"שם הדיאלוג",tabName:"שם הטאב",elementId:"ID של האלמנט",elementType:"סוג האלמנט"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/embedbase/lang/zh.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("embedbase","zh",{pathName:"媒體元件",title:"內嵌媒體",button:"插入內嵌媒體",unsupportedUrlGiven:"不支援指定的 URL。",unsupportedUrl:"內嵌媒體不支援 URL {url} 。",fetchingFailedGiven:"抓取指定 URL 的內容失敗。",fetchingFailed:"抓取 {url} 的內容失敗。",fetchingOne:"正在抓取 oEmbed 回應...",fetchingMany:"正在抓取 oEmbed 回應,{max} 中的 {current} 已完成..."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/image2/lang/ko.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("image2","ko",{alt:"대체 문자열",btnUpload:"서버로 전송",captioned:"이미지 설명 넣기",captionPlaceholder:"설명",infoTab:"이미지 정보",lockRatio:"비율 유지",menu:"이미지 속성",pathName:"이미지",pathNameCaption:"설명",resetSize:"원래 크기로",resizer:"크기를 조절하려면 클릭 후 드래그 하세요",title:"이미지 속성",uploadTab:"업로드",urlMissing:"이미지 원본 주소(URL)가 없습니다."});
--------------------------------------------------------------------------------
/staticfiles/admin/img/icon-addlink.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/staticfiles/admin/img/tooltag-add.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","zh-cn",{button:"插入代码段",codeContents:"代码内容",emptySnippetError:"插入的代码不能为空。",language:"代码语言",title:"代码段",pathName:"代码段"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","zh",{button:"插入程式碼片段",codeContents:"程式碼內容",emptySnippetError:"程式碼片段不可為空白。",language:"語言",title:"程式碼片段",pathName:"程式碼片段"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","vi",{title:"Thông tin thành ph",dialogName:"Tên hộp tho",tabName:"Tên th",elementId:"Mã thành ph",elementType:"Loại thành ph"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/image2/lang/ja.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("image2","ja",{alt:"代替テキスト",btnUpload:"サーバーに送信",captioned:"キャプションを付ける",captionPlaceholder:"キャプション",infoTab:"画像情報",lockRatio:"比率を固定",menu:"画像のプロパティ",pathName:"image",pathNameCaption:"caption",resetSize:"サイズをリセット",resizer:"ドラッグしてリサイズ",title:"画像のプロパティ",uploadTab:"アップロード",urlMissing:"画像のURLを入力してください。"});
--------------------------------------------------------------------------------
/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/devtools/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("devtools","ar",{title:"معلومات العنصر",dialogName:"إسم نافذة الحوار",tabName:"إسم التبويب",elementId:"إسم العنصر",elementType:"نوع العنصر"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","hu",{title:"Elem információ",dialogName:"Párbeszédablak neve",tabName:"Fül neve",elementId:"Elem ID",elementType:"Elem típusa"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","id",{title:"Informasi Elemen",dialogName:"Nama jendela dialog",tabName:"Nama tab",elementId:"ID Elemen",elementType:"Tipe elemen"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","nl",{title:"Elementinformatie",dialogName:"Naam dialoogvenster",tabName:"Tabnaam",elementId:"Element ID",elementType:"Elementtype"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","sv",{title:"Elementinformation",dialogName:"Dialogrutans namn",tabName:"Fliknamn",elementId:"Element-ID",elementType:"Element-typ"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","tr",{title:"Eleman Bilgisi",dialogName:"İletişim pencere ismi",tabName:"Sekme adı",elementId:"Eleman ID",elementType:"Eleman türü"});
--------------------------------------------------------------------------------
/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/devtools/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("devtools","cs",{title:"Informace o prvku",dialogName:"Název dialogového okna",tabName:"Název karty",elementId:"ID prvku",elementType:"Typ prvku"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","de",{title:"Elementinformation",dialogName:"Dialogfenstername",tabName:"Reitername",elementId:"Elementkennung",elementType:"Elementtyp"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","en",{title:"Element Information",dialogName:"Dialog window name",tabName:"Tab name",elementId:"Element ID",elementType:"Element type"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","et",{title:"Elemendi andmed",dialogName:"Dialoogiakna nimi",tabName:"Saki nimi",elementId:"Elemendi ID",elementType:"Elemendi liik"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/lang/gu.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.plugins.setLang("devtools","gu",{title:"પ્રાથમિક માહિતી",dialogName:"વિન્ડોનું નામ",tabName:"ટેબનું નામ",elementId:"પ્રાથમિક આઈડી",elementType:"પ્રાથમિક પ્રકાર"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","km",{title:"ព័ត៌មាននៃធាតុ",dialogName:"ឈ្មោះប្រអប់វីនដូ",tabName:"ឈ្មោះផ្ទាំង",elementId:"អត្តលេខធាតុ",elementType:"ប្រភេទធាតុ"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","ku",{title:"زانیاری توخم",dialogName:"ناوی پەنجەرەی دیالۆگ",tabName:"ناوی بازدەر تاب",elementId:"ناسنامەی توخم",elementType:"جۆری توخم"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","sk",{title:"Informácie o prvku",dialogName:"Názov okna dialógu",tabName:"Názov záložky",elementId:"ID prvku",elementType:"Typ prvku"});
--------------------------------------------------------------------------------
/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/codesnippet/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("codesnippet","ko",{button:"코드 스니펫 삽입",codeContents:"코드 본문",emptySnippetError:"코드 스니펫은 빈칸일 수 없습니다.",language:"언어",title:"코드 스니펫",pathName:"코드 스니펫"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","nb",{title:"Elementinformasjon",dialogName:"Navn på dialogvindu",tabName:"Navn på fane",elementId:"Element-ID",elementType:"Elementtype"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","no",{title:"Elementinformasjon",dialogName:"Navn på dialogvindu",tabName:"Navn på fane",elementId:"Element-ID",elementType:"Elementtype"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","ru",{title:"Информация об элементе",dialogName:"Имя окна диалога",tabName:"Имя вкладки",elementId:"ID элемента",elementType:"Тип элемента"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","si",{title:"මුලද්රව්ය ",dialogName:"දෙබස් කවුළුවේ නම",tabName:"තීරුවේ නම",elementId:"මුලද්රව්ය කේතය",elementType:"මුලද්රව්ය වර්ගය"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","sl",{title:"Podatki elementa",dialogName:"Ime pogovornega okna",tabName:"Ime zavihka",elementId:"ID elementa",elementType:"Tip elementa"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","ug",{title:"ئېلېمېنت ئۇچۇرى",dialogName:"سۆزلەشكۈ كۆزنەك ئاتى",tabName:"Tab ئاتى",elementId:"ئېلېمېنت كىملىكى",elementType:"ئېلېمېنت تىپى"});
--------------------------------------------------------------------------------
/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/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/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/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/codesnippet/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("codesnippet","ja",{button:"コードスニペットを挿入",codeContents:"コード内容",emptySnippetError:"コードスニペットを入力してください。",language:"言語",title:"コードスニペット",pathName:"コードスニペット"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","cy",{title:"Gwybodaeth am yr Elfen",dialogName:"Enw ffenestr y deialog",tabName:"Enw'r tab",elementId:"ID yr Elfen",elementType:"Math yr elfen"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","da",{title:"Information på elementet",dialogName:"Dialogboks",tabName:"Tab beskrivelse",elementId:"ID på element",elementType:"Type af element"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","en-gb",{title:"Element Information",dialogName:"Dialogue window name",tabName:"Tab name",elementId:"Element ID",elementType:"Element type"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","fi",{title:"Elementin tiedot",dialogName:"Dialogi-ikkunan nimi",tabName:"Välilehden nimi",elementId:"Elementin ID",elementType:"Elementin tyyppi"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","it",{title:"Informazioni elemento",dialogName:"Nome finestra di dialogo",tabName:"Nome Tab",elementId:"ID Elemento",elementType:"Tipo elemento"});
--------------------------------------------------------------------------------
/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/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/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/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/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/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/devtools/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("devtools","hr",{title:"Informacije elementa",dialogName:"Naziv prozora za dijalog",tabName:"Naziva jahača",elementId:"ID elementa",elementType:"Vrsta elementa"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","lv",{title:"Elementa informācija",dialogName:"Dialoga loga nosaukums",tabName:"Cilnes nosaukums",elementId:"Elementa ID",elementType:"Elementa tips"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","pl",{title:"Informacja o elemencie",dialogName:"Nazwa okna dialogowego",tabName:"Nazwa zakładki",elementId:"ID elementu",elementType:"Typ elementu"});
--------------------------------------------------------------------------------
/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/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/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/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/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/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/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/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/devtools/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("devtools","bg",{title:"Информация за елемента",dialogName:"Име на диалоговия прозорец",tabName:"Име на таб",elementId:"ID на елемента",elementType:"Тип на елемента"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/lang/lt.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.plugins.setLang("devtools","lt",{title:"Elemento informacija",dialogName:"Dialogo lango pavadinimas",tabName:"Auselės pavadinimas",elementId:"Elemento ID",elementType:"Elemento tipas"});
--------------------------------------------------------------------------------
/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/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/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/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/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/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
2 |
3 |
4 |
--------------------------------------------------------------------------------
/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/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","da",{button:"Indsæt kodestykket her",codeContents:"Koden",emptySnippetError:"Kodestykket kan ikke være tomt.",language:"Sprog",title:"Kodestykke",pathName:"kodestykke"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","fi",{button:"Lisää koodileike",codeContents:"Koodisisältö",emptySnippetError:"Koodileike ei voi olla tyhjä.",language:"Kieli",title:"Koodileike",pathName:"koodileike"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","nb",{button:"Sett inn kodesnutt",codeContents:"Kodeinnhold",emptySnippetError:"En kodesnutt kan ikke være tom.",language:"Språk",title:"Kodesnutt",pathName:"kodesnutt"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","pl",{button:"Wstaw fragment kodu",codeContents:"Treść kodu",emptySnippetError:"Kod nie może być pusty.",language:"Język",title:"Fragment kodu",pathName:"fragment kodu"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","ca",{title:"Informació de l'element",dialogName:"Nom de la finestra de quadre de diàleg",tabName:"Nom de la pestanya",elementId:"ID de l'element",elementType:"Tipus d'element"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/devtools/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("devtools","es",{title:"Información del Elemento",dialogName:"Nombre de la ventana de diálogo",tabName:"Nombre de la pestaña",elementId:"ID del Elemento",elementType:"Tipo del elemento"});
--------------------------------------------------------------------------------
/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/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/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/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/codesnippet/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("codesnippet","cs",{button:"Vložit úryvek kódu",codeContents:"Obsah kódu",emptySnippetError:"Úryvek kódu nemůže být prázdný.",language:"Jazyk",title:"Úryvek kódu",pathName:"úryvek kódu"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","hu",{button:"Illeszd be a kódtöredéket",codeContents:"Kód tartalom",emptySnippetError:"A kódtöredék nem lehet üres.",language:"Nyelv",title:"Kódtöredék",pathName:"kódtöredék"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","km",{button:"Insert Code Snippet",codeContents:"មាតិកាកូដ",emptySnippetError:"A code snippet cannot be empty.",language:"ភាសា",title:"Code snippet",pathName:"code snippet"});
--------------------------------------------------------------------------------
/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/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/codesnippet/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("codesnippet","ar",{button:"أدمج قصاصة الشيفرة",codeContents:"محتوى الشيفرة",emptySnippetError:"قصاصة الشيفرة لايمكن أن تكون فارغة.",language:"لغة",title:"قصاصة الشيفرة",pathName:"قصاصة الشيفرة"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","en",{button:"Insert Code Snippet",codeContents:"Code content",emptySnippetError:"A code snippet cannot be empty.",language:"Language",title:"Code snippet",pathName:"code snippet"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","hr",{button:"Ubaci isječak kôda",codeContents:"Code content",emptySnippetError:"A code snippet cannot be empty.",language:"Language",title:"Code snippet",pathName:"code snippet"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","no",{button:"Sett inn kodesnutt",codeContents:"Code content",emptySnippetError:"A code snippet cannot be empty.",language:"Language",title:"Code snippet",pathName:"code snippet"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","sk",{button:"Vložte kód Snippet-u",codeContents:"Obsah kódu",emptySnippetError:"Snippet kódu nesmie byť prázdny.",language:"Jazyk",title:"Snippet kódu",pathName:"snippet kódu"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","sl",{button:"Vstavi odsek kode",codeContents:"Koda vsebina",emptySnippetError:"Odrezek kode ne more biti prazen.",language:"Jezik",title:"Odrezek kode",pathName:"odrezek kode"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","sq",{button:"Shto kod copëze",codeContents:"Përmbajtja e kodit",emptySnippetError:"A code snippet cannot be empty.",language:"Gjuha",title:"Code snippet",pathName:"code snippet"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","ug",{button:"كود پارچىسى قىستۇرۇش",codeContents:"Code content",emptySnippetError:"A code snippet cannot be empty.",language:"Language",title:"Code snippet",pathName:"code snippet"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/embedbase/lang/ko.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("embedbase","ko",{pathName:"미디어 오브젝트",title:"미디어 임베드",button:"미디어 임베드 삽입",unsupportedUrlGiven:"지원하지 않는 주소 형식입니다.",unsupportedUrl:"입력하신 주소 {url}은 지원되지 않는 형식입니다.",fetchingFailedGiven:"입력하신 주소에서 내용을 불러올 수 없습니다.",fetchingFailed:"입력하신 주소 {url}에서 내용을 불러올 수 없습니다.",fetchingOne:"oEmbed 응답을 가져오는 중...",fetchingMany:"총 {max} 개 중{current} 번째 oEmbed 응답을 가져오는 중..."});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/image2/lang/ar.js:
--------------------------------------------------------------------------------
1 | CKEDITOR.plugins.setLang("image2","ar",{alt:"عنوان الصورة",btnUpload:"أرسلها للخادم",captioned:"صورة ذات اسم",captionPlaceholder:"تسمية",infoTab:"معلومات الصورة",lockRatio:"تناسق الحجم",menu:"خصائص الصورة",pathName:"صورة",pathNameCaption:"تسمية",resetSize:"إستعادة الحجم الأصلي",resizer:"انقر ثم اسحب للتحجيم",title:"خصائص الصورة",uploadTab:"رفع",urlMissing:"عنوان مصدر الصورة مفقود"});
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/placeholder/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("placeholder","he",{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/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/admin/img/icon-deletelink.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/staticfiles/ckeditor/ckeditor/plugins/codesnippet/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("codesnippet","bg",{button:"Въвеждане на блок с код",codeContents:"Съдържание на кода",emptySnippetError:"Блока с код не може да бъде празен.",language:"Език",title:"Блок с код",pathName:"блок с код"});
--------------------------------------------------------------------------------