diff options
author | Filip Komar <filip@mageia.org> | 2014-03-09 20:17:02 +0000 |
---|---|---|
committer | Filip Komar <filip@mageia.org> | 2014-03-09 20:17:02 +0000 |
commit | db044d313042734d341ff1b22c50d8867176a0d0 (patch) | |
tree | b396ac2ff0fecce86a303e67a775fb2eed5b1233 /en | |
parent | 860178e777d469b751c4f09e5009345aa7599a27 (diff) | |
download | www-db044d313042734d341ff1b22c50d8867176a0d0.tar www-db044d313042734d341ff1b22c50d8867176a0d0.tar.gz www-db044d313042734d341ff1b22c50d8867176a0d0.tar.bz2 www-db044d313042734d341ff1b22c50d8867176a0d0.tar.xz www-db044d313042734d341ff1b22c50d8867176a0d0.zip |
about/reports page first migrated to gettext system + small bugfix of toolchain needed
Diffstat (limited to 'en')
-rw-r--r-- | en/about/reports/index.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/en/about/reports/index.php b/en/about/reports/index.php index 2b65440f0..41fa981a5 100644 --- a/en/about/reports/index.php +++ b/en/about/reports/index.php @@ -1,33 +1,33 @@ <?php define('HLANG', true); require '../../../langs.php'; -_lang_load($locale, 'about/reports'); +$dictionary = read_translation_file($locale, 'about/reports'); ?><!DOCTYPE html> <html dir="ltr" lang="<?php echo $locale; ?>"> <head> <meta charset="utf-8"> - <title><?php _e('Mageia activity & financial reports')?></title> - <meta name="description" content="<?php _e('Mageia reports, every year.')?>"> - <meta name="keywords" content="<?php _e('mageia, reports, activity, financial')?>"> + <title><?php _g('Mageia activity & financial reports')?></title> + <meta name="description" content="<?php _g('Mageia reports, every year.')?>"> + <meta name="keywords" content="<?php _g('mageia, reports, activity, financial')?>"> <meta name="author" content="Mageia"> <link rel="stylesheet" type="text/css" href="/g/style/all.css"> <?php include '../../../analytics.php'; ?> </head> <body class="about"> <?php echo $hsnav; ?> - <h1 id="mgnavt"><?php _e('Activity Reports')?></h1> + <h1 id="mgnavt"><?php _g('Activity Reports')?></h1> <div id="doc" class="yui-t7"> <div id="bd" role="main"> <div class="yui-g"> <div class="para values"> - <p><?php _e('Here you will find our various activity and financial reports for every year.')?></p> + <p><?php _g('Here you will find our various activity and financial reports for every year.')?></p> <ul> - <li>2013: <?php _e('<a href="https://treasurer.mageia.org/y_2013.html">Financial report</a> (in progress).')?></li> - <li>2012: <?php _e('<a href="2012/">Financial report</a>.')?></li> - <li>2011: <?php _e('<a href="https://wiki.mageia.org/en/Rapport_moral_2011">Moral report</a> (in French & English), <a href="2011/">financial report</a>.')?></li> - <li>2010: <?php _e('Moral report, <a href="2010/">financial report</a>.')?></li> + <li>2013: <?php _g('<a href="https://treasurer.mageia.org/y_2013.html">Financial report</a> (in progress).')?></li> + <li>2012: <?php _g('<a href="2012/">Financial report</a>.')?></li> + <li>2011: <?php _g('<a href="https://wiki.mageia.org/en/Rapport_moral_2011">Moral report</a> (in French & English), <a href="2011/">financial report</a>.')?></li> + <li>2010: <?php _g('Moral report, <a href="2010/">financial report</a>.')?></li> </ul> </div> </div> |