diff options
author | plegall <plg@piwigo.org> | 2010-03-24 19:16:52 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-03-24 19:16:52 +0000 |
commit | a6954ea0a8cea59875191bbc6920bfce80897150 (patch) | |
tree | bd57084728b6042a6903be31fcbea9f69fa2afe1 /tools/translation_analysis.php | |
parent | 95e6455a412224859c3d4dbba990d64bf60d35d6 (diff) |
make the translation TODO easier to read
git-svn-id: http://piwigo.org/svn/trunk@5314 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 dd07db59c..18e943020 100644 --- a/tools/translation_analysis.php +++ b/tools/translation_analysis.php @@ -25,6 +25,7 @@ define('PHPWG_ROOT_PATH', '../'); include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); include_once( PHPWG_ROOT_PATH.'tools/translation_validated.inc.php' ); $languages = array_keys(get_languages()); +sort($languages); $page['ref_compare'] = 'en_UK'; $page['ref_default_values'] = 'en_UK'; @@ -124,7 +125,7 @@ foreach ($languages as $language) $output.= "\n// untranslated yet\n".$output_duplicated; } echo '<h3>'.$file.'.lang.php</h3>'; - echo '<textarea style="width:100%;height:150px;">'.$output.'</textarea>'; + echo '<textarea style="width:100%;height:250px;">'.$output.'</textarea>'; } if ('' != $output_lost) |