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 🙏

© 2026 – Pkg Stats / Ryan Hefner

grunt-nks-i18n

v1.9.0

Published

Builder translate you project

Downloads

54

Readme

I18n

Download

  $ bower install nks-i18n;
  $ git clone https://github.com/konstantin-nizhinskiy/I18n.git;

Build json translation

Getting Started

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

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

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

i18n task

Run this task with the grunt i18n command.

Task targets, files and options may be specified according to the grunt Configuring tasks guide.

Options

locales

Type: Array
Default: ['en']

Specify the location you want to create

cache

Type: Boolean
Default: true

Cache ald bundle json file before build new. Save in one cache file all keys, value

cacheFile

Type: Boolean
Default: true

On/off cache bundle file translation

cacheDir

Type: String
Default: cache/i18n/

Cache directory

buildDoc

Type: Boolean
Default: true

bundleFile

Type: Boolean
Default: true

Saving a file translate where he was taken and placed in the cache

typeTranslation

Type: String Default: json

Type build translation file (json,yml,js)

loadJsTranslation:

Type: String Default:

    if (typeof define === 'function' && define.amd) {
        define(['i18n'], function (i18n) {
            return i18n.setTranslation(factory())
        })
    } else {
        i18n.setTranslation(factory());
    }

Load function translation if you select type typeTranslation=='js'

file:

  • AllKeys.md - All keys translation
  • AllKeysFileBuild.md - All keys file
  • AllKeysSize.md - All keys size translation
  • InfoBuild.md - Info last build translation

reg

Type: String
Default: (i18n\\.get\\([ ]{0,}[\'"])([A-Za-z.]+)([\'"])

This Regex finds keys in your file project

grunt config

grunt.initConfig({
    i18n: {
        options: {
            locales:['ua','en']
        },
        bundle1: {
            files: {
                'test/translations/bundle1.min.js':[
                    'test/**'
                ]
            }
        },
        bundle2: {
            files: {
                'test/translations/bundle2.min.js':[
                    'test2/**'
                ]
            }
        }
    }
});
//...

build file:

  • bundle1.min.en.json
  • bundle1.min.ua.json
  • bundle2.min.en.json
  • bundle2.min.ua.json

Loader supports

* AMD
* CommonJS

Config

    i18n.setProperty({
        locale: 'EN', // location on
        localeDefault: 'EN', //locale on default if key of main locale is empty
        versionJson: '1.1.1', // versionJson add to url params load file translation
        defaultValue: '' // You can set default value for translated
    });

Methods

Method | Arguments | info
----------------------|----------------------------|------------------------ changeLocale | locale,[callback] | Change locale get | key, [params], [option] | Get translations getByData | params, [option] | Get translations by data param set in function getLocale | | Get locale now load | url, [callback] | Load translations JSON setProperty | params | Set property i18n on | event, callback | Bind event callback off | event, [callback] | Unbind event callback once | event, callback | Bind once event callback trigger | event, param1,... | Trigger event

Method changeLocale

Change locale

Arguments

Arguments | Type | info
----------------|-----------|------------------------ locale | string | locale [ua,en...] callback | function | Callback on success change locale

Events

Events | Arguments | info
----------------|-----------|------------------------ changeLocale | locale | Event on success change locale

Example

    i18n.on("changeLocale",function(locale) {
      console.log("Event changeLocale",locale)
    });
    i18n.changeLocale('en');
    i18n.changeLocale('en',function(){console.log("run callback in function")});
    

Method get

Get translations

Arguments

Arguments | Type | info
----------------------|-----------|------------------------ key | string | Key translation params | function | Params merge with translation messengers option | object | Options translation option.defaultValue | string | default value translation

Events

Events | Arguments | info
-------------------------|--------------------------|------------------------ error:translation:key | key,locale | Not fount key translation error | type_error,key,locale | Not fount key translation

Example

/**
* File translations
* {
    "test.test.test": "Test test test",
    "count.books": "{{ count}} books",
    "book.name.pages.number": "Book {{ name }} page {{ number }}"
  }
*/
i18n.setProperty({
   locale: 'en',
   localeDefault: 'en'
});
console.log(i18n.get("test.test.test")); // Test test test
console.log(i18n.get("count.books", {count: 20}));  // 20 books
console.log(i18n.get("book.name.pages.number", {name: 'JS', number: 201})); // Book JS page 201
console.log(i18n.get("test.test.test1")); // test.test.test1
console.log(i18n.get("test.test.test1",{},{defaultValue:'my value'})); // my value

Method getByData

Get translations by data param set in function

Arguments

Arguments | Type | info
----------------------|------------------|------------------------ params | {string,object} | Params translation option | object | Options translation option.defaultValue | string | default value translation

Events

Example

i18n.setProperty({
  locale: 'en',
  localeDefault: 'en'
});

console.log(i18n.getByData({"en":"test en","ua":"test ua"})); // test en
console.log(i18n.getByData({"EN":"test en","UA":"test ua"})); // test en
console.log(i18n.getByData("My data")); // My data
console.log(i18n.getByData({"UA":"test ua"},{defaultValue:'my value'})); // my value

Method getLocale

Get locale now

Arguments

Events

Example

i18n.setProperty({
  locale: 'en',
  localeDefault: 'en'
});

console.log(i18n.getLocale()); // en

Method load

Load translations JSON

Arguments

Arguments | Type | info
----------------------|--------------------|------------------------ urls | string[],string | Url json file translations callback | function | Callback function success load option | object | Options translation option.modulePrefix | string | You can set prefix url

Events

Events | Arguments | info
-------------------------|---------------------------------------------|------------------------ load | url,data_json_file | load file json success error:load | xhr.statusText, xhr.status, xhr | error load json error | type_error,xhr.statusText, xhr.status, xhr | error load json

Example


    i18n.load(
          ['translations/bundle1.min','translations/bundle1.min'], 
          function () {
              console.log("success load")
          },
          {
              modulePrefix:"my_prefix"
          });

    i18n.load(
          'translations/bundle1.min', 
          function () {
              console.log("success load")
          },
          {
              modulePrefix:"my_prefix"
          });
    
    i18n.load('translations/bundle1.min');
    
    i18n.load(['translations/bundle1.min','translations/bundle2.min']);

Method setProperty

Set property i18n

Arguments

Arguments | Type | info
-------------------------|--------|------------------------ option | object | Options translation option.locale | string | Location [default:ua] option.localeDefault | string | Locale on default if key of main locale is empty [default:ua] option.versionJson | string | Version json add to url params load file translation [default:unix] option.defaultValue | string | Default value translation option.modulePrefix | object | Prefix url to module

Events

Example

    i18n.setProperty({
        locale: 'en',
        localeDefault: 'en'
    });

Events

Event | Arguments | info
----------------------|-------------------------|------------------- changeLocale | locale | Event change locale load | url, JSON | Event load file json error:translation:key | key, locale | Event not fount key translation error:load | statusText, status, xhr | Event error load json translation error | type, * | All error event error:*

Example

<!-- ... -->
    <script src="dist/I18n.js" type="application/javascript"></script>
    <script>
        i18n.setProperty({
            locale: 'en',
            localeDefault: 'en'
        });
        var demoFunction=function(){
            console.log(i18n.get("test.test.test")); // Test test test
            console.log(i18n.get("count.books", {count: 20}));  // 20 books
            console.log(i18n.get("book.name.pages.number", {name: 'JS', number: 201})); // Book JS page 201
            console.log(i18n.get("test.test.test1")); // test.test.test1
            console.log(i18n.get("test.test.test1",{},{defaultValue:'my value'})); // my value
            console.log(i18n.getByData({"en":"test.en","ua":"test.ua"})); // test.en
        };
        i18n.load('translations/bundle1.min', demoFunction );
        i18n.on('changeLocale',function(){
            console.log('change locale');
            demoFunction();
        });
    </script>
  
            
    <button onclick="i18n.changeLocale('ua')">UA</button>
    <button onclick="i18n.changeLocale('en')">EN</button>


<!-- ... -->