* Put $fallback and $rtl at the top, as they are in most files. In some files they were at the bottom or at the middle, which made them hard to find. * Add empty lines consistently next to them. * Add $rtl = true to Arq. It apparently worked without it, but it should be explicit for consistency. Change-Id: I6c74b1501375bcc31db36193da24d4d95a8c3fef
20 lines
277 B
PHP
20 lines
277 B
PHP
<?php
|
|
/** Algerian Spoken Arabic (جزائري)
|
|
*
|
|
* To improve a translation please visit https://translatewiki.net
|
|
*
|
|
* @ingroup Language
|
|
* @file
|
|
*
|
|
*/
|
|
|
|
$fallback = 'ar';
|
|
|
|
$rtl = true;
|
|
|
|
$digitTransformTable = [];
|
|
|
|
$separatorTransformTable = [
|
|
'.' => ',',
|
|
',' => '.'
|
|
];
|