Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@fullerstack/ngx-i18n
Advanced tools
A simple translation library for Angular applications
Dealing with translation can be very hard especially if you don't want to publish different version of your application for each language you support.
In that case ngx-translate
is a great library to use. This packages encapsulates the ngx-translate
library and make it a bit easier to deploy.
@fullerstack/ngx-i18n attempts to streamline the translation of your application, while promoting DRY DRY.
npm i @fullerstack/ngx-i18n |OR| yarn add @fullerstack/ngx-i18n
// In your environment{prod,staging}.ts
import { ApplicationCfg } from '@fullerstack/ngx-config';
export const environment: ApplicationCfg = {
production: false,
i18n: {
// available languages
availableLanguages: {
en: {
name: 'English',
locale: '@angular/common/locales/en',
localeExtra: '@angular/common/locales/extra/en',
},
fr: {
name: 'Français',
locale: '@angular/common/locales/fr',
localeExtra: '@angular/common/locales/extra/fr',
},
de: {
name: 'Deutsch',
locale: '@angular/common/locales/de',
localeExtra: '@angular/common/locales/extra/de',
},
},
// enabled languages
enabledLanguages: [
// order is important
'en',
'fr',
],
// cache busting hash
// bump when you change any file in /assets/i18n/*.json
cacheBustingHash: 'v0.0.1',
},
};
// In your app.component.ts
import { ConfigModule } from '@fullerstack/ngx-config';
import { environment } from '../environments/environment';
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
ConfigModule.forRoot(environment), // make the environment injectable
I18nModule.forRoot(), // use forChild() for lazy loaded modules
],
bootstrap: [AppComponent],
})
export class AppModule {}
// In your app.component.ts
import { Component } from '@angular/core';
import { I18nService } from '@fullerstack/ngx-i18n';
@Component({
selector: 'fullerstack-root',
template: `<h1>{{ 'COMMON.WELCOME' | translate }} to {{ title }}!</h1>`,
})
export class AppComponent {
title = 'Fullerstack';
constructor(i18n: I18nService) {}
}
Supported language translations in the /assets/ngx-i18n
directory of your application.
/assets/ngx-i18n/en.json
{
"COMMON.WELCOME": "Welcome",
"COMMON.ABOUT": "About"
}
/assets/ngx-i18n/fr.json
{
"COMMON.WELCOME": "Bienvenue",
"COMMON.ABOUT": "Sur"
}
// In your app.component.ts
import { Component } from '@angular/core';
import { I18nService } from '@fullerstack/ngx-i18n';
@Component({
selector: 'fullerstack-root',
template: `<h1>{{ 'COMMON.WELCOME' | translate }} to {{ title }}!</h1>`,
})
export class AppComponent {
direction = 'ltr';
title = 'Fullerstack';
constructor(public i18n: I18nService) {
// translate in ts files
i18n.xlate.get('COMMON.WELCOME').subscribe((res: string) => {
console.log.info(res);
});
// check if language is Right2Left `rtl`
if (i18n.isLanguageRTL('he')) {
this.direction = 'rtl';
}
// change the language
i18n.setCurrentLanguage('fr');
// available properties
// direction
// currentLanguage
// defaultLanguage
// enabledLanguages
// available methods
// isCurrentLanguage(iso)
// getLanguageName(iso)
// getLanguageDirection(iso)
// isLanguageEnabled(iso)
}
}
Released under a (MIT) license.
X.Y.Z Version
`MAJOR` version -- making incompatible API changes
`MINOR` version -- adding functionality in a backwards-compatible manner
`PATCH` version -- making backwards-compatible bug fixes
FAQs
A Translation Library for Angular
We found that @fullerstack/ngx-i18n demonstrated a not healthy version release cadence and project activity because the last version was released 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.