summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortransifex-bot <localization@puppet.com>2017-09-06 06:07:00 +1000
committertransifex-bot <localization@puppet.com>2017-09-06 06:07:00 +1000
commitdf8ea25b4f18c8ec15b4b8d98e8f7d22a6890190 (patch)
treea63b8e1f085e6d6aa39faa627c996f1f9c64808e
parent7af5e5ba11f3456dcebb9b0648b4819cdb7e432e (diff)
Updating translations for readmes/README_ja_JP.md
-rw-r--r--readmes/README_ja_JP.md28
1 files changed, 26 insertions, 2 deletions
diff --git a/readmes/README_ja_JP.md b/readmes/README_ja_JP.md
index 57fcebd..5fbaf78 100644
--- a/readmes/README_ja_JP.md
+++ b/readmes/README_ja_JP.md
@@ -485,9 +485,9 @@ base64('decode', 'aHR0cHM6Ly9wdXBwZXRsYWJzLmNvbQ==', 'urlsafe')
* `false`、'f'、'0'、'n'、'no'を0に変換します。
* `true`、't'、'1'、'y'、'yes'を1に変換します。
- 引数: インプットとして、単一のブーリアンまたは文字列。
+引数: インプットとして、単一のブーリアンまたは文字列。
- *タイプ*: 右辺値
+*タイプ*: 右辺値
#### `bool2str`
@@ -1754,6 +1754,30 @@ OS Xバージョン10.7以上で使用されるソルト付きSHA512パスワー
*タイプ*: 右辺値
+#### `to_json`
+
+Converts input into a JSON String.
+
+For example, `{ "key" => "value" }` becomes `{"key":"value"}`.
+
+*タイプ*: 右辺値
+
+#### `to_json_pretty`
+
+Converts input into a pretty JSON String.
+
+For example, `{ "key" => "value" }` becomes `{\n \"key\": \"value\"\n}`.
+
+*タイプ*: 右辺値
+
+#### `to_yaml`
+
+Converts input into a YAML String.
+
+For example, `{ "key" => "value" }` becomes `"---\nkey: value\n"`.
+
+*タイプ*: 右辺値
+
#### `try_get_value`
**非推奨:** `dig()`に置き換えられました。