From 23a32391907fa5dc5416a5b78982a011e95c2a1a Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 2 Apr 2017 03:35:34 +0900 Subject: [PATCH] typo --- src/web/app/common/scripts/check-for-update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/app/common/scripts/check-for-update.js b/src/web/app/common/scripts/check-for-update.js index b004d33f8..7cb7839d2 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)); } }); });