Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-combine-languagefiles

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-combine-languagefiles

Gulp plugin to combine several (nested) JSON language files

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
33
increased by26.92%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-combine-languagefiles

Gulp plugin to combine several (nested) JSON language files Create easily editable CSV so non-programmers can help with translations

This plugin was originally made to be used with gulp-bobrsass-boilerplate / angularjs, but it should work with other projects too using JSON key-value -pair translations. It expects translations to be named as en.json, en-EN.json or similar. Your project tree might look for example like

src/
	app/
		module1/
			languages/
				en.json
				fi.json
		module2/
			languages/
				en.json
				fi.json

Usage

Install gulp-combine-languagefiles as a development dependency:

npm install --save-dev gulp-combine-languagefiles

Add it to your gulpfile.js:

var combine_languagefiles = require("gulp-combine-languagefiles");

gulp.src("src/app/**/languages/*.json")
	.pipe(combine_languagefiles("translations.json"))
	.pipe(gulp.dest(""));

You can use gulp-convert to convert result to CSV. Use includeHeader parameter to prepend header as first row.

var concat_json = require("gulp-concat-languagefiles");
var convert = require("gulp-convert");

gulp.src("src/app/**/languages/*.json")
	.pipe(combine_languagefiles("translations.json", { includeHeader: true }))
	.pipe(convert({from: 'json', to: 'csv'}))
	.pipe(gulp.dest("")); // File will be saved as translations.csv to project root

See /example for a script to parse generated CSV back to original JSON-files, it even supports downloading CSV from Google Drive!

FAQs

Package last updated on 04 Jun 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc