Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/p7g/i10010n
simple i18n node module
https://github.com/p7g/i10010n
i18n internationalization language translation
Last synced: about 1 month ago
JSON representation
simple i18n node module
- Host: GitHub
- URL: https://github.com/p7g/i10010n
- Owner: p7g
- Created: 2018-06-24T23:46:44.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-07T11:42:50.000Z (over 3 years ago)
- Last Synced: 2024-10-05T19:04:08.448Z (3 months ago)
- Topics: i18n, internationalization, language, translation
- Language: JavaScript
- Homepage: https://ging0044.github.io/i10010n/
- Size: 428 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# `i10010n`
## coming "soon"
- Pluralization (this might take some thinking)
- Maybe a generic variation system to allow for more flexibility
- Tool to generate JSON configurations## changelog
- 0.4.1
- improved logging function; user logging function is now passed an error type, as seen in Error.js, as well as an object of relevant data and a message. JSDoc updates are not in yet, I didn't feel like it
- 0.3.1
- changed default logging function from `console.error` to `() => {}`
- 0.3.0
- broke the init function; now it takes an object with various configuration parameters. See the [documentation](https://ging0044.github.io/i10010n/global.html#init) for more details## what does it do?
`i10010n` allows you to easily translate your application, and dynamically use translated text when sending strings, making strings, doing other stuff with strings...## config
The config file is fairly basic. It is also a javascript file, not JSON. Obviously.
> Note: You can do it in JSON, but it'll take more work. See the DB used by [i18n-yummy](https://github.com/WebReflection/i18n-yummy) for more details.First, you're going to want to import some functions from `i10010n`:
```js
import { define, ID } from "i10010n";
```Then, you can configure the various template strings to support, as well as the different locales it's available in:
```js
import { define, ID } from "i10010n";export default {
[ID `i ${0} template strings`]: {
"yoda": define `template strings, i ${0}`
}
}
```
> Note: you can put anything you want in the ID template string values, but putting the indexes makes things a little clearerYou don't have to define the base language, since your template strings are already in that language. Probably.
## usage
Elsewhere, you can do this:
```js
import { init } from "i10010n";
import i10010nConf from "./theplacewhereimadetheconf";const i10010n = init({DB: i18nConf});
console.log(
i10010n("yoda") `i ${"love"} template strings`
);
// "template strings, i love"
```## if you're not english
You don't have to use English for the base language.To specify a different base locale than "en", you can just say so when you initialize i18n, like so:
```js
const i10010n = init({
DB: i18nConf,
defaultLocale: "yoda"
});
```Setting things up this way would mean that you write your base template strings in yoda, and anything else will be a translation of that.
## advanced(ish) usage
Let's say you have an array of things you want to put in a translated template string. You can do this:```js
const things3 = ["i18n", "internationalization", "yoda"];console.log(
i18n("yoda") `i like 3 things:\n${
things3.map(thing => i18n("yoda") `i like ${thing}\n`;
}`
);
/*
"3 things, i like:
i18n, i like
internationalization, i like
yoda, i like"
*/
```It's like magic! Or `Array.prototype.join`!
## credits
This project is quite inspired by [i18n-yummy](https://github.com/WebReflection/i18n-yummy). I did rewrite everything from scratch (it's more than 9 lines, as you can probably tell), and changed some of the concepts, but the epiphany came from that.One difference is that there is no static locale setting. You must provide the locale with each function call. This means that you do not need to have multiple instances of `i10010n` in an application that may respond in different languages from the same instance.