Aggiunto Mese prossimo nel calendario
This commit is contained in:
parent
d75d04ecb3
commit
1d5e831de3
|
@ -126,6 +126,7 @@ function start_complete_calendar(id, callback) {
|
||||||
ranges[globals.translations.secondSemester] = [moment("06", "MM"), moment("12", "MM").endOf('month')];
|
ranges[globals.translations.secondSemester] = [moment("06", "MM"), moment("12", "MM").endOf('month')];
|
||||||
ranges[globals.translations.thisMonth] = [moment().startOf('month'), moment().endOf('month')];
|
ranges[globals.translations.thisMonth] = [moment().startOf('month'), moment().endOf('month')];
|
||||||
ranges[globals.translations.lastMonth] = [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')];
|
ranges[globals.translations.lastMonth] = [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')];
|
||||||
|
ranges[globals.translations.nextMonth] = [moment().add(1, 'month').startOf('month'), moment().add(1, 'month').endOf('month')];
|
||||||
ranges[globals.translations.thisYear] = [moment().startOf('year'), moment().endOf('year')];
|
ranges[globals.translations.thisYear] = [moment().startOf('year'), moment().endOf('year')];
|
||||||
ranges[globals.translations.lastYear] = [moment().subtract(1, 'year').startOf('year'), moment().subtract(1, 'year').endOf('year')];
|
ranges[globals.translations.lastYear] = [moment().subtract(1, 'year').startOf('year'), moment().subtract(1, 'year').endOf('year')];
|
||||||
|
|
||||||
|
|
|
@ -90,6 +90,7 @@ if (Auth::check()) {
|
||||||
'secondSemester' => tr('II semestre'),
|
'secondSemester' => tr('II semestre'),
|
||||||
'thisMonth' => tr('Questo mese'),
|
'thisMonth' => tr('Questo mese'),
|
||||||
'lastMonth' => tr('Mese scorso'),
|
'lastMonth' => tr('Mese scorso'),
|
||||||
|
'nextMonth' => tr('Mese prossimo'),
|
||||||
'thisYear' => tr("Quest'anno"),
|
'thisYear' => tr("Quest'anno"),
|
||||||
'lastYear' => tr('Anno scorso'),
|
'lastYear' => tr('Anno scorso'),
|
||||||
'apply' => tr('Applica'),
|
'apply' => tr('Applica'),
|
||||||
|
|
Loading…
Reference in New Issue