1.1.3 • Published 3 years ago

i18n-pseudo v1.1.3

Weekly downloads
5
License
MIT
Repository
-
Last release
3 years ago

i18n-pseudo

Pseudotranslation is an incredibly useful tool for localizing your apps. This module makes it easy to apply pseudo to any given string.

If the provided string is an ICU Message formatted string, it will parse and generate the ICU Message with proper pseudo.

Installation

$ npm i i18n-pseudo

or for you yarn fans

$ yarn add i18n-pseudo

or using npx:

$ npx i18n-pseudo "Hello, World"
你好Ĥệḻḻỗ, 𝕎ỗřḻḋ àḃċḋệḟĝȟíǰ世界

CLI

Example

$ pseudo Awesome Text Here
你好Ã𝚠ệṧỗṃệ Ťệẍẗ Ĥệřệ àḃċḋệḟĝȟíǰǩḻṃņ世界

And if you don't want to expand the tet

$ pseudo Awesome Text Here -ne
世界Ã𝚠ệṧỗṃệ Ťệẍẗ Ĥệřệ你好

Options

ArgumentDefaultDescription
--noExpand, -nefalseWhen provided, the script will not expand the incoming text

Code

Example

Basic usage

import { PseudoFormat } from 'i18n-pseudo';
const genPseudo = new PseudoFormat();
console.log(genPseudo.format("Awesome Text Here"));
// 你好Ã𝚠ệṧỗṃệ Ťệẍẗ Ĥệřệ àḃċḋệḟĝȟíǰǩḻṃņ世界

It can apply pseudo to ICU Messages as well:

import { PseudoFormat, PseudoFormatOptions } from 'i18n-pseudo';

const text = `You have {count, plural,
    zero { nothing }
    one { # item }
    few { # items }
    many { # items }
} in your cart`;

const opts:Partial<PseudoFormatOptions> = { doExpand: false };
const genPseudo = new PseudoFormat(opts);
console.log(genPseudo.format(text));

/*
世界Ỹỗű ȟàṿệ { count, plural,
  zero { ņỗẗȟíņĝ }
  one { # íẗệṃ }
  few { # íẗệṃṧ }
  many { # íẗệṃṧ }
} íņ ẙỗűř ċàřẗȟṔṃỗŚqņṼřṿǰẗÃÃȐṿṃÃȐḋŚǰqḃ你好
*/

Options

PseudoFormatOptions

PropertyDefaultDescription
appendChars"你好"When provided, these characters will be appended to the output. This is helpful when you have certain characters that always seem to give your system trouble
doExpandtrueWhen false, will not expand the input. Expanding characters is useful to ensure your codebase accounts for move verbose languages
expandCharsASCII upper and lower charsA string of characters that will be randomly selected to create an expansion of the input string.
prependChars"世界"When provided, these characters will be prepended to the output. This is helpful when you have certain characters that always seem to give your system trouble
pseudoCharsReferenceA hash map of the pseudo characters that will replace the ASCII characters. For default value, see the pseudoCharacterMap value in the char-map.ts file
1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.1.0-beta1

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

1.0.0-alpha1

3 years ago