diff options
Diffstat (limited to 'usr/share')
-rw-r--r-- | usr/share/mageiawelcome/index.html | 8 | ||||
-rw-r--r-- | usr/share/mageiawelcome/mageiawelcome.py | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/usr/share/mageiawelcome/index.html b/usr/share/mageiawelcome/index.html index 8d15579..188ff33 100644 --- a/usr/share/mageiawelcome/index.html +++ b/usr/share/mageiawelcome/index.html @@ -172,10 +172,10 @@ PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <div class="mgalinks col_4"> <h5>$h_documentation</h5> <!--<a href="https://wiki.mageia.org/en/Mageia_4_What%27s_New" class="weblink button medium"><i class="icon-bullhorn"> </i> $features</a><br />--> - <a href="https://wiki.mageia.org/en/Mageia_5_Release_Notes" class="weblink button medium"><i class="icon-lightbulb"> </i> $relnotes</a><br /> - <a href="https://wiki.mageia.org/en/Mageia_5_Errata" class="weblink button medium"><i class="icon-bolt"> </i> $errata</a><br /> - <a href="https://wiki.mageia.org/en/Newcomers_start_here" class="weblink button medium"><i class="icon-key"> </i> $newcomers</a><br /> - <a href="https://wiki.mageia.org/en/Documentation" class="weblink button medium"><i class="icon-book"> </i> $h_documentation</a> + <a href="$relnotes_url" class="weblink button medium"><i class="icon-lightbulb"> </i> $relnotes</a><br /> + <a href="$errata_url" class="weblink button medium"><i class="icon-bolt"> </i> $errata</a><br /> + <a href="$newcomers_url" class="weblink button medium"><i class="icon-key"> </i> $newcomers</a><br /> + <a href="$h_documentation_url" class="weblink button medium"><i class="icon-book"> </i> $h_documentation</a> </div> <div class="mgalinks col_4"> <h5>$h_support</h5> diff --git a/usr/share/mageiawelcome/mageiawelcome.py b/usr/share/mageiawelcome/mageiawelcome.py index 8e8a007..2c2ab9d 100644 --- a/usr/share/mageiawelcome/mageiawelcome.py +++ b/usr/share/mageiawelcome/mageiawelcome.py @@ -85,10 +85,14 @@ def main(): l['conf_update'] = _("Configure media sources and update system") l['inst_remove'] = _("Install and remove software") l['h_documentation'] = _("Documentation") + l['h_documentation_url'] = _("https://wiki.mageia.org/en/Documentation") l['features'] = _("New Features") l['relnotes'] = _("Release Notes") + l['relnotes_url'] = _("https://wiki.mageia.org/en/Mageia_5_Release_Notes") l['errata'] = _("Errata") + l['errata_url'] = _("https://wiki.mageia.org/en/Mageia_5_Errata") l['newcomers'] = _("Newcomers Howto") + l['newcomers_url'] = _("https://wiki.mageia.org/en/Newcomers_start_here") l['h_support'] = _("Support") l['forum'] = _("Forums") l['wiki'] = _("Wiki") |