]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/SearchSub/searchsubtrackingcommand.php
Merge branch '1.0.x' into testing
[quix0rs-gnu-social.git] / plugins / SearchSub / searchsubtrackingcommand.php
index 385a22b8ba0cadc2abce72dff31fd234a08123dc..a404fd4ccfd1f1ca59654831165e018be9bc4055 100644 (file)
@@ -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
+}