diff --git a/src/Translations/Indonesian.php b/src/Translations/Indonesian.php new file mode 100644 index 0000000..e1d68c4 --- /dev/null +++ b/src/Translations/Indonesian.php @@ -0,0 +1,96 @@ +hijriMonths; + } + + /** + * get array of short days names + * started from Sunday + * + * @return array + */ + public function getShortDays(): array + { + return $this->shortDays; + } + + /** + * get array of months names + * started from Sunday + * + * @return array + */ + public function getDays(): array + { + return $this->days; + } + + /** + * get array of periods + * + * @return array + */ + public function getPeriods(): array + { + return $this->periods; + } +}