mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 10:40:48 +00:00
Lars' patch to postats.sh fixes all but one of the errors found by
validator.w3.org, so I'm committing his patch. Also update of Danish translation from Claus. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5993 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
12faff56e7
commit
524964bcb4
12
po/ChangeLog
12
po/ChangeLog
@ -1,3 +1,15 @@
|
|||||||
|
2003-01-27 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
|
* postats.sh: == is a bash extension. Use =.
|
||||||
|
|
||||||
|
2003-01-27 Claus Hindsgaul <claus_h@image.dk>
|
||||||
|
|
||||||
|
* da.po: update
|
||||||
|
|
||||||
|
2003-01-27 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||||
|
|
||||||
|
* postats.sh: a first stab at xhtml-conformant code.
|
||||||
|
|
||||||
2003-01-27 Alfredo Braunstein <abraunst@libero.it>
|
2003-01-27 Alfredo Braunstein <abraunst@libero.it>
|
||||||
|
|
||||||
* es.po: update
|
* es.po: update
|
||||||
|
@ -43,7 +43,7 @@ echo "\$podata = array ( "
|
|||||||
first=true
|
first=true
|
||||||
for x
|
for x
|
||||||
do
|
do
|
||||||
if [ $first == true ] ; then
|
if [ $first = true ] ; then
|
||||||
first=false ;
|
first=false ;
|
||||||
else
|
else
|
||||||
echo ", " ;
|
echo ", " ;
|
||||||
@ -125,7 +125,7 @@ cat <<EOF
|
|||||||
default language (i.e., English) will be used in the LyX outputs</li>
|
default language (i.e., English) will be used in the LyX outputs</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
<table align=center frame=box rules=all border="2" cellpadding="5">
|
<table class="center" frame="box" rules="all" border="2" cellpadding="5">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Language</td>
|
<td>Language</td>
|
||||||
@ -151,9 +151,9 @@ cat <<EOF
|
|||||||
|
|
||||||
print "<td \$style>" . \$lang[\$info['langcode']] . "</td>";
|
print "<td \$style>" . \$lang[\$info['langcode']] . "</td>";
|
||||||
|
|
||||||
print "<td \$style align=right>" . \$info['msg_tr'] . "</td>";
|
print "<td \$style align=\"right\">" . \$info['msg_tr'] . "</td>";
|
||||||
|
|
||||||
print "<td \$style align=right>";
|
print "<td \$style align=\"right\">";
|
||||||
if (isset(\$info['msg_fu'])) {
|
if (isset(\$info['msg_fu'])) {
|
||||||
print \$info['msg_fu'];
|
print \$info['msg_fu'];
|
||||||
} else {
|
} else {
|
||||||
@ -161,7 +161,7 @@ cat <<EOF
|
|||||||
}
|
}
|
||||||
print "</td>";
|
print "</td>";
|
||||||
|
|
||||||
print "<td \$style align=right>";
|
print "<td \$style align=\"right\">";
|
||||||
if (isset(\$info['msg_nt'])) {
|
if (isset(\$info['msg_nt'])) {
|
||||||
print \$info['msg_nt'];
|
print \$info['msg_nt'];
|
||||||
} else {
|
} else {
|
||||||
@ -169,11 +169,11 @@ cat <<EOF
|
|||||||
}
|
}
|
||||||
print "</td>";
|
print "</td>";
|
||||||
|
|
||||||
print "<td \$style align=center>" . \$info['date'] . "</td>";
|
print "<td \$style align=\"center\">" . \$info['date'] . "</td>";
|
||||||
|
|
||||||
print "<td \$style>";
|
print "<td \$style>";
|
||||||
if (\$info['email'] == "") {
|
if (\$info['email'] == "") {
|
||||||
print \$info['translator'];
|
print \$info['translator'];
|
||||||
} else {
|
} else {
|
||||||
print "<a href=\"mailto:" . \$info['email'] . "\">" .
|
print "<a href=\"mailto:" . \$info['email'] . "\">" .
|
||||||
\$info['translator'] . "</a>";
|
\$info['translator'] . "</a>";
|
||||||
|
Loading…
Reference in New Issue
Block a user