evolution r37004 - in trunk/calendar: . gui
- From: mbarnes svn gnome org
- To: svn-commits-list gnome org
- Subject: evolution r37004 - in trunk/calendar: . gui
- Date: Tue, 6 Jan 2009 16:51:51 +0000 (UTC)
Author: mbarnes
Date: Tue Jan 6 16:51:51 2009
New Revision: 37004
URL: http://svn.gnome.org/viewvc/evolution?rev=37004&view=rev
Log:
2009-01-06 Matthew Barnes <mbarnes redhat com>
** Fixes bug #566599
* calendar/gui/itip-utils.c (comp_subject):
Add translator comments and gettext context for meeting mail
subject prefixes.
Modified:
trunk/calendar/ChangeLog
trunk/calendar/gui/itip-utils.c
Modified: trunk/calendar/gui/itip-utils.c
==============================================================================
--- trunk/calendar/gui/itip-utils.c (original)
+++ trunk/calendar/gui/itip-utils.c Tue Jan 6 16:51:51 2009
@@ -661,16 +661,32 @@
switch (a->status) {
case ICAL_PARTSTAT_ACCEPTED:
- prefix = _("Accepted");
+ /* Translators: This is part of the subject
+ * line of a meeting request or update email.
+ * The full subject line would be:
+ * "Accepted: Meeting Name". */
+ prefix = C_("Meeting", "Accepted");
break;
case ICAL_PARTSTAT_TENTATIVE:
- prefix = _("Tentatively Accepted");
+ /* Translators: This is part of the subject
+ * line of a meeting request or update email.
+ * The full subject line would be:
+ * "Tentatively Accepted: Meeting Name". */
+ prefix = C_("Meeting", "Tentatively Accepted");
break;
case ICAL_PARTSTAT_DECLINED:
- prefix = _("Declined");
+ /* Translators: This is part of the subject
+ * line of a meeting request or update email.
+ * The full subject line would be:
+ * "Declined: Meeting Name". */
+ prefix = C_("Meeting", "Declined");
break;
case ICAL_PARTSTAT_DELEGATED:
- prefix = _("Delegated");
+ /* Translators: This is part of the subject
+ * line of a meeting request or update email.
+ * The full subject line would be:
+ * "Delegated: Meeting Name". */
+ prefix = C_("Meeting", "Delegated");
break;
default:
break;
@@ -680,23 +696,38 @@
break;
case E_CAL_COMPONENT_METHOD_ADD:
- prefix = _("Updated");
+ /* Translators: This is part of the subject line of a
+ * meeting request or update email. The full subject
+ * line would be: "Updated: Meeting Name". */
+ prefix = C_("Meeting", "Updated");
break;
case E_CAL_COMPONENT_METHOD_CANCEL:
- prefix = _("Cancel");
+ /* Translators: This is part of the subject line of a
+ * meeting request or update email. The full subject
+ * line would be: "Cancel: Meeting Name". */
+ prefix = C_("Meeting", "Cancel");
break;
case E_CAL_COMPONENT_METHOD_REFRESH:
- prefix = _("Refresh");
+ /* Translators: This is part of the subject line of a
+ * meeting request or update email. The full subject
+ * line would be: "Refresh: Meeting Name". */
+ prefix = C_("Meeting", "Refresh");
break;
case E_CAL_COMPONENT_METHOD_COUNTER:
- prefix = _("Counter-proposal");
+ /* Translators: This is part of the subject line of a
+ * meeting request or update email. The full subject
+ * line would be: "Counter-proposal: Meeting Name". */
+ prefix = C_("Meeting", "Counter-proposal");
break;
case E_CAL_COMPONENT_METHOD_DECLINECOUNTER:
- prefix = _("Declined");
+ /* Translators: This is part of the subject line of a
+ * meeting request or update email. The full subject
+ * line would be: "Declined: Meeting Name". */
+ prefix = C_("Meeting", "Declined");
break;
default:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]