OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * This provides utilities for generating localized versions of | 6 * This provides utilities for generating localized versions of |
7 * messages. It does not stand alone, but expects to be given | 7 * messages. It does not stand alone, but expects to be given |
8 * TranslatedMessage objects and generate code for a particular locale | 8 * TranslatedMessage objects and generate code for a particular locale |
9 * based on them. | 9 * based on them. |
10 * | 10 * |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 messageLookup.addLocale(localeName, _findGeneratedMessagesFor)); | 244 messageLookup.addLocale(localeName, _findGeneratedMessagesFor)); |
245 } | 245 } |
246 | 246 |
247 MessageLookupByLibrary _findGeneratedMessagesFor(locale) { | 247 MessageLookupByLibrary _findGeneratedMessagesFor(locale) { |
248 var actualLocale = Intl.verifiedLocale(locale, (x) => _findExact(x) != null, | 248 var actualLocale = Intl.verifiedLocale(locale, (x) => _findExact(x) != null, |
249 onFailure: (_) => null); | 249 onFailure: (_) => null); |
250 if (actualLocale == null) return null; | 250 if (actualLocale == null) return null; |
251 return _findExact(actualLocale); | 251 return _findExact(actualLocale); |
252 } | 252 } |
253 """; | 253 """; |
OLD | NEW |