37 lines
706 B
PHP
37 lines
706 B
PHP
<?php
|
||
/** كوردي (عەرەبی) (كوردي (عەرەبی))
|
||
*
|
||
* To improve a translation please visit https://translatewiki.net
|
||
*
|
||
* @ingroup Language
|
||
* @file
|
||
*
|
||
* @author Arastein
|
||
* @author Asoxor
|
||
* @author Bonevarluri
|
||
* @author George Animal
|
||
* @author Marmzok
|
||
* @author Muhammed taha
|
||
*/
|
||
|
||
$fallback = 'ckb';
|
||
|
||
$rtl = true;
|
||
|
||
$digitTransformTable = [
|
||
'0' => '٠', # ٠
|
||
'1' => '١', # ١
|
||
'2' => '٢', # ٢
|
||
'3' => '٣', # ٣
|
||
'4' => '٤', # ٤
|
||
'5' => '٥', # ٥
|
||
'6' => '٦', # ٦
|
||
'7' => '٧', # ٧
|
||
'8' => '٨', # ٨
|
||
'9' => '٩', # ٩
|
||
];
|
||
|
||
$separatorTransformTable = [
|
||
'.' => '٫', # ٫
|
||
',' => '٬', # ٬
|
||
];
|