Use translations instead of hard config. [skip ci]

This commit is contained in:
James Cole 2016-02-07 08:40:59 +01:00
parent 42372cabd5
commit c9c9410908
2 changed files with 23 additions and 18 deletions

View File

@ -165,21 +165,21 @@ class Navigation
public function periodShow(Carbon $date, string $repeatFrequency)
{
$formatMap = [
'1D' => '%e %B %Y',
'daily' => '%e %B %Y',
'custom' => '%e %B %Y',
'1W' => 'Week %W, %Y',
'week' => 'Week %W, %Y',
'weekly' => 'Week %W, %Y',
'3M' => '%B %Y',
'quarter' => '%B %Y',
'1M' => '%B %Y',
'month' => '%B %Y',
'monthly' => '%B %Y',
'1Y' => '%Y',
'year' => '%Y',
'yearly' => '%Y',
'6M' => '%B %Y',
'1D' => trans('config.specific_day'),
'daily' => trans('config.specific_day'),
'custom' => trans('config.specific_day'),
'1W' => trans('config.week_in_year'),
'week' => trans('config.week_in_year'),
'weekly' => trans('config.week_in_year'),
'3M' => trans('config.quarter_of_year'),
'quarter' => trans('config.quarter_of_year'),
'1M' => trans('config.month'),
'month' => trans('config.month'),
'monthly' => trans('config.month'),
'1Y' => trans('config.year'),
'year' => trans('config.year'),
'yearly' => trans('config.year'),
'6M' => trans('config.half_year'),
];

View File

@ -1,8 +1,13 @@
<?php
return [
'locale' => 'en, English, en_US, en_US.utf8',
'month' => '%B %Y',
'month_and_day' => '%B %e, %Y',
'locale' => 'en, English, en_US, en_US.utf8',
'month' => '%B %Y',
'month_and_day' => '%B %e, %Y',
'specific_day' => '%e %B %Y',
'week_in_year' => 'Week %W, %Y',
'quarter_of_year' => '%B %Y',
'year' => '%Y',
'half_year' => '%B %Y',
];