Skip to content

Commit

Permalink
Merge pull request #49 from Nogal/ternary_typo
Browse files Browse the repository at this point in the history
Corrected typo in ternary translation
  • Loading branch information
bshikin authored Sep 22, 2023
2 parents e86d932 + 49793de commit 95f9c86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions known_translations/godot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ translations:
source: |
variable = {condition} ? (true_statement) : (false_statement);
target: |
variable = {translated_true_statement} if {translated_condition} else "{translated_false_statement}
variable = {translated_true_statement} if {translated_condition} else {translated_false_statement}
# ---------------------------------------------------------------------------------------------------------------------
- title: Start() Function
source: |
Expand Down Expand Up @@ -69,4 +69,4 @@ translations:
{
{translated_function_body}
}
# ---------------------------------------------------------------------------------------------------------------------
# ---------------------------------------------------------------------------------------------------------------------

0 comments on commit 95f9c86

Please sign in to comment.