
Product
Rubygems Ecosystem Support Now Generally Available
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
ngx-translate-messageformat-compiler
Advanced tools
Compiler for ngx-translate that uses messageformat.js to compile translations using ICU syntax for handling pluralization and gender
Compiler for ngx-translate that uses messageformat.js to compile translations using ICU syntax for handling pluralization and gender
This assumes that you've already installed ngx-translate.
Using npm
:
npm install ngx-translate-messageformat-compiler messageformat --save
... or if you use yarn
:
yarn add ngx-translate-messageformat-compiler messageformat
Changed setup for v2: You no longer need to provide a MessageFormat instance.
The compiler will do this. You still need to have messageformat
installed, of course.
See CHANGELOG for more details.
You need to configure TranslateModule
so it uses TranslateMessageFormatCompiler
as the compiler:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { TranslateCompiler, TranslateModule } from '@ngx-translate/core';
import { TranslateMessageFormatCompiler } from 'ngx-translate-messageformat-compiler';
import { AppComponent } from "./app";
@NgModule({
imports: [
BrowserModule,
TranslateModule.forRoot({
compiler: {
provide: TranslateCompiler,
useClass: TranslateMessageFormatCompiler
}
})
],
bootstrap: [AppComponent]
})
export class AppModule {}
This library implements neither the syntax used for pluralization (et al) nor the "mechanics" for making translations work in your Angular app. The former is MessageFormat, the latter ngx-translate. Having said that, here's an example to get you started:
{
"things": "There {count, plural, =0{is} one{is} other{are}} {count, plural, =0{} one{a} other{several}} {count, plural, =0{nothing} one{thing} other{things}",
"people": "{gender, select, male{He is} female{She is} other{They are}} {how}"
}
<ul>
<li translate [translateParams]="{ count: 0 }">things</li>
<li translate [translateParams]="{ count: 1 }">things</li>
<li>{{'things' | translate:"{ count: 2 }"}}</li>
</ul>
<ul>
<li translate [translateParams]="{ gender: 'female', how: 'influential' }">people</li>
<li translate [translateParams]="{ gender: 'male', how: 'funny' }">people</li>
<li>{{'people' | translate:"{ how: 'affectionate' }"}}</li>
</ul>
- There is nothing
- There is a thing
- There are several things
- She is influential
- He is funny
- They are affectionate
Please note that while you can still use nesting in your translations ({ login: { welcome: 'Welcome!' }}
) with respective keys (login.welcome
), you lose the ability to access object properties in your placeholders: 'Hello {name.first} {name.last}'
won't work. Also note that this format uses single braces instead of double braces for placeholders.
Get help on the message syntax for your translation strings: https://messageformat.github.io/guide/
Get help on using ngx-translate (loading translations, using HTML tags in your strings, translate pipe vs. directive, etc.): https://github.com/ngx-translate/core
If you're here, you probably know what you're looking for. If you do wonder what this is, here's a brief explanation.
ICU Message Format is a standardized syntax for dealing with the translation of user-visible strings into various languages that may have different requirements for the correct declension of words (e.g. according to number, gender, case) - or to simplify: pluralization.
Messageformat.js is a compliant implementation for Javascript.
Back in AngularJS, angular-translate, formerly by @PascalPrecht, provided support for ICU syntax using messageformat.js. This compiler "plugin" adds the same rich pluralization support to the excellent ngx-translate for Angular (2+). Thanks to @ocombe for his work and his supporting pluggable compilers in the core. Thanks also to @PascalPrecht for suggesting a contribution when I talked to him about this at Jazoon.
[2.0.1] - 2017-11-05
FAQs
> Compiler for ngx-translate that uses messageformat.js to compile translations using ICU syntax for handling pluralization and gender
The npm package ngx-translate-messageformat-compiler receives a total of 36,819 weekly downloads. As such, ngx-translate-messageformat-compiler popularity was classified as popular.
We found that ngx-translate-messageformat-compiler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Product
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
Research
The Socket Research Team investigates a malicious npm package that appears to be an Advcash integration but triggers a reverse shell during payment success, targeting servers handling transactions.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.