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-i18n-compile

v1.0.0

Published

Grunt Plugin for assembling JSON translation files from language-merged YAML input files.

Downloads

13

Readme

grunt-i18n-compile Build Status

Assemble JSON translation files from language-merged YAML with i18n-compile.

Output files are compatible with angular-translate and i18next

Getting Started

This plugin requires Grunt.

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-i18n-compile --save-dev

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

grunt.loadNpmTasks('grunt-i18n-compile');

The translation format

The format is inspired by grunt-translate-compile.

It is intended to greatly reduce the amount of typing needed to translate your app.

The YAML file format is used because it requires less typing compared to JSON - no need to enclose both properties and values in " "s, and nesting is done by indentation instead of blocks of curly braces.

The structure of the translations inside the file is like the following:

MENU:
  CART:
    EMPTY:
      en: Empty Cart
      pt: Esvaziar Carrinho
      es: Vaciar Carrito
    CHECKOUT:
      en: Checkout
      pt: Fechar Pedido
      es: Realizar Pedido
  USER:
    LABEL:
      en: User
      pt: Usuário
      es: Usuario
    DROPDOWN:
      EDIT:
        en: Edit
        pt: Editar
        es: Editar
      LOGOUT:
        en: Logout
        pt: Sair
        es: Finalizar la Sesión

Notice how the translation values are assigned directly to the language keys. This way translations for all languages can be described in a single file, which eliminates the need to copy the translation ids over to other files for each language that you have.

That structure reduces the size of your sources and makes your translations more manageable.

Compiling the above example will result in the following output files:

  • translation_en.json

    {
      "MENU": {
        "CART": {
          "EMPTY": "Empty Cart",
          "CHECKOUT": "Checkout"
        },
        "USER": {
          "LABEL": "User",
          "DROPDOWN": {
            "EDIT": "Edit",
            "LOGOUT": "Logout"
          }
        }
      }
    }
    
  • translation_pt.json

    {
      "MENU": {
        "CART": {
          "EMPTY": "Esvaziar Carrinho",
          "CHECKOUT": "Fechar Pedido"
        },
        "USER": {
          "LABEL": "Usuário",
          "DROPDOWN": {
            "EDIT": "Editar",
            "LOGOUT": "Sair"
          }
        }
      }
    }
    
  • translation_es.json

    {
      "MENU": {
        "CART": {
          "EMPTY": "Vaciar Carrito",
          "CHECKOUT": "Realizar Pedido"
        },
        "USER": {
          "LABEL": "Usuario",
          "DROPDOWN": {
            "EDIT": "Editar",
            "LOGOUT": "Finalizar la Sesión"
          }
        }
      }
    }
    

The "i18n_compile" task

Overview

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

Example:

grunt.initConfig({
  i18n_compile: {
    options: {
      langPlace: '[lang]'
    },
    your_target: {
      files: {
        'dest/i18n/[lang].json': ['src/app/**/*.yaml', 'src/common/**/*.yaml']
      }
    },
  },
})

Options

options.langPlace

Type: String Default value: '' (empty string)

If specified the value*(if present in the output file path)* will be replaced with the language id.

This option has no effect when the merge option is true.

options.merge

Type: Boolean Default value: false

If true the output will be a single file with the translations for all languages merged inside it.

Usage Examples

Default Options

In this example, the compiled translations for each language are written to a separate file

grunt.initConfig({
  i18n_compile: {
    options: {},
    default_target: {
      files: {
        'dest/translations-.json': ['src/**/*.yml']
      }
    }
  },
})

The language id is by default inserted right before the last . of the file name. (If there is no . present then the language id is inserted at the end of the file name) So if we have the languages en and bg, the resulting files will be

dest/translations-en.json
dest/translations-bg.json

Placement of language id

In this example, the language id is placed at a custom location in the output file path

grunt.initConfig({
  i18n_compile: {
    options: {
      langPlace: '<lang>'
    },
    default_target: {
      files: {
        'dest/path/<lang>-translations.json': ['src/**/*.yml']
      }
    }
  },
})

So if we have the languages en and bg, the resulting files will be

dest/path/en-translations.json
dest/path/bg-translations.json

Merge translations in one file

With merge set to true the compiled translations for all languages are merged into a single file

grunt.initConfig({
  i18n_compile: {
    options: {
      merge: true
    },
    default_target: {
      files: {
        'dest/translations.json': ['src/**/*.yml']
      }
    }
  },
})

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.