Skip to content

zestia/ember-rich-intl

Repository files navigation

@zestia/ember-rich-intl

Ember Observer

This Ember addon works in conjunction with ember-intl. It swaps ICU message syntax for components, allowing for dynamic content within translated strings.

Important note: We recommend limiting usage of components in translation strings. The majority of the time, its possible to reword the string, or reconsider the design instead.

Installation

ember install @zestia/ember-rich-intl

Add the following to ~/.npmrc to pull @zestia scoped packages from Github instead of NPM.

@zestia:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=<YOUR_GH_TOKEN>

Demo

https://zestia.github.io/ember-rich-intl

Example

<Intl @string='View <More>more</More>' as |intl|>
  <intl.More as |string|>
    <button type='button {{on "click" this.viewMore}}'>
      {{string}}
    </button>
  </intl.More>
</Intl>

Intl

Arguments

@string

Required. The text within which to find parts.

API

When a token is found, and a component is rendered in its place, that component will will yield:

string

Optional. The matched part

About

🌍 Replace ICU Message Syntax with Ember components, for dynamic content within translation strings

Resources

License

Stars

Watchers

Forks