diff options
author | Milan Crha <mcrha@redhat.com> | 2012-12-04 00:55:55 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-12-04 00:55:55 +0800 |
commit | 2e07947a51153a9c8feddd9e28e81b8affa368ec (patch) | |
tree | 0524ef2800c068e1955b6958b641e432aac516fb /plugins | |
parent | b9b56d39cc500e5393545414af3d3315ded3ee74 (diff) | |
download | gsoc2013-evolution-2e07947a51153a9c8feddd9e28e81b8affa368ec.tar gsoc2013-evolution-2e07947a51153a9c8feddd9e28e81b8affa368ec.tar.gz gsoc2013-evolution-2e07947a51153a9c8feddd9e28e81b8affa368ec.tar.bz2 gsoc2013-evolution-2e07947a51153a9c8feddd9e28e81b8affa368ec.tar.lz gsoc2013-evolution-2e07947a51153a9c8feddd9e28e81b8affa368ec.tar.xz gsoc2013-evolution-2e07947a51153a9c8feddd9e28e81b8affa368ec.tar.zst gsoc2013-evolution-2e07947a51153a9c8feddd9e28e81b8affa368ec.zip |
Bug #502516 - Avoid "source" string in user visible dialogs
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mail-to-task/mail-to-task.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mail-to-task/mail-to-task.c b/plugins/mail-to-task/mail-to-task.c index a9a2042bef..042c2d3e7d 100644 --- a/plugins/mail-to-task/mail-to-task.c +++ b/plugins/mail-to-task/mail-to-task.c @@ -857,13 +857,13 @@ do_mail_to_event (AsyncData *data) else { switch (e_cal_client_get_source_type (client)) { case E_CAL_CLIENT_SOURCE_TYPE_EVENTS: - report_error_idle (_("Selected source is read only, thus cannot create event there. Select other source, please."), NULL); + report_error_idle (_("Selected calendar is read only, thus cannot create event there. Select other calendar, please."), NULL); break; case E_CAL_CLIENT_SOURCE_TYPE_TASKS: - report_error_idle (_("Selected source is read only, thus cannot create task there. Select other source, please."), NULL); + report_error_idle (_("Selected task list is read only, thus cannot create task there. Select other task list, please."), NULL); break; case E_CAL_CLIENT_SOURCE_TYPE_MEMOS: - report_error_idle (_("Selected source is read only, thus cannot create memo there. Select other source, please."), NULL); + report_error_idle (_("Selected memo list is read only, thus cannot create memo there. Select other memo list, please."), NULL); break; default: g_assert_not_reached (); |