From: <the...@us...> - 2006-10-07 18:19:24
|
Revision: 17444 http://svn.sourceforge.net/gaim/?rev=17444&view=rev Author: thekingant Date: 2006-10-07 11:19:17 -0700 (Sat, 07 Oct 2006) Log Message: ----------- Patch from launchpad bug #64445, from Paul Schulz Fix some typos Modified Paths: -------------- trunk/doc/PERL-HOWTO.dox trunk/gtk/plugins/musicmessaging/musicmessaging.c trunk/libgaim/protocols/gg/gg.c trunk/libgaim/protocols/sametime/sametime.c Modified: trunk/doc/PERL-HOWTO.dox =================================================================== --- trunk/doc/PERL-HOWTO.dox 2006-10-07 17:25:21 UTC (rev 17443) +++ trunk/doc/PERL-HOWTO.dox 2006-10-07 18:19:17 UTC (rev 17444) @@ -518,7 +518,7 @@ @code sub timeout_cb { my $plugin = shift; - print "Timeout occured."; + print "Timeout occurred."; # Reschedule timeout Gaim::timeout_add($plugin, 10, \&timeout_cb, $plugin); Modified: trunk/gtk/plugins/musicmessaging/musicmessaging.c =================================================================== --- trunk/gtk/plugins/musicmessaging/musicmessaging.c 2006-10-07 17:25:21 UTC (rev 17443) +++ trunk/gtk/plugins/musicmessaging/musicmessaging.c 2006-10-07 18:19:17 UTC (rev 17444) @@ -523,7 +523,7 @@ if (!(g_spawn_async (".", args, NULL, 4, NULL, NULL, &(mmconv->pid), &spawn_error))) { gaim_notify_error(plugin_pointer, _("Error Running Editor"), - _("The following error has occured:"), spawn_error->message); + _("The following error has occurred:"), spawn_error->message); mmconv->started = FALSE; } else Modified: trunk/libgaim/protocols/gg/gg.c =================================================================== --- trunk/libgaim/protocols/gg/gg.c 2006-10-07 17:25:21 UTC (rev 17443) +++ trunk/libgaim/protocols/gg/gg.c 2006-10-07 18:19:17 UTC (rev 17444) @@ -713,7 +713,7 @@ if (h == NULL) { gaim_notify_error(account, NULL, - _("Unable to change password. Error occured.\n"), + _("Unable to change password. Error occurred.\n"), NULL); goto exit_err; } Modified: trunk/libgaim/protocols/sametime/sametime.c =================================================================== --- trunk/libgaim/protocols/sametime/sametime.c 2006-10-07 17:25:21 UTC (rev 17443) +++ trunk/libgaim/protocols/sametime/sametime.c 2006-10-07 18:19:17 UTC (rev 17444) @@ -1638,7 +1638,7 @@ /* fetch the global error value */ err = errno; - /* read problem occured if we're here, so we'll need to take care of + /* read problem occurred if we're here, so we'll need to take care of it and clean up internal state */ if(pd->socket) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |