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:

committed by
Miško Hevery

parent
135a2822ea
commit
97b18b2a5c
@ -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 [
|
||||
'mer',
|
||||
[
|
||||
@ -39,6 +43,5 @@ export default [
|
||||
,
|
||||
],
|
||||
['.', ',', ';', '%', '+', '-', 'E', '×', '‰', '∞', 'NaN', ':'],
|
||||
['#,##0.###', '#,##0%', '¤#,##0.00', '#E0'], 'Ksh', 'Shilingi ya Kenya',
|
||||
function(n: number): number { return 5;}
|
||||
['#,##0.###', '#,##0%', '¤#,##0.00', '#E0'], 'Ksh', 'Shilingi ya Kenya', plural
|
||||
];
|
||||
|
Reference in New Issue
Block a user