mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-02-02 18:00:47 +00:00
parent
16f71fd954
commit
d10c77bca7
3 changed files with 28 additions and 14 deletions
|
@ -272,6 +272,14 @@ return [
|
|||
'howReportDirectMessageAsk' => 'How do I report content that I\'ve recieved in a Pixelfed Direct message?',
|
||||
'howReportDirectMessageAnswer' => ' You can click the message and then select the <strong>Report</strong> option and follow the instructions on the Report page.',
|
||||
|
||||
|
||||
'timelineSubTitle' => 'Timelines are chronological feeds of posts.',
|
||||
'timelineHome' => 'Timeline with content from accounts you follow',
|
||||
'timelinePublic' => 'Timeline with content from other users on this server',
|
||||
'timelineNetwork' => 'Timeline with unmoderated content from other servers',
|
||||
'timelineTips' => 'Timeline Tips',
|
||||
'timelineTipsContent' => '<ul class="pt-3">
|
||||
<li class="lead mb-4">You can mute or block accounts to prevent them from appearing in home and public timelines.</li>
|
||||
<li class="lead mb-4">You can create <span class="font-weight-bold">Unlisted</span> posts that don\'t appear in public timelines.</li>
|
||||
</ul>',
|
||||
|
||||
];
|
||||
|
|
|
@ -251,4 +251,15 @@ return [
|
|||
'howReportDirectMessageAsk' => 'Como faço para denunciar conteúdo que recebi em uma mensagem do Pixelfed Direct?',
|
||||
'howReportDirectMessageAnswer' => 'Você pode clicar na mensagem e, em seguida, selecionar a opção <strong>Denunciar</strong> e seguir as instruções na página de Denúncia.',
|
||||
|
||||
'timelineSubTitle' => 'Linhas do tempo são feeds cronológicos de postagens.',
|
||||
'timelineHome' => 'Linha do tempo com conteúdo de contas que você segue',
|
||||
'timelinePublic' => 'Linha do tempo com conteúdo de outros usuários neste servidor',
|
||||
'timelineNetwork' => 'Linha do tempo com conteúdo não moderado de outros servidores',
|
||||
'timelineTips' => 'Dicas de linha do tempo',
|
||||
'timelineTipsContent' => '<ul class="pt-3">
|
||||
<li class="lead mb-4">Você pode silenciar ou bloquear contas para impedir que elas apareçam na linha do tempo inicial e nas linhas do tempo públicas.</li>
|
||||
<li class="lead mb-4">Você pode criar postagens <span class="font-weight-bold">Não Listadas</span> que não aparecem nas linhas do tempo públicas.</li>
|
||||
</ul>',
|
||||
|
||||
|
||||
];
|
||||
|
|
|
@ -1,40 +1,35 @@
|
|||
@extends('site.help.partial.template', ['breadcrumb'=>'Timelines'])
|
||||
@extends('site.help.partial.template', ['breadcrumb'=> __("helpcenter.timelines") ])
|
||||
|
||||
@section('section')
|
||||
|
||||
<div class="title">
|
||||
<h3 class="font-weight-bold">Timelines</h3>
|
||||
<h3 class="font-weight-bold">{{ __("helpcenter.timelines") }}</h3>
|
||||
</div>
|
||||
<hr>
|
||||
<p class="lead">Timelines are chronological feeds of posts.</p>
|
||||
{{-- <p class="font-weight-bold h5 py-3">Pixelfed has 3 different timelines:</p> --}}
|
||||
<p class="lead">{{ __('helpcenter.timelineSubTitle') }}</p>
|
||||
|
||||
<ul class="list-unstyled">
|
||||
<li class="lead mb-2">
|
||||
<span class="font-weight-bold"><i class="fas fa-home mr-2"></i> Home</span>
|
||||
<span class="px-2">—</span>
|
||||
<span class="font-weight-light">Timeline with content from accounts you follow</span>
|
||||
<span class="font-weight-light">{{ __('helpcenter.timelineHome') }}</span>
|
||||
</li>
|
||||
<li class="lead mb-2">
|
||||
<span class="font-weight-bold"><i class="fas fa-stream mr-2"></i> Public</span>
|
||||
<span class="px-2">—</span>
|
||||
<span class="font-weight-light">Timeline with content from other users on this server</span>
|
||||
<span class="font-weight-light">{{ __('helpcenter.timelinePublic') }}</span>
|
||||
</li>
|
||||
<li class="lead">
|
||||
<span class="font-weight-bold"><i class="fas fa-globe mr-2"></i> Network</span>
|
||||
<span class="px-2">—</span>
|
||||
<span class="font-weight-light">Timeline with unmoderated content from other servers</span>
|
||||
<span class="font-weight-light">{{ __('helpcenter.timelineNetwork') }}</span>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="py-3"></div>
|
||||
<div class="card bg-primary border-primary" style="box-shadow: none !important;border: 3px solid #08d!important;">
|
||||
<div class="card-header text-light font-weight-bold h4 p-4 bg-primary">Timeline Tips</div>
|
||||
<div class="card-header text-light font-weight-bold h4 p-4 bg-primary">{{ __('helpcenter.timelineTips') }}</div>
|
||||
<div class="card-body bg-white p-3">
|
||||
<ul class="pt-3">
|
||||
<li class="lead mb-4">You can mute or block accounts to prevent them from appearing in home and public timelines.</li>
|
||||
<li class="lead mb-4">You can create <span class="font-weight-bold">Unlisted</span> posts that don't appear in public timelines.</li>
|
||||
|
||||
</ul>
|
||||
{!! __('helpcenter.timelineTipsContent') !!}
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
|
Loading…
Reference in a new issue