File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
ui/panel/setting/components Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -234,6 +234,9 @@ fn cn() -> &'static HashMap<&'static str, &'static str> {
234234 ( "Screen" , "屏幕" ) ,
235235 ( "Select Sources" , "选择源" ) ,
236236 ( "Source" , "源" ) ,
237+ ( "Denoising" , "正在降噪" ) ,
238+ ( "Disabled microphone denoise" , "禁用麦克风降噪" ) ,
239+ ( "Enabled microphone denoise" , "启用麦克风降噪" ) ,
237240 ( "create desktop speaker recorder failed" , "创建桌面扬声器录制器失败" ) ,
238241 ( "start desktop speaker recorder failed" , "启动桌面扬声器录制器失败" ) ,
239242 ( "Convert the microphone audio to mono" , "将麦克风音频转换为单声道" ) ,
Original file line number Diff line number Diff line change @@ -236,6 +236,9 @@ fn cn() -> &'static HashMap<&'static str, &'static str> {
236236 ( "Screen" , "屏幕" ) ,
237237 ( "Select Sources" , "选择源" ) ,
238238 ( "Source" , "源" ) ,
239+ ( "Denoising" , "正在降噪" ) ,
240+ ( "Disabled microphone denoise" , "禁用麦克风降噪" ) ,
241+ ( "Enabled microphone denoise" , "启用麦克风降噪" ) ,
239242 ( "create desktop speaker recorder failed" , "创建桌面扬声器录制器失败" ) ,
240243 ( "start desktop speaker recorder failed" , "启动桌面扬声器录制器失败" ) ,
241244 ( "Convert the microphone audio to mono" , "将麦克风音频转换为单声道" ) ,
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ export component Recorder inherits SettingDetail {
105105 SettingDetailInnerVbox {
106106 SettingDetailSwitch {
107107 icon : Icons.denoise-light;
108- text : self .checked ? Logic.tr("Enabled denoise" ) : Logic.tr("Disabled denoise" );
108+ text : self .checked ? Logic.tr("Enabled microphone denoise" ) : Logic.tr("Disabled microphone denoise" );
109109 checked : root .enable-denoise;
110110
111111 toggled => {
You can’t perform that action at this time.
0 commit comments