⚙️ Make community a required field in meetup create/edit forms

🛠️ Add “Keine” placeholder option to community select
✏️ Translate community values (“bitcoin”, “einundzwanzig”) on landing page
🌍 Update German locale strings for community names
This commit is contained in:
HolgerHatGarKeineNode
2025-12-09 23:47:58 +01:00
parent 52c05e6d47
commit 538ae5808a
4 changed files with 13 additions and 4 deletions

View File

@@ -145,7 +145,15 @@ class extends Component {
@if($meetup->community)
<div>
<flux:heading size="sm" class="mb-2">Community</flux:heading>
<p class="text-gray-700 dark:text-gray-300">{{ $meetup->community }}</p>
<p class="text-gray-700 dark:text-gray-300">
@if ($meetup->community === 'bitcoin')
{{ __('Allgemeine Bitcoin Community') }}
@elseif ($meetup->community === 'einundzwanzig')
{{ __('Einundzwanzig Community') }}
@else
{{ $meetup->community }}
@endif
</p>
</div>
@endif
</div>