mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-10 14:10:46 +00:00
resolve merge conflicts
This commit is contained in:
parent
297e6ce3de
commit
370f09495a
2 changed files with 7 additions and 6 deletions
|
@ -3494,7 +3494,8 @@ class ApiV1Controller extends Controller
|
|||
return [];
|
||||
}
|
||||
|
||||
$content = $request->filled('status') ? strip_tags($request->input('status')) : null;
|
||||
$defaultCaption = "";
|
||||
$content = $request->filled('status') ? strip_tags($request->input('status')) : $defaultCaption;
|
||||
$cw = $user->profile->cw == true ? true : $request->boolean('sensitive', false);
|
||||
$spoilerText = $cw && $request->filled('spoiler_text') ? $request->input('spoiler_text') : null;
|
||||
|
||||
|
|
|
@ -97,7 +97,7 @@ return [
|
|||
'modlog' => 'modlog',
|
||||
'post' => 'Beitrag',
|
||||
'story' => 'Story',
|
||||
'noneFound' => 'Keine Benachrichtigungen',
|
||||
'noneFound' => 'Keine Benachrichtigungen vorhanden',
|
||||
],
|
||||
|
||||
'post' => [
|
||||
|
@ -180,10 +180,10 @@ return [
|
|||
'peopleYouMayKnow' => 'Leute, die du vielleicht kennst',
|
||||
|
||||
'onboarding' => [
|
||||
'welcome' => 'Willkommen',
|
||||
'thisIsYourHomeFeed' => 'Dies ist deine Startseite, ein chronologischer Strom von Beiträgen von Accounts, denen du folgst.',
|
||||
'letUsHelpYouFind' => 'Lass uns dir helfen, ein paar interessante Leute zu finden, denen du folgen kannst'
|
||||
'refreshFeed' => 'Aktualisiere meinen Feed',
|
||||
'welcome' => 'Herzlich Willkommen',
|
||||
'thisIsYourHomeFeed' => 'Dies ist dein Heim-Feed, ein chronologischer Feed von Beiträgen aus den Konten, denen du folgst.',
|
||||
'letUsHelpYouFind' => 'Lass uns dir helfen, einige interessante Leute zu finden, denen du folgen kannst',
|
||||
'refreshFeed' => 'Feed aktualisieren',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
Loading…
Reference in a new issue