@eliumhq/elium-i18n
Advanced tools
Comparing version 2.3.0 to 2.3.1
@@ -7,3 +7,3 @@ { | ||
"license": "UNLICENSED", | ||
"version": "2.3.0", | ||
"version": "2.3.1", | ||
"engines": { | ||
@@ -10,0 +10,0 @@ "node": ">=9", |
@@ -19,5 +19,5 @@ const path = require('path') | ||
module.exports = async (sourceDir, destinationDir) => { | ||
module.exports = async ({ source, target }) => { | ||
console.log('Compiling PO to JSON') | ||
const directories = getDirectories(sourceDir, destinationDir) | ||
const directories = getDirectories(source, target) | ||
@@ -27,5 +27,5 @@ directories.forEach(item => { | ||
console.log(`Compiling ${locale}`) | ||
compile(locale, sourceDir, destinationDir) | ||
compile(locale, source, target) | ||
}) | ||
console.log('Finished') | ||
} |
@@ -104,3 +104,3 @@ const fs = require('fs') | ||
headers: { | ||
'Charset': 'utf-8', | ||
Charset: 'utf-8', | ||
'Project-Id-Version': 'Elium', | ||
@@ -110,3 +110,3 @@ 'Report-Msgid-Bugs-To': 'dev@elium.com', | ||
'Content-Transfer-Encoding': '8bit', | ||
'Language': 'en', | ||
Language: 'en', | ||
'POT-Creation-Date': `${now.getUTCFullYear()}-${now.getUTCMonth()}-${now.getUTCDate()} ${now.getUTCHours()}:${now.getUTCMinutes()} Z`, | ||
@@ -113,0 +113,0 @@ 'MIME-Version': '1.0' |
@@ -7,3 +7,3 @@ const { exec } = require('./utils') | ||
module.exports = async (languages, source) => { | ||
module.exports = async ({ languages, source, branch }) => { | ||
console.log('Pulling PO files...') | ||
@@ -15,5 +15,7 @@ const langs = languages | ||
: '-a ' | ||
const branchParam = branch ? `-b ${typeof branch !== 'boolean' ? branch : ''}` : '' | ||
try { | ||
// We have to force the pull otherwise existing languages are skipped | ||
await exec(`tx pull ${langs} -f`) | ||
await exec(`tx pull ${langs} --parallel -f ${branchParam}`) | ||
@@ -23,3 +25,3 @@ // Transifex does not download the translation file for the source language | ||
console.log('Download translations for source language') | ||
await exec(`tx pull -l ${source} -f`) | ||
await exec(`tx pull -l ${source} --parallel -f ${branchParam}`) | ||
} | ||
@@ -26,0 +28,0 @@ console.log('Translations downloaded.') |
const { exec } = require('./utils') | ||
module.exports = async () => { | ||
module.exports = async ({ branch }) => { | ||
console.log('Pushing POT to Transifex...') | ||
try { | ||
await exec(`tx push -s`) | ||
var branchParam = '' | ||
if (branch) { | ||
branchParam = '-b ' + (typeof branch === 'boolean' ? '' : branch) | ||
} | ||
await exec(`tx push -s --parallel ${branchParam}`) | ||
console.log('Template pushed.') | ||
@@ -8,0 +12,0 @@ } catch (err) { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
19986
450
1