commit da036db0b5d61742164be368fdee45fbda592102
parent 491f369b6b868667e774da3d75735332712292cc
Author: Paul <paul@claws-mail.org>
Date: Wed, 16 Jul 2014 15:59:02 +0100
fix some typos. patch by Andreas Rönnquist
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/plugins/libravatar/libravatar.c b/src/plugins/libravatar/libravatar.c
@@ -194,7 +194,7 @@ static GtkWidget *image_widget_from_url(const gchar *url, const gchar *md5)
if (filesize == 0)
missing_add_md5(libravatarmisses, md5);
} else {
- g_warning("could not open '%s' for writting\n", filename);
+ g_warning("could not open '%s' for writing\n", filename);
}
curl_easy_cleanup(curl);
g_free(filename);
diff --git a/src/plugins/libravatar/libravatar_missing.c b/src/plugins/libravatar/libravatar_missing.c
@@ -106,7 +106,7 @@ gint missing_save_to_file(GHashTable *table, const gchar *filename)
FILE *file = fopen(filename, "w");
if (file == NULL) {
- g_warning("Cannot open %s for writting\n", filename);
+ g_warning("Cannot open %s for writing\n", filename);
return -1;
}
diff --git a/src/plugins/python/python_plugin.c b/src/plugins/python/python_plugin.c
@@ -732,7 +732,7 @@ const gchar *plugin_desc(void)
" under Tools -> Show Python console, or stored in scripts.\n\n"
"These scripts are then available via the menu. You can assign"
" keyboard shortcuts to them just like it is done with other menu items."
- " You can also put buttons for script invokation into the toolbars"
+ " You can also put buttons for script invocation into the toolbars"
" using Claws Mail's builtin toolbar editor.\n\n"
"You can provide scripts working on the main window by placing files"
" into ~/.claws-mail/python-scripts/main.\n\n"