Software Público Brasileiro
Portal do
Software Público Brasileiro
Cadastre-se
Entrar
×
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
2
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
faff831be45461cced3b3f5c4092eedcf816d8c4
Authored by
Thiago Ribeiro
2015-05-21 14:41:22 -0300
1 parent
c7c998ab
Add rakefile for compile plugin translations.
Showing
1 changed file
with
11 additions
and
0 deletions
Show diff stats
Rakefile
Side-by-side Diff
Inline Diff
Rakefile
0 → 100644
Wrap text
Diff comments
View file @
faff831
...
...
@@ -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
...
...