Translate theme

This commit is contained in:
danpros 2023-12-04 11:13:13 +07:00
commit e2c495204a
24 changed files with 99 additions and 99 deletions

View file

@ -8,13 +8,13 @@
<div class="bio" itemprop="description"><?php echo $about ?></div>
</div>
</div>
<h2 class="post-index">Posts by this author</h2>
<h2 class="post-index"><?php echo i18n("Post_by_author");?></h2>
<?php if (!empty($posts)) { ?>
<ul class="post-list">
<?php foreach ($posts as $p): ?>
<li class="item">
<span><a href="<?php echo $p->url ?>"><?php echo $p->title ?></a></span> on
<span><?php echo format_date($p->date) ?></span> - Posted in <span><?php echo $p->category; ?></span>
<span><a href="<?php echo $p->url ?>"><?php echo $p->title ?></a></span> -
<span><?php echo format_date($p->date) ?></span> - <?php echo i18n("Posted_in");?> <span><?php echo $p->category; ?></span>
</li>
<?php endforeach; ?>
</ul>