├── .babelrc ├── .editorconfig ├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci-cd.yml │ ├── commitlint.yml │ ├── daily-help-update.yml │ ├── daily-tx-pull.yml │ └── signature-assistant.yml ├── .gitignore ├── .husky ├── .gitattributes └── commit-msg ├── .jshintrc ├── .npmignore ├── .nvmrc ├── .prettierignore ├── .tx └── config ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TRADEMARK ├── commitlint.config.js ├── editor ├── blocks │ ├── ab.json │ ├── af.json │ ├── am.json │ ├── an.json │ ├── ar.json │ ├── ast.json │ ├── az.json │ ├── be.json │ ├── bg.json │ ├── bn.json │ ├── ca.json │ ├── ckb.json │ ├── cs.json │ ├── cy.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── eo.json │ ├── es-419.json │ ├── es.json │ ├── et.json │ ├── eu.json │ ├── fa.json │ ├── fi.json │ ├── fil.json │ ├── fr.json │ ├── fy.json │ ├── ga.json │ ├── gd.json │ ├── gl.json │ ├── ha.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── ht.json │ ├── hu.json │ ├── hy.json │ ├── id.json │ ├── is.json │ ├── it.json │ ├── ja-Hira.json │ ├── ja.json │ ├── ka.json │ ├── kk.json │ ├── km.json │ ├── ko.json │ ├── ku.json │ ├── lt.json │ ├── lv.json │ ├── mi.json │ ├── mn.json │ ├── nb.json │ ├── nl.json │ ├── nn.json │ ├── nso.json │ ├── oc.json │ ├── or.json │ ├── pl.json │ ├── pt-br.json │ ├── pt.json │ ├── qu.json │ ├── rap.json │ ├── ro.json │ ├── ru.json │ ├── sk.json │ ├── sl.json │ ├── sr.json │ ├── sv.json │ ├── sw.json │ ├── th.json │ ├── tn.json │ ├── tr.json │ ├── uk.json │ ├── uz.json │ ├── vi.json │ ├── xh.json │ ├── zh-cn.json │ ├── zh-tw.json │ └── zu.json ├── extensions │ ├── ab.json │ ├── af.json │ ├── am.json │ ├── an.json │ ├── ar.json │ ├── ast.json │ ├── az.json │ ├── be.json │ ├── bg.json │ ├── bn.json │ ├── ca.json │ ├── ckb.json │ ├── cs.json │ ├── cy.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── eo.json │ ├── es-419.json │ ├── es.json │ ├── et.json │ ├── eu.json │ ├── fa.json │ ├── fi.json │ ├── fil.json │ ├── fr.json │ ├── fy.json │ ├── ga.json │ ├── gd.json │ ├── gl.json │ ├── ha.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── ht.json │ ├── hu.json │ ├── hy.json │ ├── id.json │ ├── is.json │ ├── it.json │ ├── ja-Hira.json │ ├── ja.json │ ├── ka.json │ ├── kk.json │ ├── km.json │ ├── ko.json │ ├── ku.json │ ├── lt.json │ ├── lv.json │ ├── mi.json │ ├── mn.json │ ├── nb.json │ ├── nl.json │ ├── nn.json │ ├── nso.json │ ├── oc.json │ ├── or.json │ ├── pl.json │ ├── pt-br.json │ ├── pt.json │ ├── qu.json │ ├── rap.json │ ├── ro.json │ ├── ru.json │ ├── sk.json │ ├── sl.json │ ├── sr.json │ ├── sv.json │ ├── sw.json │ ├── th.json │ ├── tn.json │ ├── tr.json │ ├── uk.json │ ├── uz.json │ ├── vi.json │ ├── xh.json │ ├── zh-cn.json │ ├── zh-tw.json │ └── zu.json ├── interface │ ├── ab.json │ ├── af.json │ ├── am.json │ ├── an.json │ ├── ar.json │ ├── ast.json │ ├── az.json │ ├── be.json │ ├── bg.json │ ├── bn.json │ ├── ca.json │ ├── ckb.json │ ├── cs.json │ ├── cy.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── eo.json │ ├── es-419.json │ ├── es.json │ ├── et.json │ ├── eu.json │ ├── fa.json │ ├── fi.json │ ├── fil.json │ ├── fr.json │ ├── fy.json │ ├── ga.json │ ├── gd.json │ ├── gl.json │ ├── ha.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── ht.json │ ├── hu.json │ ├── hy.json │ ├── id.json │ ├── is.json │ ├── it.json │ ├── ja-Hira.json │ ├── ja.json │ ├── ka.json │ ├── kk.json │ ├── km.json │ ├── ko.json │ ├── ku.json │ ├── lt.json │ ├── lv.json │ ├── mi.json │ ├── mn.json │ ├── nb.json │ ├── nl.json │ ├── nn.json │ ├── nso.json │ ├── oc.json │ ├── or.json │ ├── pl.json │ ├── pt-br.json │ ├── pt.json │ ├── qu.json │ ├── rap.json │ ├── ro.json │ ├── ru.json │ ├── sk.json │ ├── sl.json │ ├── sr.json │ ├── sv.json │ ├── sw.json │ ├── th.json │ ├── tn.json │ ├── tr.json │ ├── uk.json │ ├── uz.json │ ├── vi.json │ ├── xh.json │ ├── zh-cn.json │ ├── zh-tw.json │ └── zu.json └── paint-editor │ ├── ab.json │ ├── af.json │ ├── am.json │ ├── an.json │ ├── ar.json │ ├── ast.json │ ├── az.json │ ├── be.json │ ├── bg.json │ ├── bn.json │ ├── ca.json │ ├── ckb.json │ ├── cs.json │ ├── cy.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── eo.json │ ├── es-419.json │ ├── es.json │ ├── et.json │ ├── eu.json │ ├── fa.json │ ├── fi.json │ ├── fil.json │ ├── fr.json │ ├── fy.json │ ├── ga.json │ ├── gd.json │ ├── gl.json │ ├── ha.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── ht.json │ ├── hu.json │ ├── hy.json │ ├── id.json │ ├── is.json │ ├── it.json │ ├── ja-Hira.json │ ├── ja.json │ ├── ka.json │ ├── kk.json │ ├── km.json │ ├── ko.json │ ├── ku.json │ ├── lt.json │ ├── lv.json │ ├── mi.json │ ├── mn.json │ ├── nb.json │ ├── nl.json │ ├── nn.json │ ├── nso.json │ ├── oc.json │ ├── or.json │ ├── pl.json │ ├── pt-br.json │ ├── pt.json │ ├── qu.json │ ├── rap.json │ ├── ro.json │ ├── ru.json │ ├── sk.json │ ├── sl.json │ ├── sr.json │ ├── sv.json │ ├── sw.json │ ├── th.json │ ├── tn.json │ ├── tr.json │ ├── uk.json │ ├── uz.json │ ├── vi.json │ ├── xh.json │ ├── zh-cn.json │ ├── zh-tw.json │ └── zu.json ├── eslint.config.mjs ├── images ├── contact-us-form.png ├── contact-us.png └── tx-context.png ├── package.json ├── prettier.config.mjs ├── release.config.js ├── renovate.json5 ├── scripts ├── build-data.mts ├── build-i18n-src.mts ├── lib │ ├── concurrent.mts │ ├── freshdesk-api.mts │ ├── help-utils.mts │ ├── progress-logger.mts │ ├── pull-and-validate.mts │ ├── transifex-formats.mts │ ├── transifex-objects.mts │ ├── transifex.mts │ └── validate.mts ├── tsconfig.json ├── tx-pull-editor.mts ├── tx-pull-help-articles.mts ├── tx-pull-help-names.mts ├── tx-pull-locale-articles.mts ├── tx-pull-www.mts ├── tx-push-help.mts ├── tx-push-src.mts ├── update-translations.sh ├── validate-extension-inputs.mts ├── validate-translations.mts └── validate-www.mts ├── src ├── index.mjs ├── locale-data.mjs ├── locale-data │ ├── af.js │ ├── agq.js │ ├── ak.js │ ├── am.js │ ├── ar.js │ ├── ars.js │ ├── as.js │ ├── asa.js │ ├── ast.js │ ├── az.js │ ├── bas.js │ ├── be.js │ ├── bem.js │ ├── bez.js │ ├── bg.js │ ├── bh.js │ ├── bm.js │ ├── bn.js │ ├── bo.js │ ├── br.js │ ├── brx.js │ ├── bs.js │ ├── ca.js │ ├── ccp.js │ ├── ce.js │ ├── cgg.js │ ├── chr.js │ ├── ckb.js │ ├── cs.js │ ├── cu.js │ ├── cy.js │ ├── da.js │ ├── dav.js │ ├── de.js │ ├── dje.js │ ├── dsb.js │ ├── dua.js │ ├── dv.js │ ├── dyo.js │ ├── dz.js │ ├── ebu.js │ ├── ee.js │ ├── el.js │ ├── en.js │ ├── eo.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── ewo.js │ ├── fa.js │ ├── ff.js │ ├── fi.js │ ├── fil.js │ ├── fo.js │ ├── fr.js │ ├── fur.js │ ├── fy.js │ ├── ga.js │ ├── gd.js │ ├── gl.js │ ├── gsw.js │ ├── gu.js │ ├── guw.js │ ├── guz.js │ ├── gv.js │ ├── ha.js │ ├── haw.js │ ├── he.js │ ├── hi.js │ ├── hr.js │ ├── hsb.js │ ├── hu.js │ ├── hy.js │ ├── ia.js │ ├── id.js │ ├── ig.js │ ├── ii.js │ ├── in.js │ ├── index.js │ ├── io.js │ ├── is.js │ ├── it.js │ ├── iu.js │ ├── iw.js │ ├── ja.js │ ├── jbo.js │ ├── jgo.js │ ├── ji.js │ ├── jmc.js │ ├── jv.js │ ├── jw.js │ ├── ka.js │ ├── kab.js │ ├── kaj.js │ ├── kam.js │ ├── kcg.js │ ├── kde.js │ ├── kea.js │ ├── khq.js │ ├── ki.js │ ├── kk.js │ ├── kkj.js │ ├── kl.js │ ├── kln.js │ ├── km.js │ ├── kn.js │ ├── ko.js │ ├── kok.js │ ├── ks.js │ ├── ksb.js │ ├── ksf.js │ ├── ksh.js │ ├── ku.js │ ├── kw.js │ ├── ky.js │ ├── lag.js │ ├── lb.js │ ├── lg.js │ ├── lkt.js │ ├── ln.js │ ├── lo.js │ ├── lrc.js │ ├── lt.js │ ├── lu.js │ ├── luo.js │ ├── luy.js │ ├── lv.js │ ├── mas.js │ ├── mer.js │ ├── mfe.js │ ├── mg.js │ ├── mgh.js │ ├── mgo.js │ ├── mi.js │ ├── mk.js │ ├── ml.js │ ├── mn.js │ ├── mo.js │ ├── mr.js │ ├── ms.js │ ├── mt.js │ ├── mua.js │ ├── my.js │ ├── mzn.js │ ├── nah.js │ ├── naq.js │ ├── nb.js │ ├── nd.js │ ├── nds.js │ ├── ne.js │ ├── nl.js │ ├── nmg.js │ ├── nn.js │ ├── nnh.js │ ├── no.js │ ├── nqo.js │ ├── nr.js │ ├── nso.js │ ├── nus.js │ ├── ny.js │ ├── nyn.js │ ├── om.js │ ├── or.js │ ├── os.js │ ├── pa.js │ ├── pap.js │ ├── pl.js │ ├── prg.js │ ├── ps.js │ ├── pt.js │ ├── qu.js │ ├── rm.js │ ├── rn.js │ ├── ro.js │ ├── rof.js │ ├── ru.js │ ├── rw.js │ ├── rwk.js │ ├── sah.js │ ├── saq.js │ ├── sbp.js │ ├── sc.js │ ├── scn.js │ ├── sd.js │ ├── sdh.js │ ├── se.js │ ├── seh.js │ ├── ses.js │ ├── sg.js │ ├── sh.js │ ├── shi.js │ ├── si.js │ ├── sk.js │ ├── sl.js │ ├── sma.js │ ├── smi.js │ ├── smj.js │ ├── smn.js │ ├── sms.js │ ├── sn.js │ ├── so.js │ ├── sq.js │ ├── sr.js │ ├── ss.js │ ├── ssy.js │ ├── st.js │ ├── sv.js │ ├── sw.js │ ├── syr.js │ ├── ta.js │ ├── te.js │ ├── teo.js │ ├── tg.js │ ├── th.js │ ├── ti.js │ ├── tig.js │ ├── tk.js │ ├── tl.js │ ├── tn.js │ ├── to.js │ ├── tr.js │ ├── ts.js │ ├── tt.js │ ├── twq.js │ ├── tzm.js │ ├── ug.js │ ├── uk.js │ ├── ur.js │ ├── uz.js │ ├── vai.js │ ├── ve.js │ ├── vi.js │ ├── vo.js │ ├── vun.js │ ├── wa.js │ ├── wae.js │ ├── wo.js │ ├── xh.js │ ├── xog.js │ ├── yav.js │ ├── yi.js │ ├── yo.js │ ├── yue.js │ ├── zgh.js │ ├── zh.js │ └── zu.js └── supported-locales.mjs ├── webpack.config.js └── www ├── scratch-website.3faq-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.about-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.annual-report-2019-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.annual-report-2020-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.annual-report-2021-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.annual-report-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.become-a-scratcher-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.boost-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.camp-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.conference-2021-index-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.conference-2022-index-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.conference-index-2017-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.conference-index-2019-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.conference-index-2021-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.conference-index-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.contact-us-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.cookies-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.credits-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.developers-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.dmca-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.download-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.download-scratch-link-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.download-scratch2-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.educator-landing-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.ethics-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.ev3-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.explore-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.faq-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.gdxfor-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.general-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.guidelines-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.ideas-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.membership-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.messages-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.microbit-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.parents-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.preview-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.privacypolicy-apps-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.privacypolicy-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.research-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.scratch_14-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.search-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.sec-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.splash-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.starter-projects-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.studio-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.teacher-faq-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.teacherregistration-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json ├── scratch-website.wedo2-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json └── scratch-website.wedo2-legacy-l10njson ├── ab.json ├── af.json ├── am.json ├── an.json ├── ar.json ├── ast.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── el.json ├── en.json ├── eo.json ├── es-419.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fy.json ├── ga.json ├── gd.json ├── gl.json ├── ha.json ├── he.json ├── hi.json ├── hr.json ├── ht.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja-Hira.json ├── ja.json ├── ka.json ├── kk.json ├── km.json ├── ko.json ├── ku.json ├── lt.json ├── lv.json ├── mi.json ├── mn.json ├── nb.json ├── nl.json ├── nn.json ├── nso.json ├── oc.json ├── or.json ├── pl.json ├── pt-br.json ├── pt.json ├── qu.json ├── rap.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tn.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── xh.json ├── zh-cn.json ├── zh-tw.json └── zu.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.github/workflows/commitlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.github/workflows/commitlint.yml -------------------------------------------------------------------------------- /.github/workflows/daily-help-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.github/workflows/daily-help-update.yml -------------------------------------------------------------------------------- /.github/workflows/daily-tx-pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.github/workflows/daily-tx-pull.yml -------------------------------------------------------------------------------- /.github/workflows/signature-assistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.github/workflows/signature-assistant.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "-W100": true 3 | } 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.prettierignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/README.md -------------------------------------------------------------------------------- /TRADEMARK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/TRADEMARK -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /editor/blocks/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ab.json -------------------------------------------------------------------------------- /editor/blocks/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/af.json -------------------------------------------------------------------------------- /editor/blocks/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/am.json -------------------------------------------------------------------------------- /editor/blocks/an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/an.json -------------------------------------------------------------------------------- /editor/blocks/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ar.json -------------------------------------------------------------------------------- /editor/blocks/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ast.json -------------------------------------------------------------------------------- /editor/blocks/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/az.json -------------------------------------------------------------------------------- /editor/blocks/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/be.json -------------------------------------------------------------------------------- /editor/blocks/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/bg.json -------------------------------------------------------------------------------- /editor/blocks/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/bn.json -------------------------------------------------------------------------------- /editor/blocks/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ca.json -------------------------------------------------------------------------------- /editor/blocks/ckb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ckb.json -------------------------------------------------------------------------------- /editor/blocks/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/cs.json -------------------------------------------------------------------------------- /editor/blocks/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/cy.json -------------------------------------------------------------------------------- /editor/blocks/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/da.json -------------------------------------------------------------------------------- /editor/blocks/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/de.json -------------------------------------------------------------------------------- /editor/blocks/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/el.json -------------------------------------------------------------------------------- /editor/blocks/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/en.json -------------------------------------------------------------------------------- /editor/blocks/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/eo.json -------------------------------------------------------------------------------- /editor/blocks/es-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/es-419.json -------------------------------------------------------------------------------- /editor/blocks/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/es.json -------------------------------------------------------------------------------- /editor/blocks/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/et.json -------------------------------------------------------------------------------- /editor/blocks/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/eu.json -------------------------------------------------------------------------------- /editor/blocks/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/fa.json -------------------------------------------------------------------------------- /editor/blocks/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/fi.json -------------------------------------------------------------------------------- /editor/blocks/fil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/fil.json -------------------------------------------------------------------------------- /editor/blocks/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/fr.json -------------------------------------------------------------------------------- /editor/blocks/fy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/fy.json -------------------------------------------------------------------------------- /editor/blocks/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ga.json -------------------------------------------------------------------------------- /editor/blocks/gd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/gd.json -------------------------------------------------------------------------------- /editor/blocks/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/gl.json -------------------------------------------------------------------------------- /editor/blocks/ha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ha.json -------------------------------------------------------------------------------- /editor/blocks/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/he.json -------------------------------------------------------------------------------- /editor/blocks/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/hi.json -------------------------------------------------------------------------------- /editor/blocks/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/hr.json -------------------------------------------------------------------------------- /editor/blocks/ht.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ht.json -------------------------------------------------------------------------------- /editor/blocks/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/hu.json -------------------------------------------------------------------------------- /editor/blocks/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/hy.json -------------------------------------------------------------------------------- /editor/blocks/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/id.json -------------------------------------------------------------------------------- /editor/blocks/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/is.json -------------------------------------------------------------------------------- /editor/blocks/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/it.json -------------------------------------------------------------------------------- /editor/blocks/ja-Hira.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ja-Hira.json -------------------------------------------------------------------------------- /editor/blocks/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ja.json -------------------------------------------------------------------------------- /editor/blocks/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ka.json -------------------------------------------------------------------------------- /editor/blocks/kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/kk.json -------------------------------------------------------------------------------- /editor/blocks/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/km.json -------------------------------------------------------------------------------- /editor/blocks/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ko.json -------------------------------------------------------------------------------- /editor/blocks/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ku.json -------------------------------------------------------------------------------- /editor/blocks/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/lt.json -------------------------------------------------------------------------------- /editor/blocks/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/lv.json -------------------------------------------------------------------------------- /editor/blocks/mi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/mi.json -------------------------------------------------------------------------------- /editor/blocks/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/mn.json -------------------------------------------------------------------------------- /editor/blocks/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/nb.json -------------------------------------------------------------------------------- /editor/blocks/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/nl.json -------------------------------------------------------------------------------- /editor/blocks/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/nn.json -------------------------------------------------------------------------------- /editor/blocks/nso.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/nso.json -------------------------------------------------------------------------------- /editor/blocks/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/oc.json -------------------------------------------------------------------------------- /editor/blocks/or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/or.json -------------------------------------------------------------------------------- /editor/blocks/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/pl.json -------------------------------------------------------------------------------- /editor/blocks/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/pt-br.json -------------------------------------------------------------------------------- /editor/blocks/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/pt.json -------------------------------------------------------------------------------- /editor/blocks/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/qu.json -------------------------------------------------------------------------------- /editor/blocks/rap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/rap.json -------------------------------------------------------------------------------- /editor/blocks/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ro.json -------------------------------------------------------------------------------- /editor/blocks/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/ru.json -------------------------------------------------------------------------------- /editor/blocks/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/sk.json -------------------------------------------------------------------------------- /editor/blocks/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/sl.json -------------------------------------------------------------------------------- /editor/blocks/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/sr.json -------------------------------------------------------------------------------- /editor/blocks/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/sv.json -------------------------------------------------------------------------------- /editor/blocks/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/sw.json -------------------------------------------------------------------------------- /editor/blocks/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/th.json -------------------------------------------------------------------------------- /editor/blocks/tn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/tn.json -------------------------------------------------------------------------------- /editor/blocks/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/tr.json -------------------------------------------------------------------------------- /editor/blocks/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/uk.json -------------------------------------------------------------------------------- /editor/blocks/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/uz.json -------------------------------------------------------------------------------- /editor/blocks/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/vi.json -------------------------------------------------------------------------------- /editor/blocks/xh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/xh.json -------------------------------------------------------------------------------- /editor/blocks/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/zh-cn.json -------------------------------------------------------------------------------- /editor/blocks/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/zh-tw.json -------------------------------------------------------------------------------- /editor/blocks/zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/blocks/zu.json -------------------------------------------------------------------------------- /editor/extensions/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ab.json -------------------------------------------------------------------------------- /editor/extensions/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/af.json -------------------------------------------------------------------------------- /editor/extensions/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/am.json -------------------------------------------------------------------------------- /editor/extensions/an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/an.json -------------------------------------------------------------------------------- /editor/extensions/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ar.json -------------------------------------------------------------------------------- /editor/extensions/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ast.json -------------------------------------------------------------------------------- /editor/extensions/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/az.json -------------------------------------------------------------------------------- /editor/extensions/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/be.json -------------------------------------------------------------------------------- /editor/extensions/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/bg.json -------------------------------------------------------------------------------- /editor/extensions/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/bn.json -------------------------------------------------------------------------------- /editor/extensions/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ca.json -------------------------------------------------------------------------------- /editor/extensions/ckb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ckb.json -------------------------------------------------------------------------------- /editor/extensions/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/cs.json -------------------------------------------------------------------------------- /editor/extensions/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/cy.json -------------------------------------------------------------------------------- /editor/extensions/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/da.json -------------------------------------------------------------------------------- /editor/extensions/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/de.json -------------------------------------------------------------------------------- /editor/extensions/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/el.json -------------------------------------------------------------------------------- /editor/extensions/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/en.json -------------------------------------------------------------------------------- /editor/extensions/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/eo.json -------------------------------------------------------------------------------- /editor/extensions/es-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/es-419.json -------------------------------------------------------------------------------- /editor/extensions/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/es.json -------------------------------------------------------------------------------- /editor/extensions/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/et.json -------------------------------------------------------------------------------- /editor/extensions/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/eu.json -------------------------------------------------------------------------------- /editor/extensions/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/fa.json -------------------------------------------------------------------------------- /editor/extensions/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/fi.json -------------------------------------------------------------------------------- /editor/extensions/fil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/fil.json -------------------------------------------------------------------------------- /editor/extensions/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/fr.json -------------------------------------------------------------------------------- /editor/extensions/fy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/fy.json -------------------------------------------------------------------------------- /editor/extensions/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ga.json -------------------------------------------------------------------------------- /editor/extensions/gd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/gd.json -------------------------------------------------------------------------------- /editor/extensions/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/gl.json -------------------------------------------------------------------------------- /editor/extensions/ha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ha.json -------------------------------------------------------------------------------- /editor/extensions/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/he.json -------------------------------------------------------------------------------- /editor/extensions/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/hi.json -------------------------------------------------------------------------------- /editor/extensions/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/hr.json -------------------------------------------------------------------------------- /editor/extensions/ht.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ht.json -------------------------------------------------------------------------------- /editor/extensions/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/hu.json -------------------------------------------------------------------------------- /editor/extensions/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/hy.json -------------------------------------------------------------------------------- /editor/extensions/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/id.json -------------------------------------------------------------------------------- /editor/extensions/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/is.json -------------------------------------------------------------------------------- /editor/extensions/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/it.json -------------------------------------------------------------------------------- /editor/extensions/ja-Hira.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ja-Hira.json -------------------------------------------------------------------------------- /editor/extensions/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ja.json -------------------------------------------------------------------------------- /editor/extensions/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ka.json -------------------------------------------------------------------------------- /editor/extensions/kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/kk.json -------------------------------------------------------------------------------- /editor/extensions/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/km.json -------------------------------------------------------------------------------- /editor/extensions/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ko.json -------------------------------------------------------------------------------- /editor/extensions/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ku.json -------------------------------------------------------------------------------- /editor/extensions/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/lt.json -------------------------------------------------------------------------------- /editor/extensions/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/lv.json -------------------------------------------------------------------------------- /editor/extensions/mi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/mi.json -------------------------------------------------------------------------------- /editor/extensions/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/mn.json -------------------------------------------------------------------------------- /editor/extensions/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/nb.json -------------------------------------------------------------------------------- /editor/extensions/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/nl.json -------------------------------------------------------------------------------- /editor/extensions/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/nn.json -------------------------------------------------------------------------------- /editor/extensions/nso.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/nso.json -------------------------------------------------------------------------------- /editor/extensions/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/oc.json -------------------------------------------------------------------------------- /editor/extensions/or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/or.json -------------------------------------------------------------------------------- /editor/extensions/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/pl.json -------------------------------------------------------------------------------- /editor/extensions/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/pt-br.json -------------------------------------------------------------------------------- /editor/extensions/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/pt.json -------------------------------------------------------------------------------- /editor/extensions/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/qu.json -------------------------------------------------------------------------------- /editor/extensions/rap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/rap.json -------------------------------------------------------------------------------- /editor/extensions/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ro.json -------------------------------------------------------------------------------- /editor/extensions/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/ru.json -------------------------------------------------------------------------------- /editor/extensions/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/sk.json -------------------------------------------------------------------------------- /editor/extensions/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/sl.json -------------------------------------------------------------------------------- /editor/extensions/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/sr.json -------------------------------------------------------------------------------- /editor/extensions/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/sv.json -------------------------------------------------------------------------------- /editor/extensions/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/sw.json -------------------------------------------------------------------------------- /editor/extensions/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/th.json -------------------------------------------------------------------------------- /editor/extensions/tn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/tn.json -------------------------------------------------------------------------------- /editor/extensions/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/tr.json -------------------------------------------------------------------------------- /editor/extensions/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/uk.json -------------------------------------------------------------------------------- /editor/extensions/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/uz.json -------------------------------------------------------------------------------- /editor/extensions/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/vi.json -------------------------------------------------------------------------------- /editor/extensions/xh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/xh.json -------------------------------------------------------------------------------- /editor/extensions/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/zh-cn.json -------------------------------------------------------------------------------- /editor/extensions/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/zh-tw.json -------------------------------------------------------------------------------- /editor/extensions/zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/extensions/zu.json -------------------------------------------------------------------------------- /editor/interface/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ab.json -------------------------------------------------------------------------------- /editor/interface/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/af.json -------------------------------------------------------------------------------- /editor/interface/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/am.json -------------------------------------------------------------------------------- /editor/interface/an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/an.json -------------------------------------------------------------------------------- /editor/interface/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ar.json -------------------------------------------------------------------------------- /editor/interface/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ast.json -------------------------------------------------------------------------------- /editor/interface/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/az.json -------------------------------------------------------------------------------- /editor/interface/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/be.json -------------------------------------------------------------------------------- /editor/interface/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/bg.json -------------------------------------------------------------------------------- /editor/interface/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/bn.json -------------------------------------------------------------------------------- /editor/interface/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ca.json -------------------------------------------------------------------------------- /editor/interface/ckb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ckb.json -------------------------------------------------------------------------------- /editor/interface/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/cs.json -------------------------------------------------------------------------------- /editor/interface/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/cy.json -------------------------------------------------------------------------------- /editor/interface/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/da.json -------------------------------------------------------------------------------- /editor/interface/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/de.json -------------------------------------------------------------------------------- /editor/interface/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/el.json -------------------------------------------------------------------------------- /editor/interface/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/en.json -------------------------------------------------------------------------------- /editor/interface/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/eo.json -------------------------------------------------------------------------------- /editor/interface/es-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/es-419.json -------------------------------------------------------------------------------- /editor/interface/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/es.json -------------------------------------------------------------------------------- /editor/interface/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/et.json -------------------------------------------------------------------------------- /editor/interface/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/eu.json -------------------------------------------------------------------------------- /editor/interface/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/fa.json -------------------------------------------------------------------------------- /editor/interface/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/fi.json -------------------------------------------------------------------------------- /editor/interface/fil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/fil.json -------------------------------------------------------------------------------- /editor/interface/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/fr.json -------------------------------------------------------------------------------- /editor/interface/fy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/fy.json -------------------------------------------------------------------------------- /editor/interface/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ga.json -------------------------------------------------------------------------------- /editor/interface/gd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/gd.json -------------------------------------------------------------------------------- /editor/interface/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/gl.json -------------------------------------------------------------------------------- /editor/interface/ha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ha.json -------------------------------------------------------------------------------- /editor/interface/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/he.json -------------------------------------------------------------------------------- /editor/interface/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/hi.json -------------------------------------------------------------------------------- /editor/interface/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/hr.json -------------------------------------------------------------------------------- /editor/interface/ht.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ht.json -------------------------------------------------------------------------------- /editor/interface/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/hu.json -------------------------------------------------------------------------------- /editor/interface/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/hy.json -------------------------------------------------------------------------------- /editor/interface/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/id.json -------------------------------------------------------------------------------- /editor/interface/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/is.json -------------------------------------------------------------------------------- /editor/interface/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/it.json -------------------------------------------------------------------------------- /editor/interface/ja-Hira.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ja-Hira.json -------------------------------------------------------------------------------- /editor/interface/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ja.json -------------------------------------------------------------------------------- /editor/interface/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ka.json -------------------------------------------------------------------------------- /editor/interface/kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/kk.json -------------------------------------------------------------------------------- /editor/interface/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/km.json -------------------------------------------------------------------------------- /editor/interface/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ko.json -------------------------------------------------------------------------------- /editor/interface/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ku.json -------------------------------------------------------------------------------- /editor/interface/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/lt.json -------------------------------------------------------------------------------- /editor/interface/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/lv.json -------------------------------------------------------------------------------- /editor/interface/mi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/mi.json -------------------------------------------------------------------------------- /editor/interface/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/mn.json -------------------------------------------------------------------------------- /editor/interface/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/nb.json -------------------------------------------------------------------------------- /editor/interface/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/nl.json -------------------------------------------------------------------------------- /editor/interface/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/nn.json -------------------------------------------------------------------------------- /editor/interface/nso.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/nso.json -------------------------------------------------------------------------------- /editor/interface/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/oc.json -------------------------------------------------------------------------------- /editor/interface/or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/or.json -------------------------------------------------------------------------------- /editor/interface/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/pl.json -------------------------------------------------------------------------------- /editor/interface/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/pt-br.json -------------------------------------------------------------------------------- /editor/interface/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/pt.json -------------------------------------------------------------------------------- /editor/interface/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/qu.json -------------------------------------------------------------------------------- /editor/interface/rap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/rap.json -------------------------------------------------------------------------------- /editor/interface/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ro.json -------------------------------------------------------------------------------- /editor/interface/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/ru.json -------------------------------------------------------------------------------- /editor/interface/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/sk.json -------------------------------------------------------------------------------- /editor/interface/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/sl.json -------------------------------------------------------------------------------- /editor/interface/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/sr.json -------------------------------------------------------------------------------- /editor/interface/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/sv.json -------------------------------------------------------------------------------- /editor/interface/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/sw.json -------------------------------------------------------------------------------- /editor/interface/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/th.json -------------------------------------------------------------------------------- /editor/interface/tn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/tn.json -------------------------------------------------------------------------------- /editor/interface/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/tr.json -------------------------------------------------------------------------------- /editor/interface/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/uk.json -------------------------------------------------------------------------------- /editor/interface/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/uz.json -------------------------------------------------------------------------------- /editor/interface/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/vi.json -------------------------------------------------------------------------------- /editor/interface/xh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/xh.json -------------------------------------------------------------------------------- /editor/interface/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/zh-cn.json -------------------------------------------------------------------------------- /editor/interface/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/zh-tw.json -------------------------------------------------------------------------------- /editor/interface/zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/interface/zu.json -------------------------------------------------------------------------------- /editor/paint-editor/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ab.json -------------------------------------------------------------------------------- /editor/paint-editor/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/af.json -------------------------------------------------------------------------------- /editor/paint-editor/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/am.json -------------------------------------------------------------------------------- /editor/paint-editor/an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/an.json -------------------------------------------------------------------------------- /editor/paint-editor/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ar.json -------------------------------------------------------------------------------- /editor/paint-editor/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ast.json -------------------------------------------------------------------------------- /editor/paint-editor/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/az.json -------------------------------------------------------------------------------- /editor/paint-editor/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/be.json -------------------------------------------------------------------------------- /editor/paint-editor/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/bg.json -------------------------------------------------------------------------------- /editor/paint-editor/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/bn.json -------------------------------------------------------------------------------- /editor/paint-editor/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ca.json -------------------------------------------------------------------------------- /editor/paint-editor/ckb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ckb.json -------------------------------------------------------------------------------- /editor/paint-editor/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/cs.json -------------------------------------------------------------------------------- /editor/paint-editor/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/cy.json -------------------------------------------------------------------------------- /editor/paint-editor/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/da.json -------------------------------------------------------------------------------- /editor/paint-editor/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/de.json -------------------------------------------------------------------------------- /editor/paint-editor/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/el.json -------------------------------------------------------------------------------- /editor/paint-editor/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/en.json -------------------------------------------------------------------------------- /editor/paint-editor/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/eo.json -------------------------------------------------------------------------------- /editor/paint-editor/es-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/es-419.json -------------------------------------------------------------------------------- /editor/paint-editor/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/es.json -------------------------------------------------------------------------------- /editor/paint-editor/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/et.json -------------------------------------------------------------------------------- /editor/paint-editor/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/eu.json -------------------------------------------------------------------------------- /editor/paint-editor/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/fa.json -------------------------------------------------------------------------------- /editor/paint-editor/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/fi.json -------------------------------------------------------------------------------- /editor/paint-editor/fil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/fil.json -------------------------------------------------------------------------------- /editor/paint-editor/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/fr.json -------------------------------------------------------------------------------- /editor/paint-editor/fy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/fy.json -------------------------------------------------------------------------------- /editor/paint-editor/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ga.json -------------------------------------------------------------------------------- /editor/paint-editor/gd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/gd.json -------------------------------------------------------------------------------- /editor/paint-editor/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/gl.json -------------------------------------------------------------------------------- /editor/paint-editor/ha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ha.json -------------------------------------------------------------------------------- /editor/paint-editor/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/he.json -------------------------------------------------------------------------------- /editor/paint-editor/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/hi.json -------------------------------------------------------------------------------- /editor/paint-editor/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/hr.json -------------------------------------------------------------------------------- /editor/paint-editor/ht.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ht.json -------------------------------------------------------------------------------- /editor/paint-editor/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/hu.json -------------------------------------------------------------------------------- /editor/paint-editor/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/hy.json -------------------------------------------------------------------------------- /editor/paint-editor/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/id.json -------------------------------------------------------------------------------- /editor/paint-editor/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/is.json -------------------------------------------------------------------------------- /editor/paint-editor/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/it.json -------------------------------------------------------------------------------- /editor/paint-editor/ja-Hira.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ja-Hira.json -------------------------------------------------------------------------------- /editor/paint-editor/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ja.json -------------------------------------------------------------------------------- /editor/paint-editor/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ka.json -------------------------------------------------------------------------------- /editor/paint-editor/kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/kk.json -------------------------------------------------------------------------------- /editor/paint-editor/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/km.json -------------------------------------------------------------------------------- /editor/paint-editor/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ko.json -------------------------------------------------------------------------------- /editor/paint-editor/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ku.json -------------------------------------------------------------------------------- /editor/paint-editor/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/lt.json -------------------------------------------------------------------------------- /editor/paint-editor/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/lv.json -------------------------------------------------------------------------------- /editor/paint-editor/mi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/mi.json -------------------------------------------------------------------------------- /editor/paint-editor/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/mn.json -------------------------------------------------------------------------------- /editor/paint-editor/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/nb.json -------------------------------------------------------------------------------- /editor/paint-editor/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/nl.json -------------------------------------------------------------------------------- /editor/paint-editor/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/nn.json -------------------------------------------------------------------------------- /editor/paint-editor/nso.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/nso.json -------------------------------------------------------------------------------- /editor/paint-editor/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/oc.json -------------------------------------------------------------------------------- /editor/paint-editor/or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/or.json -------------------------------------------------------------------------------- /editor/paint-editor/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/pl.json -------------------------------------------------------------------------------- /editor/paint-editor/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/pt-br.json -------------------------------------------------------------------------------- /editor/paint-editor/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/pt.json -------------------------------------------------------------------------------- /editor/paint-editor/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/qu.json -------------------------------------------------------------------------------- /editor/paint-editor/rap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/rap.json -------------------------------------------------------------------------------- /editor/paint-editor/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ro.json -------------------------------------------------------------------------------- /editor/paint-editor/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/ru.json -------------------------------------------------------------------------------- /editor/paint-editor/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/sk.json -------------------------------------------------------------------------------- /editor/paint-editor/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/sl.json -------------------------------------------------------------------------------- /editor/paint-editor/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/sr.json -------------------------------------------------------------------------------- /editor/paint-editor/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/sv.json -------------------------------------------------------------------------------- /editor/paint-editor/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/sw.json -------------------------------------------------------------------------------- /editor/paint-editor/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/th.json -------------------------------------------------------------------------------- /editor/paint-editor/tn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/tn.json -------------------------------------------------------------------------------- /editor/paint-editor/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/tr.json -------------------------------------------------------------------------------- /editor/paint-editor/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/uk.json -------------------------------------------------------------------------------- /editor/paint-editor/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/uz.json -------------------------------------------------------------------------------- /editor/paint-editor/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/vi.json -------------------------------------------------------------------------------- /editor/paint-editor/xh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/xh.json -------------------------------------------------------------------------------- /editor/paint-editor/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/zh-cn.json -------------------------------------------------------------------------------- /editor/paint-editor/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/zh-tw.json -------------------------------------------------------------------------------- /editor/paint-editor/zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/editor/paint-editor/zu.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /images/contact-us-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/images/contact-us-form.png -------------------------------------------------------------------------------- /images/contact-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/images/contact-us.png -------------------------------------------------------------------------------- /images/tx-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/images/tx-context.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/release.config.js -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/renovate.json5 -------------------------------------------------------------------------------- /scripts/build-data.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/build-data.mts -------------------------------------------------------------------------------- /scripts/build-i18n-src.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/build-i18n-src.mts -------------------------------------------------------------------------------- /scripts/lib/concurrent.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/lib/concurrent.mts -------------------------------------------------------------------------------- /scripts/lib/freshdesk-api.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/lib/freshdesk-api.mts -------------------------------------------------------------------------------- /scripts/lib/help-utils.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/lib/help-utils.mts -------------------------------------------------------------------------------- /scripts/lib/progress-logger.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/lib/progress-logger.mts -------------------------------------------------------------------------------- /scripts/lib/pull-and-validate.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/lib/pull-and-validate.mts -------------------------------------------------------------------------------- /scripts/lib/transifex-formats.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/lib/transifex-formats.mts -------------------------------------------------------------------------------- /scripts/lib/transifex-objects.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/lib/transifex-objects.mts -------------------------------------------------------------------------------- /scripts/lib/transifex.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/lib/transifex.mts -------------------------------------------------------------------------------- /scripts/lib/validate.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/lib/validate.mts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/tx-pull-editor.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/tx-pull-editor.mts -------------------------------------------------------------------------------- /scripts/tx-pull-help-articles.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/tx-pull-help-articles.mts -------------------------------------------------------------------------------- /scripts/tx-pull-help-names.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/tx-pull-help-names.mts -------------------------------------------------------------------------------- /scripts/tx-pull-locale-articles.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/tx-pull-locale-articles.mts -------------------------------------------------------------------------------- /scripts/tx-pull-www.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/tx-pull-www.mts -------------------------------------------------------------------------------- /scripts/tx-push-help.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/tx-push-help.mts -------------------------------------------------------------------------------- /scripts/tx-push-src.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/tx-push-src.mts -------------------------------------------------------------------------------- /scripts/update-translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/update-translations.sh -------------------------------------------------------------------------------- /scripts/validate-extension-inputs.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/validate-extension-inputs.mts -------------------------------------------------------------------------------- /scripts/validate-translations.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/validate-translations.mts -------------------------------------------------------------------------------- /scripts/validate-www.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/scripts/validate-www.mts -------------------------------------------------------------------------------- /src/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/index.mjs -------------------------------------------------------------------------------- /src/locale-data.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data.mjs -------------------------------------------------------------------------------- /src/locale-data/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/af.js -------------------------------------------------------------------------------- /src/locale-data/agq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/agq.js -------------------------------------------------------------------------------- /src/locale-data/ak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ak.js -------------------------------------------------------------------------------- /src/locale-data/am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/am.js -------------------------------------------------------------------------------- /src/locale-data/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ar.js -------------------------------------------------------------------------------- /src/locale-data/ars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ars.js -------------------------------------------------------------------------------- /src/locale-data/as.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/as.js -------------------------------------------------------------------------------- /src/locale-data/asa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/asa.js -------------------------------------------------------------------------------- /src/locale-data/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ast.js -------------------------------------------------------------------------------- /src/locale-data/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/az.js -------------------------------------------------------------------------------- /src/locale-data/bas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/bas.js -------------------------------------------------------------------------------- /src/locale-data/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/be.js -------------------------------------------------------------------------------- /src/locale-data/bem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/bem.js -------------------------------------------------------------------------------- /src/locale-data/bez.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/bez.js -------------------------------------------------------------------------------- /src/locale-data/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/bg.js -------------------------------------------------------------------------------- /src/locale-data/bh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/bh.js -------------------------------------------------------------------------------- /src/locale-data/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/bm.js -------------------------------------------------------------------------------- /src/locale-data/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/bn.js -------------------------------------------------------------------------------- /src/locale-data/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/bo.js -------------------------------------------------------------------------------- /src/locale-data/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/br.js -------------------------------------------------------------------------------- /src/locale-data/brx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/brx.js -------------------------------------------------------------------------------- /src/locale-data/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/bs.js -------------------------------------------------------------------------------- /src/locale-data/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ca.js -------------------------------------------------------------------------------- /src/locale-data/ccp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ccp.js -------------------------------------------------------------------------------- /src/locale-data/ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ce.js -------------------------------------------------------------------------------- /src/locale-data/cgg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/cgg.js -------------------------------------------------------------------------------- /src/locale-data/chr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/chr.js -------------------------------------------------------------------------------- /src/locale-data/ckb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ckb.js -------------------------------------------------------------------------------- /src/locale-data/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/cs.js -------------------------------------------------------------------------------- /src/locale-data/cu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/cu.js -------------------------------------------------------------------------------- /src/locale-data/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/cy.js -------------------------------------------------------------------------------- /src/locale-data/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/da.js -------------------------------------------------------------------------------- /src/locale-data/dav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/dav.js -------------------------------------------------------------------------------- /src/locale-data/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/de.js -------------------------------------------------------------------------------- /src/locale-data/dje.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/dje.js -------------------------------------------------------------------------------- /src/locale-data/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/dsb.js -------------------------------------------------------------------------------- /src/locale-data/dua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/dua.js -------------------------------------------------------------------------------- /src/locale-data/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/dv.js -------------------------------------------------------------------------------- /src/locale-data/dyo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/dyo.js -------------------------------------------------------------------------------- /src/locale-data/dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/dz.js -------------------------------------------------------------------------------- /src/locale-data/ebu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ebu.js -------------------------------------------------------------------------------- /src/locale-data/ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ee.js -------------------------------------------------------------------------------- /src/locale-data/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/el.js -------------------------------------------------------------------------------- /src/locale-data/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/en.js -------------------------------------------------------------------------------- /src/locale-data/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/eo.js -------------------------------------------------------------------------------- /src/locale-data/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/es.js -------------------------------------------------------------------------------- /src/locale-data/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/et.js -------------------------------------------------------------------------------- /src/locale-data/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/eu.js -------------------------------------------------------------------------------- /src/locale-data/ewo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ewo.js -------------------------------------------------------------------------------- /src/locale-data/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/fa.js -------------------------------------------------------------------------------- /src/locale-data/ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ff.js -------------------------------------------------------------------------------- /src/locale-data/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/fi.js -------------------------------------------------------------------------------- /src/locale-data/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/fil.js -------------------------------------------------------------------------------- /src/locale-data/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/fo.js -------------------------------------------------------------------------------- /src/locale-data/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/fr.js -------------------------------------------------------------------------------- /src/locale-data/fur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/fur.js -------------------------------------------------------------------------------- /src/locale-data/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/fy.js -------------------------------------------------------------------------------- /src/locale-data/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ga.js -------------------------------------------------------------------------------- /src/locale-data/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/gd.js -------------------------------------------------------------------------------- /src/locale-data/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/gl.js -------------------------------------------------------------------------------- /src/locale-data/gsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/gsw.js -------------------------------------------------------------------------------- /src/locale-data/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/gu.js -------------------------------------------------------------------------------- /src/locale-data/guw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/guw.js -------------------------------------------------------------------------------- /src/locale-data/guz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/guz.js -------------------------------------------------------------------------------- /src/locale-data/gv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/gv.js -------------------------------------------------------------------------------- /src/locale-data/ha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ha.js -------------------------------------------------------------------------------- /src/locale-data/haw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/haw.js -------------------------------------------------------------------------------- /src/locale-data/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/he.js -------------------------------------------------------------------------------- /src/locale-data/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/hi.js -------------------------------------------------------------------------------- /src/locale-data/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/hr.js -------------------------------------------------------------------------------- /src/locale-data/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/hsb.js -------------------------------------------------------------------------------- /src/locale-data/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/hu.js -------------------------------------------------------------------------------- /src/locale-data/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/hy.js -------------------------------------------------------------------------------- /src/locale-data/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ia.js -------------------------------------------------------------------------------- /src/locale-data/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/id.js -------------------------------------------------------------------------------- /src/locale-data/ig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ig.js -------------------------------------------------------------------------------- /src/locale-data/ii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ii.js -------------------------------------------------------------------------------- /src/locale-data/in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/in.js -------------------------------------------------------------------------------- /src/locale-data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/index.js -------------------------------------------------------------------------------- /src/locale-data/io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/io.js -------------------------------------------------------------------------------- /src/locale-data/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/is.js -------------------------------------------------------------------------------- /src/locale-data/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/it.js -------------------------------------------------------------------------------- /src/locale-data/iu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/iu.js -------------------------------------------------------------------------------- /src/locale-data/iw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/iw.js -------------------------------------------------------------------------------- /src/locale-data/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ja.js -------------------------------------------------------------------------------- /src/locale-data/jbo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/jbo.js -------------------------------------------------------------------------------- /src/locale-data/jgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/jgo.js -------------------------------------------------------------------------------- /src/locale-data/ji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ji.js -------------------------------------------------------------------------------- /src/locale-data/jmc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/jmc.js -------------------------------------------------------------------------------- /src/locale-data/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/jv.js -------------------------------------------------------------------------------- /src/locale-data/jw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/jw.js -------------------------------------------------------------------------------- /src/locale-data/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ka.js -------------------------------------------------------------------------------- /src/locale-data/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kab.js -------------------------------------------------------------------------------- /src/locale-data/kaj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kaj.js -------------------------------------------------------------------------------- /src/locale-data/kam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kam.js -------------------------------------------------------------------------------- /src/locale-data/kcg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kcg.js -------------------------------------------------------------------------------- /src/locale-data/kde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kde.js -------------------------------------------------------------------------------- /src/locale-data/kea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kea.js -------------------------------------------------------------------------------- /src/locale-data/khq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/khq.js -------------------------------------------------------------------------------- /src/locale-data/ki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ki.js -------------------------------------------------------------------------------- /src/locale-data/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kk.js -------------------------------------------------------------------------------- /src/locale-data/kkj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kkj.js -------------------------------------------------------------------------------- /src/locale-data/kl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kl.js -------------------------------------------------------------------------------- /src/locale-data/kln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kln.js -------------------------------------------------------------------------------- /src/locale-data/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/km.js -------------------------------------------------------------------------------- /src/locale-data/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kn.js -------------------------------------------------------------------------------- /src/locale-data/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ko.js -------------------------------------------------------------------------------- /src/locale-data/kok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kok.js -------------------------------------------------------------------------------- /src/locale-data/ks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ks.js -------------------------------------------------------------------------------- /src/locale-data/ksb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ksb.js -------------------------------------------------------------------------------- /src/locale-data/ksf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ksf.js -------------------------------------------------------------------------------- /src/locale-data/ksh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ksh.js -------------------------------------------------------------------------------- /src/locale-data/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ku.js -------------------------------------------------------------------------------- /src/locale-data/kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/kw.js -------------------------------------------------------------------------------- /src/locale-data/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ky.js -------------------------------------------------------------------------------- /src/locale-data/lag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/lag.js -------------------------------------------------------------------------------- /src/locale-data/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/lb.js -------------------------------------------------------------------------------- /src/locale-data/lg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/lg.js -------------------------------------------------------------------------------- /src/locale-data/lkt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/lkt.js -------------------------------------------------------------------------------- /src/locale-data/ln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ln.js -------------------------------------------------------------------------------- /src/locale-data/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/lo.js -------------------------------------------------------------------------------- /src/locale-data/lrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/lrc.js -------------------------------------------------------------------------------- /src/locale-data/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/lt.js -------------------------------------------------------------------------------- /src/locale-data/lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/lu.js -------------------------------------------------------------------------------- /src/locale-data/luo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/luo.js -------------------------------------------------------------------------------- /src/locale-data/luy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/luy.js -------------------------------------------------------------------------------- /src/locale-data/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/lv.js -------------------------------------------------------------------------------- /src/locale-data/mas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mas.js -------------------------------------------------------------------------------- /src/locale-data/mer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mer.js -------------------------------------------------------------------------------- /src/locale-data/mfe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mfe.js -------------------------------------------------------------------------------- /src/locale-data/mg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mg.js -------------------------------------------------------------------------------- /src/locale-data/mgh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mgh.js -------------------------------------------------------------------------------- /src/locale-data/mgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mgo.js -------------------------------------------------------------------------------- /src/locale-data/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mi.js -------------------------------------------------------------------------------- /src/locale-data/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mk.js -------------------------------------------------------------------------------- /src/locale-data/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ml.js -------------------------------------------------------------------------------- /src/locale-data/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mn.js -------------------------------------------------------------------------------- /src/locale-data/mo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mo.js -------------------------------------------------------------------------------- /src/locale-data/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mr.js -------------------------------------------------------------------------------- /src/locale-data/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ms.js -------------------------------------------------------------------------------- /src/locale-data/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mt.js -------------------------------------------------------------------------------- /src/locale-data/mua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mua.js -------------------------------------------------------------------------------- /src/locale-data/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/my.js -------------------------------------------------------------------------------- /src/locale-data/mzn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/mzn.js -------------------------------------------------------------------------------- /src/locale-data/nah.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nah.js -------------------------------------------------------------------------------- /src/locale-data/naq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/naq.js -------------------------------------------------------------------------------- /src/locale-data/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nb.js -------------------------------------------------------------------------------- /src/locale-data/nd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nd.js -------------------------------------------------------------------------------- /src/locale-data/nds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nds.js -------------------------------------------------------------------------------- /src/locale-data/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ne.js -------------------------------------------------------------------------------- /src/locale-data/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nl.js -------------------------------------------------------------------------------- /src/locale-data/nmg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nmg.js -------------------------------------------------------------------------------- /src/locale-data/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nn.js -------------------------------------------------------------------------------- /src/locale-data/nnh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nnh.js -------------------------------------------------------------------------------- /src/locale-data/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/no.js -------------------------------------------------------------------------------- /src/locale-data/nqo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nqo.js -------------------------------------------------------------------------------- /src/locale-data/nr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nr.js -------------------------------------------------------------------------------- /src/locale-data/nso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nso.js -------------------------------------------------------------------------------- /src/locale-data/nus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nus.js -------------------------------------------------------------------------------- /src/locale-data/ny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ny.js -------------------------------------------------------------------------------- /src/locale-data/nyn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/nyn.js -------------------------------------------------------------------------------- /src/locale-data/om.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/om.js -------------------------------------------------------------------------------- /src/locale-data/or.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/or.js -------------------------------------------------------------------------------- /src/locale-data/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/os.js -------------------------------------------------------------------------------- /src/locale-data/pa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/pa.js -------------------------------------------------------------------------------- /src/locale-data/pap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/pap.js -------------------------------------------------------------------------------- /src/locale-data/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/pl.js -------------------------------------------------------------------------------- /src/locale-data/prg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/prg.js -------------------------------------------------------------------------------- /src/locale-data/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ps.js -------------------------------------------------------------------------------- /src/locale-data/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/pt.js -------------------------------------------------------------------------------- /src/locale-data/qu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/qu.js -------------------------------------------------------------------------------- /src/locale-data/rm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/rm.js -------------------------------------------------------------------------------- /src/locale-data/rn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/rn.js -------------------------------------------------------------------------------- /src/locale-data/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ro.js -------------------------------------------------------------------------------- /src/locale-data/rof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/rof.js -------------------------------------------------------------------------------- /src/locale-data/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ru.js -------------------------------------------------------------------------------- /src/locale-data/rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/rw.js -------------------------------------------------------------------------------- /src/locale-data/rwk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/rwk.js -------------------------------------------------------------------------------- /src/locale-data/sah.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sah.js -------------------------------------------------------------------------------- /src/locale-data/saq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/saq.js -------------------------------------------------------------------------------- /src/locale-data/sbp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sbp.js -------------------------------------------------------------------------------- /src/locale-data/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sc.js -------------------------------------------------------------------------------- /src/locale-data/scn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/scn.js -------------------------------------------------------------------------------- /src/locale-data/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sd.js -------------------------------------------------------------------------------- /src/locale-data/sdh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sdh.js -------------------------------------------------------------------------------- /src/locale-data/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/se.js -------------------------------------------------------------------------------- /src/locale-data/seh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/seh.js -------------------------------------------------------------------------------- /src/locale-data/ses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ses.js -------------------------------------------------------------------------------- /src/locale-data/sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sg.js -------------------------------------------------------------------------------- /src/locale-data/sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sh.js -------------------------------------------------------------------------------- /src/locale-data/shi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/shi.js -------------------------------------------------------------------------------- /src/locale-data/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/si.js -------------------------------------------------------------------------------- /src/locale-data/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sk.js -------------------------------------------------------------------------------- /src/locale-data/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sl.js -------------------------------------------------------------------------------- /src/locale-data/sma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sma.js -------------------------------------------------------------------------------- /src/locale-data/smi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/smi.js -------------------------------------------------------------------------------- /src/locale-data/smj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/smj.js -------------------------------------------------------------------------------- /src/locale-data/smn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/smn.js -------------------------------------------------------------------------------- /src/locale-data/sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sms.js -------------------------------------------------------------------------------- /src/locale-data/sn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sn.js -------------------------------------------------------------------------------- /src/locale-data/so.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/so.js -------------------------------------------------------------------------------- /src/locale-data/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sq.js -------------------------------------------------------------------------------- /src/locale-data/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sr.js -------------------------------------------------------------------------------- /src/locale-data/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ss.js -------------------------------------------------------------------------------- /src/locale-data/ssy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ssy.js -------------------------------------------------------------------------------- /src/locale-data/st.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/st.js -------------------------------------------------------------------------------- /src/locale-data/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sv.js -------------------------------------------------------------------------------- /src/locale-data/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/sw.js -------------------------------------------------------------------------------- /src/locale-data/syr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/syr.js -------------------------------------------------------------------------------- /src/locale-data/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ta.js -------------------------------------------------------------------------------- /src/locale-data/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/te.js -------------------------------------------------------------------------------- /src/locale-data/teo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/teo.js -------------------------------------------------------------------------------- /src/locale-data/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/tg.js -------------------------------------------------------------------------------- /src/locale-data/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/th.js -------------------------------------------------------------------------------- /src/locale-data/ti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ti.js -------------------------------------------------------------------------------- /src/locale-data/tig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/tig.js -------------------------------------------------------------------------------- /src/locale-data/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/tk.js -------------------------------------------------------------------------------- /src/locale-data/tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/tl.js -------------------------------------------------------------------------------- /src/locale-data/tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/tn.js -------------------------------------------------------------------------------- /src/locale-data/to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/to.js -------------------------------------------------------------------------------- /src/locale-data/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/tr.js -------------------------------------------------------------------------------- /src/locale-data/ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ts.js -------------------------------------------------------------------------------- /src/locale-data/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/tt.js -------------------------------------------------------------------------------- /src/locale-data/twq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/twq.js -------------------------------------------------------------------------------- /src/locale-data/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/tzm.js -------------------------------------------------------------------------------- /src/locale-data/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ug.js -------------------------------------------------------------------------------- /src/locale-data/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/uk.js -------------------------------------------------------------------------------- /src/locale-data/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ur.js -------------------------------------------------------------------------------- /src/locale-data/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/uz.js -------------------------------------------------------------------------------- /src/locale-data/vai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/vai.js -------------------------------------------------------------------------------- /src/locale-data/ve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/ve.js -------------------------------------------------------------------------------- /src/locale-data/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/vi.js -------------------------------------------------------------------------------- /src/locale-data/vo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/vo.js -------------------------------------------------------------------------------- /src/locale-data/vun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/vun.js -------------------------------------------------------------------------------- /src/locale-data/wa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/wa.js -------------------------------------------------------------------------------- /src/locale-data/wae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/wae.js -------------------------------------------------------------------------------- /src/locale-data/wo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/wo.js -------------------------------------------------------------------------------- /src/locale-data/xh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/xh.js -------------------------------------------------------------------------------- /src/locale-data/xog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/xog.js -------------------------------------------------------------------------------- /src/locale-data/yav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/yav.js -------------------------------------------------------------------------------- /src/locale-data/yi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/yi.js -------------------------------------------------------------------------------- /src/locale-data/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/yo.js -------------------------------------------------------------------------------- /src/locale-data/yue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/yue.js -------------------------------------------------------------------------------- /src/locale-data/zgh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/zgh.js -------------------------------------------------------------------------------- /src/locale-data/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/zh.js -------------------------------------------------------------------------------- /src/locale-data/zu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/locale-data/zu.js -------------------------------------------------------------------------------- /src/supported-locales.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/src/supported-locales.mjs -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/webpack.config.js -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/ab.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 V&A" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/am.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/an.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Preguntas freqüents (FAQs) sobre Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/ar.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ast.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/az.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Skreç 3.0 TVS" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/be.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 Частыя пытанні" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "ЧЗВ за Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/bn.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 বজিপ্র" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "PMF de Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 Často kladené otázky" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Cwestiynau Cyffredin Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Häufig gestellte Fragen zu Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Συχνές Ερωτήσεις Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/eo.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/es-419.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 KKK" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 ohiko galderak" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/fa.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "سوالات متداول اسکرچ ۳٫۰" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 UKK" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/fil.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 Madalas Itanong" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Foire aux Questions Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/fy.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ga.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Ceisteanna Coitianta Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/gd.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "CÀBHA air Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/gl.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Preguntas frecuentes sobre Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ha.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 ABUBUWA DA AKA FI TAMBAYA" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/he.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/hi.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 Pomoć" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ht.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 Kesyon yo Poze Souvan" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 GYIK" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/hy.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 ՀՏՀ " 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/id.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "FAQ Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/is.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Domande Frequenti su Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ja-Hira.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 よくあるしつもん" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 よくある質問" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/ka.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/kk.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 ЖҚС" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/km.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "스크래치 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ku.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 PPP" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/lt.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Dažni klausimai apie Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/lv.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 BUJ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/mi.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 Pātai Auau" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/mn.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Скратч 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Spørsmål og svar om Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Spørsmål og svar om Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/nso.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/oc.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/or.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Najczęściej zadawane pytania o Scratchu 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/pt-br.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Perguntas frequentes do Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "PF do Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/qu.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "scratch 3.0 tapukuykuna" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/rap.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 ЧАВО" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/sk.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Často kladené otázky o Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 pogosta vprašanja" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/sr.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/sw.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/th.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/tn.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/tr.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/uk.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 ЧаПи" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.3faq-l10njson/uz.json -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Câu hỏi thường gặp về Scratch 3.0" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/xh.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "u-Scratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/zh-cn.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0常见问题" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/zh-tw.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "Scratch 3.0 常見問答" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.3faq-l10njson/zu.json: -------------------------------------------------------------------------------- 1 | { 2 | "preview-faq.title": "uScratch 3.0 FAQ" 3 | } -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ab.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/af.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/am.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/an.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ar.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/az.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/be.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/bg.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/bn.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ca.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/cs.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/cy.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/da.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/de.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/el.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/en.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/eo.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/es.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/et.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/eu.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/fa.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/fi.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/fr.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/fy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/fy.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ga.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/gd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/gd.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/gl.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ha.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/he.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/hi.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/hr.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ht.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ht.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/hu.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/hy.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/id.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/is.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/it.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ja.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ka.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/kk.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/km.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ko.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ku.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/lt.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/lv.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/mi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/mi.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/mn.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/nb.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/nl.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/nn.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/oc.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/or.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/pl.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/pt.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/qu.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ro.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/ru.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/sk.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/sl.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/sr.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/sv.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/sw.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/th.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/tn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/tn.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/tr.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/uk.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/uz.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/vi.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/xh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/xh.json -------------------------------------------------------------------------------- /www/scratch-website.camp-l10njson/zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.camp-l10njson/zu.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ab.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/af.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/am.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/an.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ar.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/az.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/be.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/bg.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/bn.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ca.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/cs.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/cy.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/da.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/de.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/el.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/en.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/eo.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/es.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/et.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/eu.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/fa.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/fi.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/fr.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/fy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/fy.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ga.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/gd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/gd.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/gl.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ha.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/he.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/hi.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/hr.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ht.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ht.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/hu.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/hy.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/id.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/is.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/it.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ja.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ka.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/kk.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/km.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ko.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ku.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/lt.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/lv.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/mi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/mi.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/mn.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/nb.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/nl.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/nn.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/oc.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/or.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/pl.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/pt.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/qu.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ro.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/ru.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/sk.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/sl.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/sr.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/sv.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/sw.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/th.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/tn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/tn.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/tr.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/uk.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/uz.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/vi.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/xh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/xh.json -------------------------------------------------------------------------------- /www/scratch-website.dmca-l10njson/zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.dmca-l10njson/zu.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/ab.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/af.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/am.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/an.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/ar.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/ast.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/az.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/be.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/bg.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/bn.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/ca.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/ckb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/ckb.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/cs.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/cy.json -------------------------------------------------------------------------------- /www/scratch-website.ev3-l10njson/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-l10n/HEAD/www/scratch-website.ev3-l10njson/da.json --------------------------------------------------------------------------------