[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: xgnokii patches to translate some strings
From: |
Daniele Forsi |
Subject: |
Re: xgnokii patches to translate some strings |
Date: |
Wed, 04 Jan 2006 19:28:47 +0100 |
User-agent: |
Mozilla Thunderbird 1.0.7 (X11/20050923) |
I wrote:
there is one more line...
and more in xgnokii_calendar.c
Shuold I send the diffs as attachments or in the body of the message?
Index: xgnokii/xgnokii_calendar.c
===================================================================
RCS file: /sources/gnokii/gnokii/xgnokii/xgnokii_calendar.c,v
retrieving revision 1.27
diff -u -p -0 -r1.27 xgnokii_calendar.c
--- xgnokii/xgnokii_calendar.c 10 Aug 2005 07:33:43 -0000 1.27
+++ xgnokii/xgnokii_calendar.c 4 Jan 2006 18:23:14 -0000
@@ -165 +165 @@ static gint InsertCalendarEntry(gn_calno
- row[6] = g_strdup_printf("every %d minutes",
note->recurrence);
+ row[6] = g_strdup_printf(_("every %d minutes"),
note->recurrence);
@@ -192 +192 @@ static gint InsertCalendarEntry(gn_calno
- row[6] = g_strdup_printf("every %d minutes",
note->recurrence);
+ row[6] = g_strdup_printf(_("every %d minutes"),
note->recurrence);
@@ -219 +219 @@ static gint InsertCalendarEntry(gn_calno
- row[6] = g_strdup_printf("every %d minutes",
note->recurrence);
+ row[6] = g_strdup_printf(_("every %d minutes"),
note->recurrence);
@@ -850 +850 @@ void CreateRecurrenceMenu(AddDialogData
- item = gtk_menu_item_new_with_label("Never");
+ item = gtk_menu_item_new_with_label(_("Never"));
@@ -856 +856 @@ void CreateRecurrenceMenu(AddDialogData
- item = gtk_menu_item_new_with_label("Every Day");
+ item = gtk_menu_item_new_with_label(_("Every Day"));
@@ -862 +862 @@ void CreateRecurrenceMenu(AddDialogData
- item = gtk_menu_item_new_with_label("Every Week");
+ item = gtk_menu_item_new_with_label(_("Every Week"));
@@ -868 +868 @@ void CreateRecurrenceMenu(AddDialogData
- item = gtk_menu_item_new_with_label("Every 2 Weeks");
+ item = gtk_menu_item_new_with_label(_("Every 2 Weeks"));
@@ -874 +874 @@ void CreateRecurrenceMenu(AddDialogData
- item = gtk_menu_item_new_with_label("Every Year");
+ item = gtk_menu_item_new_with_label(_("Every Year"));
--
Daniele