Skip to content

Commit 659e823

Browse files
committed
[*] update normally
1 parent b9ffd06 commit 659e823

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

tr-helper/src/tr.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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", "将麦克风音频转换为单声道"),

wayshot/src/logic/tr.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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", "将麦克风音频转换为单声道"),

wayshot/ui/panel/setting/components/recorder.slint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 => {

0 commit comments

Comments
 (0)