diff options
author | Mario <mario@mariovavti.com> | 2025-06-12 10:47:04 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-06-12 10:47:04 +0000 |
commit | 71a06af8a927e4fd63993e146555e2dc217c80fd (patch) | |
tree | 88d1d2706cc4491b752c61516d470d34619cdbd2 | |
parent | 14088b4b2ebac4aae1a7d63bc4da22806cb5d641 (diff) | |
download | volse-hubzilla-71a06af8a927e4fd63993e146555e2dc217c80fd.tar.gz volse-hubzilla-71a06af8a927e4fd63993e146555e2dc217c80fd.tar.bz2 volse-hubzilla-71a06af8a927e4fd63993e146555e2dc217c80fd.zip |
consistent naming
-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); } |