diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php
index a5acec2a4484..0d0d54b26f11 100644
--- a/resources/lang/en/texts.php
+++ b/resources/lang/en/texts.php
@@ -3219,4 +3219,6 @@ return [
'credit_card_invalid' => 'Provided credit card number is not valid.',
'month_invalid' => 'Provided month is not valid.',
'year_invalid' => 'Provided year is not valid.',
+
+ 'if_you_need_help' => 'If you need help you can either post to our',
];
diff --git a/resources/views/setup/_issues.blade.php b/resources/views/setup/_issues.blade.php
index 2dfe3e8617f8..1774f5d12970 100644
--- a/resources/views/setup/_issues.blade.php
+++ b/resources/views/setup/_issues.blade.php
@@ -16,7 +16,7 @@
@foreach($check['extensions'] as $extension)
- {{ key($extension) }}
+ {{ $extension[key($extension)] == true ? '✔' : '❌' }} {{ key($extension) }}
@endforeach
@@ -28,14 +28,14 @@
@if($check['php_version']['is_okay'])
- {{ strtoupper(ctrans('texts.ok')) }}!
+ ✔ {{ strtoupper(ctrans('texts.ok')) }}
@else
{{ ctrans('texts.minumum_php_version') }}: {{ $check['php_version']['minimum_php_version'] }}
- {{ ctrans('texts.current') }}: {{ $check['php_version']['current_php_version'] }}
+ ❌ {{ ctrans('texts.current') }}: {{ $check['php_version']['current_php_version'] }}
@endif
@@ -47,11 +47,11 @@
@if($check['env_writable'])
- {{ strtoupper(ctrans('texts.ok')) }}!
+ ✔ {{ strtoupper(ctrans('texts.ok')) }}
@else
- {{ ctrans('texts.env_not_writable') }}
+ ❌ {{ ctrans('texts.env_not_writable') }}
@endif
diff --git a/resources/views/setup/index.blade.php b/resources/views/setup/index.blade.php
index 5860bdf62b2d..89c595e26dd2 100644
--- a/resources/views/setup/index.blade.php
+++ b/resources/views/setup/index.blade.php
@@ -14,9 +14,8 @@
Invoice Ninja Setup
-
If you need help you can either post to our
- support forum
- or email us at contact@invoiceninja.com.
+
{{ ctrans('texts.if_you_need_help') }}
+ {{ ctrans('texts.support_forum') }}
@if($errors->any())
@@ -31,7 +30,7 @@
@if(session()->has('setup_error'))
-
Oops, something wen't wrong:
+
{{ ctrans('texts.error_title') }}:
{{ session('setup_error') }}
@endif
@@ -49,13 +48,13 @@