diff options
author | Max Kostikov <max@kostikov.co> | 2019-12-10 12:34:45 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-12-10 12:34:45 +0100 |
commit | 4237dd457e2e16830a758f633d10500f7a535238 (patch) | |
tree | 344bf9a7ff8f8d24357a8f43327ec9c39ac8a353 /Zotlabs | |
parent | 298acb96450e6282247fafecef49ffbb0174f5ea (diff) | |
parent | 88ebbd90d8925a74029a32f57ec581d2b3ba64ed (diff) | |
download | volse-hubzilla-4237dd457e2e16830a758f633d10500f7a535238.tar.gz volse-hubzilla-4237dd457e2e16830a758f633d10500f7a535238.tar.bz2 volse-hubzilla-4237dd457e2e16830a758f633d10500f7a535238.zip |
Merge branch 'dev' into 'dev'
missing translation "%d unseen"
See merge request hubzilla/core!1806
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 2 |
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(); |