diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-10-31 06:21:53 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-10-31 06:21:53 +0800 |
commit | c73922fb482a0ea02178e948604213918766e2fb (patch) | |
tree | 2b60f86bb2c6a80c525b32616cd2d421da4e3162 /calendar/gui/dialogs | |
parent | ac29afba0d4233e840bbece9e97bc247458befb1 (diff) | |
download | gsoc2013-evolution-c73922fb482a0ea02178e948604213918766e2fb.tar.gz gsoc2013-evolution-c73922fb482a0ea02178e948604213918766e2fb.tar.zst gsoc2013-evolution-c73922fb482a0ea02178e948604213918766e2fb.zip |
Add _() to a string that was missing it.
2001-10-30 Federico Mena Quintero <federico@ximian.com>
* gui/dialogs/meeting-page.c (meeting_page_fill_component): Add
_() to a string that was missing it.
svn path=/trunk/; revision=14491
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/meeting-page.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/meeting-page.c b/calendar/gui/dialogs/meeting-page.c index 776a49f93e..8f5f5f6e68 100644 --- a/calendar/gui/dialogs/meeting-page.c +++ b/calendar/gui/dialogs/meeting-page.c @@ -440,7 +440,7 @@ meeting_page_fill_component (CompEditorPage *page, CalComponent *comp) if (e_meeting_model_count_actual_attendees (priv->model) < 1) { e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, - "At least one attendee is required."); + _("At least one attendee is required.")); return FALSE; } set_attendees (comp, e_meeting_model_get_attendees (priv->model)); |