New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

gulp-i18n-excel2json

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-i18n-excel2json

Excel (XLSX/XLS) to json

latest
Source
npmnpm
Version
2.0.0
Version published
Maintainers
1
Created
Source

gulp-i18n-excel2json

Export Excel files (XLSX/XLS) to json files.

  • Manage multiple or single json output file.
  • Manage dynamic files path.
  • Manage nested i18n keys.

examples

Format of excel file :

Keyfrde
a.b1value-fr-a.b1value-de-a.b1
a.b2value-fr-a.b2value-de-a.b2
bvalue-fr-bvalue-de-b
cvalue-fr-cvalue-de-c
d.z.y.a1value-fr-d.z.y.a1value-de-d.z.y.a1
d.z.y.a2value-fr-d.z.y.a2value-de-d.z.y.a2

output in single json by lang

fr.json :

{
    "a": {
        "b1": "value-fr-a.b1",
        "b2": "value-fr-a.b2"
    },
    "b": "value-fr-b",
    "c": "value-fr-c",
    "d": {
        "z": {
            "y": {
                "a1": "value-fr-d.z.y.a1",
                "a2": "value-fr-d.z.y.a2"
            }
        }
    }
}

de.json :

{
    "a": {
        "b1": "value-de-a.b1",
        "b2": "value-de-a.b2"
    },
    "b": "value-de-b",
    "c": "value-de-c",
    "d": {
        "z": {
            "y": {
                "a1": "value-de-d.z.y.a1",
                "a2": "value-de-d.z.y.a2"
            }
        }
    }
}

output in multiple json by lang and namespaces :

fr-a.json :

{
    "a": {
        "b1": "value-fr-a.b1",
        "b2": "value-fr-a.b2"
    }
}

...

Usage

First, install gulp-i18n-excel2json as a development dependency:

> npm install --save-dev gulp-i18n-excel2json

Then, add it to your gulpfile.js:

var i18nExcel2json = require('gulp-i18n-excel2json');

gulp.task('i18n', function() {
    gulp.src('config/**.xlsx')
        .pipe(i18nExcel2json({
            destFile : '__lng__/translation.__ns__.json',
            readable: true,
            colKey: 'A',
            colValArray: ['B', 'C'],
            rowStart: 2,
            rowHeader: 1
        }))
        .pipe(gulp.dest('build'))
});

API

i18n-excel2json([options])

options.destFile

Type: string

Default: locales/__lng__/__ns__.json

The filenames path of output.

__lng__ : replaced by current lang

__ns__: replace by current namespace (each top level of i18n keys)

options.readable

Type: boolean

Default: true

Output human-readable json files (multiple lines).

options.colKey

Type: string

Default: A

The column name from excel file representing i18n keys.

options.colValArray

Type: array[string]

Default: ['B']

List of excel columns to output each as a language.

options.rowStart

Type: number

Default: 2

Start to output json after the specified excel line.

options.rowHeader

Type: number Default: 1

Excel line representing the header with the lang key for each translation.

License

MIT © Kirakishin (fork from Chris)

Keywords

gulp

FAQs

Package last updated on 30 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts