Re: [GnomeMeeting-devel-list] The revolution has begun



Damien Sandras wrote:
Damien Sandras wrote:
Julien, can you rename Connect and Disconnect in the statusicon.cpp and
main.cpp?
Renaming yes, but what to ? "Call" and "Hang-up" ?
Yes, but I think it should be "Hang Up".

See attached patch. Since you're not there, I count on others to comment and tell me if they find it nice enough :-)

But if we receive an incoming call, I guess "Hang Up" is not correct :-/
Also, in the incoming call popup, what do we have currently? Accept/Decline ?

Reject / Transfer / Accept so it looks good.

Snark
diff -ur ekiga.cvs/src/gui/main.cpp ekiga.patched/src/gui/main.cpp
--- ekiga.cvs/src/gui/main.cpp	2006-01-25 11:04:22.000000000 +0100
+++ ekiga.patched/src/gui/main.cpp	2006-01-26 07:49:49.000000000 +0100
@@ -632,7 +632,7 @@
   gtk_tool_item_set_expand (GTK_TOOL_ITEM (item), FALSE);
 
   gtk_tooltips_set_tip (mw->tips, GTK_WIDGET (mw->connect_button), 
-			_("Enter an URL to call on the left, and click on this button to connect to the given URL"), NULL);
+			_("Enter an URL to call on the left, and click on this button to call the given URL"), NULL);
   
   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
 
@@ -868,10 +868,10 @@
     {
       GTK_MENU_NEW (_("C_all")),
 
-      GTK_MENU_ENTRY("connect", _("C_onnect"), _("Create a new connection"), 
+      GTK_MENU_ENTRY("connect", _("Ca_ll), _("Create a new connection"), 
 		     GM_STOCK_CONNECT_16, 'o',
 		     GTK_SIGNAL_FUNC (connect_cb), main_window, TRUE),
-      GTK_MENU_ENTRY("disconnect", _("_Disconnect"),
+      GTK_MENU_ENTRY("disconnect", _("_Hang up"),
 		     _("Close the current connection"), 
 		     GM_STOCK_DISCONNECT_16, 'd',
 		     GTK_SIGNAL_FUNC (disconnect_cb), NULL, FALSE),
diff -ur ekiga.cvs/src/gui/statusicon.cpp ekiga.patched/src/gui/statusicon.cpp
--- ekiga.cvs/src/gui/statusicon.cpp	2006-01-25 11:04:22.000000000 +0100
+++ ekiga.patched/src/gui/statusicon.cpp	2006-01-26 07:47:44.000000000 +0100
@@ -96,10 +96,10 @@
 
   static MenuEntry menu [] =
     {
-      GTK_MENU_ENTRY("connect", _("_Connect"), _("Create a new connection"),
+      GTK_MENU_ENTRY("connect", _("_Call"), _("Create a new connection"),
 		     GM_STOCK_CONNECT_16, 'c',
 		     GTK_SIGNAL_FUNC (connect_cb), main_window, TRUE),
-      GTK_MENU_ENTRY("disconnect", _("_Disconnect"),
+      GTK_MENU_ENTRY("disconnect", _("_Hang up"),
 		     _("Close the current connection"),
 		     GM_STOCK_DISCONNECT_16, 'd',
 		     GTK_SIGNAL_FUNC (disconnect_cb), NULL, FALSE),


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