aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--embed/mozilla/ContentHandler.cpp6
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index fd243e178..d08fc2e27 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2004-12-16 Christian Persch <chpe@cvs.gnome.org>
+ * embed/mozilla/ContentHandler.cpp:
+
+ Add app name to primary text, too. Fixes bug #141327.
+
+2004-12-16 Christian Persch <chpe@cvs.gnome.org>
+
* lib/widgets/ephy-location-entry.c: (entry_clear_activate_cb),
(entry_populate_popup_cb),
(ephy_location_entry_construct_contents):
diff --git a/embed/mozilla/ContentHandler.cpp b/embed/mozilla/ContentHandler.cpp
index 211fb72ea..100aae550 100644
--- a/embed/mozilla/ContentHandler.cpp
+++ b/embed/mozilla/ContentHandler.cpp
@@ -261,10 +261,12 @@ NS_METHOD GContentHandler::MIMEConfirmAction ()
dialog = gtk_message_dialog_new
(parentWindow, GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_WARNING, GTK_BUTTONS_NONE,
- _("Open the file in another application?"));
+ /* translators: %s is the name of the application */
+ _("Open this file with %s?"),
+ mHelperApp->name);
gtk_message_dialog_format_secondary_markup
(GTK_MESSAGE_DIALOG (dialog),
- /* translators: this %s is the name of the application */
+ /* translators: %s is the name of the application */
_("It's not possible to view this file type "
"directly in the browser. You can open it with "
"<tt>%s</tt> or save it."),