1.0.1 • Published 2 years ago

@pedro_s/translation.js v1.0.1

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
2 years ago

translation.js

A translation library to help applications managing, loading and applying translations.

Usage

Simple example of translation

import TranslationJS, { T } from "@pedro_s/translation.js"
TranslationJS.LoadTranslation("pt", { user: { name: "nome" } }, true)
T("user.name")

T will return nome

You can also directly load a JSON.parse() into the LoadTranslation function

Development

To build the library all you have to do is run the following commands

  yarn
  yarn build