|
Revision 11827, 1.1 kB
(checked in by mickecarlsson, 2 years ago)
|
New module, need more work, uploaded so that I have it on another place than my virtualmachine, will add feature for wikiformatting
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
function check_translate_status($language_path, $language, $module) |
|---|
| 17 |
{ |
|---|
| 18 |
$totalmsgcmd = "msgattrib --stringtable-output ".$language_path.$module.".pot | grep \"^\\\"\" | wc -l"; |
|---|
| 19 |
$translatedmsgcmd = "msgattrib --stringtable-output --translated ".$language_path.$language."/LC_MESSAGES/".$module.".po | grep \"^\\\"\" | wc -l"; |
|---|
| 20 |
exec($totalmsgcmd, $total); |
|---|
| 21 |
exec($translatedmsgcmd, $total); |
|---|
| 22 |
return($total); |
|---|
| 23 |
} |
|---|
| 24 |
?> |
|---|
| 25 |
|
|---|