diff options
-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 dee64caac..fcc676e24 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -359,7 +359,7 @@ class ThreadItem { if ($conv->comments_total > $conv->comments_loaded) { // provide a load more comments button $load_more = true; - $load_more_title = sprintf(t('Load the next few of total %d replies'), $conv->comments_total); + $load_more_title = sprintf(t('Load the next few of total %d comments'), $conv->comments_total); $comments_total_percent = round(100 * 3 / $conv->comments_total); } |