angular-gettext-tools icon indicating copy to clipboard operation
angular-gettext-tools copied to clipboard

Add *.po file headers

Open StVolodymyr opened this issue 9 years ago • 0 comments

Extend hardcoded headers for *.po file

grunt.initConfig({
  nggettext_extract: {
    pot: {
      options:{
        headers: {
          'Language': 'en_US'
        }
      },
      files: {
        'po/template.pot': ['src/views/*.html']
      }
    },
  },
})

StVolodymyr avatar Aug 31 '16 14:08 StVolodymyr