4.0.0 • Published 2 months ago

@nodesecure/i18n v4.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Internationalization (i18n) utilities for NodeSecure tools like CLI.

Supported languages:

  • french
  • english

Requirements

Getting Started

This package is available in the Node Package Repository and can be easily installed with npm or yarn.

$ npm i @nodesecure/i18n
# or
$ yarn add @nodesecure/i18n

Usage example

import * as i18n from "@nodesecure/i18n";

await i18n.setLocalLang("french");

console.log(i18n.getToken("depWalker.dep_tree"));

// Using parameters
console.log(i18n.getToken("depWalker.success_tarball", "14", "15ms"));

You can consult the real use case of the API in the following codes: here and here.

API

See TypeScript definition file.

type languages = "french" | "english";

export function getLocalLang(): Promise<languages>;
export function setLocalLang(newLanguage: languages): Promise<void>;
export function getToken(token: string, ...parameters): Promise<string>;
export function getTokenSync(token: string, ...parameters): string;
export function getLanguages(): Promise<languages[]>;
export function taggedString(str: string, ...keys: any[]): (...keys: any[]) => string;
export function extend(language: string, tokens: Record<string, any>): void;
export function extendFromSystemPath(path: string): Promise<void>;

!NOTE Local lang must be updated otherwise getTokenSync() will throws. Make sure to use await i18n.getLocalLang() before any synchronous usage.

Generate documentation

You can generate a static webpage by using the build:documentation npm script:

$ npm run build:documentation

Contributing

Feel free to add a new language. You need to take inspiration from the two supported languages and replicate the same keys.

Then export it in the index.js file (example if we want to add a chinese translation).

export * as chinese  from "./chinese.js";

Contributors ✨

All Contributors

Thanks goes to these wonderful people (emoji key):

License

MIT

3.6.1

2 months ago

4.0.0

2 months ago

3.6.0

3 months ago

3.5.0

5 months ago

3.4.0

6 months ago

3.3.0

8 months ago

3.2.2

11 months ago

3.2.1

11 months ago

3.2.0

1 year ago

3.1.0

1 year ago

3.0.0

1 year ago

2.2.0

1 year ago

2.1.1

1 year ago

2.1.0

1 year ago

1.5.0

2 years ago

1.4.0

2 years ago

2.0.0

2 years ago

1.3.0

2 years ago

1.2.1

2 years ago

1.2.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago