Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-copy-session-localization.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@moonshot-ai/kimi-code": patch
---

Fix the copy-session action not being localized in the web UI.
2 changes: 1 addition & 1 deletion apps/kimi-web/src/components/SessionRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ defineExpose({ closeMenu, cancelArchive });
<!-- Kebab dropdown -->
<div ref="menuRef" v-if="menuOpen" class="menu" @click.stop>
<button class="menu-item copy-id" @click.stop="copySessionId">
{{ copiedId ? '已复制 ✓' : '复制 Session ID ⧉' }}
{{ copiedId ? `${t('header.copied')} ✓` : `${t('header.copySessionId')} ⧉` }}
</button>
<div class="menu-divider" />
<button class="menu-item" @click.stop="startRename">{{ t('sidebar.rename') }}</button>
Expand Down