Open
Description
I am experiencing an issue with the jQuery datepicker when the localization is set to "ar" (Arabic). Instead of showing the short names for the months, the datepicker displays them as numbers (1, 2, 3, etc.).
Steps to Reproduce:
- Initialize the jQuery datepicker with the following settings:
javascript
$('#datepicker').datepicker({
dateFormat: 'mm/dd/yy',
changeMonth: true,
changeYear: true,
regional: 'ar' // Arabic localization
}); - Open the datepicker.
- Observe the month short names displayed.
Expected Behavior:
The month short names should be displayed as:
- ين (Jan)
- فب (Feb)
- مار (Mar)
- إب (Apr)
- ماي (May)
- يون (Jun)
- يول (Jul)
- أغس (Aug)
- سب (Sep)
- أكت (Oct)
- نوف (Nov)
- ديس (Dec)
Actual Behavior:
The month short names are displayed as numbers (1, 2, 3, ...).