Started to translate user facing strings into German.

This commit is contained in:
2026-02-14 12:41:27 +01:00
parent 1c02f28d25
commit d6f2d8c1f6
2 changed files with 22 additions and 13 deletions

View File

@ -9,10 +9,10 @@ defmodule BeetRoundServerWeb.BiddingLive.Index do
~H"""
<Layouts.app flash={@flash} current_scope={@current_scope}>
<.header>
Listing Biddings
{@page_title}
<:actions>
<.button variant="primary" navigate={~p"/biddings/new"}>
<.icon name="hero-plus" /> New Bidding
<.icon name="hero-plus" /> Neues Gebot
</.button>
</:actions>
</.header>
@ -41,7 +41,7 @@ defmodule BeetRoundServerWeb.BiddingLive.Index do
<:action :let={{id, bidding}}>
<.link
phx-click={JS.push("delete", value: %{id: bidding.id}) |> hide("##{id}")}
data-confirm="Are you sure?"
data-confirm="Gebot wirklich löschen?"
>
Delete
</.link>
@ -61,7 +61,7 @@ defmodule BeetRoundServerWeb.BiddingLive.Index do
{:ok,
socket
|> assign(:page_title, "Listing Biddings")
|> assign(:page_title, "Aktuelles Gebot")
|> assign(bidding_round: current_round)
|> stream(:biddings, list_biddings(socket.assigns.current_scope))}
end