diff --git a/src/Translations/Russian.php b/src/Translations/Russian.php new file mode 100644 index 0000000..fc17120 --- /dev/null +++ b/src/Translations/Russian.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; + } +} \ No newline at end of file