Commit f1368edacdc0fd1c8bc6f651b9100e49b4cbd071

Authored by Thiago Ribeiro
Committed by Álvaro Fernando Matos de Souza
1 parent 45c3227b

Add rakefile for compile plugin translations.

Showing 1 changed file with 11 additions and 0 deletions   Show diff stats
Rakefile 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +task :default => :makemo
  2 +
  3 +task :makemo do
  4 + require 'gettext'
  5 + require 'gettext/tools'
  6 + GetText.create_mofiles(
  7 + verbose: true,
  8 + po_root: 'po',
  9 + mo_root: 'locale',
  10 + )
  11 +end
... ...