├── .editorconfig ├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── fixtures ├── fixture1.html ├── fixture2.html ├── index.html ├── index_namespace.html ├── index_namespace_consistent_output.html └── titleService.js ├── gulpfile.js ├── index.js ├── modules ├── extractTranslations.js ├── helpers.js ├── mergeTranslations.js └── translations.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | i18nextract 2 | node_modules 3 | .idea 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/fixture1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/fixtures/fixture1.html -------------------------------------------------------------------------------- /fixtures/fixture2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/fixtures/fixture2.html -------------------------------------------------------------------------------- /fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/fixtures/index.html -------------------------------------------------------------------------------- /fixtures/index_namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/fixtures/index_namespace.html -------------------------------------------------------------------------------- /fixtures/index_namespace_consistent_output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/fixtures/index_namespace_consistent_output.html -------------------------------------------------------------------------------- /fixtures/titleService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/fixtures/titleService.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/index.js -------------------------------------------------------------------------------- /modules/extractTranslations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/modules/extractTranslations.js -------------------------------------------------------------------------------- /modules/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/modules/helpers.js -------------------------------------------------------------------------------- /modules/mergeTranslations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/modules/mergeTranslations.js -------------------------------------------------------------------------------- /modules/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/modules/translations.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcabanes/gulp-angular-translate-extract/HEAD/package.json --------------------------------------------------------------------------------