aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain d'Alverny <rda@mageia.org>2011-05-29 22:08:37 +0000
committerRomain d'Alverny <rda@mageia.org>2011-05-29 22:08:37 +0000
commit73f98b59ca04a7d52239616b5806d593f0f6e8e1 (patch)
tree98c10522502214ee77df4d47c44be24a0a5469fb
parent0c9a31c899ce9d3335c4595e7e991e19ca19b5b8 (diff)
downloadwww-73f98b59ca04a7d52239616b5806d593f0f6e8e1.tar
www-73f98b59ca04a7d52239616b5806d593f0f6e8e1.tar.gz
www-73f98b59ca04a7d52239616b5806d593f0f6e8e1.tar.bz2
www-73f98b59ca04a7d52239616b5806d593f0f6e8e1.tar.xz
www-73f98b59ca04a7d52239616b5806d593f0f6e8e1.zip
improve message
-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