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

This commit is contained in:
camperbot
2023-04-06 22:25:43 +05:30
committed by GitHub
parent 2076e41b2d
commit 6ce3e5d4c5
536 changed files with 1111 additions and 1057 deletions

View File

@@ -11,7 +11,7 @@ dashedName: comparisons-with-the-logical-and-operator
一度に複数の条件をテストしなければならない場合があります。 <dfn>論理積</dfn>演算子 (`&&`) は、左側と右側の<dfn>オペランド</dfn>の両方が true である場合にのみ `true` を返します。
if ステートメントを別の if ステートメントにネストしても、同じ効果が得られます。
The same effect could be achieved by nesting an `if` statement inside another `if`.
```js
if (num > 5) {
@@ -22,7 +22,7 @@ if (num > 5) {
return "No";
```
上の例は、`num``5` より大きく `10` より小さい場合にのみ `Yes` を返します。 同じロジックを次のように記述することができます。
This code will return `Yes` if `num` is greater than `5` and less than `10`. The same logic can be written with the <dfn>logical and</dfn> operator.
```js
if (num > 5 && num < 10) {

View File

@@ -13,7 +13,7 @@ dashedName: comparisons-with-the-logical-or-operator
<dfn>論理和</dfn>演算子は 2 本のパイプ記号 (`||`) で構成されます。 この記号のキーは通常、バックスペースキーと Enter キーの間近くにあります。
次のようなパターンは以前のチャレンジでも登場しています。
The pattern below should look familiar from prior waypoints.
```js
if (num > 10) {
@@ -25,7 +25,7 @@ if (num < 5) {
return "Yes";
```
上の例は、`num` `5` `10` の間 (5 と 10 を含む) の場合のみ、`Yes` を返します。 同じロジックを次のように記述することができます。
This code will return `Yes` if `num` is between `5` and `10` (`5` and `10` included). The same logic can be written with the <dfn>logical or</dfn> operator.
```js
if (num > 10 || num < 5) {