Change wording from avatar to profile picture (#7015)
* Change wording from avatar to profile picture Signed-off-by: Aaron Raimist <aaron@raim.ist> * lint Signed-off-by: Aaron Raimist <aaron@raim.ist> * Update EventListSummary Signed-off-by: Aaron Raimist <aaron@raim.ist> * Delete MembershipEventListSummary.tsx Signed-off-by: Aaron Raimist <aaron@raim.ist> * delint * Update tests --------- Signed-off-by: Aaron Raimist <aaron@raim.ist> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
c153a4d388
commit
71fe08ea0f
13 changed files with 38 additions and 30 deletions
|
@ -104,7 +104,7 @@ export default class AppPermission extends React.Component<IProps, IState> {
|
|||
{_t("Any of the following data may be shared:")}
|
||||
<ul>
|
||||
<li>{_t("Your display name")}</li>
|
||||
<li>{_t("Your avatar URL")}</li>
|
||||
<li>{_t("Your profile picture URL")}</li>
|
||||
<li>{_t("Your user ID")}</li>
|
||||
<li>{_t("Your device ID")}</li>
|
||||
<li>{_t("Your theme")}</li>
|
||||
|
|
|
@ -324,8 +324,11 @@ export default class EventListSummary extends React.Component<
|
|||
case TransitionType.ChangedAvatar:
|
||||
res =
|
||||
userCount > 1
|
||||
? _t("%(severalUsers)schanged their avatar %(count)s times", { severalUsers: "", count })
|
||||
: _t("%(oneUser)schanged their avatar %(count)s times", { oneUser: "", count });
|
||||
? _t("%(severalUsers)schanged their profile picture %(count)s times", {
|
||||
severalUsers: "",
|
||||
count,
|
||||
})
|
||||
: _t("%(oneUser)schanged their profile picture %(count)s times", { oneUser: "", count });
|
||||
break;
|
||||
case TransitionType.NoChange:
|
||||
res =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue