feat: localize journal components to Chinese

This commit is contained in:
2026-07-07 23:51:35 +08:00
parent 9a41f541e9
commit 1ef41f04fc
12 changed files with 58 additions and 64 deletions
+2 -2
View File
@@ -45,7 +45,7 @@ export const StreamMessageCard: Component<{
<button
onClick={() => revertLatest()}
class="text-xs text-gray-300 hover:text-red-500 ml-auto px-0.5 leading-none"
title="Revert this message"
title="撤回此消息"
>
×
</button>
@@ -87,7 +87,7 @@ const RevealedCard: Component<{ msg: StreamMessageType }> = (props) => {
return (
<div class="bg-gray-100 rounded-lg border border-gray-200 opacity-50 px-2.5 py-1.5">
<span class="text-xs text-gray-400 line-through">
{props.msg.sender} reverted
{props.msg.sender}
</span>
</div>
);