fix: 更新翻译错误

部分字符被加上tr翻译了,在更新翻译时就会更新这里的字符串,这里要改回来

Log: 属于开发自测问题,已修改
This commit is contained in:
范朋程 2020-06-04 14:52:58 +08:00
parent c2c623b5a5
commit ee4785a4c5
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ OnboardPlugin::OnboardPlugin(QObject *parent)
{
m_tipsLabel->setText(tr("Onboard"));
m_tipsLabel->setVisible(false);
m_tipsLabel->setAccessibleName(tr("Onboard"));
m_tipsLabel->setAccessibleName("Onboard");
}
const QString OnboardPlugin::pluginName() const

View File

@ -36,7 +36,7 @@ ShutdownPlugin::ShutdownPlugin(QObject *parent)
{
m_tipsLabel->setVisible(false);
m_tipsLabel->setAccessibleName(tr("shutdown"));
m_tipsLabel->setAccessibleName("shutdown");
}
const QString ShutdownPlugin::pluginName() const