From c6629900f3a4965ceca0f42e90648937bf51dfb5 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 12 Aug 2024 03:56:13 +0900 Subject: feat(frontend): improve play page styling --- frontend/app/components/SubmitStatusLabel.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'frontend/app/components/SubmitStatusLabel.tsx') diff --git a/frontend/app/components/SubmitStatusLabel.tsx b/frontend/app/components/SubmitStatusLabel.tsx index 2d4890d..e0ecc27 100644 --- a/frontend/app/components/SubmitStatusLabel.tsx +++ b/frontend/app/components/SubmitStatusLabel.tsx @@ -7,20 +7,20 @@ type Props = { export default function SubmitStatusLabel({ status }: Props) { switch (status) { case "waiting_submission": - return -; + return null; case "running": - return Running...; + return "実行中..."; case "success": - return Accepted; + return "成功"; case "wrong_answer": - return Wrong Answer; + return "テスト失敗"; case "timeout": - return Time Limit Exceeded; + return "時間切れ"; case "compile_error": - return Compile Error; + return "コンパイルエラー"; case "runtime_error": - return Runtime Error; + return "実行時エラー"; case "internal_error": - return Internal Error; + return "!内部エラー!"; } } -- cgit v1.2.3-70-g09d2