wip #332
This commit is contained in:
parent
f8505562ac
commit
49296aac38
|
@ -19,6 +19,8 @@ common:
|
|||
surprise: "Wow"
|
||||
congrats: "Congrats!"
|
||||
|
||||
update-available: "Misskeyの新しいバージョンがあります({newer}。現在{current}を利用中)。\nページを再度読み込みすると更新が適用されます。"
|
||||
|
||||
tags:
|
||||
mk-messaging-form:
|
||||
placeholder: "Enter message here"
|
||||
|
|
|
@ -19,6 +19,8 @@ common:
|
|||
surprise: "わお"
|
||||
congrats: "おめでとう"
|
||||
|
||||
update-available: "Misskeyの新しいバージョンがあります({newer}。現在{current}を利用中)。\nページを再度読み込みすると更新が適用されます。"
|
||||
|
||||
tags:
|
||||
mk-messaging-form:
|
||||
placeholder: "ここにメッセージを入力"
|
||||
|
|
|
@ -7,7 +7,7 @@ export default function() {
|
|||
res.json().then(meta => {
|
||||
if (meta.version != VERSION) {
|
||||
localStorage.setItem('should-refresh', 'true');
|
||||
alert(`Misskeyの新しいバージョンがあります(${meta.version}。現在${VERSION}を利用中)。\nページを再度読み込みすると更新が適用されます。`);
|
||||
alert('%i18n:common:update-available%'.replace('{newer}', meta.version).replace('{current}', VERSION));
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue