From: <var...@us...> - 2014-09-24 15:49:28
|
Revision: 9109 http://sourceforge.net/p/phpwiki/code/9109 Author: vargenau Date: 2014-09-24 15:49:21 +0000 (Wed, 24 Sep 2014) Log Message: ----------- Less strings Modified Paths: -------------- trunk/lib/FileFinder.php trunk/lib/loadsave.php Modified: trunk/lib/FileFinder.php =================================================================== --- trunk/lib/FileFinder.php 2014-09-24 15:39:05 UTC (rev 9108) +++ trunk/lib/FileFinder.php 2014-09-24 15:49:21 UTC (rev 9109) @@ -190,7 +190,7 @@ */ private function _not_found($file) { - trigger_error(sprintf(_("%s: file not found"), $file), E_USER_ERROR); + trigger_error(sprintf(_("File “%s” not found."), $file), E_USER_ERROR); return false; } Modified: trunk/lib/loadsave.php =================================================================== --- trunk/lib/loadsave.php 2014-09-24 15:39:05 UTC (rev 9108) +++ trunk/lib/loadsave.php 2014-09-24 15:49:21 UTC (rev 9109) @@ -1151,7 +1151,7 @@ } $mapfile = FindFile(INTERWIKI_MAP_FILE, 1); if (!$goback && !file_exists($mapfile)) { - $error_html = sprintf(" " . _("%s: file not found"), INTERWIKI_MAP_FILE); + $error_html = sprintf(" " . _("File “%s” not found."), INTERWIKI_MAP_FILE); $goback = true; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |