diff options
author | Milan Crha <mcrha@redhat.com> | 2009-11-10 18:46:41 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-11-10 18:46:41 +0800 |
commit | b9953ceaed91acfcca24a54240ff51847526e6a8 (patch) | |
tree | 46b10672faa374ed0fb072e480d52a1032f2d2a0 /mail/mail.error.xml | |
parent | 5beeca1f80c3a618feeeb2c5b7e09cc47b64387d (diff) | |
download | gsoc2013-evolution-b9953ceaed91acfcca24a54240ff51847526e6a8.tar.gz gsoc2013-evolution-b9953ceaed91acfcca24a54240ff51847526e6a8.tar.zst gsoc2013-evolution-b9953ceaed91acfcca24a54240ff51847526e6a8.zip |
Bug #250046 - Composer addresses reading fixes
- Check for no addresses properly (in post-to only when shown)
- Check for garbage addresses and warn user about those
- Use garbage text in To/CC/Bcc fields when user typed them
Diffstat (limited to 'mail/mail.error.xml')
-rw-r--r-- | mail/mail.error.xml | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/mail/mail.error.xml b/mail/mail.error.xml index 62c8b53da3..6f7b62b615 100644 --- a/mail/mail.error.xml +++ b/mail/mail.error.xml @@ -15,8 +15,8 @@ <_primary>Are you sure you want to send a message in HTML format?</_primary> <_secondary xml:space="preserve">Please make sure the following recipients are willing and able to receive HTML email: {0}</_secondary> - <button _label="_Send" response="GTK_RESPONSE_YES"/> <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> + <button _label="_Send" response="GTK_RESPONSE_YES"/> </error> <error id="ask-send-no-subject" type="question" default="GTK_RESPONSE_YES"> @@ -42,6 +42,22 @@ Many email systems add an Apparently-To header to messages that only have BCC re <button _label="_Send" response="GTK_RESPONSE_YES"/> </error> + <error id="ask-send-invalid-recip-one" type="question" default="GTK_RESPONSE_YES"> + <_primary>Are you sure you want to send a message with invalid address?</_primary> + <_secondary xml:space="preserve">The following recipient was not recognized as a valid mail address: +{0}</_secondary> + <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> + <button _label="_Send" response="GTK_RESPONSE_YES"/> + </error> + + <error id="ask-send-invalid-recip-multi" type="question" default="GTK_RESPONSE_YES"> + <_primary>Are you sure you want to send a message with invalid addresses?</_primary> + <_secondary xml:space="preserve">The following recipients were not recognized as valid mail addresses: +{0}</_secondary> + <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> + <button _label="_Send" response="GTK_RESPONSE_YES"/> + </error> + <error id="send-no-recipients" type="warning"> <_primary>This message cannot be sent because you have not specified any recipients</_primary> <_secondary xml:space="preserve">Please enter a valid email address in the To: field. You can search for email addresses by clicking on the To: button next to the entry box.</_secondary> |