ngx-translate-extract-marker/projects/ngx-translate-extract-marker
2019-06-25 13:12:52 +02:00
..
src rename extract to marker 2019-06-25 13:12:52 +02:00
karma.conf.js Initial commit 2019-06-24 12:39:17 +02:00
ng-package.json Initial commit 2019-06-24 12:39:17 +02:00
package.json rename extract to marker 2019-06-25 13:12:52 +02:00
README.md rename extract to marker 2019-06-25 13:12:52 +02:00
tsconfig.lib.json Initial commit 2019-06-24 12:39:17 +02:00
tsconfig.spec.json Initial commit 2019-06-24 12:39:17 +02:00
tslint.json Initial commit 2019-06-24 12:39:17 +02:00

Mark strings for extraction using a marker function

If, for some reason, you want to extract strings not passed directly to TranslateService's get() or instant() methods, you can wrap them in a custom marker function to let ngx-translate-extract know you want to extract them.

Install marker function: npm install @biesbjerg/ngx-translate-extract-marker

import { marker } from '@biesbjerg/ngx-translate-extract-marker';

marker('Extract me');

Add the marker argument when running the extract script:

ngx-translate-extract ... --marker marker

You can alias the marker function if needed:

import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker';

_('Extract me');

ngx-translate-extract ... --marker _