aboutsummaryrefslogtreecommitdiffstats
path: root/include/conversation.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-05-28 17:58:49 -0700
committerfriendica <info@friendica.com>2014-05-28 17:58:49 -0700
commit30eb1b494a403acf0bcad461907ece77c707d574 (patch)
tree9d4c099d38e67bdea4948dacabbe104ed1c98498 /include/conversation.php
parentf6de9c09fb34ed9eba9210e08097e1aecfaa5dad (diff)
downloadvolse-hubzilla-30eb1b494a403acf0bcad461907ece77c707d574.tar.gz
volse-hubzilla-30eb1b494a403acf0bcad461907ece77c707d574.tar.bz2
volse-hubzilla-30eb1b494a403acf0bcad461907ece77c707d574.zip
moods: simplify 'xyz is tired' rather than 'xyz is currently tired'. This is possible now that we have translation contexts, as before '$1 is $2' was ambiguous without a context - in this case 'mood'.
Diffstat (limited to 'include/conversation.php')
-rw-r--r--include/conversation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 2d72f3489..21ce3bb66 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -255,7 +255,7 @@ function localize_item(&$item){
$A = '[zrl=' . chanlink_url($Alink) . ']' . $Aname . '[/zrl]';
- $txt = t('%1$s is currently %2$s');
+ $txt = t('%1$s is %2$s','mood');
$item['body'] = sprintf($txt, $A, t($verb));
}