ekiga r6757 - in trunk: . src/endpoints



Author: dsandras
Date: Sun Aug 31 14:29:02 2008
New Revision: 6757
URL: http://svn.gnome.org/viewvc/ekiga?rev=6757&view=rev

Log:
Don't confuse forward and transfer.


Modified:
   trunk/ChangeLog
   trunk/src/endpoints/sip-endpoint.cpp

Modified: trunk/src/endpoints/sip-endpoint.cpp
==============================================================================
--- trunk/src/endpoints/sip-endpoint.cpp	(original)
+++ trunk/src/endpoints/sip-endpoint.cpp	Sun Aug 31 14:29:02 2008
@@ -271,18 +271,18 @@
     std::stringstream forward_action;
     if (!(*ita).empty ()) {
       call_action << _("Call") << " [" << (*ita) << "]";
-      forward_action << _("Forward") << " [" << (*ita) << "]";
+      forward_action << _("Transfer") << " [" << (*ita) << "]";
     }
     else {
       call_action << _("Call");
-      forward_action << _("Forward");
+      forward_action << _("Transfer");
     }
 
     if (0 == GetConnectionCount ())
       builder.add_action ("call", call_action.str (),
                           sigc::bind (sigc::mem_fun (this, &Opal::Sip::EndPoint::on_dial), (*it)));
     else 
-      builder.add_action ("forward", forward_action.str (),
+      builder.add_action ("transfer", forward_action.str (),
                           sigc::bind (sigc::mem_fun (this, &Opal::Sip::EndPoint::on_forward), (*it)));
 
     ita++;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]