diff options
author | filip <filip.komar@gmail.com> | 2020-10-28 17:19:11 +0100 |
---|---|---|
committer | filip <filip.komar@gmail.com> | 2020-10-28 17:19:11 +0100 |
commit | 5c6789a878c6fd81c4251ac491ea8b754564e349 (patch) | |
tree | 1d13551bdabe385aa6939cf27309b0a6980c655d /en/7 | |
parent | 0fee5144c10b0d5141886affe0c4a44dd4306ec2 (diff) | |
download | www-5c6789a878c6fd81c4251ac491ea8b754564e349.tar www-5c6789a878c6fd81c4251ac491ea8b754564e349.tar.gz www-5c6789a878c6fd81c4251ac491ea8b754564e349.tar.bz2 www-5c6789a878c6fd81c4251ac491ea8b754564e349.tar.xz www-5c6789a878c6fd81c4251ac491ea8b754564e349.zip |
adding RTL support for mga7 page
Diffstat (limited to 'en/7')
-rw-r--r-- | en/7/download_index.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/en/7/download_index.php b/en/7/download_index.php index cd9de451c..e73a8ab17 100644 --- a/en/7/download_index.php +++ b/en/7/download_index.php @@ -14,6 +14,7 @@ define('ALIGNMENT', 'Center'); require '../../langs.php'; $dictionary = read_translation_file($locale, array('7', 'common_footer')); +$rtl = is_locale_rtl($locale); function get_mageia($name, $version, $release) { @@ -58,7 +59,7 @@ function get_image($ttl, $src, $sty){ ?> <!DOCTYPE html> -<html dir="ltr" lang="<?php echo $locale; ?>"> +<html <?php echo $rtl ? 'dir="rtl"' : 'dir="ltr"'?> lang="<?php echo $locale; ?>"> <head> <meta charset="utf-8"> <title><?php echo sprintf(_g('Download').' '. '%s %s %s', $name, $version, $release)?></title> @@ -86,7 +87,7 @@ input[type="radio"], input[type="submit"], .popover-content { } </style> </head> -<body class="release downloads"> +<body class="release downloads" <?php echo $rtl ? 'style="text-align: right;"' : ''?>> <?php echo $hsnav; ?> <h1 id="mgnavt"><?php echo sprintf(_g('Download') . ' <strong>%s %s %s</strong>',$name, $version, $release)?></h1> |