Skip to content
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

#2374 Fix typos in various places #2376

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

SebinSong
Copy link
Collaborator

closes #2374

[ Some screenshots for the fixes ]

copy-fix for payment table

@SebinSong SebinSong self-assigned this Oct 14, 2024
Copy link

cypress bot commented Oct 14, 2024

group-income    Run #3262

Run Properties:  status check passed Passed #3262  •  git commit 8bcf725e62 ℹ️: Merge 34b4294f8d2f972c5bf0f0402b65f4e56d5ba527 into b64ecda81d1b1c9574b1b4490945...
Project group-income
Run status status check passed Passed #3262
Run duration 09m 30s
Commit git commit 8bcf725e62 ℹ️: Merge 34b4294f8d2f972c5bf0f0402b65f4e56d5ba527 into b64ecda81d1b1c9574b1b4490945...
Committer Sebin Song
View all properties for this run ↗︎

Test results
Tests that failed  Failures 0
Tests that were flaky  Flaky 0
Tests that did not run due to a developer annotating a test with .skip  Pending 10
Tests that did not run due to a failure in a mocha hook  Skipped 0
Tests that passed  Passing 111

@SebinSong
Copy link
Collaborator Author

@taoeffect @dotmacro

I found another place for a typo so made a fix for that too:

data-test='channelMembers'
) {numMembers} members
)
i18n(v-if='summary.numberOfMembers === 1' :args='{ num: summary.numberOfMembers }') {num} member
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this case, there's no need for the {num} variable in the string or the :args :), you know it's 1

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, it's a good point.

const args = { amt: this.withGroupCurrency(amount), count: membersLen }

return membersLen === 1
? L('{amt} in total, to {count} member', args)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here, can remove {count}

Comment on lines 160 to 164
? L('You and {count} other member are contributing.', { count })
: L('You and {count} other members are contributing.', { count })
: isSingularCount
? L('{count} member is contributing.', { count })
: L('{count} members are contributing.', { count })
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here too

Copy link
Member

@taoeffect taoeffect left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work, and great job noticing other areas! I'm requesting that we don't include the variable for singular as it will hopefully clear things up a bit for the translators

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fix minor typos
2 participants