diff --git a/resources/lang/de/forms.php b/resources/lang/de/forms.php index 4fc84eae..b4565ff3 100755 --- a/resources/lang/de/forms.php +++ b/resources/lang/de/forms.php @@ -106,6 +106,7 @@ return [ 'theme' => [ 'background-color' => 'Hintergrund-Farbe', 'text-color' => 'Text-Farbe', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/en/forms.php b/resources/lang/en/forms.php index bd7c6719..946aa7ec 100755 --- a/resources/lang/en/forms.php +++ b/resources/lang/en/forms.php @@ -117,6 +117,7 @@ return [ 'theme' => [ 'background-color' => 'Background Color', 'text-color' => 'Text Color', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/es/forms.php b/resources/lang/es/forms.php index 9b052164..341124b4 100755 --- a/resources/lang/es/forms.php +++ b/resources/lang/es/forms.php @@ -107,6 +107,7 @@ return [ 'theme' => [ 'background-color' => 'Color de fondo', 'text-color' => 'Color de Texto', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/fr/forms.php b/resources/lang/fr/forms.php index 47ca809b..6d6b2a97 100755 --- a/resources/lang/fr/forms.php +++ b/resources/lang/fr/forms.php @@ -106,6 +106,7 @@ return [ 'theme' => [ 'background-color' => 'Couleur d\'arrière plan', 'text-color' => 'Couleur du texte', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/id/forms.php b/resources/lang/id/forms.php index cea9cd9b..c7ab2503 100644 --- a/resources/lang/id/forms.php +++ b/resources/lang/id/forms.php @@ -109,6 +109,7 @@ return [ 'theme' => [ 'background-color' => 'Warna Latar', 'text-color' => 'Warna Teks', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/ko/forms.php b/resources/lang/ko/forms.php index 8c477c8b..e1bc6673 100755 --- a/resources/lang/ko/forms.php +++ b/resources/lang/ko/forms.php @@ -117,6 +117,7 @@ return [ 'theme' => [ 'background-color' => '배경색', 'text-color' => '글자색', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/nl/forms.php b/resources/lang/nl/forms.php index 0c2befc3..9eaa4a38 100755 --- a/resources/lang/nl/forms.php +++ b/resources/lang/nl/forms.php @@ -109,6 +109,7 @@ return [ 'theme' => [ 'background-color' => 'Achtergrondkleur', 'text-color' => 'Tekstkleur', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/pl/forms.php b/resources/lang/pl/forms.php index 9148f751..537be3c8 100755 --- a/resources/lang/pl/forms.php +++ b/resources/lang/pl/forms.php @@ -109,6 +109,7 @@ return [ 'theme' => [ 'background-color' => 'Kolor tła', 'text-color' => 'Kolor tekstu', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/pt-BR/forms.php b/resources/lang/pt-BR/forms.php index d9d1a534..ffe6a39e 100755 --- a/resources/lang/pt-BR/forms.php +++ b/resources/lang/pt-BR/forms.php @@ -109,6 +109,7 @@ return [ 'theme' => [ 'background-color' => 'Cor de fundo', 'text-color' => 'Cor do Texto', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/ru/forms.php b/resources/lang/ru/forms.php index 2e46fcbe..dda60ff5 100644 --- a/resources/lang/ru/forms.php +++ b/resources/lang/ru/forms.php @@ -117,6 +117,7 @@ return [ 'theme' => [ 'background-color' => 'Цвет фона', 'text-color' => 'Цвет текста', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/zh-CN/forms.php b/resources/lang/zh-CN/forms.php index 7f343677..90c11dc4 100755 --- a/resources/lang/zh-CN/forms.php +++ b/resources/lang/zh-CN/forms.php @@ -117,6 +117,7 @@ return [ 'theme' => [ 'background-color' => '背景色', 'text-color' => '文字颜色', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/lang/zh-TW/forms.php b/resources/lang/zh-TW/forms.php index 78ed066b..2eb328a6 100755 --- a/resources/lang/zh-TW/forms.php +++ b/resources/lang/zh-TW/forms.php @@ -117,6 +117,7 @@ return [ 'theme' => [ 'background-color' => '背景顏色', 'text-color' => '文字顏色', + 'dashboard-login' => 'Show dashboard button in the footer?', ], ], diff --git a/resources/views/dashboard/settings/theme.blade.php b/resources/views/dashboard/settings/theme.blade.php index dddad4e1..d46ea134 100644 --- a/resources/views/dashboard/settings/theme.blade.php +++ b/resources/views/dashboard/settings/theme.blade.php @@ -31,6 +31,14 @@ +
+
+
+ + +
+
+
{{--
diff --git a/resources/views/partials/footer.blade.php b/resources/views/partials/footer.blade.php index ab6bd524..448588c4 100644 --- a/resources/views/partials/footer.blade.php +++ b/resources/views/partials/footer.blade.php @@ -8,7 +8,9 @@
+ @if($loggedUser || Setting::get('dashboard_login_link')) {{ trans('dashboard.dashboard') }} + @endif @if($loggedUser) {{ trans('dashboard.logout') }} @endif