OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This file contains helper functions for getting strings that are included in | 5 // This file contains helper functions for getting strings that are included in |
6 // our DLL for all languages (i.e., does not come from our language DLL). | 6 // our DLL for all languages (i.e., does not come from our language DLL). |
7 // | 7 // |
8 // These resource strings are organized such that we can get a localized string | 8 // These resource strings are organized such that we can get a localized string |
9 // by taking the base resource ID and adding a language offset. For example, | 9 // by taking the base resource ID and adding a language offset. For example, |
10 // to get the resource id for the localized product name in en-US, we take | 10 // to get the resource id for the localized product name in en-US, we take |
11 // IDS_PRODUCT_NAME_BASE + IDS_L10N_OFFSET_EN_US. | 11 // IDS_PRODUCT_NAME_BASE + IDS_L10N_OFFSET_EN_US. |
12 | 12 |
13 #ifndef CHROME_INSTALLER_UTIL_L10N_STRING_UTIL_H_ | 13 #ifndef CHROME_INSTALLER_UTIL_L10N_STRING_UTIL_H_ |
14 #define CHROME_INSTALLER_UTIL_L10N_STRING_UTIL_H_ | 14 #define CHROME_INSTALLER_UTIL_L10N_STRING_UTIL_H_ |
15 | 15 |
16 #include <string> | 16 #include <string> |
17 | 17 |
18 #include "base/strings/string16.h" | 18 #include "base/strings/string16.h" |
19 | 19 |
20 namespace installer { | 20 namespace installer { |
21 | 21 |
22 class TranslationDelegate { | 22 class TranslationDelegate { |
23 public: | 23 public: |
24 virtual ~TranslationDelegate(); | 24 virtual ~TranslationDelegate(); |
25 virtual string16 GetLocalizedString(int installer_string_id) = 0; | 25 virtual base::string16 GetLocalizedString(int installer_string_id) = 0; |
26 }; | 26 }; |
27 | 27 |
28 // If we're in Chrome, the installer strings aren't in the binary, but are in | 28 // If we're in Chrome, the installer strings aren't in the binary, but are in |
29 // the localized pak files. A TranslationDelegate must be provided so we can | 29 // the localized pak files. A TranslationDelegate must be provided so we can |
30 // load these strings. | 30 // load these strings. |
31 void SetTranslationDelegate(TranslationDelegate* delegate); | 31 void SetTranslationDelegate(TranslationDelegate* delegate); |
32 | 32 |
33 // Given a string base id, return the localized version of the string based on | 33 // Given a string base id, return the localized version of the string based on |
34 // the system language. This is used for shortcuts placed on the user's | 34 // the system language. This is used for shortcuts placed on the user's |
35 // desktop. The string is retrieved from the TranslationDelegate if one has | 35 // desktop. The string is retrieved from the TranslationDelegate if one has |
36 // been set. Otherwise, the string is read from the binary's string table. | 36 // been set. Otherwise, the string is read from the binary's string table. |
37 std::wstring GetLocalizedString(int base_message_id); | 37 std::wstring GetLocalizedString(int base_message_id); |
38 | 38 |
39 // Given the system language, return a url that points to the localized eula. | 39 // Given the system language, return a url that points to the localized eula. |
40 // The empty string is returned on failure. | 40 // The empty string is returned on failure. |
41 std::wstring GetLocalizedEulaResource(); | 41 std::wstring GetLocalizedEulaResource(); |
42 | 42 |
43 // Returns the language identifier of the translation currently in use. | 43 // Returns the language identifier of the translation currently in use. |
44 std::wstring GetCurrentTranslation(); | 44 std::wstring GetCurrentTranslation(); |
45 | 45 |
46 } // namespace installer. | 46 } // namespace installer. |
47 | 47 |
48 #endif // CHROME_INSTALLER_UTIL_L10N_STRING_UTIL_H_ | 48 #endif // CHROME_INSTALLER_UTIL_L10N_STRING_UTIL_H_ |
OLD | NEW |