mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Merge pull request #7436 from turbo124/v5-develop
Cayman island dollar translation
This commit is contained in:
commit
431b2b84d4
@ -14,6 +14,7 @@ namespace App\Http\Controllers;
|
|||||||
use App\Exceptions\FilePermissionsFailure;
|
use App\Exceptions\FilePermissionsFailure;
|
||||||
use App\Models\Client;
|
use App\Models\Client;
|
||||||
use App\Utils\Ninja;
|
use App\Utils\Ninja;
|
||||||
|
use App\Utils\Traits\AppSetup;
|
||||||
use App\Utils\Traits\ClientGroupSettingsSaver;
|
use App\Utils\Traits\ClientGroupSettingsSaver;
|
||||||
use Illuminate\Foundation\Bus\DispatchesJobs;
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
||||||
use Illuminate\Support\Facades\Artisan;
|
use Illuminate\Support\Facades\Artisan;
|
||||||
@ -23,6 +24,7 @@ class SelfUpdateController extends BaseController
|
|||||||
{
|
{
|
||||||
use DispatchesJobs;
|
use DispatchesJobs;
|
||||||
use ClientGroupSettingsSaver;
|
use ClientGroupSettingsSaver;
|
||||||
|
use AppSetup;
|
||||||
|
|
||||||
private array $purge_file_list = [
|
private array $purge_file_list = [
|
||||||
'bootstrap/cache/compiled.php',
|
'bootstrap/cache/compiled.php',
|
||||||
@ -161,6 +163,8 @@ class SelfUpdateController extends BaseController
|
|||||||
Artisan::call('migrate', ['--force' => true]);
|
Artisan::call('migrate', ['--force' => true]);
|
||||||
Artisan::call('optimize');
|
Artisan::call('optimize');
|
||||||
|
|
||||||
|
$this->buildCache(true);
|
||||||
|
|
||||||
nlog("Called Artisan commands");
|
nlog("Called Artisan commands");
|
||||||
|
|
||||||
return response()->json(['message' => 'Update completed'], 200);
|
return response()->json(['message' => 'Update completed'], 200);
|
||||||
|
@ -34,6 +34,7 @@ class SubdomainController extends BaseController
|
|||||||
'stage',
|
'stage',
|
||||||
'html',
|
'html',
|
||||||
'lb',
|
'lb',
|
||||||
|
'shopify',
|
||||||
];
|
];
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
|
@ -4582,6 +4582,7 @@ $LANG = array(
|
|||||||
'auto_archive_cancelled_invoices_help' => 'Automatically archive invoices when they are cancelled.',
|
'auto_archive_cancelled_invoices_help' => 'Automatically archive invoices when they are cancelled.',
|
||||||
'alternate_pdf_viewer' => 'Alternate PDF Viewer',
|
'alternate_pdf_viewer' => 'Alternate PDF Viewer',
|
||||||
'alternate_pdf_viewer_help' => 'Improve scrolling over the PDF preview [BETA]',
|
'alternate_pdf_viewer_help' => 'Improve scrolling over the PDF preview [BETA]',
|
||||||
|
'currency_cayman_island_dollar' => 'Cayman Island Dollar',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user