feat(app): sync product translations (#35856)
This commit is contained in:
parent
6cfe4bc34f
commit
77429f5982
42 changed files with 3791 additions and 84 deletions
|
|
@ -440,8 +440,10 @@ export function SessionTurn(
|
|||
>
|
||||
<div data-slot="session-turn-diffs-header">
|
||||
<span data-slot="session-turn-diffs-label">
|
||||
{edited()} {i18n.t("ui.sessionTurn.diffs.changed")}{" "}
|
||||
{i18n.t(edited() === 1 ? "ui.common.file.one" : "ui.common.file.other")}
|
||||
{i18n.t(
|
||||
edited() === 1 ? "ui.sessionTurn.diffs.changed.one" : "ui.sessionTurn.diffs.changed.other",
|
||||
{ count: String(edited()) },
|
||||
)}
|
||||
</span>
|
||||
<DiffChanges changes={diffs()} />
|
||||
<Show when={overflow() > 0}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue