aboutsummaryrefslogtreecommitdiffstats
path: root/langs.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'langs.inc.php')
-rw-r--r--langs.inc.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/langs.inc.php b/langs.inc.php
index 4a6fd2b3f..400e54671 100644
--- a/langs.inc.php
+++ b/langs.inc.php
@@ -64,12 +64,16 @@ function show_langs($langs)
<title>Mageia</title>
</head>
<body>
-<p><a href="/">Mageia.org</a> is available in {$count} languages:</p>
+<p><a href="/">Mageia.org</a> is currently available in {$count} languages:</p>
<ul>
S;
foreach ($langs as $k => $v) {
$s .= sprintf('<li><a href="/%s/" hreflang="%s">%s</a></li>',
$k, $k, $v);
}
- echo $s, '</ul><hr /></body></html>';
+ echo $s, '</ul><hr />',
+ '<p>If you would like to help improving this Web site or its translations, ',
+ 'check out our <a href="/wiki/doku.php?id=web">Web</a> and ',
+ '<a href="/wiki/doku.php?id=i18n">localization</a> teams!</p>',
+ '<hr /></body></html>';
} \ No newline at end of file