diff --git a/src/views/Game/GameLogModal.tsx b/src/views/Game/GameLogModal.tsx index 41b09d958a..a9ff0e50f6 100644 --- a/src/views/Game/GameLogModal.tsx +++ b/src/views/Game/GameLogModal.tsx @@ -17,7 +17,7 @@ import * as React from "react"; import * as moment from "moment"; -import { _ } from "translate"; +import { _, pgettext } from "translate"; import { openModal, Modal } from "Modal"; import { Player } from "Player"; import { socket } from "sockets"; @@ -123,11 +123,9 @@ export class GameLogModal extends Modal + {data.color ? (data.color === "black" ? " (black)" : " (white)") : ""} , ); } else if (k === "winner") { @@ -215,6 +214,16 @@ export function LogData({ {data[k] ? "stones marked dead" : "stones marked alive"} , ); + } else if (k === "needs_sealing") { + // this only comes with autoscore updates + ret.push( + + {pgettext( + "This is telling a moderator that they are looking at an update from the auto scorer", + "auto-scorer update", + )} + , + ); } else if (HIDDEN_LOG_FIELDS.includes(k)) { // skip } else {