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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
775 {"quickUnlockUnlockMethodPinAndPassword", | 775 {"quickUnlockUnlockMethodPinAndPassword", |
776 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_UNLOCK_METHOD_PIN_AND_PASSWORD}, | 776 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_UNLOCK_METHOD_PIN_AND_PASSWORD}, |
777 {"quickUnlockUnlockMethodNone", | 777 {"quickUnlockUnlockMethodNone", |
778 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_UNLOCK_METHOD_NONE}, | 778 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_UNLOCK_METHOD_NONE}, |
779 {"quickUnlockConfigurePinButton", | 779 {"quickUnlockConfigurePinButton", |
780 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_BUTTON}, | 780 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_BUTTON}, |
781 {"quickUnlockConfigurePinChoosePinTitle", | 781 {"quickUnlockConfigurePinChoosePinTitle", |
782 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_CHOOSE_PIN_TITLE}, | 782 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_CHOOSE_PIN_TITLE}, |
783 {"quickUnlockConfigurePinChoosePinWeakPinWarning", | 783 {"quickUnlockConfigurePinChoosePinWeakPinWarning", |
784 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_CHOOSE_PIN_WEAK_PIN_WARNING}
, | 784 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_CHOOSE_PIN_WEAK_PIN_WARNING}
, |
| 785 {"quickUnlockConfigurePinChoosePinTooShort", |
| 786 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_CHOOSE_PIN_TOO_SHORT}, |
785 {"quickUnlockConfigurePinContinueButton", | 787 {"quickUnlockConfigurePinContinueButton", |
786 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_CONTINUE_BUTTON}, | 788 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_CONTINUE_BUTTON}, |
787 {"quickUnlockConfigurePinConfirmPinTitle", | 789 {"quickUnlockConfigurePinConfirmPinTitle", |
788 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_CONFIRM_PIN_TITLE}, | 790 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_CONFIRM_PIN_TITLE}, |
789 {"quickUnlockConfigurePinMismatchedPins", | 791 {"quickUnlockConfigurePinMismatchedPins", |
790 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_MISMATCHED_PINS}, | 792 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_MISMATCHED_PINS}, |
791 {"quickUnlockConfigurePinBackButton", | 793 {"quickUnlockConfigurePinBackButton", |
792 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_BACK_BUTTON}, | 794 IDS_SETTINGS_PEOPLE_QUICK_UNLOCK_CONFIGURE_PIN_BACK_BUTTON}, |
793 {"changePictureTitle", IDS_SETTINGS_CHANGE_PICTURE_DIALOG_TITLE}, | 795 {"changePictureTitle", IDS_SETTINGS_CHANGE_PICTURE_DIALOG_TITLE}, |
794 {"changePicturePageDescription", IDS_SETTINGS_CHANGE_PICTURE_DIALOG_TEXT}, | 796 {"changePicturePageDescription", IDS_SETTINGS_CHANGE_PICTURE_DIALOG_TEXT}, |
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1278 #endif | 1280 #endif |
1279 AddUsersStrings(html_source); | 1281 AddUsersStrings(html_source); |
1280 AddWebContentStrings(html_source); | 1282 AddWebContentStrings(html_source); |
1281 | 1283 |
1282 policy_indicator::AddLocalizedStrings(html_source); | 1284 policy_indicator::AddLocalizedStrings(html_source); |
1283 | 1285 |
1284 html_source->SetJsonPath(kLocalizedStringsFile); | 1286 html_source->SetJsonPath(kLocalizedStringsFile); |
1285 } | 1287 } |
1286 | 1288 |
1287 } // namespace settings | 1289 } // namespace settings |
OLD | NEW |