diff options
author | filip <filip.komar@gmail.com> | 2016-08-06 13:49:27 +0200 |
---|---|---|
committer | filip <filip.komar@gmail.com> | 2016-08-06 13:49:27 +0200 |
commit | 42784027ccc0116ea1ce8a117e392f9b0e9f0e75 (patch) | |
tree | dbf68fd3c75bd15b9ad9bf160ca1d53075cf39e0 /en | |
parent | 03bfc026d9ada0699cff866e74a56eda71b6c027 (diff) | |
download | www-42784027ccc0116ea1ce8a117e392f9b0e9f0e75.tar www-42784027ccc0116ea1ce8a117e392f9b0e9f0e75.tar.gz www-42784027ccc0116ea1ce8a117e392f9b0e9f0e75.tar.bz2 www-42784027ccc0116ea1ce8a117e392f9b0e9f0e75.tar.xz www-42784027ccc0116ea1ce8a117e392f9b0e9f0e75.zip |
Make main wiki page link localisable mga#19114
Diffstat (limited to 'en')
-rw-r--r-- | en/contact/index.php | 2 | ||||
-rw-r--r-- | en/map/index.php | 2 | ||||
-rw-r--r-- | en/support/index.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/en/contact/index.php b/en/contact/index.php index 8a81d87eb..287261d50 100644 --- a/en/contact/index.php +++ b/en/contact/index.php @@ -25,7 +25,7 @@ $dictionary = read_translation_file($locale, array('contact', 'common_footer')); <?php _g('You are looking for support', null, 'h2'); _g('Search on:');?> - <ul><li><?php _g('Our <a href="%s">wiki</a>', array('https://wiki.mageia.org/'));?></li> + <ul><li><?php _g('Our <a href="%s">wiki</a>', array(_r('https://wiki.mageia.org/')));?></li> <li><?php _g('In the End user <a href="%s">doc</a>', array('../doc/'));?></li> </ul> <?php _g('Discuss with other users via:');?> diff --git a/en/map/index.php b/en/map/index.php index 3fe54c3a9..b709c94a5 100644 --- a/en/map/index.php +++ b/en/map/index.php @@ -69,7 +69,7 @@ $map = array( array('t' => _r('Mailing-lists'), 'l' => _r('https://wiki.mageia.org/en/Mailing_lists')), array('t' => 'IRC', 'l' => _r('https://wiki.mageia.org/en/IRC')), array('t' => _r('Forums'), 'l' => _r('https://forums.mageia.org/')), - array('t' => 'Wiki', 'l' => 'https://wiki.mageia.org/'), + array('t' => 'Wiki', 'l' => _r('https://wiki.mageia.org')), array('t' => 'Bugzilla', 'l' => 'https://bugs.mageia.org/'), array('t' => _r('People'), 'l' => '//people.mageia.org/'), ) diff --git a/en/support/index.php b/en/support/index.php index fd298062c..58b0133dd 100644 --- a/en/support/index.php +++ b/en/support/index.php @@ -38,7 +38,7 @@ $dictionary = read_translation_file($locale, array('support', 'common_footer')); _g('Documentation', null, 'h2 id="docu"'); _g('You can look up existing %sdocumentation here%s. You may too look into our %sWiki%s.', array('<a href="../doc/">', '</a>', - '<a href="https://wiki.mageia.org/">', '</a>'), 'p'); + '<a href="' . _r('https://wiki.mageia.org') . '">', '</a>'), 'p'); echo '<hr>'; _g('Updates', null, 'h2 id="updates"'); // _g('Updates are available for %s and %s (security and bug fixes) and published on an ongoing basis.', array('<a href="//advisories.mageia.org/4.html">Mageia 4</a>', '<a href="//advisories.mageia.org/5.html">Mageia 5</a>'), 'p'); |