Revision: 1529 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1529&view=re... Author: frlan Date: 2010-08-23 09:05:18 +0000 (Mon, 23 Aug 2010)
Log Message: ----------- Updatechecker: Fix a typo and try to adjust log level a bit. Also make output to at concole logging not translatable
Modified Paths: -------------- trunk/geany-plugins/updatechecker/src/updatechecker.c
Modified: trunk/geany-plugins/updatechecker/src/updatechecker.c =================================================================== --- trunk/geany-plugins/updatechecker/src/updatechecker.c 2010-08-23 09:04:54 UTC (rev 1528) +++ trunk/geany-plugins/updatechecker/src/updatechecker.c 2010-08-23 09:05:18 UTC (rev 1529) @@ -76,7 +76,7 @@ SoupSession *soup; SoupMessage *msg;
- g_warning(_("Starting checking for updates")); + g_message("Starting checking for updates"); soup = soup_session_async_new (); msg = soup_message_new ("GET", "http://geany.org/service/version.php");
@@ -178,19 +178,19 @@ { if (version_compare(msg->response_body->data) == TRUE) { - g_warning(_("There is a more recent version availble")); + g_message("There is a more recent version available"); dialogs_show_msgbox(GTK_MESSAGE_INFO, _("There is a more recent version availble. Please check " "http://www.geany.org for updates.")); } else { - g_warning(_("No update available")); + g_message("No update available"); } } else { - g_warning(_("Connection error. Code: %d; Message: %s"), + g_warning("Connection error. Code: %d; Message: %s", msg->status_code, msg->reason_phrase); } }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.