├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── deploy ├── deploy.sh └── deploy_rsa.enc ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── main.server.js ├── package.json ├── protractor.conf.js ├── rebuild.sh ├── script.txt ├── src ├── app │ ├── about │ │ ├── about.component.css │ │ ├── about.component.html │ │ ├── about.component.spec.ts │ │ └── about.component.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.server.module.ts │ ├── controls │ │ ├── plural-editor │ │ │ ├── plural-editor.component.css │ │ │ ├── plural-editor.component.html │ │ │ ├── plural-editor.component.spec.ts │ │ │ └── plural-editor.component.ts │ │ └── select-editor │ │ │ ├── select-editor.component.css │ │ │ ├── select-editor.component.html │ │ │ ├── select-editor.component.spec.ts │ │ │ └── select-editor.component.ts │ ├── forms │ │ ├── msg-edit │ │ │ ├── msg-edit.component.css │ │ │ ├── msg-edit.component.html │ │ │ ├── msg-edit.component.spec.ts │ │ │ └── msg-edit.component.ts │ │ └── new-project │ │ │ ├── new-project.component.css │ │ │ ├── new-project.component.html │ │ │ ├── new-project.component.spec.ts │ │ │ └── new-project.component.ts │ ├── frame-sidenav │ │ ├── frame-sidenav.component.css │ │ ├── frame-sidenav.component.html │ │ ├── frame-sidenav.component.spec.ts │ │ └── frame-sidenav.component.ts │ ├── frame │ │ ├── frame.component.css │ │ ├── frame.component.html │ │ ├── frame.component.spec.ts │ │ └── frame.component.ts │ ├── home │ │ ├── home.component.css │ │ ├── home.component.html │ │ ├── home.component.spec.ts │ │ └── home.component.ts │ ├── models │ │ ├── icu.ts │ │ ├── project.ts │ │ ├── source.ts │ │ ├── translation.ts │ │ ├── xlf.ts │ │ └── xmb.ts │ ├── project │ │ ├── project-resolve.ts │ │ ├── project.component.css │ │ ├── project.component.html │ │ ├── project.component.spec.ts │ │ └── project.component.ts │ ├── services │ │ ├── backend.service.spec.ts │ │ ├── backend.service.ts │ │ ├── can-deactivate-project.service.spec.ts │ │ ├── can-deactivate-project.service.ts │ │ ├── github.service.spec.ts │ │ ├── github.service.ts │ │ ├── projects.service.spec.ts │ │ └── projects.service.ts │ ├── source-msgs-list │ │ ├── source-msgs-list.component.css │ │ ├── source-msgs-list.component.html │ │ ├── source-msgs-list.component.spec.ts │ │ └── source-msgs-list.component.ts │ └── widgets │ │ ├── location-details │ │ ├── location-details.component.css │ │ ├── location-details.component.html │ │ ├── location-details.component.spec.ts │ │ └── location-details.component.ts │ │ └── progression │ │ ├── progression.component.css │ │ ├── progression.component.html │ │ ├── progression.component.spec.ts │ │ └── progression.component.ts ├── assets │ ├── .gitkeep │ └── photo.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── i18n-xlf │ ├── messages.en.xlf │ ├── messages.fr.xlf │ └── messages.xlf ├── i18n-xmb │ └── messages.xmb ├── index.html ├── main.server.ts ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app-server.json ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/README.md -------------------------------------------------------------------------------- /deploy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/deploy/deploy.sh -------------------------------------------------------------------------------- /deploy/deploy_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/deploy/deploy_rsa.enc -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/karma.conf.js -------------------------------------------------------------------------------- /main.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/main.server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/rebuild.sh -------------------------------------------------------------------------------- /script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/script.txt -------------------------------------------------------------------------------- /src/app/about/about.component.css: -------------------------------------------------------------------------------- 1 | .main { padding: 24px; } 2 | -------------------------------------------------------------------------------- /src/app/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/about/about.component.html -------------------------------------------------------------------------------- /src/app/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/about/about.component.spec.ts -------------------------------------------------------------------------------- /src/app/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/about/about.component.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/app.server.module.ts -------------------------------------------------------------------------------- /src/app/controls/plural-editor/plural-editor.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/controls/plural-editor/plural-editor.component.css -------------------------------------------------------------------------------- /src/app/controls/plural-editor/plural-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/controls/plural-editor/plural-editor.component.html -------------------------------------------------------------------------------- /src/app/controls/plural-editor/plural-editor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/controls/plural-editor/plural-editor.component.spec.ts -------------------------------------------------------------------------------- /src/app/controls/plural-editor/plural-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/controls/plural-editor/plural-editor.component.ts -------------------------------------------------------------------------------- /src/app/controls/select-editor/select-editor.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/controls/select-editor/select-editor.component.css -------------------------------------------------------------------------------- /src/app/controls/select-editor/select-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/controls/select-editor/select-editor.component.html -------------------------------------------------------------------------------- /src/app/controls/select-editor/select-editor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/controls/select-editor/select-editor.component.spec.ts -------------------------------------------------------------------------------- /src/app/controls/select-editor/select-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/controls/select-editor/select-editor.component.ts -------------------------------------------------------------------------------- /src/app/forms/msg-edit/msg-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/forms/msg-edit/msg-edit.component.css -------------------------------------------------------------------------------- /src/app/forms/msg-edit/msg-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/forms/msg-edit/msg-edit.component.html -------------------------------------------------------------------------------- /src/app/forms/msg-edit/msg-edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/forms/msg-edit/msg-edit.component.spec.ts -------------------------------------------------------------------------------- /src/app/forms/msg-edit/msg-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/forms/msg-edit/msg-edit.component.ts -------------------------------------------------------------------------------- /src/app/forms/new-project/new-project.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/forms/new-project/new-project.component.css -------------------------------------------------------------------------------- /src/app/forms/new-project/new-project.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/forms/new-project/new-project.component.html -------------------------------------------------------------------------------- /src/app/forms/new-project/new-project.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/forms/new-project/new-project.component.spec.ts -------------------------------------------------------------------------------- /src/app/forms/new-project/new-project.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/forms/new-project/new-project.component.ts -------------------------------------------------------------------------------- /src/app/frame-sidenav/frame-sidenav.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/frame-sidenav/frame-sidenav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/frame-sidenav/frame-sidenav.component.html -------------------------------------------------------------------------------- /src/app/frame-sidenav/frame-sidenav.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/frame-sidenav/frame-sidenav.component.spec.ts -------------------------------------------------------------------------------- /src/app/frame-sidenav/frame-sidenav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/frame-sidenav/frame-sidenav.component.ts -------------------------------------------------------------------------------- /src/app/frame/frame.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/frame/frame.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/frame/frame.component.html -------------------------------------------------------------------------------- /src/app/frame/frame.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/frame/frame.component.spec.ts -------------------------------------------------------------------------------- /src/app/frame/frame.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/frame/frame.component.ts -------------------------------------------------------------------------------- /src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | .main { padding: 16px; } -------------------------------------------------------------------------------- /src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/app/models/icu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/models/icu.ts -------------------------------------------------------------------------------- /src/app/models/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/models/project.ts -------------------------------------------------------------------------------- /src/app/models/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/models/source.ts -------------------------------------------------------------------------------- /src/app/models/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/models/translation.ts -------------------------------------------------------------------------------- /src/app/models/xlf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/models/xlf.ts -------------------------------------------------------------------------------- /src/app/models/xmb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/models/xmb.ts -------------------------------------------------------------------------------- /src/app/project/project-resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/project/project-resolve.ts -------------------------------------------------------------------------------- /src/app/project/project.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/project/project.component.css -------------------------------------------------------------------------------- /src/app/project/project.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/project/project.component.html -------------------------------------------------------------------------------- /src/app/project/project.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/project/project.component.spec.ts -------------------------------------------------------------------------------- /src/app/project/project.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/project/project.component.ts -------------------------------------------------------------------------------- /src/app/services/backend.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/services/backend.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/backend.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/services/backend.service.ts -------------------------------------------------------------------------------- /src/app/services/can-deactivate-project.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/services/can-deactivate-project.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/can-deactivate-project.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/services/can-deactivate-project.service.ts -------------------------------------------------------------------------------- /src/app/services/github.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/services/github.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/github.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/services/github.service.ts -------------------------------------------------------------------------------- /src/app/services/projects.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/services/projects.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/projects.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/services/projects.service.ts -------------------------------------------------------------------------------- /src/app/source-msgs-list/source-msgs-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/source-msgs-list/source-msgs-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/source-msgs-list/source-msgs-list.component.html -------------------------------------------------------------------------------- /src/app/source-msgs-list/source-msgs-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/source-msgs-list/source-msgs-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/source-msgs-list/source-msgs-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/source-msgs-list/source-msgs-list.component.ts -------------------------------------------------------------------------------- /src/app/widgets/location-details/location-details.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/widgets/location-details/location-details.component.css -------------------------------------------------------------------------------- /src/app/widgets/location-details/location-details.component.html: -------------------------------------------------------------------------------- 1 |
{{content | async}}
--------------------------------------------------------------------------------
/src/app/widgets/location-details/location-details.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/widgets/location-details/location-details.component.spec.ts
--------------------------------------------------------------------------------
/src/app/widgets/location-details/location-details.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/widgets/location-details/location-details.component.ts
--------------------------------------------------------------------------------
/src/app/widgets/progression/progression.component.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/widgets/progression/progression.component.css
--------------------------------------------------------------------------------
/src/app/widgets/progression/progression.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/widgets/progression/progression.component.html
--------------------------------------------------------------------------------
/src/app/widgets/progression/progression.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/widgets/progression/progression.component.spec.ts
--------------------------------------------------------------------------------
/src/app/widgets/progression/progression.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/app/widgets/progression/progression.component.ts
--------------------------------------------------------------------------------
/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/assets/photo.png
--------------------------------------------------------------------------------
/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/environments/environment.ts
--------------------------------------------------------------------------------
/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/favicon.ico
--------------------------------------------------------------------------------
/src/i18n-xlf/messages.en.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/i18n-xlf/messages.en.xlf
--------------------------------------------------------------------------------
/src/i18n-xlf/messages.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/i18n-xlf/messages.fr.xlf
--------------------------------------------------------------------------------
/src/i18n-xlf/messages.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/i18n-xlf/messages.xlf
--------------------------------------------------------------------------------
/src/i18n-xmb/messages.xmb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/i18n-xmb/messages.xmb
--------------------------------------------------------------------------------
/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/index.html
--------------------------------------------------------------------------------
/src/main.server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/main.server.ts
--------------------------------------------------------------------------------
/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/main.ts
--------------------------------------------------------------------------------
/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/polyfills.ts
--------------------------------------------------------------------------------
/src/styles.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/styles.scss
--------------------------------------------------------------------------------
/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/test.ts
--------------------------------------------------------------------------------
/src/tsconfig.app-server.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/tsconfig.app-server.json
--------------------------------------------------------------------------------
/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/tsconfig.app.json
--------------------------------------------------------------------------------
/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/src/typings.d.ts
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/tsconfig.json
--------------------------------------------------------------------------------
/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/tslint.json
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/webpack.config.js
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feloy/angular-translator/HEAD/yarn.lock
--------------------------------------------------------------------------------