PHP Classes

File: infrastructure/libraries/Moment/Locales/ar_TN.php

Recommend this page to a friend!
  Classes of Maicon gonçalez   Potato Service   infrastructure/libraries/Moment/Locales/ar_TN.php   Download  
File: infrastructure/libraries/Moment/Locales/ar_TN.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Potato Service
Framework that extracts route details from classes
Author: By
Last change:
Date: 1 year ago
Size: 1,800 bytes
 

Contents

Class file image Download
<?php

// locale: arabic (tn)
// author: Tarek Morgéne https://www.satoripop.com/

return array(
   
"months" => explode('_', '?????_??????_????_?????_????_?????_?????_?????_??????_??????_??????_??????'),
   
"monthsShort" => explode('_', '?????_??????_????_?????_????_?????_?????_?????_??????_??????_??????_??????'),
   
"weekdays" => explode('_', '???????_????????_????????_??????_??????_?????_?????'),
   
"weekdaysShort" => explode('_', '???_?????_??????_??????_????_????_???'),
   
"calendar" => array(
       
"sameDay" => '[?????]',
       
"nextDay" => '[??? ]',
       
"lastDay" => '[??? ]',
       
"lastWeek" => 'l [??????]',
       
"sameElse" => 'l',
       
"withTime" => '[??? ??????] H:i',
       
"default" => 'd/m/Y',
    ),
   
"relativeTime" => array(
       
"future" => '?? %s',
       
"past" => '??? %s',
       
"s" => '????',
       
"ss" => '%d ?????',
       
"m" => '?????',
       
"mm" => '%d ?????',
       
"h" => '????',
       
"hh" => '%d ?????',
       
"d" => '???',
       
"dd" => '%d ????',
       
"M" => '???',
       
"MM" => '%d ????',
       
"y" => '???',
       
"yy" => '%d ?????',
    ),
   
"ordinal" => function ($number)
    {
        return
$number . ($number === 1 ? '[er]' : '');
    },
   
"week" => array(
       
"dow" => 1, // Monday is the first day of the week.
       
"doy" => 4 // The week that contains Jan 4th is the first week of the year.
   
),
);