summaryrefslogtreecommitdiff
path: root/doc/translations/de.po
diff options
context:
space:
mode:
authorBalloonpopper <balloonpopper@git.com>2021-08-25 16:37:40 +1000
committerBalloonpopper <balloonpopper@git.com>2021-08-26 17:11:34 +1000
commit4fae7ae9dc8e115c13c70c2762715cf3e4623a06 (patch)
tree75c0b08e1537c4149e8bc07735d7d2b54ae830af /doc/translations/de.po
parentbb0122c9331e7cb56d358ab427329a267b387969 (diff)
Correct null and boolean values being capitalised by the str command
Diffstat (limited to 'doc/translations/de.po')
-rw-r--r--doc/translations/de.po6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/translations/de.po b/doc/translations/de.po
index 76eff809ff..83eabb14fe 100644
--- a/doc/translations/de.po
+++ b/doc/translations/de.po
@@ -10211,7 +10211,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 ""
@@ -33464,8 +33464,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"