Skip to content

Commit 7d9c7a8

Browse files
zomarsemrysalPeerRichCarinaWolliThyMinimalDev
authored
feat: Add Hungarian support (#14484)
* add: Hungarian support * Update next-i18next.config.js * Fix test --------- Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com> Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Hariom <hariombalhara@gmail.com>
1 parent 48e7efc commit 7d9c7a8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/web/playwright/locale.e2e.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -496,11 +496,10 @@ test.describe("authorized user sees changed translations (de->pt-BR) [locale1]",
496496

497497
await test.step("should change the language and show Brazil-Portuguese translations", async () => {
498498
await page.goto("/settings/my-account/general");
499-
500499
await page.waitForLoadState("domcontentloaded");
501500

502501
await page.locator(".bg-default > div > div:nth-child(2)").first().click();
503-
await page.locator("#react-select-2-option-14").click();
502+
await page.locator("text=Português (Brasil)").click();
504503

505504
await page.getByRole("button", { name: "Aktualisieren" }).click();
506505

packages/config/next-i18next.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ const config = {
1414
"es",
1515
"fr",
1616
"he",
17+
"hu",
1718
"it",
1819
"ja",
20+
"km",
1921
"ko",
2022
"nl",
2123
"no",
@@ -31,7 +33,6 @@ const config = {
3133
"vi",
3234
"zh-CN",
3335
"zh-TW",
34-
"km",
3536
],
3637
},
3738
fallbackLng: {

0 commit comments

Comments
 (0)