4.4.2 • Published 9 months ago

@umatch/language v4.4.2

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

Language

Simple internationalization framework

Check out tests/language.test.ts for an in-depth example of how to use this library.

The 'deepReplace' function

Replaces all occurrences of {{ value }} in all strings inside target object (which may be nested) with the corresponding value in the replacements object (dictionary).

Throws an error if an entry is not in the dictionary. This can be avoided by whitelisting specific keys, or all of them, via the allowedLeftovers parameter.

Automatically chooses between the "zero", "one" or "many" options for an entry If the entry only has keys with those names and the dictionary has a count property that is a number. Example:

const obj = {
  one: 'You have a new match, {{ name }}!',
  many: 'You have {{ count }} new matches, {{ name }}!',
};
// returns 'You have a new match, Bob!'
deepReplace(obj, { name: 'Bob', count: 1 });
// returns 'You have 2 new matches, Bob!'
deepReplace(obj, { name: 'Bob', count: 2 });

If the entry equivalent to the count missing, throws an error. For example:

// throws "Missing translation for count 'zero'"
deepReplace(obj, { name: 'Bob', count: 0 });

Finally, if not all keys in the target are "zero", "one" or "many", behaves normally.

const obj2 = {
  one: 'You have a new match, {{ name }}!',
  many: 'You have {{ count }} new matches, {{ name }}!',
  too_many: 'WOW! You have over 9000 new matches, {{ name }}!',
};
// returns {
//     one: "You have a new match, Bob!",
//     many: "You have 0 new matches, Bob!",
//     too_many: "WOW! You have over 9000 new matches, Bob!"
// }
deepReplace(obj2, { name: 'Bob', count: 0 });
4.4.2

9 months ago

4.4.1

11 months ago

4.4.0

12 months ago

4.3.6

1 year ago

4.3.7

1 year ago

4.3.5

2 years ago

4.3.4

2 years ago

4.3.3

2 years ago

4.3.2

2 years ago

4.3.1

2 years ago

4.3.0

2 years ago

4.2.0

2 years ago

4.1.1

2 years ago

4.1.0

2 years ago

3.2.0

2 years ago

3.1.0

2 years ago

4.0.1

2 years ago

4.0.0

2 years ago

3.0.0

2 years ago

2.1.2

2 years ago

2.1.1

2 years ago

2.1.4

2 years ago

2.1.3

2 years ago

2.1.0

2 years ago

2.0.0

2 years ago

1.2.2

2 years ago

1.2.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.1.3

3 years ago

1.2.1

3 years ago

1.1.2

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago