- XHTML 1.1, more semantic, formating, cleanup
- added glossar - linked all references
This commit is contained in:
16
ChangeLog
16
ChangeLog
@@ -5,6 +5,12 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2006-02-14 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||
* docs.css, Documentation.html, translators.html:
|
||||
- XHTML 1.1, more semantic, formating
|
||||
- added glossar
|
||||
- linked all references
|
||||
|
||||
2006-02-16 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* lang/italian: update, thanks to Luca Rebellato
|
||||
* lang/german: remove duplicates
|
||||
@@ -57,9 +63,9 @@ $Source$
|
||||
2006-02-09 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||
* libararies/session.inc.php:
|
||||
stop execution and ommit warning on session.auto_start enabled
|
||||
|
||||
|
||||
2006-02-09 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/mult_submit.inc.php: bug #1404565, left frame refresh on
|
||||
* libraries/mult_submit.inc.php: bug #1404565, left frame refresh on
|
||||
db drop from Databases link in main page
|
||||
|
||||
2006-02-08 Marc Delisle <lem9@users.sourceforge.net>
|
||||
@@ -71,7 +77,7 @@ $Source$
|
||||
* scripts/setup.php: Fix typos (bug #1424923).
|
||||
|
||||
2006-02-05 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||
* libraries/mult_submits.inc.php, server_databases.php: array to string
|
||||
* libraries/mult_submits.inc.php, server_databases.php: array to string
|
||||
conversion (sorry to late :-( ), use of $_REQUEST
|
||||
* sql.php: fixed some 'not refreshing left frame'
|
||||
* import.php: refresh left frame also on multiqueries and bookmarks
|
||||
@@ -87,7 +93,7 @@ $Source$
|
||||
2006-02-04 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/Config.class.php: bug #1409770 auto-detection and dirname on
|
||||
Windows, thanks to Alex - nixniemand
|
||||
* libraries/mult_submits.inc.php, server_databases.php: array to string
|
||||
* libraries/mult_submits.inc.php, server_databases.php: array to string
|
||||
conversion
|
||||
* tbl_properties_operations.php, tbl_properties.php, tbl_import.php,
|
||||
tbl_change.php: bug #1415465, undefined $sql_query
|
||||
@@ -122,7 +128,7 @@ $Source$
|
||||
2006-01-25 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* db_details_qbe.php: use PMA_countRecords() when possible, to be able
|
||||
to centralise into it the VIEW detection logic
|
||||
* sql.php: affected rows are returned in case of DELETE with no WHERE
|
||||
* sql.php: affected rows are returned in case of DELETE with no WHERE
|
||||
clause, at least since MySQL 4.0.x, so no need to pre-count
|
||||
|
||||
2006-01-25 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||
|
5518
Documentation.html
5518
Documentation.html
File diff suppressed because it is too large
Load Diff
163
docs.css
163
docs.css
@@ -6,61 +6,101 @@
|
||||
body {
|
||||
background-color: #ffffff;
|
||||
font-family: sans-serif;
|
||||
color: #000;
|
||||
margin: 0px;
|
||||
padding: 2em 0px 2em 0px;
|
||||
color: #000000;
|
||||
margin: 0;
|
||||
padding: 2em 0 2em 0;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
abbr, acronym {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
abbr, acronym {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #000099;
|
||||
background-color: #ffffff;
|
||||
font-weight: normal;
|
||||
/* font-weight: normal;*/
|
||||
}
|
||||
|
||||
a:hover {
|
||||
background-color: #99CCFF;
|
||||
/* background-color: #99CCFF;*/
|
||||
color: #000099;
|
||||
background-color: #ffffff;
|
||||
font-weight: bolder
|
||||
text-decoration: underline;
|
||||
/* font-weight: bolder */
|
||||
}
|
||||
|
||||
sup {
|
||||
font-size: 0.7em;
|
||||
}
|
||||
|
||||
sup:before {
|
||||
content: ' [';
|
||||
}
|
||||
|
||||
sup:after {
|
||||
content: ']';
|
||||
}
|
||||
|
||||
|
||||
div.header {
|
||||
ul.header {
|
||||
width: 100%;
|
||||
background-color: #ddeeff;
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
padding-bottom: 2px;
|
||||
padding: 0 0 2px 0;
|
||||
border-bottom: 1px solid #000000;
|
||||
font-weight: bold;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
left: 0;
|
||||
top: 0;
|
||||
position: fixed;
|
||||
margin: 0;
|
||||
/* following MSIE hack was originally written by Riki Fridrich
|
||||
* <http://www.fczbkk.com> */
|
||||
position: expression("absolute");
|
||||
width: expression(document.body.clientWidth);
|
||||
top: expression(document.body.scrollTop + this.offsetHeight - this.offsetHeight);
|
||||
/* position: expression("absolute");*/
|
||||
/* width: expression(document.body.clientWidth);*/
|
||||
/* top: expression(document.body.scrollTop + this.offsetHeight - this.offsetHeight);*/
|
||||
}
|
||||
|
||||
div.header hr {
|
||||
display: none;
|
||||
ul.header li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: inline;
|
||||
}
|
||||
div.header a {
|
||||
|
||||
ul.header li:before {
|
||||
content: ' - ';
|
||||
}
|
||||
ul.header li:first-child:before {
|
||||
content: '';
|
||||
}
|
||||
|
||||
ul.header a {
|
||||
text-decoration: none;
|
||||
font-size: medium;
|
||||
color: #000099;
|
||||
background-color: #ddeeff;
|
||||
font-weight: normal;
|
||||
}
|
||||
div.header a:hover {
|
||||
ul.header a:hover {
|
||||
color: #000099;
|
||||
background-color: #99CCFF;
|
||||
font-weight: bolder
|
||||
/* font-weight: bolder;*/
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
padding-left: 8%;
|
||||
margin-top: 1em;
|
||||
color: #000000;
|
||||
background-color: #ddeeff;
|
||||
font-size: x-large;
|
||||
border-top: 1px solid #000000;
|
||||
@@ -70,32 +110,63 @@ h1 {
|
||||
|
||||
h2 {
|
||||
padding-left: 8%;
|
||||
padding-top: 2em;
|
||||
margin-top: 1em;
|
||||
color: #000000;
|
||||
background-color: #ddeeff;
|
||||
font-size: large;
|
||||
border-top: 1px solid #000000;
|
||||
border-bottom: 1px solid #000000;
|
||||
clear: both;
|
||||
counter-reset: heading3;
|
||||
counter-increment: heading2;
|
||||
}
|
||||
|
||||
h2:before {
|
||||
content: counter(heading2) '. ';
|
||||
}
|
||||
|
||||
h3 {
|
||||
padding-left: 10%;
|
||||
padding-top: 3em;
|
||||
margin-top: 1em;
|
||||
color: #000000;
|
||||
background-color: #ddeeff;
|
||||
font-size: medium;
|
||||
border-top: 1px solid #000000;
|
||||
border-bottom: 1px solid #000000;
|
||||
clear: both;
|
||||
counter-reset: heading4;
|
||||
counter-increment: heading3;
|
||||
}
|
||||
|
||||
h4 {
|
||||
padding: 0px;
|
||||
h3:before {
|
||||
content: counter(heading2) '.' counter(heading3) '. ';
|
||||
}
|
||||
|
||||
h4, h5 {
|
||||
padding: 3em 0 0 0;
|
||||
margin: 10px 5% 2px 5%;
|
||||
font-weight: bold;
|
||||
color: #000099;
|
||||
background-color: #ffffff;
|
||||
counter-increment: heading4;
|
||||
}
|
||||
|
||||
h4:before {
|
||||
content: counter(heading2) '.' counter(heading3) '.' counter(heading4) '. ';
|
||||
}
|
||||
|
||||
h5 {
|
||||
counter-increment: heading5;
|
||||
}
|
||||
|
||||
h5:before {
|
||||
content: counter(heading2) '.' counter(heading3) '.' counter(heading4) counter(heading5,lower-alpha);
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 2px 5% 2px 5%;
|
||||
margin: 2px 5% 1em 5%;
|
||||
}
|
||||
|
||||
table {
|
||||
@@ -114,6 +185,7 @@ table.translators {
|
||||
}
|
||||
|
||||
table.translators th {
|
||||
color: #000000;
|
||||
background-color: #d3dce3;
|
||||
}
|
||||
|
||||
@@ -127,9 +199,18 @@ ul {
|
||||
}
|
||||
|
||||
pre {
|
||||
margin: 2px 5% 2px 5%;
|
||||
|
||||
margin: 1em 5% 1em 5%;
|
||||
border: 1px solid silver;
|
||||
color: #000000;
|
||||
background-color: #eeeeee;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
/* no more intend inside li */
|
||||
li pre {
|
||||
margin: 1em 0 1em 0;
|
||||
}
|
||||
|
||||
pre.wrap {
|
||||
white-space: normal;
|
||||
}
|
||||
@@ -140,25 +221,57 @@ dl {
|
||||
dt {
|
||||
font-weight: bold;
|
||||
margin-left: 2em;
|
||||
padding-top: 6px;
|
||||
padding-top: 3em;
|
||||
}
|
||||
dd {
|
||||
margin-left: 4em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
ol {
|
||||
margin: 1em 6% 1em 6%;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.configrule {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
dt.configrule {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.important {
|
||||
color: #bb0000;
|
||||
background-color: #ffeeee;
|
||||
padding: 0 0.5em 0 0.5em;
|
||||
}
|
||||
|
||||
p.important {
|
||||
border: 1px dotted #ff0000;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.important:first-word {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
p.footnote {
|
||||
margin: 2px 5% 2px 7%;
|
||||
margin: 0 5% 2px 7%;
|
||||
padding-top: 3em;
|
||||
}
|
||||
|
||||
p.footnote:first-line {
|
||||
margin-left: -2%;
|
||||
}
|
||||
|
||||
p#bottom {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
p#bottom img {
|
||||
margin: 1em;
|
||||
}
|
177
translators.html
177
translators.html
@@ -1,6 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
||||
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"
|
||||
version="-//W3C//DTD XHTML 1.1//EN" dir="ltr">
|
||||
<!-- $Id$ -->
|
||||
|
||||
<head>
|
||||
@@ -13,44 +14,39 @@
|
||||
|
||||
<body>
|
||||
|
||||
<div class="header">
|
||||
<hr noshade="noshade" width="100%" />
|
||||
<a href="Documentation.html#top">Top</a> -
|
||||
<a href="Documentation.html#require">Requirements</a> -
|
||||
<a href="Documentation.html#intro">Introduction</a> -
|
||||
<a href="Documentation.html#setup">Installation</a> -
|
||||
<a href="Documentation.html#config">Configuration</a>
|
||||
<br />
|
||||
<a href="Documentation.html#transformations">Transformations</a> -
|
||||
<a href="Documentation.html#faq">FAQ</a> -
|
||||
<a href="Documentation.html#developers">Developers</a> -
|
||||
<a href="Documentation.html#credits">Credits</a> -
|
||||
<a href="translators.html">Translators</a>
|
||||
<hr noshade="noshade" width="100%" />
|
||||
</div>
|
||||
<!-- TOP MENU -->
|
||||
<ul class="header">
|
||||
<li><a href="Documentation.html#top">Top</a></li>
|
||||
<li><a href="Documentation.html#require">Requirements</a></li>
|
||||
<li><a href="Documentation.html#intro">Introduction</a></li>
|
||||
<li><a href="Documentation.html#setup">Installation</a></li>
|
||||
<li><a href="Documentation.html#setup_script">Setup script</a></li>
|
||||
<li><a href="Documentation.html#config">Configuration</a></li>
|
||||
<li><a href="Documentation.html#transformations">Transformations</a></li>
|
||||
<li><a href="Documentation.html#faq"><abbr title="Frequently Asked Questions">
|
||||
FAQ</abbr></a></li>
|
||||
<li><a href="Documentation.html#developers">Developers</a></li>
|
||||
<li><a href="Documentation.html#credits">Credits</a></li>
|
||||
<li><a href="translators.html">Translators</a></li>
|
||||
<li><a href="Documentation.html#glossary">Glossary</a></li>
|
||||
</ul>
|
||||
|
||||
<h1>phpMyAdmin 2.9.0-dev official translators list</h1>
|
||||
|
||||
<p>
|
||||
Here is the list of the "official translators" of
|
||||
phpMyAdmin.
|
||||
</p>
|
||||
<p>
|
||||
<span class="important">If you want to suggest some improvements on a
|
||||
<p> Here is the list of the "official translators" of
|
||||
phpMyAdmin.</p>
|
||||
|
||||
<p> <span class="important">If you want to suggest some improvements on a
|
||||
translation please ask them</span>: we (the phpMyAdmin developement team)
|
||||
don't know anything about most of these languages and then we can't have
|
||||
any opinion on grammar issues or bad translations!
|
||||
</p>
|
||||
<p>
|
||||
All translations listed here are included in this distribution.
|
||||
any opinion on grammar issues or bad translations!</p>
|
||||
|
||||
<p> All translations listed here are included in this distribution.
|
||||
<span class="important">Please do <b>not</b> ask the translators to send
|
||||
you a localized phpMyAdmin version!</span>
|
||||
</p>
|
||||
<p>
|
||||
<span class="important">Please do <b>not</b> expect the translators to
|
||||
provide e-mail support.</span>
|
||||
</p>
|
||||
<br />
|
||||
you a localized phpMyAdmin version!</span></p>
|
||||
|
||||
<p> <span class="important">Please do <b>not</b> expect the translators to
|
||||
provide e-mail support.</span></p>
|
||||
|
||||
<table class="translators">
|
||||
<tr>
|
||||
@@ -61,22 +57,22 @@
|
||||
<tr>
|
||||
<td>Afrikaans</td>
|
||||
<td>
|
||||
Andreas Pauley (pauley@buitegroep.org.za)
|
||||
Andreas Pauley (pauley@buitegroep.org.za)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Albanian</td>
|
||||
<td>
|
||||
Laurent Dhima (laurenti@users.sourceforge.net)
|
||||
Laurent Dhima (laurenti@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Arabic</td>
|
||||
<td>
|
||||
"Fisal"(fisal77@hotmail.com)<br />
|
||||
Tarik kallida (kallida@caramail.com)<br />
|
||||
"Fisal"(fisal77@hotmail.com)<br />
|
||||
Tarik kallida (kallida@caramail.com)<br />
|
||||
Ossama Khayat (ossamak@nht.com.kw)
|
||||
</td>
|
||||
</tr>
|
||||
@@ -84,333 +80,340 @@
|
||||
<tr>
|
||||
<td>Azerbaijani</td>
|
||||
<td>
|
||||
Shehriyar Imanov (sheki@users.sourceforge.net)
|
||||
Shehriyar Imanov (sheki@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Basque</td>
|
||||
<td>
|
||||
Axier Lopez (axier@euskalerria.org)
|
||||
Axier Lopez (axier@euskalerria.org)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Belarusian</td>
|
||||
<td>
|
||||
Jaska Zedlik (jz53@zedlik.com)
|
||||
Jaska Zedlik (jz53@zedlik.com)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Bosnian</td>
|
||||
<td>
|
||||
Samir Kobiljak(aon.912547666@aon.at)
|
||||
Samir Kobiljak(aon.912547666@aon.at)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Brazilian Portuguese</td>
|
||||
<td>
|
||||
Airon Luis Pereira (thedarkness@users.sourceforge.net)
|
||||
Airon Luis Pereira (thedarkness@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Bulgarian</td>
|
||||
<td>
|
||||
Stanislav Yordanov (stan@stud.ru.acad.bg)
|
||||
Stanislav Yordanov (stan@stud.ru.acad.bg)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Catalan</td>
|
||||
<td>
|
||||
Xavier Navarro (klingonempire@tiscali.es)
|
||||
Xavier Navarro (klingonempire@tiscali.es)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Chinese Traditional (BIG5)</td>
|
||||
<td>
|
||||
Siu Sun (siusun@best-view.net)
|
||||
Siu Sun (siusun@best-view.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Chinese Simplified (GB)</td>
|
||||
<td>
|
||||
Wang (fundawang@users.sourceforge.net)
|
||||
Wang (fundawang@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Croatian</td>
|
||||
<td>
|
||||
Sime Essert (sime@nofrx.org)
|
||||
Sime Essert (sime@nofrx.org)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Czech</td>
|
||||
<td>
|
||||
Michal Čihař (michal@cihar.com)
|
||||
Michal Čihař (michal@cihar.com)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Danish</td>
|
||||
<td>
|
||||
Finn Sorensen (dk_alleykat@users.sourceforge.net)
|
||||
Finn Sorensen (dk_alleykat@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Dutch</td>
|
||||
<td>
|
||||
Ivo Teel (calimonk@gmx.net)
|
||||
Ivo Teel (calimonk@gmx.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>English</td>
|
||||
<td>
|
||||
the phpMyAdmin development team (phpmyadmin-devel@lists.sourceforge.net)
|
||||
the phpMyAdmin development team (phpmyadmin-devel@lists.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Estonian</td>
|
||||
<td>
|
||||
Marko Ellermaa (uhuu@users.sourceforge.net)
|
||||
Marko Ellermaa (uhuu@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Finnish</td>
|
||||
<td>
|
||||
Jouni Kahkonen (yoneh@users.sourceforge.net)
|
||||
Jouni Kahkonen (yoneh@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>French</td>
|
||||
<td>
|
||||
Marc Delisle (lem9@users.sourceforge.net)
|
||||
Marc Delisle (lem9@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Galician</td>
|
||||
<td>
|
||||
Xosé Calvo (xosecalvo@galizaweb.net)
|
||||
Xosé Calvo (xosecalvo@galizaweb.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Georgian</td>
|
||||
<td>
|
||||
--volunteer needed--
|
||||
--volunteer needed--
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>German</td>
|
||||
<td>
|
||||
Alexander M. Turek (rabus@users.sourceforge.net)
|
||||
Alexander M. Turek (rabus@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Greek</td>
|
||||
<td>
|
||||
Kyriakos Xagoraris (theremon@users.sourceforge.net)
|
||||
Kyriakos Xagoraris (theremon@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Hebrew</td>
|
||||
<td>
|
||||
Hadar Porat (hpman28@users.sourceforge.net)
|
||||
Hadar Porat (hpman28@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Hindi</td>
|
||||
<td>
|
||||
Girish Nair (girish_nair@users.sourceforge.net)
|
||||
Girish Nair (girish_nair@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Hungarian</td>
|
||||
<td>
|
||||
Mihály Mészáros (necronix@freemail.hu)
|
||||
Mihály Mészáros (necronix@freemail.hu)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Indonesian</td>
|
||||
<td>
|
||||
Rachim Tamsjadi (tamsy@users.sourceforge.net)
|
||||
Rachim Tamsjadi (tamsy@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Italian</td>
|
||||
<td>
|
||||
Luca Rebellato (rebeluca@ngi.it)
|
||||
Luca Rebellato (rebeluca@ngi.it)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Japanese</td>
|
||||
<td>
|
||||
Tadashi Jokagi (elf2000@users.sourceforge.net)
|
||||
Tadashi Jokagi (elf2000@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Korean</td>
|
||||
<td>
|
||||
WooSuhan (kjh@unews.co.kr)
|
||||
WooSuhan (kjh@unews.co.kr)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Latvian</td>
|
||||
<td>
|
||||
Sandis Jçrics (sandisj@parks.lv)
|
||||
Sandis Jçrics (sandisj@parks.lv)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Lithuanian</td>
|
||||
<td>
|
||||
Vilius Zigmantas (viliusz@users.sourceforge.net)
|
||||
Vilius Zigmantas (viliusz@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Malay</td>
|
||||
<td>
|
||||
Mohammad Shafiq bin Mohd Mustapa (sicksand@users.sourceforge.net)
|
||||
Mohammad Shafiq bin Mohd Mustapa (sicksand@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Mongolian</td>
|
||||
<td>
|
||||
Bayarsaikhan Enkhtaivan (bayaraa@users.sourceforge.net)
|
||||
Bayarsaikhan Enkhtaivan (bayaraa@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Norwegian</td>
|
||||
<td>
|
||||
Sven-Erik Andersen (sven_erik@andersen.as)
|
||||
Sven-Erik Andersen (sven_erik@andersen.as)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Persian</td>
|
||||
<td>
|
||||
Parham Ghaffarian (parham@bornisgroup.com)
|
||||
Parham Ghaffarian (parham@bornisgroup.com)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Polish</td>
|
||||
<td>
|
||||
Jakub Wilk (ubanus@users.sourceforge.net)
|
||||
Jakub Wilk (ubanus@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Portuguese</td>
|
||||
<td>
|
||||
António Raposo (cfmsoft@users.sourceforge.net)
|
||||
António Raposo (cfmsoft@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Romanian</td>
|
||||
<td>
|
||||
Valics Lehel (lvalics@users.sourceforge.net)
|
||||
Valics Lehel (lvalics@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Russian</td>
|
||||
<td>
|
||||
Artyom Rabzonov (tyomych@gmx.net)
|
||||
Artyom Rabzonov (tyomych@gmx.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Serbian</td>
|
||||
<td>
|
||||
Mihailo Stefanovic (mikis@users.sourceforge.net)
|
||||
Mihailo Stefanovic (mikis@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Slovak</td>
|
||||
<td>
|
||||
Ivan Kuriscak (shylauda69@users.sourceforge.net)
|
||||
Ivan Kuriscak (shylauda69@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Slovenian</td>
|
||||
<td>
|
||||
Kositer Uros (urosh@users.sourceforge.net)
|
||||
Kositer Uros (urosh@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Spanish</td>
|
||||
<td>
|
||||
Dr. med. Daniel Hinostroza C. (phpmyadmin@cerebroperiferico.com)
|
||||
Dr. med. Daniel Hinostroza C. (phpmyadmin@cerebroperiferico.com)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Swedish</td>
|
||||
<td>
|
||||
Björn T. Hallberg (bjornth@users.sourceforge.net)
|
||||
Björn T. Hallberg (bjornth@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Tatarish</td>
|
||||
<td>
|
||||
Albert Fazlí (amichauer@gmx.de)
|
||||
Albert Fazlí (amichauer@gmx.de)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Thai</td>
|
||||
<td>
|
||||
Arthit Suriyawongkul (bacteria@users.sourceforge.net)
|
||||
Arthit Suriyawongkul (bacteria@users.sourceforge.net)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Turkish</td>
|
||||
<td>
|
||||
Bora Alioglu (boralioglu@yahoo.co.uk)
|
||||
Bora Alioglu (boralioglu@yahoo.co.uk)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Ukrainian</td>
|
||||
<td>
|
||||
Markijan Baran (marco@meduniv.lviv.ua)
|
||||
Markijan Baran (marco@meduniv.lviv.ua)
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
<p id="bottom">
|
||||
<a href="http://validator.w3.org/check/referer">
|
||||
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1!"
|
||||
height="31" width="88" /></a>
|
||||
<a href="http://jigsaw.w3.org/css-validator/">
|
||||
<img src="http://www.w3.org/Icons/valid-css" alt="Valid CSS!" width="88"
|
||||
height="31" /></a></p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user