Skip to content

Commit

Permalink
[FIX] issue krayin#1667
Browse files Browse the repository at this point in the history
  • Loading branch information
suraj-webkul committed Oct 8, 2024
1 parent e1ec37c commit f0f3fb5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/Webkul/Admin/src/Resources/lang/ar/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -1909,7 +1909,7 @@
],

'layouts' => [
'app-version' => 'الإصدار : :version',
'app-version' => 'الإصدار: :version',
'dashboard' => 'لوحة القيادة',
'leads' => 'العملاء المحتملين',
'quotes' => 'العروض',
Expand Down
2 changes: 1 addition & 1 deletion packages/Webkul/Admin/src/Resources/lang/en/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -1909,7 +1909,7 @@
],

'layouts' => [
'app-version' => 'Version : :version',
'app-version' => 'Version: :version',
'dashboard' => 'Dashboard',
'leads' => 'Leads',
'quotes' => 'Quotes',
Expand Down
2 changes: 1 addition & 1 deletion packages/Webkul/Admin/src/Resources/lang/es/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -1909,7 +1909,7 @@
],

'layouts' => [
'app-version' => 'Versión : :version',
'app-version' => 'Versión: :version',
'dashboard' => 'Tablero',
'leads' => 'Leads',
'quotes' => 'Cotizaciones',
Expand Down
2 changes: 1 addition & 1 deletion packages/Webkul/Admin/src/Resources/lang/fa/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -1909,7 +1909,7 @@
],

'layouts' => [
'app-version' => 'نسخه : :version',
'app-version' => 'نسخه: :version',
'dashboard' => 'داشبورد',
'leads' => 'لیدها',
'quotes' => 'نقل قول‌ها',
Expand Down
2 changes: 1 addition & 1 deletion packages/Webkul/Admin/src/Resources/lang/tr/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -1909,7 +1909,7 @@
],

'layouts' => [
'app-version' => 'Sürüm : :version',
'app-version' => 'Sürüm: :version',
'dashboard' => 'Gösterge Paneli',
'leads' => 'Leadler',
'quotes' => 'Teklifler',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class="{{ request()->cookie('dark_mode') ? 'icon-light' : 'icon-dark' }} p-1.5 r
</v-dark>

<!-- Admin profile -->
<x-admin::dropdown position="bottom-right">
<x-admin::dropdown position="bottom-{{ in_array(app()->getLocale(), ['fa', 'ar']) ? 'left' : 'right' }}">
<x-slot:toggle>
@if (auth()->guard('user')->user()->image)
<button class="flex h-9 w-9 cursor-pointer overflow-hidden rounded-full hover:opacity-80 focus:opacity-80">
Expand All @@ -213,7 +213,7 @@ class="w-full"

<!-- Version -->
<p class="text-gray-400">
Version: v{{ core()->version() }}
@lang('admin::app.layouts.app-version', ['version' => core()->version()])
</p>
</div>

Expand All @@ -222,7 +222,7 @@ class="w-full"
class="cursor-pointer px-5 py-2 text-base text-gray-800 hover:bg-gray-100 dark:text-white dark:hover:bg-gray-950"
href="{{ route('admin.user.account.edit') }}"
>
My Account
@lang('admin::app.layouts.my-account')
</a>

<!--Admin logout-->
Expand All @@ -238,7 +238,7 @@ class="cursor-pointer px-5 py-2 text-base text-gray-800 hover:bg-gray-100 dark:t
href="{{ route('admin.session.destroy') }}"
onclick="event.preventDefault(); document.getElementById('adminLogout').submit();"
>
Logout
@lang('admin::app.layouts.sign-out')
</a>
</div>
</x-slot>
Expand Down

0 comments on commit f0f3fb5

Please sign in to comment.