Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(847)

Unified Diff: chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm

Issue 8835003: extensions: remove install/uninstall terminology (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm
diff --git a/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm b/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm
index 98e1609da4ef23685848211f234503e150dca18f..a02e6fcbe6bdc50b51ac582a30ab1c3a86134a75 100644
--- a/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm
+++ b/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm
@@ -37,9 +37,10 @@ static void ShowGenericExtensionInstalledInfoBar(
string16 extension_name = UTF8ToUTF16(new_extension->name());
base::i18n::AdjustStringForLocaleDirection(&extension_name);
- string16 msg =
- l10n_util::GetStringFUTF16(IDS_EXTENSION_INSTALLED_HEADING,
- extension_name) +
+ string16 msg = l10n_util::GetStringFUTF16(
+ IDS_EXTENSION_INSTALLED_HEADING,
+ extension_name,
+ l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME)) +
UTF8ToUTF16(" ") +
l10n_util::GetStringUTF16(IDS_EXTENSION_INSTALLED_MANAGE_INFO_MAC);
InfoBarTabHelper* infobar_helper = wrapper->infobar_tab_helper();

Powered by Google App Engine
This is Rietveld 408576698