diff options
author | Max Kostikov <max@kostikov.co> | 2019-04-30 17:33:54 +0200 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-04-30 17:33:54 +0200 |
commit | 9ebf2dc97be4de7112422aa88421c2c1d5ede94c (patch) | |
tree | 709c20f3e304d750db2ce0d6444c693dd07d786f | |
parent | 5066945adc2ac9654d773ddf5406674aa4075ae0 (diff) | |
download | volse-hubzilla-9ebf2dc97be4de7112422aa88421c2c1d5ede94c.tar.gz volse-hubzilla-9ebf2dc97be4de7112422aa88421c2c1d5ede94c.tar.bz2 volse-hubzilla-9ebf2dc97be4de7112422aa88421c2c1d5ede94c.zip |
Add "reply to" hint to submit button
-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 22f4724a0..31259f012 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -305,7 +305,7 @@ class ThreadItem { if($this->is_commentable() && $observer) { $like = array( t("I like this \x28toggle\x29"), t("like")); $dislike = array( t("I don't like this \x28toggle\x29"), t("dislike")); - $reply_to = array( t("Reply on this comment"), t("reply")); + $reply_to = array( t("Reply on this comment"), t("reply"), t("Reply to")); } if ($shareable) { |