diff -Nuar ekiga-2.0.3.orig/help/C/ekiga.xml ekiga-2.0.3/help/C/ekiga.xml --- ekiga-2.0.3.orig/help/C/ekiga.xml 2006-09-04 20:24:17.000000000 +0930 +++ ekiga-2.0.3/help/C/ekiga.xml 2006-10-07 22:51:15.000000000 +0930 @@ -497,7 +497,7 @@ &app; has the ability to forward calls to another host. Which allows you to configure &app; to forward all incoming calls to a specified URL. Furthermore it is able to forward calls interactively when you do not answer the call after a configurable amount of time or when you are busy. -Call Forwarding can be configured by selecting Call -> Forward in the main menu or through the preferences window. Notice that you need to specify an URL where to forward calls in the preferences to be able to activate tht option. Open the preferences window by choosing Edit -> Preferences in the main window and select Call Forwarding on the left. You will now see the appropriate section. It contains three checkboxes for the three cases described above and one textfield for the IP address/hostname of the host the calls shall be forwarded to. +Call Forwarding can be configured by selecting Call -> Forward in the main menu or through the preferences window. Notice that you need to specify a URL where to forward calls in the preferences to be able to activate tht option. Open the preferences window by choosing Edit -> Preferences in the main window and select Call Forwarding on the left. You will now see the appropriate section. It contains three checkboxes for the three cases described above and one textfield for the IP address/hostname of the host the calls shall be forwarded to. diff -Nuar ekiga-2.0.3.orig/src/gui/accounts.cpp ekiga-2.0.3/src/gui/accounts.cpp --- ekiga-2.0.3.orig/src/gui/accounts.cpp 2006-08-26 21:39:06.000000000 +0930 +++ ekiga-2.0.3/src/gui/accounts.cpp 2006-10-07 22:24:04.000000000 +0930 @@ -378,7 +378,7 @@ PRegularExpression::IgnoreCase); /* FIXME: that catches the most common allowed characters only, for anything else, - * we will need a function to encode to % HEX HEX format for use in an URL or similar + * we will need a function to encode to % HEX HEX format for use in a URL or similar */ PRegularExpression regex_username ("^[-+._a-z0-9@ ][-._a-z0-9#@* ]*$", PRegularExpression::IgnoreCase); diff -Nuar ekiga-2.0.3.orig/src/gui/addressbook.cpp ekiga-2.0.3/src/gui/addressbook.cpp --- ekiga-2.0.3.orig/src/gui/addressbook.cpp 2006-05-18 04:02:12.000000000 +0930 +++ ekiga-2.0.3/src/gui/addressbook.cpp 2006-10-07 22:24:41.000000000 +0930 @@ -3102,7 +3102,7 @@ } else { - gnomemeeting_error_dialog (GTK_WINDOW (addressbook_window), _("Missing information"), _("Please make sure to provide at least a full name or an URL for the contact.")); + gnomemeeting_error_dialog (GTK_WINDOW (addressbook_window), _("Missing information"), _("Please make sure to provide at least a full name or a URL for the contact.")); } break; diff -Nuar ekiga-2.0.3.orig/src/gui/callbacks.h ekiga-2.0.3/src/gui/callbacks.h --- ekiga-2.0.3.orig/src/gui/callbacks.h 2006-05-14 02:48:39.000000000 +0930 +++ ekiga-2.0.3/src/gui/callbacks.h 2006-10-07 22:25:03.000000000 +0930 @@ -126,7 +126,7 @@ /* DESCRIPTION : This callback is called to compare urls and see if they * match. - * BEHAVIOR : It returns TRUE if the given key matches an URL OR a last + * BEHAVIOR : It returns TRUE if the given key matches a URL OR a last * name or first name in the list store of the completion * entry AND if the matched URL was not already returned * previously. diff -Nuar ekiga-2.0.3.orig/src/gui/callshistory.cpp ekiga-2.0.3/src/gui/callshistory.cpp --- ekiga-2.0.3.orig/src/gui/callshistory.cpp 2006-05-14 01:04:35.000000000 +0930 +++ ekiga-2.0.3/src/gui/callshistory.cpp 2006-10-07 22:25:30.000000000 +0930 @@ -201,7 +201,7 @@ gpointer data); -/* DESCRIPTION : This function is called to compare 1 GmContact to an URL. +/* DESCRIPTION : This function is called to compare 1 GmContact to a URL. * BEHAVIOR : Returns 0 if both URLs are equal. * PRE : / */ diff -Nuar ekiga-2.0.3.orig/src/gui/chat.cpp ekiga-2.0.3/src/gui/chat.cpp --- ekiga-2.0.3.orig/src/gui/chat.cpp 2006-05-07 05:32:31.000000000 +0930 +++ ekiga-2.0.3/src/gui/chat.cpp 2006-10-07 22:25:55.000000000 +0930 @@ -292,21 +292,21 @@ static gboolean gm_tw_urls_history_update_cb (gpointer data); -/* DESCRIPTION : Called when an URL is clicked. +/* DESCRIPTION : Called when a URL is clicked. * BEHAVIOR : Set the text in the clipboard. * PRE : / */ static void copy_uri_cb (const gchar *uri); -/* DESCRIPTION : Called when an URL is clicked. +/* DESCRIPTION : Called when a URL is clicked. * BEHAVIOR : Connect to the given URL or transfer the call to that URL. * PRE : / */ static void connect_uri_cb (const gchar *uri); -/* DESCRIPTION : Called when an URL has to be added to the addressbook. +/* DESCRIPTION : Called when a URL has to be added to the addressbook. * BEHAVIOR : Displays the popup. * PRE : / */ diff -Nuar ekiga-2.0.3.orig/src/gui/config.cpp ekiga-2.0.3/src/gui/config.cpp --- ekiga-2.0.3.orig/src/gui/config.cpp 2006-09-03 00:26:58.000000000 +0930 +++ ekiga-2.0.3/src/gui/config.cpp 2006-10-07 22:26:18.000000000 +0930 @@ -1078,7 +1078,7 @@ GTK_WINDOW (data): GTK_WINDOW (main_window), _("Forward URL not specified"), - _("You need to specify an URL where to forward calls in the call forwarding section of the preferences!\n\nDisabling forwarding.")); + _("You need to specify a URL where to forward calls in the call forwarding section of the preferences!\n\nDisabling forwarding.")); gm_conf_set_bool ((gchar *) gm_conf_entry_get_key (entry), FALSE);*/ //FIXME diff -Nuar ekiga-2.0.3.orig/src/gui/druid.cpp ekiga-2.0.3/src/gui/druid.cpp --- ekiga-2.0.3.orig/src/gui/druid.cpp 2006-05-07 04:11:46.000000000 +0930 +++ ekiga-2.0.3/src/gui/druid.cpp 2006-10-07 22:27:09.000000000 +0930 @@ -438,7 +438,7 @@ gpointer data); -/* DESCRIPTION : Called when the user clicks on an URL to get a SIP account. +/* DESCRIPTION : Called when the user clicks on a URL to get a SIP account. * BEHAVIOR : Fires up a browser. * PRE : / */