2.0.1 • Published 6 months ago

@cungminh2710/pseudolocalize v2.0.1

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

Pseudolocalize

NPM Node.js CI

Pseudolocalization is the process of using mock translations to aid in the testing of UI adaption and responsiveness to localized text.

This package contains several implementations of pseudolocalizing ICU strings. Some implementations are ported from @formatjs/cli

There are three techniques to pseudolocalize text:

  • Accents (for example, “Lōrêm ípsüm”): Applies accents and diacritics to some characters. Not only does this help engineers clearly identify when text is pseudolocalized, it can also help identify issues with non-latin characters, character height and vertical space, and unsupported characters.

  • Encapsulation (for example, “Lorem ipsum”): Clearly identifies the start and end of text. This helps detect cases where text is being concatenated, truncated, or where text has been hard-coded.

  • Expansion (for example, “Loongeeer iiiipsuuum”): Simulates the expansion of text as it might appear in a translation. Shorter strings can expand by as much as 300%, with longer strings generally sitting somewhere between 150% and 250%. For more information, see the IBM/W3 guidelines.

Read more on my Canva Engineering blog about how to localize at scale

Available pseudo-locales

  • en-XA is ported from @formatjs/cli to test with accents technique.
  • en-XB is ported from @formatjs/cli to test with encapsulation technique.
  • en-XC is implemented using all three techniques: accents, encapsulation and expansion.
  • en-XD is similar to en-XC and friendlier to dyslexic engineers.

Given the English message my name is {name}

LocaleMessage
en-XAṁẏ ńâṁè íś {name}
en-XB[!! ṁẏ ńâṁṁṁè íííś !!]Minh
en-XCမြ······ṁẏ ńâṁè íś Minh······မြ
en-XDမြ······mẏ nâmè ís Minh······မြ
  • As of 1 June 2022, on NPM, code component in this table above will fail for this tall burmese character မြ

image

How to use

  • Simple:
import { generateENXA, prettify } from '@cungminh2710/pseudolocalize';

const input = 'my name is {name}';

console.log(prettify(generateENXA(input))); // ṁẏ ńâṁè íś {name}
  • With react-intl:

Check out the examples

1.7.0

7 months ago

2.0.1

6 months ago

2.0.0

6 months ago

1.6.1

1 year ago

1.6.0

1 year ago

1.5.4

1 year ago

1.5.3

1 year ago

1.5.2

1 year ago

1.5.1

1 year ago

1.5.0

2 years ago

1.4.3

2 years ago

1.4.2

2 years ago

1.3.5

2 years ago

1.3.4

2 years ago

1.3.3

2 years ago

1.4.1

2 years ago

1.4.0

2 years ago

1.3.2

2 years ago

1.2.0

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.2.3

2 years ago

1.3.1

2 years ago

1.2.2

2 years ago

1.3.0

2 years ago

1.2.1

2 years ago

1.1.2

2 years ago

1.0.0

2 years ago