this._handle_persona_map.size > 1)))
{
/* Translators: the parameter is an identifier. */
- warning (_("Unknown persona '%s' in favorites list."), ids[i]);
+ warning (_("Unknown Telepathy contact ‘%s’ in favorites list."),
+ ids[i]);
continue;
}
{
/* Translators: the parameter is a persona identifier and
* the second parameter is a group name. */
- warning (_("Failed to add persona '%s' to group '%s'."),
- persona.uid, group);
+ warning (_("Failed to add Telepathy contact ‘%s’ to group ‘%s’."),
+ persona.contact.identifier, group);
}
else
{
warning (
/* Translators: the parameter is a persona identifier
* and the second parameter is a group name. */
- _("Failed to remove persona '%s' from group '%s'."),
- persona.uid, group);
+ _("Failed to remove Telepathy contact ‘%s’ from group ‘%s’."),
+ persona.contact.identifier, group);
}
}
}
tp_persona.is_in_contact_list == false)
{
throw new PersonaStoreError.UNSUPPORTED_ON_USER (
- _("Personas representing the local user may not be removed."));
+ _("Telepathy contacts representing the local user may not be removed."));
}
try
catch (GLib.Error e1)
{
warning (
- /* Translators: The first parameter is an identifier, the second
- * is the persona's alias and the third is an error message.
- * "stored" is the name of a program object, and shouldn't be
- * translated. */
- _("Failed to remove persona '%s' (%s) from 'stored' list: %s"),
- tp_persona.uid, tp_persona.alias, e1.message);
+ /* Translators: The first parameter is a contact identifier, the
+ * second is a contact list identifier and the third is an error
+ * message. */
+ _("Failed to remove Telepathy contact ‘%s’ from ‘%s’ list: %s"),
+ tp_persona.contact.identifier, "stored", e1.message);
}
try
catch (GLib.Error e2)
{
warning (
- /* Translators: The first parameter is an identifier, the second
- * is the persona's alias and the third is an error message.
- * "subscribe" is the name of a program object, and shouldn't be
- * translated. */
- _("Failed to remove persona '%s' (%s) from 'subscribe' list: %s"),
- tp_persona.uid, tp_persona.alias, e2.message);
+ /* Translators: The first parameter is a contact identifier, the
+ * second is a contact list identifier and the third is an error
+ * message. */
+ _("Failed to remove Telepathy contact ‘%s’ from ‘%s’ list: %s"),
+ tp_persona.contact.identifier, "subscribe", e2.message);
}
try
catch (GLib.Error e3)
{
warning (
- /* Translators: The first parameter is an identifier, the second
- * is the persona's alias and the third is an error message.
- * "publish" is the name of a program object, and shouldn't be
- * translated. */
- _("Failed to remove persona '%s' (%s) from 'publish' list: %s"),
- tp_persona.uid, tp_persona.alias, e3.message);
+ /* Translators: The first parameter is a contact identifier, the
+ * second is a contact list identifier and the third is an error
+ * message. */
+ _("Failed to remove Telepathy contact ‘%s’ from ‘%s’ list: %s"),
+ tp_persona.contact.identifier, "publish", e3.message);
}
/* the contact will be actually removed (and signaled) when we hear back
if (is_member == true)
{
warning (
- /* Translators: the first parameter is a persona identifier,
- * the second is a contact list identifier and the third is
- * an error message. */
- _("Failed to add persona '%s' to contact list '%s': %s"),
- persona.uid, channel.get_identifier (), e.message);
+ /* Translators: The first parameter is a contact identifier,
+ * the second is a contact list identifier and the third is an
+ * error message. */
+ _("Failed to add Telepathy contact ‘%s’ to ‘%s’ list: %s"),
+ tp_persona.contact.identifier, channel.get_identifier (),
+ e.message);
}
else
{
warning (
- /* Translators: the first parameter is a persona identifier,
- * the second is a contact list identifier and the third is
- * an error message. */
- _("Failed to remove persona '%s' from contact list '%s': %s"),
- persona.uid, channel.get_identifier (), e.message);
+ /* Translators: The first parameter is a contact identifier,
+ * the second is a contact list identifier and the third is an
+ * error message. */
+ _("Failed to remove Telepathy contact ‘%s’ from ‘%s’ list: %s"),
+ tp_persona.contact.identifier, channel.get_identifier (),
+ e.message);
}
}
}
warning (
/* Translators: the first parameter is a channel identifier and
* the second is an error message.. */
- _("Failed to create personas from incoming contacts in channel '%s': %s"),
+ _("Failed to create incoming Telepathy contacts from channel ‘%s’: %s"),
channel.get_identifier (), e.message);
}
}
this._conn == null)
{
throw new PersonaStoreError.STORE_OFFLINE (
- _("Cannot create a new persona while offline."));
+ _("Cannot create a new Telepathy contact while offline."));
}
var contact_ids = new string[1];
catch (GLib.Error e)
{
throw new PropertyError.UNKNOWN_ERROR (
- _("Failed to change a persona's favorite status."));
+ /* Translators: the parameter is a contact identifier. */
+ _("Failed to change favorite status for Telepathy contact ‘%s’."),
+ ((Tpf.Persona) persona).contact.identifier);
}
}
stderr.printf (
/* Translators: the first parameter is a persona identifier,
* and the second is an error message. */
- _("Error changing group of Pidgin.Persona '%s': %s\n"),
+ _("Error changing group of contact ‘%s’: %s") + "\n",
persona.iid, e.message);
}
}
* of IM addresses each on a new line, and the third is an error
* message. */
stderr.printf (
- _("Failed to create new persona for buddy with alias '%s' and IM addresses:\n%s\nError: %s\n"),
+ _("Failed to create new contact for buddy with alias ‘%s’ and IM addresses:\n%s\nError: %s\n"),
alias, im_address_string, e.message);
return null;
}
/* Translators: the first parameter is a persona identifier, the
* second is an alias for the persona, and the third is a set of IM
* addresses each on a new line. */
- _("Created persona '%s' for buddy with alias '%s' and IM addresses:\n%s"),
+ _("Created contact ‘%s’ for buddy with alias ‘%s’ and IM addresses:\n%s"),
persona.uid, alias, im_address_string);
this.persona_count++;