├── .gitignore ├── README.md ├── ab.json ├── ale.json ├── ar.json ├── bn_BD.json ├── ca.json ├── ckb.json ├── cs.json ├── cy.json ├── dum.json ├── dutch.json ├── el.json ├── english.json ├── enm.json ├── fa.json ├── french.json ├── german.json ├── he.json ├── hi.json ├── hu.json ├── id.json ├── it.json ├── ja.json ├── ko.json ├── lt.json ├── mad.json ├── ms.json ├── my.json ├── nb_NO.json ├── pl.json ├── pt_BR.json ├── ro.json ├── ru.json ├── sk.json ├── spanish.json ├── sr.json ├── sv.json ├── sw.json ├── syc.json ├── th.json ├── tig.json ├── tl.json ├── tr.json ├── uk.json ├── uz.json ├── vi.json ├── zh.json └── zh_Hant.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/README.md -------------------------------------------------------------------------------- /ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/ab.json -------------------------------------------------------------------------------- /ale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/ale.json -------------------------------------------------------------------------------- /ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/ar.json -------------------------------------------------------------------------------- /bn_BD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/bn_BD.json -------------------------------------------------------------------------------- /ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/ca.json -------------------------------------------------------------------------------- /ckb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/ckb.json -------------------------------------------------------------------------------- /cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/cs.json -------------------------------------------------------------------------------- /cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/cy.json -------------------------------------------------------------------------------- /dum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/dum.json -------------------------------------------------------------------------------- /dutch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/dutch.json -------------------------------------------------------------------------------- /el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/el.json -------------------------------------------------------------------------------- /english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/english.json -------------------------------------------------------------------------------- /enm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/enm.json -------------------------------------------------------------------------------- /fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/fa.json -------------------------------------------------------------------------------- /french.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/french.json -------------------------------------------------------------------------------- /german.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/german.json -------------------------------------------------------------------------------- /he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/he.json -------------------------------------------------------------------------------- /hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/hi.json -------------------------------------------------------------------------------- /hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/hu.json -------------------------------------------------------------------------------- /id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/id.json -------------------------------------------------------------------------------- /it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/it.json -------------------------------------------------------------------------------- /ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/ja.json -------------------------------------------------------------------------------- /ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/ko.json -------------------------------------------------------------------------------- /lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/lt.json -------------------------------------------------------------------------------- /mad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/mad.json -------------------------------------------------------------------------------- /ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/ms.json -------------------------------------------------------------------------------- /my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/my.json -------------------------------------------------------------------------------- /nb_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/nb_NO.json -------------------------------------------------------------------------------- /pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/pl.json -------------------------------------------------------------------------------- /pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/pt_BR.json -------------------------------------------------------------------------------- /ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/ro.json -------------------------------------------------------------------------------- /ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/ru.json -------------------------------------------------------------------------------- /sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/sk.json -------------------------------------------------------------------------------- /spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/spanish.json -------------------------------------------------------------------------------- /sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/sr.json -------------------------------------------------------------------------------- /sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/sv.json -------------------------------------------------------------------------------- /sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/sw.json -------------------------------------------------------------------------------- /syc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/syc.json -------------------------------------------------------------------------------- /th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/th.json -------------------------------------------------------------------------------- /tig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/tig.json -------------------------------------------------------------------------------- /tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/tl.json -------------------------------------------------------------------------------- /tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/tr.json -------------------------------------------------------------------------------- /uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/uk.json -------------------------------------------------------------------------------- /uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/uz.json -------------------------------------------------------------------------------- /vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/vi.json -------------------------------------------------------------------------------- /zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/zh.json -------------------------------------------------------------------------------- /zh_Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firasdib/regex101-translations/HEAD/zh_Hant.json --------------------------------------------------------------------------------