Lisan

Lisan

  • Docs
  • API
  • Try it out
  • Examples
  • GitHub

›Components

About

  • Lisan
  • How it works?
  • Performance
  • Lisan Compiler
  • Lisan CLI
  • Lisan Locales
  • Plugins
  • Adapters

Components

  • Translations
  • Dictionary
  • Conditional Groups
  • Formatters

Plugins

  • Localization
  • Loader

Guides & Tips

  • Pluralization
  • JSX Interpolation
  • Multiple Instances
  • Write Plugins

API

  • Lisan
  • Lisan Compiler
  • Lisan CLI
Edit

Formatters

Any formatter function that was registered via lisan.addFormatters() method can be used in Lisan Literals.

Formatters can be very useful when you'd like to transform values into the desired format.

If you are using lisan-plugin-l10n, all localization formatters will be available in Lisan Literal.

Example 1 - Simple Number Formatting

const { lisan } = require('lisan');

lisan.addFormatters({
  toFixed: num => num.toFixed(2),
  roundNumber: num => Math.round(num).toString(),
});

lisan.add({
  entries: {
    'rounded.number': ({ value }, { roundNumber, toFixed }) =>
      `${${toFixed(value)}} is rounded to ${roundNumber(value)}.`,
  },
});

const text = lisan.t('rounded.number', {
  value: 5.3123,
});

console.log(text);
// Outputs: "5.31 is rounded to 5."

Example 2 - Using Localization Plugin

const { lisan } = require('lisan');
const { Localization } = require('lisan-plugin-l10n');
const { enUS } = require('lisan-locales');

lisan.use(Localization);
lisan.setLocale(enUs);
// `dateTime` formatter is added by setLocale method.

lisan.add({
  entries: {
    'today.message': ({ date }, { dateTime }) => `Today is ${dateTime(date)}.`,
  },
});

const text = lisan.t('today.message', {
  date: new Date('2020-01-01 13:03:22'),
});

console.log(text);
// Outputs: "Today is 01 January 2020, 01:03 PM."
Last updated on 3/31/2020
← Conditional GroupsLocalization →
  • Example 1 - Simple Number Formatting
  • Example 2 - Using Localization Plugin
Lisan
Docs
AboutComponentsPluginsGuide & TipsAPI Reference
Ecosystem
LisanLisan LocalesLisan CompilerLisan CLILocalization PluginLoader PluginLisan Types
More
IssuesGitHubSupport Us