Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hueitan/i18n-generator

[INACTIVE] i18n json files generator for node, web browser and command line
https://github.com/hueitan/i18n-generator

converter i18n internationalization-data javascript json node

Last synced: 2 months ago
JSON representation

[INACTIVE] i18n json files generator for node, web browser and command line

Awesome Lists containing this project

README

        

# i18n-generator
[![Build Status](https://travis-ci.org/hueitan/i18n-generator.svg?branch=master)](https://travis-ci.org/hueitan/i18n-generator)
[![Coverage Status](https://coveralls.io/repos/github/hueitan/i18n-generator/badge.svg?branch=master)](https://coveralls.io/github/hueitan/i18n-generator?branch=master)
[![Dependency Status](https://david-dm.org/hueitan/i18n-generator.svg)](https://david-dm.org/hueitan/i18n-generator)
[![devDependency Status](https://david-dm.org/hueitan/i18n-generator/dev-status.svg)](https://david-dm.org/hueitan/i18n-generator#info=devDependencies)

i18n json files generator for **node**, **web browser** and **command line**.

[i18n Online Demo Tools](http://hueitan.github.io/i18n-generator) / [Edit Demo CSV File](https://docs.google.com/spreadsheets/d/14BsnsXmm4B4mk_WxUb80VfbfKch0xGFZZ__tpH67_CA/edit?usp=sharing)

![screen shot 2017-09-25 at 11 34 33 pm](https://user-images.githubusercontent.com/2560096/30832081-1f69446c-a24a-11e7-8f9f-ada4232b477d.png)

## Getting Started

**node.js**

Install the module with: `npm install i18n-generator`

```es6
const i18nGenerator = require('i18n-generator');

const inputFile = 'input.txt';
const outputPath = 'output';

i18nGenerator(inputFile, outputPath);

// js-beautify your json
i18nGenerator(inputFile, outputPath, true);
// or given js-beautify options
i18nGenerator(inputFile, outputPath, { indent_size: 2 });
// settings split variable (default as |)
i18nGenerator(inputFile,outputPath, options, 'csv');

// options => https://github.com/beautify-web/js-beautify#options
// splitter support
// | => pipe (default)
// , => csv
// \t => tsv

// get output data api
// input can be file (.txt) or string (data)
i18nGenerator.get(input, 'csv', (err, data) => {
console.log(data);
// => output i18n data
});

// or you can
i18nGenerator.get(input, (err, data) => {
console.log(data);
});
```

**browser**

```html

```

```js
const { i18n } = window;
i18n(inputData, 'csv', (err, data) => {
console.log(data);
// => output i18n data
});

// or easily
i18n(inputData, (err, data) => {
console.log(data);
// => split default pipe |
});
```

**cli**
```bash
$ i18n input.txt output

# generate from csv or tsv
$ i18n input.csv output

# watch file
$ i18n input.txt output --watch
```

## Workflow

**input file**
```
i18n=>, en, zh_TW, de, my
you, you, 你, Du, kamu
I, I, 我, ich, Saya
love, love, 喜歡, liebe, cinta
eat, eat, 吃, essen, makan
ilovegithub, i love github, 我愛 Github, ich liebe Github, Saya cinta pada Github
```

**output (de.json)**
```json
{"you":"Du","I":"ich","love":"liebe","eat":"essen","ilovegithub":"ich liebe Github"}
```
**output (en.json)**
```json
{"you":"you","I":"I","love":"love","eat":"eat","ilovegithub":"i love github"}
```
**output (my.json)**
```json
{"you":"kamu","I":"Saya","love":"cinta","eat":"makan","ilovegithub":"Saya cinta pada Github"}
```
**output (zh_TW.json)**
```json
{"you":"你","I":"我","love":"喜歡","eat":"吃","ilovegithub":"我愛 Github"}
```

**Try Advance**

When the sentence includes splitter

```
i18n=>, en, zh_TW, de, my
ilovegithub, "i love github but u", "我愛 github,但我也愛 git", was du gesagt, "saya pun"
```

**Try Nest**

i18n-generator covers the nesting, use `=>` to open, `<=` to close
```
i18n=>, en, zh_TW, de, my
ilovegithub, i love github, 我愛 Github, ich liebe Github, Saya cinta pada Github
=> global
sleep, sleep, 睡覺, schlafen, tidur
morning, morning, 早安, Morgen, pagi
=> people
Ahmad, Ahmad, Ahmad, Ahmad, Ahmad
<=
Back, back, 回來, terug, balik
```

*It's work! Cool right ? You can try it on [online demo tools](http://hueitan.github.io/i18n-generator)*

## License
Copyright (c) 2014-Present [Huei Tan](https://github.com/hueitan). Licensed under the MIT license.