├── .github ├── ISSUE_TEMPLATE │ ├── badge.yml │ ├── config.yml │ ├── maintain.yml │ └── stop_maintain.yml └── workflows │ └── automate.yml ├── LICENSE ├── Languages.patch.ts ├── Languages.ts ├── README.md ├── README.template.md ├── af.json ├── ang.json ├── ar.json ├── ars.json ├── as.json ├── assets └── approve_ui.png ├── ast-u-sd-escb.json ├── ast.json ├── az.json ├── ban.json ├── be-Latn.json ├── be.json ├── bg.json ├── bn.json ├── bottom.json ├── bottomify.ts ├── br.json ├── ca-u-sd-esib.json ├── ca.json ├── ca@valencia.json ├── calculate.ts ├── ceb.json ├── ckb.json ├── co.json ├── contributors.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── de_CH.json ├── dum.json ├── el.json ├── en-XL.json ├── en.json ├── en_US.json ├── enchantment.json ├── enchantment.ts ├── enm.json ├── eo.json ├── es-419ES@419.json ├── es.json ├── es_419.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── frm.json ├── ga.json ├── gl.json ├── got.json ├── he.json ├── hi.json ├── hr.json ├── hu.json ├── hy.json ├── id.json ├── incomplete.js ├── is.json ├── isv.json ├── it.json ├── ja.json ├── ka.json ├── kk.json ├── kmr.json ├── ko.json ├── kw.json ├── la.json ├── lb.json ├── leet.json ├── leet.ts ├── li.json ├── lt.json ├── lv.json ├── lzh.json ├── mk.json ├── ml.json ├── ms.json ├── mt.json ├── mus.json ├── mwl.json ├── nap.json ├── nb_NO.json ├── nds.json ├── ne.json ├── nl.json ├── nn.json ├── ota.json ├── owo.json ├── peo.json ├── piglatin.json ├── pl.json ├── pr.json ├── pt.json ├── pt_BR.json ├── pt_PT.json ├── restructurize.ts ├── ro.json ├── ro_MD.json ├── ru.json ├── scripts ├── .env.example ├── .gitignore ├── .prettierrc ├── .vscode │ ├── extensions.json │ └── settings.json ├── LICENSE ├── README.md ├── package.json ├── src │ ├── consts.ts │ ├── core.ts │ ├── env.ts │ └── index.ts ├── tsconfig.json └── yarn.lock ├── si.json ├── sk.json ├── sl.json ├── sq.json ├── sr.json ├── sv.json ├── ta.json ├── te.json ├── th.json ├── tlh-qaak.json ├── tokipona.json ├── tr.json ├── uk.json ├── ur.json ├── vec.json ├── verified.js ├── vi.json ├── vls.json ├── yi.json ├── zh_Hans.json └── zh_Hant.json /.github/ISSUE_TEMPLATE/badge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/.github/ISSUE_TEMPLATE/badge.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/.github/ISSUE_TEMPLATE/maintain.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/stop_maintain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/.github/ISSUE_TEMPLATE/stop_maintain.yml -------------------------------------------------------------------------------- /.github/workflows/automate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/.github/workflows/automate.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/LICENSE -------------------------------------------------------------------------------- /Languages.patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/Languages.patch.ts -------------------------------------------------------------------------------- /Languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/Languages.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/README.md -------------------------------------------------------------------------------- /README.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/README.template.md -------------------------------------------------------------------------------- /af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/af.json -------------------------------------------------------------------------------- /ang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ang.json -------------------------------------------------------------------------------- /ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ar.json -------------------------------------------------------------------------------- /ars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ars.json -------------------------------------------------------------------------------- /as.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/as.json -------------------------------------------------------------------------------- /assets/approve_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/assets/approve_ui.png -------------------------------------------------------------------------------- /ast-u-sd-escb.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ast.json -------------------------------------------------------------------------------- /az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/az.json -------------------------------------------------------------------------------- /ban.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /be-Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/be-Latn.json -------------------------------------------------------------------------------- /be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/be.json -------------------------------------------------------------------------------- /bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/bg.json -------------------------------------------------------------------------------- /bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/bn.json -------------------------------------------------------------------------------- /bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/bottom.json -------------------------------------------------------------------------------- /bottomify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/bottomify.ts -------------------------------------------------------------------------------- /br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/br.json -------------------------------------------------------------------------------- /ca-u-sd-esib.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ca.json -------------------------------------------------------------------------------- /ca@valencia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ca@valencia.json -------------------------------------------------------------------------------- /calculate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/calculate.ts -------------------------------------------------------------------------------- /ceb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ceb.json -------------------------------------------------------------------------------- /ckb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ckb.json -------------------------------------------------------------------------------- /co.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/co.json -------------------------------------------------------------------------------- /contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/contributors.json -------------------------------------------------------------------------------- /cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/cs.json -------------------------------------------------------------------------------- /cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/cy.json -------------------------------------------------------------------------------- /da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/da.json -------------------------------------------------------------------------------- /de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/de.json -------------------------------------------------------------------------------- /de_CH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/de_CH.json -------------------------------------------------------------------------------- /dum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/dum.json -------------------------------------------------------------------------------- /el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/el.json -------------------------------------------------------------------------------- /en-XL.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/en.json -------------------------------------------------------------------------------- /en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/en_US.json -------------------------------------------------------------------------------- /enchantment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/enchantment.json -------------------------------------------------------------------------------- /enchantment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/enchantment.ts -------------------------------------------------------------------------------- /enm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/enm.json -------------------------------------------------------------------------------- /eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/eo.json -------------------------------------------------------------------------------- /es-419ES@419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/es-419ES@419.json -------------------------------------------------------------------------------- /es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/es.json -------------------------------------------------------------------------------- /es_419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/es_419.json -------------------------------------------------------------------------------- /et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/et.json -------------------------------------------------------------------------------- /eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/eu.json -------------------------------------------------------------------------------- /fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/fa.json -------------------------------------------------------------------------------- /fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/fi.json -------------------------------------------------------------------------------- /fil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/fil.json -------------------------------------------------------------------------------- /fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/fr.json -------------------------------------------------------------------------------- /frm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/frm.json -------------------------------------------------------------------------------- /ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ga.json -------------------------------------------------------------------------------- /gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/gl.json -------------------------------------------------------------------------------- /got.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/got.json -------------------------------------------------------------------------------- /he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/he.json -------------------------------------------------------------------------------- /hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/hi.json -------------------------------------------------------------------------------- /hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/hr.json -------------------------------------------------------------------------------- /hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/hu.json -------------------------------------------------------------------------------- /hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/hy.json -------------------------------------------------------------------------------- /id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/id.json -------------------------------------------------------------------------------- /incomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/incomplete.js -------------------------------------------------------------------------------- /is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/is.json -------------------------------------------------------------------------------- /isv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/isv.json -------------------------------------------------------------------------------- /it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/it.json -------------------------------------------------------------------------------- /ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ja.json -------------------------------------------------------------------------------- /ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ka.json -------------------------------------------------------------------------------- /kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/kk.json -------------------------------------------------------------------------------- /kmr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/kmr.json -------------------------------------------------------------------------------- /ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ko.json -------------------------------------------------------------------------------- /kw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/kw.json -------------------------------------------------------------------------------- /la.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/la.json -------------------------------------------------------------------------------- /lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/lb.json -------------------------------------------------------------------------------- /leet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/leet.json -------------------------------------------------------------------------------- /leet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/leet.ts -------------------------------------------------------------------------------- /li.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/li.json -------------------------------------------------------------------------------- /lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/lt.json -------------------------------------------------------------------------------- /lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/lv.json -------------------------------------------------------------------------------- /lzh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/lzh.json -------------------------------------------------------------------------------- /mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/mk.json -------------------------------------------------------------------------------- /ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ml.json -------------------------------------------------------------------------------- /ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ms.json -------------------------------------------------------------------------------- /mt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/mt.json -------------------------------------------------------------------------------- /mus.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /mwl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/mwl.json -------------------------------------------------------------------------------- /nap.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /nb_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/nb_NO.json -------------------------------------------------------------------------------- /nds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/nds.json -------------------------------------------------------------------------------- /ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ne.json -------------------------------------------------------------------------------- /nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/nl.json -------------------------------------------------------------------------------- /nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/nn.json -------------------------------------------------------------------------------- /ota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ota.json -------------------------------------------------------------------------------- /owo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/owo.json -------------------------------------------------------------------------------- /peo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/peo.json -------------------------------------------------------------------------------- /piglatin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/piglatin.json -------------------------------------------------------------------------------- /pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/pl.json -------------------------------------------------------------------------------- /pr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/pr.json -------------------------------------------------------------------------------- /pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/pt.json -------------------------------------------------------------------------------- /pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/pt_BR.json -------------------------------------------------------------------------------- /pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/pt_PT.json -------------------------------------------------------------------------------- /restructurize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/restructurize.ts -------------------------------------------------------------------------------- /ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ro.json -------------------------------------------------------------------------------- /ro_MD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ro_MD.json -------------------------------------------------------------------------------- /ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ru.json -------------------------------------------------------------------------------- /scripts/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/.env.example -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/.prettierrc -------------------------------------------------------------------------------- /scripts/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /scripts/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/.vscode/settings.json -------------------------------------------------------------------------------- /scripts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/LICENSE -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/src/consts.ts -------------------------------------------------------------------------------- /scripts/src/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/src/core.ts -------------------------------------------------------------------------------- /scripts/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/src/env.ts -------------------------------------------------------------------------------- /scripts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/src/index.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/scripts/yarn.lock -------------------------------------------------------------------------------- /si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/si.json -------------------------------------------------------------------------------- /sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/sk.json -------------------------------------------------------------------------------- /sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/sl.json -------------------------------------------------------------------------------- /sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/sq.json -------------------------------------------------------------------------------- /sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/sr.json -------------------------------------------------------------------------------- /sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/sv.json -------------------------------------------------------------------------------- /ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ta.json -------------------------------------------------------------------------------- /te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/te.json -------------------------------------------------------------------------------- /th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/th.json -------------------------------------------------------------------------------- /tlh-qaak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/tlh-qaak.json -------------------------------------------------------------------------------- /tokipona.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/tokipona.json -------------------------------------------------------------------------------- /tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/tr.json -------------------------------------------------------------------------------- /uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/uk.json -------------------------------------------------------------------------------- /ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/ur.json -------------------------------------------------------------------------------- /vec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/vec.json -------------------------------------------------------------------------------- /verified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/verified.js -------------------------------------------------------------------------------- /vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/vi.json -------------------------------------------------------------------------------- /vls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/vls.json -------------------------------------------------------------------------------- /yi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /zh_Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/zh_Hans.json -------------------------------------------------------------------------------- /zh_Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/translations/HEAD/zh_Hant.json --------------------------------------------------------------------------------