fix(ukcc-plugin):解决无法通过控制面板搜索到通知插件内容的问题
This commit is contained in:
parent
bb018ac97a
commit
f5702fb82a
|
@ -24,11 +24,8 @@ include_directories(${Qt5Core_INCLUDE_DIRS} ${Qt5Widgets_INCLUDE_DIRS})
|
|||
include_directories(../libukui-notification/notification-settings)
|
||||
include_directories(../libukui-notification)
|
||||
|
||||
|
||||
file(GLOB TS_FILES "${PROJECT_SOURCE_DIR}/notification-ukcc-plugin/translations/*.ts")
|
||||
qt5_add_translation(QM_FILES ${TS_FILES})
|
||||
#set(QM_FILES ${QM_FILES} PARENT_SCOPE)
|
||||
add_custom_target(translations ALL DEPENDS ${QM_FILES})
|
||||
file(GLOB TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/*.ts)
|
||||
qt5_create_translation(QM_FILES ${CMAKE_CURRENT_SOURCE_DIR} ${TS_FILES})
|
||||
|
||||
add_library(notification-ukcc-plugin SHARED
|
||||
${notification-ukcc-plugin_LIB_SRCS}
|
||||
|
|
|
@ -145,7 +145,8 @@ void Notice::initUi(QWidget *widget)
|
|||
|
||||
m_noticeLabel = new TitleLabel(Noticewidget);
|
||||
m_notFazeLabel = new TitleLabel();
|
||||
m_notFazeLabel->setText(tr("NotFaze Mode"));
|
||||
//~ contents_path /Notice/Do not disturb mode Mode
|
||||
m_notFazeLabel->setText(tr("Do not disturb mode"));
|
||||
|
||||
LightLabel *notFazeLabel = new LightLabel(tr("(Notification banners, prompts will be hidden, and notification sounds will be muted)"));
|
||||
QFrame *distrubFrame = new QFrame(widget);
|
||||
|
@ -221,6 +222,7 @@ void Notice::initNotFaze(QFrame *frame)
|
|||
autoOpenFrame->setMaximumSize(16777215, 60);
|
||||
QHBoxLayout *autoLyt = new QHBoxLayout(autoOpenFrame);
|
||||
autoLyt->setContentsMargins(16, 0, 16, 0);
|
||||
//~ contents_path /Notice/Do not disturb mode Mode/Automatically turn on
|
||||
QLabel *autoOpenLabel = new QLabel(tr("Automatically turn on"), autoOpenFrame);
|
||||
m_openTimeHComboBox = new QComboBox(autoOpenFrame);
|
||||
m_openTimeHComboBox->setObjectName("opentimehour");
|
||||
|
@ -271,16 +273,19 @@ void Notice::initNotFaze(QFrame *frame)
|
|||
QFrame *multiScreenFrame = new QFrame(frame);
|
||||
m_multiScreenSwitchBtn= new KSwitchButton();
|
||||
m_multiScreenSwitchBtn->setObjectName("multiscreen");
|
||||
//~ contents_path /Notice/Do not disturb mode/Automatically turn on when multiple screens are connected
|
||||
setFrame(multiScreenFrame, m_multiScreenSwitchBtn, tr("Automatically turn on when multiple screens are connected"));
|
||||
|
||||
QFrame *fullScreenFrame = new QFrame(frame);
|
||||
m_fullScreenSwitchBtn= new KSwitchButton();
|
||||
m_fullScreenSwitchBtn->setObjectName("fullscreen");
|
||||
//~ contents_path /Notice/Do not disturb mode/Automatically open in full screen mode
|
||||
setFrame(fullScreenFrame, m_fullScreenSwitchBtn, tr("Automatically open in full screen mode"));
|
||||
|
||||
QFrame *allowAlarmrRemindersFrame = new QFrame(frame);
|
||||
m_allowAlarmSwitchBtn= new KSwitchButton();
|
||||
m_allowAlarmSwitchBtn->setObjectName("allowAlarmr");
|
||||
//~ contents_path /Notice/Do not disturb mode/Allow automatic alarm reminders in Do Not Disturb mode
|
||||
setFrame(allowAlarmrRemindersFrame, m_allowAlarmSwitchBtn, tr("Allow automatic alarm reminders in Do Not Disturb mode"));
|
||||
|
||||
notFazeLyt->addWidget(autoOpenFrame);
|
||||
|
|
|
@ -4,52 +4,61 @@
|
|||
<context>
|
||||
<name>Notice</name>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="35"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="52"/>
|
||||
<source>Notice</source>
|
||||
<translation>བརྡ་ཐོ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="126"/>
|
||||
<source>NotFaze Mode</source>
|
||||
<translation>མི་དམངས་ཀྱི་དཔེ་དབྱིབས་མིན་པ།</translation>
|
||||
<translation type="vanished">མི་དམངས་ཀྱི་དཔེ་དབྱིབས་མིན་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="128"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="149"/>
|
||||
<source>Do not disturb mode</source>
|
||||
<translation>མི་དམངས་ཀྱི་དཔེ་དབྱིབས་མིན་པ།</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode Mode</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="151"/>
|
||||
<source>(Notification banners, prompts will be hidden, and notification sounds will be muted)</source>
|
||||
<translation>(བརྡ་ཐོ་གཏོང་བའི་འཕྲེད་འགེལ་སྦྱར་ཡིག་དང་། བརྡ་གཏོང་ཡི་གེ་སྦས་སྐུང་བྱས་ནས་བརྡ་ཁྱབ་ཀྱི་སྒྲ་གྲགས་ཡོང་། )</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="202"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="226"/>
|
||||
<source>Automatically turn on</source>
|
||||
<translation>རང་འགུལ་གྱིས་ཁ་ཕྱེ་བ།</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode Mode/Automatically turn on</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="227"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="251"/>
|
||||
<source>to</source>
|
||||
<translation>དེ་ལྟར་བྱས་ན་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="252"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="277"/>
|
||||
<source>Automatically turn on when multiple screens are connected</source>
|
||||
<translation>བརྙན་ཤེལ་མང་པོ་སྦྲེལ་མཐུད་བྱེད་སྐབས་རང་འགུལ་གྱིས་ཁ་ཕྱེ་བ།</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode/Automatically turn on when multiple screens are connected</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="257"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="283"/>
|
||||
<source>Automatically open in full screen mode</source>
|
||||
<translation>བརྙན་ཤེལ་ཧྲིལ་པོའི་རྣམ་པའི་ཐོག་ནས་རང་འགུལ་གྱིས་སྒོ་</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode/Automatically open in full screen mode</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="262"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="289"/>
|
||||
<source>Allow automatic alarm reminders in Do Not Disturb mode</source>
|
||||
<translation>རང་འགུལ་གྱིས་ཉེན་བརྡ་གཏོང་བའི་དྲན་སྐུལ་བྱེད་སྟངས་ལ་སུན་པོ་བཟོ་མི་རུང་།</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode/Allow automatic alarm reminders in Do Not Disturb mode</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="292"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="318"/>
|
||||
<source>Notice Settings</source>
|
||||
<translation>བརྡ་ཐོའི་སྒྲིག་བཀོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="294"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="320"/>
|
||||
<source>Get notifications from the app</source>
|
||||
<translation>ཉེར་སྤྱོད་གོ་རིམ་ཁྲོད་ནས་བརྡ་ཐོ་གཏོང་དགོས།</translation>
|
||||
<extra-contents_path>/notice/Get notifications from the app</extra-contents_path>
|
||||
|
@ -58,39 +67,35 @@
|
|||
<context>
|
||||
<name>NoticeMenu</name>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="86"/>
|
||||
<location filename="../notice-menu.cpp" line="104"/>
|
||||
<source>Beep sound when notified</source>
|
||||
<translation>བརྡ་ཐོ་གཏོང་སྐབས་སྐད་ཅོར་རྒྱག་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="92"/>
|
||||
<location filename="../notice-menu.cpp" line="110"/>
|
||||
<source>Show message on screenlock</source>
|
||||
<translation>བརྙན་ཤེལ་སྟེང་ནས་ཆ་འཕྲིན་མངོན་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="98"/>
|
||||
<location filename="../notice-menu.cpp" line="116"/>
|
||||
<source>Show noticfication on screenlock</source>
|
||||
<translation>བརྙན་ཤེལ་སྟེང་ནས་དོ་སྣང་བྱེད་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="102"/>
|
||||
<source>Notification Style</source>
|
||||
<translation>བརྡ་ཐོ་གཏོང་སྟངས།</translation>
|
||||
<translation type="vanished">བརྡ་ཐོ་གཏོང་སྟངས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="110"/>
|
||||
<source>Banner: Appears in the upper right corner of the screen, and disappears automatically</source>
|
||||
<translation>འཕྲེད་འགེལ་ཡི་གེ། བརྙན་ཤེལ་གྱི་གཡས་ཟུར་དུ་མངོན་པ་མ་ཟད། རང་འགུལ་གྱིས་མེད་པར་གྱུར་པ།</translation>
|
||||
<translation type="vanished">འཕྲེད་འགེལ་ཡི་གེ། བརྙན་ཤེལ་གྱི་གཡས་ཟུར་དུ་མངོན་པ་མ་ཟད། རང་འགུལ་གྱིས་མེད་པར་གྱུར་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="115"/>
|
||||
<source>Tip:It will be kept on the screen until it is closed</source>
|
||||
<translation>རྩེ་མོ། འཆར་ངོས་སུ་ཉར་ཚགས་བྱས་ནས་སྒོ་མ་བརྒྱབ་གོང་ལ་ཉར་ཚགས་བྱེད་དགོས།</translation>
|
||||
<translation type="vanished">རྩེ་མོ། འཆར་ངོས་སུ་ཉར་ཚགས་བྱས་ནས་སྒོ་མ་བརྒྱབ་གོང་ལ་ཉར་ཚགས་བྱེད་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="120"/>
|
||||
<source>None:Notifications will not be displayed on the screen, but will go to the notification center</source>
|
||||
<translation>གཅིག་ཀྱང་མ་ལུས་པར་འཆར་ངོས་སུ་བརྡ་ཐོ་མི་མངོན་པར་བརྡ་ཁྱབ་ལྟེ་གནས་སུ་འགྲོ་རྒྱུ་རེད།</translation>
|
||||
<translation type="vanished">གཅིག་ཀྱང་མ་ལུས་པར་འཆར་ངོས་སུ་བརྡ་ཐོ་མི་མངོན་པར་བརྡ་ཁྱབ་ལྟེ་གནས་སུ་འགྲོ་རྒྱུ་རེད།</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -4,52 +4,61 @@
|
|||
<context>
|
||||
<name>Notice</name>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="35"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="52"/>
|
||||
<source>Notice</source>
|
||||
<translation>Notice</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="126"/>
|
||||
<source>NotFaze Mode</source>
|
||||
<translation>NotFaze Mode</translation>
|
||||
<translation type="vanished">NotFaze Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="128"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="149"/>
|
||||
<source>Do not disturb mode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode Mode</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="151"/>
|
||||
<source>(Notification banners, prompts will be hidden, and notification sounds will be muted)</source>
|
||||
<translation>(Notification banners, prompts will be hidden, and notification sounds will be muted)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="202"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="226"/>
|
||||
<source>Automatically turn on</source>
|
||||
<translation>Automatically turn on</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode Mode/Automatically turn on</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="227"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="251"/>
|
||||
<source>to</source>
|
||||
<translation>to</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="252"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="277"/>
|
||||
<source>Automatically turn on when multiple screens are connected</source>
|
||||
<translation>Automatically turn on when multiple screens are connected</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode/Automatically turn on when multiple screens are connected</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="257"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="283"/>
|
||||
<source>Automatically open in full screen mode</source>
|
||||
<translation>Automatically open in full screen mode</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode/Automatically open in full screen mode</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="262"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="289"/>
|
||||
<source>Allow automatic alarm reminders in Do Not Disturb mode</source>
|
||||
<translation>Allow automatic alarm reminders in Do Not Disturb mode</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode/Allow automatic alarm reminders in Do Not Disturb mode</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="292"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="318"/>
|
||||
<source>Notice Settings</source>
|
||||
<translation>Notice Settings</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="294"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="320"/>
|
||||
<source>Get notifications from the app</source>
|
||||
<translation>Get notifications from the app</translation>
|
||||
<extra-contents_path>/notice/Get notifications from the app</extra-contents_path>
|
||||
|
@ -58,39 +67,35 @@
|
|||
<context>
|
||||
<name>NoticeMenu</name>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="86"/>
|
||||
<location filename="../notice-menu.cpp" line="104"/>
|
||||
<source>Beep sound when notified</source>
|
||||
<translation>Beep sound when notified</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="92"/>
|
||||
<location filename="../notice-menu.cpp" line="110"/>
|
||||
<source>Show message on screenlock</source>
|
||||
<translation>Show message on screenlock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="98"/>
|
||||
<location filename="../notice-menu.cpp" line="116"/>
|
||||
<source>Show noticfication on screenlock</source>
|
||||
<translation>Show noticfication on screenlock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="102"/>
|
||||
<source>Notification Style</source>
|
||||
<translation>Notification Style</translation>
|
||||
<translation type="vanished">Notification Style</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="110"/>
|
||||
<source>Banner: Appears in the upper right corner of the screen, and disappears automatically</source>
|
||||
<translation>Banner: Appears in the upper right corner of the screen, and disappears automatically</translation>
|
||||
<translation type="vanished">Banner: Appears in the upper right corner of the screen, and disappears automatically</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="115"/>
|
||||
<source>Tip:It will be kept on the screen until it is closed</source>
|
||||
<translation>Tip:It will be kept on the screen until it is closed</translation>
|
||||
<translation type="vanished">Tip:It will be kept on the screen until it is closed</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="120"/>
|
||||
<source>None:Notifications will not be displayed on the screen, but will go to the notification center</source>
|
||||
<translation>None:Notifications will not be displayed on the screen, but will go to the notification center</translation>
|
||||
<translation type="vanished">None:Notifications will not be displayed on the screen, but will go to the notification center</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -4,52 +4,61 @@
|
|||
<context>
|
||||
<name>Notice</name>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="35"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="52"/>
|
||||
<source>Notice</source>
|
||||
<translation>通知</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="126"/>
|
||||
<source>NotFaze Mode</source>
|
||||
<translation>勿扰模式</translation>
|
||||
<translation type="vanished">勿扰模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="128"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="149"/>
|
||||
<source>Do not disturb mode</source>
|
||||
<translation>勿扰模式</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode Mode</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="151"/>
|
||||
<source>(Notification banners, prompts will be hidden, and notification sounds will be muted)</source>
|
||||
<translation>(通知横幅、提示将会隐藏,通知声音将会静音)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="202"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="226"/>
|
||||
<source>Automatically turn on</source>
|
||||
<translation>自动开启</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode Mode/Automatically turn on</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="227"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="251"/>
|
||||
<source>to</source>
|
||||
<translation>至</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="252"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="277"/>
|
||||
<source>Automatically turn on when multiple screens are connected</source>
|
||||
<translation>多屏连接时自动开启</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode/Automatically turn on when multiple screens are connected</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="257"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="283"/>
|
||||
<source>Automatically open in full screen mode</source>
|
||||
<translation>全屏模式下自动开启</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode/Automatically open in full screen mode</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="262"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="289"/>
|
||||
<source>Allow automatic alarm reminders in Do Not Disturb mode</source>
|
||||
<translation>勿扰模式下允许闹钟提示</translation>
|
||||
<extra-contents_path>/Notice/Do not disturb mode/Allow automatic alarm reminders in Do Not Disturb mode</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="292"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="318"/>
|
||||
<source>Notice Settings</source>
|
||||
<translation>通知</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="294"/>
|
||||
<location filename="../notification-ukcc-plugin.cpp" line="320"/>
|
||||
<source>Get notifications from the app</source>
|
||||
<translation>获取来自应用的通知</translation>
|
||||
<extra-contents_path>/notice/Get notifications from the app</extra-contents_path>
|
||||
|
@ -58,39 +67,35 @@
|
|||
<context>
|
||||
<name>NoticeMenu</name>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="86"/>
|
||||
<location filename="../notice-menu.cpp" line="104"/>
|
||||
<source>Beep sound when notified</source>
|
||||
<translation>通知时提示声音</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="92"/>
|
||||
<location filename="../notice-menu.cpp" line="110"/>
|
||||
<source>Show message on screenlock</source>
|
||||
<translation>在锁屏界面显示消息内容</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="98"/>
|
||||
<location filename="../notice-menu.cpp" line="116"/>
|
||||
<source>Show noticfication on screenlock</source>
|
||||
<translation>在锁屏界面显示通知</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="102"/>
|
||||
<source>Notification Style</source>
|
||||
<translation>通知样式</translation>
|
||||
<translation type="vanished">通知样式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="110"/>
|
||||
<source>Banner: Appears in the upper right corner of the screen, and disappears automatically</source>
|
||||
<translation>横幅:显示在屏幕右上角,会自动消失</translation>
|
||||
<translation type="vanished">横幅:显示在屏幕右上角,会自动消失</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="115"/>
|
||||
<source>Tip:It will be kept on the screen until it is closed</source>
|
||||
<translation>提示:会保留在屏幕上,直到被关闭</translation>
|
||||
<translation type="vanished">提示:会保留在屏幕上,直到被关闭</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../noticemenu.cpp" line="120"/>
|
||||
<source>None:Notifications will not be displayed on the screen, but will go to the notification center</source>
|
||||
<translation>无:通知不会显示在屏幕上,但会进入通知中心</translation>
|
||||
<translation type="vanished">无:通知不会显示在屏幕上,但会进入通知中心</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
Loading…
Reference in New Issue