summaryrefslogtreecommitdiff
path: root/doc/translations/fa.po
diff options
context:
space:
mode:
authorMax Hilbrunner <mhilbrunner@users.noreply.github.com>2021-08-27 21:05:47 +0200
committerGitHub <noreply@github.com>2021-08-27 21:05:47 +0200
commit4e67e9bca63b6539820a4e09d58ffc192146da19 (patch)
tree3cb66666c2d69e08e5c117c5ffa0b274b8693cb9 /doc/translations/fa.po
parent701195937de2600a8c32a823ebffcf657ec7b0dd (diff)
parent4fae7ae9dc8e115c13c70c2762715cf3e4623a06 (diff)
Merge pull request #52090 from balloonpopper/bug52060
Correct null and boolean values being capitalised by the str command
Diffstat (limited to 'doc/translations/fa.po')
-rw-r--r--doc/translations/fa.po6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/translations/fa.po b/doc/translations/fa.po
index 2a185fadc5..7455b828de 100644
--- a/doc/translations/fa.po
+++ b/doc/translations/fa.po
@@ -9902,7 +9902,7 @@ msgid ""
"Cast a [String] value to a boolean value, this method will return "
"[code]false[/code] if [code]\"\"[/code] is passed in, and [code]true[/code] "
"for all non-empty strings.\n"
-"Examples: [code]bool(\"False\")[/code] returns [code]true[/code], "
+"Examples: [code]bool(\"false\")[/code] returns [code]true[/code], "
"[code]bool(\"\")[/code] returns [code]false[/code]."
msgstr ""
@@ -33053,8 +33053,8 @@ msgid ""
"code]:\n"
"[codeblock]\n"
"var n = Node2D.new()\n"
-"print(\"position\" in n) # Prints \"True\".\n"
-"print(\"other_property\" in n) # Prints \"False\".\n"
+"print(\"position\" in n) # Prints \"true\".\n"
+"print(\"other_property\" in n) # Prints \"false\".\n"
"[/codeblock]\n"
"The [code]in[/code] operator will evaluate to [code]true[/code] as long as "
"the key exists, even if the value is [code]null[/code].\n"