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

@cungminh2710/pseudolocalize

v2.1.0

Published

Several implementation of pseudolocalizing ICU strings

Downloads

1,402

Readme

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}

| Locale | Message | | ------- | --------------------------------- | | 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