diff options
author | Sankar P <psankar@novell.com> | 2005-10-18 15:12:15 +0800 |
---|---|---|
committer | Sankarasivasubramanian Pasupathilingam <psankar@src.gnome.org> | 2005-10-18 15:12:15 +0800 |
commit | e751338e4953544b113b19ed0ea8eeebfb0b111d (patch) | |
tree | fdfcc479482c69ed07ee40ed1bf336d0abe02946 /mail/mail.error.xml | |
parent | 789a6ed0cde0f8b797540118ef840d2a172cbabb (diff) | |
download | gsoc2013-evolution-e751338e4953544b113b19ed0ea8eeebfb0b111d.tar.gz gsoc2013-evolution-e751338e4953544b113b19ed0ea8eeebfb0b111d.tar.zst gsoc2013-evolution-e751338e4953544b113b19ed0ea8eeebfb0b111d.zip |
- Enhances Signature-Preferences. - Added shortcuts for common operations.
2005-10-18 Sankar P <psankar@novell.com>
- Enhances Signature-Preferences.
- Added shortcuts for common operations.
-- Delete on Del key
-- Edit on Dbl.Click
- Prevents adding duplicate and NULL signatures
* mail-signature-editor.c (menu_file_save_cb) (mail_signature_editor)
(sig_name_changed) (menu_file_save_close_cb) (delete_event_cb) (do_exit):
Modified the functions for handling the above scenarios.
* mail.error.xml:
Added error strings for duplicate and NULL signatures.
* em-composer-prefs.c (em_composer_prefs_construct) (sig_delete_cb) (sig_add_cb):
Modified the functions so as to handle the keyboard accelarators
and to grab focus to the list on deletion/insertion of signatures.
* em-composer-prefs.c (signature_key_press)(sig_tree_event_cb):
Added new functions to handle the
keypress events on the signatures list tree.
Fixes #269749
svn path=/trunk/; revision=30519
Diffstat (limited to 'mail/mail.error.xml')
-rw-r--r-- | mail/mail.error.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mail/mail.error.xml b/mail/mail.error.xml index 7ab4d23209..2b23652f03 100644 --- a/mail/mail.error.xml +++ b/mail/mail.error.xml @@ -367,5 +367,17 @@ You can choose to ignore this folder, overwrite or append its contents, or quit. <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> <button stock="gtk-yes" response="GTK_RESPONSE_YES"/> </error> + + + <error id="signature-already-exists" type="error" modal="true"> + <_primary>Signature Already Exists</_primary> + <_secondary>A signature already exists with the name "{0}". Please specify a different name. </_secondary> + </error> + + <error id="blank-signature" type="error" modal="true"> + <_primary>Blank Signature</_primary> + <_secondary>Please provide an unique name to identify this signature.</_secondary> + </error> + </error-list> |