mirror of
https://github.com/vicr123/theshell.git
synced 2025-01-22 11:52:01 -05:00
Fix build of the network pane
This commit is contained in:
parent
7a5fa021e2
commit
9636709c95
4 changed files with 23 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" sourcelanguage="en_US" language="ja_JP">
|
||||
<TS version="2.1" language="ja_JP" sourcelanguage="en_US">
|
||||
<context>
|
||||
<name>AppsListModel</name>
|
||||
<message>
|
||||
|
@ -305,7 +305,7 @@
|
|||
<message>
|
||||
<location filename="../choosebackground.ui" line="506"/>
|
||||
<source>Done</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">完了</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../choosebackground.cpp" line="93"/>
|
||||
|
@ -896,7 +896,7 @@
|
|||
<message>
|
||||
<location filename="../infopanedropdown.ui" line="2423"/>
|
||||
<source>Browse...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">参照...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../infopanedropdown.ui" line="2445"/>
|
||||
|
@ -1288,7 +1288,7 @@
|
|||
<location filename="../mainwindow.ui" line="152"/>
|
||||
<location filename="../mainwindow.cpp" line="1171"/>
|
||||
<source>Open Status Center</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">ステータスセンターを開く</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.ui" line="316"/>
|
||||
|
@ -1909,7 +1909,7 @@
|
|||
<message>
|
||||
<location filename="../rundialog.ui" line="50"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">キャンセル</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../rundialog.ui" line="81"/>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" sourcelanguage="en_US" language="ja_JP">
|
||||
<TS version="2.1" language="ja_JP" sourcelanguage="en_US">
|
||||
<context>
|
||||
<name>AddLocaleDialog</name>
|
||||
<message>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
#-------------------------------------------------
|
||||
|
||||
QT += core gui widgets dbus thelib ModemManagerQt NetworkManagerQt network
|
||||
QT += core gui widgets dbus thelib network
|
||||
|
||||
TARGET = tsnm
|
||||
TEMPLATE = lib
|
||||
|
@ -25,6 +25,21 @@ blueprint {
|
|||
DEFINES += "SHAREDIR=\\\"/usr/share/theshell/tsnm/\\\""
|
||||
}
|
||||
|
||||
#For some reason they got rid of QMake support, so we'll have to hack this in for now
|
||||
qtHaveModule(ModemManagerQt) {
|
||||
QT += ModemManagerQt
|
||||
} else {
|
||||
INCLUDEPATH += /usr/include/KF5/ModemManagerQt/
|
||||
LIBS += -lKF5ModemManagerQt
|
||||
}
|
||||
|
||||
qtHaveModule(NetworkManagerQt) {
|
||||
QT += NetworkManagerQt
|
||||
} else {
|
||||
INCLUDEPATH += /usr/include/KF5/NetworkManagerQt/
|
||||
LIBS += -lKF5NetworkManagerQt
|
||||
}
|
||||
|
||||
# The following define makes your compiler emit warnings if you use
|
||||
# any feature of Qt which has been marked as deprecated (the exact warnings
|
||||
# depend on your compiler). Please consult the documentation of the
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" sourcelanguage="en_US" language="vi_VN">
|
||||
<TS version="2.1" language="vi_VN" sourcelanguage="en_US">
|
||||
<context>
|
||||
<name>AddUserDialog</name>
|
||||
<message>
|
||||
|
|
Loading…
Reference in a new issue