├── .gitignore ├── ChangeLog ├── LICENSE ├── Makefile ├── README.md ├── _version.py ├── accounts ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── apache ├── 503.html └── django.wsgi ├── beanstalkc.py ├── context ├── __init__.py └── global_vars.py ├── cron_fetch_networks.py ├── djangobackends ├── __init__.py └── shibauthBackend.py ├── doc ├── api.md ├── configuration.md ├── django18.md ├── index.md └── installation │ ├── debian_wheezy.md │ ├── generic.md │ └── redhat.md ├── flowspec ├── __init__.py ├── admin.py ├── fixtures │ └── initial_data.json ├── forms.py ├── helpers.py ├── junos.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── tasks.py ├── templatetags │ ├── __init__.py │ ├── tofqdn.py │ └── unescape.py ├── validators.py ├── views.py └── viewsets.py ├── flowspy ├── __init__.py ├── celery.py ├── settings.py.dist ├── urls.py └── wsgi.py ├── init_scripts ├── beanstalkd_config ├── celeryd ├── celeryd_config ├── gunicorn_fod └── memcached_config ├── initial_data ├── README.txt └── fixtures_manual.xml ├── locale └── el │ └── LC_MESSAGES │ ├── django.mo │ └── django.po ├── longerusername ├── __init__.py ├── admin.py ├── forms.py ├── models.py ├── tests.py └── views.py ├── manage.py ├── mkdocs.yml ├── peers ├── .tests.py.swp ├── __init__.py ├── admin.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── fetch_networks.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── poller ├── __init__.py ├── urls.py └── views.py ├── requirements.txt ├── static ├── b3theme │ ├── css │ │ ├── bootstrap.min.css │ │ ├── plugins │ │ │ ├── dataTables │ │ │ │ └── dataTables.bootstrap.css │ │ │ ├── morris │ │ │ │ └── morris-0.4.3.min.css │ │ │ ├── social-buttons │ │ │ │ └── social-buttons.css │ │ │ └── timeline │ │ │ │ └── timeline.css │ │ └── sb-admin.css │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── demo │ │ ├── dashboard-demo.js │ │ ├── flot-demo.js │ │ └── morris-demo.js │ │ ├── jquery-1.10.2.js │ │ ├── plugins │ │ ├── dataTables │ │ │ ├── dataTables.bootstrap.js │ │ │ └── jquery.dataTables.js │ │ ├── flot │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ └── jquery.flot.tooltip.min.js │ │ ├── metisMenu │ │ │ └── jquery.metisMenu.js │ │ └── morris │ │ │ ├── morris.js │ │ │ └── raphael-2.1.0.min.js │ │ └── sb-admin.js ├── background.png ├── css │ └── custom.css ├── datepicker │ ├── css │ │ └── datepicker.css │ └── js │ │ └── bootstrap-datepicker.js ├── dots.gif ├── favicon.ico ├── fod_logo.xcf ├── fodlogo2.png ├── img │ ├── bg2.gif │ ├── bgbrick3_crop.jpg │ ├── facebook_img.png │ ├── fod_footer_logo.png │ ├── fod_logo.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── slide2.jpg │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── sort_desc_disabled.png │ └── twitter_img.png ├── itoggle.png ├── js │ ├── accounts.js │ ├── bootstrap.min.js │ ├── dataTableslatest │ │ ├── dataTables.bootstrap.js │ │ ├── jquery.dataTables.js │ │ └── jquery.dataTables.min.js │ ├── datatables_bootstrap.js │ ├── easing.js │ ├── jquery.cookie.js │ ├── jquery.dataTables.js │ ├── jquery_csrf_protect.js │ ├── select2 │ │ ├── select2-bootstrap.css │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ └── select2x2.png │ └── tinymce │ │ ├── langs │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── ch.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy.js │ │ ├── ia.js │ │ ├── id.js │ │ ├── ii.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── kl.js │ │ ├── ko.js │ │ ├── lb.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ml.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── ps.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sc.js │ │ ├── se.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── tw.js │ │ ├── uk.js │ │ ├── ur.js │ │ ├── vi.js │ │ ├── zh.js │ │ └── zu.js │ │ ├── license.txt │ │ ├── plugins │ │ ├── advhr │ │ │ ├── css │ │ │ │ └── advhr.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── rule.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── rule.htm │ │ ├── advimage │ │ │ ├── css │ │ │ │ └── advimage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── image.htm │ │ │ ├── img │ │ │ │ └── sample.gif │ │ │ ├── js │ │ │ │ └── image.js │ │ │ └── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ ├── advlink │ │ │ ├── css │ │ │ │ └── advlink.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── advlink.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── link.htm │ │ ├── advlist │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autoresize │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autosave │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── langs │ │ │ │ └── en.js │ │ ├── bbcode │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── contextmenu │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── directionality │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── emotions │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── emotions.htm │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ ├── js │ │ │ │ └── emotions.js │ │ │ └── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ ├── example │ │ │ ├── dialog.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ └── example.gif │ │ │ ├── js │ │ │ │ └── dialog.js │ │ │ └── langs │ │ │ │ ├── en.js │ │ │ │ └── en_dlg.js │ │ ├── fullpage │ │ │ ├── css │ │ │ │ └── fullpage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── fullpage.htm │ │ │ ├── js │ │ │ │ └── fullpage.js │ │ │ └── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ ├── fullscreen │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── fullscreen.htm │ │ ├── iespell │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── inlinepopups │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── skins │ │ │ │ └── clearlooks2 │ │ │ │ │ ├── img │ │ │ │ │ ├── alert.gif │ │ │ │ │ ├── button.gif │ │ │ │ │ ├── buttons.gif │ │ │ │ │ ├── confirm.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── horizontal.gif │ │ │ │ │ └── vertical.gif │ │ │ │ │ └── window.css │ │ │ └── template.htm │ │ ├── insertdatetime │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── layer │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── legacyoutput │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── media │ │ │ ├── css │ │ │ │ ├── content.css │ │ │ │ └── media.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ ├── flash.gif │ │ │ │ ├── flv_player.swf │ │ │ │ ├── quicktime.gif │ │ │ │ ├── realmedia.gif │ │ │ │ ├── shockwave.gif │ │ │ │ ├── trans.gif │ │ │ │ └── windowsmedia.gif │ │ │ ├── js │ │ │ │ ├── embed.js │ │ │ │ └── media.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── media.htm │ │ ├── nonbreaking │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── noneditable │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── pagebreak │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── img │ │ │ │ ├── pagebreak.gif │ │ │ │ └── trans.gif │ │ ├── paste │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── pastetext.js │ │ │ │ └── pasteword.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ ├── pastetext.htm │ │ │ └── pasteword.htm │ │ ├── preview │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── example.html │ │ │ ├── jscripts │ │ │ │ └── embed.js │ │ │ └── preview.html │ │ ├── print │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── save │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── searchreplace │ │ │ ├── css │ │ │ │ └── searchreplace.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── searchreplace.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── searchreplace.htm │ │ ├── spellchecker │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── img │ │ │ │ └── wline.gif │ │ ├── style │ │ │ ├── css │ │ │ │ └── props.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── props.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── props.htm │ │ ├── tabfocus │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── table │ │ │ ├── cell.htm │ │ │ ├── css │ │ │ │ ├── cell.css │ │ │ │ ├── row.css │ │ │ │ └── table.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── cell.js │ │ │ │ ├── merge_cells.js │ │ │ │ ├── row.js │ │ │ │ └── table.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ ├── merge_cells.htm │ │ │ ├── row.htm │ │ │ └── table.htm │ │ ├── template │ │ │ ├── blank.htm │ │ │ ├── css │ │ │ │ └── template.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── template.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── template.htm │ │ ├── visualchars │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── wordcount │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ └── xhtmlxtras │ │ │ ├── abbr.htm │ │ │ ├── acronym.htm │ │ │ ├── attributes.htm │ │ │ ├── cite.htm │ │ │ ├── css │ │ │ ├── attributes.css │ │ │ └── popup.css │ │ │ ├── del.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── ins.htm │ │ │ ├── js │ │ │ ├── abbr.js │ │ │ ├── acronym.js │ │ │ ├── attributes.js │ │ │ ├── cite.js │ │ │ ├── del.js │ │ │ ├── element_common.js │ │ │ └── ins.js │ │ │ └── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── ii_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ │ ├── themes │ │ ├── advanced │ │ │ ├── about.htm │ │ │ ├── anchor.htm │ │ │ ├── charmap.htm │ │ │ ├── color_picker.htm │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── image.htm │ │ │ ├── img │ │ │ │ ├── colorpicker.jpg │ │ │ │ └── icons.gif │ │ │ ├── js │ │ │ │ ├── about.js │ │ │ │ ├── anchor.js │ │ │ │ ├── charmap.js │ │ │ │ ├── color_picker.js │ │ │ │ ├── image.js │ │ │ │ ├── link.js │ │ │ │ └── source_editor.js │ │ │ ├── langs │ │ │ │ ├── ar.js │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh.js │ │ │ │ ├── zh_dlg.js │ │ │ │ ├── zu.js │ │ │ │ └── zu_dlg.js │ │ │ ├── link.htm │ │ │ ├── skins │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ ├── button_bg.png │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ ├── ui.css │ │ │ │ │ ├── ui_black.css │ │ │ │ │ └── ui_silver.css │ │ │ └── source_editor.htm │ │ └── simple │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── img │ │ │ └── icons.gif │ │ │ ├── langs │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── ch.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── ia.js │ │ │ ├── id.js │ │ │ ├── ii.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── kl.js │ │ │ ├── ko.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sc.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── tw.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── vi.js │ │ │ ├── zh.js │ │ │ └── zu.js │ │ │ └── skins │ │ │ ├── default │ │ │ ├── content.css │ │ │ └── ui.css │ │ │ └── o2k7 │ │ │ ├── content.css │ │ │ ├── img │ │ │ └── button_bg.png │ │ │ └── ui.css │ │ ├── tiny_mce.js │ │ ├── tiny_mce_popup.js │ │ ├── tiny_mce_src.js │ │ └── utils │ │ ├── editable_selects.js │ │ ├── form_utils.js │ │ ├── mctabs.js │ │ └── validate.js ├── logo.dist.png ├── rule.png ├── secure_destination.png ├── shib_login.dist.png ├── shib_login.png └── threat_source.png ├── templates ├── 403.html ├── 404.html ├── 500.html ├── add_port.html ├── add_rate_limit.html ├── apply.html ├── base.html ├── dashboard.html ├── error.html ├── flatpages │ └── default.html ├── flowspy │ └── route_details.html ├── footer.html ├── overview │ ├── index.html │ └── login.html ├── poll.html ├── poll_message.html ├── polldash.html ├── poller.js ├── pollerdash.js ├── profile.html ├── registration │ ├── activate.html │ ├── activate_edit.html │ ├── activation_complete.html │ ├── activation_complete.txt │ ├── activation_complete_subject.txt │ ├── activation_email.txt │ ├── activation_email_peer_notify.txt │ ├── activation_email_peer_notify_subject.txt │ ├── activation_email_subject.txt │ └── select_institution.html ├── rest_framework │ └── login_base.html ├── rule_action.txt ├── user_routes.html └── welcome.html ├── utils ├── __init__.py ├── decorators.py ├── proxy.py ├── randomizer.py └── whois.py └── widget_tweaks ├── __init__.py ├── models.py ├── templatetags ├── __init__.py └── widget_tweaks.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | flowspy/settings.py 2 | *.pyc 3 | celerybeat-schedule 4 | *.log 5 | celery_var/ 6 | *~ 7 | celeryd@* 8 | doc_rst/ 9 | static/rest_framework/ 10 | static/admin 11 | static/tiny_mce 12 | static/django_tinymce 13 | 14 | *.swp 15 | -------------------------------------------------------------------------------- /_version.py: -------------------------------------------------------------------------------- 1 | VERSION = '1.2' 2 | 3 | if __name__ == "__main__": 4 | print VERSION 5 | -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/accounts/__init__.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/accounts/migrations/__init__.py -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- 1 | """ 2 | This file demonstrates two different styles of tests (one doctest and one 3 | unittest). These will both pass when you run "manage.py test". 4 | 5 | Replace these with more appropriate tests for your application. 6 | """ 7 | 8 | from django.test import TestCase 9 | 10 | class SimpleTest(TestCase): 11 | def test_basic_addition(self): 12 | """ 13 | Tests that 1 + 1 always equals 2. 14 | """ 15 | self.failUnlessEqual(1 + 1, 2) 16 | 17 | __test__ = {"doctest": """ 18 | Another way to test that 1 + 1 is equal to 2. 19 | 20 | >>> 1 + 1 == 2 21 | True 22 | """} 23 | 24 | -------------------------------------------------------------------------------- /apache/django.wsgi: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | sys.path.append('/home/leopoul/projects/') 5 | sys.path.append('/home/leopoul/projects/flowspy') 6 | 7 | os.environ['DJANGO_SETTINGS_MODULE'] = 'flowspy.settings' 8 | 9 | from gevent import monkey; monkey.patch_all() 10 | 11 | 12 | import django.core.handlers.wsgi 13 | application = django.core.handlers.wsgi.WSGIHandler() 14 | -------------------------------------------------------------------------------- /context/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/context/__init__.py -------------------------------------------------------------------------------- /cron_fetch_networks.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | def populate_networks(): 6 | peers = Peer.objects.all() 7 | for peer in peers: 8 | peer.fill_networks() 9 | 10 | if __name__ == "__main__": 11 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "flowspy.settings") 12 | from django.core.mail import send_mail 13 | from peers.models import * 14 | populate_networks() 15 | -------------------------------------------------------------------------------- /djangobackends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/djangobackends/__init__.py -------------------------------------------------------------------------------- /flowspec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/flowspec/__init__.py -------------------------------------------------------------------------------- /flowspec/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/flowspec/migrations/__init__.py -------------------------------------------------------------------------------- /flowspec/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/flowspec/templatetags/__init__.py -------------------------------------------------------------------------------- /flowspec/templatetags/tofqdn.py: -------------------------------------------------------------------------------- 1 | from django import template 2 | import socket 3 | 4 | register = template.Library() 5 | 6 | 7 | @register.filter 8 | def tofqdn(value): 9 | try: 10 | fqdn = socket.getfqdn(value) 11 | if fqdn == value: 12 | return False 13 | else: 14 | return fqdn 15 | except: 16 | return False 17 | -------------------------------------------------------------------------------- /flowspec/templatetags/unescape.py: -------------------------------------------------------------------------------- 1 | from django import template 2 | from django.utils.safestring import mark_safe 3 | from django.utils.encoding import force_unicode 4 | 5 | register = template.Library() 6 | 7 | @register.filter 8 | def unescape(value): 9 | return mark_safe(force_unicode(value).replace('<', '<').replace('>', '>').replace('"', '"').replace(''', "'").replace('&', '&')) 10 | -------------------------------------------------------------------------------- /flowspy/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from __future__ import absolute_import 3 | 4 | # This will make sure the app is always imported when 5 | # Django starts so that shared_task will use this app. 6 | from .celery import app as celery_app # noqa 7 | -------------------------------------------------------------------------------- /init_scripts/beanstalkd_config: -------------------------------------------------------------------------------- 1 | ## Defaults for the beanstalkd init script, /etc/init.d/beanstalkd on 2 | ## Debian systems. Append ``-b /var/lib/beanstalkd'' for persistent 3 | ## storage. 4 | BEANSTALKD_LISTEN_ADDR=127.0.0.1 5 | BEANSTALKD_LISTEN_PORT=11300 6 | DAEMON_OPTS="-l $BEANSTALKD_LISTEN_ADDR -p $BEANSTALKD_LISTEN_PORT" 7 | 8 | ## Uncomment to enable startup during boot. 9 | START=yes 10 | -------------------------------------------------------------------------------- /init_scripts/gunicorn_fod: -------------------------------------------------------------------------------- 1 | CONFIG = { 2 | 'mode': 'django', 3 | 'working_dir': '/home/to/projects/flowspy', 4 | #'python': '/usr/bin/python', 5 | 'args': ( 6 | '--bind=127.0.0.1:8081', 7 | '--workers=1', 8 | '--timeout=360', 9 | #'--keepalive=90', 10 | '--worker-class=egg:gunicorn#gevent', 11 | '--log-level=debug', 12 | '--log-file=/var/www/fod.log', 13 | 'settings.py', 14 | ), 15 | } 16 | -------------------------------------------------------------------------------- /init_scripts/memcached_config: -------------------------------------------------------------------------------- 1 | # Set this to no to disable memcached. 2 | ENABLE_MEMCACHED=yes 3 | -------------------------------------------------------------------------------- /initial_data/README.txt: -------------------------------------------------------------------------------- 1 | The 'fixtures_manual.xml' file fills the site table along with the flatpages 2 | Before running make sure you have set the default site name 3 | 4 | Run from root folder: 5 | 6 | ./manage.py loaddata initial_data/fixtures_manual.xml 7 | -------------------------------------------------------------------------------- /locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /longerusername/__init__.py: -------------------------------------------------------------------------------- 1 | from django.conf import settings 2 | 3 | def MAX_USERNAME_LENGTH(): 4 | if hasattr(settings,"MAX_USERNAME_LENGTH"): 5 | return settings.MAX_USERNAME_LENGTH 6 | else: 7 | return 255 8 | -------------------------------------------------------------------------------- /longerusername/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.contrib.auth.admin import UserAdmin 3 | from django.contrib.auth.models import User 4 | 5 | from longerusername.forms import UserCreationForm, UserChangeForm 6 | 7 | class LongerUserNameUserAdmin(UserAdmin): 8 | add_form = UserCreationForm 9 | form = UserChangeForm 10 | 11 | admin.site.unregister(User) 12 | admin.site.register(User, LongerUserNameUserAdmin) 13 | -------------------------------------------------------------------------------- /longerusername/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: Firewall On Demand 2 | repo_url: https://github.com/grnet/flowspy/ 3 | docs_dir: doc 4 | site_author: Stavros Kroustouris 5 | theme: readthedocs 6 | pages: 7 | - 'Introduction': 'index.md' 8 | - 'Installation': 9 | - 'Generic': 'installation/generic.md' 10 | - 'Debian': 'installation/debian_wheezy.md' 11 | - 'Red Hat': 'installation/redhat.md' 12 | - 'Configuration': 'configuration.md' 13 | - 'API': 'api.md' 14 | -------------------------------------------------------------------------------- /peers/.tests.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/peers/.tests.py.swp -------------------------------------------------------------------------------- /peers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/peers/__init__.py -------------------------------------------------------------------------------- /peers/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/peers/management/__init__.py -------------------------------------------------------------------------------- /peers/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/peers/management/commands/__init__.py -------------------------------------------------------------------------------- /peers/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/peers/migrations/__init__.py -------------------------------------------------------------------------------- /peers/tests.py: -------------------------------------------------------------------------------- 1 | """ 2 | This file demonstrates two different styles of tests (one doctest and one 3 | unittest). These will both pass when you run "manage.py test". 4 | 5 | Replace these with more appropriate tests for your application. 6 | """ 7 | 8 | from django.test import TestCase 9 | 10 | class SimpleTest(TestCase): 11 | def test_basic_addition(self): 12 | """ 13 | Tests that 1 + 1 always equals 2. 14 | """ 15 | self.failUnlessEqual(1 + 1, 2) 16 | 17 | __test__ = {"doctest": """ 18 | Another way to test that 1 + 1 is equal to 2. 19 | 20 | >>> 1 + 1 == 2 21 | True 22 | """} 23 | 24 | -------------------------------------------------------------------------------- /poller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/poller/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8 2 | pyyaml==3.11 3 | celery==3.1.23 4 | django-registration==2.0.4 5 | django-tinymce==1.5.3 6 | djangorestframework==2.3.14 7 | gevent==0.13.6 8 | greenlet==0.4.11 9 | ncclient==0.5.3 10 | redis==2.10.1 11 | ipaddr==2.1.10 12 | git+https://code.grnet.gr/git/nxpy 13 | -------------------------------------------------------------------------------- /static/b3theme/css/plugins/morris/morris-0.4.3.min.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255, 255, 255, 0.8);border:solid 2px rgba(230, 230, 230, 0.8);font-family:sans-serif;font-size:12px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} -------------------------------------------------------------------------------- /static/b3theme/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/b3theme/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/b3theme/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/b3theme/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/b3theme/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/b3theme/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/b3theme/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/b3theme/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/b3theme/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: -@fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /static/b3theme/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /static/b3theme/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/b3theme/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/b3theme/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/b3theme/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/b3theme/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/b3theme/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/b3theme/js/sb-admin.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | $('#side-menu').metisMenu(); 4 | 5 | }); 6 | 7 | //Loads the correct sidebar on window load, 8 | //collapses the sidebar on window resize. 9 | $(function() { 10 | $(window).bind("load resize", function() { 11 | if ($(this).width() < 768) { 12 | $('div.sidebar-collapse').addClass('collapse') 13 | } else { 14 | $('div.sidebar-collapse').removeClass('collapse') 15 | } 16 | }) 17 | }) 18 | -------------------------------------------------------------------------------- /static/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/background.png -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: white !important; 3 | } 4 | 5 | 6 | .slideshow { 7 | margin-bottom: 20px; 8 | } 9 | 10 | .navbar-brand { 11 | float: left; 12 | font-size: 18px; 13 | height: 20px; 14 | line-height: 20px; 15 | padding: 1px; 16 | } 17 | 18 | .footer { 19 | border-top: 1px solid #E5E5E5; 20 | color: #777777; 21 | padding-bottom: 40px; 22 | padding-top: 40px; 23 | text-align: center; 24 | } 25 | -------------------------------------------------------------------------------- /static/dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/dots.gif -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/favicon.ico -------------------------------------------------------------------------------- /static/fod_logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/fod_logo.xcf -------------------------------------------------------------------------------- /static/fodlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/fodlogo2.png -------------------------------------------------------------------------------- /static/img/bg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/bg2.gif -------------------------------------------------------------------------------- /static/img/bgbrick3_crop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/bgbrick3_crop.jpg -------------------------------------------------------------------------------- /static/img/facebook_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/facebook_img.png -------------------------------------------------------------------------------- /static/img/fod_footer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/fod_footer_logo.png -------------------------------------------------------------------------------- /static/img/fod_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/fod_logo.png -------------------------------------------------------------------------------- /static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /static/img/slide2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/slide2.jpg -------------------------------------------------------------------------------- /static/img/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/sort_asc.png -------------------------------------------------------------------------------- /static/img/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/sort_asc_disabled.png -------------------------------------------------------------------------------- /static/img/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/sort_both.png -------------------------------------------------------------------------------- /static/img/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/sort_desc.png -------------------------------------------------------------------------------- /static/img/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/sort_desc_disabled.png -------------------------------------------------------------------------------- /static/img/twitter_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/img/twitter_img.png -------------------------------------------------------------------------------- /static/itoggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/itoggle.png -------------------------------------------------------------------------------- /static/js/accounts.js: -------------------------------------------------------------------------------- 1 | // If the user clicks on Generate token, 2 | // then the following function will ask django 3 | // for a token and then present it 4 | 5 | $(document).ready(function() { 6 | $('a#generate_token').one('click', function (ev) { 7 | ev.preventDefault(); 8 | var url = $(this).prop('href'); 9 | var result = $(this).parent() 10 | result.text('loading...'); 11 | $.ajax({ 12 | url: url, 13 | success: function (data) { 14 | result.text(data); 15 | }, 16 | }) 17 | .fail(function() { 18 | result.text('An error has occured...'); 19 | }); 20 | }); 21 | }); 22 | -------------------------------------------------------------------------------- /static/js/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/select2/select2-spinner.gif -------------------------------------------------------------------------------- /static/js/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/select2/select2.png -------------------------------------------------------------------------------- /static/js/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/select2/select2x2.png -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- 1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;} 2 | .panel_wrapper div.current {height:80px;} 3 | #width {width:50px; vertical-align:middle;} 4 | #width2 {width:50px; vertical-align:middle;} 5 | #size {width:100px;} 6 | -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ar_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ar.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/az_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('az.advhr_dlg',{ 2 | width:"Eni", 3 | size:"H\u00FCnd\u00FCrl\u00FCy\u00FC", 4 | noshade:"K\u00F6lg\u0259 yoxdur" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/be_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('be.advhr_dlg',{ 2 | width:"\u0428\u044B\u0440\u044B\u043D\u044F", 3 | size:"\u0412\u044B\u0448\u044B\u043D\u044F", 4 | noshade:"\u041D\u044F\u043C\u0430 \u0446\u0435\u043D\u044E" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/bg_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bg.advhr_dlg',{ 2 | width:"\u0428\u0438\u0440\u0438\u043D\u0430", 3 | size:"\u0412\u0438\u0441\u043E\u0447\u0438\u043D\u0430", 4 | noshade:"\u0411\u0435\u0437 \u0441\u044F\u043D\u043A\u0430" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/bn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bn.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.advhr_dlg',{ 2 | width:"Largura", 3 | size:"Altura", 4 | noshade:"Sem sombra" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.advhr_dlg',{ 2 | width:"\u0160irina", 3 | size:"Visina", 4 | noshade:"Bez sjene" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ca_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ca.advhr_dlg',{ 2 | width:"Amplada", 3 | size:"Al\u00E7ada", 4 | noshade:"Sense sombra" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ch_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ch.advhr_dlg',{ 2 | width:"\u5BBD", 3 | size:"\u957F", 4 | noshade:"\u65E0\u9634\u5F71" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.advhr_dlg',{ 2 | width:"\u0160\u00ED\u0159ka", 3 | size:"V\u00FD\u0161ka", 4 | noshade:"Bez st\u00EDnu" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/cy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cy.advhr_dlg',{ 2 | width:"Lled", 3 | size:"Uchder", 4 | noshade:"Dim cysgod" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.advhr_dlg',{ 2 | width:"Bredde", 3 | size:"H\u00F8jde", 4 | noshade:"Ingen skygge" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.advhr_dlg',{ 2 | width:"Breite", 3 | size:"H\u00F6he", 4 | noshade:"Kein Schatten" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/dv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('dv.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/el_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('el.advhr_dlg',{ 2 | width:"\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2", 3 | size:"\u038E\u03C8\u03BF\u03C2", 4 | noshade:"\u03A7\u03C9\u03C1\u03AF\u03C2 \u03C3\u03BA\u03B9\u03AC" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/es_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.advhr_dlg',{ 2 | width:"Ancho", 3 | size:"Alto", 4 | noshade:"Sin sombra" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/et_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.advhr_dlg',{ 2 | width:"Laius", 3 | size:"K\u00F5rgus", 4 | noshade:"Ilma varjuta" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/eu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eu.advhr_dlg',{ 2 | width:"Zabalera", 3 | size:"Altuera", 4 | noshade:"Itzalik gabe" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/fa_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fa.advhr_dlg',{ 2 | width:"\u067E\u0647\u0646\u0627", 3 | size:"\u0627\u0631\u062A\u0641\u0627\u0639", 4 | noshade:"\u0628\u062F\u0648\u0646 \u0633\u0627\u06CC\u0647" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.advhr_dlg',{ 2 | width:"Leveys", 3 | size:"Korkeus", 4 | noshade:"Ei varjoa" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.advhr_dlg',{ 2 | width:"Largeur", 3 | size:"Hauteur", 4 | noshade:"Pas d'ombre" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/gl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.advhr_dlg',{ 2 | width:"Ancho", 3 | size:"Alto", 4 | noshade:"Sen sombra" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/gu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gu.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/he_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('he.advhr_dlg',{ 2 | width:"\u05E8\u05D5\u05D7\u05D1", 3 | size:"\u05D2\u05D5\u05D1\u05D4", 4 | noshade:"\u05DC\u05DC\u05D0 \u05E6\u05DC" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/hi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hi.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/hr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.advhr_dlg',{ 2 | width:"\u0160irina", 3 | size:"Visina", 4 | noshade:"Bez sjene" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.advhr_dlg',{ 2 | width:"Sz\u00E9less\u00E9g", 3 | size:"Magass\u00E1g", 4 | noshade:"\u00C1rny\u00E9k n\u00E9lk\u00FCl" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/hy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hy.advhr_dlg',{ 2 | width:"\u053C\u0561\u0575\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576", 3 | size:"\u0532\u0561\u0580\u0571\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576", 4 | noshade:"\u0531\u057C\u0561\u0576\u0581 \u057D\u057F\u057E\u0565\u0580\u056B" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ia_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ia.advhr_dlg',{ 2 | width:"\u5BBD", 3 | size:"\u957F", 4 | noshade:"\u65E0\u9634\u5F71" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.advhr_dlg',{ 2 | width:"Lebar", 3 | size:"Tinggi", 4 | noshade:"Tanpa bayangan" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ii_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ii.advhr_dlg',{ 2 | width:"\u5BBD", 3 | size:"\u9AD8", 4 | noshade:"\u65E0\u9634\u5F71" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/is_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('is.advhr_dlg',{ 2 | width:"Breidd", 3 | size:"H\u00E6\u00F0", 4 | noshade:"Enginn skuggi" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.advhr_dlg',{ 2 | width:"Larghezza", 3 | size:"Altezza", 4 | noshade:"Senza ombreggiatura" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.advhr_dlg',{ 2 | width:"\u5E45", 3 | size:"\u9AD8\u3055", 4 | noshade:"\u5F71\u306A\u3057" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ka_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ka.advhr_dlg',{ 2 | width:"\u10E1\u10D8\u10D2\u10D0\u10DC\u10D4", 3 | size:"\u10E1\u10D8\u10DB\u10D0\u10E6\u10DA\u10D4", 4 | noshade:"\u10E9\u10E0\u10D3\u10D8\u10DA\u10D8\u10E1 \u10D2\u10D0\u10E0\u10D4\u10E8\u10D4" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/kl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kl.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ko_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ko.advhr_dlg',{ 2 | width:"\uD3ED", 3 | size:"\uB192\uC774", 4 | noshade:"\uADF8\uB9BC\uC790\uC5C6\uC74C" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/lb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lb.advhr_dlg',{ 2 | width:"Breet", 3 | size:"H\u00E9icht", 4 | noshade:"Kee Schiet" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/lt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lt.advhr_dlg',{ 2 | width:"Ilgis", 3 | size:"Auk\u0161tis", 4 | noshade:"Be \u0161e\u0161\u0117lio" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/lv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lv.advhr_dlg',{ 2 | width:"Platums", 3 | size:"Augstums", 4 | noshade:"Bez \u0113nas" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/mk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('mk.advhr_dlg',{ 2 | width:"\u0160irina", 3 | size:"Visina", 4 | noshade:"Bez sjene" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ml_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ml.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/mn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('mn.advhr_dlg',{ 2 | width:"\u04E8\u0440\u0433\u04E9\u043D", 3 | size:"\u04E8\u043D\u0434\u04E9\u0440", 4 | noshade:"\u0421\u04AF\u04AF\u0434\u044D\u0440\u0433\u04AF\u0439" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ms_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.advhr_dlg',{ 2 | width:"Lebar", 3 | size:"Tinggi", 4 | noshade:"Tanpa bayang" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/nb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nb.advhr_dlg',{ 2 | width:"Bredde", 3 | size:"St\u00F8rrelse", 4 | noshade:"Ingen skygge" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.advhr_dlg',{ 2 | width:"Breedte", 3 | size:"Hoogte", 4 | noshade:"Geen schaduw" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/nn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nn.advhr_dlg',{ 2 | width:"Breidd", 3 | size:"Storleik", 4 | noshade:"Inga skugge" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/no_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('no.advhr_dlg',{ 2 | width:"Bredde", 3 | size:"St\u00F8rrelse", 4 | noshade:"Ingen skygge" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/pl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.advhr_dlg',{ 2 | width:"Szeroko\u015B\u0107", 3 | size:"Wysoko\u015B\u0107", 4 | noshade:"Bez cienia" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ps_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.advhr_dlg',{ 2 | width:"Largura", 3 | size:"Altura", 4 | noshade:"Sem sombra" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ro_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ro.advhr_dlg',{ 2 | width:"L\u0103\u0163ime", 3 | size:"\u00CEn\u0103l\u0163ime", 4 | noshade:"F\u0103r\u0103 umbre" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.advhr_dlg',{ 2 | width:"\u0428\u0438\u0440\u0438\u043D\u0430", 3 | size:"\u0412\u044B\u0441\u043E\u0442\u0430", 4 | noshade:"\u0411\u0435\u0437 \u0442\u0435\u043D\u0438" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/sc_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sc.advhr_dlg',{ 2 | width:"\u5BBD", 3 | size:"\u957F", 4 | noshade:"\u65E0\u9634\u5F71" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/se_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('se.advhr_dlg',{ 2 | width:"Bredd", 3 | size:"H\u00F6jd", 4 | noshade:"Ingen skugga" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/si_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('si.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/sk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sk.advhr_dlg',{ 2 | width:"\u0160\u00EDrka", 3 | size:"V\u00FD\u0161ka", 4 | noshade:"Bez tie\u0148a" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/sl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.advhr_dlg',{ 2 | width:"\u0160irina", 3 | size:"Vi\u0161ina", 4 | noshade:"Brez sen\u010Denja" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/sq_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sq.advhr_dlg',{ 2 | width:"Gjer\u00EBsia", 3 | size:"Gjat\u00EBsia", 4 | noshade:"Pa hije" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/sr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.advhr_dlg',{ 2 | width:"\u0160irina", 3 | size:"Visina", 4 | noshade:"Bez sjene" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.advhr_dlg',{ 2 | width:"Bredd", 3 | size:"H\u00F6jd", 4 | noshade:"Ingen skugga" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ta_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/te_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('te.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/th_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('th.advhr_dlg',{ 2 | width:"\u0E01\u0E27\u0E49\u0E32\u0E07", 3 | size:"\u0E2A\u0E39\u0E07", 4 | noshade:"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E40\u0E07\u0E32" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.advhr_dlg',{ 2 | width:"Geni\u015Flik", 3 | size:"Y\u00FCkseklik", 4 | noshade:"G\u00F6lge yok" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/tt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tt.advhr_dlg',{ 2 | width:"\u5BEC", 3 | size:"\u9577", 4 | noshade:"\u7121\u9670\u5F71" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/tw_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tw.advhr_dlg',{ 2 | width:"\u5BEC", 3 | size:"\u9AD8", 4 | noshade:"\u7121\u9670\u5F71" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/uk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.advhr_dlg',{ 2 | width:"\u0428\u0438\u0440\u0438\u043D\u0430", 3 | size:"\u0412\u0438\u0441\u043E\u0442\u0430", 4 | noshade:"\u0411\u0435\u0437 \u0442\u0456\u043D\u0456" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/ur_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ur.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/vi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.advhr_dlg',{ 2 | width:"Chi\u1EC1u d\u00E0i", 3 | size:"Chi\u1EC1u r\u1ED9ng", 4 | noshade:"Kh\u00F4ng c\u00F3 b\u00F3ng" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.advhr_dlg',{ 2 | width:"\u5BBD", 3 | size:"\u9AD8", 4 | noshade:"\u65E0\u9634\u5F71" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advhr/langs/zu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zu.advhr_dlg',{ 2 | width:"\u5BBD", 3 | size:"\u957F", 4 | noshade:"\u65E0\u9634\u5F71" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/advlink/css/advlink.css: -------------------------------------------------------------------------------- 1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .panel_wrapper div.current {height:320px;} 4 | #classlist, #title, #href {width:280px;} 5 | #popupurl, #popupname {width:200px;} 6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} 7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} 8 | #events_panel input {width:200px;} 9 | -------------------------------------------------------------------------------- /static/js/tinymce/plugins/autosave/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.autosave',{ 2 | restore_content: "Restore auto-saved content", 3 | warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?" 4 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ar_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ar.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/bg_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bg.emotions_dlg',{ 2 | title:"\u0412\u043C\u044A\u043A\u043D\u0438 \u0435\u043C\u043E\u0442\u0438\u043A\u043E\u043D", 3 | desc:"\u0415\u043C\u043E\u0442\u0438\u043A\u043E\u043D\u0438", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/bn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bn.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.emotions_dlg',{ 2 | title:"Inserir emoticon", 3 | desc:"Emoticons", 4 | cool:"Fixe", 5 | cry:"Chor\u00E3o", 6 | embarassed:"Embara\u00E7ado", 7 | foot_in_mouth:"Disse asneira", 8 | frown:"Decep\u00E7\u00E3o", 9 | innocent:"Inocente", 10 | kiss:"Beijo", 11 | laughing:"Riso", 12 | money_mouth:"Avarez", 13 | sealed:"Boca Fechada", 14 | smile:"Sorriso", 15 | surprised:"Surpresa", 16 | tongue_out:"L\u00EDngua de fora", 17 | undecided:"Indeciso", 18 | wink:"Piscadela", 19 | yell:"Irado" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.emotions_dlg',{ 2 | title:"Umetni emociju", 3 | desc:"Emocije", 4 | cool:"Cool", 5 | cry:"Pla\u010D", 6 | embarassed:"Sramim se", 7 | foot_in_mouth:"Izlanuo se", 8 | frown:"Mr\u0161ti se", 9 | innocent:"Nevina\u0161ce", 10 | kiss:"Poljubac", 11 | laughing:"Smijeh", 12 | money_mouth:"Bogata\u0161", 13 | sealed:"\u0160utim", 14 | smile:"Osmijeh", 15 | surprised:"Iznena\u0111en", 16 | tongue_out:"Belji se", 17 | undecided:"Neodlu\u010Dan", 18 | wink:"Namigiva", 19 | yell:"Vi\u010De" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ca_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ca.emotions_dlg',{ 2 | title:"Insereix una emoticona", 3 | desc:"Emoticones", 4 | cool:"Guai", 5 | cry:"Plorant", 6 | embarassed:"Avergonyit", 7 | foot_in_mouth:"Amb un peu a la boca", 8 | frown:"Arrufant les celles", 9 | innocent:"Innocent", 10 | kiss:"Pet\u00F3", 11 | laughing:"Rient", 12 | money_mouth:"Amb fam de diners", 13 | sealed:"Censurat", 14 | smile:"Somriure", 15 | surprised:"Sorpr\u00E8s", 16 | tongue_out:"Llengua a fora", 17 | undecided:"Indec\u00EDs", 18 | wink:"Fent l\'ullet", 19 | yell:"Cridant" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ch_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ch.emotions_dlg',{ 2 | title:"\u63D2\u5165\u8868\u60C5", 3 | desc:"\u8868\u60C5", 4 | cool:"\u51B7\u9177", 5 | cry:"\u54ED\u6CE3", 6 | embarassed:"\u5C34\u5C2C", 7 | foot_in_mouth:"\u54A7\u5634", 8 | frown:"\u76B1\u7709", 9 | innocent:"\u5929\u771F", 10 | kiss:"\u543B", 11 | laughing:"\u5927\u7B11", 12 | money_mouth:"\u53D1\u8D22", 13 | sealed:"\u4FDD\u5BC6", 14 | smile:"\u5FAE\u7B11", 15 | surprised:"\u60CA\u5413", 16 | tongue_out:"\u5410\u820C\u5934", 17 | undecided:"\u8003\u8651", 18 | wink:"\u7728\u773C", 19 | yell:"\u53EB\u56B7" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/cy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cy.emotions_dlg',{ 2 | title:"Mewnosod emosiwn", 3 | desc:"Emosiynau", 4 | cool:"Iawn", 5 | cry:"Crio", 6 | embarassed:"Rhwystrus", 7 | foot_in_mouth:"Troed yn ceg", 8 | frown:"Cuchio", 9 | innocent:"Dieuog", 10 | kiss:"Sws", 11 | laughing:"Chwerthin", 12 | money_mouth:"Ceg arian", 13 | sealed:"Wedi'i selio", 14 | smile:"Gw\u00EAn", 15 | surprised:"Wedi synnu", 16 | tongue_out:"Tafod allan", 17 | undecided:"Heb penderfynu", 18 | wink:"Wincio", 19 | yell:"Gweiddi" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.emotions_dlg',{ 2 | title:"Inds\u00E6t hum\u00F8rikon", 3 | desc:"Hum\u00F8rikoner", 4 | cool:"Cool", 5 | cry:"Gr\u00E6de", 6 | embarassed:"Flov", 7 | foot_in_mouth:"Fod i munden", 8 | frown:"Forskr\u00E6kket", 9 | innocent:"Uskyldig", 10 | kiss:"Kys", 11 | laughing:"Grine", 12 | money_mouth:"Pengemund", 13 | sealed:"Lukket", 14 | smile:"Smil", 15 | surprised:"Overrasket", 16 | tongue_out:"Tunge ud", 17 | undecided:"Ubeslutsom", 18 | wink:"Vink", 19 | yell:"R\u00E5be" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.emotions_dlg',{ 2 | title:"Smiley einf\u00FCgen", 3 | desc:"Smilies", 4 | cool:"Cool", 5 | cry:"Weinend", 6 | embarassed:"Verlegen", 7 | foot_in_mouth:"Reingefallen", 8 | frown:"Stirnrunzelnd", 9 | innocent:"Unschuldig", 10 | kiss:"K\u00FCssend", 11 | laughing:"Lachend", 12 | money_mouth:"Geld", 13 | sealed:"Verschlossen", 14 | smile:"L\u00E4chelnd", 15 | surprised:"\u00DCberrascht", 16 | tongue_out:"Zunge raus", 17 | undecided:"Unentschlossen", 18 | wink:"Zwinkernd", 19 | yell:"Br\u00FCllend" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/dv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('dv.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/es_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.emotions_dlg',{ 2 | title:"Insertar emoticon", 3 | desc:"Emoticones", 4 | cool:"Todo bien", 5 | cry:"Llora", 6 | embarassed:"Verg\u00FCenza", 7 | foot_in_mouth:"Pie en la boca", 8 | frown:"Triste", 9 | innocent:"Inocente", 10 | kiss:"Beso", 11 | laughing:"Risa", 12 | money_mouth:"Dinero boca", 13 | sealed:"Sellado", 14 | smile:"Sonrisa", 15 | surprised:"Sorprendido", 16 | tongue_out:"Lengua fuera", 17 | undecided:"Indeciso", 18 | wink:"Gui\u00F1o", 19 | yell:"Enfadado" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/et_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.emotions_dlg',{ 2 | title:"Sisesta emotsioon", 3 | desc:"Emotsioonid", 4 | cool:"Lahe", 5 | cry:"Nutt", 6 | embarassed:"H\u00E4bitunne", 7 | foot_in_mouth:"Jalg suus", 8 | frown:"Kulmu kortsutamine", 9 | innocent:"S\u00FC\u00FCtu", 10 | kiss:"Suudlus", 11 | laughing:"Naermine", 12 | money_mouth:"Rahasuu", 13 | sealed:"Suletud", 14 | smile:"Naeratus", 15 | surprised:"\u00DCllatunud", 16 | tongue_out:"Keel v\u00E4ljas", 17 | undecided:"K\u00F5hklev", 18 | wink:"Silmapilgutus", 19 | yell:"Karje" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/eu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eu.emotions_dlg',{ 2 | title:"Ikonotxoa sartu", 3 | desc:"Ikonotsoak", 4 | cool:"Ondo", 5 | cry:"Negarrez", 6 | embarassed:"Lotsatuta", 7 | foot_in_mouth:"Hanka ahoan", 8 | frown:"Desadostasuna", 9 | innocent:"Ni ez naiz izan", 10 | kiss:"Muxua", 11 | laughing:"Barrez", 12 | money_mouth:"Ahoa diruz beteta", 13 | sealed:"Ixilik", 14 | smile:"Irriparra", 15 | surprised:"Harrituta", 16 | tongue_out:"Mihia atera", 17 | undecided:"Zalantzan", 18 | wink:"Keinua", 19 | yell:"Ohiua" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.emotions_dlg',{ 2 | title:"Lis\u00E4\u00E4 hymi\u00F6", 3 | desc:"Hymi\u00F6t", 4 | cool:"Cool", 5 | cry:"Itku", 6 | embarassed:"Nolostunut", 7 | foot_in_mouth:"Jalka suussa", 8 | frown:"Otsan rypistys", 9 | innocent:"Viaton", 10 | kiss:"Pusu", 11 | laughing:"Nauru", 12 | money_mouth:"Klink Klink (raha)", 13 | sealed:"Tukittu", 14 | smile:"Hymy", 15 | surprised:"Yll\u00E4ttynyt", 16 | tongue_out:"Kieli ulkona", 17 | undecided:"P\u00E4\u00E4tt\u00E4m\u00E4t\u00F6n", 18 | wink:"Silm\u00E4nisku", 19 | yell:"Huuto" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.emotions_dlg',{ 2 | title:"Ins\u00E9rer une \u00E9motic\u00F4ne", 3 | desc:"\u00C9motic\u00F4nes", 4 | cool:"Cool", 5 | cry:"En pleurs", 6 | embarassed:"Embarrass\u00E9", 7 | foot_in_mouth:"Pied de nez", 8 | frown:"D\u00E9\u00E7u", 9 | innocent:"Innocent", 10 | kiss:"Bisou", 11 | laughing:"Rigolant", 12 | money_mouth:"Avare", 13 | sealed:"Bouche cousue", 14 | smile:"Sourire", 15 | surprised:"Surpris", 16 | tongue_out:"Langue tir\u00E9e", 17 | undecided:"Incertain", 18 | wink:"Clin d'\u0153il", 19 | yell:"Criant" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/gl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.emotions_dlg',{ 2 | title:"Insertar emoticon", 3 | desc:"Emoticones", 4 | cool:"Guay", 5 | cry:"Chora", 6 | embarassed:"Vergo\u00F1a", 7 | foot_in_mouth:"A que dixen", 8 | frown:"Triste", 9 | innocent:"Inocente", 10 | kiss:"Beso", 11 | laughing:"Risa", 12 | money_mouth:"Cartos", 13 | sealed:"Selado", 14 | smile:"Sorriso", 15 | surprised:"Sorprendido", 16 | tongue_out:"Canso", 17 | undecided:"Indeciso", 18 | wink:"Gui\u00F1o", 19 | yell:"Anoxado" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/gu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gu.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/hi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hi.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/hr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.emotions_dlg',{ 2 | title:"Umetni emociju", 3 | desc:"Emocije", 4 | cool:"Cool", 5 | cry:"Pla\u010D", 6 | embarassed:"Sramim se", 7 | foot_in_mouth:"Izlanuo se", 8 | frown:"Mr\u0161ti se", 9 | innocent:"Nevina\u0161ce", 10 | kiss:"Poljubac", 11 | laughing:"Smijeh", 12 | money_mouth:"Bogata\u0161", 13 | sealed:"\u0160utim", 14 | smile:"Osmijeh", 15 | surprised:"Iznena\u0111en", 16 | tongue_out:"Belji se", 17 | undecided:"Neodlu\u010Dan", 18 | wink:"Namigiva", 19 | yell:"Vi\u010De" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.emotions_dlg',{ 2 | title:"Hangulatjel besz\u00FAr\u00E1sa", 3 | desc:"Hangulatjelek", 4 | cool:"Kir\u00E1ly", 5 | cry:"S\u00EDr\u00F3s", 6 | embarassed:"Zavarban van", 7 | foot_in_mouth:"L\u00E1b a sz\u00E1jban", 8 | frown:"Rosszall", 9 | innocent:"\u00C1rtatlan", 10 | kiss:"Cs\u00F3k", 11 | laughing:"Nevet\u00E9s", 12 | money_mouth:"P\u00E9nz besz\u00E9l", 13 | sealed:"Lakat a sz\u00E1j\u00E1n", 14 | smile:"Vigyor", 15 | surprised:"Meglepett", 16 | tongue_out:"Nyelv\u00F6lt\u00E9s", 17 | undecided:"Hat\u00E1rozatlan", 18 | wink:"Kacsint\u00E1s", 19 | yell:"\u00DCv\u00F6lt\u00E9s" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/hy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hy.emotions_dlg',{ 2 | title:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C \u057D\u0574\u0561\u0575\u056C\u056B\u056F", 3 | desc:"\u054D\u0574\u0561\u0575\u056C\u056B\u056F\u0576\u0565\u0580", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ia_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ia.emotions_dlg',{ 2 | title:"\u63D2\u5165\u8868\u60C5", 3 | desc:"\u8868\u60C5\u5217\u8868", 4 | cool:"\u51B7\u9177", 5 | cry:"\u54ED\u6CE3", 6 | embarassed:"\u5C34\u5C2C", 7 | foot_in_mouth:"\u54A7\u5634", 8 | frown:"\u76B1\u7709", 9 | innocent:"\u5929\u771F", 10 | kiss:"\u543B", 11 | laughing:"\u5927\u7B11", 12 | money_mouth:"\u53D1\u8D22", 13 | sealed:"\u4FDD\u5BC6", 14 | smile:"\u5FAE\u7B11", 15 | surprised:"\u60CA\u5413", 16 | tongue_out:"\u5410\u820C\u5934", 17 | undecided:"\u601D\u8003", 18 | wink:"\u7728\u773C", 19 | yell:"\u53EB\u56B7" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.emotions_dlg',{ 2 | title:"sisipkan emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ii_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ii.emotions_dlg',{ 2 | title:"\u63D2\u5165\u56FE\u91CA", 3 | desc:"\u56FE\u91CA", 4 | cool:"\u51B7\u9177", 5 | cry:"\u54ED\u6CE3", 6 | embarassed:"\u5C34\u5C2C", 7 | foot_in_mouth:"\u54A7\u5634", 8 | frown:"\u76B1\u7709", 9 | innocent:"\u5929\u771F", 10 | kiss:"\u543B", 11 | laughing:"\u5927\u7B11", 12 | money_mouth:"\u53D1\u8D22", 13 | sealed:"\u4FDD\u5BC6", 14 | smile:"\u5FAE\u7B11", 15 | surprised:"\u60CA\u5413", 16 | tongue_out:"\u5410\u820C\u5934", 17 | undecided:"\u8003\u8651", 18 | wink:"\u7728\u773C", 19 | yell:"\u53EB\u56B7" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/is_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('is.emotions_dlg',{ 2 | title:"Setja inn broskall", 3 | desc:"Broskarlar", 4 | cool:"T\u00F6ff", 5 | cry:"Gr\u00E1tandi", 6 | embarassed:"Skammast s\u00EDn", 7 | foot_in_mouth:"F\u00F3tur \u00ED munni", 8 | frown:"Frown", 9 | innocent:"Saklaus", 10 | kiss:"Koss", 11 | laughing:"Hl\u00E6gjandi", 12 | money_mouth:"Peningamunnur", 13 | sealed:"Rennil\u00E1samunnur", 14 | smile:"Bros", 15 | surprised:"Hissa", 16 | tongue_out:"Tungan \u00FAt", 17 | undecided:"\u00D3\u00E1kve\u00F0inn", 18 | wink:"Wink", 19 | yell:"\u00D6skrandi" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.emotions_dlg',{ 2 | title:"Inserisci faccina", 3 | desc:"Faccina", 4 | cool:"Fico", 5 | cry:"Piango", 6 | embarassed:"Imbarazzato", 7 | foot_in_mouth:"Piede in bocca", 8 | frown:"Triste", 9 | innocent:"Santarellino", 10 | kiss:"Bacio", 11 | laughing:"Risatona", 12 | money_mouth:"Bocca danarosa", 13 | sealed:"Bocca sigillata", 14 | smile:"Sorridente", 15 | surprised:"Sorpreso", 16 | tongue_out:"Linguaccia", 17 | undecided:"Indeciso", 18 | wink:"Occhiolino", 19 | yell:"Arrabbiato" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.emotions_dlg',{ 2 | title:"\u8868\u60C5\u30A2\u30A4\u30B3\u30F3\u306E\u633F\u5165", 3 | desc:"\u8868\u60C5\u30A2\u30A4\u30B3\u30F3", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ka_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ka.emotions_dlg',{ 2 | title:"\u10E1\u10DB\u10D0\u10D8\u10DA\u10D8\u10E1 \u10D0\u10E0\u10E9\u10D4\u10D5\u10D0", 3 | desc:"\u10E1\u10DB\u10D0\u10D8\u10DA\u10D4\u10D1\u10D8", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/kl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kl.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/lb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lb.emotions_dlg',{ 2 | title:"Smiley af\u00FCgen", 3 | desc:"Smileyen", 4 | cool:"Cool", 5 | cry:"Kr\u00E4ischend", 6 | embarassed:"Gen\u00E9iert", 7 | foot_in_mouth:"Eragefall", 8 | frown:"D'Stir ronzelend", 9 | innocent:"Onsch\u00EBlleg", 10 | kiss:"Kussend", 11 | laughing:"Laachend", 12 | money_mouth:"Suen", 13 | sealed:"Verschlossen", 14 | smile:"Laachend", 15 | surprised:"Iwwerrascht", 16 | tongue_out:"Zong eraus", 17 | undecided:"Onentschloss", 18 | wink:"Zwinkernd", 19 | yell:"Br\u00EBllend" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/lt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lt.emotions_dlg',{ 2 | title:"\u012Eterpti jaustuk\u0105", 3 | desc:"Jaustukai", 4 | cool:"J\u0117ga", 5 | cry:"Verksmas", 6 | embarassed:"Susig\u0117d\u0119s", 7 | foot_in_mouth:"Koja burnoje", 8 | frown:"Susirauk\u0119s", 9 | innocent:"Nekaltas", 10 | kiss:"Bu\u010Dinys", 11 | laughing:"Juokimasis", 12 | money_mouth:"Piniginga burna", 13 | sealed:"Sandarus", 14 | smile:"\u0160ypsena", 15 | surprised:"Nusteb\u0119s", 16 | tongue_out:"I\u0161ki\u0161tas lie\u017Euvis", 17 | undecided:"Neapsisprend\u0119s", 18 | wink:"Mirk\u010Diojimas", 19 | yell:"Klyksmas" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/lv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lv.emotions_dlg',{ 2 | title:"Ievietot smaidi\u0146u", 3 | desc:"Smaidi\u0146i", 4 | cool:"V\u0113sais", 5 | cry:"Raudul\u012Bgais", 6 | embarassed:"Nokautr\u0113jies", 7 | foot_in_mouth:"K\u0101jmutis", 8 | frown:"Satraukts", 9 | innocent:"Nevain\u012Bgs", 10 | kiss:"Sk\u016Bpsts", 11 | laughing:"Smejo\u0161s", 12 | money_mouth:"Naudmutis", 13 | sealed:"Nosl\u0113gts", 14 | smile:"Smaid\u012Bgs", 15 | surprised:"P\u0101rsteigts", 16 | tongue_out:"M\u0113d\u012Bgs", 17 | undecided:"Neizl\u0113m\u012Bgs", 18 | wink:"Aci miedzo\u0161s", 19 | yell:"Kliedzo\u0161s" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/mk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('mk.emotions_dlg',{ 2 | title:"\u0412\u043C\u0435\u0442\u043D\u0438 emociju", 3 | desc:"Emocije", 4 | cool:"Cool", 5 | cry:"Pla\u010D", 6 | embarassed:"Sramim se", 7 | foot_in_mouth:"Izlanuo se", 8 | frown:"Mr\u0161ti se", 9 | innocent:"Nevina\u0161ce", 10 | kiss:"Poljubac", 11 | laughing:"Smeh", 12 | money_mouth:"Bogata\u0161", 13 | sealed:"\u0160utim", 14 | smile:"Osmeh", 15 | surprised:"Iznena\u0111en", 16 | tongue_out:"Belji se", 17 | undecided:"Neodlu\u010Dan", 18 | wink:"Namigiva", 19 | yell:"Vi\u010De" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ml_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ml.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ms_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.emotions_dlg',{ 2 | title:"Masukkan emosi", 3 | desc:"Simbol Emosi", 4 | cool:"Tampan", 5 | cry:"Menangis", 6 | embarassed:"Malu", 7 | foot_in_mouth:"Kaki dalam mulut", 8 | frown:"Mengerut", 9 | innocent:"Tidak bersalah", 10 | kiss:"Cium", 11 | laughing:"Gelak", 12 | money_mouth:"Duit mulut", 13 | sealed:"Kacip", 14 | smile:"Senyum", 15 | surprised:"Terkejut", 16 | tongue_out:"Jelir lidah", 17 | undecided:"Tak pasti", 18 | wink:"Kenyit", 19 | yell:"Menguap" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/nb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nb.emotions_dlg',{ 2 | title:"Sett inn hum\u00F8rfjes", 3 | desc:"Hum\u00F8rfjes", 4 | cool:"Cool", 5 | cry:"Gr\u00E5ter", 6 | embarassed:"Flau", 7 | foot_in_mouth:"Fot i munnen", 8 | frown:"Skuffet", 9 | innocent:"Uskyldig", 10 | kiss:"Kyss", 11 | laughing:"Ler", 12 | money_mouth:"Penger i munnen", 13 | sealed:"Hemmelig", 14 | smile:"Glad", 15 | surprised:"Overrasket", 16 | tongue_out:"Rekke tunge", 17 | undecided:"Skeptisk", 18 | wink:"Blunke", 19 | yell:"Skri" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.emotions_dlg',{ 2 | title:"Emotie invoegen", 3 | desc:"Emoties", 4 | cool:"Stoer", 5 | cry:"Huilen", 6 | embarassed:"Schamen", 7 | foot_in_mouth:"Verstomd", 8 | frown:"Wenkbrauw ophalen", 9 | innocent:"Onschuldig", 10 | kiss:"Zoenen", 11 | laughing:"Lachen", 12 | money_mouth:"Hebberig", 13 | sealed:"Afgesloten", 14 | smile:"Lachen", 15 | surprised:"Verrast", 16 | tongue_out:"Tong uitsteken", 17 | undecided:"Onbeslist", 18 | wink:"Knipogen", 19 | yell:"Roepen" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/nn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nn.emotions_dlg',{ 2 | title:"Set inn hum\u00F8rfjes", 3 | desc:"Hum\u00F8rfjes", 4 | cool:"Cool", 5 | cry:"Gret", 6 | embarassed:"Flau", 7 | foot_in_mouth:"Fot i munnen", 8 | frown:"Skuffa", 9 | innocent:"Uskyldig", 10 | kiss:"Kyss", 11 | laughing:"Ler", 12 | money_mouth:"Pengar i munnen", 13 | sealed:"Hemmeleg", 14 | smile:"Glad", 15 | surprised:"Overraska", 16 | tongue_out:"Rekkje tunge", 17 | undecided:"Skeptisk", 18 | wink:"Blunke", 19 | yell:"Skri" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/no_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('no.emotions_dlg',{ 2 | title:"Sett inn hum\u00F8rfjes", 3 | desc:"Hum\u00F8rfjes", 4 | cool:"Cool", 5 | cry:"Gret", 6 | embarassed:"Flau", 7 | foot_in_mouth:"Fot i munnen", 8 | frown:"Skuffa", 9 | innocent:"Uskyldig", 10 | kiss:"Kyss", 11 | laughing:"Ler", 12 | money_mouth:"Pengar i munnen", 13 | sealed:"Hemmelig", 14 | smile:"Glad", 15 | surprised:"Overraska", 16 | tongue_out:"Rekke tunge", 17 | undecided:"Skeptisk", 18 | wink:"Blunke", 19 | yell:"Skrik" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/pl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.emotions_dlg',{ 2 | title:"Wstaw emotikon\u0119", 3 | desc:"Emotikony", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ps_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.emotions_dlg',{ 2 | title:"Inserir emoticon", 3 | desc:"Emoticons", 4 | cool:"Fixe", 5 | cry:"Chor\u00E3o", 6 | embarassed:"Embara\u00E7ado", 7 | foot_in_mouth:"Disse asneira", 8 | frown:"Decep\u00E7\u00E3o", 9 | innocent:"Inocente", 10 | kiss:"Beijo", 11 | laughing:"Riso", 12 | money_mouth:"Avarez", 13 | sealed:"Boca Fechada", 14 | smile:"Sorriso", 15 | surprised:"Surpresa", 16 | tongue_out:"L\u00EDngua de fora", 17 | undecided:"Indeciso", 18 | wink:"Piscadela", 19 | yell:"Irado" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ro_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ro.emotions_dlg',{ 2 | title:"Insereaz\u0103 o figurin\u0103", 3 | desc:"Figurine emotive", 4 | cool:"Cool", 5 | cry:"Trist", 6 | embarassed:"Ru\u015Finat", 7 | foot_in_mouth:"Picior \u00EEn gur\u0103", 8 | frown:"\u00CEncruntat", 9 | innocent:"Nevinovat", 10 | kiss:"Pupic", 11 | laughing:"R\u00E2de", 12 | money_mouth:"Bani \u00EEn gur\u0103", 13 | sealed:"Sigilat", 14 | smile:"Z\u00E2mbet", 15 | surprised:"Surprins", 16 | tongue_out:"Cu limba afar\u0103", 17 | undecided:"Indecis", 18 | wink:"Face cu ochiul", 19 | yell:"\u0162ip\u0103" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.emotions_dlg',{ 2 | title:"\u0412\u044B\u0431\u043E\u0440 \u0441\u043C\u0430\u0439\u043B\u0430", 3 | desc:"\u0421\u043C\u0430\u0439\u043B\u044B", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/sc_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sc.emotions_dlg',{ 2 | title:"\u63D2\u5165\u56FE\u91CA", 3 | desc:"\u56FE\u91CA", 4 | cool:"\u51B7\u9177", 5 | cry:"\u54ED\u6CE3", 6 | embarassed:"\u5C34\u5C2C", 7 | foot_in_mouth:"\u54A7\u5634", 8 | frown:"\u76B1\u7709", 9 | innocent:"\u5929\u771F", 10 | kiss:"\u543B", 11 | laughing:"\u5927\u7B11", 12 | money_mouth:"\u53D1\u8D22", 13 | sealed:"\u4FDD\u5BC6", 14 | smile:"\u5FAE\u7B11", 15 | surprised:"\u60CA\u5413", 16 | tongue_out:"\u5410\u820C\u5934", 17 | undecided:"\u8003\u8651", 18 | wink:"\u7728\u773C", 19 | yell:"\u53EB\u56B7" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/se_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('se.emotions_dlg',{ 2 | title:"Infoga smiley", 3 | desc:"Smileys", 4 | cool:"Cool", 5 | cry:"Gr\u00E5ter", 6 | embarassed:"Sk\u00E4ms", 7 | foot_in_mouth:"Foten i munnen", 8 | frown:"Rynkar p\u00E5 n\u00E4san", 9 | innocent:"Oskyldig", 10 | kiss:"Kyss", 11 | laughing:"Skrattande", 12 | money_mouth:"Guld i mun", 13 | sealed:"Tyst", 14 | smile:"Glad", 15 | surprised:"F\u00F6rv\u00E5nad", 16 | tongue_out:"Tungan ute", 17 | undecided:"Obest\u00E4md", 18 | wink:"Fl\u00F6rt", 19 | yell:"Skrikandes" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/si_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('si.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/sl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.emotions_dlg',{ 2 | title:"Vstavi sme\u0161ka", 3 | desc:"Sme\u0161ki", 4 | cool:"kul", 5 | cry:"jok", 6 | embarassed:"v zadregi", 7 | foot_in_mouth:"zare\u010Deni kruh", 8 | frown:"nagubano \u010Delo", 9 | innocent:"nedol\u017Een", 10 | kiss:"poljub", 11 | laughing:"smeh", 12 | money_mouth:"zlati kljun", 13 | sealed:"zape\u010Dateno", 14 | smile:"nasmeh", 15 | surprised:"presene\u010Den", 16 | tongue_out:"ka\u017Ee jezik", 17 | undecided:"neodlo\u010Den", 18 | wink:"me\u017Eik", 19 | yell:"krik" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/sq_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sq.emotions_dlg',{ 2 | title:"Fut emocion", 3 | desc:"Emocionet", 4 | cool:"I/e lezetsh\u00EBm", 5 | cry:"Qaj", 6 | embarassed:"Turp", 7 | foot_in_mouth:"K\u00EBmba n\u00EB goj\u00EB", 8 | frown:"Rrudh vetullat", 9 | innocent:"I/e pafajsh\u00EBm", 10 | kiss:"Puth", 11 | laughing:"Qesh", 12 | money_mouth:"Lek\u00EB n\u00EB goj\u00EB", 13 | sealed:"Dh\u00EBmb\u00EBt e mbyllur", 14 | smile:"Buz\u00EBqesh", 15 | surprised:"I/e \u00E7uditur", 16 | tongue_out:"Gjuha jasht\u00EB", 17 | undecided:"I/e pavendosur", 18 | wink:"Shkel syrin", 19 | yell:"B\u00EBrtit" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/sr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.emotions_dlg',{ 2 | title:"Umetni emociju", 3 | desc:"Emocije", 4 | cool:"Cool", 5 | cry:"Pla\u010D", 6 | embarassed:"Sramim se", 7 | foot_in_mouth:"Izlanuo se", 8 | frown:"Mr\u0161ti se", 9 | innocent:"Nevina\u0161ce", 10 | kiss:"Poljubac", 11 | laughing:"Smeh", 12 | money_mouth:"Bogata\u0161", 13 | sealed:"\u0160utim", 14 | smile:"Osmeh", 15 | surprised:"Iznena\u0111en", 16 | tongue_out:"Belji se", 17 | undecided:"Neodlu\u010Dan", 18 | wink:"Namigiva", 19 | yell:"Vi\u010De" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.emotions_dlg',{ 2 | title:"Infoga smiley", 3 | desc:"Smileys", 4 | cool:"Cool", 5 | cry:"Gr\u00E5ter", 6 | embarassed:"Sk\u00E4ms", 7 | foot_in_mouth:"Foten i munnen", 8 | frown:"Rynkar p\u00E5 n\u00E4san", 9 | innocent:"Oskyldig", 10 | kiss:"Kyss", 11 | laughing:"Skrattande", 12 | money_mouth:"Guld i mun", 13 | sealed:"Tyst", 14 | smile:"Glad", 15 | surprised:"F\u00F6rv\u00E5nad", 16 | tongue_out:"Tungan ute", 17 | undecided:"Obest\u00E4md", 18 | wink:"Fl\u00F6rt", 19 | yell:"Skrikandes" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ta_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/te_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('te.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.emotions_dlg',{ 2 | title:"\u0130fade ekle", 3 | desc:"\u0130fadeler", 4 | cool:"Sakin", 5 | cry:"A\u011Flayan", 6 | embarassed:"Utanga\u00E7", 7 | foot_in_mouth:"Pot k\u0131rm\u0131\u015F", 8 | frown:"As\u0131k", 9 | innocent:"Masum", 10 | kiss:"\u00D6p\u00FCc\u00FCk", 11 | laughing:"Kahkaha", 12 | money_mouth:"Para g\u00F6z", 13 | sealed:"Gizli", 14 | smile:"G\u00FCl\u00FCmseme", 15 | surprised:"\u015Ea\u015F\u0131rma", 16 | tongue_out:"Dil \u00E7\u0131karma", 17 | undecided:"Karars\u0131z", 18 | wink:"G\u00F6z k\u0131rpma", 19 | yell:"Ba\u011F\u0131rma" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/tt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tt.emotions_dlg',{ 2 | title:"\u63D2\u5165\u8868\u60C5", 3 | desc:"\u8868\u60C5\u5217\u8868", 4 | cool:"\u51B7\u9177", 5 | cry:"\u54ED\u6CE3", 6 | embarassed:"\u5C37\u5C2C", 7 | foot_in_mouth:"\u54A7\u5634", 8 | frown:"\u76BA\u7709", 9 | innocent:"\u5929\u771F", 10 | kiss:"\u543B", 11 | laughing:"\u5927\u7B11", 12 | money_mouth:"\u767C\u8CA1", 13 | sealed:"\u4FDD\u5BC6", 14 | smile:"\u5FAE\u7B11", 15 | surprised:"\u9A5A\u5687", 16 | tongue_out:"\u5410\u820C\u982D", 17 | undecided:"\u601D\u8003", 18 | wink:"\u7728\u773C", 19 | yell:"\u53EB\u56B7" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/tw_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tw.emotions_dlg',{ 2 | title:"\u63D2\u5165\u8868\u60C5", 3 | desc:"\u8868\u60C5", 4 | cool:"\u51B7\u9177", 5 | cry:"\u54ED\u6CE3", 6 | embarassed:"\u5C37\u5C2C", 7 | foot_in_mouth:"\u54A7\u5634", 8 | frown:"\u76BA\u7709", 9 | innocent:"\u5929\u771F", 10 | kiss:"\u543B", 11 | laughing:"\u5927\u7B11", 12 | money_mouth:"\u767C\u8CA1", 13 | sealed:"\u4FDD\u5BC6", 14 | smile:"\u5FAE\u7B11", 15 | surprised:"\u9A5A\u8A1D", 16 | tongue_out:"\u5410\u820C\u982D", 17 | undecided:"\u601D\u7D22", 18 | wink:"\u7728\u773C", 19 | yell:"\u5927\u53EB" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/ur_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ur.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.emotions_dlg',{ 2 | title:"\u63D2\u5165\u8868\u60C5", 3 | desc:"\u8868\u60C5", 4 | cool:"\u51B7\u9177", 5 | cry:"\u54ED\u6CE3", 6 | embarassed:"\u5C34\u5C2C", 7 | foot_in_mouth:"\u54A7\u5634", 8 | frown:"\u76B1\u7709", 9 | innocent:"\u5929\u771F", 10 | kiss:"\u543B", 11 | laughing:"\u5927\u7B11", 12 | money_mouth:"\u53D1\u8D22", 13 | sealed:"\u4FDD\u5BC6", 14 | smile:"\u5FAE\u7B11", 15 | surprised:"\u60CA\u8BB6", 16 | tongue_out:"\u5410\u820C\u5934", 17 | undecided:"\u601D\u7D22", 18 | wink:"\u7728\u773C", 19 | yell:"\u5927\u53EB" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/emotions/langs/zu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zu.emotions_dlg',{ 2 | title:"\u63D2\u5165\u56FE\u91CA", 3 | desc:"\u56FE\u91CA", 4 | cool:"\u51B7\u9177", 5 | cry:"\u54ED\u6CE3", 6 | embarassed:"\u5C34\u5C2C", 7 | foot_in_mouth:"\u54A7\u5634", 8 | frown:"\u76B1\u7709", 9 | innocent:"\u5929\u771F", 10 | kiss:"\u543B", 11 | laughing:"\u5927\u7B11", 12 | money_mouth:"\u53D1\u8D22", 13 | sealed:"\u4FDD\u5BC6", 14 | smile:"\u5FAE\u7B11", 15 | surprised:"\u60CA\u5413", 16 | tongue_out:"\u5410\u820C\u5934", 17 | undecided:"\u8003\u8651", 18 | wink:"\u7728\u773C", 19 | yell:"\u53EB\u56B7" 20 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example',{ 2 | desc : 'This is just a template button' 3 | }); 4 | -------------------------------------------------------------------------------- /static/js/tinymce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example_dlg',{ 2 | title : 'This is just a example title' 3 | }); 4 | -------------------------------------------------------------------------------- /static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/media/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemFlash, .mceItemShockWave, .mceItemQuickTime, .mceItemWindowsMedia, .mceItemRealMedia {border:1px dotted #cc0000; background-position:center; background-repeat:no-repeat; background-color:#ffffcc;} 2 | .mceItemShockWave {background-image: url(../img/shockwave.gif);} 3 | .mceItemFlash {background-image:url(../img/flash.gif);} 4 | .mceItemQuickTime {background-image:url(../img/quicktime.gif);} 5 | .mceItemWindowsMedia {background-image:url(../img/windowsmedia.gif);} 6 | .mceItemRealMedia {background-image:url(../img/realmedia.gif);} 7 | -------------------------------------------------------------------------------- /static/js/tinymce/plugins/media/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/media/img/flash.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/media/img/flv_player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/media/img/flv_player.swf -------------------------------------------------------------------------------- /static/js/tinymce/plugins/media/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/media/img/quicktime.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/media/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/media/img/realmedia.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/media/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/media/img/shockwave.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/media/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/media/img/trans.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/media/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/media/img/windowsmedia.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/pagebreak/css/content.css: -------------------------------------------------------------------------------- 1 | .mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../img/pagebreak.gif) no-repeat center top;} 2 | -------------------------------------------------------------------------------- /static/js/tinymce/plugins/pagebreak/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/pagebreak/img/pagebreak.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/pagebreak/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/pagebreak/img/trans.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ar_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ar.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/az_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('az.paste_dlg',{ 2 | text_title:"P\u0259nc\u0259r\u0259y\u0259 m\u0259tn \u0259lav\u0259 etm\u0259k \u00FC\u00E7\u00FCn CTRL+V klavi\u015F birl\u0259\u015Fm\u0259sini istifad\u0259 edin.", 3 | text_linebreaks:"S\u0259tr s\u0131nmalar\u0131n\u0131 saxla", 4 | word_title:"P\u0259nc\u0259r\u0259y\u0259 s\u00F6z \u0259lav\u0259 etm\u0259k \u00FC\u00E7\u00FCn CTRL+V klavi\u015F birl\u0259\u015Fm\u0259sini istifad\u0259 edin." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/bn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bn.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.paste_dlg',{ 2 | text_title:"Use CTRL+V para colar o texto na janela.", 3 | text_linebreaks:"Manter quebras de linha", 4 | word_title:"Use CTRL+V para colar o texto na janela." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.paste_dlg',{ 2 | text_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.", 3 | text_linebreaks:"Zadr\u017Ei prijelome", 4 | word_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ca_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ca.paste_dlg',{ 2 | text_title:"Amb el teclat utilitzeu CTRL+V per a enganxar el text dins la finestra.", 3 | text_linebreaks:"Conserva els salts de l\u00EDnia", 4 | word_title:"Amb el teclat utilitzeu CTRL+V per a enganxar el text dins la finestra." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ch_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ch.paste_dlg',{ 2 | text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u7C98\u8D34\u5230\u6B64\u7A97\u53E3\u3002", 3 | text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7", 4 | word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u7C98\u8D34\u5230\u6B64\u7A97\u53E3\u3002" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.paste_dlg',{ 2 | text_title:"Pou\u017Eijte CTRL+V pro vlo\u017Een\u00ED textu do okna.", 3 | text_linebreaks:"Zachovat zalamov\u00E1n\u00ED \u0159\u00E1dk\u016F", 4 | word_title:"Pou\u017Eijte CTRL+V pro vlo\u017Een\u00ED textu do okna." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/cy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cy.paste_dlg',{ 2 | text_title:"Defnyddiwch CTRL+V ar eich bysellfwrdd i ludo'r testun i fewn i'r ffenest.", 3 | text_linebreaks:"Cadw toriadau llinell", 4 | word_title:"Defnyddiwch CTRL+V ar eich bysellfwrdd i ludo'r testun i fewn i'r ffenest." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.paste_dlg',{ 2 | text_title:"Anvend CTRL+V p\u00E5 tastaturet for at inds\u00E6tte teksten.", 3 | text_linebreaks:"Bevar linieskift", 4 | word_title:"Anvend CTRL+V p\u00E5 tastaturet for at inds\u00E6tte teksten." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.paste_dlg',{ 2 | text_title:"Dr\u00FCcken Sie auf Ihrer Tastatur Strg+V, um den Text einzuf\u00FCgen.", 3 | text_linebreaks:"Zeilenumbr\u00FCche beibehalten", 4 | word_title:"Dr\u00FCcken Sie auf Ihrer Tastatur Strg+V, um den Text einzuf\u00FCgen." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/dv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('dv.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/es_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.paste_dlg',{ 2 | text_title:"Use CTRL+V en su teclado para pegar el texto en la ventana.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V en su teclado para pegar el texto en la ventana." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/et_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.paste_dlg',{ 2 | text_title:"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks.", 3 | text_linebreaks:"J\u00E4ta reavahetused", 4 | word_title:"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/eu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eu.paste_dlg',{ 2 | text_title:"Erabili CTRL+V testua lehioan itsasteko.", 3 | text_linebreaks:"Mantendu lerro-jauziak", 4 | word_title:"Erabili CTRL+V testua lehioan itsasteko.." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.paste_dlg',{ 2 | text_title:"Paina CTRL+V liitt\u00E4\u00E4ksesi sis\u00E4ll\u00F6n ikkunaan.", 3 | text_linebreaks:"S\u00E4ilyt\u00E4 rivinvaihdot", 4 | word_title:"Paina CTRL+V liitt\u00E4\u00E4ksesi sis\u00E4ll\u00F6n ikkunaan." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.paste_dlg',{ 2 | text_title:"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00EAtre.", 3 | text_linebreaks:"Conserver les retours \u00E0 la ligne", 4 | word_title:"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00EAtre." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/gl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.paste_dlg',{ 2 | text_title:"Use CTRL+V no teclado pra pega-lo texto na vent\u00E1.", 3 | text_linebreaks:"Manter salto de li\u00F1as", 4 | word_title:"Use CTRL+V no teclado pra pega-lo texto na vent\u00E1." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/gu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gu.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/he_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('he.paste_dlg',{ 2 | text_title:"\u05D4\u05D3\u05D1\u05D9\u05E7\u05D5 \u05D1\u05D7\u05DC\u05D5\u05DF \u05D6\u05D4 \u05D0\u05EA \u05D4\u05D8\u05E7\u05E1\u05D8 \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA \u05D4\u05DE\u05E7\u05E9\u05D9\u05DD CTRL+V.", 3 | text_linebreaks:"\u05D4\u05E9\u05D0\u05E8 \u05D0\u05EA \u05E9\u05D5\u05E8\u05D5\u05EA \u05D4\u05E8\u05D5\u05D5\u05D7", 4 | word_title:"\u05D4\u05D3\u05D1\u05D9\u05E7\u05D5 \u05D1\u05D7\u05DC\u05D5\u05DF \u05D6\u05D4 \u05D0\u05EA \u05D4\u05D8\u05E7\u05E1\u05D8 \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA \u05D4\u05DE\u05E7\u05E9\u05D9\u05DD CTRL+V." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/hi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hi.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/hr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.paste_dlg',{ 2 | text_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.", 3 | text_linebreaks:"Zadr\u017Ei prijelome", 4 | word_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.paste_dlg',{ 2 | text_title:"Haszn\u00E1lja a Ctrl+V-t a billenty\u0171zet\u00E9n a beilleszt\u00E9shez.", 3 | text_linebreaks:"Sort\u00F6r\u00E9sek megtart\u00E1sa", 4 | word_title:"Haszn\u00E1lja a Ctrl+V-t a billenty\u0171zet\u00E9n a beilleszt\u00E9shez." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ia_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ia.paste_dlg',{ 2 | text_title:"\u5C06\u590D\u5236(CTRL + C)\u7684\u5185\u5BB9\u7C98\u8D34(CTRL + V)\u5230\u7A97\u53E3\u3002", 3 | text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7", 4 | word_title:"\u5C06\u590D\u5236(CTRL + C)\u7684\u5185\u5BB9\u7C98\u8D34(CTRL + V)\u5230\u7A97\u53E3\u3002" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.paste_dlg',{ 2 | text_title:"Gunakan CTRL+V pada keyboard untuk paste.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Gunakan CTRL+V pada keyboard untuk paste." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ii_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ii.paste_dlg',{ 2 | text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u7C98\u8D34\u6587\u5B57\u5230\u6B64\u7A97\u53E3\u3002", 3 | text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7", 4 | word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u7C98\u8D34\u6587\u5B57\u5230\u6B64\u7A97\u53E3\u3002" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/is_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('is.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.paste_dlg',{ 2 | text_title:"Premere CTRL+V sulla tastiera per incollare il testo nella finestra.", 3 | text_linebreaks:"Mantieni interruzioni di riga", 4 | word_title:"Premere CTRL+V sulla tastiera per incollare il testo nella finestra." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.paste_dlg',{ 2 | text_title:"\u30AD\u30FC\u30DC\u30FC\u30C9\u3067CTRL+V\u3092\u62BC\u3057\u3066\u30C6\u30AD\u30B9\u30C8\u3092\u8CBC\u308A\u4ED8\u3051\u3066\u304F\u3060\u3055\u3044\u3002", 3 | text_linebreaks:"\u6539\u884C\u3092\u4FDD\u6301\u3059\u308B", 4 | word_title:"\u30AD\u30FC\u30DC\u30FC\u30C9\u3067CTRL+V\u3092\u62BC\u3057\u3066\u30C6\u30AD\u30B9\u30C8\u3092\u8CBC\u308A\u4ED8\u3051\u3066\u304F\u3060\u3055\u3044\u3002" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/kl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kl.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ko_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ko.paste_dlg',{ 2 | text_title:"\uC708\uB3C4\uC6B0\uC5D0 \uD14D\uC2A4\uD2B8\uB97C \uBD99\uC774\uB824\uBA74 \uD0A4\uBCF4\uB4DC\uB85C Ctrl+V\uB97C \uC785\uB825\uD574 \uC8FC\uC138\uC694.", 3 | text_linebreaks:"\uAC1C\uD589\uC744 \uBCF4\uAD00 \uC720\uC9C0", 4 | word_title:"\uC708\uB3C4\uC6B0\uC5D0 \uD14D\uC2A4\uD2B8\uB97C \uBD99\uC774\uB824\uBA74 \uD0A4\uBCF4\uB4DC\uB85CCtrl+V\uB97C \uC785\uB825\uD574 \uC8FC\uC138\uC694." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/lb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lb.paste_dlg',{ 2 | text_title:"Dr\u00E9ckt op \u00C4rer Tastatur Ctrl+V, fir den Text an ze f\u00FCgen.", 3 | text_linebreaks:"Zeilen\u00EBmbr\u00EBch b\u00E4ibehalen", 4 | word_title:"Dr\u00E9ckt op \u00C4rer Tastatur Ctrl+V, um den Text an ze f\u00FCgen." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/lt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lt.paste_dlg',{ 2 | text_title:"Naudokite CTRL+V tekstui \u012Fd\u0117ti \u012F \u0161\u012F lang\u0105.", 3 | text_linebreaks:"Palikti eilu\u010Di\u0173 l\u016B\u017Eius", 4 | word_title:"Naudokite CTRL+V tekstui \u012Fd\u0117ti \u012F \u0161\u012F lang\u0105." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/lv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lv.paste_dlg',{ 2 | text_title:"Izmantojiet CTRL+V uz j\u016Bsu tastat\u016Bras lai iekop\u0113t tekstu log\u0101.", 3 | text_linebreaks:"Sagl\u0101b\u0101t l\u012Bniju sadal\u012Bt\u0101jus", 4 | word_title:"Izmantojiet CTRL+V uz j\u016Bsu tastat\u016Bras lai iekop\u0113t tekstu log\u0101." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/mk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('mk.paste_dlg',{ 2 | text_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor.", 3 | text_linebreaks:"Zadr\u017Ei prelome", 4 | word_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ml_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ml.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ms_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.paste_dlg',{ 2 | text_title:"Guna CTRL+V pada papan kekunci anda untuk Tempel teks ke dalam tetingkap.", 3 | text_linebreaks:"Biarkan garisan pemisah", 4 | word_title:"Guna CTRL+V pada papan kekunci anda untuk teks ke dalam tetingkap." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/nb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nb.paste_dlg',{ 2 | text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet.", 3 | text_linebreaks:"Behold tekstbryting", 4 | word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.paste_dlg',{ 2 | text_title:"Gebruik Ctrl+V om tekst in het venster te plakken.", 3 | text_linebreaks:"Regelafbreking bewaren", 4 | word_title:"Gebruik Ctrl+V om tekst in het venster te plakken." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/nn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nn.paste_dlg',{ 2 | text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vindauget.", 3 | text_linebreaks:"Behald tekstbryting", 4 | word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vindauget." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/no_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('no.paste_dlg',{ 2 | text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet.", 3 | text_linebreaks:"Behold tekstbryting", 4 | word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/pl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.paste_dlg',{ 2 | text_title:"U\u017Cyj CTRL+V na swojej klawiaturze \u017Ceby wklei\u0107 tekst do okna.", 3 | text_linebreaks:"Zachowaj ko\u0144ce linii.", 4 | word_title:"U\u017Cyj CTRL+V na swojej klawiaturze \u017Ceby wklei\u0107 tekst do okna." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ps_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.paste_dlg',{ 2 | text_title:"Use CTRL+V para colar o texto na janela.", 3 | text_linebreaks:"Manter quebras de linha", 4 | word_title:"Use CTRL+V para colar o texto na janela." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ro_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ro.paste_dlg',{ 2 | text_title:"Folosi\u0163i CTRL+V pentru a lipi \u00EEn aceast\u0103 zon\u0103.", 3 | text_linebreaks:"P\u0103streaz\u0103 separatoarele de linii.", 4 | word_title:"Folosi\u0163i CTRL+V pentru a lipi \u00EEn aceast\u0103 zon\u0103." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.paste_dlg',{ 2 | text_title:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0442\u0435\u043A\u0441\u0442\u0430 \u0432 \u043E\u043A\u043D\u043E.", 3 | text_linebreaks:"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u043F\u0435\u0440\u0435\u043D\u043E\u0441\u044B \u0441\u0442\u0440\u043E\u043A", 4 | word_title:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0442\u0435\u043A\u0441\u0442\u0430 \u0432 \u043E\u043A\u043D\u043E." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/sc_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sc.paste_dlg',{ 2 | text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002 ", 3 | text_linebreaks:"\u4FDD\u7559\u6362\u884C\u7B26\u53F7", 4 | word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002 " 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/se_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('se.paste_dlg',{ 2 | text_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster.", 3 | text_linebreaks:"Spara radbrytningar", 4 | word_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/si_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('si.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/sk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sk.paste_dlg',{ 2 | text_title:"Pou\u017Eite CTRL+V pre vlo\u017Eenie textu do okna.", 3 | text_linebreaks:"Zachova\u0165 zalamovanie riadkov", 4 | word_title:"Pou\u017Eite CTRL+V pre vlo\u017Eenie textu do okna." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/sl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.paste_dlg',{ 2 | text_title:"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno.", 3 | text_linebreaks:"Obdr\u017Ei prelome vrstic", 4 | word_title:"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/sq_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sq.paste_dlg',{ 2 | text_title:"P\u00EBrdor CTRL+V p\u00EBr t\u00EB ngjitur tekstin.", 3 | text_linebreaks:"Ruaj linjat e reja", 4 | word_title:"P\u00EBrdor CTRL+V p\u00EBr t\u00EB ngjitur tekstin." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/sr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.paste_dlg',{ 2 | text_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor.", 3 | text_linebreaks:"Zadr\u017Ei prelome", 4 | word_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.paste_dlg',{ 2 | text_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster.", 3 | text_linebreaks:"Spara radbrytningar", 4 | word_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ta_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/te_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('te.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/th_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('th.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.paste_dlg',{ 2 | text_title:"Pencereye metin yap\u0131\u015Ft\u0131rmak i\u00E7in klavyeden CTRL+V i kullan\u0131n.", 3 | text_linebreaks:"Sat\u0131r kesmelerini tut", 4 | word_title:"Pencereye metin yap\u0131\u015Ft\u0131rmak i\u00E7in klavyeden CTRL+V i kullan\u0131n." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/tt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tt.paste_dlg',{ 2 | text_title:"\u5C07\u8907\u88FD(CTRL + C)\u7684\u5167\u5BB9\u8CBC\u4E0A(CTRL + V)\u5230\u8996\u7A97\u3002", 3 | text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u865F\u865F", 4 | word_title:"\u5C07\u8907\u88FD(CTRL + C)\u7684\u5167\u5BB9\u8CBC\u4E0A(CTRL + V)\u5230\u8996\u7A97\u3002" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/tw_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tw.paste_dlg',{ 2 | text_title:"\u5728\u9375\u76E4\u4E0A\u540C\u6642\u6309\u4E0BCtrl \u548CV \u9375\uFF0C\u5C07\u6587\u5B57\u8CBC\u4E0A\u5230\u6B64\u8996\u7A97\u3002 ", 3 | text_linebreaks:"\u4FDD\u7559\u63DB\u884C\u7B26", 4 | word_title:"\u5728\u9375\u76E4\u4E0A\u540C\u6642\u6309\u4E0BCtrl \u548CV \u9375\uFF0C\u5C07\u6587\u5B57\u8CBC\u4E0A\u5230\u6B64\u8996\u7A97\u3002 " 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/ur_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ur.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/vi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.paste_dlg',{ 2 | text_title:"S\u1EED d\u1EE5ng CTRL+V tr\u00EAn b\u00E0n ph\u00EDm \u0111\u1EC3 d\u00E1n v\u0103n b\u1EA3n v\u00E0o c\u1EEDa s\u1ED5.", 3 | text_linebreaks:"Gi\u1EEF ng\u1EAFt d\u00F2ng", 4 | word_title:"S\u1EED d\u1EE5ng CTRL+V tr\u00EAn b\u00E0n ph\u00EDm \u0111\u1EC3 d\u00E1n v\u0103n b\u1EA3n v\u00E0o c\u1EEDa s\u1ED5." 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.paste_dlg',{ 2 | text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCtrl \u548CV \u952E\uFF0C\u5C06\u6587\u5B57\u8D34\u4E0A\u5230\u6B64\u89C6\u7A97\u3002 ", 3 | text_linebreaks:"\u4FDD\u7559\u6362\u884C\u7B26", 4 | word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCtrl \u548CV \u952E\uFF0C\u5C06\u6587\u5B57\u8D34\u4E0A\u5230\u6B64\u89C6\u7A97\u3002 " 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/paste/langs/zu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zu.paste_dlg',{ 2 | text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002", 3 | text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7", 4 | word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002" 5 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/print/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.Print",{init:function(a,b){a.addCommand("mcePrint",function(){a.getWin().print()});a.addButton("print",{title:"print.print_desc",cmd:"mcePrint"})},getInfo:function(){return{longname:"Print",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("print",tinymce.plugins.Print)})(); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/ar_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ar.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/bn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bn.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.searchreplace_dlg',{ 2 | searchnext_desc:"Localizar novamente", 3 | notfound:"A pesquisa foi conclu\u00EDda sem resultados.", 4 | search_title:"Localizar", 5 | replace_title:"Localizar/substituir", 6 | allreplaced:"Todas as substitui\u00E7\u00F5es foram efetuadas.", 7 | findwhat:"Localizar", 8 | replacewith:"Substituir com", 9 | direction:"Dire\u00E7\u00E3o", 10 | up:"Acima", 11 | down:"Abaixo", 12 | mcase:"Diferenciar mai\u00FAsculas/min\u00FAsculas", 13 | findnext:"Localizar pr\u00F3ximo", 14 | replace:"Substituir", 15 | replaceall:"Substituir todos" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.searchreplace_dlg',{ 2 | searchnext_desc:"Prona\u0111i opet", 3 | notfound:"Pretra\u017Eivanje je zavr\u0161eno. Tra\u017Eeni tekst nije prona\u0111en.", 4 | search_title:"Prona\u0111i", 5 | replace_title:"Prona\u0111i/Zamijeni", 6 | allreplaced:"Sva pojavljivanja tra\u017Eenog teksta su zamijenjena.", 7 | findwhat:"Prona\u0111i tekst", 8 | replacewith:"Zamijeni sa", 9 | direction:"Smjer", 10 | up:"Gore", 11 | down:"Dolje", 12 | mcase:"Match case", 13 | findnext:"Prona\u0111i sljede\u0107e", 14 | replace:"Zamijeni", 15 | replaceall:"Zamijeni sve" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/ca_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ca.searchreplace_dlg',{ 2 | searchnext_desc:"Cerca de nou", 3 | notfound:"S\'ha completat la cerca. No s\'ha trobat la cadena cercada.", 4 | search_title:"Cerca", 5 | replace_title:"Cerca/Reempla\u00E7a", 6 | allreplaced:"S\'han reempla\u00E7at totes les ocurr\u00E8ncies de la cadena cercada.", 7 | findwhat:"Cerca", 8 | replacewith:"Reempla\u00E7a amb", 9 | direction:"Direcci\u00F3", 10 | up:"Amunt", 11 | down:"Avall", 12 | mcase:"Distingeix maj\u00FAscules/min\u00FAscules", 13 | findnext:"Seg\u00FCent", 14 | replace:"Reempla\u00E7a", 15 | replaceall:"Reempla\u00E7a-ho tot" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.searchreplace_dlg',{ 2 | searchnext_desc:"Naj\u00EDt dal\u0161\u00ED", 3 | notfound:"Hled\u00E1n\u00ED bylo dokon\u010Deno. Hledan\u00FD text nebyl nalezen.", 4 | search_title:"Naj\u00EDt", 5 | replace_title:"Naj\u00EDt/nahradit", 6 | allreplaced:"V\u0161echny v\u00FDskyty byly nahrazeny.", 7 | findwhat:"Co hledat", 8 | replacewith:"\u010C\u00EDm nahradit", 9 | direction:"Sm\u011Br", 10 | up:"Nahoru", 11 | down:"Dol\u016F", 12 | mcase:"Rozli\u0161ovat velikost", 13 | findnext:"Naj\u00EDt dal\u0161\u00ED", 14 | replace:"Nahradit", 15 | replaceall:"Nahradit v\u0161e" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/cy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cy.searchreplace_dlg',{ 2 | searchnext_desc:"Canfod eto", 3 | notfound:"Mae'r chwiliad wedi cwblhau. Methu canfod y llinyn chwiliad.", 4 | search_title:"Canfod", 5 | replace_title:"Canfod/Amnewid", 6 | allreplaced:"Amnewidwyd pob digwyddiad o'r llinyn chwiliad.", 7 | findwhat:"Canfod beth", 8 | replacewith:"Adnewid gyda", 9 | direction:"Cyfeiriad", 10 | up:"I fyny", 11 | down:"I lawr", 12 | mcase:"Cydweddu priflythrennedd", 13 | findnext:"Canfod nesaf", 14 | replace:"Amnewid", 15 | replaceall:"Amnewid pob un" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.searchreplace_dlg',{ 2 | searchnext_desc:"S\u00F8g igen", 3 | notfound:"S\u00F8gningen gav intet resultat.", 4 | search_title:"S\u00F8g", 5 | replace_title:"S\u00F8g / erstat", 6 | allreplaced:"Alle forekomster af s\u00F8gestrengen er erstattet.", 7 | findwhat:"S\u00F8g efter", 8 | replacewith:"Erstat med", 9 | direction:"Retning", 10 | up:"Op", 11 | down:"Ned", 12 | mcase:"Forskel p\u00E5 store og sm\u00E5 bogstaver", 13 | findnext:"Find n\u00E6ste", 14 | replace:"Erstat", 15 | replaceall:"Erstat alle" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.searchreplace_dlg',{ 2 | searchnext_desc:"Weitersuchen", 3 | notfound:"Die Suche ist am Ende angelangt. Die Zeichenkette konnte nicht gefunden werden.", 4 | search_title:"Suchen", 5 | replace_title:"Suchen/Ersetzen", 6 | allreplaced:"Alle Vorkommen der Zeichenkette wurden ersetzt.", 7 | findwhat:"Zu suchender Text", 8 | replacewith:"Ersetzen durch", 9 | direction:"Suchrichtung", 10 | up:"Aufw\u00E4rts", 11 | down:"Abw\u00E4rts", 12 | mcase:"Gro\u00DF-/Kleinschreibung beachten", 13 | findnext:"Weitersuchen", 14 | replace:"Ersetzen", 15 | replaceall:"Alle ersetzen" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/dv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('dv.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/es_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.searchreplace_dlg',{ 2 | searchnext_desc:"Buscar de nuevo", 3 | notfound:"La b\u00FAsqueda se ha completado. No se encontr\u00F3 el texto introducido.", 4 | search_title:"Buscar", 5 | replace_title:"Buscar/Reemplazar", 6 | allreplaced:"Se ha reemplazado el texto.", 7 | findwhat:"Qu\u00E9 buscar", 8 | replacewith:"Reemplazar por", 9 | direction:"Direcci\u00F3n", 10 | up:"Arriba", 11 | down:"Abajo", 12 | mcase:"Min\u00FAs./May\u00FAs.", 13 | findnext:"Buscar siguiente", 14 | replace:"Reemplazar", 15 | replaceall:"Reemplazar todo" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/et_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.searchreplace_dlg',{ 2 | searchnext_desc:"Otsi uuesti", 3 | notfound:"Otsing on l\u00F5petatud. Otsis\u00F5na ei leitud.", 4 | search_title:"Otsi", 5 | replace_title:"Otsi/Asenda", 6 | allreplaced:"K\u00F5ik otsis\u00F5na ilmingud on asendatud.", 7 | findwhat:"Otsi mida", 8 | replacewith:"Asenda millega", 9 | direction:"Suund", 10 | up:"\u00DCles", 11 | down:"Alla", 12 | mcase:"Vasta suurusele", 13 | findnext:"Otsi j\u00E4rgmine", 14 | replace:"Asenda", 15 | replaceall:"Asenda k\u00F5ik" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/eu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eu.searchreplace_dlg',{ 2 | searchnext_desc:"Berriz bilatu", 3 | notfound:"Bilaketa bukatu da. Bilatutakoa ez da aurkitu.", 4 | search_title:"Bilatu", 5 | replace_title:"Bilatu/Ordezkatu", 6 | allreplaced:"Bilatutakoaren agerpen guztiak ordezkatu dira.", 7 | findwhat:"Zer bilatu", 8 | replacewith:"Zerekin ordezkatu", 9 | direction:"Norabidea", 10 | up:"Gorantz", 11 | down:"Beherantz", 12 | mcase:"Maiuskulak eta minuskulak kontuan hartu", 13 | findnext:"Hurrengoa", 14 | replace:"Ordezkatu", 15 | replaceall:"Ordezkatu guztiak" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.searchreplace_dlg',{ 2 | searchnext_desc:"Etsi uudestaan", 3 | notfound:"Haku on valmis. Haettua teksti\u00E4 ei l\u00F6ytynyt.", 4 | search_title:"Haku", 5 | replace_title:"Etsi ja korvaa", 6 | allreplaced:"Kaikki l\u00F6ydetyt merkkijonot korvattiin.", 7 | findwhat:"Etsit\u00E4\u00E4n", 8 | replacewith:"Korvataan", 9 | direction:"Suunta", 10 | up:"Yl\u00F6s", 11 | down:"Alas", 12 | mcase:"Huomioi isot ja pienet kirjaimet", 13 | findnext:"Etsi seuraavaa", 14 | replace:"Korvaa", 15 | replaceall:"Korvaa kaikki" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/gl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.searchreplace_dlg',{ 2 | searchnext_desc:"Buscar outra vez", 3 | notfound:"A busca rematou. No se atopou o texto buscado.", 4 | search_title:"Buscar", 5 | replace_title:"Buscar/Reemplazar", 6 | allreplaced:"T\u00F3da-las coincidencias do texto buscado foron reemplazadas.", 7 | findwhat:"Localizar", 8 | replacewith:"Reemplazar por", 9 | direction:"Direcci\u00F3n", 10 | up:"Arriba", 11 | down:"Abaixo", 12 | mcase:"Min\u00FAs./Mai\u00FAs.", 13 | findnext:"Buscar seginte", 14 | replace:"Reemplazar", 15 | replaceall:"Reemplazar todo" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/gu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gu.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/hi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hi.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/hr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.searchreplace_dlg',{ 2 | searchnext_desc:"Prona\u0111i opet", 3 | notfound:"Pretra\u017Eivanje je zavr\u0161eno. Tra\u017Eeni tekst nije prona\u0111en.", 4 | search_title:"Prona\u0111i", 5 | replace_title:"Prona\u0111i/Zamijeni", 6 | allreplaced:"Sva pojavljivanja tra\u017Eenog teksta su zamijenjena.", 7 | findwhat:"Prona\u0111i tekst", 8 | replacewith:"Zamijeni sa", 9 | direction:"Smjer", 10 | up:"Gore", 11 | down:"Dolje", 12 | mcase:"Match case", 13 | findnext:"Prona\u0111i sljede\u0107e", 14 | replace:"Zamijeni", 15 | replaceall:"Zamijeni sve" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.searchreplace_dlg',{ 2 | searchnext_desc:"Cari Lagi", 3 | notfound:"Pencarian selesai. Hasil tidak ditemukan.", 4 | search_title:"Cari", 5 | replace_title:"Cari/Ganti", 6 | allreplaced:"Seluruh kata dari string pencarian telah digantikan", 7 | findwhat:"Cari apa...", 8 | replacewith:"Ganti dengan...", 9 | direction:"Arah", 10 | up:"Atas", 11 | down:"Bawah", 12 | mcase:"Match case", 13 | findnext:"Cari selanjutnya", 14 | replace:"Ganti", 15 | replaceall:"Ganti semua" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/is_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('is.searchreplace_dlg',{ 2 | searchnext_desc:"Finna aftur", 3 | notfound:"Leitinni er loki\u00F0. Leitarstrengurinn fannst ekki.", 4 | search_title:"Finna", 5 | replace_title:"Finna/Skipta \u00FAt", 6 | allreplaced:"\u00D6llum ni\u00F0urst\u00F6\u00F0um leitar var skipt \u00FAt.", 7 | findwhat:"Finna hva\u00F0", 8 | replacewith:"Skipta \u00FAt me\u00F0", 9 | direction:"\u00C1tt", 10 | up:"Upp", 11 | down:"Ni\u00F0ur", 12 | mcase:"Match case", 13 | findnext:"Finna n\u00E6sta", 14 | replace:"Skipta \u00FAt", 15 | replaceall:"Skipta \u00FAt \u00F6llu" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.searchreplace_dlg',{ 2 | searchnext_desc:"Trova successivo", 3 | notfound:"Ricerca completata. Nessun risultato trovato.", 4 | search_title:"Trova", 5 | replace_title:"Trova/Sostituisci", 6 | allreplaced:"Tutte le occorrenze del criterio di ricerca sono state sostituite.", 7 | findwhat:"Trova:", 8 | replacewith:"Sostituisci con:", 9 | direction:"Direzione", 10 | up:"Avanti", 11 | down:"Indietro", 12 | mcase:"Maiuscole/minuscole", 13 | findnext:"Trova succ.", 14 | replace:"Sostituisci", 15 | replaceall:"Sost. tutto" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/kl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kl.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/lb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lb.searchreplace_dlg',{ 2 | searchnext_desc:"Weidersichen", 3 | notfound:"D'Sich ass um Enn ukomm. D'Zeechekette konnt net fonnt ginn.", 4 | search_title:"Sichen", 5 | replace_title:"Sichen/Ersetzen", 6 | allreplaced:"All d'Virkomme vun der Zeechekette goufen ersat.", 7 | findwhat:"Ze sichenden Text", 8 | replacewith:"Ersetzen duerch", 9 | direction:"Sichrichtung", 10 | up:"No uewen", 11 | down:"No \u00EBnnen", 12 | mcase:"Grouss-/Klengschreiwung beuechten", 13 | findnext:"Weidersichen", 14 | replace:"Ersetzen", 15 | replaceall:"All ersetzen" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/lt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lt.searchreplace_dlg',{ 2 | searchnext_desc:"Ie\u0161koti dar kart\u0105", 3 | notfound:"Paie\u0161ka baigta. Paie\u0161kos fraz\u0117 nerasta.", 4 | search_title:"Ie\u0161koti", 5 | replace_title:"Ie\u0161koti/Pakeisti", 6 | allreplaced:"Visi paie\u0161kos fraz\u0117s pasikartojimai pakeisti.", 7 | findwhat:"Ko ie\u0161koti", 8 | replacewith:"Kuo pakeisti", 9 | direction:"Kryptis", 10 | up:"\u012E vir\u0161\u0173", 11 | down:"\u012E apa\u010Di\u0105", 12 | mcase:"Visi\u0161kas atitikimas", 13 | findnext:"Ie\u0161koti sek.", 14 | replace:"Pakeisti", 15 | replaceall:"Pakeisti visus" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/mk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('mk.searchreplace_dlg',{ 2 | searchnext_desc:"Prona\u0111i opet", 3 | notfound:"Pretra\u017Eivanje je zavr\u0161eno. Tra\u017Eeni tekst nije prona\u0111en.", 4 | search_title:"Prona\u0111i", 5 | replace_title:"Prona\u0111i/Zameni", 6 | allreplaced:"Sva pojavljivanja tra\u017Eenog teksta su zamenjena.", 7 | findwhat:"Prona\u0111i tekst", 8 | replacewith:"Zameni sa", 9 | direction:"Smjer", 10 | up:"Gore", 11 | down:"Dolje", 12 | mcase:"Match case", 13 | findnext:"Prona\u0111i sljede\u0107e", 14 | replace:"Zameni", 15 | replaceall:"Zameni sve" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/ml_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ml.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/ms_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.searchreplace_dlg',{ 2 | searchnext_desc:"Cari lagi", 3 | notfound:"Carian tamat. Perkataan yang dicari tiada.", 4 | search_title:"Cari", 5 | replace_title:"Cari/Ganti", 6 | allreplaced:"Kesemua perkataan telah digantikan.", 7 | findwhat:"Cari apa", 8 | replacewith:"Ganti dengan", 9 | direction:"Arah", 10 | up:"Atas", 11 | down:"Bawah", 12 | mcase:"Samakan kes", 13 | findnext:"Carian seterusnya", 14 | replace:"Ganti", 15 | replaceall:"Ganti kesemuanya" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/nb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nb.searchreplace_dlg',{ 2 | searchnext_desc:"S\u00F8k igjen", 3 | notfound:"S\u00F8ket er avsluttet. Fant ikke s\u00F8kestrengen.", 4 | search_title:"S\u00F8k", 5 | replace_title:"S\u00F8k/Erstatt", 6 | allreplaced:"Alle forekomster av s\u00F8kestrengen er erstattet.", 7 | findwhat:"Finn hva", 8 | replacewith:"Erstatt med", 9 | direction:"Retning", 10 | up:"Oppover", 11 | down:"Nedover", 12 | mcase:"Skill mellom store og sm\u00E5 tegn", 13 | findnext:"Finn neste", 14 | replace:"Erstatt", 15 | replaceall:"Erstatt alt" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.searchreplace_dlg',{ 2 | searchnext_desc:"Opnieuw zoeken", 3 | notfound:"Het doorzoeken is voltooid. De zoekterm kon niet meer worden gevonden.", 4 | search_title:"Zoeken", 5 | replace_title:"Zoeken/Vervangen", 6 | allreplaced:"Alle instanties van de zoekterm zijn vervangen.", 7 | findwhat:"Zoeken naar", 8 | replacewith:"Vervangen door", 9 | direction:"Richting", 10 | up:"Omhoog", 11 | down:"Omlaag", 12 | mcase:"Identieke hoofdletters/kleine letters", 13 | findnext:"Zoeken", 14 | replace:"Vervangen", 15 | replaceall:"Alles verv." 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/nn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nn.searchreplace_dlg',{ 2 | searchnext_desc:"S\u00F8k igjen", 3 | notfound:"S\u00F8ket avslutta. Fann ikkje s\u00F8kjestrengen.", 4 | search_title:"S\u00F8k", 5 | replace_title:"S\u00F8k/Erstatt", 6 | allreplaced:"Alle f\u00F8rekomstar av s\u00F8kjestrengen er erstatta.", 7 | findwhat:"Finn kva", 8 | replacewith:"Erstatt med", 9 | direction:"Retning", 10 | up:"Oppover", 11 | down:"Nedover", 12 | mcase:"Skill mellom store og sm\u00E5 teikn", 13 | findnext:"Finn neste", 14 | replace:"Erstatt", 15 | replaceall:"Erstatt alt" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/no_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('no.searchreplace_dlg',{ 2 | searchnext_desc:"S\u00F8k igjen", 3 | notfound:"S\u00F8ket avsluttet. Fant ikke s\u00F8kestrengen.", 4 | search_title:"S\u00F8k", 5 | replace_title:"S\u00F8k/Erstatt", 6 | allreplaced:"Alle forekomster av s\u00F8kestrengen er erstattet.", 7 | findwhat:"Finn hva", 8 | replacewith:"Erstatt med", 9 | direction:"Retning", 10 | up:"Oppover", 11 | down:"Nedover", 12 | mcase:"Skill mellom store og sm\u00E5 tegn", 13 | findnext:"Finn neste", 14 | replace:"Erstatt", 15 | replaceall:"Erstatt alt" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/ps_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.searchreplace_dlg',{ 2 | searchnext_desc:"Localizar novamente", 3 | notfound:"A pesquisa foi conclu\u00EDda sem resultados.", 4 | search_title:"Localizar", 5 | replace_title:"Localizar/substituir", 6 | allreplaced:"Todas as substitui\u00E7\u00F5es foram efetuadas.", 7 | findwhat:"Localizar", 8 | replacewith:"Substituir com", 9 | direction:"Dire\u00E7\u00E3o", 10 | up:"Acima", 11 | down:"Abaixo", 12 | mcase:"Diferenciar mai\u00FAsculas", 13 | findnext:"Localizar pr\u00F3ximo", 14 | replace:"Substituir", 15 | replaceall:"Substituir todos" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/se_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('se.searchreplace_dlg',{ 2 | searchnext_desc:"S\u00F6k igen", 3 | notfound:"S\u00F6kningen har slutf\u00F6rts. S\u00F6kstr\u00E4ngen kunde inte hittas.", 4 | search_title:"S\u00F6k", 5 | replace_title:"S\u00F6k/ers\u00E4tt", 6 | allreplaced:"Alla st\u00E4llen d\u00E4r s\u00F6kstr\u00E4ngen kunde hittas har ersatts.", 7 | findwhat:"Hitta vad", 8 | replacewith:"Ers\u00E4tt med", 9 | direction:"Riktning", 10 | up:"Upp\u00E5t", 11 | down:"Ner\u00E5t", 12 | mcase:"Matcha gemener/versaler", 13 | findnext:"Hitta n\u00E4sta", 14 | replace:"Ers\u00E4tt", 15 | replaceall:"Ers\u00E4tt alla" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/si_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('si.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/sl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.searchreplace_dlg',{ 2 | searchnext_desc:"Najdi znova", 3 | notfound:"Preiskovanje zaklju\u010Deno. Iskanega besedila nisem na\u0161el.", 4 | search_title:"Najdi", 5 | replace_title:"Najdi/zamenjaj", 6 | allreplaced:"Vse pojavitve iskanega besedila so bile zamenjane.", 7 | findwhat:"I\u0161\u010Dem za", 8 | replacewith:"Zamenjam z", 9 | direction:"Smer", 10 | up:"navzgor", 11 | down:"navzdol", 12 | mcase:"ujemanje velikosti", 13 | findnext:"Najdi nasled.", 14 | replace:"Zamenjaj", 15 | replaceall:"Zamenjaj vse" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/sr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.searchreplace_dlg',{ 2 | searchnext_desc:"Prona\u0111i opet", 3 | notfound:"Pretra\u017Eivanje je zavr\u0161eno. Tra\u017Eeni tekst nije prona\u0111en.", 4 | search_title:"Prona\u0111i", 5 | replace_title:"Prona\u0111i/Zameni", 6 | allreplaced:"Sva pojavljivanja tra\u017Eenog teksta su zamenjena.", 7 | findwhat:"Prona\u0111i tekst", 8 | replacewith:"Zameni sa", 9 | direction:"Smjer", 10 | up:"Gore", 11 | down:"Dolje", 12 | mcase:"Match case", 13 | findnext:"Prona\u0111i sljede\u0107e", 14 | replace:"Zameni", 15 | replaceall:"Zameni sve" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.searchreplace_dlg',{ 2 | searchnext_desc:"S\u00F6k igen", 3 | notfound:"S\u00F6kningen har slutf\u00F6rts. S\u00F6kstr\u00E4ngen kunde inte hittas.", 4 | search_title:"S\u00F6k", 5 | replace_title:"S\u00F6k/ers\u00E4tt", 6 | allreplaced:"Alla st\u00E4llen d\u00E4r s\u00F6kstr\u00E4ngen kunde hittas har ersatts.", 7 | findwhat:"Hitta vad", 8 | replacewith:"Ers\u00E4tt med", 9 | direction:"Riktning", 10 | up:"Upp\u00E5t", 11 | down:"Ner\u00E5t", 12 | mcase:"Matcha gemener/versaler", 13 | findnext:"Hitta n\u00E4sta", 14 | replace:"Ers\u00E4tt", 15 | replaceall:"Ers\u00E4tt alla" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/ta_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/te_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('te.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/searchreplace/langs/ur_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ur.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /static/js/tinymce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /static/js/tinymce/plugins/spellchecker/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/spellchecker/editor_plugin.js -------------------------------------------------------------------------------- /static/js/tinymce/plugins/spellchecker/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/spellchecker/editor_plugin_src.js -------------------------------------------------------------------------------- /static/js/tinymce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/flowspy/d80d6130117b4a26c074d6ac6b55488ee4224d34/static/js/tinymce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /static/js/tinymce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- 1 | /* CSS file for cell dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #class { 16 | width: 150px; 17 | } -------------------------------------------------------------------------------- /static/js/tinymce/plugins/table/css/row.css: -------------------------------------------------------------------------------- 1 | /* CSS file for row dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #rowtype,#align,#valign,#class,#height { 16 | width: 150px; 17 | } 18 | 19 | #height { 20 | width: 50px; 21 | } 22 | 23 | .col2 { 24 | padding-left: 20px; 25 | } 26 | -------------------------------------------------------------------------------- /static/js/tinymce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /static/js/tinymce/plugins/template/blank.htm: -------------------------------------------------------------------------------- 1 | 2 |
3 |