summaryrefslogtreecommitdiffhomepage
path: root/proto-ftn/ftnoir_protocol_ftn.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-11-05 13:04:42 +0100
committerStanislaw Halik <sthalik@misaki.pl>2016-11-05 13:07:34 +0100
commit395d606ab74c25e3c107e59a6b0933de9bf79d20 (patch)
tree7ccc69a7956564373a0a5c41c3dc1dce2b548980 /proto-ftn/ftnoir_protocol_ftn.h
parentdfa40a083dc3efaf665bc1f5e54633deda79a956 (diff)
modules: make more strings translatable
Diffstat (limited to 'proto-ftn/ftnoir_protocol_ftn.h')
-rw-r--r--proto-ftn/ftnoir_protocol_ftn.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto-ftn/ftnoir_protocol_ftn.h b/proto-ftn/ftnoir_protocol_ftn.h
index 28abf204..383b4ed7 100644
--- a/proto-ftn/ftnoir_protocol_ftn.h
+++ b/proto-ftn/ftnoir_protocol_ftn.h
@@ -38,7 +38,7 @@ public:
bool correct();
void pose(const double *headpose);
QString game_name() {
- return "UDP Tracker";
+ return QCoreApplication::translate("udp", "UDP Tracker");
}
private:
QUdpSocket outSocket;
@@ -64,6 +64,6 @@ private slots:
class udpDll : public Metadata
{
public:
- QString name() { return QString("UDP receiver"); }
+ QString name() { return QString(QCoreApplication::translate("udpDll", "UDP receiver")); }
QIcon icon() { return QIcon(":/images/facetracknoir.png"); }
};