From 2213d89ca94bba1628807fa73df07dca6cb853ea Mon Sep 17 00:00:00 2001 From: MohammadRasoul Fekri Date: Tue, 18 Feb 2020 15:45:13 +0330 Subject: [PATCH] Added persian translation --- src/Translations/Persian.php | 96 ++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 src/Translations/Persian.php diff --git a/src/Translations/Persian.php b/src/Translations/Persian.php new file mode 100644 index 0000000..20d6a5c --- /dev/null +++ b/src/Translations/Persian.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