feat(web): translate inventory and item-detail screen copy to English

This commit is contained in:
Bastian Wagner
2026-08-21 21:52:53 +02:00
parent 833074d9fe
commit ca3e072807
4 changed files with 32 additions and 32 deletions

View File

@@ -145,14 +145,14 @@ describe('InventoryPageComponent', () => {
expect(inventoryStore.selectItem).toHaveBeenCalledWith('item-blade');
});
it('shows the equipment overview with all seven slots and empty ones as Leer', async () => {
it('shows the equipment overview with all seven slots and empty ones as Empty', async () => {
const { fixture } = await setup();
const text = (fixture.nativeElement as HTMLElement).querySelector('.inventory-page__equipment-list')?.textContent ?? '';
expect(text).toContain('Weapon');
expect(text).toContain('Abgenutztes Kurzschwert');
expect(text).toContain('Head');
expect(text).toContain('Leer');
expect(text).toContain('Empty');
});
it('shows the effective stats summary from the equipment response', async () => {