]> git.0d.be Git - empathy.git/commitdiff
translate "Call $NUMBER" menu items
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Mon, 14 Oct 2013 17:05:48 +0000 (13:05 -0400)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Mon, 14 Oct 2013 17:10:24 +0000 (13:10 -0400)
libempathy-gtk/empathy-individual-menu.c

index aa61e688f61eecf54a44f09878bcf53197f2c909..5dc1309839142c6c0bcda24124c97ee2c61070ef 100644 (file)
@@ -458,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));
         }