Harcode three newlines that lead to issues with translations (as fixed in Commit:5e7e5dd93cd3d73e2f2c93225cf8688844138380 by Evan).

This commit is contained in:
Siebrand Mazeland 2011-05-05 12:36:56 +02:00
parent c4aef15a15
commit 3b3bf74176

View File

@ -129,21 +129,22 @@ class SearchAction extends Action
$message = _("* Make sure all words are spelled correctly. $message = _("* Make sure all words are spelled correctly.
* Try different keywords. * Try different keywords.
* Try more general keywords. * Try more general keywords.
* Try fewer keywords. * Try fewer keywords.");
"); $message .= "\n";
if (!common_config('site', 'private')) { if (!common_config('site', 'private')) {
$qe = urlencode($q); $qe = urlencode($q);
$message .= "\n";
// Don't change these long strings to HEREDOC; xgettext won't pick them up. // Don't change these long strings to HEREDOC; xgettext won't pick them up.
// TRANS: Standard search suggestions shown when a search does not give any results. // TRANS: Standard search suggestions shown when a search does not give any results.
$message .= sprintf(_(" $message .= sprintf(_("You can also try your search on other engines:
You can also try your search on other engines:
* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%site.server%%%%) * [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%site.server%%%%)
* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s) * [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)
* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s) * [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)
* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s) * [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)
* [Collecta](http://collecta.com/#q=%s) * [Collecta](http://collecta.com/#q=%s)"), $qe, $qe, $qe, $qe, $qe);
"), $qe, $qe, $qe, $qe, $qe); $message .= "\n";
} }
$this->elementStart('div', 'help instructions'); $this->elementStart('div', 'help instructions');
$this->raw(common_markup_to_html($message)); $this->raw(common_markup_to_html($message));