chore(i18n,curriculum): update translations (#43463)

This commit is contained in:
camperbot
2021-09-18 11:22:53 -07:00
committed by GitHub
parent 81d48b26ad
commit 15be1fe6bb
164 changed files with 1081 additions and 372 deletions

View File

@ -39,7 +39,7 @@ assert(
assert(code.match(/\:even/g));
```
应该仅用 jQuery 给元素添加 class。
应该仅用 jQuery 给标签添加 class。
```js
assert(

View File

@ -33,7 +33,7 @@ $("button").addClass("animated bounce");
assert($('button').hasClass('animated') && $('button').hasClass('bounce'));
```
应该仅用 jQuery 给元素添加 class。
应该仅用 jQuery 给标签添加 class。
```js
assert(!code.match(/class.*animated/g));