├── .gitignore ├── README.md ├── Scripts ├── guided-tours.js ├── image-radio-button-group.js ├── interactive-video-editor.js └── require-completion.js ├── crowdin.yml ├── fonts ├── h5p.eot ├── h5p.svg ├── h5p.ttf └── h5p.woff ├── images └── no-video-source.svg ├── language ├── ar.json ├── bg.json ├── bs.json ├── ca.json ├── cs.json ├── da.json ├── de.json ├── el.json ├── en.json ├── es-mx.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fr.json ├── gl.json ├── he.json ├── hr.json ├── it.json ├── ka.json ├── ko.json ├── lt.json ├── lv.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── pl.json ├── pt-br.json ├── pt.json ├── ro.json ├── ru.json ├── sl.json ├── sma.json ├── sme.json ├── smj.json ├── sv.json ├── sw.json ├── te.json ├── tr.json ├── uk.json ├── zh-cn.json └── zh.json ├── library.json └── styles ├── image-radio-button-group.css ├── interactive-video-editor.css └── require-completion.css /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/guided-tours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/Scripts/guided-tours.js -------------------------------------------------------------------------------- /Scripts/image-radio-button-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/Scripts/image-radio-button-group.js -------------------------------------------------------------------------------- /Scripts/interactive-video-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/Scripts/interactive-video-editor.js -------------------------------------------------------------------------------- /Scripts/require-completion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/Scripts/require-completion.js -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/crowdin.yml -------------------------------------------------------------------------------- /fonts/h5p.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/fonts/h5p.eot -------------------------------------------------------------------------------- /fonts/h5p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/fonts/h5p.svg -------------------------------------------------------------------------------- /fonts/h5p.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/fonts/h5p.ttf -------------------------------------------------------------------------------- /fonts/h5p.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/fonts/h5p.woff -------------------------------------------------------------------------------- /images/no-video-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/images/no-video-source.svg -------------------------------------------------------------------------------- /language/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/ar.json -------------------------------------------------------------------------------- /language/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/bg.json -------------------------------------------------------------------------------- /language/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/bs.json -------------------------------------------------------------------------------- /language/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/ca.json -------------------------------------------------------------------------------- /language/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/cs.json -------------------------------------------------------------------------------- /language/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/da.json -------------------------------------------------------------------------------- /language/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/de.json -------------------------------------------------------------------------------- /language/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/el.json -------------------------------------------------------------------------------- /language/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/en.json -------------------------------------------------------------------------------- /language/es-mx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/es-mx.json -------------------------------------------------------------------------------- /language/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/es.json -------------------------------------------------------------------------------- /language/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/et.json -------------------------------------------------------------------------------- /language/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/eu.json -------------------------------------------------------------------------------- /language/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/fa.json -------------------------------------------------------------------------------- /language/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/fi.json -------------------------------------------------------------------------------- /language/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/fr.json -------------------------------------------------------------------------------- /language/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/gl.json -------------------------------------------------------------------------------- /language/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/he.json -------------------------------------------------------------------------------- /language/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/hr.json -------------------------------------------------------------------------------- /language/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/it.json -------------------------------------------------------------------------------- /language/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/ka.json -------------------------------------------------------------------------------- /language/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/ko.json -------------------------------------------------------------------------------- /language/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/lt.json -------------------------------------------------------------------------------- /language/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/lv.json -------------------------------------------------------------------------------- /language/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/mn.json -------------------------------------------------------------------------------- /language/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/nb.json -------------------------------------------------------------------------------- /language/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/nl.json -------------------------------------------------------------------------------- /language/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/nn.json -------------------------------------------------------------------------------- /language/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/pl.json -------------------------------------------------------------------------------- /language/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/pt-br.json -------------------------------------------------------------------------------- /language/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/pt.json -------------------------------------------------------------------------------- /language/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/ro.json -------------------------------------------------------------------------------- /language/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/ru.json -------------------------------------------------------------------------------- /language/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/sl.json -------------------------------------------------------------------------------- /language/sma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/sma.json -------------------------------------------------------------------------------- /language/sme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/sme.json -------------------------------------------------------------------------------- /language/smj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/smj.json -------------------------------------------------------------------------------- /language/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/sv.json -------------------------------------------------------------------------------- /language/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/sw.json -------------------------------------------------------------------------------- /language/te.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /language/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/tr.json -------------------------------------------------------------------------------- /language/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/uk.json -------------------------------------------------------------------------------- /language/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/zh-cn.json -------------------------------------------------------------------------------- /language/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/language/zh.json -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/library.json -------------------------------------------------------------------------------- /styles/image-radio-button-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/styles/image-radio-button-group.css -------------------------------------------------------------------------------- /styles/interactive-video-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/styles/interactive-video-editor.css -------------------------------------------------------------------------------- /styles/require-completion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5p/h5p-editor-interactive-video/HEAD/styles/require-completion.css --------------------------------------------------------------------------------