Skip to content

Commit 015e587

Browse files
committed
add a space symbol between text and ellipsis
Signed-off-by: Maksim Sukharev <[email protected]>
1 parent 6510aa5 commit 015e587

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/components/NewMessageForm/NewMessageFormTypingIndicator.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default {
8989
9090
indicatorMessage() {
9191
if (this.isGuest) {
92-
return t('spreed', 'Someone is typing…')
92+
return t('spreed', 'Someone is typing ')
9393
}
9494
9595
if (!this.typingParticipants) {
@@ -99,22 +99,22 @@ export default {
9999
const [user1, user2, user3] = this.prepareNamesList()
100100
101101
if (this.typingParticipants.length === 1) {
102-
return t('spreed', '{user1} is typing…',
102+
return t('spreed', '{user1} is typing ',
103103
{ user1 }, undefined, { escape: false })
104104
}
105105
106106
if (this.typingParticipants.length === 2) {
107-
return t('spreed', '{user1} and {user2} are typing…',
107+
return t('spreed', '{user1} and {user2} are typing ',
108108
{ user1, user2 }, undefined, { escape: false })
109109
}
110110
111111
if (this.typingParticipants.length === 3) {
112-
return t('spreed', '{user1}, {user2} and {user3} are typing…',
112+
return t('spreed', '{user1}, {user2} and {user3} are typing ',
113113
{ user1, user2, user3 }, undefined, { escape: false })
114114
}
115115
116-
return n('spreed', '{user1}, {user2}, {user3} and %n other are typing…',
117-
'{user1}, {user2}, {user3} and %n others are typing…',
116+
return n('spreed', '{user1}, {user2}, {user3} and %n other are typing ',
117+
'{user1}, {user2}, {user3} and %n others are typing ',
118118
this.hiddenParticipantsCount, { user1, user2, user3 }, { escape: false })
119119
},
120120
},

src/components/SettingsDialog/SettingsDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
@click="selectAttachmentFolder" />
4545
<NcButton type="primary"
4646
@click="selectAttachmentFolder">
47-
{{ t('spreed', 'Browse…') }}
47+
{{ t('spreed', 'Browse …') }}
4848
</NcButton>
4949
</div>
5050
</NcAppSettingsSection>

0 commit comments

Comments
 (0)