Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <h2>Answer:</h2> <p>Turns out the ar-SA culture is the only one to use the Hijiri calendar; all the other Arabic cultures use Gregorian. Here are the different date formats in Arabic (a bit messed up because WMD doesn't support seem to support RTL text). </p> <pre><code>ar-AE 11 ديسمبر 2008 ar-BH 11 ديسمبر 2008 ar-DZ 11 ديسمبر 2008 ar-EG 11 ديسمبر 2008 ar-IQ 11 كانون الأول 2008 ar-JO 11 كانون الأول 2008 ar-KW 11 ديسمبر 2008 ar-LB 11 كانون الأول 2008 ar-LY 11 ديسمبر 2008 ar-MA 11 دجنبر 2008 ar-OM 11 ديسمبر 2008 ar-QA 11 ديسمبر 2008 ar-SA 13 ذو الحجة 1429 ar-SY 11 كانون الأول 2008 ar-TN 11 ديسمبر 2008 ar-YE 11 ديسمبر 2008 </code></pre> <p>And for what it's worth here's the quick &amp; dirty code I used to generate this list:</p> <pre><code> Response.Write("&lt;table width=300px&gt;") For Each ci As CultureInfo In (From c As CultureInfo In CultureInfo.GetCultures(CultureTypes.AllCultures) Order By c.Name Where c.Name.StartsWith("ar-")) Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo(ci.Name) Thread.CurrentThread.CurrentUICulture = New CultureInfo(ci.Name) Response.Write(String.Format("&lt;tr&gt;&lt;td&gt;{0}&lt;/td&gt; &lt;td style='direction:rtl;font-size:20px;'&gt;{1:d MMMM yyyy}&lt;/td&gt;&lt;/tr&gt;", ci.Name, Today)) Next Response.Write("&lt;/table&gt;") Response.End() </code></pre> <p>More cultures at <a href="http://www.massimilianobianchi.info/max/articles/22/UI-culture-list-and-codes.aspx" rel="nofollow noreferrer">http://www.massimilianobianchi.info/max/articles/22/UI-culture-list-and-codes.aspx</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload