You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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, ...).
The text was updated successfully, but these errors were encountered:
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:
javascript
$('#datepicker').datepicker({
dateFormat: 'mm/dd/yy',
changeMonth: true,
changeYear: true,
regional: 'ar' // Arabic localization
});
Expected Behavior:
The month short names should be displayed as:
Actual Behavior:
The month short names are displayed as numbers (1, 2, 3, ...).
The text was updated successfully, but these errors were encountered: