mirror of https://github.com/pixelfed/pixelfed.git
Merge pull request #367 from m4sk1n/nosavedposts
Add message for no saved posts
This commit is contained in:
commit
98dc7cc211
|
@ -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 haven’t saved any post yet!',
|
||||||
'savedWarning' => 'Only you can see what you’ve saved',
|
'savedWarning' => 'Only you can see what you’ve saved',
|
||||||
];
|
];
|
||||||
|
|
|
@ -9,5 +9,6 @@ return [
|
||||||
'settings' => 'Ustawienia',
|
'settings' => 'Ustawienia',
|
||||||
'admin' => 'Administrator',
|
'admin' => 'Administrator',
|
||||||
'logout' => 'Wyloguj się',
|
'logout' => 'Wyloguj się',
|
||||||
|
'directMessages' => 'Wiadomości bezpośrednie',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -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.'
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -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ś)',
|
||||||
];
|
];
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue