Strings missing in Evolution
"Francisco Javier F. Serrador" <[email protected]>
| Newsgroups | gmane.comp.gnome.internationalization.general,gmane.comp.gnome.evolution.devel |
|---|---|
| Organization | Tecknolabs Corporation |
| Message-ID | <[email protected]> |
Hi I'm going to commit this patch to be able to translate these two missing strings present in Evolution. -- Francisco Javier F. Serrador Coordinador de localización Gnome _______________________________________________ gnome-i18n mailing list [email protected] http://mail.gnome.org/mailman/listinfo/gnome-i18n
evolution-msj.diff
(text/x-patch, 1 KB)
Index: widgets/misc/e-dateedit.c
===================================================================
RCS file: /cvs/gnome/evolution/widgets/misc/e-dateedit.c,v
retrieving revision 1.57
diff -u -p -r1.57 e-dateedit.c
--- widgets/misc/e-dateedit.c 14 Jul 2006 04:48:07 -0000 1.57
+++ widgets/misc/e-dateedit.c 2 Oct 2006 22:21:01 -0000
@@ -1631,7 +1631,7 @@ on_date_entry_focus_out (GtkEntry *ent
GTK_DIALOG_MODAL,
GTK_MESSAGE_WARNING,
GTK_BUTTONS_OK,
- "Invalid Date Value");
+ _("Invalid Date Value"));
gtk_dialog_run (GTK_DIALOG(msg_dialog));
gtk_widget_destroy (msg_dialog);
e_date_edit_get_date (dedit,&tmp_tm.tm_year,&tmp_tm.tm_mon,&tmp_tm.tm_mday);
@@ -1657,7 +1657,7 @@ on_time_entry_focus_out (GtkEntry *ent
GTK_DIALOG_MODAL,
GTK_MESSAGE_WARNING,
GTK_BUTTONS_OK,
- "Invalid Time Value");
+ _("Invalid Time Value"));
gtk_dialog_run (GTK_DIALOG(msg_dialog));
gtk_widget_destroy (msg_dialog);
e_date_edit_set_time (dedit,e_date_edit_get_time(dedit));