aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Weber <aaron@src.gnome.org>2002-10-01 04:11:15 +0800
committerAaron Weber <aaron@src.gnome.org>2002-10-01 04:11:15 +0800
commit43dfa91e96a82455faeeb6376b02b0dc8a53c93c (patch)
treebb95caff9d089907f0a0f48144d0dc10089d0fa3
parent44a1f8aeec2c3a49a5fab8e67cd583c39fe54c3f (diff)
downloadgsoc2013-evolution-43dfa91e96a82455faeeb6376b02b0dc8a53c93c.tar
gsoc2013-evolution-43dfa91e96a82455faeeb6376b02b0dc8a53c93c.tar.gz
gsoc2013-evolution-43dfa91e96a82455faeeb6376b02b0dc8a53c93c.tar.bz2
gsoc2013-evolution-43dfa91e96a82455faeeb6376b02b0dc8a53c93c.tar.lz
gsoc2013-evolution-43dfa91e96a82455faeeb6376b02b0dc8a53c93c.tar.xz
gsoc2013-evolution-43dfa91e96a82455faeeb6376b02b0dc8a53c93c.tar.zst
gsoc2013-evolution-43dfa91e96a82455faeeb6376b02b0dc8a53c93c.zip
It's a grand old string-review! Nitpicky and minor changes; details in the appropriate ChangeLog files.
svn path=/trunk/; revision=18268
-rw-r--r--ChangeLog7
-rw-r--r--addressbook/ChangeLog4
-rw-r--r--addressbook/gui/widgets/e-addressbook-util.c4
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/dialogs/alarm-options.glade2
-rw-r--r--calendar/gui/e-itip-control.c4
-rw-r--r--composer/ChangeLog6
-rw-r--r--composer/e-msg-composer.c4
-rw-r--r--composer/evolution-composer.c2
-rw-r--r--filter/ChangeLog8
-rw-r--r--filter/filter-datespec.c2
-rw-r--r--filter/filter-folder.c3
-rw-r--r--mail/ChangeLog11
-rw-r--r--mail/component-factory.c2
-rw-r--r--mail/mail-callbacks.c4
-rw-r--r--mail/mail-signature-editor.c2
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/glade/evolution-startup-wizard.glade2
-rw-r--r--shell/importer/import.glade2
-rw-r--r--ui/ChangeLog7
-rw-r--r--ui/evolution-executive-summary.xml2
-rw-r--r--ui/evolution-mail-message.xml2
22 files changed, 75 insertions, 18 deletions
diff --git a/ChangeLog b/ChangeLog
index ff485ceed1..edbb1f2d7e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-09-27 gettextize <bug-gnu-gettext@gnu.org>
+
+ * Makefile.am (SUBDIRS): Add m4.
+ (ACLOCAL_AMFLAGS): New variable.
+ (EXTRA_DIST): Add config.rpath.
+ * configure.in (AC_OUTPUT): Add po/Makefile.in, m4/Makefile.
+
2002-09-23 Radek Doulik <rodo@ximian.com>
* configure.in: use pkg-config for gtkhtml
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 1485b0ffee..72b8ef43e8 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,7 @@
+2002-09-30 Aaron Weber <aaron@ximian.com>
+
+ * gui/widgets/e-addressbook-util.c (e_addressbook_show_multiple_cards): rephrase string on l. 213
+
2002-09-30 Dan Winship <danw@ximian.com>
* backend/ebook/e-card.c (e_card_list_send): update for
diff --git a/addressbook/gui/widgets/e-addressbook-util.c b/addressbook/gui/widgets/e-addressbook-util.c
index a0ec15f3cc..04f4238fbd 100644
--- a/addressbook/gui/widgets/e-addressbook-util.c
+++ b/addressbook/gui/widgets/e-addressbook-util.c
@@ -210,8 +210,8 @@ e_addressbook_show_multiple_cards (EBook *book,
GNOME_STOCK_BUTTON_CANCEL,
NULL);
- string = g_strdup_printf (_("You have requested that %d cards be cards. This will cause %d new windows to be\n"
- "displayed on your screen. Do you really want to display all of these cards?"), length, length);
+ string = g_strdup_printf (_("Opening %d cards will open %d new windows as well.\n"
+ "Do you really want to display all of these cards?"), length, length);
gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (dialog)->vbox), gtk_label_new (string), FALSE, FALSE, 0);
g_free (string);
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index ad35cb5fcb..697ca28f3e 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2002-09-30 Aaron Weber <aaron@ximian.com>
+
+ * gui/e-itip-control.c (update_item): adjust string on line 1609
+ and 1517.
+
+ * gui/dialogs/alarm-options.glade: rephrase string on line 270
+
2002-09-27 Dan Winship <danw@ximian.com>
* gui/calendar-commands.c (pixmaps): Remove "/Toolbar/New" and
diff --git a/calendar/gui/dialogs/alarm-options.glade b/calendar/gui/dialogs/alarm-options.glade
index 00c38b9390..645d57758e 100644
--- a/calendar/gui/dialogs/alarm-options.glade
+++ b/calendar/gui/dialogs/alarm-options.glade
@@ -267,7 +267,7 @@ days
<class>GtkLabel</class>
<name>malarm-group</name>
<visible>False</visible>
- <label>This is an email reminder, but Evolution does not yet support this kind of reminders. You will not be able to edit the options for this reminder.</label>
+ <label>Evolution does not yet support email notification for reminders. You will not be able to edit the options for this reminder.</label>
<justify>GTK_JUSTIFY_CENTER</justify>
<wrap>True</wrap>
<xalign>0.5</xalign>
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c
index 7b1dd28689..5b163312ed 100644
--- a/calendar/gui/e-itip-control.c
+++ b/calendar/gui/e-itip-control.c
@@ -1514,7 +1514,7 @@ update_item (EItipControl *itip)
dialog = gnome_warning_dialog (_("Object could not be found\n"));
break;
case CAL_CLIENT_RESULT_PERMISSION_DENIED :
- dialog = gnome_warning_dialog (_("You don't have permissions to update the calendar\n"));
+ dialog = gnome_warning_dialog (_("You do not have the right permissions to update the calendar\n"));
break;
case CAL_CLIENT_RESULT_SUCCESS :
dialog = gnome_ok_dialog (_("Update complete\n"));
@@ -1606,7 +1606,7 @@ update_attendee_status (EItipControl *itip)
dialog = gnome_warning_dialog (_("Object could not be found\n"));
break;
case CAL_CLIENT_RESULT_PERMISSION_DENIED :
- dialog = gnome_warning_dialog (_("You don't have permissions to update the calendar\n"));
+ dialog = gnome_warning_dialog (_("You don't have the right permissions to update the calendar\n"));
break;
case CAL_CLIENT_RESULT_SUCCESS :
dialog = gnome_ok_dialog (_("Attendee status updated\n"));
diff --git a/composer/ChangeLog b/composer/ChangeLog
index ff09113d6b..d4704eb554 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,9 @@
+2002-09-30 Aaron Weber <aaron@ximian.com>
+
+ * evolution-composer.c (evolution_composer_factory_init): adjust string on line 391
+
+ * e-msg-composer.c (create_composer): adjust string on 2872
+
2002-09-27 Dan Winship <danw@ximian.com>
* Evolution-Composer.idl (setHeaders): let the caller set the
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index 2da8679807..1dfe6667fe 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -2818,7 +2818,9 @@ create_composer (int visible_mask)
if (!composer->editor) {
e_activation_failure_dialog (GTK_WINDOW (composer),
_("Could not create composer window:\n"
- "Unable to activate HTML editor component."),
+ "Unable to activate HTML editor component.\n"
+ "Please make sure you have the correct version\n"
+ "of gtkhtml and libgtkhtml installed.\n"),
GNOME_GTKHTML_EDITOR_CONTROL_ID,
"IDL:Bonobo/Control:1.0");
gtk_object_destroy (GTK_OBJECT (composer));
diff --git a/composer/evolution-composer.c b/composer/evolution-composer.c
index f7131ae6ae..a8d8f154a5 100644
--- a/composer/evolution-composer.c
+++ b/composer/evolution-composer.c
@@ -405,7 +405,7 @@ evolution_composer_factory_init (void (*send) (EMsgComposer *, gpointer),
if (bonobo_generic_factory_new (GNOME_EVOLUTION_MAIL_COMPOSER_FACTORY_ID,
factory_fn, NULL) == NULL) {
e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
- _("Cannot initialize Evolution's composer."));
+ _("Cannot initialize the Evolution composer."));
exit (1);
}
diff --git a/filter/ChangeLog b/filter/ChangeLog
index 3c682db9ef..0479a709a4 100644
--- a/filter/ChangeLog
+++ b/filter/ChangeLog
@@ -1,3 +1,11 @@
+2002-09-30 Aaron Weber <aaron@ximian.com>
+
+ * filter-folder.c (validate): adjust string on 149 to "You must
+ specify a folder.
+
+ * filter-datespec.c (get_best_span): adjust string on 174 from
+ "You have forgotten to choose a date" to "You must choose a date."
+
2002-09-25 Dan Winship <danw@ximian.com>
* filter-folder.c (get_widget): Use "mail/*" as the allowed folder
diff --git a/filter/filter-datespec.c b/filter/filter-datespec.c
index 698e95325d..9ee3b3e2a6 100644
--- a/filter/filter-datespec.c
+++ b/filter/filter-datespec.c
@@ -171,7 +171,7 @@ validate (FilterElement *fe)
valid = fds->type != FDST_UNKNOWN;
if (!valid) {
- GtkWidget *gd = gnome_ok_dialog (_("You have forgotten to choose a date."));
+ GtkWidget *gd = gnome_ok_dialog (_("You must choose a date."));
gnome_dialog_run_and_close (GNOME_DIALOG (gd));
}
diff --git a/filter/filter-folder.c b/filter/filter-folder.c
index d24fd1cd26..f33735ea39 100644
--- a/filter/filter-folder.c
+++ b/filter/filter-folder.c
@@ -146,8 +146,7 @@ validate (FilterElement *fe)
} else {
GtkWidget *dialog;
- dialog = gnome_ok_dialog (_("You forgot to choose a folder.\n"
- "Please go back and specify a valid folder to deliver mail to."));
+ dialog = gnome_ok_dialog (_("You must specify a folder.\n"));
gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 3444dae643..794d5dc78d 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,14 @@
+2002-09-30 Aaron Weber <aaron@ximian.com>
+
+ * mail-signature-editor.c (mail_signature_editor): change
+ string to "Enter a name for this signature" on line 372.
+
+ * mail-callbacks.c (ask_confirm_for_unwanted_html_mail): change
+ HTML-mail warning on 255
+
+ * component-factory.c (component_factory_init): change
+ "Evolution's foo" to "the Evolution foo" in string on 1078
+
2002-09-30 Not Zed <NotZed@Ximian.com>
* mail-session.c (request_password): translate prompt from utf8 to
diff --git a/mail/component-factory.c b/mail/component-factory.c
index c5ca3c4d14..da74969be4 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -1075,7 +1075,7 @@ component_factory_init (void)
result = oaf_active_server_register (COMPONENT_ID, bonobo_object_corba_objref (shell_component));
if (result == OAF_REG_ERROR) {
e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
- _("Cannot initialize Evolution's mail component."));
+ _("Cannot initialize the Evolution mail component."));
exit (1);
} else if (result == OAF_REG_ALREADY_ACTIVE) {
g_warning ("evolution-mail is already running");
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c
index e55d125e83..eef61fde6a 100644
--- a/mail/mail-callbacks.c
+++ b/mail/mail-callbacks.c
@@ -252,8 +252,8 @@ ask_confirm_for_unwanted_html_mail (EMsgComposer *composer, EDestination **recip
}
/* FIXME: this wording sucks */
- str = g_string_new (_("You are sending an HTML-formatted message, but the following recipients "
- "do not want HTML-formatted mail:\n"));
+ str = g_string_new (_("You are sending an HTML-formatted message. Please make sure that\n"
+ "the following recipients are willing and able to receive HTML mail:\n"));
for (i = 0; recipients[i] != NULL; ++i) {
if (!e_destination_get_html_mail_pref (recipients[i])) {
const char *name;
diff --git a/mail/mail-signature-editor.c b/mail/mail-signature-editor.c
index dae3e6934d..2a6463d680 100644
--- a/mail/mail-signature-editor.c
+++ b/mail/mail-signature-editor.c
@@ -369,7 +369,7 @@ mail_signature_editor (MailConfigSignature *sig)
hbox = gtk_hbox_new (FALSE, 4);
vbox1 = gtk_vbox_new (FALSE, 3);
gtk_container_set_border_width (GTK_CONTAINER (vbox1), 3);
- label = gtk_label_new (_("Type the name by which you would like to refer to this signature."));
+ label = gtk_label_new (_("Enter a name for this signature."));
gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
gtk_box_pack_start (GTK_BOX (vbox1), label, FALSE, TRUE, 0);
label = gtk_label_new (_("Name:"));
diff --git a/shell/ChangeLog b/shell/ChangeLog
index d8b359a08e..f17b18602e 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,9 @@
+2002-09-30 Aaron Weber <aaron@ximian.com>
+
+ * importer/import.glade: Import Assistant vs. Importer assistant.
+
+ * glade/evolution-startup-wizard.glade: setup/set up confusion in 15.
+
2002-09-30 Dan Winship <danw@ximian.com>
* e-shell-view-menu.c (command_remove_other_users_folder): Calls
diff --git a/shell/glade/evolution-startup-wizard.glade b/shell/glade/evolution-startup-wizard.glade
index f82643f76b..947cba13bc 100644
--- a/shell/glade/evolution-startup-wizard.glade
+++ b/shell/glade/evolution-startup-wizard.glade
@@ -239,7 +239,7 @@ Please click the &quot;Next&quot; button to continue. </text>
<name>done-page</name>
<title>Done</title>
<text>You have successfully entered all of the information
-needed to setup Evolution.
+needed to set up Evolution.
Click the &quot;Finish&quot; button to save your settings. </text>
<background_color>0,0,1</background_color>
diff --git a/shell/importer/import.glade b/shell/importer/import.glade
index fae8c9c0f0..6ab1bf60b5 100644
--- a/shell/importer/import.glade
+++ b/shell/importer/import.glade
@@ -19,7 +19,7 @@
<class>GtkWindow</class>
<name>importwizard</name>
<visible>False</visible>
- <title>Evolution Importer Assistant</title>
+ <title>Evolution Import Assistant</title>
<type>GTK_WINDOW_TOPLEVEL</type>
<position>GTK_WIN_POS_NONE</position>
<modal>False</modal>
diff --git a/ui/ChangeLog b/ui/ChangeLog
index 9ce5645fbd..ff4cf2148a 100644
--- a/ui/ChangeLog
+++ b/ui/ChangeLog
@@ -1,3 +1,10 @@
+2002-09-30 Aaron Weber <aaron@ximian.com>
+
+ * evolution-mail-message.xml: setup/set up
+
+ * evolution-executive-summary.xml: Customize is spelled with a Z
+ in us english, and an S elsewhere. Nitpicky!
+
2002-09-30 Dan Winship <danw@ximian.com>
* evolution.xml: Add FileRemoveOtherUsersFolder
diff --git a/ui/evolution-executive-summary.xml b/ui/evolution-executive-summary.xml
index d6f53e236e..a6f383d0aa 100644
--- a/ui/evolution-executive-summary.xml
+++ b/ui/evolution-executive-summary.xml
@@ -4,7 +4,7 @@
<submenu name="Settings">
<menuitem name="CustomiseMyEvolution" verb="CustomiseMyEvolution"
- _label="Customise My Evolution"/>
+ _label="Customize My Evolution"/>
</submenu>
diff --git a/ui/evolution-mail-message.xml b/ui/evolution-mail-message.xml
index e859a85813..be2e75194e 100644
--- a/ui/evolution-mail-message.xml
+++ b/ui/evolution-mail-message.xml
@@ -142,7 +142,7 @@
pixtype="pixbuf"/>
<cmd name="PrintSetup"
- _tip="Setup the page settings for your current printer"
+ _tip="Set up the page settings for your current printer"
pixtype="pixbuf"/>
<cmd name="ToolsFilterMailingList"