diff --git a/app/scanner2/mainwindow.cpp b/app/scanner2/mainwindow.cpp index 4ad951b5..c0ebe7c4 100644 --- a/app/scanner2/mainwindow.cpp +++ b/app/scanner2/mainwindow.cpp @@ -3501,7 +3501,7 @@ void MainWindow::on_act_about_triggered() content += tr("

Company website: %1

").arg(QString::fromStdWString(BRAND_COMPANY_URL)); content += tr("

Copyright: %1

").arg(QString::fromStdWString(BRAND_COPYRIGHT)); } - else if(appLang == "english") + else if(appLang == "english" || appLang == "vietnam") { content += tr("

Vendor: %1

").arg(QString::fromStdWString(COMPANY_NAME_EN)); content += tr("

Company address: %1

").arg(QString::fromStdWString(BRAND_COMPANY_ADDRESS_EN)); @@ -3509,7 +3509,7 @@ void MainWindow::on_act_about_triggered() content += tr("

Company website: %1

").arg(QString::fromStdWString(BRAND_COMPANY_URL_EN)); content += tr("

Copyright: %1

").arg(QString::fromStdWString(BRAND_COPYRIGHT_EN)); } - else if (appLang == "chinese-trad" || appLang == "vietnam") + else if (appLang == "chinese-trad") { content += tr("

Vendor: %1

").arg(QString::fromStdWString(COMPANY_NAME_TRADCN)); content += tr("

Company address: %1

").arg(QString::fromStdWString(BRAND_COMPANY_ADDRESS_TRADCN)); @@ -3532,11 +3532,11 @@ void MainWindow::on_act_about_triggered() #endif #if defined (OEM_ZHONGJING) - if (appLang == "english") + if (appLang == "english" || appLang == "vietnam") { content += tr("

Company GPS: %2

").arg(QString::fromStdWString(BRAND_URL_GPS_TRADCN)).arg(tr("Baidu map access")); } - else if (appLang == "chinese-trad" || appLang == "vietnam") + else if (appLang == "chinese-trad") { content += tr("

Company GPS: %2

").arg(QString::fromStdWString(BRAND_URL_GPS_TRADCN)).arg(tr("Baidu map access")); content += tr("

Copyright: %1

").arg(QString::fromStdWString(BRAND_COPYRIGHT_TRADCN));