Skip to content

Commit

Permalink
Merge pull request #14782 from filamentphp/stats-overview-heading-desc
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Nov 13, 2024
1 parent 5c4bf42 commit 3f170b1
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 1 deletion.
8 changes: 8 additions & 0 deletions resources/lang/az/layout.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,12 @@

],

'avatar' => [
'alt' => 'avatarı :name',
],

'logo' => [
'alt' => ':name loqo',
],

];
26 changes: 26 additions & 0 deletions resources/lang/az/pages/dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,30 @@

'title' => 'İdarəetmə Paneli',

'actions' => [

'filter' => [

'label' => 'Filtr',

'modal' => [

'heading' => 'Filtr',

'actions' => [

'apply' => [

'label' => 'Tətbiq et',

],

],

],

],

],

];
7 changes: 7 additions & 0 deletions resources/lang/az/unsaved-changes-alert.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

return [

'body' => 'Saxlanılmamış dəyişikliklər var. Bu səhifədən çıxmaq istədiyinizə əminsiniz?',

];
8 changes: 8 additions & 0 deletions resources/lang/ca/layout.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,12 @@

],

'avatar' => [
'alt' => 'Avatar de :name',
],

'logo' => [
'alt' => 'Logotip de :name',
],

];
7 changes: 7 additions & 0 deletions resources/lang/ca/unsaved-changes-alert.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

return [

'body' => 'Tens canvis sense desar. Estàs segur que vols sortir d\'aquesta pàgina?',

];
6 changes: 5 additions & 1 deletion resources/views/components/topbar/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,11 @@ class="fi-topbar-close-sidebar-btn lg:hidden"
@endif

<div
x-persist="topbar.end"
@if (filament()->hasTenancy())
x-persist="topbar.end.tenant-{{ filament()->getTenant()?->getKey() }}"
@else
x-persist="topbar.end"
@endif
class="ms-auto flex items-center gap-x-4"
>
{{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::GLOBAL_SEARCH_BEFORE) }}
Expand Down

0 comments on commit 3f170b1

Please sign in to comment.