[ekiga] Uniformise string (New contact -> Add contact)



commit f0ee7ec781630f252fa3fd1974f92a3c335951ea
Author: Eugen Dedu <Eugen Dedu pu-pm univ-fcomte fr>
Date:   Fri Dec 7 13:33:31 2012 +0100

    Uniformise string (New contact -> Add contact)

 .../components/local-roster/local-cluster.cpp      |    2 +-
 lib/engine/components/local-roster/local-heap.cpp  |    2 +-
 plugins/evolution/evolution-book.cpp               |    4 ++--
 plugins/loudmouth/loudmouth-heap-roster.cpp        |    2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/lib/engine/components/local-roster/local-cluster.cpp b/lib/engine/components/local-roster/local-cluster.cpp
index 362a780..9459375 100644
--- a/lib/engine/components/local-roster/local-cluster.cpp
+++ b/lib/engine/components/local-roster/local-cluster.cpp
@@ -79,7 +79,7 @@ Local::Cluster::existing_groups () const
 bool
 Local::Cluster::populate_menu (Ekiga::MenuBuilder& builder)
 {
-  builder.add_action ("new", _("_New Contact"),
+  builder.add_action ("new", _("A_dd Contact"),
 		      boost::bind (&Local::Cluster::on_new_presentity, this));
 
   return true;
diff --git a/lib/engine/components/local-roster/local-heap.cpp b/lib/engine/components/local-roster/local-heap.cpp
index edbe97b..7c21448 100644
--- a/lib/engine/components/local-roster/local-heap.cpp
+++ b/lib/engine/components/local-roster/local-heap.cpp
@@ -115,7 +115,7 @@ Local::Heap::get_name () const
 bool
 Local::Heap::populate_menu (Ekiga::MenuBuilder &builder)
 {
-  builder.add_action ("new", _("_New Contact"),
+  builder.add_action ("new", _("A_dd Contact"),
 		      boost::bind (&Local::Heap::new_presentity, this, "", ""));
   return true;
 }
diff --git a/plugins/evolution/evolution-book.cpp b/plugins/evolution/evolution-book.cpp
index 52a7ffe..7c3eee4 100644
--- a/plugins/evolution/evolution-book.cpp
+++ b/plugins/evolution/evolution-book.cpp
@@ -298,7 +298,7 @@ Evolution::Book::get_ebook () const
 bool
 Evolution::Book::populate_menu (Ekiga::MenuBuilder &builder)
 {
-  builder.add_action ("new", _("New _Contact"),
+  builder.add_action ("new", _("A_dd Contact"),
 		      boost::bind (&Evolution::Book::new_contact_action, this));
   return true;
 }
@@ -340,7 +340,7 @@ Evolution::Book::new_contact_action ()
 {
   boost::shared_ptr<Ekiga::FormRequestSimple> request = boost::shared_ptr<Ekiga::FormRequestSimple> (new Ekiga::FormRequestSimple (boost::bind (&Evolution::Book::on_new_contact_form_submitted, this, _1, _2)));
 
-  request->title (_("_New Contact"));
+  request->title (_("A_dd Contact"));
 
   request->instructions (_("Please update the following fields:"));
 
diff --git a/plugins/loudmouth/loudmouth-heap-roster.cpp b/plugins/loudmouth/loudmouth-heap-roster.cpp
index dc2074f..9a9852a 100644
--- a/plugins/loudmouth/loudmouth-heap-roster.cpp
+++ b/plugins/loudmouth/loudmouth-heap-roster.cpp
@@ -68,7 +68,7 @@ LM::HeapRoster::get_connection () const
 bool
 LM::HeapRoster::populate_menu (Ekiga::MenuBuilder& builder)
 {
-  builder.add_action ("new", _("New _Contact"), boost::bind (&LM::HeapRoster::add_item, this));
+  builder.add_action ("new", _("A_dd Contact"), boost::bind (&LM::HeapRoster::add_item, this));
   dialect->populate_menu (builder);
   return true;
 }



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