diff options
author | Thomas Backlund <tmb@mageia.org> | 2014-10-12 12:27:45 +0300 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2014-10-12 12:27:45 +0300 |
commit | 9ce6d646ff718cd62f6434c9a4c94e450436612a (patch) | |
tree | 3ee82e5db7c0aee44a5573d9d17035c6ecac697d /en/about/constitution/index.php | |
parent | a0b2d09125d7911656fe4cb286f20643c4432281 (diff) | |
download | www-9ce6d646ff718cd62f6434c9a4c94e450436612a.tar www-9ce6d646ff718cd62f6434c9a4c94e450436612a.tar.gz www-9ce6d646ff718cd62f6434c9a4c94e450436612a.tar.bz2 www-9ce6d646ff718cd62f6434c9a4c94e450436612a.tar.xz www-9ce6d646ff718cd62f6434c9a4c94e450436612a.zip |
Revert "Updated Estonian translation"
This reverts commit a0b2d09125d7911656fe4cb286f20643c4432281.
Diffstat (limited to 'en/about/constitution/index.php')
-rw-r--r-- | en/about/constitution/index.php | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/en/about/constitution/index.php b/en/about/constitution/index.php new file mode 100644 index 000000000..177e25fa8 --- /dev/null +++ b/en/about/constitution/index.php @@ -0,0 +1,48 @@ +<?php + +define('HLANG', true); +require '../../../langs.php'; + +$dictionary = read_translation_file($locale, "about/constitution"); + +// Note to translators: _r('Note to translators! PLEASE READ THIS LINE! YOU DON\'T NEED TO TRANSLATE IT! Please translate constitution in file "mageia.org_statutes_fr.md" or "mageia.org_statutes_en.md" as a fallback first. Check wiki for details.') + +?><!DOCTYPE html> +<html dir="ltr" lang="<?php echo $locale ?>"> +<head> + <meta charset="utf-8"> + <title><?php _g('Mageia.Org constitution'); ?></title> + <meta name="description" content="<?php _g('Mageia.Org constitution');?>"> + <meta name="keywords" content="<?php _g('mageia.org, association, organization, legal, constitution, statuts'); ?>"> + <meta name="author" content="Mageia"> + <link rel="stylesheet" type="text/css" href="/g/style/all.css"> + <?php include '../../../analytics.php'; ?> +</head> +<body class="about constitution"> + <?php echo $hsnav; ?> + <h1 id="mgnavt"><?php _g('Mageia.Org constitution')?></h1> + <div id="doc4" class="yui-t7"> + <div id="bd" role="main"> + <div class="yui-g"> + <div class="para preambule"> + <div id="preamble"> + <p><?php echo sprintf(_r('Original and definitive version (in French) is available from %s. These <em>may</em> be improved. Do not hesitate to mail your patches; check how in the %s.'), + '<a href="//svnweb.mageia.org/org/constitution/">svnweb.mageia.org/org/constitution</a>', + '<a href="//svnweb.mageia.org/org/constitution/README.md?revision=HEAD&view=markup">README</a>')?></p> + </div> + </div> + <div class="para"> + <?php + include G_APP_ROOT . '/lib/php-markdown/markdown.php'; + if(in_array($locale, array('en', 'fr', 'sl', 'tr', 'ro', 'de', 'pt-br', 'el', 'id', 'uk', 'ru', 'es', 'eu'))) { + echo Markdown(file_get_contents('mageia.org_statutes_' . $locale . '.md')); + } else { + echo Markdown(file_get_contents('mageia.org_statutes_en.md')); + } + ?> + </div> + </div> + </div> + </div> +</body> +</html> |