diff --git a/system/includes/functions.php b/system/includes/functions.php
index 665c683..a08a762 100644
--- a/system/includes/functions.php
+++ b/system/includes/functions.php
@@ -1539,7 +1539,7 @@ function has_pagination($total, $perpage, $page = 1)
$total = count(get_post_unsorted());
}
$totalPage = ceil($total / $perpage);
- $number = 'Page '. $page . ' of ' . $totalPage;
+ $number = i18n('Page') . ' ' . $page . ' ' . i18n('of') . ' ' . $totalPage;
$pager = get_pagination($page, $total, $perpage, 2);
return array(
'prev' => $page > 1,
diff --git a/themes/twentyfifteen/layout.html.php b/themes/twentyfifteen/layout.html.php
index 98125e5..5b45c73 100644
--- a/themes/twentyfifteen/layout.html.php
+++ b/themes/twentyfifteen/layout.html.php
@@ -48,7 +48,7 @@