├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── dist └── Dislate.js ├── manifest.json ├── nodemon.json ├── package.json ├── rollup.config.ts └── src ├── common ├── debug.ts ├── format.ts ├── icons.ts ├── index.ts ├── misc.ts ├── store_item.ts ├── translate.ts ├── try_callback.ts └── update.ts ├── components ├── Commands │ ├── Debug.ts │ ├── Translate.ts │ └── index.ts ├── Modals │ ├── DebugInfoActionSheet.tsx │ ├── Dialog.styles.ts │ ├── Dialog.tsx │ └── index.ts ├── Pages │ ├── Debug │ │ ├── Debug.styles.ts │ │ ├── Debug.tsx │ │ ├── DebugItem.styles.ts │ │ ├── DebugItem.tsx │ │ └── index.ts │ ├── Languages │ │ ├── LanguageItem.styles.ts │ │ ├── LanguageItem.tsx │ │ ├── Languages.tsx │ │ └── index.ts │ └── index.ts ├── Settings │ ├── Credits.styles.ts │ ├── Credits.tsx │ ├── LanguageRow.tsx │ ├── Settings.styles.ts │ ├── Settings.tsx │ └── index.ts ├── Wrappers │ ├── SectionWrapper.styles.ts │ ├── SectionWrapper.tsx │ └── index.ts └── index.ts ├── def.ts ├── index.tsx └── translate ├── index.ts ├── languages ├── iso.ts ├── iso2.ts └── names.ts └── translate.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | .vscode 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/README.md -------------------------------------------------------------------------------- /dist/Dislate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/dist/Dislate.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/manifest.json -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /src/common/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/common/debug.ts -------------------------------------------------------------------------------- /src/common/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/common/format.ts -------------------------------------------------------------------------------- /src/common/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/common/icons.ts -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/common/index.ts -------------------------------------------------------------------------------- /src/common/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/common/misc.ts -------------------------------------------------------------------------------- /src/common/store_item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/common/store_item.ts -------------------------------------------------------------------------------- /src/common/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/common/translate.ts -------------------------------------------------------------------------------- /src/common/try_callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/common/try_callback.ts -------------------------------------------------------------------------------- /src/common/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/common/update.ts -------------------------------------------------------------------------------- /src/components/Commands/Debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Commands/Debug.ts -------------------------------------------------------------------------------- /src/components/Commands/Translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Commands/Translate.ts -------------------------------------------------------------------------------- /src/components/Commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Commands/index.ts -------------------------------------------------------------------------------- /src/components/Modals/DebugInfoActionSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Modals/DebugInfoActionSheet.tsx -------------------------------------------------------------------------------- /src/components/Modals/Dialog.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Modals/Dialog.styles.ts -------------------------------------------------------------------------------- /src/components/Modals/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Modals/Dialog.tsx -------------------------------------------------------------------------------- /src/components/Modals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Modals/index.ts -------------------------------------------------------------------------------- /src/components/Pages/Debug/Debug.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Pages/Debug/Debug.styles.ts -------------------------------------------------------------------------------- /src/components/Pages/Debug/Debug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Pages/Debug/Debug.tsx -------------------------------------------------------------------------------- /src/components/Pages/Debug/DebugItem.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Pages/Debug/DebugItem.styles.ts -------------------------------------------------------------------------------- /src/components/Pages/Debug/DebugItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Pages/Debug/DebugItem.tsx -------------------------------------------------------------------------------- /src/components/Pages/Debug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Pages/Debug/index.ts -------------------------------------------------------------------------------- /src/components/Pages/Languages/LanguageItem.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Pages/Languages/LanguageItem.styles.ts -------------------------------------------------------------------------------- /src/components/Pages/Languages/LanguageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Pages/Languages/LanguageItem.tsx -------------------------------------------------------------------------------- /src/components/Pages/Languages/Languages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Pages/Languages/Languages.tsx -------------------------------------------------------------------------------- /src/components/Pages/Languages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Pages/Languages/index.ts -------------------------------------------------------------------------------- /src/components/Pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Pages/index.ts -------------------------------------------------------------------------------- /src/components/Settings/Credits.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Settings/Credits.styles.ts -------------------------------------------------------------------------------- /src/components/Settings/Credits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Settings/Credits.tsx -------------------------------------------------------------------------------- /src/components/Settings/LanguageRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Settings/LanguageRow.tsx -------------------------------------------------------------------------------- /src/components/Settings/Settings.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Settings/Settings.styles.ts -------------------------------------------------------------------------------- /src/components/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Settings/Settings.tsx -------------------------------------------------------------------------------- /src/components/Settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Settings/index.ts -------------------------------------------------------------------------------- /src/components/Wrappers/SectionWrapper.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Wrappers/SectionWrapper.styles.ts -------------------------------------------------------------------------------- /src/components/Wrappers/SectionWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Wrappers/SectionWrapper.tsx -------------------------------------------------------------------------------- /src/components/Wrappers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/Wrappers/index.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/def.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/def.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/translate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/translate/index.ts -------------------------------------------------------------------------------- /src/translate/languages/iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/translate/languages/iso.ts -------------------------------------------------------------------------------- /src/translate/languages/iso2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/translate/languages/iso2.ts -------------------------------------------------------------------------------- /src/translate/languages/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/translate/languages/names.ts -------------------------------------------------------------------------------- /src/translate/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acquitelol/dislate/HEAD/src/translate/translate.ts --------------------------------------------------------------------------------