fix(common): extract plural function from i18n locale data files for TS 2.6 (#21626)

Fixes #21608

PR Close #21626
This commit is contained in:
Olivier Combe
2018-01-18 14:08:50 +01:00
committed by Miško Hevery
parent 135a2822ea
commit 97b18b2a5c
527 changed files with 3626 additions and 3274 deletions

View File

@ -9,6 +9,10 @@
// THIS CODE IS GENERATED - DO NOT MODIFY
// See angular/tools/gulp-tasks/cldr/extract.js
function plural(n: number): number {
return 5;
}
export default [
'root',
[
@ -42,6 +46,5 @@ export default [
'{1} \'at\' {0}',
],
['.', ',', ';', '%', '+', '-', 'E', '×', '‰', '∞', 'NaN', ':'],
['#,##0.###', '#,##0%', '¤#,##0.00', '#E0'], '$', 'US Dollar',
function(n: number): number { return 5;}
['#,##0.###', '#,##0%', '¤#,##0.00', '#E0'], '$', 'US Dollar', plural
];