| 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 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1441 {"printerProtocolHttps", IDS_SETTINGS_PRINTING_CUPS_PRINTER_PROTOCOL_HTTPS}, | 1441 {"printerProtocolHttps", IDS_SETTINGS_PRINTING_CUPS_PRINTER_PROTOCOL_HTTPS}, |
| 1442 {"printerProtocolAppSocket", | 1442 {"printerProtocolAppSocket", |
| 1443 IDS_SETTINGS_PRINTING_CUPS_PRINTER_PROTOCOL_APP_SOCKET}, | 1443 IDS_SETTINGS_PRINTING_CUPS_PRINTER_PROTOCOL_APP_SOCKET}, |
| 1444 {"printerProtocolLpd", IDS_SETTINGS_PRINTING_CUPS_PRINTER_PROTOCOL_LPD}, | 1444 {"printerProtocolLpd", IDS_SETTINGS_PRINTING_CUPS_PRINTER_PROTOCOL_LPD}, |
| 1445 {"printerProtocolUsb", IDS_SETTINGS_PRINTING_CUPS_PRINTER_PROTOCOL_USB}, | 1445 {"printerProtocolUsb", IDS_SETTINGS_PRINTING_CUPS_PRINTER_PROTOCOL_USB}, |
| 1446 {"printerConfiguringMessage", | 1446 {"printerConfiguringMessage", |
| 1447 IDS_SETTINGS_PRINTING_CUPS_PRINTER_CONFIGURING_MESSAGE}, | 1447 IDS_SETTINGS_PRINTING_CUPS_PRINTER_CONFIGURING_MESSAGE}, |
| 1448 {"searchingPrinter", IDS_SETTINGS_PRINTING_CUPS_PRINTER_SEARCHING_PRINTER}, | 1448 {"searchingPrinter", IDS_SETTINGS_PRINTING_CUPS_PRINTER_SEARCHING_PRINTER}, |
| 1449 {"printerNotFound", IDS_SETTINGS_PRINTING_CUPS_PRINTER_NOT_FOUND_PRINTER}, | 1449 {"printerNotFound", IDS_SETTINGS_PRINTING_CUPS_PRINTER_NOT_FOUND_PRINTER}, |
| 1450 {"printerFound", IDS_SETTINGS_PRINTING_CUPS_PRINTER_FOUND_PRINTER}, | 1450 {"printerFound", IDS_SETTINGS_PRINTING_CUPS_PRINTER_FOUND_PRINTER}, |
| 1451 {"selectManufacturerModelMessage", | |
| 1452 IDS_SETTINGS_PRINTING_CUPS_PRINTER_SELECT_MANUFACTURER_MODEL}, | |
| 1453 {"printerManufacturer", IDS_SETTINGS_PRINTING_CUPS_PRINTER_MANUFACTURER}, | 1451 {"printerManufacturer", IDS_SETTINGS_PRINTING_CUPS_PRINTER_MANUFACTURER}, |
| 1454 {"selectDriver", IDS_SETTINGS_PRINTING_CUPS_PRINTER_SELECT_DRIVER}, | 1452 {"selectDriver", IDS_SETTINGS_PRINTING_CUPS_PRINTER_SELECT_DRIVER}, |
| 1455 {"selectDriverButtonText", | 1453 {"selectDriverButtonText", |
| 1456 IDS_SETTINGS_PRINTING_CUPS_PRINTER_BUTTON_SELECT_DRIVER}, | 1454 IDS_SETTINGS_PRINTING_CUPS_PRINTER_BUTTON_SELECT_DRIVER}, |
| 1457 {"printerAddedSuccessfulMessage", | 1455 {"printerAddedSuccessfulMessage", |
| 1458 IDS_SETTINGS_PRINTING_CUPS_PRINTER_ADDED_PRINTER_DONE_MESSAGE}, | 1456 IDS_SETTINGS_PRINTING_CUPS_PRINTER_ADDED_PRINTER_DONE_MESSAGE}, |
| 1459 {"noPrinterNearbyMessage", | 1457 {"noPrinterNearbyMessage", |
| 1460 IDS_SETTINGS_PRINTING_CUPS_PRINTER_NO_PRINTER_NEARBY}, | 1458 IDS_SETTINGS_PRINTING_CUPS_PRINTER_NO_PRINTER_NEARBY}, |
| 1461 {"searchingNearbyPrinters", | 1459 {"searchingNearbyPrinters", |
| 1462 IDS_SETTINGS_PRINTING_CUPS_PRINTER_SEARCHING_NEARBY_PRINTER}, | 1460 IDS_SETTINGS_PRINTING_CUPS_PRINTER_SEARCHING_NEARBY_PRINTER}, |
| (...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2071 | 2069 |
| 2072 #if defined(OS_CHROMEOS) | 2070 #if defined(OS_CHROMEOS) |
| 2073 chromeos::network_element::AddLocalizedStrings(html_source); | 2071 chromeos::network_element::AddLocalizedStrings(html_source); |
| 2074 #endif | 2072 #endif |
| 2075 policy_indicator::AddLocalizedStrings(html_source); | 2073 policy_indicator::AddLocalizedStrings(html_source); |
| 2076 | 2074 |
| 2077 html_source->SetJsonPath(kLocalizedStringsFile); | 2075 html_source->SetJsonPath(kLocalizedStringsFile); |
| 2078 } | 2076 } |
| 2079 | 2077 |
| 2080 } // namespace settings | 2078 } // namespace settings |
| OLD | NEW |