]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-individual-menu.c
translate "Call $NUMBER" menu items
[empathy.git] / libempathy-gtk / empathy-individual-menu.c
index 02babc2abacdb60af8444097f100a8d1fc2f438f..5dc1309839142c6c0bcda24124c97ee2c61070ef 100644 (file)
@@ -25,6 +25,7 @@
 
 #include <glib/gi18n-lib.h>
 #include <tp-account-widgets/tpaw-camera-monitor.h>
+#include <telepathy-glib/telepathy-glib-dbus.h>
 
 #include "empathy-account-selector-dialog.h"
 #include "empathy-call-utils.h"
@@ -457,13 +458,16 @@ add_phone_numbers (EmpathyIndividualMenu *self)
 
       if (type != NULL)
         {
-          tmp = g_strdup_printf ("Call %s (%s)",
+          /* translators: first argument is a phone number like +32123456 and
+           * the second one is something like 'home' or 'work'. */
+          tmp = g_strdup_printf (_("Call %s (%s)"),
               folks_phone_field_details_get_normalised (details),
               type);
         }
       else
         {
-          tmp = g_strdup_printf ("Call %s",
+          /* translators: argument is a phone number like +32123456 */
+          tmp = g_strdup_printf (_("Call %s"),
               folks_phone_field_details_get_normalised (details));
         }