BloomFeed Upgrade v0.21

This commit is contained in:
Esteban
2026-07-04 03:07:54 +02:00
parent d73c25cbbb
commit 28ba35da13
36 changed files with 1981 additions and 274 deletions
+5 -5
View File
@@ -6,7 +6,7 @@
<div class="form-status">{{ session('status') }}</div>
@endif
<a href="{{ url()->previous(route('dashboard')) }}" class="back-link">&larr; Retour aux articles</a>
<a href="{{ url()->previous(route('dashboard')) }}" class="back-link">&larr; {{ __('app.back_to_articles') }}</a>
<article class="card reader-article">
<h1 class="reader-title">{{ $article->title }}</h1>
@@ -15,15 +15,15 @@
@if ($article->published_at)
<span>&middot; {{ $article->published_at->diffForHumans() }}</span>
@endif
<a href="{{ $article->link }}" target="_blank" rel="noopener" class="reader-source-link">Voir la source originale &#8599;</a>
<a href="{{ $article->link }}" target="_blank" rel="noopener" class="reader-source-link">{{ __('app.view_original') }} &#8599;</a>
</div>
@if ($article->full_content_error)
<div class="reader-error">
<p>Impossible de récupérer le contenu complet de cet article ({{ $article->full_content_error }}).</p>
<p>{{ __('app.fetch_error', ['error' => $article->full_content_error]) }}</p>
<form method="POST" action="{{ route('articles.retry', $article) }}">
@csrf
<button type="submit" class="btn btn-ghost btn-sm">Réessayer</button>
<button type="submit" class="btn btn-ghost btn-sm">{{ __('app.retry') }}</button>
</form>
@if ($article->excerpt)
<p class="mt-2">{{ $article->excerpt }}</p>
@@ -32,7 +32,7 @@
@elseif ($contentHtml)
<div class="prose">{!! $contentHtml !!}</div>
@else
<p class="text-muted">Récupération du contenu en cours…</p>
<p class="text-muted">{{ __('app.fetching') }}</p>
@endif
</article>
</div>