0.0.6 • Published 5 years ago

polyglot-po v0.0.6

Weekly downloads
2
License
Apache-2.0
Repository
-
Last release
5 years ago

polyglot-po

Install

$ npm install -g polyglot-po
# or
$ yarn global add polyglot-po

Usage

convertFilesToPo

Convert JSON files to PO files

Takes three arguments:

Returns a promise resolving as an array with two entries:

  • input: the file path of the json file
  • outputput: the file path of the new po file

Example:

import { convertFilesToPo } as polygloPo from 'polyglot-po';

convertFilesToPo(
    ['home/node/myProject/i18n/en.json', 'home/node/myProject/i18n/fr.json'],
    'fr'
).then((results) => {
    console.log({ results });
    //  [
    //      { 
    //          input: 'home/node/myProject/i18n/en.json', 
    //          output: 'home/node/myProject/i18n/en.po' 
    //      },
    //      { 
    //          input: 'home/node/myProject/i18n/fr.json', 
    //          output: 'home/node/myProject/i18n/fr.po' 
    //      },
    //  ]
});

convertFilesToJson

Convert PO files to JSON files

Takes one argument

  • filePaths: the list of the po files to convert

Returns a promise resolving as an array with two entries:

  • input: the file path of the po file
  • output: the file path of the new json file

Example:

import { convertFilesToJson } as polygloPo from 'polyglot-po';

convertFilesToPo(
    ['home/node/myProject/i18n/en.po', 'home/node/myProject/i18n/fr.po'],
).then((results) => {
    console.log({ results });
    //  [
    //      { 
    //          input: 'home/node/myProject/i18n/en.po', 
    //          output: 'home/node/myProject/i18n/en.json' 
    //      },
    //      { 
    //          input: 'home/node/myProject/i18n/fr.po', 
    //          output: 'home/node/myProject/i18n/fr.json' 
    //      },
    //  ]
});

convertPoStringToJson

Convert a po string to json.

Take a po string and returns the parsed json object. (This operation is synchronous.)

Example:

import { convertPoStringToJson } from 'polyglot-po';

const json = convertPoStringToJson(poString);

loadJsonFromPoFile

Load a po file convert it to json and returns the parse json. Useful if you want to load the po file and use the json directly.

Take the file path to the po file and returns a promise holding the parsed json

Example:

import { loadJsonFromPoFile } from 'polyglot-po';

loadJsonFromPoFile('home/node/myProject/i18n/en.po').then(json => {
    // do something with the json
})