diff options
author | Filip Komar <filip@mageia.org> | 2013-08-10 14:55:24 +0000 |
---|---|---|
committer | Filip Komar <filip@mageia.org> | 2013-08-10 14:55:24 +0000 |
commit | 4e92fedb5a6314351b255ae19d64227339b95274 (patch) | |
tree | c4524a4585359adb8d24ac416a6ecab0470aa402 /langs/diff.php | |
parent | fc6c1393fde5eba8d2491d3510e3bd4ecea69cd3 (diff) | |
download | www-4e92fedb5a6314351b255ae19d64227339b95274.tar www-4e92fedb5a6314351b255ae19d64227339b95274.tar.gz www-4e92fedb5a6314351b255ae19d64227339b95274.tar.bz2 www-4e92fedb5a6314351b255ae19d64227339b95274.tar.xz www-4e92fedb5a6314351b255ae19d64227339b95274.zip |
report page extended to show duplicate strings in lang files
Diffstat (limited to 'langs/diff.php')
-rw-r--r-- | langs/diff.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/langs/diff.php b/langs/diff.php index d56be7f8e..68e741cd4 100644 --- a/langs/diff.php +++ b/langs/diff.php @@ -65,7 +65,7 @@ if($license) { if($constitution || $license) { $s .= 'Please read <a href="https://wiki.mageia.org/en/Internationalisation_Team_%28i18n%29#Special_cases_of_web_pages">page on wiki for more information</a> about that.</p>'; } -foreach (array('missing' => 'missing strings', 'notrans' => 'untranslated strings', 'extra' => 'unused (old) strings') as $type => $name) { +foreach (array('missing' => 'missing strings', 'notrans' => 'untranslated strings', 'extra' => 'unused (old) strings', 'dup_str' => 'duplicate strings') as $type => $name) { if (count($diff[$type]) > 0) { $s .= sprintf('<h2>%d %s:</h2>', count($diff[$type]), $name); |