aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2019-12-09 19:43:01 -0800
committerzotlabs <mike@macgirvin.com>2019-12-09 19:43:01 -0800
commit88ebbd90d8925a74029a32f57ec581d2b3ba64ed (patch)
treec834d7cc4f1838c2d4b25c702da3e8ef4227e648
parent88e755037b27647ecb11d5d3bd5d08c401fe3b0d (diff)
downloadvolse-hubzilla-88ebbd90d8925a74029a32f57ec581d2b3ba64ed.tar.gz
volse-hubzilla-88ebbd90d8925a74029a32f57ec581d2b3ba64ed.tar.bz2
volse-hubzilla-88ebbd90d8925a74029a32f57ec581d2b3ba64ed.zip
missing translation "%d unseen"
-rw-r--r--Zotlabs/Lib/ThreadItem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php
index 301ce1a18..caceac7ef 100644
--- a/Zotlabs/Lib/ThreadItem.php
+++ b/Zotlabs/Lib/ThreadItem.php
@@ -346,7 +346,7 @@ class ThreadItem {
$viewthread = z_root() . '/channel/' . $owner_address . '?f=&mid=' . urlencode(gen_link_id($item['mid']));
$comment_count_txt = sprintf( tt('%d comment','%d comments',$total_children),$total_children );
- $list_unseen_txt = (($unseen_comments) ? sprintf('%d unseen',$unseen_comments) : '');
+ $list_unseen_txt = (($unseen_comments) ? sprintf( t('%d unseen'),$unseen_comments) : '');
$children = $this->get_children();