diff options
author | plegall <plg@piwigo.org> | 2010-04-02 08:01:13 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-04-02 08:01:13 +0000 |
commit | 19f47434a7a93c62ef83bd5152f44de4b60b6a32 (patch) | |
tree | e086fe661278345f1f273b3b3ffb0effc271b3eb /tools/translation_analysis.php | |
parent | 1850b89a2b6c338767a6c0c013a86bd9306aef6c (diff) |
Last steps to make the conversion remove the obsolete language keys.
git-svn-id: http://piwigo.org/svn/trunk@5563 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | tools/translation_analysis.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/translation_analysis.php b/tools/translation_analysis.php index 18e943020..da7a82463 100644 --- a/tools/translation_analysis.php +++ b/tools/translation_analysis.php @@ -113,6 +113,8 @@ foreach ($languages as $language) } } + echo '<h3>'.$file.'.lang.php</h3>'; + if ('' != $output_missing or '' != $output_duplicated) { $output = ''; @@ -124,7 +126,6 @@ foreach ($languages as $language) { $output.= "\n// untranslated yet\n".$output_duplicated; } - echo '<h3>'.$file.'.lang.php</h3>'; echo '<textarea style="width:100%;height:250px;">'.$output.'</textarea>'; } |