Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
use propper ellipsis character
Browse files Browse the repository at this point in the history
  • Loading branch information
bwindels committed Nov 14, 2018
1 parent 36bc83c commit 3d42ea1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/WhoIsTyping.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,16 @@ module.exports = {
if (whoIsTyping.length == 0) {
return '';
} else if (whoIsTyping.length == 1) {
return _t('%(displayName)s is typing ...', {displayName: whoIsTyping[0].name});
return _t('%(displayName)s is typing ', {displayName: whoIsTyping[0].name});
}
const names = whoIsTyping.map(function(m) {
return m.name;
});
if (othersCount>=1) {
return _t('%(names)s and %(count)s others are typing ...', {names: names.slice(0, limit - 1).join(', '), count: othersCount});
return _t('%(names)s and %(count)s others are typing ', {names: names.slice(0, limit - 1).join(', '), count: othersCount});
} else {
const lastPerson = names.pop();
return _t('%(names)s and %(lastPerson)s are typing ...', {names: names.join(', '), lastPerson: lastPerson});
return _t('%(names)s and %(lastPerson)s are typing ', {names: names.join(', '), lastPerson: lastPerson});
}
},
};
8 changes: 4 additions & 4 deletions src/i18n/strings/en_EN.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,10 @@
"%(widgetName)s widget modified by %(senderName)s": "%(widgetName)s widget modified by %(senderName)s",
"%(widgetName)s widget added by %(senderName)s": "%(widgetName)s widget added by %(senderName)s",
"%(widgetName)s widget removed by %(senderName)s": "%(widgetName)s widget removed by %(senderName)s",
"%(displayName)s is typing ...": "%(displayName)s is typing ...",
"%(names)s and %(count)s others are typing ...|other": "%(names)s and %(count)s others are typing ...",
"%(names)s and %(count)s others are typing ...|one": "%(names)s and one other is typing ...",
"%(names)s and %(lastPerson)s are typing ...": "%(names)s and %(lastPerson)s are typing ...",
"%(displayName)s is typing ": "%(displayName)s is typing ",
"%(names)s and %(count)s others are typing |other": "%(names)s and %(count)s others are typing ",
"%(names)s and %(count)s others are typing |one": "%(names)s and one other is typing ",
"%(names)s and %(lastPerson)s are typing ": "%(names)s and %(lastPerson)s are typing ",
"Failure to create room": "Failure to create room",
"Server may be unavailable, overloaded, or you hit a bug.": "Server may be unavailable, overloaded, or you hit a bug.",
"Send anyway": "Send anyway",
Expand Down

0 comments on commit 3d42ea1

Please sign in to comment.