This commit is contained in:
Laurent Trinques
2023-11-09 13:46:45 +01:00
parent 9f8abed4b8
commit a9f6583189
2 changed files with 6 additions and 6 deletions

View File

@@ -945,19 +945,19 @@ void QETElementEditor::writeSettings() const
void QETElementEditor::setupActions() void QETElementEditor::setupActions()
{ {
#if defined(Q_OS_WIN32) || defined(Q_OS_WIN64) #if defined(Q_OS_WIN32) || defined(Q_OS_WIN64)
ui->m_open_dxf_action -> setStatusTip(tr("To install the plugin DXFtoQET\nVisit https://download.tuxfamily.org/qet/builds/dxf_to_elmt/\n" ui->m_open_dxf_action -> setStatusTip(tr("To install the plugin DXFtoQET\nVisit https://download.qelectrotech.org/qet/builds/dxf_to_elmt/\n"
"\n" "\n"
">> Install on Windows\n" ">> Install on Windows\n"
"Put DXFtoQET.exe binary on C:\\Users\\user_name\\AppData\\Roaming\\qet\\ directory \n" "Put DXFtoQET.exe binary on C:\\Users\\user_name\\AppData\\Roaming\\qet\\ directory \n"
)); ));
#elif defined(Q_OS_MAC) #elif defined(Q_OS_MAC)
ui->m_open_dxf_action -> setStatusTip(tr("To install the plugin DXFtoQET\nVisit https://download.tuxfamily.org/qet/builds/dxf_to_elmt/\n" ui->m_open_dxf_action -> setStatusTip(tr("To install the plugin DXFtoQET\nVisit https://download.qelectrotech.org/qet/builds/dxf_to_elmt/\n"
"\n" "\n"
">> Install on macOSX\n" ">> Install on macOSX\n"
"Put DXFtoQET.app binary on /Users/user_name/.qet/ directory \n" "Put DXFtoQET.app binary on /Users/user_name/.qet/ directory \n"
)); ));
#else #else
ui->m_open_dxf_action -> setStatusTip(tr("To install the plugin DXFtoQET\nVisit https://download.tuxfamily.org/qet/builds/dxf_to_elmt/\n" ui->m_open_dxf_action -> setStatusTip(tr("To install the plugin DXFtoQET\nVisit https://download.qelectrotech.org/qet/builds/dxf_to_elmt/\n"
"\n" "\n"
">> Install on Linux\n" ">> Install on Linux\n"
"Put DXFtoQET binary on your /home/user_name/.qet/ directory\n" "Put DXFtoQET binary on your /home/user_name/.qet/ directory\n"
@@ -965,7 +965,7 @@ void QETElementEditor::setupActions()
)); ));
#endif #endif
ui->m_open_dxf_action -> setWhatsThis (tr("To install the plugin DXFtoQET\nVisit https://download.tuxfamily.org/qet/builds/dxf_to_elmt/\n" ui->m_open_dxf_action -> setWhatsThis (tr("To install the plugin DXFtoQET\nVisit https://download.qelectrotech.org/qet/builds/dxf_to_elmt/\n"
"\n" "\n"
">> Install on Linux\n" ">> Install on Linux\n"
"Put DXFtoQET binary on your /home/user_name/.qet/ directory\n" "Put DXFtoQET binary on your /home/user_name/.qet/ directory\n"
@@ -1475,7 +1475,7 @@ void QETElementEditor::on_m_zoom_original_action_triggered() { m_view->zoomReset
void QETElementEditor::on_m_about_qet_action_triggered() { QETApp::instance()->aboutQET(); } void QETElementEditor::on_m_about_qet_action_triggered() { QETApp::instance()->aboutQET(); }
void QETElementEditor::on_m_online_manual_triggered() { void QETElementEditor::on_m_online_manual_triggered() {
QString link = "https://download.tuxfamily.org/qet/manual_0.7/build/index.html"; QString link = "https://download.qelectrotech.org/qet/manual_0.7/build/index.html";
QDesktopServices::openUrl(QUrl(link)); QDesktopServices::openUrl(QUrl(link));
} }

View File

@@ -94,7 +94,7 @@ void QETMainWindow::initCommonActions()
manual_online_ -> setStatusTip(tr("Lance le navigateur par défaut vers le manuel en ligne de QElectroTech", "status bar tip")); manual_online_ -> setStatusTip(tr("Lance le navigateur par défaut vers le manuel en ligne de QElectroTech", "status bar tip"));
connect(manual_online_, &QAction::triggered, [](bool) { connect(manual_online_, &QAction::triggered, [](bool) {
QString link = "https://download.tuxfamily.org/qet/manual_0.7/build/index.html"; QString link = "https://download.qelectrotech.org/qet/manual_0.7/build/index.html";
QDesktopServices::openUrl(QUrl(link)); QDesktopServices::openUrl(QUrl(link));
}); });