fix: 更新ocr的翻译
Description: 更新ocr的翻译 Log: 更新ocr的翻译 Change-Id: If1d498642ab8d1bee3f0c8f9a36e1743eabb5eea
This commit is contained in:
@ -258,7 +258,7 @@ void MainWidget::setupConnect()
|
||||
|
||||
void MainWidget::retranslateUi(QWidget *Widget)
|
||||
{
|
||||
Widget->setWindowTitle(QApplication::translate("Widget", "Widget", nullptr));
|
||||
// Widget->setWindowTitle("Widget");
|
||||
m_tiplabel->setText(QApplication::translate("Widget", "Tips: The clearer the image is, the more accurate the text is", nullptr));
|
||||
// m_copyBtn->setText(QApplication::translate("Widget", "Copy", nullptr));
|
||||
// m_exportBtn->setText(QApplication::translate("Widget", "Export", nullptr));
|
||||
@ -535,7 +535,7 @@ void MainWidget::slotExport()
|
||||
if (!m_imgName.isEmpty()) {
|
||||
fileName = QFileInfo(m_imgName).completeBaseName();
|
||||
} else {
|
||||
fileName = tr("Results");
|
||||
fileName = "Results";
|
||||
}
|
||||
|
||||
QString file_path = QFileDialog::getSaveFileName(this, "save as", download + "/" + fileName, "*.txt");
|
||||
|
@ -17,7 +17,7 @@ ResultTextView::ResultTextView(QWidget *parent)
|
||||
m_actCut->setText(tr("Cut"));
|
||||
|
||||
m_actSelectAll = new QAction(this);
|
||||
m_actSelectAll->setText(tr("SelectAll"));
|
||||
m_actSelectAll->setText(tr("Select All"));
|
||||
m_actPaste = new QAction(this);
|
||||
m_actPaste->setText(tr("Paste"));
|
||||
|
||||
|
Reference in New Issue
Block a user