diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-12-16 23:43:09 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-12-16 23:43:09 +0800 |
commit | 9c3d47f0455cc19b849135c67eaec88a922978f4 (patch) | |
tree | 389f340d0ee9fca4d1c840c723aab099c03ee12a /embed/mozilla | |
parent | c1d15c1d82e1784531f8bf775dcf3ceef167eae6 (diff) | |
download | gsoc2013-epiphany-9c3d47f0455cc19b849135c67eaec88a922978f4.tar gsoc2013-epiphany-9c3d47f0455cc19b849135c67eaec88a922978f4.tar.gz gsoc2013-epiphany-9c3d47f0455cc19b849135c67eaec88a922978f4.tar.bz2 gsoc2013-epiphany-9c3d47f0455cc19b849135c67eaec88a922978f4.tar.lz gsoc2013-epiphany-9c3d47f0455cc19b849135c67eaec88a922978f4.tar.xz gsoc2013-epiphany-9c3d47f0455cc19b849135c67eaec88a922978f4.tar.zst gsoc2013-epiphany-9c3d47f0455cc19b849135c67eaec88a922978f4.zip |
Quote app name.
2004-12-16 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/ContentHandler.cpp:
Quote app name.
Diffstat (limited to 'embed/mozilla')
-rw-r--r-- | embed/mozilla/ContentHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/mozilla/ContentHandler.cpp b/embed/mozilla/ContentHandler.cpp index 100aae550..f4a0f0166 100644 --- a/embed/mozilla/ContentHandler.cpp +++ b/embed/mozilla/ContentHandler.cpp @@ -262,14 +262,14 @@ NS_METHOD GContentHandler::MIMEConfirmAction () (parentWindow, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_WARNING, GTK_BUTTONS_NONE, /* translators: %s is the name of the application */ - _("Open this file with %s?"), + _("Open this file with \"%s\"?"), mHelperApp->name); gtk_message_dialog_format_secondary_markup (GTK_MESSAGE_DIALOG (dialog), /* 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."), + "\"%s\" or save it."), mHelperApp->name); } else |