More localization in HTML
This commit is contained in:
parent
fccbbd8334
commit
530155b73a
|
@ -133,13 +133,13 @@
|
||||||
<div class="bookdetail">
|
<div class="bookdetail">
|
||||||
<a class="navigation" href="bookdetail.php?id=<?php echo $entry->book->id ?>" />
|
<a class="navigation" href="bookdetail.php?id=<?php echo $entry->book->id ?>" />
|
||||||
<div class="entryTitle"><?php echo htmlspecialchars ($entry->title) ?></div>
|
<div class="entryTitle"><?php echo htmlspecialchars ($entry->title) ?></div>
|
||||||
<div class="entryContent"><?php echo "Author : " . $entry->book->getAuthorsName () ?></div>
|
<div class="entryContent"><?php echo localize("authors.title") . " : " . $entry->book->getAuthorsName () ?></div>
|
||||||
<div class="entryContent"><?php echo "Tags : " . htmlentities ($entry->book->getTagsName ()) ?></div>
|
<div class="entryContent"><?php echo localize("tags.title") . " : " . htmlentities ($entry->book->getTagsName ()) ?></div>
|
||||||
<?php
|
<?php
|
||||||
$serie = $entry->book->getSerie ();
|
$serie = $entry->book->getSerie ();
|
||||||
if (!is_null ($serie)) {
|
if (!is_null ($serie)) {
|
||||||
?>
|
?>
|
||||||
<div class="entryContent"><?php echo "Serie : " . $serie->name . " (" . $entry->book->seriesIndex . ")" ?></div>
|
<div class="entryContent"><?php echo localize("series.title") . " : " . $serie->name . " (" . $entry->book->seriesIndex . ")" ?></div>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue