CC-4748: Write script to update all .po files with new msgids
This commit is contained in:
parent
274b1f7562
commit
e2885da71c
|
@ -0,0 +1,14 @@
|
|||
#! /bin/bash
|
||||
|
||||
cd ~/airtime
|
||||
|
||||
#generate a new .po file
|
||||
#this will generate a file called messages.po
|
||||
find . -iname "*.phtml" -o -name "*.php" | xargs xgettext -L php
|
||||
|
||||
#merge the new messages from messages.po into each existing .po file
|
||||
#this will generate new .po files
|
||||
find ./airtime_mvc/locale/ -name "*.po" -exec msgmerge -N -U --no-wrap "{}" messages.po \;
|
||||
|
||||
#delete the old .po files
|
||||
find ./airtime_mvc/locale/ -name "*.po~" -delete
|
Loading…
Reference in New Issue