diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-09-07 00:12:51 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-07 00:12:51 +0800 |
commit | c6c63d16d8e69359fcd8cd74eb62c2422d3c4421 (patch) | |
tree | 5944fb50195d6f3cd6e166cc06e9ed0e5f9eb41f | |
parent | 4c34517c18d3d1e97d737d663252524794848b9f (diff) | |
download | gsoc2013-evolution-c6c63d16d8e69359fcd8cd74eb62c2422d3c4421.tar.gz gsoc2013-evolution-c6c63d16d8e69359fcd8cd74eb62c2422d3c4421.tar.zst gsoc2013-evolution-c6c63d16d8e69359fcd8cd74eb62c2422d3c4421.zip |
** Fixes bug #549968
2008-09-06 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #549968
* calendar/gui/dialogs/comp-editor.c (comp_editor_init):
Use the same mnemonic for "Recent Documents" as composer.
* widgets/misc/e-attachment-bar.c
(e_attachment_bar_bonobo_ui_populate_with):
Use the same mnemonic for "Recent Documents" as composer.
svn path=/trunk/; revision=36266
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 2 | ||||
-rw-r--r-- | widgets/misc/ChangeLog | 7 | ||||
-rw-r--r-- | widgets/misc/e-attachment-bar.c | 2 |
4 files changed, 16 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 627167f8a2..ab31823153 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2008-09-06 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes part of bug #549968 + + * gui/dialogs/comp-editor.c (comp_editor_init): + Use the same mnemonic for "Recent Documents" as composer. + 2008-09-04 Sankar P <psankar@novell.com> License Changes diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 18d2431d2b..f4ecb85f24 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -1763,7 +1763,7 @@ comp_editor_init (CompEditor *editor) NULL, NULL); /* no callback */ action = e_attachment_bar_recent_action_new ( E_ATTACHMENT_BAR (priv->attachment_bar), - "attach-recent", _("Recent Docu_ments")); + "attach-recent", _("Recent _Documents")); gtk_action_group_add_action (action_group, action); gtk_ui_manager_insert_action_group ( priv->manager, action_group, 0); diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index 53a6086062..74ad227f47 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,10 @@ +2008-09-06 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes part of bug #549968 + + * e-attachment-bar.c (e_attachment_bar_bonobo_ui_populate_with): + Use the same mnemonic for "Recent Documents" as composer. + 2008-09-06 Michael Meeks <michael.meeks@novell.com> * e-spinner.c: correct licensing cockup; apologies. diff --git a/widgets/misc/e-attachment-bar.c b/widgets/misc/e-attachment-bar.c index 3da833b7ec..4536ab0233 100644 --- a/widgets/misc/e-attachment-bar.c +++ b/widgets/misc/e-attachment-bar.c @@ -1378,7 +1378,7 @@ e_attachment_bar_bonobo_ui_populate_with_recent (BonoboUIComponent *uic, const c menuitems = g_string_new ("<submenu"); g_string_append (menuitems, " name=\"RecentDocsSubmenu\""); g_string_append_printf (menuitems, " sensitive=\"%s\"", items ? "1" : "0"); - g_string_append_printf (menuitems, " label=\"%s\"", _("Recent Docu_ments")); + g_string_append_printf (menuitems, " label=\"%s\"", _("Recent _Documents")); g_string_append (menuitems, ">\n"); for (l = g_list_first (items), i = 1; l && i <= limit; l = l->next, ++i) { |