diff --git a/resources/lang/en/helpcenter.php b/resources/lang/en/helpcenter.php index 9121fd485..2c8510906 100644 --- a/resources/lang/en/helpcenter.php +++ b/resources/lang/en/helpcenter.php @@ -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 Report 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' => '', ]; diff --git a/resources/lang/pt/helpcenter.php b/resources/lang/pt/helpcenter.php index 4c40e219c..9e913a58a 100644 --- a/resources/lang/pt/helpcenter.php +++ b/resources/lang/pt/helpcenter.php @@ -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 Denunciar 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' => '', + + ]; diff --git a/resources/views/site/help/timelines.blade.php b/resources/views/site/help/timelines.blade.php index 5fe40c021..c89a9d80f 100644 --- a/resources/views/site/help/timelines.blade.php +++ b/resources/views/site/help/timelines.blade.php @@ -1,40 +1,35 @@ -@extends('site.help.partial.template', ['breadcrumb'=>'Timelines']) +@extends('site.help.partial.template', ['breadcrumb'=> __("helpcenter.timelines") ]) @section('section')
-

Timelines

+

{{ __("helpcenter.timelines") }}


-

Timelines are chronological feeds of posts.

- {{--

Pixelfed has 3 different timelines:

--}} +

{{ __('helpcenter.timelineSubTitle') }}

-
Timeline Tips
+
{{ __('helpcenter.timelineTips') }}
- + {!! __('helpcenter.timelineTipsContent') !!}
@endsection