From 2e07947a51153a9c8feddd9e28e81b8affa368ec Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 3 Dec 2012 17:55:55 +0100 Subject: Bug #502516 - Avoid "source" string in user visible dialogs --- mail/mail.error.xml | 12 ++++++------ plugins/mail-to-task/mail-to-task.c | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/mail/mail.error.xml b/mail/mail.error.xml index 2573f0cfe8..3f1f29599e 100644 --- a/mail/mail.error.xml +++ b/mail/mail.error.xml @@ -243,27 +243,27 @@ Many email systems add an Apparently-To header to messages that only have BCC re <_primary>Cannot move folder "{0}" to "{1}". - <_secondary xml:space="preserve">Cannot open source "{2}". + <_secondary xml:space="preserve">Cannot open source folder. Error: {2} <_primary>Cannot move folder "{0}" to "{1}". - <_secondary xml:space="preserve">Cannot open target "{2}". + <_secondary xml:space="preserve">Cannot open target folder. Error: {2} <_primary>Cannot copy folder "{0}" to "{1}". - <_secondary xml:space="preserve">Cannot open source "{2}". + <_secondary xml:space="preserve">Cannot open source folder. Error: {2} <_primary>Cannot copy folder "{0}" to "{1}". - <_secondary xml:space="preserve">Cannot open target "{2}". + <_secondary xml:space="preserve">Cannot open target folder. Error: {2} <_primary>Cannot create folder "{0}". - <_secondary xml:space="preserve">Cannot open source "{1}". + <_secondary xml:space="preserve">Cannot open folder. Error: {1} @@ -330,7 +330,7 @@ go to the Search Folder editor to add it explicitly, if required. - <_primary>No sources selected. + <_primary>No folder selected. <_secondary xml:space="preserve">You must specify at least one folder as a source. Either by selecting the folders individually, and/or by selecting all local folders, all remote folders, or both. 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 (); -- cgit