aboutsummaryrefslogtreecommitdiffstats
path: root/en/4/index.php
blob: eacf6ce5e3f934842bdb05aa214882ef6c258a9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
define('HLANG', true);
define('ALIGNMENT', 'Center');
require '../../langs.php';
$rtl = is_locale_rtl($locale);

$dictionary = read_translation_file($locale, array('4', 'common_footer'));
?>
<!DOCTYPE html>
<html <?php echo $rtl ? 'dir="rtl"' : 'dir="ltr"'?> lang="<?php echo $locale; ?>">
<head>
    <meta charset="utf-8">
    <title><?php _g('Mageia 4')?></title>
    <link rel="stylesheet" href="/g/style/all.css">
    <?php echo common_header(); ?>
    <meta name="description" content="<?php _g('Mageia 4 is the new, solid, stable Linux distribution from the Mageia project.')?>">
    <?php include '../../analytics.php'; ?>
    <style>.para{text-align: justify;text-align: -webkit-auto;}
    .bg-caption { background-color: rgba(38, 47, 69, 0.5); color: white; font-weight: bolder}
    .bg-caption a { color: rgba(38, 47, 69, 0.9) }
    .carousel-indicators li { height: 5px }
    .carousel-indicators .active { background-color: rgba(14, 142, 255, 1) }
    </style>
</head>

<body class="downloads">
    <?php echo $hsnav; ?>
    <h1 id="mgnavtitle"><a href="../4/">Mageia 4</a></h1>
    <?php include '../4/nav.php'; ?>
    <div id="doc5" class="yui-t3" style="margin-bottom: 0px;">
        <div id="bd" role="main">
            <div class="yui-ge bb1 row">
		<div class="yui-u first" style="width:55.5%">
                    <div class="para">

<?php _g('About Mageia 4', null, 'h2'); 

            _g('Mageia 4 is a GNU/Linux distribution for your computer, released by the <a href="%s">Mageia community</a>. It can be installed in several ways, with the Live or Classical ISOs being the most popular methods.', array('../community'), 'p');?>

	    <p><a href="../4/download_index.php" style="background: #1272B1; color: white; padding: 0.9em; margin: 1em; display: inline-block; text-shadow: 0 1px 6px #000; border-radius: 3px;"><?php _g('Download it right away!');?></a></p>

<?php	    _g('Live ISO\'s let you try Mageia without installation. Use <a href="%s">these instructions</a> to put the Live ISO on a CD, DVD or USB device. Then you can run Mageia 4 directly from there, and try Mageia using one of the graphical user interfaces such as GNOME or KDE.', array(_r('https://wiki.mageia.org/en/Installation_Media#Dump_Mageia_ISO_on_a_USB_flash_drive')), 'p');
            _g('If you are happy with the Mageia experience, you can then install it onto your hard drive from the Live media.', null, 'p');

            _g('The Classical ISO is the more traditional way to install Mageia directly. Take a look at the complete <a href="%s">documentation</a> for this installer.', array('../doc/'), 'p');

            _g('Mageia 4 includes several desktop managers including KDE, Gnome, XFCE, Mate, and Cinnamon.', null, 'p');

            _g('There are lots of applications in the official repositories. You can have a look at the <a href="%s">Mageia Application Database</a> to get a complete list of packages inside Mageia.', array('//madb.mageia.org'), 'p');

            _g('What\'s new?', null, 'h2');

            _g('There\'s plenty of new goodness in Mageia 4, too much to include here - see the <a hreflang="en" href="%s">release notes</a> for an extensive exposé.',array($releasenotes), 'p');

            _g('To help users configure and use Mageia, and to provide some information about the community and the project, we\'ve added the new <a href="%s">MageiaWelcome</a>.It starts automatically when a session opens for the first time in any of the graphical environments.',array(_r('https://wiki.mageia.org/en/Feature:MageiaWelcome')), 'p');

            require '../doc/doc.php';
            _g('We\'ve added two new desktop environments: Mate and Cinnamon, both available from the classic installer DVD/ISO. To make it more friendly we re-factored the <a href="%s">custom desktop choice</a>.',array('//doc.mageia.org/installer/4/' . doc_present_in_locale('installer', 4) . '/content/choosePackageGroups.html'), 'p');

            _g('There\'s been a lot of work done on Mageia software. Many packages were ported from Gtk2 to Gtk3, to use more modern components. We\'ve also ported all the tools from the deprecated usermode to polkit when privileges are needed.', null, 'p'); 

            _g('TexLive used to need around 1GB of data for installation - now it\'s separated into 3 packages which will usually mean a much smaller footprint.', null, 'p');
	    ?>
    </div>
 </div>

    <div class="yui-u" style="width:44.5%">
     <div id="banner" style="text-align:center; display: block; padding: 2em 0em 4em;">

<div id="carouselMga" class="carousel carousel-fade slide" data-ride="carousel">
    <ol class="carousel-indicators">
<?php
for ($i = 0; $i < 12; $i++) {
    $li = sprintf('<li data-target="#carouselMga" data-slide-to="%s"%s></li>'. PHP_EOL, $i, $i == 0 ? ' class="active"' : '');
    echo $li;
}
?>
    </ol>
<div class="carousel-inner">
<?php
function carousel($src, $ttl, $active = false){
    $div = sprintf('<div class="carousel-item%s">', $active ? ' active' : '') ;
    $div .= sprintf('<img class="d-block rounded-lg img-fluid"') ;
    $div .= sprintf (' src="%s" alt="%s" title="%s">',$src, $ttl, $ttl);
    $div .= sprintf('<div class="carousel-caption d-none d-md-block bg-caption">');
    $div .= sprintf('<h5>%s</h5>',$ttl);
    $div .= sprintf('</div>');
    $div .= sprintf ('</div>'. PHP_EOL);
    echo $div;
}
        carousel('/g/4/kde.png', 'KDE', true );
        carousel('/g/4/razorqt.png', 'RazorQT');
        carousel('/g/4/xfce.png', 'XFCE');
        carousel('/g/4/gnome.png', 'GNOME');
        carousel('/g/4/cinnamon.png', 'CINNAMON');
        carousel('/g/4/mate.png', 'mate');
        carousel('/g/4/mageiawelcome1.png', 'mageiawelcome1');
        carousel('/g/4/mageiawelcome2.png', 'mageiawelcome2');
        carousel('/g/4/mageiawelcome3.png', 'mageiawelcome3');
        carousel('/g/4/mageiawelcome4.png', 'mageiawelcome4');
        carousel('/g/4/mageiawelcome5.png', 'mageiawelcome5');
        carousel('/g/4/drakconf.png', _r('Mageia Control Center') );
?>
        <a class="carousel-control-prev" href="#carouselMga" role="button" data-slide="prev">
            <span class="carousel-control-prev-icon" aria-hidden="true"></span>
            <span class="sr-only"><?php _r('previous')?></span>
        </a>
        <a class="carousel-control-next" href="#carouselMga" role="button" data-slide="next">
            <span class="carousel-control-next-icon" aria-hidden="true"></span>
            <span class="sr-only"><?php _r('next')?></span>
        </a>
    </div>
</div>
</div> <!-- div banner -->

<div class="para" style="padding: 1em 2em 1em 0em">

       <?php
         _g('Mageia in context', null, 'h2');

           _g('Mageia is both a Community and a Linux Distribution, with Mageia 4 being our fourth release.', null, 'p');

           _g('Mageia 4 is supported by the <a href="%s">Mageia.org nonprofit organisation</a>, which is  governed by a body of recognized and elected contributors.',array('../about/'), 'p');

           _g('Mageia 4 has been made by more than <a href="%s">100 people from all around the world</a>.',array('//people.mageia.org/g/'), 'p');

           _g('Our work adds to the excellent work of the wider Linux and Free Software community. We aim to blend all the excellent work done by the community, adding the special Mageia ingredients, to bring you the best, most stable, reliable and enjoyable experience we can make for regular users, developers and businesses.', null, 'p');

           _g('We welcome new contributors to any of the many different teams that go to make up Mageia the Community, and we encourage you to <a href="%s">join us</a>.', array('../contribute'), 'p');
       ?>
 </div>

</div>
</div>
</div>
</div>
<?php echo common_footer($locale); ?>
  </body>
</html>