diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-07-27 03:09:30 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-07-27 03:09:30 +0800 |
commit | 9d27429cc84587fe5699e4e42d69961007b1c44d (patch) | |
tree | 58d0dd9db21bda6a22fab0c9b86fc848902cd1a9 | |
parent | 1a71d1071cd26fb93cb0c5c46f52221d4979e4d5 (diff) | |
download | gsoc2013-evolution-9d27429cc84587fe5699e4e42d69961007b1c44d.tar gsoc2013-evolution-9d27429cc84587fe5699e4e42d69961007b1c44d.tar.gz gsoc2013-evolution-9d27429cc84587fe5699e4e42d69961007b1c44d.tar.bz2 gsoc2013-evolution-9d27429cc84587fe5699e4e42d69961007b1c44d.tar.lz gsoc2013-evolution-9d27429cc84587fe5699e4e42d69961007b1c44d.tar.xz gsoc2013-evolution-9d27429cc84587fe5699e4e42d69961007b1c44d.tar.zst gsoc2013-evolution-9d27429cc84587fe5699e4e42d69961007b1c44d.zip |
Capitalize the title of the dialog for consistency.
* e-shell-view-menu.c (command_new_shortcut): Capitalize the title
of the dialog for consistency.
* e-shell-folder-creation-dialog.c (setup_dialog): Don't prepend
the window's title with "Evolution -" since we don't do that
anywhere else. Also capitalize properly.
svn path=/trunk/; revision=17616
-rw-r--r-- | shell/ChangeLog | 9 | ||||
-rw-r--r-- | shell/e-shell-folder-creation-dialog.c | 2 | ||||
-rw-r--r-- | shell/e-shell-view-menu.c | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index ba430ed051..8e29fa4937 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,14 @@ 2002-07-26 Ettore Perazzoli <ettore@ximian.com> + * e-shell-view-menu.c (command_new_shortcut): Capitalize the title + of the dialog for consistency. + + * e-shell-folder-creation-dialog.c (setup_dialog): Don't prepend + the window's title with "Evolution -" since we don't do that + anywhere else. Also capitalize properly. + +2002-07-26 Ettore Perazzoli <ettore@ximian.com> + * e-shell-user-creatable-items-handler.c (ensure_menu_xml): Put in the ComponentItems placeholder, instead of NewItems. diff --git a/shell/e-shell-folder-creation-dialog.c b/shell/e-shell-folder-creation-dialog.c index 7b9b5ab4de..23940acffa 100644 --- a/shell/e-shell-folder-creation-dialog.c +++ b/shell/e-shell-folder-creation-dialog.c @@ -288,7 +288,7 @@ setup_dialog (GtkWidget *dialog, gtk_window_set_transient_for (GTK_WINDOW (dialog), parent_window); gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); - gtk_window_set_title (GTK_WINDOW (dialog), _("Evolution - Create new folder")); + gtk_window_set_title (GTK_WINDOW (dialog), _("Create New Folder")); gnome_dialog_set_default (GNOME_DIALOG (dialog), 0); gnome_dialog_set_sensitive (GNOME_DIALOG (dialog), 0, FALSE); diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 13415e35c4..98414e3a65 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -592,7 +592,7 @@ command_new_shortcut (BonoboUIComponent *uih, shell_view = E_SHELL_VIEW (data); folder_selection_dialog = e_shell_folder_selection_dialog_new (e_shell_view_get_shell (shell_view), - _("Create a new shortcut"), + _("Create New Shortcut"), _("Select the folder you want the shortcut to point to:"), e_shell_view_get_current_uri (shell_view), NULL); |