We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6259081 + 3d55c27 commit 42ecef8Copy full SHA for 42ecef8
README.md
@@ -495,8 +495,10 @@ You can use `useDefaultLang` to decide whether default language string should be
495
Create a Missing Translation Handler
496
497
```ts
498
+import {Injectable} from "@angular/core";
499
import {MissingTranslationHandler, MissingTranslationHandlerParams} from '@ngx-translate/core';
500
501
+@Injectable()
502
export class MyMissingTranslationHandler implements MissingTranslationHandler {
503
handle(params: MissingTranslationHandlerParams) {
504
return 'some value';
0 commit comments