OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 utility functions for dealing with localized | 5 // This file contains utility functions for dealing with localized |
6 // content. | 6 // content. |
7 | 7 |
8 #ifndef APP_L10N_UTIL_H_ | 8 #ifndef APP_L10N_UTIL_H_ |
9 #define APP_L10N_UTIL_H_ | 9 #define APP_L10N_UTIL_H_ |
10 #pragma once | 10 #pragma once |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 std::wstring GetStringF(int message_id, int64 a); | 162 std::wstring GetStringF(int message_id, int64 a); |
163 | 163 |
164 // Truncates the string to length characters. This breaks the string at | 164 // Truncates the string to length characters. This breaks the string at |
165 // the first word break before length, adding the horizontal ellipsis | 165 // the first word break before length, adding the horizontal ellipsis |
166 // character (unicode character 0x2026) to render ... | 166 // character (unicode character 0x2026) to render ... |
167 // The supplied string is returned if the string has length characters or | 167 // The supplied string is returned if the string has length characters or |
168 // less. | 168 // less. |
169 std::wstring TruncateString(const std::wstring& string, size_t length); | 169 std::wstring TruncateString(const std::wstring& string, size_t length); |
170 | 170 |
171 // Returns the lower case equivalent of string. | 171 // Returns the lower case equivalent of string. |
172 #if defined(WCHAR_T_IS_UTF32) | |
173 // Deprecated. The string16 version should be used instead. | |
174 std::wstring ToLower(const std::wstring& string); | |
175 #endif // defined(WCHAR_T_IS_UTF32) | |
176 string16 ToLower(const string16& string); | 172 string16 ToLower(const string16& string); |
177 | 173 |
178 // Returns the upper case equivalent of string. | 174 // Returns the upper case equivalent of string. |
179 string16 ToUpper(const string16& string); | 175 string16 ToUpper(const string16& string); |
180 | 176 |
181 // In place sorting of std::wstring strings using collation rules for |locale|. | 177 // In place sorting of std::wstring strings using collation rules for |locale|. |
182 void SortStrings(const std::string& locale, | 178 void SortStrings(const std::string& locale, |
183 std::vector<std::wstring>* strings); | 179 std::vector<std::wstring>* strings); |
184 | 180 |
185 // In place sorting of string16 strings using collation rules for |locale|. | 181 // In place sorting of string16 strings using collation rules for |locale|. |
186 void SortStrings16(const std::string& locale, | 182 void SortStrings16(const std::string& locale, |
187 std::vector<string16>* strings); | 183 std::vector<string16>* strings); |
188 | 184 |
189 // Returns a vector of available locale codes. E.g., a vector containing | 185 // Returns a vector of available locale codes. E.g., a vector containing |
190 // en-US, es, fr, fi, pt-PT, pt-BR, etc. | 186 // en-US, es, fr, fi, pt-PT, pt-BR, etc. |
191 const std::vector<std::string>& GetAvailableLocales(); | 187 const std::vector<std::string>& GetAvailableLocales(); |
192 | 188 |
193 // Returns a vector of locale codes usable for accept-languages. | 189 // Returns a vector of locale codes usable for accept-languages. |
194 void GetAcceptLanguagesForLocale(const std::string& display_locale, | 190 void GetAcceptLanguagesForLocale(const std::string& display_locale, |
195 std::vector<std::string>* locale_codes); | 191 std::vector<std::string>* locale_codes); |
196 | 192 |
197 | 193 |
198 } // namespace l10n_util | 194 } // namespace l10n_util |
199 | 195 |
200 #endif // APP_L10N_UTIL_H_ | 196 #endif // APP_L10N_UTIL_H_ |
OLD | NEW |