diff --git a/app/helpers.php b/app/helpers.php index 9ef8840..ee78f22 100755 --- a/app/helpers.php +++ b/app/helpers.php @@ -86,18 +86,18 @@ function monthId($monthNumber) function getMonths() { return [ - '01' => __('time.month.01'), - '02' => __('time.month.02'), - '03' => __('time.month.03'), - '04' => __('time.month.04'), - '05' => __('time.month.05'), - '06' => __('time.month.06'), - '07' => __('time.month.07'), - '08' => __('time.month.08'), - '09' => __('time.month.09'), - '10' => __('time.month.10'), - '11' => __('time.month.11'), - '12' => __('time.month.12'), + '01' => __('time.months.01'), + '02' => __('time.months.02'), + '03' => __('time.months.03'), + '04' => __('time.months.04'), + '05' => __('time.months.05'), + '06' => __('time.months.06'), + '07' => __('time.months.07'), + '08' => __('time.months.08'), + '09' => __('time.months.09'), + '10' => __('time.months.10'), + '11' => __('time.months.11'), + '12' => __('time.months.12'), ]; } diff --git a/resources/lang/de/time.php b/resources/lang/de/time.php new file mode 100644 index 0000000..375ecad --- /dev/null +++ b/resources/lang/de/time.php @@ -0,0 +1,18 @@ + [ + '01' => 'Januar', + '02' => 'Februari', + '03' => 'März', + '04' => 'April', + '05' => 'Kann', + '06' => 'June', + '07' => 'July', + '08' => 'August', + '09' => 'September', + '10' => 'Oktober', + '11' => 'November', + '12' => 'Dezember', + ], +]; diff --git a/resources/lang/en/time.php b/resources/lang/en/time.php index 678da3a..37835d2 100644 --- a/resources/lang/en/time.php +++ b/resources/lang/en/time.php @@ -1,7 +1,7 @@ [ + 'months' => [ '01' => 'January', '02' => 'Februari', '03' => 'March', diff --git a/resources/lang/id/time.php b/resources/lang/id/time.php index 7bf6423..04ece62 100644 --- a/resources/lang/id/time.php +++ b/resources/lang/id/time.php @@ -1,7 +1,7 @@ [ + 'months' => [ '01' => 'Januari', '02' => 'Pebruari', '03' => 'Maret',