diff --git a/frontend/src/components/domain/unified-wizard/wizards/InventoryWizard.tsx b/frontend/src/components/domain/unified-wizard/wizards/InventoryWizard.tsx index 24cedb07..3aea15cc 100644 --- a/frontend/src/components/domain/unified-wizard/wizards/InventoryWizard.tsx +++ b/frontend/src/components/domain/unified-wizard/wizards/InventoryWizard.tsx @@ -179,14 +179,14 @@ const InventoryDetailsStep: React.FC = ({ data, onDataChange }) type="text" value={inventoryData.barcode} onChange={(e) => handleDataChange({ ...inventoryData, barcode: e.target.value })} - placeholder="Barcode/UPC/EAN" + placeholder={t('inventory.fields.barcodePlaceholder')} className="w-full px-3 py-2 border border-[var(--border-secondary)] rounded-lg focus:outline-none focus:ring-2 focus:ring-[var(--color-primary)] bg-[var(--bg-primary)] text-[var(--text-primary)]" />
@@ -224,25 +225,25 @@ const InventoryDetailsStep: React.FC = ({ data, onDataChange })
handleDataChange({ ...inventoryData, brand: e.target.value })} - placeholder="Brand name" + placeholder={t('inventory.fields.brandPlaceholder')} className="w-full px-3 py-2 border border-[var(--border-secondary)] rounded-lg focus:outline-none focus:ring-2 focus:ring-[var(--color-primary)] bg-[var(--bg-primary)] text-[var(--text-primary)]" />