The pipe 'translate' could not be found error is showing In Ionic 4
You need to import TranslateModule
in every module in which you want to use translate
pipe.
import { TranslateModule } from '@ngx-translate/core';
...
imports: [
TranslateModule // do not call forRoot from any module other than AppModule
]
...