Assorted spelling fixes from Francois Gouget

This commit is contained in:
Chris Morgan
2008-06-26 12:07:29 -04:00
parent 26854c6b3b
commit 9f956d4ccc
12 changed files with 16 additions and 16 deletions

View File

@@ -74,7 +74,7 @@ function do_foo($sVar)
5) do not use vars that require register_globals to be on as:
a) it is off by default in php 4.1+
b) it is more secure
c) it makes it easier to understand where your vars are comming from (forms, session, etc.)
c) it makes it easier to understand where your vars are coming from (forms, session, etc.)
/**

View File

@@ -73,7 +73,7 @@ reviewed by a maintainer or administrator.</p>
<p><b>Q: How do I become an Application Database maintainer?</b></p>
<blockquote>
<p><b>A:</b> Pretty much anyone supporting Wine is welcome (begged?) to be an application maintainer.
Simply click on the button you will find in the application overview or specific version page to send your request. An administrator will then review your proposal and add you the the maintainer's team for this application or version. Once we have a community of maintainers, we hope that community will further refine the policies and procedures.</p>
Simply click on the button you will find in the application overview or specific version page to send your request. An administrator will then review your proposal and add you to the maintainer's team for this application or version. Once we have a community of maintainers, we hope that community will further refine the policies and procedures.</p>
</blockquote>

View File

@@ -19,10 +19,10 @@ for a certain program hasn't been created.</center>
<li><p>Run your program by changing into the directory where it is located, and then type 'wine yourprogram.exe'.
<br>Alternately your file manager should know to open .exe files with 'wine').</li>
<li><p>If there is an an error about missing files, or does not start at all, make sure you are in the directory where it was installed.</li>
<li><p>If there is an error about missing files, or it does not start at all, make sure you are in the directory where it was installed.</li>
<li><p> Many newer games contain copy protection, which is sometimes not supported in Wine. <br>Third party applications may be able to circumvent this,
when this is required an application cannot be rated higher than Gold</li>
when this is required an application cannot be rated higher than Gold.</li>
<li><p> In case of failure, try different builtin, native DLL settings:
Run Wine with 'WINEDEBUG=+loaddll wine yourprogram.exe' to find out which

View File

@@ -9,7 +9,7 @@ Information on what a maintainer is and why they are important to the appdb.
<p>
Maintainers are privileged users who have the ability to administrate applications and versions. Maintainers typically use the
applications and versions they maintain on a daily or weekely basis and test them with each new version of Wine that is
released. They also respond to forum posts for their applications/versions and review and process testing results and
released. They also respond to forum posts for their applications/versions and review and process test results and
screenshots that users submit. Please see the <a href="./?sTopic=maintainer_guidelines" style="cursor: help">maintainer's guidelines</a>
for more information on the kinds of things a maintainer has stewardship over.
<p>

View File

@@ -1320,7 +1320,7 @@ class Application {
return FALSE;
}
/* If no errors occured we return the number of moved children */
/* If no errors occurred we return the number of moved children */
return $iCount;
}

View File

@@ -597,7 +597,7 @@ class distribution {
$oTableRow->AddCell($oTableCell);
// enable the 'delete' action if this distribution has no testing results
// enable the 'delete' action if this distribution has no test results
$bDeleteLink = sizeof($this->aTestingIds) ? FALSE : TRUE;
$oOMTableRow = new OMTableRow($oTableRow);

View File

@@ -305,7 +305,7 @@ class Note {
return false;
}
// NOTE: notes can not be queued at this point
// NOTE: notes cannot be queued at this point
function mustBeQueued()
{
return false;

View File

@@ -525,7 +525,7 @@ class ObjectManager
$sSubmitter = " (submitted by ".$oUser->objectMakeLink().")";
} else
{
$shWhyComment = "Although you submitted it it might be useful for other users to know why ".
$shWhyComment = "Although you submitted it, it might be useful for other users to know why ".
"you are deleting it.";
$sSubmitter = "";

View File

@@ -439,15 +439,15 @@ class testData{
switch($sAction)
{
case "add":
$sSubject = "Submitted testing data accepted";
$sMsg = "The testing data you submitted for '$sName' has been ".
$sSubject = "Submitted test data accepted";
$sMsg = "The test data you submitted for '$sName' has been ".
"accepted by ".$_SESSION['current']->sRealname.".\n";
$sMsg .= $oVersion->objectMakeUrl()."&amp;iTestingId=".$this->iTestingId."\n";
$sMsg .= "Administrators response:\n";
break;
case "reject":
$sSubject = "Submitted testing data rejected";
$sMsg = "The testing data you submitted for '$sName' has ".
$sSubject = "Submitted test data rejected";
$sMsg = "The test data you submitted for '$sName' has ".
"been rejected by ".$_SESSION['current']->sRealname.".";
$sMsg .= $this->objectMakeUrl()."\n";
$sMsg .= "Reason given:\n";

View File

@@ -3,7 +3,7 @@ use apidb;
drop table if exists testResults;
/*
* Version Testing results
* Version Test results
*/
create table testResults (
testingId int not null auto_increment,

View File

@@ -45,7 +45,7 @@ function delete_version_and_parent_app($iVersionId)
echo __FUNCTION__."() oApp->purge() failed, returned false!\n";
}
// remove the admin privleges only if the user didn't
// remove the admin privileges only if the user didn't
// have them to begin with
if(!$bWasAdmin)
$_SESSION['current']->delPriv("admin");

View File

@@ -393,7 +393,7 @@ function test_maintainer_unQueue()
return FALSE;
}
// Now that the super maintainer entry was unqueued the the maintainer
// Now that the super maintainer entry was unqueued, the maintainer
// entry should have been deleted
$iExpected = 0;
$iReceived = maintainer::getMaintainerCountForUser($oSecondUser, FALSE);