Hack the Library
The Loader
import { TranslocoLoader } from '@jsverse/transloco';
export class CustomLoader implements TranslocoLoader {
getTranslation(lang: string) {
if (langInLocalStorage) {
return of(langFromStorage);
}
return ...; // Handle translation loading for other cases
}
}The Interceptor
Missing Handler
Fallback Strategy
Was this helpful?

