fix: restore lost i18n fixes (#53347)

This commit is contained in:
Mama Naomi
2024-01-25 02:42:29 -08:00
committed by GitHub
parent 0363ba56cb
commit 37f90d6362
47 changed files with 2591 additions and 421 deletions

View File

@@ -74,16 +74,16 @@ assert(code.match(/testObj\.\w+/g).length > 1);
## --seed-contents--
```js
// Налаштування
// Setup
const testObj = {
hat: "ballcap",
shirt: "jersey",
shoes: "cleats"
};
// Змініть код лише під цим рядком
const hatValue = testObj; // Змініть цей рядок
const shirtValue = testObj; // Змініть цей рядок
// Only change code below this line
const hatValue = testObj; // Change this line
const shirtValue = testObj; // Change this line
```
# --solutions--