Framework Adapters
Angular 21+
The Angular adapter targets the Angular 21+ standalone app shape covered by the published adoption fixture. It exposes PicoIntlService and TranslatePipe for templates.
ts
import { providePicoIntl } from '@pico-intl-dev/angular';
export const appConfig = {
providers: [providePicoIntl(i18n)],
}; Key points
- Angular support targets the Angular 21+ standalone app shape.
- providePicoIntl() registers the service and pipes.
- Use TranslatePipe or PicoIntlService, including locale, dir, and isRTL signals, in standalone components.
Next step
Copy the example into a small fixture, run the validation commands, and keep framework-specific routing, hydration, or SSR behavior covered by your app tests.