├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── feature-request.yml │ └── system-support.md ├── dependabot.yml └── workflows │ ├── checks.yml │ └── release.yml ├── .gitignore ├── .gulp.json ├── .husky └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── gulpfile.mjs ├── package.json ├── rollup.config.mjs └── src ├── fonts ├── ArCiela.ttf ├── Aztec.ttf ├── Barazhad.otf ├── Celestial.ttf ├── Daedra.otf ├── DarkEldar.ttf ├── Davek.otf ├── Dethek.otf ├── ElderFutharkFS.ttf ├── Eltharin.ttf ├── Espruar.otf ├── FingerAlphabet.ttf ├── Floki.ttf ├── HighDrowic.otf ├── HighschoolRunes.ttf ├── Infernal.ttf ├── Iokharic.otf ├── JungleSlang.ttf ├── Kargi.ttf ├── KremlinPremier.ttf ├── MageScript.otf ├── MarasEye.otf ├── MeroiticDemotic.ttf ├── MiroslavNormal.ttf ├── MusiQwik.ttf ├── NyStormning.otf ├── OldeEnglish.ttf ├── OldeEspruar.otf ├── OldeThorass.otf ├── Ophidian.otf ├── Oriental.ttf ├── OrkGlyphs.ttf ├── Pulsian.ttf ├── Qijomi.otf ├── Reanaarian.otf ├── Rellanic.otf ├── Saurian.ttf ├── ScrapbookChinese.ttf ├── Semphari.otf ├── Skaven.ttf ├── Tengwar.ttf ├── Thassilonian.ttf ├── Thorass.otf ├── Tuzluca.ttf ├── Valmaric.ttf ├── _licenses.md ├── dragon_alphabet.ttf └── licenses │ ├── aztec.txt │ ├── dragon alphabet.txt │ ├── elder futhark fs.txt │ ├── infernal.txt │ ├── kremlin premier.txt │ ├── ny stormning.txt │ └── pixel sagas.txt ├── lang ├── cs.json ├── de.json ├── en.json ├── es.json ├── fi.json ├── fr.json ├── it.json ├── ja.json ├── ko.json ├── pl.json ├── pt-BR.json ├── sv.json └── zh_Hans.json ├── module.json ├── module ├── Fonts.js ├── api.js ├── forms │ ├── FontSettings.js │ ├── GeneralSettings.js │ └── LanguageSettings.js ├── hooks.js ├── libs │ ├── colorPicker.js │ └── libWrapper.js ├── logic.js ├── polyglot.js ├── preloadTemplates.js ├── providers │ ├── _module.js │ ├── _shared.js │ ├── a5e.js │ ├── aria.js │ ├── ars.js │ ├── coc7.js │ ├── cyberpunk-red-core.js │ ├── d35e.js │ ├── dark-heresy.js │ ├── dcc.js │ ├── demonlord.js │ ├── dnd4e.js │ ├── dnd5e.js │ ├── draw-steel.js │ ├── dsa5.js │ ├── earthdawn4e.js │ ├── fgg.js │ ├── gurps.js │ ├── ose.js │ ├── pf1.js │ ├── pf2e.js │ ├── sfrpg.js │ ├── shadowrun5e.js │ ├── splittermond.js │ ├── sw5e.js │ ├── swade.js │ ├── templates │ │ ├── Base.js │ │ └── Generic.js │ ├── tormenta20.js │ ├── uesrpg-d100.js │ ├── wfrp4e.js │ └── wwn.js ├── settings.js └── tour.js ├── styles ├── _chat.scss ├── _forms.scss ├── _init.scss ├── _journal.scss ├── _language-selector.scss ├── _system-specific.scss ├── fonts.css ├── forms │ ├── _common.scss │ ├── _font-settings.scss │ ├── _general-settings.scss │ └── _language-settings.scss └── polyglot.scss └── templates ├── FontSettings.hbs ├── GeneralSettings.hbs ├── LanguageSettings.hbs └── partials └── settings.hbs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/system-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.github/ISSUE_TEMPLATE/system-support.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gulp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.gulp.json -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/gulpfile.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/fonts/ArCiela.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/ArCiela.ttf -------------------------------------------------------------------------------- /src/fonts/Aztec.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Aztec.ttf -------------------------------------------------------------------------------- /src/fonts/Barazhad.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Barazhad.otf -------------------------------------------------------------------------------- /src/fonts/Celestial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Celestial.ttf -------------------------------------------------------------------------------- /src/fonts/Daedra.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Daedra.otf -------------------------------------------------------------------------------- /src/fonts/DarkEldar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/DarkEldar.ttf -------------------------------------------------------------------------------- /src/fonts/Davek.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Davek.otf -------------------------------------------------------------------------------- /src/fonts/Dethek.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Dethek.otf -------------------------------------------------------------------------------- /src/fonts/ElderFutharkFS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/ElderFutharkFS.ttf -------------------------------------------------------------------------------- /src/fonts/Eltharin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Eltharin.ttf -------------------------------------------------------------------------------- /src/fonts/Espruar.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Espruar.otf -------------------------------------------------------------------------------- /src/fonts/FingerAlphabet.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/FingerAlphabet.ttf -------------------------------------------------------------------------------- /src/fonts/Floki.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Floki.ttf -------------------------------------------------------------------------------- /src/fonts/HighDrowic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/HighDrowic.otf -------------------------------------------------------------------------------- /src/fonts/HighschoolRunes.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/HighschoolRunes.ttf -------------------------------------------------------------------------------- /src/fonts/Infernal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Infernal.ttf -------------------------------------------------------------------------------- /src/fonts/Iokharic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Iokharic.otf -------------------------------------------------------------------------------- /src/fonts/JungleSlang.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/JungleSlang.ttf -------------------------------------------------------------------------------- /src/fonts/Kargi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Kargi.ttf -------------------------------------------------------------------------------- /src/fonts/KremlinPremier.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/KremlinPremier.ttf -------------------------------------------------------------------------------- /src/fonts/MageScript.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/MageScript.otf -------------------------------------------------------------------------------- /src/fonts/MarasEye.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/MarasEye.otf -------------------------------------------------------------------------------- /src/fonts/MeroiticDemotic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/MeroiticDemotic.ttf -------------------------------------------------------------------------------- /src/fonts/MiroslavNormal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/MiroslavNormal.ttf -------------------------------------------------------------------------------- /src/fonts/MusiQwik.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/MusiQwik.ttf -------------------------------------------------------------------------------- /src/fonts/NyStormning.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/NyStormning.otf -------------------------------------------------------------------------------- /src/fonts/OldeEnglish.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/OldeEnglish.ttf -------------------------------------------------------------------------------- /src/fonts/OldeEspruar.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/OldeEspruar.otf -------------------------------------------------------------------------------- /src/fonts/OldeThorass.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/OldeThorass.otf -------------------------------------------------------------------------------- /src/fonts/Ophidian.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Ophidian.otf -------------------------------------------------------------------------------- /src/fonts/Oriental.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Oriental.ttf -------------------------------------------------------------------------------- /src/fonts/OrkGlyphs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/OrkGlyphs.ttf -------------------------------------------------------------------------------- /src/fonts/Pulsian.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Pulsian.ttf -------------------------------------------------------------------------------- /src/fonts/Qijomi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Qijomi.otf -------------------------------------------------------------------------------- /src/fonts/Reanaarian.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Reanaarian.otf -------------------------------------------------------------------------------- /src/fonts/Rellanic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Rellanic.otf -------------------------------------------------------------------------------- /src/fonts/Saurian.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Saurian.ttf -------------------------------------------------------------------------------- /src/fonts/ScrapbookChinese.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/ScrapbookChinese.ttf -------------------------------------------------------------------------------- /src/fonts/Semphari.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Semphari.otf -------------------------------------------------------------------------------- /src/fonts/Skaven.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Skaven.ttf -------------------------------------------------------------------------------- /src/fonts/Tengwar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Tengwar.ttf -------------------------------------------------------------------------------- /src/fonts/Thassilonian.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Thassilonian.ttf -------------------------------------------------------------------------------- /src/fonts/Thorass.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Thorass.otf -------------------------------------------------------------------------------- /src/fonts/Tuzluca.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Tuzluca.ttf -------------------------------------------------------------------------------- /src/fonts/Valmaric.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/Valmaric.ttf -------------------------------------------------------------------------------- /src/fonts/_licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/_licenses.md -------------------------------------------------------------------------------- /src/fonts/dragon_alphabet.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/dragon_alphabet.ttf -------------------------------------------------------------------------------- /src/fonts/licenses/aztec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/licenses/aztec.txt -------------------------------------------------------------------------------- /src/fonts/licenses/dragon alphabet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/licenses/dragon alphabet.txt -------------------------------------------------------------------------------- /src/fonts/licenses/elder futhark fs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/licenses/elder futhark fs.txt -------------------------------------------------------------------------------- /src/fonts/licenses/infernal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/licenses/infernal.txt -------------------------------------------------------------------------------- /src/fonts/licenses/kremlin premier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/licenses/kremlin premier.txt -------------------------------------------------------------------------------- /src/fonts/licenses/ny stormning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/licenses/ny stormning.txt -------------------------------------------------------------------------------- /src/fonts/licenses/pixel sagas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/fonts/licenses/pixel sagas.txt -------------------------------------------------------------------------------- /src/lang/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/cs.json -------------------------------------------------------------------------------- /src/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/de.json -------------------------------------------------------------------------------- /src/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/en.json -------------------------------------------------------------------------------- /src/lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/es.json -------------------------------------------------------------------------------- /src/lang/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/fi.json -------------------------------------------------------------------------------- /src/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/fr.json -------------------------------------------------------------------------------- /src/lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/it.json -------------------------------------------------------------------------------- /src/lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/ja.json -------------------------------------------------------------------------------- /src/lang/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/ko.json -------------------------------------------------------------------------------- /src/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/pl.json -------------------------------------------------------------------------------- /src/lang/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/pt-BR.json -------------------------------------------------------------------------------- /src/lang/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/sv.json -------------------------------------------------------------------------------- /src/lang/zh_Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/lang/zh_Hans.json -------------------------------------------------------------------------------- /src/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module.json -------------------------------------------------------------------------------- /src/module/Fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/Fonts.js -------------------------------------------------------------------------------- /src/module/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/api.js -------------------------------------------------------------------------------- /src/module/forms/FontSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/forms/FontSettings.js -------------------------------------------------------------------------------- /src/module/forms/GeneralSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/forms/GeneralSettings.js -------------------------------------------------------------------------------- /src/module/forms/LanguageSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/forms/LanguageSettings.js -------------------------------------------------------------------------------- /src/module/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/hooks.js -------------------------------------------------------------------------------- /src/module/libs/colorPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/libs/colorPicker.js -------------------------------------------------------------------------------- /src/module/libs/libWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/libs/libWrapper.js -------------------------------------------------------------------------------- /src/module/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/logic.js -------------------------------------------------------------------------------- /src/module/polyglot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/polyglot.js -------------------------------------------------------------------------------- /src/module/preloadTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/preloadTemplates.js -------------------------------------------------------------------------------- /src/module/providers/_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/_module.js -------------------------------------------------------------------------------- /src/module/providers/_shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/_shared.js -------------------------------------------------------------------------------- /src/module/providers/a5e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/a5e.js -------------------------------------------------------------------------------- /src/module/providers/aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/aria.js -------------------------------------------------------------------------------- /src/module/providers/ars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/ars.js -------------------------------------------------------------------------------- /src/module/providers/coc7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/coc7.js -------------------------------------------------------------------------------- /src/module/providers/cyberpunk-red-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/cyberpunk-red-core.js -------------------------------------------------------------------------------- /src/module/providers/d35e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/d35e.js -------------------------------------------------------------------------------- /src/module/providers/dark-heresy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/dark-heresy.js -------------------------------------------------------------------------------- /src/module/providers/dcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/dcc.js -------------------------------------------------------------------------------- /src/module/providers/demonlord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/demonlord.js -------------------------------------------------------------------------------- /src/module/providers/dnd4e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/dnd4e.js -------------------------------------------------------------------------------- /src/module/providers/dnd5e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/dnd5e.js -------------------------------------------------------------------------------- /src/module/providers/draw-steel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/draw-steel.js -------------------------------------------------------------------------------- /src/module/providers/dsa5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/dsa5.js -------------------------------------------------------------------------------- /src/module/providers/earthdawn4e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/earthdawn4e.js -------------------------------------------------------------------------------- /src/module/providers/fgg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/fgg.js -------------------------------------------------------------------------------- /src/module/providers/gurps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/gurps.js -------------------------------------------------------------------------------- /src/module/providers/ose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/ose.js -------------------------------------------------------------------------------- /src/module/providers/pf1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/pf1.js -------------------------------------------------------------------------------- /src/module/providers/pf2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/pf2e.js -------------------------------------------------------------------------------- /src/module/providers/sfrpg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/sfrpg.js -------------------------------------------------------------------------------- /src/module/providers/shadowrun5e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/shadowrun5e.js -------------------------------------------------------------------------------- /src/module/providers/splittermond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/splittermond.js -------------------------------------------------------------------------------- /src/module/providers/sw5e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/sw5e.js -------------------------------------------------------------------------------- /src/module/providers/swade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/swade.js -------------------------------------------------------------------------------- /src/module/providers/templates/Base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/templates/Base.js -------------------------------------------------------------------------------- /src/module/providers/templates/Generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/templates/Generic.js -------------------------------------------------------------------------------- /src/module/providers/tormenta20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/tormenta20.js -------------------------------------------------------------------------------- /src/module/providers/uesrpg-d100.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/uesrpg-d100.js -------------------------------------------------------------------------------- /src/module/providers/wfrp4e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/wfrp4e.js -------------------------------------------------------------------------------- /src/module/providers/wwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/providers/wwn.js -------------------------------------------------------------------------------- /src/module/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/settings.js -------------------------------------------------------------------------------- /src/module/tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/module/tour.js -------------------------------------------------------------------------------- /src/styles/_chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/_chat.scss -------------------------------------------------------------------------------- /src/styles/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/_forms.scss -------------------------------------------------------------------------------- /src/styles/_init.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/_init.scss -------------------------------------------------------------------------------- /src/styles/_journal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/_journal.scss -------------------------------------------------------------------------------- /src/styles/_language-selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/_language-selector.scss -------------------------------------------------------------------------------- /src/styles/_system-specific.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/_system-specific.scss -------------------------------------------------------------------------------- /src/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/fonts.css -------------------------------------------------------------------------------- /src/styles/forms/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/forms/_common.scss -------------------------------------------------------------------------------- /src/styles/forms/_font-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/forms/_font-settings.scss -------------------------------------------------------------------------------- /src/styles/forms/_general-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/forms/_general-settings.scss -------------------------------------------------------------------------------- /src/styles/forms/_language-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/forms/_language-settings.scss -------------------------------------------------------------------------------- /src/styles/polyglot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/styles/polyglot.scss -------------------------------------------------------------------------------- /src/templates/FontSettings.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/templates/FontSettings.hbs -------------------------------------------------------------------------------- /src/templates/GeneralSettings.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/templates/GeneralSettings.hbs -------------------------------------------------------------------------------- /src/templates/LanguageSettings.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/templates/LanguageSettings.hbs -------------------------------------------------------------------------------- /src/templates/partials/settings.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclemente/fvtt-module-polyglot/HEAD/src/templates/partials/settings.hbs --------------------------------------------------------------------------------