/grunt-missing-i18n

Grunt plug-in that finds unlocalised UI strings

Primary LanguageJavaScriptMIT LicenseMIT

grunt-missing-i18n v0.0.4

Finds unlocalized UI strings

Getting Started

This plugin requires Grunt ~0.4.0.

npm install grunt-missing-i18n --save-dev

Once the plug-in has been installed, you need to load this Grunt task in your Gruntfile like this:

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

MissingI18n task

Run this task with the grunt missingI18n command.

grunt.initConfig({
  missingI18n: {
    files: ['app/**/*.{js,html,mustache}']
  }
});