X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FSearchSub%2Fsearchsubtrackingcommand.php;h=a404fd4ccfd1f1ca59654831165e018be9bc4055;hb=8104b1f766132bf0494694b8971a7932aa237f17;hp=385a22b8ba0cadc2abce72dff31fd234a08123dc;hpb=19b965d99188fde59cdd39b668df8951bc0f180c;p=quix0rs-gnu-social.git diff --git a/plugins/SearchSub/searchsubtrackingcommand.php b/plugins/SearchSub/searchsubtrackingcommand.php index 385a22b8ba..a404fd4ccf 100644 --- a/plugins/SearchSub/searchsubtrackingcommand.php +++ b/plugins/SearchSub/searchsubtrackingcommand.php @@ -20,8 +20,12 @@ class SearchSubTrackingCommand extends Command $list[] = $all->search; } + // TRANS: Separator for list of tracked searches. + $separator = _m('SEPARATOR','", "'); + // TRANS: Message given having disabled all search subscriptions with 'track off'. - $channel->output($cur, sprintf(_m('You are tracking searches for: %s'), - '"' . implode('", "', $list) . '"')); + // TRANS: %s is a list of searches. Separator default is '", "'. + $channel->output($cur, sprintf(_m('You are tracking searches for: "%s".'), + implode($separator, $list))); } -} \ No newline at end of file +}