🌐 Add multilingual translations and update UI for Meetup and Event management

This commit is contained in:
HolgerHatGarKeineNode
2025-11-21 12:55:21 +01:00
parent 122da2b2c7
commit 8afc762bfe
5 changed files with 252 additions and 174 deletions

View File

@@ -135,7 +135,7 @@ new class extends Component {
{{ __('Bearbeiten') }}
</flux:button>
<flux:modal.trigger :name="'remove-meetup-' . $meetup->id">
<flux:button size="xs" variant="danger" icon="trash"></flux:button>
<flux:button class="cursor-pointer" size="xs" variant="danger" icon="trash"></flux:button>
</flux:modal.trigger>
</div>
@@ -154,10 +154,10 @@ new class extends Component {
<flux:spacer />
<flux:modal.close>
<flux:button variant="ghost">{{ __('Abbrechen') }}</flux:button>
<flux:button class="cursor-pointer" variant="ghost">{{ __('Abbrechen') }}</flux:button>
</flux:modal.close>
<flux:button wire:click="removeMeetup({{ $meetup->id }})" variant="danger">{{ __('Entfernen') }}</flux:button>
<flux:button class="cursor-pointer" wire:click="removeMeetup({{ $meetup->id }})" variant="danger">{{ __('Entfernen') }}</flux:button>
</div>
</div>
</flux:modal>

View File

@@ -152,8 +152,8 @@ new class extends Component {
variant="filled" icon="pencil">
{{ __('Bearbeiten') }}
</flux:button>
<flux:button :href="route_with_country('meetups.events.create', ['meetup' => $meetup])" size="xs" variant="ghost" icon="calendar">
{{ __('Events') }}
<flux:button :href="route_with_country('meetups.events.create', ['meetup' => $meetup])" size="xs" variant="filled" icon="calendar">
{{ __('Neues Event erstellen') }}
</flux:button>
</flux:table.cell>
</flux:table.row>