diff options
-rw-r--r-- | ChangeLog | 16 | ||||
-rw-r--r-- | components/services/summary/nautilus-summary-dialogs.c | 4 | ||||
-rw-r--r-- | components/services/trilobite/helper/eazel-helper.c | 2 | ||||
-rw-r--r-- | configure.in | 8 | ||||
-rw-r--r-- | nautilus-installer/src/installer.c | 4 | ||||
-rw-r--r-- | nautilus.spec.in | 2 |
6 files changed, 26 insertions, 10 deletions
@@ -1,3 +1,19 @@ +2001-02-26 Maciej Stachowiak <mjs@eazel.com> + + reviewed by: Rebecca Schulman <rebecka@eazel.com> + + Fix bug 7051 (Login dialog mis-capitalizes "Services") + + * components/services/summary/nautilus-summary-dialogs.c + (nautilus_summary_show_login_dialog): Change "Eazel services" to + "Eazel Services". + + * components/services/trilobite/helper/eazel-helper.c: * + configure.in: * nautilus-installer/src/installer.c: + (eazel_installer_setup_texts), (eazel_install_get_depends): * + nautilus.spec.in: Fixed other references I found to "Eazel + services" by grepping, + 2001-02-27 Mike Fleming <mfleming@eazel.com> reviewed by: Eskil Olsen <eskil@eazel.com> diff --git a/components/services/summary/nautilus-summary-dialogs.c b/components/services/summary/nautilus-summary-dialogs.c index e5d15258c..fc465b6af 100644 --- a/components/services/summary/nautilus-summary-dialogs.c +++ b/components/services/summary/nautilus-summary-dialogs.c @@ -143,7 +143,7 @@ nautilus_summary_show_login_dialog (NautilusSummaryView *view) switch (view->details->current_attempt) { case initial: image_name = "big_services_icon.png"; - message_text = _("Please log in to Eazel services"); + message_text = _("Please log in to Eazel Services"); break; case retry: image_name = "serv_dialog_alert.png"; @@ -152,7 +152,7 @@ nautilus_summary_show_login_dialog (NautilusSummaryView *view) default: g_assert_not_reached(); image_name = "big_services_icon.png"; - message_text = _("Please log in to Eazel services"); + message_text = _("Please log in to Eazel Services"); break; } diff --git a/components/services/trilobite/helper/eazel-helper.c b/components/services/trilobite/helper/eazel-helper.c index f95bb3aaa..ad9400420 100644 --- a/components/services/trilobite/helper/eazel-helper.c +++ b/components/services/trilobite/helper/eazel-helper.c @@ -1,7 +1,7 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* * eazel-helper is a standalone binary app that's meant to be used - * via 'userhelper' by the Eazel services. You can send it commands + * via 'userhelper' by the Eazel Services. You can send it commands * over stdin, and it will do certain functions for you (assuming it's * running as root). The command API may change at random, so you * should always use TrilobiteRootHelper instead of using eazel-helper diff --git a/configure.in b/configure.in index c49edf3cd..c4b8f5c2b 100644 --- a/configure.in +++ b/configure.in @@ -111,7 +111,7 @@ dnl = Begin tests for eazel-services dnl ==================================== AC_ARG_ENABLE( [eazel-services], - [ --enable-eazel-services Enable support for Eazel services (default is no)], + [ --enable-eazel-services Enable support for Eazel Services (default is no)], [ EAZEL_SERVICES_ENABLED=$enableval ], [ EAZEL_SERVICES_ENABLED=no ]) @@ -954,15 +954,15 @@ echo " Mozilla component : NO" ;; esac -dnl <= Do we want Eazel services => +dnl <= Do we want Eazel Services => case "X$EAZEL_SERVICES_ENABLED" in Xyes) echo " -Eazel services : YES" +Eazel Services : YES" ;; *) echo " -Eazel services : NO" +Eazel Services : NO" ;; esac diff --git a/nautilus-installer/src/installer.c b/nautilus-installer/src/installer.c index a4462d349..a6755624d 100644 --- a/nautilus-installer/src/installer.c +++ b/nautilus-installer/src/installer.c @@ -1739,7 +1739,7 @@ eazel_installer_setup_texts (EazelInstaller *installer, destination = g_strdup_printf ("%s/%s", dest_dir, TEXT_LIST); - g_message ("Trying to contact Eazel services, ignore any 404 warnings at the next line"); + g_message ("Trying to contact Eazel Services, ignore any 404 warnings at the next line"); if (! trilobite_fetch_uri_to_file (url, destination)) { /* try again with proxy config */ @@ -1778,7 +1778,7 @@ eazel_install_get_depends (EazelInstaller *installer, const char *dest_dir) destination = g_strdup_printf ("%s/%s", dest_dir, PACKAGE_LIST); - g_message ("Trying to contact Eazel services..."); + g_message ("Trying to contact Eazel Services..."); if (! trilobite_fetch_uri_to_file (url, destination)) { /* try again with proxy config */ diff --git a/nautilus.spec.in b/nautilus.spec.in index 66a7a6d35..04ace5b28 100644 --- a/nautilus.spec.in +++ b/nautilus.spec.in @@ -88,7 +88,7 @@ This enables the use of embedded Mozilla as a Nautilus component. %description trilobite This is a framework library for service components in Nautilus. It is -required by all Eazel services, including the package installer, and +required by all Eazel Services, including the package installer, and can be used to develop new services. %description suggested |