Chromium Code Reviews| Index: pkg/intl/lib/src/data/dates/locale_list.dart |
| diff --git a/pkg/intl/lib/src/data/dates/localeList.dart b/pkg/intl/lib/src/data/dates/locale_list.dart |
| similarity index 91% |
| rename from pkg/intl/lib/src/data/dates/localeList.dart |
| rename to pkg/intl/lib/src/data/dates/locale_list.dart |
| index 63259247241e047e4382684cef4cb1dd53d5faa1..0e74f649bda71cd06231be72daea1cbcc0370641 100644 |
| --- a/pkg/intl/lib/src/data/dates/localeList.dart |
| +++ b/pkg/intl/lib/src/data/dates/locale_list.dart |
| @@ -2,10 +2,10 @@ |
| // for details. All rights reserved. Use of this sourcecode is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| -part of date_symbol_data_json; |
| +library intl.locale_list; |
|
kevmoo
2014/04/21 21:58:39
made a library so it can legally be used by two ot
|
| /// Hard-coded list of all available locales for dates. |
| -final availableLocalesForDateFormatting = const ["en_ISO", |
| +const availableLocalesForDateFormatting = const ["en_ISO", |
|
kevmoo
2014/04/21 21:58:39
might as well be a const
|
| "af", |
| "am", |
| "ar", |
| @@ -84,4 +84,4 @@ final availableLocalesForDateFormatting = const ["en_ISO", |
| "zh_CN", |
| "zh_HK", |
| "zh_TW", |
| - "zu"]; |
| + "zu"]; |
|
kevmoo
2014/04/21 21:58:39
Just added a new line
|