From 9fc6ba8c2d0b3656e7205d2232a326bbc81bae22 Mon Sep 17 00:00:00 2001 From: Chyla Zbigniew Date: Fri, 31 Aug 2001 21:42:57 +0000 Subject: Marked strings for translation (with U_). * gui/e-itip-control.c (write_html): Marked strings for translation (with U_). * gui/itip-utils.c (itip_send_comp): Ditto. svn path=/trunk/; revision=12543 --- calendar/gui/e-itip-control.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'calendar/gui/e-itip-control.c') diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 8c153fc116..5fd9f9a6e1 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -43,6 +43,7 @@ #include #include #include +#include #include "calendar-config.h" #include "itip-utils.h" #include "e-itip-control.h" @@ -552,10 +553,9 @@ write_html (EItipControl *itip, gchar *itip_desc, gchar *itip_title, gchar *opti } /* Describe what the user can do */ - html = g_strdup ("
Please review the following information, " - "and then select an action from the menu below."); + html = U_("
Please review the following information, " + "and then select an action from the menu below."); gtk_html_write (GTK_HTML (priv->html), html_stream, html, strlen(html)); - g_free (html); /* Separator */ gtk_html_write (GTK_HTML (priv->html), html_stream, HTML_SEP, strlen (HTML_SEP)); @@ -568,7 +568,7 @@ write_html (EItipControl *itip, gchar *itip_desc, gchar *itip_title, gchar *opti /* Summary */ cal_component_get_summary (priv->comp, &text); - html = g_strdup_printf ("Summary: %s

", text.value ? text.value : "None"); + html = g_strdup_printf (U_("Summary: %s

"), text.value ? text.value : U_("None")); gtk_html_write (GTK_HTML (priv->html), html_stream, html, strlen(html)); g_free (html); @@ -578,7 +578,7 @@ write_html (EItipControl *itip, gchar *itip_desc, gchar *itip_title, gchar *opti text = *((CalComponentText *)l->data); if (l && text.value) { - html = g_strdup_printf ("Description: %s", text.value); + html = g_strdup_printf (U_("Description: %s"), text.value); gtk_html_write (GTK_HTML (priv->html), html_stream, html, strlen(html)); g_free (html); } -- cgit