1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-08-01 17:38:33 +00:00

fix(i18n): use correct base capitalization style (#7975)

Update several strings according to https://forgejo.org/docs/next/contributor/localization-english/#capitalization

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7975
Reviewed-by: 0ko <0ko@noreply.codeberg.org>
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: kramo <git@kramo.page>
Co-committed-by: kramo <git@kramo.page>
This commit is contained in:
kramo 2025-05-28 13:22:10 +02:00 committed by Gusted
parent e2278e5a38
commit a9f9e7c013
2 changed files with 46 additions and 46 deletions

View file

@ -40,7 +40,7 @@ test('WebAuthn register & login flow', async ({browser, request}, workerInfo) =>
// Logout.
await expect(async () => {
await page.locator('div[aria-label="Profile and settings…"]').click();
await page.getByText('Sign Out').click();
await page.getByText('Sign out').click();
}).toPass();
await page.waitForURL(`${workerInfo.project.use.baseURL}/`);