From: <var...@us...> - 2013-04-08 14:23:44
|
Revision: 8745 http://sourceforge.net/p/phpwiki/code/8745 Author: vargenau Date: 2013-04-08 14:23:40 +0000 (Mon, 08 Apr 2013) Log Message: ----------- Use smart quotes Modified Paths: -------------- trunk/lib/plugin/PhpWeather.php Modified: trunk/lib/plugin/PhpWeather.php =================================================================== --- trunk/lib/plugin/PhpWeather.php 2013-04-08 14:19:07 UTC (rev 8744) +++ trunk/lib/plugin/PhpWeather.php 2013-04-08 14:23:40 UTC (rev 8745) @@ -110,7 +110,7 @@ /* We check and correct the language if necessary: */ //if (!in_array($language, array_keys($w->get_languages('text')))) { if (!in_array($language, array_keys(get_languages('text')))) { - trigger_error(sprintf(_("%s does not know about the language “%s”, using 'en' instead."), + trigger_error(sprintf(_("%s does not know about the language “%s”, using “en” instead."), $this->getName(), $language), E_USER_NOTICE); $language = 'en'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |