summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/compose-notification.ts
diff options
context:
space:
mode:
authorgutfuckllc <40531868+gutfuckllc@users.noreply.github.com>2018-08-06 15:53:06 -0400
committergutfuckllc <40531868+gutfuckllc@users.noreply.github.com>2018-08-06 15:53:06 -0400
commita303d52990a9796bcdec8c7479e709d9e884dd87 (patch)
treeaf02c9573401be385567a929b5f2da9be647dfbf /src/client/app/common/scripts/compose-notification.ts
parentMerge remote-tracking branch 'upstream/master' into devel (diff)
downloadsharkey-a303d52990a9796bcdec8c7479e709d9e884dd87.tar.gz
sharkey-a303d52990a9796bcdec8c7479e709d9e884dd87.tar.bz2
sharkey-a303d52990a9796bcdec8c7479e709d9e884dd87.zip
Fix typo
Diffstat (limited to 'src/client/app/common/scripts/compose-notification.ts')
-rw-r--r--src/client/app/common/scripts/compose-notification.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/scripts/compose-notification.ts b/src/client/app/common/scripts/compose-notification.ts
index 4fb0610fd7..f42af94370 100644
--- a/src/client/app/common/scripts/compose-notification.ts
+++ b/src/client/app/common/scripts/compose-notification.ts
@@ -38,7 +38,7 @@ export default function(type, data): Notification {
switch (data.type) {
case 'mention':
return {
- title: '%i18n:common.notification.notified-by%'.split("{}")[0] + `${getUserName(data.user)}さんから:` + '%i18n:common.notification.notified-by%'.split("{}")[1],
+ title: '%i18n:common.notification.notified-by%'.split("{}")[0] + `${getUserName(data.user)}:` + '%i18n:common.notification.notified-by%'.split("{}")[1],
body: getNoteSummary(data),
icon: data.user.avatarUrl
};