You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello Kim,
Thanks for ngx-translate-extract! Great Work!
While examining carefully we found out that these kinds of expressions are not detected and extracted:
It would be nice if conditional (ternary) operators (using only strings in both cases) are supported. So we could write <p translate>{{ switch ? "Move up" : "Move down" }}</p> (currently not detected)
instead of <p>{{ switch ? ("Move up" | translate) : ("Move down" | translate) }}</p> (detected)
In this very special scenario ngx-translate-extract won't find the word "Cuckoo":
demo.component.ts
Hello Kim,
Thanks for ngx-translate-extract! Great Work!
While examining carefully we found out that these kinds of expressions are not detected and extracted:
It would be nice if conditional (ternary) operators (using only strings in both cases) are supported. So we could write
<p translate>{{ switch ? "Move up" : "Move down" }}</p>
(currently not detected)instead of
<p>{{ switch ? ("Move up" | translate) : ("Move down" | translate) }}</p>
(detected)In this very special scenario ngx-translate-extract won't find the word "Cuckoo":
demo.component.ts
chart.service.ts
base.component.ts
The text was updated successfully, but these errors were encountered: