From c06168b6847b53546f9fad4428da1e120887c186 Mon Sep 17 00:00:00 2001 From: Constantin Marius Date: Mon, 23 Sep 2019 11:57:09 +0300 Subject: [PATCH] fix translate --- .vscode/settings.json | 7 ----- src/.vscode/settings.json | 7 +++++ .../resources/views/auth/login.blade.php | 14 ++++----- .../views/auth/passwords/email.blade.php | 8 ++--- .../views/auth/passwords/reset.blade.php | 12 ++++---- .../resources/views/auth/register.blade.php | 30 +++++++++---------- .../resources/views/layouts/footer.blade.php | 14 ++++----- .../layouts/navbars/navs/guest.blade.php | 6 ++-- .../views/layouts/navbars/sidebar.blade.php | 24 +++++++-------- .../resources/views/profile/edit.blade.php | 20 ++++++------- 10 files changed, 71 insertions(+), 71 deletions(-) delete mode 100644 .vscode/settings.json create mode 100644 src/.vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 7b908361..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "workbench.colorCustomizations": { - "activityBar.background": "#05323E", - "titleBar.activeBackground": "#074756", - "titleBar.activeForeground": "#F1FBFE" - } -} \ No newline at end of file diff --git a/src/.vscode/settings.json b/src/.vscode/settings.json new file mode 100644 index 00000000..959e41ac --- /dev/null +++ b/src/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "workbench.colorCustomizations": { + "activityBar.background": "#4E200A", + "titleBar.activeBackground": "#6D2D0D", + "titleBar.activeForeground": "#FEFAF8" + } +} \ No newline at end of file diff --git a/src/black-stubs/resources/views/auth/login.blade.php b/src/black-stubs/resources/views/auth/login.blade.php index db9eca39..b1ae4f15 100644 --- a/src/black-stubs/resources/views/auth/login.blade.php +++ b/src/black-stubs/resources/views/auth/login.blade.php @@ -1,4 +1,4 @@ -@extends('layouts.app', ['class' => 'login-page', 'page' => _('Login Page'), 'contentClass' => 'login-page']) +@extends('layouts.app', ['class' => 'login-page', 'page' => __('Login Page'), 'contentClass' => 'login-page']) @section('content')
@@ -11,7 +11,7 @@ - + @include('alerts.feedback', ['field' => 'email'])
@@ -30,20 +30,20 @@
- + @include('alerts.feedback', ['field' => 'password']) diff --git a/src/black-stubs/resources/views/auth/passwords/email.blade.php b/src/black-stubs/resources/views/auth/passwords/email.blade.php index 329132e1..c72149ea 100644 --- a/src/black-stubs/resources/views/auth/passwords/email.blade.php +++ b/src/black-stubs/resources/views/auth/passwords/email.blade.php @@ -1,4 +1,4 @@ -@extends('layouts.app', ['class' => 'login-page', 'page' => _('Reset password'), 'contentClass' => 'login-page']) +@extends('layouts.app', ['class' => 'login-page', 'page' => __('Reset password'), 'contentClass' => 'login-page']) @section('content')
@@ -8,7 +8,7 @@ - + @include('alerts.feedback', ['field' => 'email'])
diff --git a/src/black-stubs/resources/views/auth/passwords/reset.blade.php b/src/black-stubs/resources/views/auth/passwords/reset.blade.php index 30c37ae2..fffc14c6 100644 --- a/src/black-stubs/resources/views/auth/passwords/reset.blade.php +++ b/src/black-stubs/resources/views/auth/passwords/reset.blade.php @@ -1,4 +1,4 @@ -@extends('layouts.app', ['class' => 'login-page', 'page' => _('Reset password'), 'contentClass' => 'login-page']) +@extends('layouts.app', ['class' => 'login-page', 'page' => __('Reset password'), 'contentClass' => 'login-page']) @section('content')
@@ -8,7 +8,7 @@ - + @include('alerts.feedback', ['field' => 'email'])
@@ -30,7 +30,7 @@
- + @include('alerts.feedback', ['field' => 'password'])
@@ -39,11 +39,11 @@
- + diff --git a/src/black-stubs/resources/views/auth/register.blade.php b/src/black-stubs/resources/views/auth/register.blade.php index 99bd51ce..24cb08f8 100644 --- a/src/black-stubs/resources/views/auth/register.blade.php +++ b/src/black-stubs/resources/views/auth/register.blade.php @@ -1,4 +1,4 @@ -@extends('layouts.app', ['class' => 'register-page', 'page' => _('Register Page'), 'contentClass' => 'register-page']) +@extends('layouts.app', ['class' => 'register-page', 'page' => __('Register Page'), 'contentClass' => 'register-page']) @section('content')
@@ -8,9 +8,9 @@
-

{{ _('Marketing') }}

+

{{ __('Marketing') }}

- {{ _('We\'ve created the marketing campaign of the website. It was a very interesting collaboration.') }} + {{ __('We\'ve created the marketing campaign of the website. It was a very interesting collaboration.') }}

@@ -19,9 +19,9 @@
-

{{ _('Fully Coded in HTML5') }}

+

{{ __('Fully Coded in HTML5') }}

- {{ _('We\'ve developed the website with HTML5 and CSS3. The client has access to the code using GitHub.') }} + {{ __('We\'ve developed the website with HTML5 and CSS3. The client has access to the code using GitHub.') }}

@@ -30,9 +30,9 @@
-

{{ _('Built Audience') }}

+

{{ __('Built Audience') }}

- {{ _('There is also a Fully Customizable CMS Admin Dashboard for this product.') }} + {{ __('There is also a Fully Customizable CMS Admin Dashboard for this product.') }}

@@ -41,7 +41,7 @@
Card image -

{{ _('Register') }}

+

{{ __('Register') }}

@csrf @@ -53,7 +53,7 @@
- + @include('alerts.feedback', ['field' => 'name'])
@@ -62,7 +62,7 @@
- + @include('alerts.feedback', ['field' => 'email'])
@@ -71,7 +71,7 @@
- + @include('alerts.feedback', ['field' => 'password'])
@@ -80,19 +80,19 @@
- +
diff --git a/src/black-stubs/resources/views/layouts/footer.blade.php b/src/black-stubs/resources/views/layouts/footer.blade.php index 7c0b2adc..cdcf0f70 100644 --- a/src/black-stubs/resources/views/layouts/footer.blade.php +++ b/src/black-stubs/resources/views/layouts/footer.blade.php @@ -3,29 +3,29 @@ diff --git a/src/black-stubs/resources/views/layouts/navbars/navs/guest.blade.php b/src/black-stubs/resources/views/layouts/navbars/navs/guest.blade.php index 5efcf2b1..d106357f 100644 --- a/src/black-stubs/resources/views/layouts/navbars/navs/guest.blade.php +++ b/src/black-stubs/resources/views/layouts/navbars/navs/guest.blade.php @@ -19,17 +19,17 @@ diff --git a/src/black-stubs/resources/views/layouts/navbars/sidebar.blade.php b/src/black-stubs/resources/views/layouts/navbars/sidebar.blade.php index 5564d866..c39140c5 100644 --- a/src/black-stubs/resources/views/layouts/navbars/sidebar.blade.php +++ b/src/black-stubs/resources/views/layouts/navbars/sidebar.blade.php @@ -1,14 +1,14 @@