
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@tolgee/ngx
Advanced tools
Angular integration library of Tolgee. With this package. It's super simple to add i18n to your Angular app! For more information about using Tolgee with Angular, visit the docs 📖.
npm install @tolgee/ngx
Then register Tolgee in your application config using provideTolgee.
import { ApplicationConfig } from '@angular/core';
import { provideTolgee, Tolgee, DevTools, TolgeeOptions } from '@tolgee/ngx';
const tolgeeConfig: TolgeeOptions = {
availableLanguages: ['en', 'cs'],
defaultLanguage: 'en',
fallbackLanguage: 'en',
// for development
apiUrl: environment.tolgeeApiUrl,
apiKey: environment.tolgeeApiKey,
// for production
staticData: {
en: () => import('../i18n/en.json').then((m) => m.default),
cs: () => import('../i18n/cs.json').then((m) => m.default),
},
};
export const appConfig: ApplicationConfig = {
providers: [
provideTolgee(() => Tolgee().use(DevTools()).init(tolgeeConfig)),
],
};
In standalone components, import TranslatePipe and TDirective where you use them.
import { Component } from '@angular/core';
import { TDirective, TranslatePipe } from '@tolgee/ngx';
@Component({
template: `
<h1>{{ 'hello_world' | translate }}</h1>
<h2 t key="providing_default_values"></h2>
`,
imports: [TranslatePipe, TDirective],
})
export class AppComponent {}
Imperative translation and language switching are available via TranslateService.
import { Component, inject } from '@angular/core';
import { TranslateService } from '@tolgee/ngx';
@Component({
template: `{{ currentLanguage }}`,
})
export class LanguageSwitcherComponent {
private readonly translateService = inject(TranslateService);
currentLanguage = this.translateService.language;
async switchToCzech() {
await this.translateService.changeLanguage('cs');
this.currentLanguage = this.translateService.language;
}
}
For lazy routes with namespaced translations, use namespaceResolver to load the namespace before the route renders.
import { Routes } from '@angular/router';
import { namespaceResolver } from '@tolgee/ngx';
export const routes: Routes = [
{
path: 'lazy',
loadComponent: () => import('./lazy/lazy.component'),
data: { tolgeeNamespace: 'namespaced' },
resolve: {
_namespace: namespaceResolver,
},
},
];
Translating using pipe:
<h1>{{'hello_world' | translate}}</h1>
Or using t attribute
<h1 t key="providing_default_values"></h1>
Tolgee saves a lot of time you would spend on localization tasks otherwise. It enables you to provide perfectly translated software.
Read more on the Tolgee website
We welcome your PRs.
To develop the package locally:
pnpm install
pnpm develop:ngx
This runs the development suite of this monorepo for the ngx integration. The changes in each dependency package are
automatically built and propagated to the test application, which you can open and play within the browser.
To run Jest tests of this package, execute
npm run test
In the /packages/ngx directory.
To run the e2e tests, simply execute
pnpm run e2e run ngx
To open and play with e2e tests, run:
pnpm run e2e open ngx
FAQs
Angular integration of Tolgee localization tool
The npm package @tolgee/ngx receives a total of 2,381 weekly downloads. As such, @tolgee/ngx popularity was classified as popular.
We found that @tolgee/ngx demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.