diff options
author | Rodney Dawes <dobey@novell.com> | 2005-05-07 01:57:28 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2005-05-07 01:57:28 +0800 |
commit | 9dfbde97f536b48d86f269636b2967b114d25380 (patch) | |
tree | 81b80e65e9eaeb95077aa56a1dbc6c68f94c4673 /composer | |
parent | ea4a4fedf72ca75328873693219cb840a0cf1e91 (diff) | |
download | gsoc2013-evolution-9dfbde97f536b48d86f269636b2967b114d25380.tar.gz gsoc2013-evolution-9dfbde97f536b48d86f269636b2967b114d25380.tar.zst gsoc2013-evolution-9dfbde97f536b48d86f269636b2967b114d25380.zip |
Use "Attach" as the text for the "Open" action button in the file chooser
2005-05-06 Rodney Dawes <dobey@novell.com>
* e-msg-composer-select-file.c (get_selector): Use "Attach" as the
text for the "Open" action button in the file chooser
svn path=/trunk/; revision=29309
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/e-msg-composer-select-file.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 13761dd241..6babe5a983 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2005-05-06 Rodney Dawes <dobey@novell.com> + + * e-msg-composer-select-file.c (get_selector): Use "Attach" as the + text for the "Open" action button in the file chooser + 2005-05-06 Not Zed <NotZed@Ximian.com> * mail.error.xml: renamed from mail-errors.xml, add i18n tags, fix diff --git a/composer/e-msg-composer-select-file.c b/composer/e-msg-composer-select-file.c index e93c39dcd2..b8d6c280de 100644 --- a/composer/e-msg-composer-select-file.c +++ b/composer/e-msg-composer-select-file.c @@ -77,7 +77,7 @@ get_selector(struct _EMsgComposer *composer, const char *title, guint32 flags) NULL, GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, - GTK_STOCK_OPEN, GTK_RESPONSE_OK, + _("Attach"), GTK_RESPONSE_OK, NULL); gtk_dialog_set_default_response (GTK_DIALOG (selection), GTK_RESPONSE_OK); |