1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Fix month translation

This commit is contained in:
Hillel Coren 2018-07-27 11:34:25 +03:00
parent 184eaf855c
commit c51beb5f57

View File

@ -904,7 +904,7 @@ class Utils
$month += 12;
}
return trans('texts.' . $months[$month], [], null, $locale);
return trans('texts.' . $months[$month], [], $locale);
}
private static function getQuarter($offset)