Fix an alt string that existed in the lang file.
Add a missing translation (more to do about it).
This commit is contained in:
parent
6f17a4dc65
commit
140c88a63c
|
@ -23,7 +23,7 @@ $book->getLinkArray ();
|
||||||
<?php
|
<?php
|
||||||
if ($book->hasCover) {
|
if ($book->hasCover) {
|
||||||
?>
|
?>
|
||||||
<a href="fetch.php?id=<?php echo $book->id ?>"><img src="fetch.php?id=<?php echo $book->id ?>&height=150" alt="cover" /></a>
|
<a href="fetch.php?id=<?php echo $book->id ?>"><img src="fetch.php?id=<?php echo $book->id ?>&height=150" alt="<?php echo localize("i18n.coversection") ?>" /></a>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -214,7 +214,7 @@
|
||||||
<?php
|
<?php
|
||||||
if ($entry->book->hasCover) {
|
if ($entry->book->hasCover) {
|
||||||
?>
|
?>
|
||||||
<a rel="group" class="fancycover" href="<?php echo $entry->getCover () ?>"><img src="<?php echo $entry->getCoverThumbnail () ?>" alt="cover" /></a>
|
<a rel="group" class="fancycover" href="<?php echo $entry->getCover () ?>"><img src="<?php echo $entry->getCoverThumbnail () ?>" alt="<?php echo localize("i18n.coversection") ?>" /></a>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
"content.series":"Collection:",
|
"content.series":"Collection:",
|
||||||
"content.series.data":"Livre {0} dans la collection {1}",
|
"content.series.data":"Livre {0} dans la collection {1}",
|
||||||
"content.publisher":"Editeur:",
|
"content.publisher":"Editeur:",
|
||||||
|
"content.published":"Publié:",
|
||||||
"content.publisher.data":"Publié {0} le {1}",
|
"content.publisher.data":"Publié {0} le {1}",
|
||||||
"content.summary":"Résumé:",
|
"content.summary":"Résumé:",
|
||||||
"bookentry.series":"Livre {0} dans la collection {1}",
|
"bookentry.series":"Livre {0} dans la collection {1}",
|
||||||
|
|
Loading…
Reference in a new issue