mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
| 
 | |
|     /*
 | |
|     * Current version of the application.
 | |
|     */
 | |
|     'version' => '4.0.0',
 | |
| 
 | |
|     /*
 | |
|     * List of languages supported by Crater.
 | |
|     */
 | |
|     'languages' => [
 | |
|         ["code"=>"ar", "name" => "Arabic"],
 | |
|         ["code"=>"nl", "name" => "Dutch"],
 | |
|         ["code"=>"en", "name" => "English"],
 | |
|         ["code"=>"fr", "name" => "French"],
 | |
|         ["code"=>"de", "name" => "German"],
 | |
|         ["code"=>"it", "name" => "Italian"],
 | |
|         ["code"=>"lv", "name" => "Latvian"],
 | |
|         ["code"=>"pt_BR", "name" => "Portuguese (Brazilian)"],
 | |
|         ["code"=>"sr", "name" => "Serbian Latin"],
 | |
|         ["code"=>"es", "name" => "Spanish"],
 | |
|         ["code"=>"sv", "name"=> "Svenska"],
 | |
|         ["code"=>"sk", "name"=> "Slovak"],
 | |
|         ["code"=>"vi", "name"=> "Tiếng Việt"]
 | |
| 
 | |
|     ],
 | |
| 
 | |
|     /*
 | |
|     * List of Fiscal Years
 | |
|     */
 | |
|     'fiscal_years' => [
 | |
|         ['key' => 'january-december' , 'value' => '1-12'],
 | |
|         ['key' => 'february-january' , 'value' => '2-1'],
 | |
|         ['key' => 'march-february'   , 'value' => '3-2'],
 | |
|         ['key' => 'april-march'      , 'value' => '4-3'],
 | |
|         ['key' => 'may-april'        , 'value' => '5-4'],
 | |
|         ['key' => 'june-may'         , 'value' => '6-5'],
 | |
|         ['key' => 'july-june'        , 'value' => '7-6'],
 | |
|         ['key' => 'august-july'      , 'value' => '8-7'],
 | |
|         ['key' => 'september-august' , 'value' => '9-8'],
 | |
|         ['key' => 'october-september', 'value' => '10-9'],
 | |
|         ['key' => 'november-october' , 'value' => '11-10'],
 | |
|         ['key' => 'december-november', 'value' => '12-11'],
 | |
|     ]
 | |
| ];
 |