| OLD | NEW |
| (Empty) |
| 1 // Copyright 2007-2010 Google Inc. | |
| 2 // | |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 // you may not use this file except in compliance with the License. | |
| 5 // You may obtain a copy of the License at | |
| 6 // | |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | |
| 8 // | |
| 9 // Unless required by applicable law or agreed to in writing, software | |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 12 // See the License for the specific language governing permissions and | |
| 13 // limitations under the License. | |
| 14 // ======================================================================== | |
| 15 | |
| 16 #ifndef OMAHA_COMMON_LANG_H_ | |
| 17 #define OMAHA_COMMON_LANG_H_ | |
| 18 | |
| 19 #include <atlstr.h> | |
| 20 #include <map> | |
| 21 #include <vector> | |
| 22 #include "base/basictypes.h" | |
| 23 | |
| 24 namespace omaha { | |
| 25 | |
| 26 namespace lang { | |
| 27 | |
| 28 CString GetDefaultLanguage(bool is_system); | |
| 29 LANGID GetDefaultLanguageID(bool is_system); | |
| 30 | |
| 31 CString GetLanguageForLangID(LANGID langid); | |
| 32 | |
| 33 bool IsLanguageIDSupported(LANGID langid); | |
| 34 bool IsLanguageSupported(const CString& language); | |
| 35 void GetSupportedLanguages(std::vector<CString>* codes); | |
| 36 | |
| 37 // Returnes requested_language if supported. Otherwise returns current user's | |
| 38 // language if supported or "en" if both of them are not supported. | |
| 39 CString GetLanguageForProcess(const CString& requested_language); | |
| 40 | |
| 41 // Returns the written language name for a given language. For most languages, | |
| 42 // the names are exactly same. There are very few exceptions. For example, the | |
| 43 // written language of zh-HK is zh-TW. | |
| 44 CString GetWrittenLanguage(const CString& requested_language); | |
| 45 | |
| 46 // Returns whether a language and its corresponding supported language have | |
| 47 // different names. | |
| 48 bool DoesSupportedLanguageUseDifferentId(const CString& requested_language); | |
| 49 | |
| 50 } // namespace lang | |
| 51 | |
| 52 } // namespace omaha | |
| 53 | |
| 54 #endif // OMAHA_COMMON_LANG_H_ | |
| OLD | NEW |