Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions web/package/agama-web-ui.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Feb 11 14:24:03 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

- Honor the language from the backend (gh#agama-project/agama#3142).

-------------------------------------------------------------------
Wed Feb 11 13:35:13 UTC 2026 - Ladislav Slezák <lslezak@suse.com>

Expand Down
4 changes: 2 additions & 2 deletions web/src/components/product/LicenseDialog.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ describe("LicenseDialog", () => {
await waitFor(() => {
expect(mockFetchLicense).toHaveBeenCalledWith(sle.license, mockUILanguage);
screen.getByText("El contenido de la licencia");
screen.getByText("This license is not available in Deutsch.");
screen.getByText("Diese Lizenz ist in Deutsch nicht verfügbar.");
});
});
});
Expand All @@ -119,7 +119,7 @@ describe("LicenseDialog", () => {
const { user } = installerRender(<LicenseDialog product={product} onClose={onCloseFn} />, {
withL10n: true,
});
const closeButton = screen.getByRole("button", { name: "Close" });
const closeButton = screen.getByRole("button", { name: "Schließen" });
await user.click(closeButton);
expect(onCloseFn).toHaveBeenCalled();
});
Expand Down
Loading