1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 09:13:14 +02:00

Fix typo: transfert -> transfer

This commit is contained in:
Sebastien Helleu
2009-05-12 11:39:22 +02:00
parent 50bfe2cbba
commit 54ae52c4f0
15 changed files with 35 additions and 35 deletions
+1 -1
View File
@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* xfer-dcc.c: file transfert via DCC protocol */
/* xfer-dcc.c: file transfer via DCC protocol */
#include <stdlib.h>
+1 -1
View File
@@ -148,7 +148,7 @@ xfer_network_child_read_cb (void *arg_xfer, int fd)
case XFER_STATUS_ACTIVE:
if (xfer->status == XFER_STATUS_CONNECTING)
{
/* connection was successful by child, init transfert times */
/* connection was successful by child, init transfer times */
xfer->status = XFER_STATUS_ACTIVE;
xfer->start_transfer = time (NULL);
xfer->last_check_time = time (NULL);
+4 -4
View File
@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* xfer.c: file transfert and direct chat plugin for WeeChat */
/* xfer.c: file transfer and direct chat plugin for WeeChat */
#include <stdlib.h>
@@ -43,7 +43,7 @@
WEECHAT_PLUGIN_NAME(XFER_PLUGIN_NAME);
WEECHAT_PLUGIN_DESCRIPTION("Xfer (file transfert and direct chat) plugin for "
WEECHAT_PLUGIN_DESCRIPTION("Xfer (file transfer and direct chat) plugin for "
"WeeChat");
WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION);
@@ -1105,7 +1105,7 @@ xfer_start_resume_cb (void *data, const char *signal, const char *type_data,
weechat_printf (NULL,
_("%s%s: unable to resume file \"%s\" (port: %d, "
"start position: %lu): xfer not found or not ready "
"for transfert"),
"for transfer"),
weechat_prefix ("error"), XFER_PLUGIN_NAME, filename,
port, start_resume);
}
@@ -1192,7 +1192,7 @@ xfer_accept_resume_cb (void *data, const char *signal, const char *type_data,
weechat_printf (NULL,
_("%s%s: unable to accept resume file \"%s\" (port: %d, "
"start position: %lu): xfer not found or not ready "
"for transfert"),
"for transfer"),
weechat_prefix ("error"), XFER_PLUGIN_NAME, filename,
port, start_resume);
}
+1 -1
View File
@@ -35,7 +35,7 @@ enum t_xfer_type
XFER_NUM_TYPES,
};
/* xfer protocol (for file transfert) */
/* xfer protocol (for file transfer) */
enum t_xfer_protocol
{