public String getMonthName(int month) { if (month <= 0 || month > 12) { return null; } return Month.of(month).getDisplayName(TextStyle.FULL, new Locale("ar")); }