diff options
author | Milan Crha <mcrha@redhat.com> | 2008-07-28 15:32:54 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-07-28 15:32:54 +0800 |
commit | 764a1b7b002565c7115be0f0087fcf8f867a475e (patch) | |
tree | 9298d792db4b2952aace6a13fcf3b0dfc13157c0 /plugins/groupwise-features/process-meeting.c | |
parent | 338375efacaf594ab9759845ce88fbf8ea6a0f4b (diff) | |
download | gsoc2013-evolution-764a1b7b002565c7115be0f0087fcf8f867a475e.tar.gz gsoc2013-evolution-764a1b7b002565c7115be0f0087fcf8f867a475e.tar.zst gsoc2013-evolution-764a1b7b002565c7115be0f0087fcf8f867a475e.zip |
** Fix for bug #543756
2008-07-28 Milan Crha <mcrha@redhat.com>
** Fix for bug #543756
* org-gnome-shared-folder.errors.xml:
* process-meeting.c: (process_meeting):
Make question better translatable.
svn path=/trunk/; revision=35851
Diffstat (limited to 'plugins/groupwise-features/process-meeting.c')
-rw-r--r-- | plugins/groupwise-features/process-meeting.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/groupwise-features/process-meeting.c b/plugins/groupwise-features/process-meeting.c index 5b8da30b7e..f4606439ce 100644 --- a/plugins/groupwise-features/process-meeting.c +++ b/plugins/groupwise-features/process-meeting.c @@ -221,14 +221,14 @@ process_meeting (ECalendarView *cal_view, icalparameter_partstat status) if (recurring) { gint response; - const char *arg; + const char *msg; if (status == ICAL_PARTSTAT_ACCEPTED || status == ICAL_PARTSTAT_TENTATIVE) - arg = "accept"; + msg = "org.gnome.evolution.mail_shared_folder:recurrence-accept"; else - arg = "decline"; + msg = "org.gnome.evolution.mail_shared_folder:recurrence-decline"; - response = e_error_run (NULL, "org.gnome.evolution.mail_shared_folder:recurrence", arg, NULL); + response = e_error_run (NULL, msg, NULL); if (response == GTK_RESPONSE_YES) { icalproperty *prop; const char *uid = icalcomponent_get_uid (r_data->icalcomp); |