@@ -105,43 +105,43 @@ export function InterfaceSettigsPanel<V extends InterfaceFormValues>(props: { fo
105105 < ColorSchemeToggle />
106106 </ Grid . Col >
107107 < Grid . Col span = { 1 } >
108- Font
108+ 字体
109109 </ Grid . Col >
110110 < Grid . Col span = { 4 } >
111111 < NativeSelect data = { systemFonts } value = { style . font } onChange = { ( e ) => { setFont ( e . currentTarget . value ) ; } } />
112112 </ Grid . Col >
113113 < Grid . Col span = { 2 } >
114- Text color
114+ 字体颜色
115115 </ Grid . Col >
116116 < Grid . Col span = { 1 } >
117117 < ColorChooser value = { style [ theme . colorScheme ] . color ?? defaultColor } onChange = { setTextColor } />
118118 </ Grid . Col >
119119 < Grid . Col span = { 2 } >
120- Background
120+ 背景颜色
121121 </ Grid . Col >
122122 < Grid . Col span = { 1 } >
123123 < ColorChooser value = { style [ theme . colorScheme ] . backgroundColor ?? defaultBg } onChange = { setBgColor } />
124124 </ Grid . Col >
125125 < Grid . Col span = { 3 } >
126- Delete torrent data
126+ 删除数据文件
127127 </ Grid . Col >
128128 < Grid . Col span = { 3 } >
129129 < NativeSelect data = { DeleteTorrentDataOptions as unknown as string [ ] }
130130 value = { props . form . values . interface . deleteTorrentData }
131131 onChange = { ( e ) => { setFieldValue ( "interface.deleteTorrentData" , e . target . value ) ; } } />
132132 </ Grid . Col >
133133 < Grid . Col span = { 6 } >
134- < Checkbox label = "Skip add torrent dialog "
134+ < Checkbox label = "跳过添加种子对话框 "
135135 { ...props . form . getInputProps ( "interface.skipAddDialog" , { type : "checkbox" } ) } />
136136 </ Grid . Col >
137- < Grid . Col span = { 4 } > Max number of saved download directories </ Grid . Col >
137+ < Grid . Col span = { 4 } > 保存的下载目录的最大数量 </ Grid . Col >
138138 < Grid . Col span = { 2 } >
139139 < NumberInput
140140 min = { 1 }
141141 max = { 100 }
142142 { ...props . form . getInputProps ( "interface.numLastSaveDirs" ) } />
143143 </ Grid . Col >
144- < Grid . Col span = { 3 } > Progressbars </ Grid . Col >
144+ < Grid . Col span = { 3 } > 进度条样式 </ Grid . Col >
145145 < Grid . Col span = { 3 } >
146146 < NativeSelect data = { ProgressbarStyleOptions as unknown as string [ ] }
147147 value = { props . form . values . interface . progressbarStyle }
@@ -152,7 +152,7 @@ export function InterfaceSettigsPanel<V extends InterfaceFormValues>(props: { fo
152152 data = { props . form . values . interface . preconfiguredLabels }
153153 value = { props . form . values . interface . preconfiguredLabels }
154154 onChange = { setPreconfiguredLabels }
155- label = "Preconfigured labels "
155+ label = "预配置标签 "
156156 withinPortal
157157 searchable
158158 creatable
@@ -166,7 +166,7 @@ export function InterfaceSettigsPanel<V extends InterfaceFormValues>(props: { fo
166166 </ Grid . Col >
167167 < Grid . Col >
168168 < Textarea minRows = { 6 }
169- label = "Default tracker list "
169+ label = "默认Tracker列表(BT下载使用) "
170170 value = { props . form . values . interface . defaultTrackers . join ( "\n" ) }
171171 onChange = { ( e ) => {
172172 props . form . setFieldValue (
0 commit comments