mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-10 22:20: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 [];
|
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);
|
$cw = $user->profile->cw == true ? true : $request->boolean('sensitive', false);
|
||||||
$spoilerText = $cw && $request->filled('spoiler_text') ? $request->input('spoiler_text') : null;
|
$spoilerText = $cw && $request->filled('spoiler_text') ? $request->input('spoiler_text') : null;
|
||||||
|
|
||||||
|
|
|
@ -97,7 +97,7 @@ return [
|
||||||
'modlog' => 'modlog',
|
'modlog' => 'modlog',
|
||||||
'post' => 'Beitrag',
|
'post' => 'Beitrag',
|
||||||
'story' => 'Story',
|
'story' => 'Story',
|
||||||
'noneFound' => 'Keine Benachrichtigungen',
|
'noneFound' => 'Keine Benachrichtigungen vorhanden',
|
||||||
],
|
],
|
||||||
|
|
||||||
'post' => [
|
'post' => [
|
||||||
|
@ -180,10 +180,10 @@ return [
|
||||||
'peopleYouMayKnow' => 'Leute, die du vielleicht kennst',
|
'peopleYouMayKnow' => 'Leute, die du vielleicht kennst',
|
||||||
|
|
||||||
'onboarding' => [
|
'onboarding' => [
|
||||||
'welcome' => 'Willkommen',
|
'welcome' => 'Herzlich Willkommen',
|
||||||
'thisIsYourHomeFeed' => 'Dies ist deine Startseite, ein chronologischer Strom von Beiträgen von Accounts, denen du folgst.',
|
'thisIsYourHomeFeed' => 'Dies ist dein Heim-Feed, ein chronologischer Feed von Beiträgen aus den Konten, denen du folgst.',
|
||||||
'letUsHelpYouFind' => 'Lass uns dir helfen, ein paar interessante Leute zu finden, denen du folgen kannst'
|
'letUsHelpYouFind' => 'Lass uns dir helfen, einige interessante Leute zu finden, denen du folgen kannst',
|
||||||
'refreshFeed' => 'Aktualisiere meinen Feed',
|
'refreshFeed' => 'Feed aktualisieren',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue