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

Unified Diff: chrome/browser/cocoa/preferences_localizer.mm

Issue 115817: Use correct branding on the "make default browser" button. Create a new local... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 7 months 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/cocoa/preferences_localizer.mm
===================================================================
--- chrome/browser/cocoa/preferences_localizer.mm (revision 0)
+++ chrome/browser/cocoa/preferences_localizer.mm (revision 0)
@@ -0,0 +1,28 @@
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import "chrome/browser/cocoa/preferences_localizer.h"
+
+#include "app/l10n_util.h"
+#include "base/sys_string_conversions.h"
+#include "grit/chromium_strings.h"
+#include "grit/generated_resources.h"
+
+@implementation PreferencesLocalizer
+
+// Override to map into our string bundles instead of strings plists.
+// TODO(pinkerton): This should use a string lookup table to map the string to
+// a constant.
+- (NSString *)localizedStringForString:(NSString *)string {
+ if ([string isEqualToString:
+ @"^Make Chromium My Default Browser"]) {
+ std::wstring tempString =
+ l10n_util::GetStringF(IDS_OPTIONS_DEFAULTBROWSER_USEASDEFAULT,
+ l10n_util::GetString(IDS_PRODUCT_NAME));
+ return base::SysWideToNSString(tempString);
+ }
+ return [super localizedStringForString:string];
+}
+
+@end
Property changes on: chrome/browser/cocoa/preferences_localizer.mm
___________________________________________________________________
Name: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698