npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-translate-sync

v0.3.2

Published

Synchronizes JSON translation files for angular-translate during development by moving new keys to out-of-date files.

Downloads

66

Readme

grunt-translate-sync

Synchronizes JSON translation files for angular-translate during development by moving new keys to out-of-date files.

Build Status

Useful for libraries like angular-translate, where translation info is kept in multiple JSON files with identical keys.

Getting Started

This plugin requires Grunt ~0.4.2

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-translate-sync --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-translate-sync');

The "translate_sync" task

Overview

In your project's Gruntfile, add a section named translate_sync to the data object passed into grunt.initConfig().

grunt.initConfig({
  translate_sync: {
    options: {
      keepKeyOrder: Boolean,
      indent: String or Number,
      warnOnIdenticalValues: Boolean
    },
    source: String,
    targets: [String]
  },
});

Options

options.keepKeyOrder

Type: String Default value: true

A boolean value that indicates if the keys in the target files should appear in the same order as in the source file.

options.indent

Type: String or Number Default value: 2

A string or numeric value that is passed to JSON.stringify as the space parameter when writing the target files. Setting it to null will remove pretty-printing, anything else will pretty-pring the JSON as outlined in the JSON.stringify documentation

options.warnOnIdenticalValues

Type: boolean Default value: true

Usually, different files will hold identical keys with different values. If this option is switched on, the task will report keys where the source and the target values are equal. This happens when a key has not yet been translated into the target language.

source

Type: String Default value: null

Required value of the path to the source file. All key-value pairs in this file will be added to all target files unless they are already present there. Must be valid JSON.

targets

Type: [String] Default value: []

Required array of target files that should be updated with the keys from the source file. Must not be empty. All files must be valid JSON.

Usage Example

Default Options

In this example, a source file called tmp/enUS.json will be used to update the key-value pairs in tmp/frFR.json and tmp/deDE.json.

grunt.initConfig({
  translate_sync: {
    source: "tmp/enUS.json",
    targets: ["tmp/frFR.json", "tmp/deDE.json"]
  },
});

Custom Options

In this example, a source file called tmp/enUS.json will be used to update the key-value pairs in tmp/frFR and tmp/deDE, keeping the key order in the target files as they are (new keys will be added after the last key), and using a tab character for pretty-printing. Warnings about identical values will be supressed.

grunt.initConfig({
  translate_sync: {
    options: {
      keepKeyOrder: false,
      indent: "\t",
      warnOnIdenticalValues: false
    },
    source: "tmp/enUS.json",
    targets: ["tmp/frFR.json", "tmp/deDE.json"]
  },
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

0.1.0 - Initial Version, keys are added after the last key if not present in target files

0.2.0 - keepKeyOrder option introduced, testing refined for both cases

0.2.1 - added travis integration

0.3.0 - added namespace compatibility, fixes arvidkahl/grunt-translate-sync#1

0.3.1 - fixed behavior with empty string values, fixed issues with invalid JSON in the source/target files and added the warnOnIdenticalValues option. refactored the comparison function to be readable