Add Japanese translations for random node (#658)

This commit is contained in:
Kazuhito Yokoi
2020-06-17 17:02:47 +09:00
committed by GitHub
parent 34fc79ddb6
commit 7cec44d353
5 changed files with 50 additions and 18 deletions

View File

@@ -0,0 +1,7 @@
<script type="text/html" data-help-name="random">
<p>最小値と最大値との間の乱数を生成します</p>
<p>整数値を返すように設定した場合は乱数には最大値と最小値の両方が<i>含まれます</i>
<code>min <= n <= max</code></p>
<p>浮動小数点値を返すように設定した場合乱数は最小値から最大値未満の値を含み最大値は含まれません
<code>min <= n < max</code></p>
</script>