summaryrefslogtreecommitdiff
path: root/modules_v3
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-01-25 23:37:25 +0000
committerGreg Roach <fisharebest@gmail.com>2015-01-25 23:37:25 +0000
commit445e88772a7dc03ee5349f2d6a28bebacf57473d (patch)
tree63baa19f2f530a40ad002f1cb3ea9fdaaf53311a /modules_v3
parentb9543f55c9fcbb9792e5a9040f69de4f76ba6f37 (diff)
parent598c74cc5a63be4958b76450f32a107e359a3226 (diff)
downloadwebtrees-445e88772a7dc03ee5349f2d6a28bebacf57473d.tar.gz
webtrees-445e88772a7dc03ee5349f2d6a28bebacf57473d.tar.bz2
webtrees-445e88772a7dc03ee5349f2d6a28bebacf57473d.zip
Merge branch 'wt-dev' of https://github.com/JustCarmen/webtrees into JustCarmen-wt-dev
Conflicts: modules_v3/recent_changes/module.php
Diffstat (limited to 'modules_v3')
-rw-r--r--modules_v3/recent_changes/module.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules_v3/recent_changes/module.php b/modules_v3/recent_changes/module.php
index 8e73b47b7a..4028db55ae 100644
--- a/modules_v3/recent_changes/module.php
+++ b/modules_v3/recent_changes/module.php
@@ -77,7 +77,7 @@ class recent_changes_WT_Module extends WT_Module implements WT_Module_Block {
$content = '';
// Print block content
if (count($found_facts) == 0) {
- $content .= WT_I18N::translate('There have been no changes within the last %s days.', WT_I18N::number($days));
+ $content .= WT_I18N::plural('There have been no changes within the last %s day.', 'There have been no changes within the last %s days.', $days, WT_I18N::number($days));
} else {
ob_start();
switch ($infoStyle) {