diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2021-08-27 21:05:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-27 21:05:47 +0200 |
commit | 4e67e9bca63b6539820a4e09d58ffc192146da19 (patch) | |
tree | 3cb66666c2d69e08e5c117c5ffa0b274b8693cb9 /doc/translations/fr.po | |
parent | 701195937de2600a8c32a823ebffcf657ec7b0dd (diff) | |
parent | 4fae7ae9dc8e115c13c70c2762715cf3e4623a06 (diff) |
Merge pull request #52090 from balloonpopper/bug52060
Correct null and boolean values being capitalised by the str command
Diffstat (limited to 'doc/translations/fr.po')
-rw-r--r-- | doc/translations/fr.po | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/translations/fr.po b/doc/translations/fr.po index 2d9b1db565..e0aef69af3 100644 --- a/doc/translations/fr.po +++ b/doc/translations/fr.po @@ -10233,7 +10233,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 "" @@ -33414,8 +33414,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" |