file to compile translations
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@521 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
36c68d08db
commit
b6b0213856
24
scripts/compile-translation.php
Normal file
24
scripts/compile-translation.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* Compile a translation file from .po to .mo
|
||||
*/
|
||||
chdir(dirname(dirname(__FILE__)));
|
||||
|
||||
if ($argc < 2) {
|
||||
die("pass language name to update, i.e 'de_DE'\n");
|
||||
}
|
||||
$lang = $argv[1];
|
||||
|
||||
$langdir = 'data/locales/' . $lang;
|
||||
if (!is_dir($langdir)) {
|
||||
die('There is no language directory: ' . $langdir . "\n");
|
||||
}
|
||||
|
||||
|
||||
passthru(
|
||||
'msgfmt --statistics'
|
||||
. ' ' . $langdir . '/LC_MESSAGES/messages.po'
|
||||
. ' -o ' . $langdir . '/LC_MESSAGES/messages.mo'
|
||||
);
|
||||
|
||||
?>
|
Loading…
Reference in New Issue
Block a user