aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/driver/sqlite.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-07-23 11:13:25 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2013-07-23 11:13:25 -0500
commit485c6ab3553f518b157610ee1144bbcbef63f797 (patch)
tree0c50392c4716511e118eeabd3f48cceb3ac7e906 /phpBB/phpbb/db/driver/sqlite.php
parent41d8bfa974900c9befbde06cc08060eb8a552ec8 (diff)
parentbe59885d5fd4b44f1c43994dec928eda816f9ab8 (diff)
downloadforums-485c6ab3553f518b157610ee1144bbcbef63f797.tar
forums-485c6ab3553f518b157610ee1144bbcbef63f797.tar.gz
forums-485c6ab3553f518b157610ee1144bbcbef63f797.tar.bz2
forums-485c6ab3553f518b157610ee1144bbcbef63f797.tar.xz
forums-485c6ab3553f518b157610ee1144bbcbef63f797.zip
Merge branch 'develop' of github.com:phpbb/phpbb3 into ticket/11667
# By Joas Schilling (224) and others # Via Andreas Fischer (23) and others * 'develop' of github.com:phpbb/phpbb3: (385 commits) [ticket/11734] Readd accidently removed language strings of forum permissions [ticket/11620] Whitespace and combine function into test_case [ticket/11620] Move check_ban_test functions to setUp/tearDown for clarity [ticket/11620] Changed incorrect global variable [ticket/11620] Minor indentation changes and comment clarity [ticket/11733] Fix "Illegal offset type" Warning caused by overall feed [ticket/11733] Add browse test for feed.php [ticket/11731] Remove static calls to captcha garbage collector [ticket/11728] Replace topic_approved with topic_visibility [ticket/11620] Expected and actual test conditions wrongly swapped [ticket/11620] Space between . in directory import concatenation [ticket/11620] Changes to match merge [ticket/11620] Changes for code guidelines consistency [ticket/11620] Fix a static calls to non-static for session captcha [ticket/11620] Cleanup creation_test that was renamed on a cherry-pick [ticket/11620] Update auth_provider for new interface [ticket/11620] Added garbage_collection_test [ticket/11620] Fixed check_ban_test errors with cache and ban warning message [ticket/11620] Fixed a typo on check_ban_test [ticket/11620] Refactored check_isvalid_test to use session_test_case ...
Diffstat (limited to 'phpBB/phpbb/db/driver/sqlite.php')
-rw-r--r--phpBB/phpbb/db/driver/sqlite.php365
1 files changed, 365 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/driver/sqlite.php b/phpBB/phpbb/db/driver/sqlite.php
new file mode 100644
index 0000000000..7188f0daa2
--- /dev/null
+++ b/phpBB/phpbb/db/driver/sqlite.php
@@ -0,0 +1,365 @@
+<?php
+/**
+*
+* @package dbal
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+/**
+* @ignore
+*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
+/**
+* Sqlite Database Abstraction Layer
+* Minimum Requirement: 2.8.2+
+* @package dbal
+*/
+class phpbb_db_driver_sqlite extends phpbb_db_driver
+{
+ var $connect_error = '';
+
+ /**
+ * Connect to server
+ */
+ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false, $new_link = false)
+ {
+ $this->persistency = $persistency;
+ $this->user = $sqluser;
+ $this->server = $sqlserver . (($port) ? ':' . $port : '');
+ $this->dbname = $database;
+
+ $error = '';
+ if ($this->persistency)
+ {
+ if (!function_exists('sqlite_popen'))
+ {
+ $this->connect_error = 'sqlite_popen function does not exist, is sqlite extension installed?';
+ return $this->sql_error('');
+ }
+ $this->db_connect_id = @sqlite_popen($this->server, 0666, $error);
+ }
+ else
+ {
+ if (!function_exists('sqlite_open'))
+ {
+ $this->connect_error = 'sqlite_open function does not exist, is sqlite extension installed?';
+ return $this->sql_error('');
+ }
+ $this->db_connect_id = @sqlite_open($this->server, 0666, $error);
+ }
+
+ if ($this->db_connect_id)
+ {
+ @sqlite_query('PRAGMA short_column_names = 1', $this->db_connect_id);
+// @sqlite_query('PRAGMA encoding = "UTF-8"', $this->db_connect_id);
+ }
+
+ return ($this->db_connect_id) ? true : array('message' => $error);
+ }
+
+ /**
+ * Version information about used database
+ * @param bool $raw if true, only return the fetched sql_server_version
+ * @param bool $use_cache if true, it is safe to retrieve the stored value from the cache
+ * @return string sql server version
+ */
+ function sql_server_info($raw = false, $use_cache = true)
+ {
+ global $cache;
+
+ if (!$use_cache || empty($cache) || ($this->sql_server_version = $cache->get('sqlite_version')) === false)
+ {
+ $result = @sqlite_query('SELECT sqlite_version() AS version', $this->db_connect_id);
+ $row = @sqlite_fetch_array($result, SQLITE_ASSOC);
+
+ $this->sql_server_version = (!empty($row['version'])) ? $row['version'] : 0;
+
+ if (!empty($cache) && $use_cache)
+ {
+ $cache->put('sqlite_version', $this->sql_server_version);
+ }
+ }
+
+ return ($raw) ? $this->sql_server_version : 'SQLite ' . $this->sql_server_version;
+ }
+
+ /**
+ * SQL Transaction
+ * @access private
+ */
+ function _sql_transaction($status = 'begin')
+ {
+ switch ($status)
+ {
+ case 'begin':
+ return @sqlite_query('BEGIN', $this->db_connect_id);
+ break;
+
+ case 'commit':
+ return @sqlite_query('COMMIT', $this->db_connect_id);
+ break;
+
+ case 'rollback':
+ return @sqlite_query('ROLLBACK', $this->db_connect_id);
+ break;
+ }
+
+ return true;
+ }
+
+ /**
+ * Base query method
+ *
+ * @param string $query Contains the SQL query which shall be executed
+ * @param int $cache_ttl Either 0 to avoid caching or the time in seconds which the result shall be kept in cache
+ * @return mixed When casted to bool the returned value returns true on success and false on failure
+ *
+ * @access public
+ */
+ function sql_query($query = '', $cache_ttl = 0)
+ {
+ if ($query != '')
+ {
+ global $cache;
+
+ // EXPLAIN only in extra debug mode
+ if (defined('DEBUG'))
+ {
+ $this->sql_report('start', $query);
+ }
+
+ $this->query_result = ($cache && $cache_ttl) ? $cache->sql_load($query) : false;
+ $this->sql_add_num_queries($this->query_result);
+
+ if ($this->query_result === false)
+ {
+ if (($this->query_result = @sqlite_query($query, $this->db_connect_id)) === false)
+ {
+ $this->sql_error($query);
+ }
+
+ if (defined('DEBUG'))
+ {
+ $this->sql_report('stop', $query);
+ }
+
+ if ($cache && $cache_ttl)
+ {
+ $this->open_queries[(int) $this->query_result] = $this->query_result;
+ $this->query_result = $cache->sql_save($this, $query, $this->query_result, $cache_ttl);
+ }
+ else if (strpos($query, 'SELECT') === 0 && $this->query_result)
+ {
+ $this->open_queries[(int) $this->query_result] = $this->query_result;
+ }
+ }
+ else if (defined('DEBUG'))
+ {
+ $this->sql_report('fromcache', $query);
+ }
+ }
+ else
+ {
+ return false;
+ }
+
+ return $this->query_result;
+ }
+
+ /**
+ * Build LIMIT query
+ */
+ function _sql_query_limit($query, $total, $offset = 0, $cache_ttl = 0)
+ {
+ $this->query_result = false;
+
+ // if $total is set to 0 we do not want to limit the number of rows
+ if ($total == 0)
+ {
+ $total = -1;
+ }
+
+ $query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total);
+
+ return $this->sql_query($query, $cache_ttl);
+ }
+
+ /**
+ * Return number of affected rows
+ */
+ function sql_affectedrows()
+ {
+ return ($this->db_connect_id) ? @sqlite_changes($this->db_connect_id) : false;
+ }
+
+ /**
+ * Fetch current row
+ */
+ function sql_fetchrow($query_id = false)
+ {
+ global $cache;
+
+ if ($query_id === false)
+ {
+ $query_id = $this->query_result;
+ }
+
+ if ($cache && $cache->sql_exists($query_id))
+ {
+ return $cache->sql_fetchrow($query_id);
+ }
+
+ return ($query_id !== false) ? @sqlite_fetch_array($query_id, SQLITE_ASSOC) : false;
+ }
+
+ /**
+ * Seek to given row number
+ * rownum is zero-based
+ */
+ function sql_rowseek($rownum, &$query_id)
+ {
+ global $cache;
+
+ if ($query_id === false)
+ {
+ $query_id = $this->query_result;
+ }
+
+ if ($cache && $cache->sql_exists($query_id))
+ {
+ return $cache->sql_rowseek($rownum, $query_id);
+ }
+
+ return ($query_id !== false) ? @sqlite_seek($query_id, $rownum) : false;
+ }
+
+ /**
+ * Get last inserted id after insert statement
+ */
+ function sql_nextid()
+ {
+ return ($this->db_connect_id) ? @sqlite_last_insert_rowid($this->db_connect_id) : false;
+ }
+
+ /**
+ * Free sql result
+ */
+ function sql_freeresult($query_id = false)
+ {
+ global $cache;
+
+ if ($query_id === false)
+ {
+ $query_id = $this->query_result;
+ }
+
+ if ($cache && $cache->sql_exists($query_id))
+ {
+ return $cache->sql_freeresult($query_id);
+ }
+
+ return true;
+ }
+
+ /**
+ * Escape string used in sql query
+ */
+ function sql_escape($msg)
+ {
+ return @sqlite_escape_string($msg);
+ }
+
+ /**
+ * Correctly adjust LIKE expression for special characters
+ * For SQLite an underscore is a not-known character... this may change with SQLite3
+ */
+ function sql_like_expression($expression)
+ {
+ // Unlike LIKE, GLOB is case sensitive (unfortunatly). SQLite users need to live with it!
+ // We only catch * and ? here, not the character map possible on file globbing.
+ $expression = str_replace(array(chr(0) . '_', chr(0) . '%'), array(chr(0) . '?', chr(0) . '*'), $expression);
+
+ $expression = str_replace(array('?', '*'), array("\?", "\*"), $expression);
+ $expression = str_replace(array(chr(0) . "\?", chr(0) . "\*"), array('?', '*'), $expression);
+
+ return 'GLOB \'' . $this->sql_escape($expression) . '\'';
+ }
+
+ /**
+ * return sql error array
+ * @access private
+ */
+ function _sql_error()
+ {
+ if (function_exists('sqlite_error_string'))
+ {
+ $error = array(
+ 'message' => @sqlite_error_string(@sqlite_last_error($this->db_connect_id)),
+ 'code' => @sqlite_last_error($this->db_connect_id),
+ );
+ }
+ else
+ {
+ $error = array(
+ 'message' => $this->connect_error,
+ 'code' => '',
+ );
+ }
+
+ return $error;
+ }
+
+ /**
+ * Build db-specific query data
+ * @access private
+ */
+ function _sql_custom_build($stage, $data)
+ {
+ return $data;
+ }
+
+ /**
+ * Close sql connection
+ * @access private
+ */
+ function _sql_close()
+ {
+ return @sqlite_close($this->db_connect_id);
+ }
+
+ /**
+ * Build db-specific report
+ * @access private
+ */
+ function _sql_report($mode, $query = '')
+ {
+ switch ($mode)
+ {
+ case 'start':
+ break;
+
+ case 'fromcache':
+ $endtime = explode(' ', microtime());
+ $endtime = $endtime[0] + $endtime[1];
+
+ $result = @sqlite_query($query, $this->db_connect_id);
+ while ($void = @sqlite_fetch_array($result, SQLITE_ASSOC))
+ {
+ // Take the time spent on parsing rows into account
+ }
+
+ $splittime = explode(' ', microtime());
+ $splittime = $splittime[0] + $splittime[1];
+
+ $this->sql_report('record_fromcache', $query, $endtime, $splittime);
+
+ break;
+ }
+ }
+}
> -rw-r--r--HTML/index-ru.html115
-rw-r--r--HTML/index-sc.html115
-rw-r--r--HTML/index-sk.html115
-rw-r--r--HTML/index-sl.html115
-rw-r--r--HTML/index-sr.html115
-rw-r--r--HTML/index-sr@Latn.html115
-rw-r--r--HTML/index-sv.html115
-rw-r--r--HTML/index-ta.html115
-rw-r--r--HTML/index-tg.html115
-rw-r--r--HTML/index-th.html115
-rw-r--r--HTML/index-tl.html115
-rw-r--r--HTML/index-tr.html115
-rw-r--r--HTML/index-uk.html115
-rw-r--r--HTML/index-ur.html115
-rw-r--r--HTML/index-vi.html115
-rw-r--r--HTML/index-wa.html115
-rw-r--r--HTML/index-zh_CN.html115
-rw-r--r--HTML/index-zh_TW.html115
-rw-r--r--HTML/index.html25
-rw-r--r--HTML/mdalinux.jpgbin4172 -> 0 bytes-rw-r--r--HTML/mdkclub.pngbin2479 -> 0 bytes-rw-r--r--HTML/mdkexpert.pngbin3230 -> 0 bytes-rw-r--r--HTML/mdklinux.pngbin2268 -> 0 bytes-rw-r--r--HTML/mdkonline.pngbin2403 -> 0 bytes-rw-r--r--HTML/mdksoft.pngbin2169 -> 0 bytes-rw-r--r--HTML/mdkstore.pngbin3102 -> 0 bytes-rw-r--r--HTML/new-en.pngbin1152 -> 0 bytes-rw-r--r--HTML/placeholder.h56
-rw-r--r--HTML/screen.css49
-rw-r--r--HTML/script.js71
-rw-r--r--HTML/testonline.html24
83 files changed, 157 insertions, 7545 deletions
diff --git a/HTML/banner.png b/HTML/banner.png
deleted file mode 100644
index a100faa..0000000
--- a/HTML/banner.png
+++ /dev/null
Binary files differ
diff --git a/HTML/bullet-blue.png b/HTML/bullet-blue.png
deleted file mode 100644
index 300aaa3..0000000
--- a/HTML/bullet-blue.png
+++ /dev/null
Binary files differ
diff --git a/HTML/bullet-grey.png b/HTML/bullet-grey.png
deleted file mode 100644
index 276e9d8..0000000
--- a/HTML/bullet-grey.png
+++ /dev/null
Binary files differ
diff --git a/HTML/contribute.png b/HTML/contribute.png
deleted file mode 100644
index ec58850..0000000
--- a/HTML/contribute.png
+++ /dev/null
Binary files differ
diff --git a/HTML/images/bg.png b/HTML/images/bg.png
new file mode 100644
index 0000000..5b14025
--- /dev/null
+++ b/HTML/images/bg.png
Binary files differ
diff --git a/HTML/index-af.html b/HTML/index-af.html
deleted file mode 100644
index 3bc414a..0000000
--- a/HTML/index-af.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="af">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=af">
- <title>Veels geluk met die keuse van Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva voorsien 'n volledige reeks produkte en dienste om u te help om die meeste van u Mandriva Linux-stelsel te maak. Wys-en-kliek en u kan alles aangaande Mandriva Linux uitvind!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Die mandriva.com webwerf voorsien u al die detail om in voeling te bly met die voorsiener van die Linux-stelsel met die meeste kenmerke en bruikbaarheid.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online is die nuutste diens verskaf deur Mandriva. Dit laat u toe om u rekenaar opgedateer te hou deur 'n gesentraliseerde en outomatiese diens.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com is die webwerf wat aan die Linux-gemeenskap en oopbron-Linuxprojekte toegewy is.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club is die webwerf vir Mandriva Linux-gebruikers. Teken in vir lidmaatskap met eksklusiewe voordele: eksklusiewe forumtoegang, RPMs en produkaflaai, afslag op Mandriva Linux produkte en veel meer!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store is Mandriva se aanlynwinkel. Te danke aan die nuwe voorkom-en-gevoel, is die aankoop van produkte, dienste en derdepartyoplossings nog nooit so maklik gewees nie!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small><a href="http://www.mandrivaexpert.com/">Mandriva Expert</a> is die beste plek on bystand te verkry van Mandriva se ondersteuningspersoneel.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-am.html b/HTML/index-am.html
deleted file mode 100644
index f83cf6c..0000000
--- a/HTML/index-am.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="am">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=am">
- <title>Mandriva Linuxን በመምረጦ የምስራች!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva offers a comprehensive range of products and services to help you make the most of your Mandriva Linux system. Just point and click and find out everything about Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>The mandriva.com website provides all the details for keeping in touch with the publisher of the Linux system with the most features and best usability.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online በMandriva የሚሰጥ የቅርብ ጊዜ አገልግሎት ነው።ኮምፒውተሮን ማእከላዊ እና ራስ-ገዝ በሆነ አገልግሎት ዘመናዊ አድርጎ ለማቆየት ይረዳዎታል።</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com የሊኑክስ ማህበረሰብን እና የopen source ሊኑክስ የስራ እቅዶችን ለመጥቀም ቆርጦ የተነሳ ድረ-ገጽ ነው።</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- የMandriva ክለብ -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>የMandriva ክለብ</b></small></a>
- <p align="justify"><small>Mandriva ክበብ፣ ለMandriva Linux ተጠቃሚዎች ቆርጦ የተነሳ ግረ-ገጽ ነው። </small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- የMandriva መደብር -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>የMandriva መደብር</b></small></a>
- <p align="justify"><small>Mandriva Store የMandriva የመስመር ላይ መደብር ነው። ለአዲሱ እይታና-ስሜትምስጋና ይግባው እና፤ የምርቶች፣ የአገልግሎቶች ወይም የሶስተኛ አካል ዘዴዎች ግዢ ቀላል አልነበረም!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- የMandriva ባለሞያ -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>የMandriva ባለሞያ</b></small></a>
- <p align="justify"><small>Mandriva Expert ከMandriva ድጋፍ ቡድን እርዳታ ለማግኘት ቀዳሚ መድረሻ ነው።</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-ar.html b/HTML/index-ar.html
deleted file mode 100644
index 7a11a53..0000000
--- a/HTML/index-ar.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="ar">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=ar">
- <title>مبروك عليك لاختيارك ماندريبا لينكس !</title>
- </head>
-
-
- <body bgcolor="#FFFFFF" dir="rtl">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify" style="text-justify: kashida;"><small>توفّر ماندريبا مجموعة متنوعة من المنتجات والخدمات كي تساعدك بالحصول على الأفضل من نظام ماندريبا لينكس الخاص بك. فقط أشر واضغط واكتشف كل شيء حول ماندريبا لينكس!</small></p>
-
- <br>
-
-
-
- <table dir="rtl">
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>موقع mandriva.com يُزوّدك بكل التفاصيل للبقاء على اتصال مع ناشر نظام لينكس بكل الميزات وأفضل استخدام.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- ماندريبا على الخطّ -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>ماندريبا على الخطّ</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>ماندريبا أنلاين هو أحدث خدمة تقدمها ماندريبا. تسمح لك بإبقاء حاسبك مُحدّثاً من خلال خدمة مركزيّة آلية.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>موقع Mandriva Linux.com هو مُخصص لمجتمع لينكس ومشاريع المصدر المفتوح.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- نادي ماندريبا -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>نادي ماندريبا</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>نادي ماندريبا هو الموقع المخصص لمستخدمي ماندريبا لينكس. التسجيل للعضوية يمنحك مزايا حصرية: الوصول الحصري إلى المنتديات، تنزيل المنتجات وحزمات RPM، والخصومات الخاصة لمنتجات ماندريبا لينكس وأكثر بكثير!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- دكّان ماندريبا -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>دكّان ماندريبا</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>ماندريباستور ه المتجر الخاص بماندريبا على الخط. بفضل مظهره الجديد فقد أصبح شراء المنتجات، والخدمات أو الحلول من الأطراف الثالثة أسهل من من أي وقت مضى!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- خبير ماندريبا -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>خبير ماندريبا</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>ماندريبا إكسبرت هو الوجهة الأولى للحصول على المساعدة من فريق دعم ماندريبا.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-az.html b/HTML/index-az.html
deleted file mode 100644
index 7f50ee2..0000000
--- a/HTML/index-az.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="az">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=az">
- <title>Mandriva Linux seçdiyiniz üçün təbriklər!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva Mandriva Linux sisteminizdən ən yüksək mənfəəti əldə etmək üçün sizə aşağıdakı dəstək və xidmətləri təklif edir:</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Mandriva.com veb saylı ən sevdiyiniz Linuks distribyusiyasının nəşr edicisi ilə əlaqəyə keçmək üçün lazımi mə'lumatları daxil edir.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online, Mandriva tərəfindən verilən ən yeni xidmətdir. Mərkəzi bir yeniləmə xidməti vasitəsiylə kompüterinizin daima yeni qalmasına yardımçı olacaqdır.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com səhifəsi Linux cəmiyyətinə və açıq mənbəli Linux layihələrinə qulluq edən bir mənbədir.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club Mandriva Linux istifadəçiləri üçün yaradılmış saytdır.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store, Mandriva-un online dükkanıdır.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert Mandriva dəstək komandasından və istifadəçilərdən texniki yardım almaq üçün bir nömrəli yerdir.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-bg.html b/HTML/index-bg.html
deleted file mode 100644
index d505775..0000000
--- a/HTML/index-bg.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="bg">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=bg">
- <title>Благодарим ви, че избрахте Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva предлага голям набор продукти и услуги,за да Ви помогне да се справите по-добре с Mandriva Linux. </small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Сайтът на Мандрива ви дава цялата необходима информация,за да бъдете в крак с последните новини за вашата любима Линукс дистрибуция.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online е най-новата услуга, предлагана от Mandriva. С нейна помощ вашият компютър ще бъде винаги с обновен софтуер, благодарение на автоматизираната услуга.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com e web сайт, посветен на Linux общността, и open source Linux проектите.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Мандрива Клуб -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Мандрива Клуб</b></small></a>
- <p align="justify"><small>Mandriva Club e сайтъ на Mandriva Linux потребителите. Ако се регистрирате, ще получите достъп до форуми, RPM пакети, софтуер, отстъпки за продукти на Mandriva Linux и много повече!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Мандрива Магазин -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Мандрива Магазин</b></small></a>
- <p align="justify"><small>Mandriva Store е онлайн магазина на Mandriva. Благодарение на уникалния му дизайн закупуването на продукти, услуги и решения е по-лесно от всякога!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Мандрива Експерт -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Мандрива Експерт</b></small></a>
- <p align="justify"><small>MandrivaExpert е мястото за всички помощни услуги.Там ще получите съвети от нашия екип или от общността на потребителите.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-bn.html b/HTML/index-bn.html
deleted file mode 100644
index 362afbe..0000000
--- a/HTML/index-bn.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="bn">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=bn">
- <title>Mandriva Linux পছন্দ করার জন্য আপনাকে অভিনন্দন!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva Linux সিস্টেমের জন্য Mandriva আপনাকে ব্যাপক সংখ্যক পন্য এবং সেবা প্রদান করে থাকে। শুধু নির্দিষ্ট করুন এবং ক্লিক্ করুন এবং Mandriva Linux সমন্ধে সবকিছু জানুন।</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>mandriva.com ওয়েবসাইটে আপনার প্রিয় লিনাক্স ডিস্ট্রিবিউশন প্রকাশকের সাথে যোগাযোগ বজায় রাখার জন্য সকল প্রয়োজনীয় বিবরণ উপস্থিত আছে।</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- ম্যান্ড্রিবঅনলাইন (Mandriva Online) -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>ম্যান্ড্রিবঅনলাইন (Mandriva Online)</b></small></a>
- <p align="justify"><small>Mandriva Online Mandriva প্রদত্ত একটি নতুন সেবা। কেন্দ্রীয় এবং সয়ংক্রিয় সেবার মাধ্যমে এটা আপনার কম্পিউটারকে up-to-date রাখে।</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>লিনাক্স সম্প্রদায় এবং ওপেনসোর্স লিনাক্স প্রজেক্টসমূহের জন্যই Mandriva Linux.com ওয়েবসাইট নিবেদিত।</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Linux ব্যবহারকারীদের উদ্দেশ্যে Mandriva Club ওয়েবসাইট, সদস্য হিসেবে সাইন-আপ করলে আপনি একচেটিয়া কিছু সুবিধা পাবেন: ফোরামে একচেটিয়া বিচরণ, পণ্য এবং RPM ডাউনলোড, Mandriva Linux পন্যে ছাড় সহ আরও অনেক!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store Mandriva-এর অনলাইন বিক্রয় কেন্দ্র। এর নতুন চেহারা এবং অনুভুতিকে ধন্যবাদ কারণ পন্য ক্রয়, সার্ভিস বা তৃতীয় পক্ষের সমাধান এর আগে এত সহজ ছিলনা!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandrkaesoft-এর সাহায্যকারী দলের সাহায্য পেতে হলে Mandriva Expert হলো আপনার প্রাথমিক গন্তব্যস্থল।</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-bs.html b/HTML/index-bs.html
deleted file mode 100644
index dfe89e1..0000000
--- a/HTML/index-bs.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="bs">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=bs">
- <title>Čestitamo što ste odabrali Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva vam nudi niz proizvoda i usluga koji vam pomažu da izvučete maksimum iz vašeg Mandriva Linux sistema. Samo pokažite mišem i kliknite da saznate sve o Mandriva Linuxu!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Mandriva.com web stranica vam pruža sve detalje o ostajanju u vezi sa izdavačem vaše Linux distribucije sa najviše mogućnosti i najboljom upotrebljivošću.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online je najnovija usluga koju nudi Mandriva. Ona vam omogućuje da održavate vaš računar ažurnim koristeći centralizovan i automatizovan servis.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com je web stranica posvećena Linux zajednici i open-source projektima.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club je web stranica posvećena Mandriva Linux korisnicima. Prijavom za članstvo dobijate ekskluzivne pogodnosti: ekskluzivan pristup forumima, downloadu RPMova i proizvoda, popustima na Mandriva Linux proizvode i mnogo više!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store je Mandriva-ova online prodavnica. Zahvaljujući njenom novom izgledu, kupovina proizvoda, usluga kao i rješenja trećih lica nikad nije bila lakša!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert je primarno odredište za dobivanje podrške od Mandriva-ovog tima za podršku.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-ca.html b/HTML/index-ca.html
deleted file mode 100644
index fa13df5..0000000
--- a/HTML/index-ca.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="ca">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=ca">
- <title>Enhorabona per escollir Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva ofereix un complet ventall de productes i serveis per ajudar-vos a obtenir el màxim profit del vostre sistema Mandriva Linux. Cliqueu per saber qualsevol cosa en quant a Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>La pàgina web de mandriva.com proporciona tots els detalls per mantenir el contacte amb el publicador del sistema Linux amb més característiques i la millor usabilitat.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online és l'últim servei proporcionat per Mandriva. Permet mantenir el vostre ordinador actualitzar a través d'un servei centralitzat i automatitzat.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com és la pàgina web dedicada a la comunitat de Linux i els projectes de codi font obert.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club és la pàgina web dedicada als usuaris de Mandriva Linux. Crear-hi un compte porta beneficis exclusius: accés exclusiu als fòrums, descàrrega de RPMs i productes, descomptes en els productes Mandriva Linux i molt més!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store és la tenda en línia de Mandriva. Gràcies a la seva nova interfície la compra de productes, servis o solucions de tercers mai ha estat tan fàcil!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert és el destí principal per rebre assistència de l'equip de suport de Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-cs.html b/HTML/index-cs.html
deleted file mode 100644
index 61773a7..0000000
--- a/HTML/index-cs.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="cs">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=cs">
- <title>Gratulujeme k výběru operačního systému Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Společnost Mandriva zajišťuje kompletní rozsah služeb, které vám pomohou co nejvíce využít váš systém Mandriva Linux. Stačí ukázat a kliknout a zjistíte vše, co zjistit lze o distribuci Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Webové stránky mandriva.com vám poskytují všechny potřebné informace, které potřebujete vědět o autorovi vaší oblíbené distribuce Linuxu, která má nejvíce vlastností a nejlepší použitelnost.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online je nejnovější služba poskytovaná společností Mandriva. Umožňuje vám udržet svůj počítač aktuální pomocí centralizované a automatické služby.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com jsou webové stránky věnující se Linuxové komunitě a open source Linuxovým projektům.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club jsou webové stránky věnované uživatelům distribuce Mandriva Linux. Pokud se do klubu zapíšete, čekají na vás exkluzivní výhody: exkluzivní přístup k fórům, možnost stažení balíčků RPM a dalších produktů, slevy na produkty Mandriva Linux a další výhody!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store je online obchod společnosti Mandriva. Díky svému novému vzhledu a ovládání nebyl ještě nikdy nákup produktů, služeb a řešení třetích stran tak jednoduchý!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert je přední místo, kde vám bude asistovat tým technické podpory společnosti Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-cy.html b/HTML/index-cy.html
deleted file mode 100644
index 1f62ea5..0000000
--- a/HTML/index-cy.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="cy">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=cy">
- <title>Llongyfarchiadau ar ddewis Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mae Mandriva yn darparu ystod eang o gynnyrch a gwasanaethau i'ch cynorthwyo i wneud y mwyaf o'ch system Mandriva Linux. Dim ond pwyntio a chlicio sydd ei angen i wybod popeth am Mandriva Linux.</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Mae safle mandriva.com yn darparu'r holl wybodaeth angenrheidiol i gadw mewn cysylltiad â chyhoeddwr eich hoff ddosbarthiad Linux.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online yw'r gwasanaeth diweddaraf i Mandriva ei gyflwyno. Mae'n caniatáu i chi ddiweddaru eich cyfrifiadur drwy wasanaeth canolog ac awtomataidd.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com yw'r safle sydd wedi ei ymrwymo i gymuned Linux a phrojectau cod agored Linux.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club yw'r safle sy'n ymrwymedig i ddefnyddwyr Mandriva Linux. Mae ymuno â'r clwb yn dwyn manteision unigryw: mynediad i fforymau, RPMau a chynnyrch i'w llwytho i lawr, gostyngiadau ar gynnyrch Mandriva Linux a llawer mwy!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store yw siop ar-lein Mandriva. Diolch i'w ddiwyg newydd d'yw prynu cynnyrch, gwasanaethau darpariaeth trydydd parti eisoes wedi bod mor hawdd!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert yw'r man canolog ar gyfer derbyn cefnogaeth gan dîm cymorth Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-da.html b/HTML/index-da.html
deleted file mode 100644
index 4ad15dd..0000000
--- a/HTML/index-da.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="da">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=da">
- <title>Tillykke med valget af Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva tilbyder en omfattende samling af produkter og tjenester for at hjælpe dig med at få ud det meste af dit Mandriva Linux-system. Bare peg og klik for at finde ud af alt om Mandriva Linux! Der er særlige danske tips omkring Mandriva 10.2 på adressen http://klid.dk/sw/mdk102</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Webstedet mandriva.com har alle detaljerne for at holde kontakten vedlige med udgiveren af Linux-systemet med de fleste faciliteter og den bedste brugervenlighed.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online er den nyeste tjeneste som kommer fra Mandriva. Den giver dig mulighed for at holde din maskine opdateret via en centraliseret og automatiseret tjeneste.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com er webstedet dedikeret til Linux-fællesskabet og åben kildekode-projekter for Linux.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club er webstedet dedikeret til Mandriva Linux-brugere. Indmeldelse i klubben giver dig eksklusive fordele: eksklusiv adgang til fora, RPM'er og hjemhentning af produkter, rabatter på Mandriva Linux produkter og meget mere!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store er Mandrivas butik på nettet. Takket være dets nye design har det aldrig været nemmere at købe produkter, tjenester og tredjeparts-løsninger!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert er hovedstedet for at få hjælp fra Mandrivas kundestøtteteam.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-de.html b/HTML/index-de.html
deleted file mode 100644
index 70f9574..0000000
--- a/HTML/index-de.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="de">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=de">
- <title>Danke, dass Sie sich für Mandriva Linux entschieden haben.</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva bietet Ihnen eine umfangreiche Auswahl an Produkten und Diensten zur optimalen Nutzung Ihres Mandriva Linux Systems an. Per Mausklick finden Sie alles über Mandriva Linux heraus!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Die Webseite mandriva.com bietet Ihnen alle Details, um mit dem Hersteller der Linux Distribution mit den meisten Fähigkeiten und besten Benutzerfreundlichkeit in Verbindung zu bleiben.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online ist die neueste Dienstleistung von Mandriva. Es ermöglicht, den Computer immer auf dem neuesten Stand zu halten durch einen zentralisierten und automatisierten Dienst.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com ist die Webseite, welche der Linuxgemeinschaft und Open Source Linux Projekten gewidmet ist.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club ist die Webseite, welche Mandriva Linux Benutzern gewidmet ist. Das Anmelden der Mitgliedschaft bringt Ihnen exklusive Vorteile: exklusiver Zugang zu Foren, RPMs und Download von Produkten, Ermäßigungen auf Mandriva Linux Produkte und vieles mehr!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store ist Mandriva's Online-Shop. Das neue "Look-and-Feel" ist gelungen. Der Erwerb von Produkten, Diensten und Drittanbieter-Lösungen war nie so einfach!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert ist der wichtigste Ort um Hilfestellungen von Mandriva's Support Team zu erhalten.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-el.html b/HTML/index-el.html
deleted file mode 100644
index ebc70ac..0000000
--- a/HTML/index-el.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="el">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=el">
- <title>Σας ευχαριστούμε που επιλέξατε το Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Η Mandriva παρέχει μια πλήρη σειρά προϊόντων και υπηρεσιών για να σας βοηθήσει να πάρετε τα μέγιστα από το Mandriva Linux σύστημά σας. Απλά επιλέξτε, κάνετε κλικ και μάθετε τα πάντα για το Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Ο δικτυακός τόπος mandriva.com παρέχει όλες τις πληροφορίες για να βρίσκεστε σε επαφή με τον προμηθευτή του Linux συστήματός σας καθώς επίσης και πληροφορίες αναφορικά με τα περισσότερα χαρακτηριστικά και την μέγιστη χρησιμότητα.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Το Mandriva Online είναι μία από τις τελευταίες υπηρεσίες από την Mandriva. Σας επιτρέπεινα κρατάτε τον υπολογιστή σας πλήρως ενημερωμένο μέσα από μία κεντροποιημένη και αυτοματοποιημένη υπηρεσία.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Το Mandriva Linux.com είναι ένας διαδικτυακός τόπος αφιερωμένος στην κοινότητα του Linux και σταανοικτού κώδικα Linux έργα.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Το Mandriva Club είναι ένας διαδικτυακός τόπος αφιερομένος τους χρήστες της Mandriva Linux. Εγγραφείτε ως μέλη για να σας παρέχονται αποκλειστικά οφέλη: αποκλειστική πρόσβαση στους διαδικτυακού τόπους συζήτησης, σε RPM και προϊόντα για μεταφόρτωση, εκτώσεις σε προϊόντα της Mandriva Linux και πολλά περισσότερα!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>To Mandriva Store είναι το ηλεκτρονικό κατάστημα της Mandriva. Με νέα εμφάνισηη αγορά των προϊόντων, υπηρεσιών και τρίτων λύσεων δεν ήταν ποτέ τόσο εύκολη!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Το Mandriva Expert είναι ο βασικός προορισμός για να λαμβάνετε βοήθεια από την ομάδα υποστήριξης της Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-en.html b/HTML/index-en.html
deleted file mode 100644
index 5ccdd2e..0000000
--- a/HTML/index-en.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="en">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=en">
- <title>Congratulations for choosing Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva offers a comprehensive range of products and services to help you make the most of your Mandriva Linux system. Just point and click and find out everything about Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>The mandriva.com website provides all the details for keeping in touch with the publisher of the Linux system with the most features and best usability.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online is the latest service provided by Mandriva. It allows you to keep your computer up-to-date through a centralized and automated service.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com is the website dedicated to the Linux community and open source Linux projects.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club is the website dedicated to Mandriva Linux users. Signing up for membership brings you exclusive benefits: exclusive access to forums, RPMs and products download, discounts on Mandriva Linux products and much more!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store is the Mandriva's online store. Thanks to its new look-and-feel the purchase of products, services or third-party solutions has never been so easy!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert is the primary destination for receiving assistance from Mandriva's support team.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-eo.html b/HTML/index-eo.html
deleted file mode 100644
index d367442..0000000
--- a/HTML/index-eo.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="eo">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=eo">
- <title>Gratulon pro elekto de Mandriva-Linukso!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva provizas kompletan tutaĵon da servoj por helpi vin fari la maksimumon per via Mandriva-Linuksa sistemo. Sube troviĝas resumo de la vico da servoj kaj subtenoj de Mandriva:</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>La retpaĝo de mandriva.com provizas ĉiujn detalojn por resti en kontakto kun la eldonisto de via favorata Linuks-eldono.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online is the latest service provided by Mandriva. It allows you to keep your computer up-to-date through a centralized and automated service.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com is the website dedicated to the Linux community and open source Linux projects.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club is the website dedicated to Mandriva Linux users. Signing up for membership brings you exclusive benefits: exclusive access to forums, RPMs and products download, discounts on Mandriva Linux products and much more!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store is the Mandriva's online store. Thanks to its new look-and-feel the purchase of products, services or third-party solutions has never been so easy!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert is the primary destination for receiving assistance from Mandriva's support team.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-es.html b/HTML/index-es.html
deleted file mode 100644
index 5ccffae..0000000
--- a/HTML/index-es.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="es">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=es">
- <title>¡Felicidades por elegir Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva proporciona un amplio rango de servicios para ayudarle a sacar el máximo provecho de su sistema Mandriva Linux. ¡Con solo cliquear en los enlaces aquí debajo tendrá todas las informaciones sobre Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>El sitio web de mandriva.com proporciona todas las instrucciones para estar en contacto con el editor de la distribución de Linux con más funcionalidades y mayor facilidad de uso.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online es el último servicio brindado por Mandriva. Le permitirá mantener su equipo al día gracias a un servicio centralizado y automatizado.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com es el sitio web dedicado a la comunidad Linux y a los proyectos libres para Linux.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club es el sitio web dedicado a los usuarios de Mandriva Linux. El hacerse miembro del club le brinda privilegios exclusivos: acceso exclusivo a los foros, descargue de productos y paquetes RPM, descuentos sobre los productos Mandriva Linux y ¡mucho más!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store es la tienda en linea de Mandriva. Gracias a su nuevo aspecto la compra de productos, servicios y soluciones de terceros nunca fue tan simple.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert es la plataforma principal para recibir ayuda del equipo de soporte de Mandriva y de la comunidad de usuarios.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-et.html b/HTML/index-et.html
deleted file mode 100644
index c490e1c..0000000
--- a/HTML/index-et.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="et">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=et">
- <title>Täname, et valisite Mandriva Linuxi!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva pakub laia valikut teenuseid, mis aitavad Teil oma Mandriva Linuxi süsteemi täiuslikult ära kasutada. Klõpsake lihtsalt allpool toodud viitadele ja avastage, mida kõike Mandriva Linux Teile pakub!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Veebilehekülg www.mandriva.com pakub kõike, mida Teil on vaja teada oma lemmikust Linuxi distributsiooni uusimate arengute kohta.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online pakub kõike uuemat, mis Mandrival Teie tarbeks leidub. Selle abil saate hoida oma tarkvara automatiseeritud keskse teenuse abil alati kõige värskemana.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Veebilehekülg mandrivalinux.com on pühendatud kogu Linuxi kogukonnale ning Linuxi vaba tarkvara projektidele.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club on just Mandriva Linuxi kasutajatele mõeldud veebilehekülg. Alates eripakkumistest kuni ulatuslike hüvedeni on just Mandriva Club koht, kus Mandriva Linuxi kasutajad kokku saavad, kus nad võivad arutada probleeme, kust saab alla laadida sadu rakendusi ning kasutada ära klubiliikmetele ostmisel pakutavaid soodustusi.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store on Mandriva internetikauplus. Uuenenud väljanägemisega poes on toodete, teenuste ja meie partnerite pakutava ostmine muutunud enneolematult hõlpsaks!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert on kõigi Mandriva tugiteenuste süda ja aju. Siin saab abi otse Mandriva tugimeeskonnalt.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-eu.html b/HTML/index-eu.html
deleted file mode 100644
index 5131f37..0000000
--- a/HTML/index-eu.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="eu">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=eu">
- <title>Zorionak Mandriva Linux aukeratzeagatik!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva-ek Mandriva Linux sistemari etekinik handiena ateratzen lagunduko dizun produktu eta zerbitzuen aukera zabala eskaintzen dizu. Apuntatu eta klikatu eta aurkitu Mandriva Linux-i buruzko guztia!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Mandriva.com webguneak ezaugarri gehien eta erabilgarritasun onena duen Linux sistemaren argitaratzailearekin harremanetan mantentzeko xehetasun guztiak eskaintzen ditu.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online Mandrivaek eskainitako zerbitzu berriena da. Zure konputagailua eguneratuta mantentzeko aukera eskaintzen dizu zerbitzu zentralizatu eta automatizatu baten bitartez.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com Linux komunitateari eta software irekiko Linux projektuei eskainitako webgunea da.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>MandrivaClub Mandriva Linux erabiltzaileei eskainitako webgunea da. Partaide izateko izenemateak onura esklusiboak ematen dizkizu: foroetara sarrera esklusiboa, RPM eta produktuen jaitsiera, deskontuak Mandriva Linux produktuetan eta askoz gehiago!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store Mandrivaen lerroko denda da. Bere itxura-eta-izaera berriari esker produktuen, zerbitzuen edo hirugarrenen soluzio erosketa ez da sekula horren erraza izan!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert Mandrivaen euskarri taldearen laguntza jasotzeko oinarrizko jomuga da.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-fa.html b/HTML/index-fa.html
deleted file mode 100644
index 96ed1b4..0000000
--- a/HTML/index-fa.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="fa">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=fa">
- <title>برای انتخاب لینوکس ماندریبا به شما تبریک می‌گوئیم!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF" dir="rtl">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify" style="text-justify: kashida;"><small>نرم افزار ماندریبا گستره‌ی کاملی از سرویسها را برای کمک به ساختن قسمت اعظم از سیستم لینوکس ماندریبا تان را عرضه میکند. فقط اشاره و کلیک کنید تا همه چیز را درباره لینوکس ماندریبا را یاد بگیرید!</small></p>
-
- <br>
-
-
-
- <table dir="rtl">
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>وب‌گاه mandriva.com همه‌ی جزئیات را برای تماس با توضیع کننده‌ی انتشار لینوکس محبوبتان با بیشترین قابلیتها و بهترین کاربرد عرضه میدارد.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>ماندریبا اینترنتی آخرین سرویس عرضه شده بوسیله نرم افزار ماندریبا است. آن به شما اجازه میدهد تا رایانه خود را از طریق یک سرویس خودکار و مرکزی بروز نگهدارید.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>Mandrivalinux.com وبگاهی است که به جامعه لینوکس و پروژه‌های لینوکس منبع باز تعلق یافته است.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>باشگاه ماندریبا وبگاهی است که به کاربران لینوکس ماندریبا تعلق یافته است. ثبت نام برای عضویت بهره‌های اختصاصی را به شما عرضه میکند: دستیابی اختصاصی به انجمنها، بارگیری محصولات و RPMs، تخفیفها برای محصولات لینوکس ماندریبا و بسیاری دیگر!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>فروشگاه ماندریبا فروشگاه اینترنتی نرم افزار ماندریبا است. ظاهر جدید آن خرید محصولات، خدمات یا راه حلهای شخص-سوم هرگز به این آسانی نبوده است!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify" style="text-justify: kashida;"><small>کارشناس ماندریبا مقصد اولیه برای دریافت دستیاری از گروه پشتیبانی نرم افزار ماندریبا است.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-fi.html b/HTML/index-fi.html
deleted file mode 100644
index dc306e2..0000000
--- a/HTML/index-fi.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="fi">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=fi">
- <title>Onnittelut Mandriva Linuxin valinnasta!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva tarjoaa täyden valikoiman palveluja auttaakseen sinua saamaan täyden hyödyn Mandriva Linux -järjestelmästäsi. Osoita ja klikkaa oppiaaksesi kaiken mahdollinen Mandriva Linuxista!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Mandriva.com sivusto tarjoaa kaikki tiedot yhteydenpitoon omainaisuusrikkain ja paras käytettävyyden omaavan Linux-jakelun toimittajan kanssa.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online on viimeisin Mandrivain tuottama palvelu. Se auttaa sinua pitämään järjestelmäsi ajan tasalla keskityn ja automatisoidun palvelun kautta.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com on webbisivusto omistettu Linux yhteisöön ja avoimen lähdekoodin linux projekteihin.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club on webbisivusto omistettu Mandriva Linux käyttäjille. Tulemalla jäseneksi saat erityisetuja, pääsy erityisiin foorumeihin, RPM pakettien ja tuotteiden latausta, alennusta Mandriva Linux tuotteista ja paljon muuta!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store on Mandrivain online-kauppa. Kiitos uuden ulkoasuun ja tunteen, tuotteiden, palveluiden ja kolmanten osapuolten ratkaisujen ostaminen ei ole koskaan ennen ollut näin helppoa!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert on ensisjainen paikka saadaaksesi apua Mandriva-in tuki-tiimistä.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-fr.html b/HTML/index-fr.html
deleted file mode 100644
index ab04b39..0000000
--- a/HTML/index-fr.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="fr">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=fr">
- <title>Merci d'avoir choisi Mandriva Linux&nbsp;!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>L'offre de Mandriva comprend un grand nombre de produits et de services pour vous permettre de tirer le maximum de votre système Mandriva Linux. Cliquez pour tout savoir sur Mandriva !</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Le site web mandriva.com met à votre disposition tous les détails nécessaires pour rester en contact avec l'éditeur du système Linux le plus complet et le plus facile d'utilisation.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online est un nouveau service offert par Mandriva. Il vous permet de garder votre installation à jour à travers un système centralisé et automatisé.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com est le site web dédié à la communauté Linux et aux projets Linux Open Source.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club est le site web dédié aux utilisateurs de Mandriva Linux. L'adhésion vous apporte des avantages exclusifs : accès réservé aux forums, au téléchargement de paquetages RPM et de produits, des réductions sur les produits Mandriva et bien d'autres choses encore&nbsp;!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store est le magasin en ligne de Mandriva. Grâce à sa nouvelle interface, acheter des produits, des services ou des solutions n'a jamais été plus simple.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert est le site principal pour recevoir l'assistance de l'équipe support Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-fur.html b/HTML/index-fur.html
deleted file mode 100644
index 766a767..0000000
--- a/HTML/index-fur.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="fur">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=fur">
- <title>Graciis par avê scielgiût Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva offers a comprehensive range of products and services to help you make the most of your Mandriva Linux system. Just point and click and find out everything about Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>The mandriva.com website provides all the details for keeping in touch with the publisher of the Linux system with the most features and best usability.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online is the latest service provided by Mandriva. It allows you to keep your computer up-to-date through a centralized and automated service.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com is the website dedicated to the Linux community and open source Linux projects.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club is the website dedicated to Mandriva Linux users. Signing up for membership brings you exclusive benefits: exclusive access to forums, RPMs and products download, discounts on Mandriva Linux products and much more!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store is the Mandriva's online store. Thanks to its new look-and-feel the purchase of products, services or third-party solutions has never been so easy!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert is the primary destination for receiving assistance from Mandriva's support team.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-gl.html b/HTML/index-gl.html
deleted file mode 100644
index a388ad9..0000000
--- a/HTML/index-gl.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="gl">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=gl">
- <title>Grazas por escoller Linux Mandriva!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva ofrece unha gran variedade de productos e servicios para axudarlle a aproveitar ó máximo o seu sistema Mandriva Linux. ¡Simplemente clique e descúbrao todo sobre Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>O sitio web mandriva.com proporciónalle tódolos detalles para estar en contacto co editor da distribución de Linux con máis funcionalidades e máis fácil de usar. </small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online é o último servicio proporcionado por Mandriva. Permítelle mante-lo seu ordenador actualizado usando un servicio centralizado e automático.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com é o sitio web dedicado á comunidade Linux e ós proxectos de código aberto de Linux.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club é o sitio web dedicado ós usuarios de Mandriva Linux. ¡Inscribirse para conseguir un número de usuario dalle beneficios exclusivos: acceso exclusivo ós foros, RPMs e á descarga de productos, descontos en productos de Mandriva Linux e moito máis!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store é a tenda en liña de Mandriva. ¡Grazas ó seu novo aspecto, a compra de productos, servizos ou solucións de terceiros nunca foi tan sinxela!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert é o principal sitio onde recibir axuda do equipo de soporte de Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-he.html b/HTML/index-he.html
deleted file mode 100644
index 7089b02..0000000
--- a/HTML/index-he.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="he">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=he">
- <title>תודה לך על כך שבחרת ב מנדריבה לינוקס!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF" dir="rtl">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>חברת מנדריבה מספקת טווח רחב של מוצרים ושרותים בכדי לעזור לך להפיק את המיטב ממערכת מנדריבה לינוקס. עליך להקליד על אחד הקישורים בכדי ללמוד יותר על מנדריבה לינוקס!</small></p>
-
- <br>
-
-
-
- <table dir="rtl">
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>אתר האינטרנט mandriva.com מכיל את כל המידע הדרוש לשם שמירה על קשר עם יצרן הפצת הלינוקס המועדפת עליך.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- מנדריבה אונליין -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>מנדריבה אונליין</b></small></a>
- <p align="justify"><small>מנדריבה אונליין הוא השרות החדש ביותר של מנדריבה סופט המאפשר לך לשמור על עדכניות המערכת באופן אוטומטי ומרכזי.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- מנדריבה לינוקס -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>מנדריבה לינוקס</b></small></a>
- <p align="justify"><small>Mandrivalinux.com הוא האתר המוקדש לקהילת הלינוקס ופרוייקטי הקוד הפתוח בלינוקס.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- מועדון מנדריבה -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>מועדון מנדריבה </b></small></a>
- <p align="justify"><small>מועדון מנדריבה הוא האתר המוקדש למשתמשי מנדריבה . אנו ממליצים להירשם למועדון בכדי לקבל הטבות ייחודיות, גישה בלעדית לפורומים, חבילות תוכנה והורדת מוצרים, הנחות על מוצרי מנדריבה לינוקס והרבה יותר!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- החנות המקוונת של מנדריבה -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>החנות המקוונת של מנדריבה </b></small></a>
- <p align="justify"><small>חנות מנדריבה היא החנות המקוונת של מנדריבה. אודות לעיצוב החדש של החנות, רכישת מוצרים, שרותים ופתרונות צד שלישי לא הייתה מעולם קלה יותר!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- מומחי מנדריבה -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>מומחי מנדריבה </b></small></a>
- <p align="justify"><small>מומחי מנדרייבה הוא האתר המרכזי לקבלת תמיכה מצוות התמיכה של מנדריבה.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-hi.html b/HTML/index-hi.html
deleted file mode 100644
index e2bf007..0000000
--- a/HTML/index-hi.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="hi">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=hi">
- <title>मैनड्रिव लिनक्स का चयन करने के लिए धन्यवाद !</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>आप अपने मैनड्रिव लिनक्स तंत्र का पूर्ण लाभ उठा सके, इसके लिए मैनड्रिव सॉफ़्ट, आपकी सहायता हेतु, उत्पादों व सेवाओं की एक विस्तृत श्रंखला प्रस्तावित करता है। सिर्फ़ पाइंट और क्लिक करके, मैनड्रिव लिनक्स के बारे में सब कुछ जानें !</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>सम्पूर्ण लक्षणों तथा उत्कृष्ट उपयोगिता वाले लिनक्स तंत्र के प्रकाशक के साथ मेल-जोल बनाये रखने के लिए, मैनड्रिव सॉफ़्ट.कॉम (mandriva.com) वेब-स्थल सभी विवरणों को प्रदान करता है।</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- मैनड्रिव ऑनलाइन -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>मैनड्रिव ऑनलाइन</b></small></a>
- <p align="justify"><small>मैनड्रिव ऑनलाइन, मैनड्रिव सॉफ़्ट द्वारा प्रदान की हुई नवीनतम सेवा है । यह आपके कम्प्यूटर को एक केन्द्रीय तथा स्वचालित सेवा द्वारा अप-टू-डेट रखने में आपको समर्थ बनाती है।</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>मैनड्रिव लिनक्स.कॉम (Mandrivalinux.com) एक वेब-स्थल है जो लिनक्स समुदाय तथा मुक्त-स्रोत लिनक्स परियोजनाओं को समर्पित है।</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- मैनड्रिव क्लब -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>मैनड्रिव क्लब</b></small></a>
- <p align="justify"><small>मैनड्रिव क्लब एक वेब-स्थल है जो कि मैनड्रिव लिनक्स उपभोक्ताओं को समर्पित है । इसकी सदस्यता ग्रहण करने सेआप पायेगें लाभ जो कि सिर्फ़ आपके लिये है: चर्चा-केन्द्रों तक विशेष पहुँच, आरपीएमों तथा उत्पादों का डॉउनलोड,मैनड्रिव लिनक्स उत्पादों पर छूट तथा और भी बहुत कुछ!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- मैनड्रिव स्टोर -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>मैनड्रिव स्टोर</b></small></a>
- <p align="justify"><small>मैनड्रिव स्टोर, मैनड्रिव सॉफ़्ट का ऑनलाइन स्टोर है । इसके नवीन रूप-व-आभासको धन्यवाद, उत्पादों, सेवाओं या थर्ड-पार्टी समाधानों का खरीदना इतना सहजपहिले कभी नहीं था !</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- मैनड्रिव एक्सपर्ट -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>मैनड्रिव एक्सपर्ट</b></small></a>
- <p align="justify"><small>मैनड्रिव सॉफ़्ट सहायता दल से सहायता प्राप्त करने हेतु, मैनड्रिव एक्सपर्ट एक मुख्य गंतव्य स्थान है।</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-hr.html b/HTML/index-hr.html
deleted file mode 100644
index 7657e3d..0000000
--- a/HTML/index-hr.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="hr">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=hr">
- <title>Čestitamo Vam na odabiru Mandriva Linuxa!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva nudi Vam veliki raspon proizvoda i servisa za pomoć koju najviše trebate na Mandriva Linux sistemu. Samo odaberite i kliknite i saznajte sve o Mandriva Linuxu!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>mandriva.com pruža Vam detalje da biste održali vezu sa proizvođačem Linuxa da biste dobili pristup novim mogućnostima i najboljoj uporabljivosti.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online je posljednji Mandrivaov servis. On Vam omogućava nadogradnju sustava i centralizirane i automatske servise.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com je web stranica posvećena Linux zajednici i Linux open source projektima.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandrivaklub -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandrivaklub</b></small></a>
- <p align="justify"><small>Mandrivaklub je web stranica posvećena korisnicima Mandriva Linuxa. Članstvo Vam donosi posebne pogodnosti: poseban prisup forumima, RPMima(paketima) i skidanju programa, popusti na Mandriva Linux proizvode i još puno toga!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandrivadučan -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandrivadučan</b></small></a>
- <p align="justify"><small>Mandrivadučan je Mandrivaov online dučan. Zahvaljujući njegovom novom dizajnunaružba proizvoda, servisa ili trećeg nikada nije bilo ovako JEDNOSTAVNO!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert je primarno odredište za dobivanje pomoći od Mandrivaovog tima.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-hu.html b/HTML/index-hu.html
deleted file mode 100644
index 6d41d5e..0000000
--- a/HTML/index-hu.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="hu">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=hu">
- <title>Gratulálunk ahhoz, hogy a Mandriva Linux rendszert választotta.</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>A Mandriva a termékek és szolgáltatások széles skáláját kínálja, hogy Ön a lehető legtöbbet hozhassa ki Mandriva Linux-rendszeréből. Néhány kattintással megszerezheti a szükséges Mandriva Linux-információkat.</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>A mandriva.com weboldal az összes információt biztosítja a legnagyobb tudású és legegyszerűbben használható Linux-rendszer készítőjével való kapcsolattartáshoz.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>A Mandriva Online a Mandriva legújabb szolgáltatása. Lehetővé teszi a számítógép naprakész állapotban való tartását egy központi automatizált szolgáltatás segítségével.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>A mandrivalinux.com a linuxos közösség és a nyílt forráskódú linuxos projektek weboldala.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>A Mandriva Club a Mandriva Linux-felhasználók számára készített weboldal. A klubtagság kizárólagos jogokkal jár, mint például hozzáférés a fórumokhoz, RPM-csomagokhoz és letölthető termékekhez, továbbá kedvezmények a Mandriva Linux termékekhez.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>A Mandriva Store a Mandriva webes áruháza. Az új felületnek köszönhetően a termékek, szolgáltatások és külső cégektől származó megoldások megvásárlása soha nem volt még ilyen egyszerű.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>A Mandriva támogatási csapatától elsődlegesen a Mandriva Expert helyen kaphat segítséget.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-hy.html b/HTML/index-hy.html
deleted file mode 100644
index c01769b..0000000
--- a/HTML/index-hy.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="hy">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=hy">
- <title>Շնորհավորում ենք Mandriva Linux ընտրելու կապակցությամբ:</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva offers a comprehensive range of products and services to help you make the most of your Mandriva Linux system. Just point and click and find out everything about Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>The mandriva.com website provides all the details for keeping in touch with the publisher of the Linux system with the most features and best usability.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online is the latest service provided by Mandriva. It allows you to keep your computer up-to-date through a centralized and automated service.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com is the website dedicated to the Linux community and open source Linux projects.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club is the website dedicated to Mandriva Linux users. Signing up for membership brings you exclusive benefits: exclusive access to forums, RPMs and products download, discounts on Mandriva Linux products and much more!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store is the Mandriva's online store. Thanks to its new look-and-feel the purchase of products, services or third-party solutions has never been so easy!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert is the primary destination for receiving assistance from Mandriva's support team.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-id.html b/HTML/index-id.html
deleted file mode 100644
index 41a35de..0000000
--- a/HTML/index-id.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="id">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=id">
- <title>Selamat karena memilih Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva menawarkan produk dan layanan dengan jangkauan yang komprehensif untuk membantu Anda memaksimalkan sistem Mandriva Linux Anda. Cukup pilih dan klik dan cari semua informasi mengenai Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Website mandriva.com menyediakan semua informasi untuk berhubungan dengan pengembang sistem Linux dengan semua kelebihan dan usabilitas</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online adalah layanan terbaru yang disediakan oleh Mandriva. Layanan ini mengijinkan Anda untuk menjaga agar komputer Anda up-to-date melalui layanan terpusat dan otomatis.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com adalah website yang didedikasikan kepada komunitas Linux dan proyek open source Linux</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club adalah website yang didedikasikan kepada pengguna Mandriva Linux. Dengan bergabung Anda akan mendapatkan keuntungan eksklusif: akses eksklusif ke forum, paket-paket RPM dan download produk, diskon pada produk Mandriva Linux dan masih banyak lagi!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store adalah toko online Mandriva. Terima kasih kepada tampilan, layanan atau solusi pihak ketiga yang tidak pernah lebih mudah dalam pembelian produk!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert adalah tujuan utama untuk mendapatkan bantuan dari tim pendukung Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-is.html b/HTML/index-is.html
deleted file mode 100644
index 4a47bde..0000000
--- a/HTML/index-is.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="is">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=is">
- <title>Til hamingju með að hafa valið Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva býður margs konar þjónustu til að þú getir virkjað það besta sem Mandriva Linux kerfið býður upp á. Bentu og smelltu til að finna allt um Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Mandriva.com vefurinn beinir þér réttar leiðir til að vera í góðum tengslum við uppáhalds Linux kerfið þitt.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online er nýjasta þjónustan sem Mandriva býður uppá. Hún hjálpar þér að halda tölvunni þinni uppfærðri með miðlægri og sjálfvirkri þjónustu.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com vefurinn er tileinkaður samfélagi Linux notanda og opnum Linux forritum.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club er vefsíðan sem tileinkuð er Mandriva Linux Notendum. Skráir þú þig sem meðlim færðu aðgang að spjallsíðum, RPM pökkum og vörum, afslátt af Mandriva Linux vörum og margt meira!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store er vefverslun Mandriva. Þökk sé nýju útliti og viðmóti hefur kaup á vörum og þjónustu aldrei verið auðveldari!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert er grunnur allrar þjónustu Mandriva. Þar færðu leiðbeiningar beint frá þjónustuliði okkar.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-it.html b/HTML/index-it.html
deleted file mode 100644
index a1d7fcf..0000000
--- a/HTML/index-it.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="it">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=it">
- <title>Complimenti per aver scelto Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva offre una gamma completa di prodotti e servizi per aiutarti ad ottenere il massimo dal tuo sistema Mandriva Linux. Basta un clic per scoprire tutto di Mandriva Linux.</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Il sito web mandriva.com fornisce tutte le informazioni per restare in contatto con il produttore del sistema Linux migliore per completezza e facilità d'uso.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online è il più recente servizio fornito da Mandriva. Ti permette di mantenere aggiornato il tuo sistema tramite un servizio automatico centralizzato.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com è il sito web dedicato alla comunità Linux e ai progetti "open source" per Linux.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club è il sito web dedicato agli utenti Mandriva Linux. L'associazione al club comporta dei benefici esclusivi: accesso riservato ai forum, possibilità di scaricare RPM e prodotti, sconti su prodotti Mandriva Linux e tanto altro ancora!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store è il negozio online di Mandriva. Grazie al suo recente rinnovamento stilistico, l'acquisto di prodotti, servizi e soluzioni fornite da terze parti non è mai stato così agevole!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert è l'indirizzo primario a cui rivolgersi per ricevere assistenza dai servizi di consulenza di Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-ja.html b/HTML/index-ja.html
deleted file mode 100644
index d9404ef..0000000
--- a/HTML/index-ja.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<html lang="ja">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=ja">
- <title>Mandriva Linux をお選びいただきありがとうございます。</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva Linuxシステムを最大限にご活用して頂けるよう、Mandrivaは様々な
-製品とサービスを提供しています。下のリンクをクリックしてMandriva Linuxの
-すべてを発見してください。</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>mandriva.comウェブサイトは、最も機能豊富で使い易いLinuxシステムのディストリビュータ- Mandriva - に関するあらゆる情報を提供しています。</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva OnlineはMandrivaが提供する最新のサービスです。集中管理された自動更新システムがあなたのコンピューターをいつも最新状態に保ちます。</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.comはLinuxコミュニティとオープンソースLinuxプロジェクトに捧げるウェブサイトです。</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva ClubはMandriva Linuxユーザに捧げるウェブサイトです。ご入会頂くと様々な特典をお楽しみ頂けます: 会員専用のフォーラム、RPMその他製品のダウンロード、Mandriva Linux製品の特別割引等々。他にもたくさんご用意してます。</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store はMandrivaのオフィシャルオンラインストアです。外観を一新し製品・サービス・サードパーティーソリューションを簡単にお選び頂けるようになりました。</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandrivaのサポートチームの助けが必要になった時は、まず Mandriva Expert へアクセスしてください。</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-ka.html b/HTML/index-ka.html
deleted file mode 100644
index 5085368..0000000
--- a/HTML/index-ka.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="ka">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=ka">
- <title>გილოცავთ და მადლობას გიხდით Mandriva Linux-ის არჩევისათვის!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva გთავაზობთ უამრავ სერვისს, რათა დაგეხმაროთ ბოლომდე იმსახუროთ თქვენი Mandriva Linux სისტემა. ქვემორე იხილავთ Mandriva-ის დახმარების და მომსახურების ვარიანტებს!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>mandriva.com ვებგვერდი საშუალებას გაძლევთ მჭიდრო კონტაქტი იქონიოთ თქვენი საყვარელი და მომხმარებელზე მაქსიმალურად ორიენტირებული ლინუქსის დისტრიბუციის გამომშვებთან.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online გახლავთ Mandriva-ის მიერ მოწოდებული უახლესი მომსახურება. იგი საშუალებას გაძლევთ შეინარჩუნოთ კომპიუტერი უახლეს მუდამ განახლებულ მდგომარეობაში. მომსახურება ცენტრალიზებული და ავტომატიზირებული მომსახურების საშუალებით ხორციელდება.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com ვებგვერდი ეძღვნება ლინუქს-საზოგადოებასა და open source ლინუქსის პროექტებს.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club ეძღვნება Mandriva Linux-ის მომხმარებელს. გაწევრიანდით და თქვენ მიიღებთ შემდეგ ექსკლუზიურ უპირატესობებს: ფორუმში შესვლის ექსკლუზიური ნებართვას, ასევე ნებართვა RPMs-სა და სხვა პროდუქტების გამოყენებისა თუ გადმოწერის ნებართვას. თქვენ ასევე მიიღებთ ფასდაკლებებს Mandriva Linux-ის პრდუქტებზე და სხვა მრავალ რამეს!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store გახლავთ Mandriva-ის ონლაინ მაღაზია. მისი ახლებური ინტერფეისის საშალებით ადვილად შეგიძლიათ შეიძნოთ პროდუქტები, მომსახურებები და გარეშე ფირმების სერვისები!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>თუ რაიმე გაგიჭირდათ, Mandriva-ის ტქნიკური დახმარების ჯგუფი თქვენს განკარგულებაშია. ამისათვის მოინახულეთ Mandriva Expert!</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-ky.html b/HTML/index-ky.html
deleted file mode 100644
index 082e1d5..0000000
--- a/HTML/index-ky.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="ky">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=ky">
- <title>Mandriva Linux'ту тандаганыңыз менен куттуктайбыз!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva өзүңүздүн Mandriva Linux системаңызды түзүүгө жардам берүүчү кеңири спектрдеги кызматтарды сунуш кылат. Төмөндө Mandriva сунуш кылган колдоонун жана кызматтардын кыскача баяны келтирилген:</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Сиздин сүйүктүү Linux дистрибутивиңиздин чыгаруучусунун иштеринен кабардар болуп турушуңуз үчүн, mandriva.com веб-сайты бардык маалыматтарды сунуш кылат.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online Mandriva сунуш кылган жаңы кызматтарынын бири. Ал сиздин компьютерди эң акыркы жаңылоолор менен камсыз кылуучу борбордоштурулган жана автоматташтырылган кызмат.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com веб сайты Linux коомчулугуна арналган ачык баштапкы коддуу Linux проектиси.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club вебсайты Mandriva Linux колдонуучуларына арналган. Ага мүчө болуу менен төмөндөгү эксклюзивдүү пайданы алууга болот: форумдарга чыгуу үчүн эксклюзивдик укук, RPM дерди жана продукттарды жүктөп алуу, Mandriva Linux продукттарын сатып алууда жеңилдиктер жана башка көптөгөн нерселер!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store - Mandriva онлайн дүкөнү. Продуктарды, кызматтарды же болбосо башкалар иштеп чыккан чечимдерди сатып алуу сайттын жаңы түзүлүшүнө жараша мурда мынчалык жеңил болгон эмес!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert - Mandriva колдоо командасынан жардам алуучу негизги жер.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-lt.html b/HTML/index-lt.html
deleted file mode 100644
index d278370..0000000
--- a/HTML/index-lt.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="lt">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=lt">
- <title>Sveikiname pasirinkus Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva siūlo platų produktų ir paslaugų pasirinkimą, kurio dėka iš Mandriva Linux sistemos gausite viską, kas įmanoma. Tereikia nusitaikyti ir spragtelėti pele, kad sužinotumėte viską apie Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Mandriva.com svetainėje pateikiama detali informacija, kuri, jūsų patogumui ir didesnėms galimybėms, padės susisiekti su Linux sistemos leidėjais.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online - naujausia Mandriva paslauga. Centralizuota ir atomatinė paslauga padės jūsų kompiuterį išlaikyti modernų.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com svetainė yra skirta Linux bendruomenei ir atviro kodo Linux projektams.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club - tai svetainė skirta Mandriva Linux vartotojams. Nario registracija suteikia jums daug naudos: išskirtinė forumų prieiga, RPM bylų ir produktų parsisiuntimas, nuolaidos Mandriva Linux produktams ir dar daugiau!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store - tai Mandriva Interneto parduotuvė. Dėka jos naujos išvaizdos produktų pirkimas, paslaugos ar trečiosios šalies sprendimai dar niekada nebuvo tokie lengvi!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert - tai pirmoji vieta Mandriva palaikymo komandos pagalbai gauti.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-ltg.html b/HTML/index-ltg.html
deleted file mode 100644
index 3c4af34..0000000
--- a/HTML/index-ltg.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="lv-latgalian">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=lv-latgalian">
- <title>Apsveicam ar Mandriva Linux izvieli!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva pīduovoj vyspuseigu pakolpuojumu apjūmu, kab jius maksimali izmontuotu Mandriva Linux sistemu. Zemļuok ir puorskots par Mandriva atbolstu i pakolpuojumu variantim:</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Mandriva.com saite nūdrūšynoj vysys detalis, lai byutu saskarē ar jiusu mīļuokū Linux distributiva izdevieju.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online ir jaunuokais Mandriva pakolpuojums. Tys ļaun jiusim atjaunynuot jiusu datora programmys caur centralizeitu i automatizeitu pakolpuojumu.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Sātys lopa mandrivalinux.com veļteita Linux kūpīnai i atvārtuo koda Linux projektim.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club ir sātys lopa, kura veļteita Mandriva Linux lītuotuojim. Pīsavīnojūt tymā jius īgiustit īpašus lobumus: ekskluziva pīeja da dūmumeitim, programmu i produktu šursyuteišonai, atlaidis Mandriva Linux produktim i vēl daudz kū.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store ir Mandriva interneta veikals. Tuo atjaunynuotais izskots padora vīgluoku produktu, pakolpuojumu i rysynuojumu īguodi.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert ir golvonuo vīta, kur sajimt paleidzeibu nu Mandriva atbolsta komandys i nu lītuotuoju kūpīnys.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-mk.html b/HTML/index-mk.html
deleted file mode 100644
index a2579e0..0000000
--- a/HTML/index-mk.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="mk">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=mk">
- <title>Ви честитаме за изборот на Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva Ви нуди богата лепеза на производи и сервиси за да Ви помогне во извлекувањето максимум од Вашиот Mandriva Linux систем. Само покажете и кликнете и откријте се за Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Веб страната mandriva.com ви ги овозможува сите детали за одржување контакт со издавачот на Линукс системот со најмногу карактеристики и најдобра искористеност.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online е најновиот сервис обезбеден од страна на Mandriva. Ви овозможува да го одржувате вашиот компјутер ажуриран преку централизиран и автоматизиран сервис.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Веб страната Mandriva Linux.com е посветена на Линукс заедницата и Линукс проектите со отворен код.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club е веб страната наменета за корисниците на Mandriva Linux. Запишувањето како член ви обезбедува ексклузивни придонеси: ексклузивен пристап до форуми, RPM и производи за преземање, намаление на Mandriva Linux производите и многу повеќе!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store е онлајн продавницата на Mandriva. Благодарение на новиот изглед и чувство за купување на производи, сервиси или решенија од трети прозиведувачи досега не било полесно!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert е основната дестинација за добивање помош од тимот за подршка на Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-ms.html b/HTML/index-ms.html
deleted file mode 100644
index 63cd121..0000000
--- a/HTML/index-ms.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="ms">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=ms">
- <title>Tahniah kerana memilih Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva menawarkan produk dan perkhidmatan yang komprehensif untuk membantu anda memaksimakan sistem Mandriva Linux anda. Hanya tunjuk dan klik dan ketahui semuanya mengenai Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Laman web mandriva.com menyediakan semua maklumat untuk berkomunikasi dengan penerbit sistem Linux yang mengandungi banyak ciri-ciri dan kebolehgunaan terbaik.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online adalah perkhidmatan terkini yang disediakan oleh Mandriva. Ia membenarkan anda untuk memastikan komputer anda dikemaskini melalui servis yang berpusat dan automatik.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com adalah laman web yang dikhaskan kepada komuniti Linux dan projek sumber terbuka Linux.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club adalah laman web yang dikhaskan kepada pengguna Mandriva Linux. Mendaftarkan diri untuk keahlian membolehkan anda menikmati kelebihan eksklusif: akses eksklusif kepada forum, muatturun RPM dan produk, diskaun pada produk Mandriva Linux dan banyak lagi!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store adalah kedai dalam talian Mandriva. Dengan rekaan yang baru, pembelian produk, servis dan penyelesaian pihak ketiga menjadi amat mudah!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert adalah destinasi utama untuk mendapatkan bantuan daripada kumpulan sokongan Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-mt.html b/HTML/index-mt.html
deleted file mode 100644
index 7e3a93f..0000000
--- a/HTML/index-mt.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="mt">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=mt">
- <title>Grazzi talli għażilt Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva joffri għażla sħiħa ta' prodotti u servizzi biex jgħinuk tagħmel l-aħjar użu mis-sistema Mandriva Linux tiegħek. Agħżel u kklikkjau ssir taf kollox dwar Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Is-sit mandriva.com tipprovdi dettalji biex iżżomm ruħek aġġornat dwar id-ditta li tipproduċi s-sistema Linux bl-aħjar kapaċitajiet u użabilità.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online huwa l-iżjed servizz riċenti ta' Mandriva. Tħallik iżżomm il-kompjuter tiegħek aġġornat permezz ta' servizz ċentralizzat u awtomatiku.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com huwa s-sit dedikat għall-komunità linux u proġetti ta' sors miftuħ tal-Linux.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club huwa s-sit dedikat għall-utenti ta' Mandriva Linux. Is-sħubija tagħtik benefiċċji esklussivi: aċċess esklussiv għall-forums, downloads ta' RPMs u prodotti, skonti fuq prodotti Mandriva Linux u ħafna iżjed!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store huwa l-ħanut online ta' Mandriva. Grazzi għad-dehra u użu ġdid tiegħu, ix-xiri ta' prodotti, servizzi u soluzzjonijiet ta' terzi partiti issa faċli ħafna.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert huwa l-post ewlieni biex tirċievi għajnuna mit-tim ta' sapport ta’ Mandriva.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-nb.html b/HTML/index-nb.html
deleted file mode 100644
index b16252d..0000000
--- a/HTML/index-nb.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="nb">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=nb">
- <title>Gratulerer med valget av Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva tilbyr en lang rekke produkter og tjenester for å hjelpe deg med å få det meste ut av ditt Mandriva Linux-system. Bare pek og klikk og finn ut alt om Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Mandriva.com-nettstedet gir alle detaljene for å holde kontakt med utgiveren av Linux-systemet med flest finesser og den beste brukervennligheten.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online er den siste tjenesten fra Mandriva. Den tillater deg å holde maskinen din oppdatert igjennom en sentralisert og automatisert tjeneste.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com er nettstedet som er dedikert til Linux-samfunnet og open source Linux-produkter</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club er nettstedet som er dedikert til Mandriva Linux-brukere. Ved å melde deg inn så får du eksklusive fordeler, eksklusiv tilgang til forum, RPM-pakker og produkter til nedlastning, rabatter på Mandriva Linux-produkter og mye mer!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store er Mandriva's nettbutikk. Takket være dets nye design så har kjøp av produkter, tjenester eller tredjeparts løsninger aldri vært så enkelt!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert er det primære stedet for å motta assistanse fra Mandriva's kundestøtteteam.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-nl.html b/HTML/index-nl.html
deleted file mode 100644
index 7ac5de1..0000000
--- a/HTML/index-nl.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="nl">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=nl">
- <title>Gefeliciteerd met uw keuze voor Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva biedt een compleet assortiment aan produkten en diensten om u te helpen het meeste uit uw Mandriva Linux systeem te halen. U hoeft alleen maar te klikken om alles over Mandriva Linux te weten te komen!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>De mandriva.com-webstek heeft alle gegevens om contact te houden met de uitgever van de Linux-distributie met de meeste functionaliteit en grootste gebruikersvriendelijkheid.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online is de nieuwste dienst die verzorgd wordt door Mandriva. Het zorgt dat u uw computer bijgewerkt kunt houden door middel van een gecentraliseerde en geautomatiseerde dienst</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>MandrivaLinux.com is de webstek die gewijd is aan de Linuxgemeenschap en open broncode-Linuxprojecten</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club is de webstek die gewijd is aan Mandriva Linux gebruikers. Aanmelden voorlidmaatschap levert je exclusieve voordelen op: exclusieve toegang tot fora, RPMs en downloads, korting op Mandriva Linux-produkten en nog veel meer!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store is Mandrivas online winkel. Dankzij zijn nieuwe opmaak is het nooit zo makkelijk geweest om produkten, diensten en oplossingen van derden te kopen</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Mandriva Expert is de eerste bestemming voor het verkrijgen van assistentie van het Mandriva-ondersteuningsteam</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-nn.html b/HTML/index-nn.html
deleted file mode 100644
index fb3f732..0000000
--- a/HTML/index-nn.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="nn">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=nn">
- <title>Gratulerer med valet av Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva tilbyr ei rekkje produkt og tenester for Mandriva Linux-brukarar. Berre peik og klikk på det du er interessert i å læra meir om!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Heimesida til Mandriva gjer det lett å halda kontakt med utgjevaren av det mest brukarvenlege og funksjonsrike Linux-systemet.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online er den nyaste tenesta frå Mandriva, og gjer det mogleg å halda maskina di oppdatert heilt automatisk.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com er ein nettstad for Linux-samfunnet og prosjekt basert på open kjeldekode.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva-klubben -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva-klubben</b></small></a>
- <p align="justify"><small>Mandriva-klubben er ein nettstad for Mandriva Linux-brukarar. Medlemskap her gjev deg fleire eksklusive fordelar, som tilgang til eigne diskusjonsforum og nye programpakkar, rabattar på Mandriva Linux-produkt – og mykje meir!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva-butikken -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva-butikken</b></small></a>
- <p align="justify"><small>Mandriva-butikken er nettbutikken til Mandriva. Med ny og meir brukarvenleg utsjånad er det no endå lettare å kjøpa produkt, tenester og tredjepartsløysingar!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Expert -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>Mandriva Expert</b></small></a>
- <p align="justify"><small>Dette er staden for teknisk hjelp frå Mandrivas kundestøtte.</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-pa_IN.html b/HTML/index-pa_IN.html
deleted file mode 100644
index f5e86b7..0000000
--- a/HTML/index-pa_IN.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="pa-IN">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=pa-IN">
- <title>Mandriva Linux ਚੁਣਨ ਲਈ ਮੁਬਾਰਕਾਂ!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>ਮੈਂਡਰਿਵ ਤੁਹਾਡੇ ਮੈਂਡਰਿਵ ਲੀਨਕਸ ਸਿਸਟਮ ਦੇ ਉਤਪਾਦ ਤੇ ਸੇਵਾਵਾਂ ਦੇਣ ਲਈ ਵੱਡੇ ਪੱਧਰ ਲਈ ਸਰਗਰਮ ਹੋ। ਸਿਰਫ਼ ਖੋਜੋ ਅਤੇ ਆਪਣੇ ਮੈਂਡਰਕਿਲੀਨਕਸ ਬਾਰੇ ਹਰ ਚੀਜ਼ ਨੂੰ ਸਿਰਫ਼ ਦਬਾਉਣ ਨਾਲ ਹੀ ਪ੍ਰਾਪਤ ਕਰੋ!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>mandriva.com ਵੈਬ ਸਾਇਟ ਤੁਹਾਨੂੰ ਲੀਨਕਸ ਦਾ ਵੇਚਣ ਵਾਲੇ ਨਾਲ ਨੇੜਲੇ ਸਬੰਧ ਰੱਖਣ ਨਾਲ ਸਭ ਤੋਂ ਵੱਧ ਗੁਣ (ਫੀਚਰ) ਅਤੇ ਵਧਿਆ ਵਰਤਣ ਲਈ ਇੰਟਰਫੇਸ ਦਿੰਦੀ ਹੈ।</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online ਮੈਂਡਰਿਵ ਰਾਹੀਂ ਦਿੱਤੀ ਜਾਣ ਵਾਲੀ ਨਵੀਨ ਸੇਵਾ ਹੈ। ਇਹ ਤੁਹਾਨੂੰ ਆਪਣੇ ਕੰਪਿਊਟਰ ਨੂੰ ਕੇਂਦਰੀ ਅਤੇ ਸਵੈ-ਚਾਲਤ ਸੇਵਾ ਰਾਹੀਂ ਨਵੀਨੀਕਰਨ ਲਈ ਸਹਾਇਕ ਹੈ।</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com ਇੱਕ ਸਾਇਟ ਹੈ, ਜੋ ਕਿ ਲੀਨਕਸ ਸਮਾਜ ਅਤੇ ਓਪਨ ਸਰੋਤ ਪ੍ਰੋਜੈਕਟਾਂ ਲਈ ਕੰਮ ਕਰਦੀ ਹੈ।</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club ਇੱਕ ਵੈਬਸਾਇਟ ਹੈ, ਜੋ ਕਿ ਮੈਂਡਰਿਵ ਲੀਨਕਸ ਉਪਭੋਗੀਆਂ ਲਈ ਹੈ। ਇਸ ਦੇ ਮੈਂਬਰ ਬਣਨ ਦੇ ਆਪਣੇ ਲਾਭ ਹਨ। ਫੋਰਮਾਂ ਲਈ ਖਾਸ ਪਹੁੰਚ, RPM ਅਤੇ ਉਤਪਾਦਾਂ ਦਾ ਡਾਊਨਲੋਡ, ਮੈਂਡਰਿਵ ਲੀਨਕਸ ਉਤਪਾਦ ਲਈ ਘੱਟ ਕੀਮਤ ਅਤੇ ਹੋਰ ਵੀ ਕਈ!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Store -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivastore.com/"><img src="file:///usr/share/mdk/indexhtml/mdkstore.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivastore.com/"><small><b>Mandriva Store</b></small></a>
- <p align="justify"><small>Mandriva Store ਮੈਂਡਰਿਵ ਦਾ ਆਨਲਾਇਨ ਭੰਡਾਰ ਹੈ। ਇਸ ਦੀ ਦਿੱਖ ਦਾ ਖਾਸ ਸਹਿਯੋਗ ਰਿਹਾ ਹੈ, ਨਹੀਂ ਤਾਂ ਉਤਪਾਦ ਖਰੀਦਣਾ, ਸੇਵਾਵਾਂ ਜਾਂ ਸੁਤੰਤਰ ਧਿਰ ਹੱਲ਼ ਪਹਿਲਾਂ ਕਿਤੇ ਵੀ ਇੰਨੇ ਸੌਖੇ ਨਹੀਂ ਰਹੇ ਹਨ!</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- ਮੈਂਡਰਿਵ ਮਾਹਰ -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><img src="file:///usr/share/mdk/indexhtml/mdkexpert.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaexpert.com/"><small><b>ਮੈਂਡਰਿਵ ਮਾਹਰ</b></small></a>
- <p align="justify"><small>Mandriva Expert ਇੱਕ ਮੁੱਢਲਾ ਟਿਕਾਣਾ ਹੈ, ਜੋ ਕਿ ਮੈਂਡਰਿਵ ਸਹਿਯੋਗ ਟੀਮ ਤੋਂ ਸਹਿਯੋਗ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾ ਸਕਦਾ ਹੈ।</small></p>
- </td>
-
- </tr>
- </table>
-
-
- <td width="20">&nbsp;</td>
- </tr>
-
-
- </table>
-
- <iframe src="file:///usr/share/mdk/indexhtml/testonline.html" style="visibility: hidden;"></iframe>
-
-</body>
-</html>
diff --git a/HTML/index-pl.html b/HTML/index-pl.html
deleted file mode 100644
index 1f47e18..0000000
--- a/HTML/index-pl.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html lang="pl">
- <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta http-equiv="Content-Language" content="text/html; language=pl">
- <title>Gratulujemy wyboru dystrybucji Mandriva Linux!</title>
- </head>
-
-
- <body bgcolor="#FFFFFF">
-
- <table align="center" valign="middle">
-
- <tr>
- <td width="20">&nbsp;</td>
- <td>
- <img src="file:///usr/share/mdk/indexhtml/mdalinux.jpg" border="0">
-
- <br>
-
- <p align="justify"><small>Mandriva oferuje szeroką gamę produktów i usług aby pomóc Ci w stworzeniu twojego systemu Mandriva Linux. Najedź i kliknij tam i dowiedz się wszystkiego na temat dystrybucji Mandriva Linux!</small></p>
-
- <br>
-
-
-
- <table>
- <tr>
- <!-- Mandriva.com -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandriva.com/"><img src="file:///usr/share/mdk/indexhtml/mdksoft.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandriva.com/"><small><b>Mandriva.com</b></small></a>
- <p align="justify"><small>Witryna mandriva.com zawiera wszystkie szczegóły dotyczące wydawcy Twojej ulubionej dystrybucji Linuksa zawierającej nawięcej funkcji i przydatnych narzędzi.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Online -->
- <td width="52" align="center" valign="top"><a style="text-decoration:none" href="http://www.mandrivaonline.com/"><img src="file:///usr/share/mdk/indexhtml/mdkonline.png" border="0"></a><br><img src="file:///usr/share/mdk/indexhtml/new-en.png" border="0"></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaonline.com/"><small><b>Mandriva Online</b></small></a>
- <p align="justify"><small>Mandriva Online jest najnowszą usługą świadczoną przez firmę Mandriva. Usługa ta umożliwia, dzięki scentralizowanym i automatycznym mechanizmom, utrzymanie zawsze aktualnego oprogramowania w Twoim komputerze.</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- </tr>
-
- <tr>
- <!-- Mandriva Linux -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivalinux.com/"><img src="file:///usr/share/mdk/indexhtml/mdklinux.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivalinux.com/"><small><b>Mandriva Linux</b></small></a>
- <p align="justify"><small>Mandrivalinux.com jest stroną poświęconą społeczności Linuksa oraz projektom Open Source.</small></p>
- </td>
-
-
- <td>&nbsp;</td>
-
-
- <!-- Mandriva Club -->
- <td width="52" valign="top"><a style="text-decoration:none" href="http://www.mandrivaclub.com/"><img src="file:///usr/share/mdk/indexhtml/mdkclub.png" border="0"></a></td>
- <td width="50%" valign="top">
- <a style="text-decoration:none" href="http://www.mandrivaclub.com/"><small><b>Mandriva Club</b></small></a>
- <p align="justify"><small>Mandriva Club jest witryną dedykowaną użytkownikom Mandriva Linux. Zapisanie się tam przynosi wiele ciekawych korzyści: wyłączony dostęp do forum, pobieranie RPM-ów i produktów oprogramowania, zniżki na produkty Mandriva Linux oraz dużo więcej!</small></p>
- </td>
-
- </tr>
- <tr>
- <td width="52">&nbsp;</td>
- <td width="50%">&nbsp;</td>
- <td>&nbsp;</td>