translation improvement 4
This commit is contained in:
@@ -6,12 +6,14 @@
|
||||
#include "components/SlidePickerBox.h"
|
||||
#include <QVBoxLayout>
|
||||
#include <QLabel>
|
||||
SelectDialog::SelectDialog(QWidget *parent, Qt::WindowFlags f) : GUIFormBaseDialog(parent, f) {
|
||||
this->setFixedSize(360,380);
|
||||
SelectDialog::SelectDialog(QWidget* parent, Qt::WindowFlags f) : GUIFormBaseDialog(parent, f) {
|
||||
|
||||
this->setFixedSize(360, 380);
|
||||
QVBoxLayout* layout = new QVBoxLayout(formWidget);
|
||||
box = new SlidePickerBox(formWidget);
|
||||
box->setObjectName("slider_one");
|
||||
layout->addWidget(box);
|
||||
|
||||
}
|
||||
|
||||
SelectDialog::~SelectDialog() {
|
||||
@@ -30,6 +32,6 @@ QString SelectDialog::getSelectedValue() {
|
||||
return box->getSelectedValue();
|
||||
}
|
||||
|
||||
void SelectDialog::setSelectedValue(const QString & val) {
|
||||
void SelectDialog::setSelectedValue(const QString& val) {
|
||||
box->setSelectedValue(val);
|
||||
}
|
||||
|
||||
@@ -6,21 +6,46 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>626</width>
|
||||
<height>510</height>
|
||||
<width>600</width>
|
||||
<height>400</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Dialog</string>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">
|
||||
|
||||
QTabBar::tab {
|
||||
font-size:25px;
|
||||
height:40px;
|
||||
width:180px;
|
||||
border: 0px;
|
||||
border-top-left-radius: 0%;
|
||||
border-top-right-radius: 0%;
|
||||
border-bottom-left-radius:0%;
|
||||
border-bottom-right-radius:0%;
|
||||
background:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #505050, stop: 1.0 #333333);
|
||||
}
|
||||
|
||||
QTabBar::tab:selected, QTabBar::tab:hover {
|
||||
background:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #ABABAB, stop: 1.0 #CDCDCD);
|
||||
}</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="QWidget" name="widget" native="true">
|
||||
<widget class="QWidget" name="formWidget" native="true">
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QLabel" name="title">
|
||||
<property name="text">
|
||||
<string>DICOM Setting</string>
|
||||
<string>DICOM Settings</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
@@ -37,45 +62,67 @@
|
||||
<string>Worklist</string>
|
||||
</attribute>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="0">
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="lbl_Name">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>165</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Name</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QLineEdit" name="wl_AE"/>
|
||||
<item row="5" column="1">
|
||||
<widget class="QLineEdit" name="wl_IP"/>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<item row="1" column="1">
|
||||
<widget class="QLineEdit" name="wl_Name"/>
|
||||
</item>
|
||||
<item row="5" column="0">
|
||||
<widget class="QLabel" name="lbl_IP">
|
||||
<property name="text">
|
||||
<string>IP</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="1">
|
||||
<widget class="QLineEdit" name="wl_IP"/>
|
||||
<item row="6" column="1">
|
||||
<widget class="QLineEdit" name="wl_Port"/>
|
||||
</item>
|
||||
<item row="5" column="0">
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="lbl_AE">
|
||||
<property name="text">
|
||||
<string>AE</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="1">
|
||||
<widget class="QLineEdit" name="wl_AE"/>
|
||||
</item>
|
||||
<item row="6" column="0">
|
||||
<widget class="QLabel" name="lbl_Port">
|
||||
<property name="text">
|
||||
<string>Port</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="1">
|
||||
<widget class="QLineEdit" name="wl_Port"/>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLineEdit" name="wl_Name"/>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="lbl_AE">
|
||||
<property name="text">
|
||||
<string>AE</string>
|
||||
<spacer name="verticalSpacer_3">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
</widget>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
@@ -84,46 +131,68 @@
|
||||
<string>PACS</string>
|
||||
</attribute>
|
||||
<layout class="QGridLayout" name="gridLayout_2">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="lbl_Name_2">
|
||||
<property name="text">
|
||||
<string>Name</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLineEdit" name="pacs_Name"/>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="lbl_AE_2">
|
||||
<property name="text">
|
||||
<string>AE</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QLineEdit" name="pacs_AE"/>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="lbl_IP_2">
|
||||
<property name="text">
|
||||
<string>IP</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLineEdit" name="pacs_IP"/>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="lbl_Port_2">
|
||||
<property name="text">
|
||||
<string>Port</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<item row="1" column="1">
|
||||
<widget class="QLineEdit" name="pacs_Name"/>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="lbl_AE_2">
|
||||
<property name="text">
|
||||
<string>AE</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLineEdit" name="pacs_AE"/>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="lbl_Name_2">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>165</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Name</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="1">
|
||||
<widget class="QLineEdit" name="pacs_Port"/>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QLineEdit" name="pacs_IP"/>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<spacer name="verticalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="tab_recon">
|
||||
@@ -131,46 +200,68 @@
|
||||
<string>3D Recon</string>
|
||||
</attribute>
|
||||
<layout class="QGridLayout" name="gridLayout_3">
|
||||
<item row="0" column="1">
|
||||
<widget class="QLineEdit" name="recon_Name"/>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="lbl_AE_3">
|
||||
<property name="text">
|
||||
<string>AE</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<item row="4" column="1">
|
||||
<widget class="QLineEdit" name="recon_AE"/>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<item row="5" column="1">
|
||||
<widget class="QLineEdit" name="recon_IP"/>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLineEdit" name="recon_Name"/>
|
||||
</item>
|
||||
<item row="5" column="0">
|
||||
<widget class="QLabel" name="lbl_IP_3">
|
||||
<property name="text">
|
||||
<string>IP</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QLineEdit" name="recon_IP"/>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<item row="6" column="0">
|
||||
<widget class="QLabel" name="lbl_Port_3">
|
||||
<property name="text">
|
||||
<string>Port</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="1">
|
||||
<item row="6" column="1">
|
||||
<widget class="QLineEdit" name="recon_Port"/>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="lbl_AE_3">
|
||||
<property name="text">
|
||||
<string>AE</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="lbl_Name_3">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>165</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Name</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
@@ -9,6 +9,7 @@ dicomCfgDialog::dicomCfgDialog(QWidget* parent) :
|
||||
ui(new Ui::dicomCfgDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
//this->setFixedWidth(500);
|
||||
this->setObjectName("formDialog");
|
||||
this->setWindowFlags(Qt::Dialog | Qt::FramelessWindowHint);
|
||||
|
||||
|
||||
@@ -298,7 +298,7 @@ void networkCfgDialog::applyData()
|
||||
bool ret3 = NetworkManager::setIpAddrList(model_addr->getData(), err);
|
||||
err.append("setIpRouteList\t");
|
||||
bool ret4 = NetworkManager::setIpRouteList(model_route->getData(), err);
|
||||
err.append("\n").append("network setting\t");
|
||||
err.append("\n").append("network settings\t");
|
||||
|
||||
bool retAll = ret & ret1 & ret2 & ret3 & ret4;
|
||||
err.append(boolToStr(retAll));
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>819</width>
|
||||
<height>680</height>
|
||||
<width>820</width>
|
||||
<height>671</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
@@ -20,27 +20,21 @@
|
||||
<string>Network Settings</string>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">
|
||||
QTabWidget::pane {
|
||||
border-top: 0px;
|
||||
}
|
||||
|
||||
QTabBar::tab {
|
||||
<string notr="true">QTabBar::tab {
|
||||
font-size:25px;
|
||||
height:40px;
|
||||
width:120px;
|
||||
background:#4d4d4d;
|
||||
width:190px;
|
||||
border: 0px;
|
||||
border-top-left-radius: 0%;
|
||||
border-top-right-radius: 0%;
|
||||
border-bottom-left-radius:0%;
|
||||
border-bottom-right-radius:0%;
|
||||
padding: 2px;
|
||||
background:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #505050, stop: 1.0 #333333);
|
||||
}
|
||||
|
||||
QTabBar::tab:selected, QTabBar::tab:hover {
|
||||
border-bottom:5px solid #4a88c7;
|
||||
background: #505050;}
|
||||
background:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #ABABAB, stop: 1.0 #CDCDCD);
|
||||
}
|
||||
|
||||
QLineEdit#led_inface{font-size:15px;border: 0px;}</string>
|
||||
</property>
|
||||
@@ -54,7 +48,7 @@ QLineEdit#led_inface{font-size:15px;border: 0px;}</string>
|
||||
<item>
|
||||
<widget class="QLabel" name="title">
|
||||
<property name="text">
|
||||
<string>Network Setting</string>
|
||||
<string>Network Settings</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
@@ -66,8 +60,17 @@ QLineEdit#led_inface{font-size:15px;border: 0px;}</string>
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="tabPosition">
|
||||
<enum>QTabWidget::North</enum>
|
||||
</property>
|
||||
<property name="tabShape">
|
||||
<enum>QTabWidget::Rounded</enum>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>2</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="elideMode">
|
||||
<enum>Qt::ElideLeft</enum>
|
||||
</property>
|
||||
<widget class="QWidget" name="tab">
|
||||
<attribute name="title">
|
||||
|
||||
@@ -1 +1 @@
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>515</width>
|
||||
<width>572</width>
|
||||
<height>612</height>
|
||||
</rect>
|
||||
</property>
|
||||
@@ -20,8 +20,18 @@
|
||||
<item>
|
||||
<widget class="QWidget" name="block10" native="true">
|
||||
<layout class="QGridLayout" name="gridLayout_2">
|
||||
<item row="0" column="1">
|
||||
<spacer name="horizontalSpacer_7">
|
||||
<item row="1" column="2">
|
||||
<widget class="ImageSwitch" name="swt_verify" native="true">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>25</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
@@ -37,62 +47,6 @@
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="lbl_filter">
|
||||
<property name="text">
|
||||
<string>Worklist Filter</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QPushButton" name="btnFlt">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QPushButton" name="btnPro">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<spacer name="horizontalSpacer_8">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="lbl_protocal">
|
||||
<property name="text">
|
||||
<string>Protocal</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="lbl_verify">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
@@ -105,18 +59,28 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="ImageSwitch" name="swt_verify" native="true">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>25</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="lbl_protocal">
|
||||
<property name="text">
|
||||
<string>Protocal</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<spacer name="horizontalSpacer">
|
||||
<item row="0" column="2">
|
||||
<widget class="QPushButton" name="btnPro">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>50</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<spacer name="horizontalSpacer_7">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
@@ -163,6 +127,13 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="lbl_filter">
|
||||
<property name="text">
|
||||
<string>Worklist Filter</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QToolButton" name="btn_network">
|
||||
<property name="text">
|
||||
@@ -173,74 +144,23 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QWidget" name="block2" native="true">
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<property name="horizontalSpacing">
|
||||
<number>25</number>
|
||||
<item row="4" column="1">
|
||||
<widget class="QPushButton" name="btnFlt">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>50</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="verticalSpacing">
|
||||
<number>10</number>
|
||||
</property>
|
||||
<item row="2" column="4">
|
||||
<widget class="QLineEdit" name="daq_Port"/>
|
||||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="QLineEdit" name="daq_AE"/>
|
||||
</item>
|
||||
<item row="1" column="3">
|
||||
<widget class="QLabel" name="lbl_IP">
|
||||
<property name="text">
|
||||
<string>IP</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="3">
|
||||
<widget class="QLineEdit" name="daq_IP"/>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="lbl_DAQ">
|
||||
<property name="text">
|
||||
<string>DAQ</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QLabel" name="lbl_Name">
|
||||
<property name="text">
|
||||
<string>Name</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QLabel" name="lbl_AE">
|
||||
<property name="text">
|
||||
<string>AE</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLineEdit" name="daq_Name"/>
|
||||
</item>
|
||||
<item row="1" column="4">
|
||||
<widget class="QLabel" name="lbl_Port">
|
||||
<property name="text">
|
||||
<string>Port</string>
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QWidget" name="widget" native="true">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2"/>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
|
||||
@@ -560,10 +560,6 @@ parameters
|
||||
<source>Dialog</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DICOM Setting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
@@ -600,6 +596,10 @@ parameters
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DICOM Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>networkCfgDialog</name>
|
||||
@@ -675,10 +675,6 @@ parameters
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Network Setting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DHCP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
@@ -726,22 +722,6 @@ parameters
|
||||
<source>IP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>AE</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DAQ</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Port</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DICOM</source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
||||
@@ -560,10 +560,6 @@ parameters
|
||||
<source>Dialog</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DICOM Setting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
@@ -600,6 +596,10 @@ parameters
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DICOM Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>networkCfgDialog</name>
|
||||
@@ -675,10 +675,6 @@ parameters
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Network Setting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DHCP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
@@ -726,22 +722,6 @@ parameters
|
||||
<source>IP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>AE</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DAQ</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Port</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DICOM</source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
||||
Binary file not shown.
@@ -776,65 +776,69 @@ parameters
|
||||
<context>
|
||||
<name>dicomCfgDialog</name>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="246"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="287"/>
|
||||
<source>Dialog</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="247"/>
|
||||
<source>DICOM Setting</source>
|
||||
<translation>DICOM 设置</translation>
|
||||
<translation type="vanished">DICOM 设置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="248"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="253"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="261"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="288"/>
|
||||
<source>DICOM Settings</source>
|
||||
<translation>DICOM 配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="289"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="297"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="302"/>
|
||||
<source>Name</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="249"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="255"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="259"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="290"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="294"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="299"/>
|
||||
<source>IP</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="250"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="256"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="260"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="292"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="295"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="300"/>
|
||||
<source>Port</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="251"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="254"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="258"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="291"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="296"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="301"/>
|
||||
<source>AE</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="252"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="293"/>
|
||||
<source>Worklist</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="257"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="298"/>
|
||||
<source>PACS</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="262"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="303"/>
|
||||
<source>3D Recon</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../network/dicomcfgdialog.cpp" line="15"/>
|
||||
<location filename="../network/dicomcfgdialog.cpp" line="16"/>
|
||||
<source>Apply</source>
|
||||
<translation>应用</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../network/dicomcfgdialog.cpp" line="16"/>
|
||||
<location filename="../network/dicomcfgdialog.cpp" line="17"/>
|
||||
<source>Cancel</source>
|
||||
<translation>取消</translation>
|
||||
</message>
|
||||
@@ -842,110 +846,110 @@ parameters
|
||||
<context>
|
||||
<name>networkCfgDialog</name>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="456"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="453"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="454"/>
|
||||
<source>Network Settings</source>
|
||||
<translation>网络配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="467"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="464"/>
|
||||
<source>Address</source>
|
||||
<translation>IP配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="458"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="455"/>
|
||||
<location filename="../network/networkcfgdialog.cpp" line="33"/>
|
||||
<source>IP Address</source>
|
||||
<translation>IP地址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="457"/>
|
||||
<source>Network Setting</source>
|
||||
<translation>网络配置</translation>
|
||||
<translation type="vanished">网络配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Dynamic Address</source>
|
||||
<translation type="vanished">动态地址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="460"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="457"/>
|
||||
<source>Dev</source>
|
||||
<translation>设备</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="462"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="459"/>
|
||||
<source>Subnet Mask</source>
|
||||
<translation>子网掩码</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="463"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="460"/>
|
||||
<source>Additional Address</source>
|
||||
<translation>额外地址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="464"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="471"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="461"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="468"/>
|
||||
<source>Add</source>
|
||||
<translation>新增</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="465"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="472"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="462"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="469"/>
|
||||
<source>Edit</source>
|
||||
<translation>编辑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="466"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="473"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="463"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="470"/>
|
||||
<source>Delete</source>
|
||||
<translation>删除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="474"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="471"/>
|
||||
<source>Routing</source>
|
||||
<translation>路由配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="469"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="466"/>
|
||||
<source>Default IPv4 Gateway</source>
|
||||
<translation>默认网关</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="459"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="456"/>
|
||||
<source>DHCP</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="470"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="467"/>
|
||||
<source>Routing Table</source>
|
||||
<translation>路由表</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="475"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="472"/>
|
||||
<source>Name</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="476"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="473"/>
|
||||
<source>Port</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="477"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="474"/>
|
||||
<source>AE</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="478"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="475"/>
|
||||
<source>IP</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="479"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="476"/>
|
||||
<source>DICOM</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="480"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="477"/>
|
||||
<source>Result</source>
|
||||
<translation>结果</translation>
|
||||
</message>
|
||||
@@ -979,7 +983,7 @@ parameters
|
||||
<context>
|
||||
<name>systemSettingForm</name>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="227"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="147"/>
|
||||
<source>Form</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
@@ -988,12 +992,12 @@ parameters
|
||||
<translation type="vanished">网络配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="231"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="149"/>
|
||||
<source>Protocal</source>
|
||||
<translation>扫描协议</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="228"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="152"/>
|
||||
<source>Worklist Filter</source>
|
||||
<translation>Worklist过滤器</translation>
|
||||
</message>
|
||||
@@ -1002,7 +1006,7 @@ parameters
|
||||
<translation type="vanished">DICOM</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="232"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="148"/>
|
||||
<source>Auto Verify</source>
|
||||
<translation>自动验证</translation>
|
||||
</message>
|
||||
@@ -1011,30 +1015,13 @@ parameters
|
||||
<translation type="vanished">配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="234"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="235"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="153"/>
|
||||
<source>IP</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="237"/>
|
||||
<source>Name</source>
|
||||
<translation>姓名</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="238"/>
|
||||
<source>AE</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="236"/>
|
||||
<source>DAQ</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="239"/>
|
||||
<source>Port</source>
|
||||
<translation></translation>
|
||||
<translation type="vanished">姓名</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
@@ -1045,7 +1032,7 @@ parameters
|
||||
<translation type="vanished">接受</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="233"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="151"/>
|
||||
<source>DICOM</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
||||
@@ -776,65 +776,69 @@ parameters
|
||||
<context>
|
||||
<name>dicomCfgDialog</name>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="246"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="287"/>
|
||||
<source>Dialog</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="247"/>
|
||||
<source>DICOM Setting</source>
|
||||
<translation>DICOM 设置</translation>
|
||||
<translation type="vanished">DICOM 设置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="248"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="253"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="261"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="288"/>
|
||||
<source>DICOM Settings</source>
|
||||
<translation>DICOM 配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="289"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="297"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="302"/>
|
||||
<source>Name</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="249"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="255"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="259"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="290"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="294"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="299"/>
|
||||
<source>IP</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="250"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="256"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="260"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="292"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="295"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="300"/>
|
||||
<source>Port</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="251"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="254"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="258"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="291"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="296"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="301"/>
|
||||
<source>AE</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="252"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="293"/>
|
||||
<source>Worklist</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="257"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="298"/>
|
||||
<source>PACS</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="262"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_dicomcfgdialog.h" line="303"/>
|
||||
<source>3D Recon</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../network/dicomcfgdialog.cpp" line="15"/>
|
||||
<location filename="../network/dicomcfgdialog.cpp" line="16"/>
|
||||
<source>Apply</source>
|
||||
<translation>应用</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../network/dicomcfgdialog.cpp" line="16"/>
|
||||
<location filename="../network/dicomcfgdialog.cpp" line="17"/>
|
||||
<source>Cancel</source>
|
||||
<translation>取消</translation>
|
||||
</message>
|
||||
@@ -842,110 +846,110 @@ parameters
|
||||
<context>
|
||||
<name>networkCfgDialog</name>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="456"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="453"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="454"/>
|
||||
<source>Network Settings</source>
|
||||
<translation>网络配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="467"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="464"/>
|
||||
<source>Address</source>
|
||||
<translation>IP配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="458"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="455"/>
|
||||
<location filename="../network/networkcfgdialog.cpp" line="33"/>
|
||||
<source>IP Address</source>
|
||||
<translation>IP地址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="457"/>
|
||||
<source>Network Setting</source>
|
||||
<translation>网络配置</translation>
|
||||
<translation type="vanished">网络配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Dynamic Address</source>
|
||||
<translation type="vanished">动态地址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="460"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="457"/>
|
||||
<source>Dev</source>
|
||||
<translation>设备</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="462"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="459"/>
|
||||
<source>Subnet Mask</source>
|
||||
<translation>子网掩码</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="463"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="460"/>
|
||||
<source>Additional Address</source>
|
||||
<translation>额外地址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="464"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="471"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="461"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="468"/>
|
||||
<source>Add</source>
|
||||
<translation>新增</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="465"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="472"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="462"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="469"/>
|
||||
<source>Edit</source>
|
||||
<translation>编辑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="466"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="473"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="463"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="470"/>
|
||||
<source>Delete</source>
|
||||
<translation>删除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="474"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="471"/>
|
||||
<source>Routing</source>
|
||||
<translation>路由配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="469"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="466"/>
|
||||
<source>Default IPv4 Gateway</source>
|
||||
<translation>默认网关</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="459"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="456"/>
|
||||
<source>DHCP</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="470"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="467"/>
|
||||
<source>Routing Table</source>
|
||||
<translation>路由表</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="475"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="472"/>
|
||||
<source>Name</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="476"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="473"/>
|
||||
<source>Port</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="477"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="474"/>
|
||||
<source>AE</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="478"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="475"/>
|
||||
<source>IP</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="479"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="476"/>
|
||||
<source>DICOM</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="480"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_networkcfgdialog.h" line="477"/>
|
||||
<source>Result</source>
|
||||
<translation>结果</translation>
|
||||
</message>
|
||||
@@ -979,7 +983,7 @@ parameters
|
||||
<context>
|
||||
<name>systemSettingForm</name>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="227"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="147"/>
|
||||
<source>Form</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
@@ -988,12 +992,12 @@ parameters
|
||||
<translation type="vanished">网络配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="231"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="149"/>
|
||||
<source>Protocal</source>
|
||||
<translation>扫描协议</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="228"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="152"/>
|
||||
<source>Worklist Filter</source>
|
||||
<translation>Worklist过滤器</translation>
|
||||
</message>
|
||||
@@ -1002,7 +1006,7 @@ parameters
|
||||
<translation type="vanished">DICOM</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="232"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="148"/>
|
||||
<source>Auto Verify</source>
|
||||
<translation>自动验证</translation>
|
||||
</message>
|
||||
@@ -1011,30 +1015,13 @@ parameters
|
||||
<translation type="vanished">配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="234"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="235"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="153"/>
|
||||
<source>IP</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="237"/>
|
||||
<source>Name</source>
|
||||
<translation>姓名</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="238"/>
|
||||
<source>AE</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="236"/>
|
||||
<source>DAQ</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="239"/>
|
||||
<source>Port</source>
|
||||
<translation></translation>
|
||||
<translation type="vanished">姓名</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
@@ -1045,7 +1032,7 @@ parameters
|
||||
<translation type="vanished">接受</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="233"/>
|
||||
<location filename="../../out/build/x64-Debug/ui_systemsettingform.h" line="151"/>
|
||||
<source>DICOM</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
||||
Reference in New Issue
Block a user