chore(i18n,curriculum): update translations (#43881)
This commit is contained in:
@@ -13,7 +13,7 @@ dashedName: use-the-strong-tag-to-make-text-bold
|
||||
|
||||
# --instructions--
|
||||
|
||||
給 `p` 標籤裏的 `Stanford University` 內容文本添加 `strong` 標籤。
|
||||
給 `p` 標籤裏的 `Stanford University` 內容文本外面添加 `strong` 標籤(不包括句號)。
|
||||
|
||||
# --hints--
|
||||
|
||||
|
@@ -35,6 +35,18 @@ assert($('input[type="radio"]').prop('checked'));
|
||||
assert($('input[type="checkbox"]').prop('checked'));
|
||||
```
|
||||
|
||||
不應該更改 `Indoor` 標籤的內部文本。
|
||||
|
||||
```js
|
||||
assert.equal(document.querySelector('label[for="indoor"]')?.innerText?.trim(), 'Indoor');
|
||||
```
|
||||
|
||||
不應該更改 `Loving` 標籤的內部文本。
|
||||
|
||||
```js
|
||||
assert.equal(document.querySelector('label[for="loving"]')?.innerText?.trim(), 'Loving');
|
||||
```
|
||||
|
||||
# --seed--
|
||||
|
||||
## --seed-contents--
|
||||
|
@@ -60,7 +60,7 @@ assert(
|
||||
);
|
||||
```
|
||||
|
||||
`footer` 元素的 `id` 屬性值應爲 `footer`。
|
||||
`a` 元素的文本應該是 “Jump to Bottom”。
|
||||
|
||||
```js
|
||||
assert(
|
||||
|
Reference in New Issue
Block a user