58 lines
1.7 KiB
TypeScript
58 lines
1.7 KiB
TypeScript
/**
|
||
* @license
|
||
* Copyright Google Inc. All Rights Reserved.
|
||
*
|
||
* Use of this source code is governed by an MIT-style license that can be
|
||
* found in the LICENSE file at https://angular.io/license
|
||
*/
|
||
|
||
// THIS CODE IS GENERATED - DO NOT MODIFY
|
||
// See angular/tools/gulp-tasks/cldr/extract.js
|
||
|
||
function plural(n: number): number {
|
||
if (n === 0) return 0;
|
||
if (n === 1) return 1;
|
||
if (n === 2) return 2;
|
||
if (n % 100 === Math.floor(n % 100) && n % 100 >= 3 && n % 100 <= 10) return 3;
|
||
if (n % 100 === Math.floor(n % 100) && n % 100 >= 11 && n % 100 <= 99) return 4;
|
||
return 5;
|
||
}
|
||
|
||
export default [
|
||
'ar-SS',
|
||
[
|
||
['ص', 'م'],
|
||
,
|
||
],
|
||
[['ص', 'م'], , ['صباحًا', 'مساءً']],
|
||
[
|
||
['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],
|
||
[
|
||
'الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس',
|
||
'الجمعة', 'السبت'
|
||
],
|
||
, ['أحد', 'إثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت']
|
||
],
|
||
,
|
||
[
|
||
['ي', 'ف', 'م', 'أ', 'و', 'ن', 'ل', 'غ', 'س', 'ك', 'ب', 'د'],
|
||
[
|
||
'يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو',
|
||
'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'
|
||
],
|
||
],
|
||
, [['ق.م', 'م'], , ['قبل الميلاد', 'ميلادي']], 1, [6, 0],
|
||
['d\u200f/M\u200f/y', 'dd\u200f/MM\u200f/y', 'd MMMM y', 'EEEE، d MMMM y'],
|
||
['h:mm a', 'h:mm:ss a', 'h:mm:ss a z', 'h:mm:ss a zzzz'],
|
||
[
|
||
'{1} {0}',
|
||
,
|
||
,
|
||
],
|
||
[
|
||
'.', ',', ';', '\u200e%\u200e', '\u200e+', '\u200e-', 'E', '×', '‰', '∞',
|
||
'ليس رقمًا', ':'
|
||
],
|
||
['#,##0.###', '#,##0%', '¤ #,##0.00', '#E0'], '£', 'جنيه جنوب السودان', plural
|
||
];
|