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

@jesuskris/i18n-json-multi-client

v0.4.6

Published

Simple framework-neutral json-based translations with no dependencies and support for multi-client. Forked and extended upon [@codeborne/i18n-json](https://github.com/codeborne/i18n-json/tree/main)

Downloads

43

Readme

@jesuskris/i18n-json-multi-client

Simple framework-neutral json-based translations with no dependencies and support for multi-client.

Forked and extended upon @codeborne/i18n-json


npm install @jesuskris/i18n-json-multi-client

See sample on how to structure your translation files.

This format is also supported by Translate Tool GUI.

Usage

Non-specific

In your project create a i18n.ts which will you use for imports:

import {init} from '@jesuskris/i18n-json-multi-client'
export * from '@jesuskris/i18n-json-multi-client'

export let langs = ["en", "fi"]
export async function initTranslations() {

  await init({langs})
}

Then call await initTranslations() in your index.ts to load the selected language file.

To translate a key, call _('your.translate.key') Or with replacements: _('users.hello', {name: 'World'})

Pluralized strings are also supported: _('trees', {count: 1}), which for English could look like: "trees": "You have {count|one:# tree|other:# trees}" and Russian would be: "trees": "У вас есть {count|one:одно дерево|few:# дерева|many:# деревьев}". Plurality keys are provided by browser's Intl.PluralRules for the language.

See tests for more examples.

Client-specific

To write client-specific translations, you need to pass in an identifier:

import {init} from '@jesuskris/i18n-json-multi-client'
export * from '@jesuskris/i18n-json-multi-client'

export let langs = ["en", "fi"]
export let clientIdentifier = "client1"
export async function initTranslations() {
  await init({langs, clientIdentifier})
}

Then in translation format define client specific translations:

{
  "homepage": {
    "header": {
      "client1": "Welcome to our Client 1 Portal",
      "client2": "Welcome to our Client 2 Portal",
      "default": "Welcome to our Portal"
    }
  },
  "contacts": {
    "email": "Email",
    "phone": "Phone",
    "address": "Address"
  }
}

In the above example we have defined 2 client specific translations for key homepage.header

Now simply call the translation in your code:

<header>{_("homepage.header")}</header> <!--Welcome to our Client 1 Portal-->

The default key in client-specific translations acts as a fallback if clientIdentifier is not matched.

Keep in mind that it works without the default fallback. When a key is not found, it returns the full key path.

See tests for more examples.

Frameworks

The library is very small, has zero dependencies and is framework-agnostic. You can use with Svelte, React, Vue or anything else.

If using a SPA framework and want to switch languages on-the-fly (without page reload), you need to add a small wrapper for the _ function.

E.g. in Svelte you would use a store to set/retrieve the function and then use it as $_().

Post compilation step

You can merge translation files by adding missing keys/values from default lang to all others at build time, not needing to do fallback for untranslated keys at runtime.

i18n-compile <srcDir> <dstDir>

Then disable dynamic fallback to default in prod mode, e.g. await init({langs, fallbackToDefault: import.meta.env.DEV}).