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
Is your feature request related to a problem? Please describe.
We use your ngx-translate-testing package for Storybook and unit-tests to mock our translations.
The TranslateTestingModule does not support arrays for translations. The following error is given during build:
Type 'string[]' is not assignable to type 'LanguageTranslation'.
Type 'string[]' is not assignable to type '{ [translationKey: string]: LanguageTranslation; }'.
Index signature for type 'string' is missing in type 'string[]'.
Is your feature request related to a problem? Please describe.
We use your ngx-translate-testing package for Storybook and unit-tests to mock our translations.
The TranslateTestingModule does not support arrays for translations. The following error is given during build:
This error is given when we try:
Arrays are supported by the TranslateModule.
In our template we do this:
Describe the solution you'd like
Allow to specify arrays just like our translation which comes from a json file.
The text was updated successfully, but these errors were encountered: