X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FAutoSandbox%2FAutoSandboxPlugin.php;h=ebdc6132431c3362d807dabbe982d7c798f8297c;hb=6d5b6d98b5f68d784fee736518eaaae7a26a51f6;hp=870eda86f2809673b8e4ef2149c93acc59db6a01;hpb=b2abae433de8ae625fc0420eb78ee74479f6e9b9;p=quix0rs-gnu-social.git diff --git a/plugins/AutoSandbox/AutoSandboxPlugin.php b/plugins/AutoSandbox/AutoSandboxPlugin.php index 870eda86f2..ebdc613243 100644 --- a/plugins/AutoSandbox/AutoSandboxPlugin.php +++ b/plugins/AutoSandbox/AutoSandboxPlugin.php @@ -63,20 +63,24 @@ class AutoSandboxPlugin extends Plugin 'author' => 'Sean Carmody', 'homepage' => 'http://status.net/wiki/Plugin:AutoSandbox', 'rawdescription' => + // TRANS: Plugin description. _m('Automatically sandboxes newly registered members.')); return true; } function onStartRegistrationFormData($action) { + // TRANS: User instructions after registration. $instr = _m('Note you will initially be "sandboxed" so your posts will not appear in the public timeline.'); if (isset($this->contact)) { $contactuser = User::staticGet('nickname', $this->contact); if (!empty($contactuser)) { $contactlink = "@uri\">$contactuser->nickname"; - $instr = _m("Note you will initially be \"sandboxed\" so your posts will not appear in the public timeline. ". - 'Send a message to $contactlink to speed up the unsandboxing process.'); + // TRANS: User instructions after registration. + // TRANS: %s is a clickable e-mailaddress. + $instr = sprintf(_m('Note you will initially be "sandboxed" so your posts will not appear in the public timeline. '. + 'Send a message to %s to speed up the unsandboxing process.'),$contactlink); } }