From: <var...@us...> - 2012-12-04 13:03:28
|
Revision: 8596 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8596&view=rev Author: vargenau Date: 2012-12-04 13:03:14 +0000 (Tue, 04 Dec 2012) Log Message: ----------- Use smart quotes Modified Paths: -------------- trunk/lib/AccessLog.php trunk/lib/ArchiveCleaner.php trunk/lib/DbSession.php trunk/lib/IniConfig.php trunk/lib/InlineParser.php trunk/lib/PageType.php trunk/lib/Request.php trunk/lib/WikiDB.php trunk/lib/WikiGroup.php trunk/lib/WikiPlugin.php trunk/lib/WikiPluginCached.php trunk/lib/WikiTheme.php trunk/lib/WikiUser.php trunk/lib/WikiUserNew.php trunk/lib/XmlElement.php trunk/lib/editpage.php trunk/lib/loadsave.php trunk/lib/main.php trunk/lib/purgepage.php trunk/lib/removepage.php trunk/lib/stdlib.php trunk/lib/ziplib.php Modified: trunk/lib/AccessLog.php =================================================================== --- trunk/lib/AccessLog.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/AccessLog.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -47,7 +47,7 @@ (sprintf(_("%s is not writable."), _("The PhpWiki access log file")) . "\n" . sprintf(_("Please ensure that %s is writable, or redefine %s in config/config.ini."), - sprintf(_("the file '%s'"), ACCESS_LOG), + sprintf(_("the file “%s”"), ACCESS_LOG), 'ACCESS_LOG') , E_USER_NOTICE); } Modified: trunk/lib/ArchiveCleaner.php =================================================================== --- trunk/lib/ArchiveCleaner.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/ArchiveCleaner.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -136,7 +136,7 @@ if (!$supplanted) { // Every revision but the most recent should have a supplanted time. // However, if it doesn't... - trigger_error(sprintf("Warning: Page '%s', version '%d' has no '_supplanted' timestamp", + trigger_error(sprintf("Warning: Page “%s”, version '%d' has no '_supplanted' timestamp", $revision->getPageName(), $revision->getVersion()), E_USER_NOTICE); Modified: trunk/lib/DbSession.php =================================================================== --- trunk/lib/DbSession.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/DbSession.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -39,7 +39,7 @@ } } //Fixme: E_USER_WARNING ignored! - trigger_error(sprintf(_("Your WikiDB DB backend '%s' cannot be used for DbSession.") . " " . + trigger_error(sprintf(_("Your WikiDB DB backend “%s” cannot be used for DbSession.") . " " . _("Set USE_DB_SESSION to false."), $db_type), E_USER_WARNING); return false; Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/IniConfig.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -327,7 +327,7 @@ // try to load it dynamically (unix only) if (!loadPhpExtension("pdo")) { echo $GLOBALS['php_errormsg'], "<br>\n"; - trigger_error(sprintf("dl() problem: Required extension '%s' could not be loaded!", + trigger_error(sprintf("dl() problem: Required extension “%s” could not be loaded!", "pdo"), E_USER_ERROR); } Modified: trunk/lib/InlineParser.php =================================================================== --- trunk/lib/InlineParser.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/InlineParser.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -412,7 +412,7 @@ // Check illegal characters in page names: <>[]{}|" if (preg_match("/[<\[\{\|\"\}\]>]/", $rawlink, $matches) > 0) { return HTML::span(array('class' => 'error'), - sprintf(_("Illegal character '%s' in page name."), + sprintf(_("Illegal character “%s” in page name."), $matches[0])); } $link = UnWikiEscape($rawlink); Modified: trunk/lib/PageType.php =================================================================== --- trunk/lib/PageType.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/PageType.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -84,7 +84,7 @@ $class = "PageType_" . (string)$name; if (class_exists($class)) return new $class; - trigger_error(sprintf("PageType '%s' unknown", (string)$name), + trigger_error(sprintf("PageType “%s” unknown", (string)$name), E_USER_WARNING); return new PageType_wikitext; } Modified: trunk/lib/Request.php =================================================================== --- trunk/lib/Request.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/Request.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -876,7 +876,7 @@ (sprintf(_("%s is not writable."), _("The PhpWiki access log file")) . "\n" . sprintf(_("Please ensure that %s is writable, or redefine %s in config/config.ini."), - sprintf(_("the file '%s'"), ACCESS_LOG), + sprintf(_("the file “%s”"), ACCESS_LOG), 'ACCESS_LOG') , E_USER_NOTICE); } Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/WikiDB.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -836,7 +836,7 @@ $latestversion = $cache->get_latest_version($pagename); if ($latestversion && ($version == $latestversion)) { $backend->unlock(array('page', 'version')); - trigger_error(sprintf("Attempt to delete most recent revision of '%s'", + trigger_error(sprintf("Attempt to delete most recent revision of “%s”", $pagename), E_USER_ERROR); return; } @@ -890,7 +890,7 @@ $latestversion = $cache->get_latest_version($pagename); if ($latestversion && $version == $latestversion) { $backend->unlock(array('version')); - trigger_error(sprintf("Attempt to merge most recent revision of '%s'", + trigger_error(sprintf("Attempt to merge most recent revision of “%s”", $pagename), E_USER_ERROR); return; } Modified: trunk/lib/WikiGroup.php =================================================================== --- trunk/lib/WikiGroup.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/WikiGroup.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -195,7 +195,7 @@ if ($this->specialGroup($group)) { return $this->isSpecialMember($group); } else { - trigger_error(__sprintf("Method '%s' not implemented in this GROUP_METHOD %s", + trigger_error(__sprintf("Method “%s” not implemented in this GROUP_METHOD %s", 'isMember', GROUP_METHOD), E_USER_WARNING); } @@ -244,7 +244,7 @@ */ function getAllGroupsIn() { - trigger_error(__sprintf("Method '%s' not implemented in this GROUP_METHOD %s", + trigger_error(__sprintf("Method “%s” not implemented in this GROUP_METHOD %s", 'getAllGroupsIn', GROUP_METHOD), E_USER_WARNING); return array(); @@ -328,7 +328,7 @@ if ($this->specialGroup($group)) { return $this->getSpecialMembersOf($group); } - trigger_error(__sprintf("Method '%s' not implemented in this GROUP_METHOD %s", + trigger_error(__sprintf("Method “%s” not implemented in this GROUP_METHOD %s", 'getMembersOf', GROUP_METHOD), E_USER_WARNING); return array(); @@ -373,7 +373,7 @@ // this could get complex so just return an empty array return false; default: - trigger_error(__sprintf("Unknown special group '%s'", $group), + trigger_error(__sprintf("Unknown special group “%s”", $group), E_USER_WARNING); } } @@ -389,7 +389,7 @@ */ function setMemberOf($group, $user = false) { - trigger_error(__sprintf("Method '%s' not implemented in this GROUP_METHOD %s", + trigger_error(__sprintf("Method “%s” not implemented in this GROUP_METHOD %s", 'setMemberOf', GROUP_METHOD), E_USER_WARNING); return false; @@ -406,7 +406,7 @@ */ function removeMemberOf($group, $user = false) { - trigger_error(__sprintf("Method '%s' not implemented in this GROUP_METHOD %s", + trigger_error(__sprintf("Method “%s” not implemented in this GROUP_METHOD %s", 'removeMemberOf', GROUP_METHOD), E_USER_WARNING); return false; @@ -543,7 +543,7 @@ $group_revision = $group_page->getCurrentRevision(); if ($group_revision->hasDefaultContents()) { $group = $group_page->getName(); - if ($strict) trigger_error(sprintf(_("Group page '%s' does not exist"), $group), + if ($strict) trigger_error(sprintf(_("Group page “%s” does not exist"), $group), E_USER_WARNING); return false; } Modified: trunk/lib/WikiPlugin.php =================================================================== --- trunk/lib/WikiPlugin.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/WikiPlugin.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -231,7 +231,7 @@ /* A plugin can override this function to define how any remaining text is handled */ function handle_plugin_args_cruft($argstr, $args) { - trigger_error(sprintf(_("trailing cruft in plugin args: '%s'"), + trigger_error(sprintf(_("trailing cruft in plugin args: “%s”"), $argstr), E_USER_NOTICE); } @@ -240,7 +240,7 @@ */ function allow_undeclared_arg($name, $value) { - trigger_error(sprintf(_("Argument '%s' not declared by plugin."), + trigger_error(sprintf(_("Argument “%s” not declared by plugin."), $name), E_USER_NOTICE); return false; } @@ -502,7 +502,7 @@ global $AllAllowedPlugins; if (in_array($plugin_name, $AllAllowedPlugins) === false) { - return $this->_error(sprintf(_("Plugin '%s' does not exist."), + return $this->_error(sprintf(_("Plugin “%s” does not exist."), $plugin_name)); } @@ -519,7 +519,7 @@ if (!class_exists($plugin_class)) { if ($include_failed) { - return $this->_error(sprintf(_("Plugin '%s' does not exist."), + return $this->_error(sprintf(_("Plugin “%s” does not exist."), $plugin_name)); } return $this->_error(sprintf(_("%s: no such class"), $plugin_class)); Modified: trunk/lib/WikiPluginCached.php =================================================================== --- trunk/lib/WikiPluginCached.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/WikiPluginCached.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -700,7 +700,7 @@ // I think this is the only error which may occur // without having written bad code. So gettextify it. $errortext = sprintf( - gettext("There is no image creation data available to id '%s'. Please reload referring page."), + gettext("There is no image creation data available to id “%s”. Please reload referring page."), $id); $this->printError($errorformat, $errortext); return false; Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/WikiTheme.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -698,7 +698,7 @@ if (isa($wikiword, 'WikiPageName')) $message = $wikiword->getWarnings(); else - $message = sprintf(_("'%s': Bad page name"), $wikiword); + $message = sprintf(_("“%s”: Bad page name"), $wikiword); $ErrorManager->warning($message); return HTML::span(array('class' => 'badwikiword'), $text); Modified: trunk/lib/WikiUser.php =================================================================== --- trunk/lib/WikiUser.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/WikiUser.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -552,7 +552,7 @@ function changePassword($newpasswd, $passwd2 = false) { if (!$this->mayChangePass()) { - trigger_error(sprintf("Attempt to change an external password for '%s'. Not allowed!", + trigger_error(sprintf("Attempt to change an external password for “%s”. Not allowed!", $this->_userid), E_USER_ERROR); return false; } Modified: trunk/lib/WikiUserNew.php =================================================================== --- trunk/lib/WikiUserNew.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/WikiUserNew.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -1878,11 +1878,11 @@ if (!preg_match($rfc822re, $email)) { $result[0] = false; - $result[1] = sprintf(_("E-mail address '%s' is not properly formatted"), $email); + $result[1] = sprintf(_("E-mail address “%s” is not properly formatted"), $email); return $result; } if ($noconnect) - return array(true, sprintf(_("E-mail address '%s' is properly formatted"), $email)); + return array(true, sprintf(_("E-mail address “%s” is properly formatted"), $email)); list ($Username, $Domain) = explode("@", $email); //Todo: getmxrr workaround on Windows or manual input field to verify it manually Modified: trunk/lib/XmlElement.php =================================================================== --- trunk/lib/XmlElement.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/XmlElement.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -513,8 +513,8 @@ if (preg_match('/(?<!%)%[- ]?\d*[^- \d$]/x', $this->_fs)) // $fmt // literal variable name substitution only to keep locale // strings uncluttered - trigger_error(sprintf(_("Can't mix '%s' with '%s' type format strings"), - '%1\$s', '%s'), E_USER_WARNING); + trigger_error(sprintf(_("Can't mix “%s” with “%s” type format strings"), + '%1\$s', “%s”), E_USER_WARNING); $this->_fs = preg_replace('/(?<!%)%\d+\$/x', '%', $this->_fs); Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/editpage.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -589,7 +589,7 @@ //$re_edit_link = Button('edit', _("Edit the new version"), $this->page); if ($unresolved) - $message = HTML::p(fmt("Some of the changes could not automatically be combined. Please look for sections beginning with '%s', and ending with '%s'. You will need to edit those sections by hand before you click Save.", + $message = HTML::p(fmt("Some of the changes could not automatically be combined. Please look for sections beginning with “%s”, and ending with “%s”. You will need to edit those sections by hand before you click Save.", "<<<<<<< " . _("Your version"), ">>>>>>> " . _("Other version"))); else @@ -953,7 +953,7 @@ function getConflictMessage($unresolved = false) { - $message = HTML(HTML::p(fmt("Some of the changes could not automatically be combined. Please look for sections beginning with '%s', and ending with '%s'. You will need to edit those sections by hand before you click Save.", + $message = HTML(HTML::p(fmt("Some of the changes could not automatically be combined. Please look for sections beginning with “%s”, and ending with “%s”. You will need to edit those sections by hand before you click Save.", "<<<<<<<", "======="), HTML::p(_("Please check it through before saving.")))); Modified: trunk/lib/loadsave.php =================================================================== --- trunk/lib/loadsave.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/loadsave.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -326,12 +326,12 @@ // see if we can access the directory the user wants us to use if (!file_exists($directory)) { if (!mkdir($directory, 0755)) - $request->finish(fmt("Cannot create directory '%s'", $directory)); + $request->finish(fmt("Cannot create directory “%s”", $directory)); else - $html = HTML::p(fmt("Created directory '%s' for the page dump...", + $html = HTML::p(fmt("Created directory “%s” for the page dump...", $directory)); } else { - $html = HTML::p(fmt("Using directory '%s'", $directory)); + $html = HTML::p(fmt("Using directory “%s”", $directory)); } StartLoadDump($request, _("Dumping Pages"), $html); @@ -388,7 +388,7 @@ $data = MailifyPage($page); if (!($fd = fopen($directory . "/" . $filename, "wb"))) { - $msg->pushContent(HTML::strong(fmt("couldn't open file '%s' for writing", + $msg->pushContent(HTML::strong(fmt("couldn't open file “%s” for writing", "$directory/$filename"))); $request->finish($msg); } @@ -459,12 +459,12 @@ // See if we can access the directory the user wants us to use if (!file_exists($directory)) { if (!mkdir($directory, 0755)) - $request->finish(fmt("Cannot create directory '%s'", $directory)); + $request->finish(fmt("Cannot create directory “%s”", $directory)); else - $html = HTML::p(fmt("Created directory '%s' for the page dump...", + $html = HTML::p(fmt("Created directory “%s” for the page dump...", $directory)); } else { - $html = HTML::p(fmt("Using directory '%s'", $directory)); + $html = HTML::p(fmt("Using directory “%s”", $directory)); } StartLoadDump($request, _("Dumping Pages"), $html); $thispage = $request->getArg('pagename'); // for "Return to ..." @@ -707,7 +707,7 @@ if ($directory) { $outfile = $directory . "/" . $filename; if (!($fd = fopen($outfile, "wb"))) { - $msg->pushContent(HTML::strong(fmt("couldn't open file '%s' for writing", + $msg->pushContent(HTML::strong(fmt("couldn't open file “%s” for writing", $outfile))); $request->finish($msg); } @@ -912,7 +912,7 @@ // remove invalid backend specific chars. utf8 issues mostly $pagename_check = new WikiPagename($pageinfo['pagename']); if (!$pagename_check->isValid()) { - PrintXML(HTML::p(HTML::strong(sprintf(_("'%s': Bad page name"), $pageinfo['pagename'])))); + PrintXML(HTML::p(HTML::strong(sprintf(_("“%s”: Bad page name"), $pageinfo['pagename'])))); return; } $pagename = $pagename_check->getName(); @@ -1479,7 +1479,7 @@ $finder = new FileFinder; $source = $finder->slashifyPath($source); StartLoadDump($request, - sprintf(_("Loading '%s'"), $source)); + sprintf(_("Loading “%s”"), $source)); LoadAny($request, $source); EndLoadDump($request); } Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/main.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -212,7 +212,7 @@ } if (empty($WikiTheme) and $user_theme) { if (strcspn($user_theme, "./\x00]") != strlen($user_theme)) { - trigger_error(sprintf("invalid theme '%s': Invalid characters detected", + trigger_error(sprintf("invalid theme “%s”: Invalid characters detected", $user_theme), E_USER_WARNING); $user_theme = "default"; @@ -532,7 +532,7 @@ if (class_exists('PagePermission')) { $user =& $this->_user; $status = $user->isAuthenticated() ? _("authenticated") : _("not authenticated"); - $msg = fmt("%s %s %s is disallowed on this wiki for %s user '%s' (level: %s).", + $msg = fmt("%s %s %s is disallowed on this wiki for %s user “%s” (level: %s).", _("Missing PagePermission:"), action2access($this->getArg('action')), $this->getArg('pagename'), @@ -798,7 +798,7 @@ if (preg_match("/[<\[\{\|\"\}\]>]/", $pagename, $matches) > 0) { $CONTENT = HTML::div( array('class' => 'error'), - sprintf(_("Illegal character '%s' in page name."), + sprintf(_("Illegal character “%s” in page name."), $matches[0])); GeneratePage($CONTENT, $pagename); $this->finish(); @@ -1376,11 +1376,11 @@ _("The session.save_path directory")) . "\n" . sprintf(_("Please ensure that %s is writable, or redefine %s in config/config.ini."), - sprintf(_("the session.save_path directory '%s'"), + sprintf(_("the session.save_path directory “%s”"), ini_get('session.save_path')), 'SESSION_SAVE_PATH') . "\n" - . sprintf(_("Attempting to use the directory '%s' instead."), + . sprintf(_("Attempting to use the directory “%s” instead."), $tmpdir) , E_USER_NOTICE); if (!is_writeable($tmpdir)) { Modified: trunk/lib/purgepage.php =================================================================== --- trunk/lib/purgepage.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/purgepage.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -25,7 +25,7 @@ $cancelB = Button('submit:cancel', _("Cancel"), 'button'); // use generic wiki button look $fieldset = HTML::fieldset(HTML::legend(_('Confirm purge')), - HTML::p(fmt("You are about to purge '%s'!", $pagelink)), + HTML::p(fmt("You are about to purge “%s”!", $pagelink)), HTML::form(array('method' => 'post', 'action' => $request->getPostURL()), HiddenInputs(array('currentversion' => $version, @@ -51,7 +51,7 @@ $dbi = $request->getDbh(); $dbi->purgePage($pagename); $dbi->touch(); - $html = HTML::p(array('class' => 'feedback'), fmt("Purged page '%s' successfully.", $pagename)); + $html = HTML::p(array('class' => 'feedback'), fmt("Purged page “%s” successfully.", $pagename)); } GeneratePage($html, _("Purge Page")); Modified: trunk/lib/removepage.php =================================================================== --- trunk/lib/removepage.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/removepage.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -25,7 +25,7 @@ $cancelB = Button('submit:cancel', _("Cancel"), 'button'); // use generic wiki button look $fieldset = HTML::fieldset(HTML::legend(_('Confirm removal')), - HTML::p(fmt("You are about to remove '%s'!", $pagelink)), + HTML::p(fmt("You are about to remove “%s”!", $pagelink)), HTML::form(array('method' => 'post', 'action' => $request->getPostURL()), HiddenInputs(array('currentversion' => $version, @@ -51,7 +51,7 @@ $dbi = $request->getDbh(); $dbi->deletePage($pagename); $dbi->touch(); - $html = HTML::p(array('class' => 'feedback'), fmt("Removed page '%s' successfully.", $pagename)); + $html = HTML::p(array('class' => 'feedback'), fmt("Removed page “%s” successfully.", $pagename)); } GeneratePage($html, _("Remove Page")); Modified: trunk/lib/stdlib.php =================================================================== --- trunk/lib/stdlib.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/stdlib.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -911,7 +911,7 @@ if (!$warnings) return false; - return sprintf(_("'%s': Bad page name: %s"), + return sprintf(_("“%s”: Bad page name: %s"), $this->shortName, join(', ', $warnings)); } @@ -924,7 +924,7 @@ return $page->name; // '0' or e.g. '1984' should be allowed though if (!is_string($page) and !is_integer($page)) { - trigger_error(sprintf("Non-string pagename '%s' (%s)(%s)", + trigger_error(sprintf("Non-string pagename “%s” (%s)(%s)", $page, gettype($page), get_class($page)), E_USER_NOTICE); } @@ -1542,8 +1542,8 @@ if (preg_match('/(?<!%)%[- ]?\d*[^- \d$]/x', $fmt)) // literal variable name substitution only to keep locale // strings uncluttered - trigger_error(sprintf(_("Can't mix '%s' with '%s' type format strings"), - '%1\$s', '%s'), E_USER_WARNING); //php+locale error + trigger_error(sprintf(_("Can't mix “%s” with “%s” type format strings"), + '%1\$s', “%s”), E_USER_WARNING); //php+locale error $fmt = preg_replace('/(?<!%)%\d+\$/x', '%', $fmt); $newargs = array(); @@ -1644,7 +1644,7 @@ @ $dir_handle = opendir($dir = $directory); if (empty($dir_handle)) { - trigger_error(sprintf(_("Unable to open directory '%s' for reading"), + trigger_error(sprintf(_("Unable to open directory “%s” for reading"), $dir), E_USER_NOTICE); return; // early return } Modified: trunk/lib/ziplib.php =================================================================== --- trunk/lib/ziplib.php 2012-12-04 12:49:42 UTC (rev 8595) +++ trunk/lib/ziplib.php 2012-12-04 13:03:14 UTC (rev 8596) @@ -413,7 +413,7 @@ if ($zipfile) { $this->zipfile = $zipfile; if (!($this->fp = fopen($zipfile, "rb"))) { - trigger_error(sprintf(_("Can't open zip file '%s' for reading"), + trigger_error(sprintf(_("Can't open zip file “%s” for reading"), $zipfile), E_USER_ERROR); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |