Skip to content

Commit 549f95d

Browse files
committed
ShareToPm: Use period in user-facing "please choose recipients" error
messages_en.json has variants of this message with and without the period. Leave the one with the period, but remove the one without.
1 parent de25172 commit 549f95d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/sharing/ShareToPm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default class ShareToPm extends React.PureComponent<Props, State> {
7373
const { selectedRecipients } = this.state;
7474

7575
if (selectedRecipients.length === 0) {
76-
return <ZulipTextIntl text="Please choose recipients to share with" />;
76+
return <ZulipTextIntl text="Please choose recipients to share with." />;
7777
}
7878
const preview = [];
7979
selectedRecipients.forEach(userId => {

static/translations/messages_en.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
"Mentions": "Mentions",
9595
"Message": "Message",
9696
"Send": "Send",
97-
"Please choose recipients to share with": "Please choose recipients to share with",
9897
"No recent conversations": "No recent conversations",
9998
"No results": "No results",
10099
"No messages": "No messages",

0 commit comments

Comments
 (0)