From 555897dbb33544166d0223cae193cf410e1383a1 Mon Sep 17 00:00:00 2001 From: Yutao Meng Date: Fri, 4 Aug 2023 15:35:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E2=80=9C=E5=85=81?= =?UTF-8?q?=E8=AE=B8=E9=BC=A0=E6=A0=87=E6=BB=9A=E8=BD=AE=E7=BC=A9=E6=94=BE?= =?UTF-8?q?=E6=96=87=E6=9C=AC=E5=A4=A7=E5=B0=8F=E2=80=9D=E7=BF=BB=E8=AF=91?= =?UTF-8?q?=E5=86=8D=E6=AC=A1=E4=B8=A2=E5=A4=B1=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: https://github.com/linuxdeepin/developer-center/issues/3848 Log: 修复“允许鼠标滚轮缩放文本大小”翻译再次丢失的问题 Signed-off-by: Yutao Meng --- src/settings/settings_translation.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/settings/settings_translation.cpp b/src/settings/settings_translation.cpp index fd5332e26..60ec649e4 100644 --- a/src/settings/settings_translation.cpp +++ b/src/settings/settings_translation.cpp @@ -24,6 +24,8 @@ void GenerateSettingTranslate() Q_UNUSED(advanced_scroll_scroll_on_keyText); auto advanced_scroll_scroll_on_outputText = QObject::tr("Scroll on output"); Q_UNUSED(advanced_scroll_scroll_on_outputText); + auto advanced_scroll_zoom_on_ctrl_scrollwheel = QObject::tr("Allow Ctrl+scrollwheel to zoom text size"); + Q_UNUSED(advanced_scroll_zoom_on_ctrl_scrollwheel); auto advanced_window_auto_hide_raytheon_windowText = QObject::tr("Hide Quake window after losing focus"); Q_UNUSED(advanced_window_auto_hide_raytheon_windowText); auto advanced_window_quake_window_durationText = QObject::tr("Quake window animation speed");