├── .gitignore ├── LICENSE ├── README.md ├── bergamot-httpserver.js ├── css └── index.css ├── index.html ├── js ├── bergamot-translator-worker.js ├── bergamot-translator-worker.wasm ├── index.js └── worker.js ├── package.json └── start_dev_server.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/README.md -------------------------------------------------------------------------------- /bergamot-httpserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/bergamot-httpserver.js -------------------------------------------------------------------------------- /css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/css/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/index.html -------------------------------------------------------------------------------- /js/bergamot-translator-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/js/bergamot-translator-worker.js -------------------------------------------------------------------------------- /js/bergamot-translator-worker.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/js/bergamot-translator-worker.wasm -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/js/index.js -------------------------------------------------------------------------------- /js/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/js/worker.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/package.json -------------------------------------------------------------------------------- /start_dev_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/translate/HEAD/start_dev_server.sh --------------------------------------------------------------------------------