0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-04-05 14:47:27 +09:00

Show nothing when nothing playing

This commit is contained in:
yude 2021-05-25 16:47:04 +09:00
parent 6caa13923f
commit e2db2de68b
Signed by: yude
GPG Key ID: EB0FE5D925C4A968
3 changed files with 3 additions and 5 deletions

View File

@ -2,6 +2,5 @@
"footer": "This page is licensed under the MIT License.", "footer": "This page is licensed under the MIT License.",
"source": "Source code", "source": "Source code",
"tos": "yude.jp Terms of Service", "tos": "yude.jp Terms of Service",
"yes_playing": "Playing {{playing}}", "yes_playing": "Playing {{playing}}"
"no_playing": "Nothing playing"
} }

View File

@ -2,6 +2,5 @@
"footer": "このページは MIT License の下でライセンスされています。", "footer": "このページは MIT License の下でライセンスされています。",
"source": "ソースコード", "source": "ソースコード",
"tos": "yude.jp サービス利用規約", "tos": "yude.jp サービス利用規約",
"yes_playing": "{{playing}} をプレイ中", "yes_playing": "{{playing}} をプレイ中"
"no_playing": "何もプレイしていません"
} }

View File

@ -20,7 +20,7 @@ const App = () => {
if (playing){ if (playing){
return <p>{yes_playing}</p> return <p>{yes_playing}</p>
}else{ }else{
return <p>{no_playing}</p> return <p>&#32;</p>
} }
}; };