Browse Source

Translation not available

pull/405/merge
danpros 4 years ago
parent
commit
317c0e0ac6
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      system/includes/functions.php
  2. +1
    -1
      themes/twentyfifteen/layout.html.php

+ 1
- 1
system/includes/functions.php View File

@ -1539,7 +1539,7 @@ function has_pagination($total, $perpage, $page = 1)
$total = count(get_post_unsorted()); $total = count(get_post_unsorted());
} }
$totalPage = ceil($total / $perpage); $totalPage = ceil($total / $perpage);
$number = i18n('Page') . ' ' . $page . ' ' . i18n('of') . ' ' . $totalPage;
$number = 'Page '. $page . ' of ' . $totalPage;
$pager = get_pagination($page, $total, $perpage, 2); $pager = get_pagination($page, $total, $perpage, 2);
return array( return array(
'prev' => $page > 1, 'prev' => $page > 1,


+ 1
- 1
themes/twentyfifteen/layout.html.php View File

@ -87,7 +87,7 @@
<?php endif;?> <?php endif;?>
<?php if (disqus()): ?> <?php if (disqus()): ?>
<aside class="widget widget_meta"> <aside class="widget widget_meta">
<h2 class="widget-title"><?php echo i18n("Recent_comments");?></h2>
<h2 class="widget-title">Recent_comments</h2>
<script src="//<?php echo config('disqus.shortname');?>.disqus.com/recent_comments_widget.js?num_items=5&amp;hide_avatars=0&amp;avatar_size=48&amp;excerpt_length=200&amp;hide_mods=0" type="text/javascript"></script><style>li.dsq-widget-item {padding-top:15px;} img.dsq-widget-avatar {margin-right:5px;}</style> <script src="//<?php echo config('disqus.shortname');?>.disqus.com/recent_comments_widget.js?num_items=5&amp;hide_avatars=0&amp;avatar_size=48&amp;excerpt_length=200&amp;hide_mods=0" type="text/javascript"></script><style>li.dsq-widget-item {padding-top:15px;} img.dsq-widget-avatar {margin-right:5px;}</style>
</aside> </aside>
<?php endif;?> <?php endif;?>


Loading…
Cancel
Save