diff options
| author | gutfuckllc <40531868+gutfuckllc@users.noreply.github.com> | 2018-08-06 15:53:06 -0400 |
|---|---|---|
| committer | gutfuckllc <40531868+gutfuckllc@users.noreply.github.com> | 2018-08-06 15:53:06 -0400 |
| commit | a303d52990a9796bcdec8c7479e709d9e884dd87 (patch) | |
| tree | af02c9573401be385567a929b5f2da9be647dfbf /src/client/app/common/scripts/compose-notification.ts | |
| parent | Merge remote-tracking branch 'upstream/master' into devel (diff) | |
| download | sharkey-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.ts | 2 |
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 }; |