diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2004-04-16 17:57:07 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-04-16 17:57:07 +0800 |
commit | 5de7b60f7a19aad8186db52d82db3fe5e11e79d2 (patch) | |
tree | be23bc07c50d02be9086b746024a8790dfa9bd97 /composer/mail-composer-errors.xml.in | |
parent | f53eadffe11cd3bd9e05414e1484e5e648ced8b1 (diff) | |
download | gsoc2013-evolution-5de7b60f7a19aad8186db52d82db3fe5e11e79d2.tar gsoc2013-evolution-5de7b60f7a19aad8186db52d82db3fe5e11e79d2.tar.gz gsoc2013-evolution-5de7b60f7a19aad8186db52d82db3fe5e11e79d2.tar.bz2 gsoc2013-evolution-5de7b60f7a19aad8186db52d82db3fe5e11e79d2.tar.lz gsoc2013-evolution-5de7b60f7a19aad8186db52d82db3fe5e11e79d2.tar.xz gsoc2013-evolution-5de7b60f7a19aad8186db52d82db3fe5e11e79d2.tar.zst gsoc2013-evolution-5de7b60f7a19aad8186db52d82db3fe5e11e79d2.zip |
Work in progress, HIG'ing and de-coupling of errors.
svn path=/trunk/; revision=25493
Diffstat (limited to 'composer/mail-composer-errors.xml.in')
-rw-r--r-- | composer/mail-composer-errors.xml.in | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/composer/mail-composer-errors.xml.in b/composer/mail-composer-errors.xml.in new file mode 100644 index 0000000000..442891d09f --- /dev/null +++ b/composer/mail-composer-errors.xml.in @@ -0,0 +1,35 @@ +<?xml version="1.0"?> +<error-list domain="mail-composer"> + + <error id="attach" type="warning"> + <_primary>You cannot attach the file `${0}' to this message.</_primary> + <_secondary>${0}</_secondary> + </error> + + <error id="attach-notfile" type="warning"> + <_primary>The file `${0}' is not a regular file and cannot be sent in a message.</_primary> + </error> + + <error id="attach-directory"> + <_primary>Directories can not be attached to Messages.</_primary> + <_secondary>To attach the contents of this directory, either attach the files in this directory individually, or create an archive of the directory and attach it.</_secondary> + </error> + + <error id="recover-autosave" type="question"> + <_title>Unfinished messages found</_title> + <_primary>Do you want to recover unfinished messages?</_primary> + <_secondary>Evolution quit unexpectedly while you were composing a new message. Recovering the message will allow you to continue where you left off.</_secondary> + <button _label="Don't Recover" response="GTK_RESPONSE_CANCEL"/> + <button _label="Recover" response="GTK_RESPONSE_YES"/> + </error> + + <error id="exit-unsaved" modal="true" type="warning"> + <_title>Warning: Modified Message</_title> + <_primary>Are you sure you want to discard the message, titled '{0}', you are composing?</_primary> + <_secondary>Closing this composer window will discard the message permanently, unless you choose to save the message in your Drafts folder. This will allow you to continue the message at a later date.</_secondary> + <button _label="Discard Changes" response="GTK_RESPONSE_NO"/> + <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> + <button _label="Save Message" response="GTK_RESPONSE_YES"/> + </error> + +</error-list> |