diff -Nuar gftp-2.0.18.orig/docs/sample.gftp/gftprc gftp-2.0.18/docs/sample.gftp/gftprc --- gftp-2.0.18.orig/docs/sample.gftp/gftprc 2004-11-05 13:04:51.000000000 +1030 +++ gftp-2.0.18/docs/sample.gftp/gftprc 2006-10-08 19:43:05.000000000 +0930 @@ -72,7 +72,7 @@ # The maximum KB/s a file transfer can get. (Set to 0 to disable) maxkbs=0.00 -# The block size that is used when transfering files. This should be a +# The block size that is used when transferring files. This should be a # multiple of 1024. trans_blksize=20480 @@ -218,9 +218,9 @@ # option to LIST resolve_symlinks=1 -# If you are transfering a text file from Windows to UNIX box or vice versa, +# If you are transferring a text file from Windows to UNIX box or vice versa, # then you should enable this. Each system represents newlines differently for -# text files. If you are transfering from UNIX to UNIX, then it is safe to +# text files. If you are transferring from UNIX to UNIX, then it is safe to # leave this off. If you are downloading binary data, you will want to disable # this. ascii_transfers=0 diff -Nuar gftp-2.0.18.orig/docs/USERS-GUIDE gftp-2.0.18/docs/USERS-GUIDE --- gftp-2.0.18.orig/docs/USERS-GUIDE 2002-08-06 05:16:56.000000000 +0930 +++ gftp-2.0.18/docs/USERS-GUIDE 2006-10-08 19:44:31.000000000 +0930 @@ -515,7 +515,7 @@ If you want to specify several files to transfer one after the other then you must first throw the "Start file transfer" toggle off by clicking on -FTP->Options->Start file transfers->Apply->OK. If you are only transfering a +FTP->Options->Start file transfers->Apply->OK. If you are only transferring a single file then you can ignore the "Start file transfer" toggle. To transfer a file double click on the file name in the left directory @@ -822,8 +822,8 @@ The right hand side of the transfer window shows the status of the transfer(s) in progress. gFTP shows the % completion of the entire queue, the size of the file currently being transfered, how many bytes of the current file -have already been transferred, which files are finished transfering, and which -files are waiting to begin transfering. The progress report also shows the +have already been transferred, which files are finished transferring, and which +files are waiting to begin transferring. The progress report also shows the current transfer rate and gives an estimated length of time until the entire queue is transferred. Your milage may vary. @@ -1011,7 +1011,7 @@ 14. SSH protocol SSH (Secure SHell) is a protocol which provides a high level of security -for transfering files from one computer to another across the Internet. gFTP +for transferring files from one computer to another across the Internet. gFTP implements the SSH protocol by calling upon an SSH program to wrap a layer of security around what would otherwise be an ordinary FTP tansfer. In effect FTP "tunnels" through a secure SSH connection. diff -Nuar gftp-2.0.18.orig/lib/gftp.h gftp-2.0.18/lib/gftp.h --- gftp-2.0.18.orig/lib/gftp.h 2005-01-19 09:39:58.000000000 +1030 +++ gftp-2.0.18/lib/gftp.h 2006-10-08 19:36:13.000000000 +0930 @@ -250,8 +250,8 @@ unsigned int selected : 1, /* Is this file selected? */ was_sel : 1, /* Was this file selected before */ shown : 1, /* Is this file shown? */ - done_view : 1, /* View the file when done transfering? */ - done_edit : 1, /* Edit the file when done transfering? */ + done_view : 1, /* View the file when done transferring? */ + done_edit : 1, /* Edit the file when done transferring? */ done_rm : 1, /* Remove the file when done */ transfer_done : 1, /* Is current file transfer done? */ is_fd : 1; /* Is this a file descriptor? */ diff -Nuar gftp-2.0.18.orig/lib/options.h gftp-2.0.18/lib/options.h --- gftp-2.0.18.orig/lib/options.h 2005-01-19 12:19:17.000000000 +1030 +++ gftp-2.0.18/lib/options.h 2006-10-08 19:42:20.000000000 +0930 @@ -129,7 +129,7 @@ {"trans_blksize", N_("Transfer Block Size:"), gftp_option_type_int, GINT_TO_POINTER(20480), NULL, GFTP_CVARS_FLAGS_SHOW_BOOKMARK, - N_("The block size that is used when transfering files. This should be a multiple of 1024."), + N_("The block size that is used when transferring files. This should be a multiple of 1024."), GFTP_PORT_ALL, NULL}, {"default_protocol", N_("Default Protocol:"), diff -Nuar gftp-2.0.18.orig/lib/rfc959.c gftp-2.0.18/lib/rfc959.c --- gftp-2.0.18.orig/lib/rfc959.c 2005-01-25 13:04:18.000000000 +1030 +++ gftp-2.0.18/lib/rfc959.c 2006-10-08 19:42:21.000000000 +0930 @@ -84,7 +84,7 @@ {"ascii_transfers", N_("Transfer files in ASCII mode"), gftp_option_type_checkbox, GINT_TO_POINTER(0), NULL, GFTP_CVARS_FLAGS_SHOW_BOOKMARK, - N_("If you are transfering a text file from Windows to UNIX box or vice versa, then you should enable this. Each system represents newlines differently for text files. If you are transfering from UNIX to UNIX, then it is safe to leave this off. If you are downloading binary data, you will want to disable this."), + N_("If you are transferring a text file from Windows to UNIX box or vice versa, then you should enable this. Each system represents newlines differently for text files. If you are transferring from UNIX to UNIX, then it is safe to leave this off. If you are downloading binary data, you will want to disable this."), GFTP_PORT_ALL, NULL}, {NULL, NULL, 0, NULL, NULL, 0, NULL, 0, NULL} diff -Nuar gftp-2.0.18.orig/src/gtk/transfer.c gftp-2.0.18/src/gtk/transfer.c --- gftp-2.0.18.orig/src/gtk/transfer.c 2006-10-08 19:48:32.000000000 +0930 +++ gftp-2.0.18/src/gtk/transfer.c 2006-10-08 19:42:19.000000000 +0930 @@ -1,5 +1,5 @@ /*****************************************************************************/ -/* transfer.c - functions to handle transfering files */ +/* transfer.c - functions to handle transferring files */ /* Copyright (C) 1998-2003 Brian Masney */ /* */ /* This program is free software; you can redistribute it and/or modify */ diff -Nuar gftp-2.0.18.orig/src/uicommon/gftpui.c gftp-2.0.18/src/uicommon/gftpui.c --- gftp-2.0.18.orig/src/uicommon/gftpui.c 2006-10-08 19:48:32.000000000 +0930 +++ gftp-2.0.18/src/uicommon/gftpui.c 2006-10-08 19:42:30.000000000 +0930 @@ -1484,7 +1484,7 @@ { tdata->fromreq->logging_function (gftp_logging_error, tdata->fromreq, - _("There was an error transfering the file %s"), + _("There was an error transferring the file %s"), curfle->file); } }