chore(i18n,learn): processed translations (#46161)

This commit is contained in:
camperbot
2022-05-26 21:50:33 +05:30
committed by GitHub
parent 658b48ba62
commit a5c688652b
156 changed files with 8546 additions and 253 deletions

View File

@@ -13,7 +13,7 @@ dashedName: multiple-identical-options-in-switch-statements
```js
let result = "";
switch(val) {
switch (val) {
case 1:
case 2:
case 3:
@@ -127,7 +127,7 @@ sequentialSizes(1);
function sequentialSizes(val) {
let answer = "";
switch(val) {
switch (val) {
case 1:
case 2:
case 3:

View File

@@ -24,7 +24,7 @@ if (val === 1) {
可以被下面替代:
```js
switch(val) {
switch (val) {
case 1:
answer = "a";
break;
@@ -136,7 +136,7 @@ chainToSwitch(7);
function chainToSwitch(val) {
let answer = "";
switch(val) {
switch (val) {
case "bob":
answer = "Marley";
break;

View File

@@ -14,7 +14,7 @@ dashedName: selecting-from-many-options-with-switch-statements
这是 `switch` 语句的示例:
```js
switch(lowercaseLetter) {
switch (lowercaseLetter) {
case "a":
console.log("A");
break;
@@ -96,7 +96,7 @@ caseInSwitch(1);
function caseInSwitch(val) {
let answer = "";
switch(val) {
switch (val) {
case 1:
answer = "alpha";
break;