npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

babel-plugin-i18n-replace

v1.6.4

Published

Replace i18n translation keys with their values during compilation using babel

Downloads

57

Readme

babel-plugin-i18n-replace

Replace i18n translation keys with their values during compilation using babel.

Supports flat and nested translation keys.

How it works

// application code
__t('greet.user', { name: user.name })

// compile-time generated code
translations.interpolate('Hello, %{name}', { name: user.name })

// interpolation function to replace interpolation arguments at run-time
// you will have to define it and can skip it if no interpolation is required

// interpolates translation text at runtime
export const interpolate = (string, options) => {
  if (!options) return string;

  // support pluralization
  const replacement = string.startsWith('pluralize_##_')
    ? pluralize(JSON.parse(string.split('_##_')[1]), options.count)
    : string;

  return Object.keys(options).reduce(
    (result, key) => result.replace(`%{${key}}`, options[key]),
    replacement
  );
};

// run-time result
'Hello, John'

Check out example in webpack-integration example.

Installation

npm install --save-dev babel-plugin-i18n-replace

Usage

Checkout tests for usage examples.

Options

  • alias (string) - function name to match
  • relpaceWith (string) - function name to replace with
  • returnKeyOnMissing (boolean) - when translation key not found, use the key for value
  • allowStructures (boolean) - allow numbers, hashes, etc instead of only strings as values - those will be converted to JSON strings
  • translations (object) - translations map

Via webpack (Recommended)

Checkout example application. It illustrates full application setup reading translations from json files and providing run-time interpolation support.

Via Node API

require('babel').transform('code', {
  plugins: [
    [
      'i18n-replace', {
        alias: '__t',
        replaceWith: 'interpolate',
        returnKeyOnMissing: false,
        translations: {
          'user.name': 'User is %{name}.',
          'user.surname': 'Surname'
        }
      }
    ]
  ]
});

Via .babelrc

.babelrc

{
  "plugins": [
    [
      "i18n-replace", {
        "alias": "__t",
        "replaceWith": "interpolate",
        "returnKeyOnMissing": false,
        "translations": {
          "user.name": "User is %{name}.",
          "user.surname": "Surname"
        }
      }
    ]
  ]
}

If you want to read translations from file, use webpack configuration.

Pluralization

Work with allowStructures: false only.

Imagine we have the following pluralization keys:

{
  "likes": {
    "one": "%{name} has %{count} like.",
    "other": "%{name} has %{count} likes."
  }
}

We can determine run-time only which of these translations should be used, so the plugin returns pluralize_##_{json_pluralization_options}.

'pluralize_##_{"likes":{"one":"%{name} has %{count} like.","other":"%{name} has %{count} likes."}}'

Your interpolation function should handle this. See example application.

Limitations

  • New translations are only picked up on webpack server start as those are provided in webpack config.

  • Translation keys have to be static strings, as those are replaced with translated text compile-time. Interpolation (e.g. replacing {name} with current user name) should be performed run-time. This is achieved by replacing translation alias with an interpolation function.