diff --git a/bl-plugins/latest-pages/plugin.php b/bl-plugins/latest-pages/plugin.php index 3420fa5b..09b75eac 100644 --- a/bl-plugins/latest-pages/plugin.php +++ b/bl-plugins/latest-pages/plugin.php @@ -8,7 +8,7 @@ class pluginLatestPages extends Plugin { global $pages; $html = '
'; - $html .= '

Latest pages

'; + $html .= '

' . $L->g('Latest pages') . '

'; $html .= '
'; $tmp = $pages->getList(1, 5); foreach ($tmp as $key) { @@ -17,7 +17,7 @@ class pluginLatestPages extends Plugin { $html .= '
'; $html .= '
'; $html .= '
'.($page->title() ? $page->title() : '' . $L->g('Empty title') . ' ').'
'; - $html .= '

Category: '.($page->category() ? $page->category() : $L->get('uncategorized')).'

'; + $html .= '

' . $L->g('Category') . ': '.($page->category() ? $page->category() : $L->get('uncategorized')).'

'; $html .= '
'; $html .= ''.$page->relativeTime().''; $html .= '
'; @@ -29,4 +29,4 @@ class pluginLatestPages extends Plugin { return $html; } -} \ No newline at end of file +}