diff options
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 3 | ||||
-rw-r--r-- | composer/e-msg-composer-attachment-bar.c | 2 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 8 |
3 files changed, 8 insertions, 5 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index b12591d5c9..15f7c64b50 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,5 +1,8 @@ 2000-10-23 Dan Winship <danw@helixcode.com> + * e-msg-composer.c, e-msg-composer-attachment-bar.c: add some + missing _()s. + * e-msg-composer-address-dialog.*, e-msg-composer-address-entry.*: Old cruft. Remove. diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c index 71ccf2a4f3..357045ce06 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -296,7 +296,7 @@ update (EMsgComposerAttachmentBar *bar) if (!desc || *desc == '\0') desc = camel_mime_part_get_filename (attachment->body); if (!desc) - desc = "attachment"; + desc = _("attachment"); if (attachment->size) { size_string = size_to_string (attachment->size); diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 52b371a4aa..e8f6f40994 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -295,8 +295,8 @@ get_signature (const char *sigfile) if (fd == -1) { char *msg; - msg = g_strdup_printf ("Could not open signature file %s:\n%s", - sigfile, g_strerror (errno)); + msg = g_strdup_printf (_("Could not open signature file %s:\n" + "%s"), sigfile, g_strerror (errno)); gnome_error_dialog (msg); g_free (msg); @@ -459,7 +459,7 @@ describe_save_draft (gpointer in_data, gboolean gerund) if (gerund) { return g_strdup (_("Saving changes to message...")); } else { - return g_strdup (_("About to save changes to message...")); + return g_strdup (_("Save changes to message...")); } } @@ -500,7 +500,7 @@ cleanup_save_draft (gpointer in_data, gpointer op_data, CamelException *ex) if (camel_exception_is_set (ex)) { char *reason; - reason = g_strdup_printf ("Error saving composition to 'Drafts': %s", + reason = g_strdup_printf (_("Error saving composition to 'Drafts': %s"), camel_exception_get_description (ex)); gnome_warning_dialog_parented (reason, GTK_WINDOW (input->composer)); |