-
-
Notifications
You must be signed in to change notification settings - Fork 825
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
(dev/core#4485) Replace Event Total by Total Amount #27024
Conversation
Thank you for contributing to CiviCRM! ❤️ We will need to test and review the PR. 👷 Introduction for new contributors
Quick links for reviewers |
@@ -108,7 +108,7 @@ | |||
{if $context EQ "Contribution"} | |||
{ts}Contribution Total{/ts}: | |||
{elseif $context EQ "Event"} | |||
{ts}Event Total{/ts}: | |||
{ts}Total Amount{/ts}: |
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.
Could just let this use the else below
This makes sense to me. |
Actually, thinking about this for a minute, why do we say Total Amount instead of just Total, like every receipt ever does? |
It's just under "Tax Total", so it would normally make sense, except that CiviCRM doesn't display- multiple taxes, or rarely, and even if it did, there are rarely more than two taxes, so nobody cares about a tax total, just a total for the payment. We tend to do stuff like this, using the taxcalculator ext: So I would also strongly support:
|
Should we merge this PR?
We also have other strings like Contribution Total, etc that need renaming as well. We might to take this opportunity to look at all other strings as well. Thanks! |
@yashodha yep ok, I guess the renaming is a larger conversation, and this is a quickfix. Thanks! |
Overview
Replace Event Total by Total Amount
Before
Event Total doesn't sound right.
After
Keep the verbiage standardized.