Fix misspellings of "transferring" in the tree. Bug 258874, patch by Chris

Thomas (CTho) <cst@andrew.cmu.edu>, r=bsmedberg, spelling fix rs=brendan
This commit is contained in:
bzbarsky%mit.edu 2004-09-16 18:33:39 +00:00
Родитель fd1da399ba
Коммит b62d4e1d33
8 изменённых файлов: 16 добавлений и 16 удалений

Просмотреть файл

@ -1122,7 +1122,7 @@ NPP_SetWindow(NPP instance, NPWindow* window)
// that the plugin doesn't handle streaming and can only deal with the object as
// a complete disk file. It will still call the write functions but it will also
// pass the filename of the cached file in a later NPE_StreamAsFile call when it
// is done transfering the file.
// is done transferring the file.
//
// If a plugin handles the data in a streaming manner, it should set streamtype to
// NPNormal (e.g. *streamtype = NPNormal)...the NPE_StreamAsFile function will

Просмотреть файл

@ -325,7 +325,7 @@ int moz_progress_cb(PtWidget_t *widget, void *data, PtCallbackInfo_t *cbinfo)
percent = (c->cur*100)/c->max;
//if ( i->statusMessage != NULL )
//sprintf(message, "%s (%d%% complete, %d bytes of %d loaded)", i->statusMessage, percent, c->cur, c->max);
sprintf(message, "%s (%d%% complete, %d bytes of %d loaded)", "Transfering", percent, c->cur, c->max);
sprintf(message, "%s (%d%% complete, %d bytes of %d loaded)", "Transferring", percent, c->cur, c->max);
}
#if 0
printf ("Progress: %d\n",(int)percent);

Просмотреть файл

@ -187,7 +187,7 @@ nsProgressDialog.prototype = {
if ( aStateFlags & nsIWebProgressListener.STATE_STOP ) {
// if we are downloading, then just wait for the first STATE_STOP
if ( this.targetFile != null ) {
// we are done transfering...
// we are done transferring...
this.completed = true;
return;
}
@ -197,7 +197,7 @@ nsProgressDialog.prototype = {
try {
var chan = aRequest.QueryInterface(nsIChannel);
if (chan.URI.equals(this.target)) {
// we are done transfering...
// we are done transferring...
this.completed = true;
}
}

Просмотреть файл

@ -86,7 +86,7 @@ function Startup()
document.getElementById("TransferToFromSite").value =
directionString.replace(/%site%/, gTransfer.sitename);
// Show transfering destination URL
// Show transferring destination URL
document.getElementById("TransferUrl").value = gTransfer.remoteDir;
// Add the files to the UI as quickly as possible
@ -224,7 +224,7 @@ function SetProgressStatus(filenr)
//ddump(filename + ", " + status + ", " + NameForStatusCode(file.statusCode));
if (status == "busy")
SetStatusMessage(GetString("Transfering"));
SetStatusMessage(GetString("Transferring"));
// update file listbox
// if we already have this file's item, just set attribute for status icon
@ -406,5 +406,5 @@ function SetListingTransfer(on)
{
gDialog.ListingProgress.setAttribute("hidden", on ? "false" : "true");
//gDialog.ListingProgress.setAttribute("value", on ? "1" : "0");
SetStatusMessage(on ? GetString("TransferingListing") : null);
SetStatusMessage(on ? GetString("TransferringListing") : null);
}

Просмотреть файл

@ -1304,7 +1304,7 @@ TransferProgressListener.prototype =
// Update any data that the user supplied in a prompt dialog
updateUsernamePasswordFromPrompt : function(username, password,savePassword)
{
// Set flag to save login data after transfering, if it changed in
// Set flag to save login data after transferring, if it changed in
// dialog and the "SavePassword" checkbox was checked
this.transfer.saveLogin = (username != this.transfer.username ||
password != this.transfer.password)

Просмотреть файл

@ -40,7 +40,7 @@
<!ENTITY siteUrl.label "Site URL:">
<!ENTITY status.label "">
<!ENTITY fileList.label "Transfering Status">
<!ENTITY fileList.label "Transferring Status">
<!ENTITY statusHeader.label "Status">
<!ENTITY filenameHeader.label "Filename">
<!ENTITY succeeded.label "Succeeded">

Просмотреть файл

@ -5,7 +5,7 @@ PasswordTitle=Password for file transfer
EnterPasswordForUserAt=Enter password for user %username% at %realm%
SavePassword=Save password
# Transfering error strings:
# Transferring error strings:
NSOK=%file% succeeded
FileNotFound="%file%" not found.
SubdirDoesNotExist=The subdirectory "%dir%" doesn't exist on this site or the filename "%file%" is already in use by another subdirectory.
@ -27,17 +27,17 @@ FTPCWD=File or directory of "%file%" cannot be found.
MalformedURI=The Base URL is malformed.
NoFilesSelected=You did not select any files to be transfered.
NoUsername=No username given.
# End-Transfering error strings
# End-Transferring error strings
#ProgressDialog.js
TransferProgressCaption=Roaming transfer: %title%
TransferToSite=Transfering to site: %site%
TransferFromSite=Transfering from site: %site%
TransferToSite=Transferring to site: %site%
TransferFromSite=Transferring from site: %site%
Close=Close
TransferFailed=Transfer failed
TransferCompleted=Transfer completed successfully
Transfering=Transfering...
TransferingListing=Transfering listing file
Transferring=Transferring...
TransferringListing=Transferring listing file
TransferErrorsTitle=Transfer Errors
FatalError=Fatal error while trying to transfer files

Просмотреть файл

@ -119,7 +119,7 @@ interface nsITransfer : nsISupports {
readonly attribute nsIMIMEInfo MIMEInfo;
/**
* Optional; transfering information is passed to this listener and used to
* Optional; transferring information is passed to this listener and used to
* update client UI.
*/
attribute nsIWebProgressListener listener;