Merge pull request #367 from m4sk1n/nosavedposts

Add message for no saved posts
This commit is contained in:
daniel 2018-08-14 15:04:48 -06:00 committed by GitHub
commit 98dc7cc211
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 6 deletions

View File

@ -4,5 +4,6 @@ return [
'emptyTimeline' => 'This user has no posts yet!', 'emptyTimeline' => 'This user has no posts yet!',
'emptyFollowers' => 'This user has no followers yet!', 'emptyFollowers' => 'This user has no followers yet!',
'emptyFollowing' => 'This user is not following anyone yet!', 'emptyFollowing' => 'This user is not following anyone yet!',
'emptySaved' => 'You havent saved any post yet!',
'savedWarning' => 'Only you can see what youve saved', 'savedWarning' => 'Only you can see what youve saved',
]; ];

View File

@ -9,5 +9,6 @@ return [
'settings' => 'Ustawienia', 'settings' => 'Ustawienia',
'admin' => 'Administrator', 'admin' => 'Administrator',
'logout' => 'Wyloguj się', 'logout' => 'Wyloguj się',
'directMessages' => 'Wiadomości bezpośrednie',
]; ];

View File

@ -2,9 +2,9 @@
return [ return [
'likedPhoto' => 'polubił Twoje zdjęcie.', 'likedPhoto' => 'polubił(a) Twoje zdjęcie.',
'startedFollowingYou' => 'zaczął Cię obserwować.', 'startedFollowingYou' => 'zaczął(-ęła) Cię obserwować.',
'commented' => 'skomentował Twój wpis', 'commented' => 'skomentował(a) Twój wpis',
'mentionedYou' => 'wspomniał o Tobie.' 'mentionedYou' => 'wspomniał(a) o Tobie.'
]; ];

View File

@ -4,5 +4,6 @@ return [
'emptyTimeline' => 'Ten użytkownik nie opublikował jeszcze niczego!', 'emptyTimeline' => 'Ten użytkownik nie opublikował jeszcze niczego!',
'emptyFollowers' => 'Nikt nie obserwuje tego użytkownika!', 'emptyFollowers' => 'Nikt nie obserwuje tego użytkownika!',
'emptyFollowing' => 'Ten użytkownik nie obserwuje nikogo!', 'emptyFollowing' => 'Ten użytkownik nie obserwuje nikogo!',
'savedWarning' => 'Tylko Ty widzisz to, co zapisałeś', 'emptySaved' => 'Nie zapisałeś(-aś) jeszcze niczego!',
'savedWarning' => 'Tylko Ty widzisz to, co zapisałeś(-aś)',
]; ];

View File

@ -56,7 +56,11 @@
<div class="card"> <div class="card">
<div class="card-body py-5 my-5"> <div class="card-body py-5 my-5">
<div class="d-flex my-5 py-5 justify-content-center align-items-center"> <div class="d-flex my-5 py-5 justify-content-center align-items-center">
@if($owner && request()->is('*/saved'))
<p class="lead font-weight-bold">{{ __('profile.emptySaved') }}</p>
@else
<p class="lead font-weight-bold">{{ __('profile.emptyTimeline') }}</p> <p class="lead font-weight-bold">{{ __('profile.emptyTimeline') }}</p>
@endif
</div> </div>
</div> </div>
</div> </div>