-
Notifications
You must be signed in to change notification settings - Fork 37.8k
User-facing content and codebase doc fixups from transifex translator feedback #24367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User-facing content and codebase doc fixups from transifex translator feedback #24367
Conversation
(When to use cannot vs can not: https://writingexplained.org/cannot-or-can-not-difference. The cases when "can not" would be used are somewhat rare and not encountered here.) |
Based on this link: https://english.stackexchange.com/questions/4510/why-is-cannot-spelled-as-one-word both look okay to me. Overall I have no issues with the changes made in this PR. ACK 4982b32 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Concept ACK.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 4982b32
(TBH I'd noticed most of this diff before but thought they were too pedantic to propose changing. To my mind this is more to avoid spending further time on it.) |
Translators forms a good focus-group for Bitcoin Core UI testing :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 4982b32
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the current strings are better, and don't see rationale for changing them (exception ACK'd)
@@ -778,7 +778,7 @@ static bool CreateTransactionInternal( | |||
} | |||
else if ((unsigned int)nChangePosInOut > txNew.vout.size()) | |||
{ | |||
error = _("Change index out of range"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK
That leaves
|
4982b32
to
4874269
Compare
Updated per review feedback to leave the error example as-is in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -778,7 +778,7 @@ static bool CreateTransactionInternal( | |||
} | |||
else if ((unsigned int)nChangePosInOut > txNew.vout.size()) | |||
{ | |||
error = _("Change index out of range"); | |||
error = _("Transaction change output index out of range"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any value in translating this? I mean it is not possible to set the change position via the GUI, no?
Closes #24366.