| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/webui/settings/md_settings_localized_strings_provide
r.h" | 5 #include "chrome/browser/ui/webui/settings/md_settings_localized_strings_provide
r.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/i18n/number_formatting.h" | 10 #include "base/i18n/number_formatting.h" |
| (...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1070 {"changePicturePageDescription", IDS_SETTINGS_CHANGE_PICTURE_DIALOG_TEXT}, | 1070 {"changePicturePageDescription", IDS_SETTINGS_CHANGE_PICTURE_DIALOG_TEXT}, |
| 1071 {"takePhoto", IDS_SETTINGS_CHANGE_PICTURE_TAKE_PHOTO}, | 1071 {"takePhoto", IDS_SETTINGS_CHANGE_PICTURE_TAKE_PHOTO}, |
| 1072 {"discardPhoto", IDS_SETTINGS_CHANGE_PICTURE_DISCARD_PHOTO}, | 1072 {"discardPhoto", IDS_SETTINGS_CHANGE_PICTURE_DISCARD_PHOTO}, |
| 1073 {"flipPhoto", IDS_SETTINGS_CHANGE_PICTURE_FLIP_PHOTO}, | 1073 {"flipPhoto", IDS_SETTINGS_CHANGE_PICTURE_FLIP_PHOTO}, |
| 1074 {"chooseFile", IDS_SETTINGS_CHANGE_PICTURE_CHOOSE_FILE}, | 1074 {"chooseFile", IDS_SETTINGS_CHANGE_PICTURE_CHOOSE_FILE}, |
| 1075 {"profilePhoto", IDS_SETTINGS_CHANGE_PICTURE_PROFILE_PHOTO}, | 1075 {"profilePhoto", IDS_SETTINGS_CHANGE_PICTURE_PROFILE_PHOTO}, |
| 1076 {"oldPhoto", IDS_SETTINGS_CHANGE_PICTURE_OLD_PHOTO}, | 1076 {"oldPhoto", IDS_SETTINGS_CHANGE_PICTURE_OLD_PHOTO}, |
| 1077 {"profilePhotoLoading", IDS_SETTINGS_CHANGE_PICTURE_PROFILE_LOADING_PHOTO}, | 1077 {"profilePhotoLoading", IDS_SETTINGS_CHANGE_PICTURE_PROFILE_LOADING_PHOTO}, |
| 1078 {"previewAltText", IDS_SETTINGS_CHANGE_PICTURE_PREVIEW_ALT}, | 1078 {"previewAltText", IDS_SETTINGS_CHANGE_PICTURE_PREVIEW_ALT}, |
| 1079 {"authorCredit", IDS_SETTINGS_CHANGE_PICTURE_AUTHOR_TEXT}, | 1079 {"authorCredit", IDS_SETTINGS_CHANGE_PICTURE_AUTHOR_TEXT}, |
| 1080 {"photoFromCamera", IDS_SETTINGS_CHANGE_PICTURE_PHOTO_FROM_CAMERA}, | |
| 1081 {"photoFlippedAccessibleText", IDS_SETTINGS_PHOTO_FLIP_ACCESSIBLE_TEXT}, | 1080 {"photoFlippedAccessibleText", IDS_SETTINGS_PHOTO_FLIP_ACCESSIBLE_TEXT}, |
| 1082 {"photoFlippedBackAccessibleText", | 1081 {"photoFlippedBackAccessibleText", |
| 1083 IDS_SETTINGS_PHOTO_FLIPBACK_ACCESSIBLE_TEXT}, | 1082 IDS_SETTINGS_PHOTO_FLIPBACK_ACCESSIBLE_TEXT}, |
| 1084 {"photoCaptureAccessibleText", IDS_SETTINGS_PHOTO_CAPTURE_ACCESSIBLE_TEXT}, | 1083 {"photoCaptureAccessibleText", IDS_SETTINGS_PHOTO_CAPTURE_ACCESSIBLE_TEXT}, |
| 1085 {"photoDiscardAccessibleText", IDS_SETTINGS_PHOTO_DISCARD_ACCESSIBLE_TEXT}, | 1084 {"photoDiscardAccessibleText", IDS_SETTINGS_PHOTO_DISCARD_ACCESSIBLE_TEXT}, |
| 1086 #else // !defined(OS_CHROMEOS) | 1085 #else // !defined(OS_CHROMEOS) |
| 1087 {"domainManagedProfile", IDS_SETTINGS_PEOPLE_DOMAIN_MANAGED_PROFILE}, | 1086 {"domainManagedProfile", IDS_SETTINGS_PEOPLE_DOMAIN_MANAGED_PROFILE}, |
| 1088 {"editPerson", IDS_SETTINGS_EDIT_PERSON}, | 1087 {"editPerson", IDS_SETTINGS_EDIT_PERSON}, |
| 1089 {"showShortcutLabel", IDS_SETTINGS_PROFILE_SHORTCUT_TOGGLE_LABEL}, | 1088 {"showShortcutLabel", IDS_SETTINGS_PROFILE_SHORTCUT_TOGGLE_LABEL}, |
| 1090 #endif // defined(OS_CHROMEOS) | 1089 #endif // defined(OS_CHROMEOS) |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1815 #if defined(USE_NSS_CERTS) | 1814 #if defined(USE_NSS_CERTS) |
| 1816 AddCertificateManagerStrings(html_source); | 1815 AddCertificateManagerStrings(html_source); |
| 1817 #endif | 1816 #endif |
| 1818 | 1817 |
| 1819 policy_indicator::AddLocalizedStrings(html_source); | 1818 policy_indicator::AddLocalizedStrings(html_source); |
| 1820 | 1819 |
| 1821 html_source->SetJsonPath(kLocalizedStringsFile); | 1820 html_source->SetJsonPath(kLocalizedStringsFile); |
| 1822 } | 1821 } |
| 1823 | 1822 |
| 1824 } // namespace settings | 1823 } // namespace settings |
| OLD | NEW |