fix: wrong internationalization names after refactor
This commit is contained in:
@@ -55,7 +55,7 @@
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>{t.form.addNewItem}</CardTitle>
|
||||
<CardTitle>{t.form.addNewWish}</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<form
|
||||
@@ -71,7 +71,7 @@
|
||||
>
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||
<div class="space-y-2 md:col-span-2">
|
||||
<Label for="title">{t.form.itemName} *</Label>
|
||||
<Label for="title">{t.form.wishName} ({t.form.required})</Label>
|
||||
<Input id="title" name="title" required placeholder="e.g., Blue Headphones" />
|
||||
</div>
|
||||
|
||||
@@ -137,7 +137,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Button type="submit" class="w-full md:w-auto">{t.wishlist.addItem}</Button>
|
||||
<Button type="submit" class="w-full md:w-auto">{t.wishlist.addWish}</Button>
|
||||
</form>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>{t.wishlist.editItem}</CardTitle>
|
||||
<CardTitle>{t.wishlist.editWish}</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<form
|
||||
@@ -80,7 +80,7 @@
|
||||
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||
<div class="space-y-2 md:col-span-2">
|
||||
<Label for="title">{t.form.itemName} *</Label>
|
||||
<Label for="title">{t.form.wishName} ({t.form.required})</Label>
|
||||
<Input id="title" name="title" required value={item.title} placeholder="e.g., Blue Headphones" />
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user