Skip to content

Commit 6cceee0

Browse files
committed
Fix a translation issue on the "Set the write mode" screen. #689
1 parent c87b096 commit 6cceee0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/renderer/components/SetWriteMode.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ const SetWriteMode = (props: Props) => {
7878
onChange={(v) => setWriteMode(v as WriteModeType)}
7979
>
8080
<HStack spacing={10}>
81-
<Radio value={'append'}>追加</Radio>
82-
<Radio value={'overwrite'}>覆盖</Radio>
81+
<Radio value={'append'}>{lang.append}</Radio>
82+
<Radio value={'overwrite'}>{lang.overwrite}</Radio>
8383
</HStack>
8484
</RadioGroup>
8585

0 commit comments

Comments
 (0)