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

Unified Diff: chrome/browser/ui/webui/options/manage_profile_handler.cc

Issue 17320005: Update strings to match the final spec. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Null-check the signin manager for CrOS Created 7 years, 6 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/ui/webui/options/manage_profile_handler.cc
===================================================================
--- chrome/browser/ui/webui/options/manage_profile_handler.cc (revision 207746)
+++ chrome/browser/ui/webui/options/manage_profile_handler.cc (working copy)
@@ -92,13 +92,14 @@
{ "manageProfilesDuplicateNameError",
IDS_PROFILES_MANAGE_DUPLICATE_NAME_ERROR },
{ "manageProfilesIconLabel", IDS_PROFILES_MANAGE_ICON_LABEL },
- { "manageProfilesLimitedNotSignedInLabel",
- IDS_PROFILES_CREATE_LIMITED_NOT_SIGNED_IN_LABEL },
- { "manageProfilesLimitedNotSignedInLink",
- IDS_PROFILES_CREATE_LIMITED_NOT_SIGNED_IN_LINK },
+ { "manageProfilesManagedNotSignedInLabel",
+ IDS_PROFILES_CREATE_MANAGED_NOT_SIGNED_IN_LABEL },
+ { "manageProfilesManagedNotSignedInLink",
+ IDS_PROFILES_CREATE_MANAGED_NOT_SIGNED_IN_LINK },
{ "deleteProfileTitle", IDS_PROFILES_DELETE_TITLE },
{ "deleteProfileOK", IDS_PROFILES_DELETE_OK_BUTTON_LABEL },
{ "deleteProfileMessage", IDS_PROFILES_DELETE_MESSAGE },
+ { "deleteManagedProfileAddendum", IDS_PROFILES_DELETE_MANAGED_ADDENDUM },
{ "createProfileTitle", IDS_PROFILES_CREATE_TITLE },
{ "createProfileInstructions", IDS_PROFILES_CREATE_INSTRUCTIONS },
{ "createProfileConfirm", IDS_PROFILES_CREATE_CONFIRM },
@@ -396,7 +397,7 @@
string16 text = string16();
if (!username.empty()) {
text = l10n_util::GetStringFUTF16(
- IDS_PROFILES_CREATE_LIMITED_SIGNED_IN_LABEL, username);
+ IDS_PROFILES_CREATE_MANAGED_SIGNED_IN_LABEL, username);
}
StringValue text_value(text);
web_ui()->CallJavascriptFunction("CreateProfileOverlay.updateSignedInStatus",

Powered by Google App Engine
This is Rietveld 408576698