mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
21 lines
566 B
PHP
21 lines
566 B
PHP
<?php
|
|
/**
|
|
* config.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
'locale' => 'fr, French, fr_FR, fr_FR.utf8',
|
|
'month' => '%B %Y',
|
|
'month_and_day' => '%e %B %Y',
|
|
'date_time' => '%B %e, %Y, @ %T',
|
|
'specific_day' => '%e %B %Y',
|
|
'week_in_year' => 'Week %W, %Y',
|
|
'quarter_of_year' => '%B %Y',
|
|
'year' => '%Y',
|
|
'half_year' => '%B %Y',
|
|
];
|