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>
|
||||
|
||||
* es.po: update
|
||||
|
@ -43,7 +43,7 @@ echo "\$podata = array ( "
|
||||
first=true
|
||||
for x
|
||||
do
|
||||
if [ $first == true ] ; then
|
||||
if [ $first = true ] ; then
|
||||
first=false ;
|
||||
else
|
||||
echo ", " ;
|
||||
@ -125,7 +125,7 @@ cat <<EOF
|
||||
default language (i.e., English) will be used in the LyX outputs</li>
|
||||
</ul>
|
||||
</p>
|
||||
<table align=center frame=box rules=all border="2" cellpadding="5">
|
||||
<table class="center" frame="box" rules="all" border="2" cellpadding="5">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Language</td>
|
||||
@ -151,9 +151,9 @@ cat <<EOF
|
||||
|
||||
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'])) {
|
||||
print \$info['msg_fu'];
|
||||
} else {
|
||||
@ -161,7 +161,7 @@ cat <<EOF
|
||||
}
|
||||
print "</td>";
|
||||
|
||||
print "<td \$style align=right>";
|
||||
print "<td \$style align=\"right\">";
|
||||
if (isset(\$info['msg_nt'])) {
|
||||
print \$info['msg_nt'];
|
||||
} else {
|
||||
@ -169,7 +169,7 @@ cat <<EOF
|
||||
}
|
||||
print "</td>";
|
||||
|
||||
print "<td \$style align=center>" . \$info['date'] . "</td>";
|
||||
print "<td \$style align=\"center\">" . \$info['date'] . "</td>";
|
||||
|
||||
print "<td \$style>";
|
||||
if (\$info['email'] == "") {
|
||||
|
Loading…
Reference in New Issue
Block a user