summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-04-02 03:35:34 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-04-02 03:35:34 +0900
commit23a32391907fa5dc5416a5b78982a011e95c2a1a (patch)
tree1d2ba0d25252cd2a7c1d9058804adbc9ee9c9529 /src/web/app/common/scripts
parentwip #332 (diff)
downloadmisskey-23a32391907fa5dc5416a5b78982a011e95c2a1a.tar.gz
misskey-23a32391907fa5dc5416a5b78982a011e95c2a1a.tar.bz2
misskey-23a32391907fa5dc5416a5b78982a011e95c2a1a.zip
typo
Diffstat (limited to 'src/web/app/common/scripts')
-rw-r--r--src/web/app/common/scripts/check-for-update.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/check-for-update.js b/src/web/app/common/scripts/check-for-update.js
index b004d33f89..7cb7839d29 100644
--- a/src/web/app/common/scripts/check-for-update.js
+++ b/src/web/app/common/scripts/check-for-update.js
@@ -7,7 +7,7 @@ export default function() {
res.json().then(meta => {
if (meta.version != VERSION) {
localStorage.setItem('should-refresh', 'true');
- alert('%i18n:common:update-available%'.replace('{newer}', meta.version).replace('{current}', VERSION));
+ alert('%i18n:common.update-available%'.replace('{newer}', meta.version).replace('{current}', VERSION));
}
});
});