feat(translate): Helpcenter Timeline

#2
This commit is contained in:
Felipe Mateus 2025-01-09 16:51:56 -03:00
parent 16f71fd954
commit d10c77bca7
No known key found for this signature in database
GPG key ID: 94D494618F214123
3 changed files with 28 additions and 14 deletions

View file

@ -272,6 +272,14 @@ return [
'howReportDirectMessageAsk' => 'How do I report content that I\'ve recieved in a Pixelfed Direct message?', '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.', '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>',
]; ];

View file

@ -251,4 +251,15 @@ return [
'howReportDirectMessageAsk' => 'Como faço para denunciar conteúdo que recebi em uma mensagem do Pixelfed Direct?', '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.', '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>',
]; ];

View file

@ -1,40 +1,35 @@
@extends('site.help.partial.template', ['breadcrumb'=>'Timelines']) @extends('site.help.partial.template', ['breadcrumb'=> __("helpcenter.timelines") ])
@section('section') @section('section')
<div class="title"> <div class="title">
<h3 class="font-weight-bold">Timelines</h3> <h3 class="font-weight-bold">{{ __("helpcenter.timelines") }}</h3>
</div> </div>
<hr> <hr>
<p class="lead">Timelines are chronological feeds of posts.</p> <p class="lead">{{ __('helpcenter.timelineSubTitle') }}</p>
{{-- <p class="font-weight-bold h5 py-3">Pixelfed has 3 different timelines:</p> --}}
<ul class="list-unstyled"> <ul class="list-unstyled">
<li class="lead mb-2"> <li class="lead mb-2">
<span class="font-weight-bold"><i class="fas fa-home mr-2"></i> Home</span> <span class="font-weight-bold"><i class="fas fa-home mr-2"></i> Home</span>
<span class="px-2">&mdash;</span> <span class="px-2">&mdash;</span>
<span class="font-weight-light">Timeline with content from accounts you follow</span> <span class="font-weight-light">{{ __('helpcenter.timelineHome') }}</span>
</li> </li>
<li class="lead mb-2"> <li class="lead mb-2">
<span class="font-weight-bold"><i class="fas fa-stream mr-2"></i> Public</span> <span class="font-weight-bold"><i class="fas fa-stream mr-2"></i> Public</span>
<span class="px-2">&mdash;</span> <span class="px-2">&mdash;</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>
<li class="lead"> <li class="lead">
<span class="font-weight-bold"><i class="fas fa-globe mr-2"></i> Network</span> <span class="font-weight-bold"><i class="fas fa-globe mr-2"></i> Network</span>
<span class="px-2">&mdash;</span> <span class="px-2">&mdash;</span>
<span class="font-weight-light">Timeline with unmoderated content from other servers</span> <span class="font-weight-light">{{ __('helpcenter.timelineNetwork') }}</span>
</li> </li>
</ul> </ul>
<div class="py-3"></div> <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 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"> <div class="card-body bg-white p-3">
<ul class="pt-3"> {!! __('helpcenter.timelineTipsContent') !!}
<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>
</div> </div>
</div> </div>
@endsection @endsection