Update translator documentation.

Whitespace updates.
i18n/L10n updates.
This commit is contained in:
Siebrand Mazeland
2011-06-05 20:42:11 +02:00
parent 8807705bb4
commit 49eb66c57e
6 changed files with 32 additions and 28 deletions

View 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)));
}
}
}