Fix an alt string that existed in the lang file.

Add a missing translation (more to do about it).
This commit is contained in:
Sébastien Lucas 2013-01-06 09:28:49 +01:00
parent 6f17a4dc65
commit 140c88a63c
3 changed files with 3 additions and 2 deletions

View file

@ -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 ?>&amp;height=150" alt="cover" /></a> <a href="fetch.php?id=<?php echo $book->id ?>"><img src="fetch.php?id=<?php echo $book->id ?>&amp;height=150" alt="<?php echo localize("i18n.coversection") ?>" /></a>
<?php <?php
} }
?> ?>

View file

@ -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
} }
?> ?>

View file

@ -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}",