diff options
author | Stefan Oswald <stefan@homeunix.de> | 2010-04-11 19:35:02 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2010-04-11 19:35:02 (GMT) |
commit | 9086fe44667007b68197dcf9c2310cdb8d075fdd (patch) | |
tree | 8170789b679a1e0e98a0b117ec54e1f325376869 /wpa_supplicant/wpa_gui-qt4/eventhistory.cpp | |
parent | c56ce48a6f33f4c283e6aeb02c7e816c1c9a0ac8 (diff) | |
download | hostap-9086fe44667007b68197dcf9c2310cdb8d075fdd.zip hostap-9086fe44667007b68197dcf9c2310cdb8d075fdd.tar.gz hostap-9086fe44667007b68197dcf9c2310cdb8d075fdd.tar.bz2 |
wpa_gui: Convert strings to use tr() in user-visible text
This is in preparation for allowing wpa_gui to be translated.
Diffstat (limited to 'wpa_supplicant/wpa_gui-qt4/eventhistory.cpp')
-rw-r--r-- | wpa_supplicant/wpa_gui-qt4/eventhistory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wpa_supplicant/wpa_gui-qt4/eventhistory.cpp b/wpa_supplicant/wpa_gui-qt4/eventhistory.cpp index 46deb96..1eb0b7b 100644 --- a/wpa_supplicant/wpa_gui-qt4/eventhistory.cpp +++ b/wpa_supplicant/wpa_gui-qt4/eventhistory.cpp @@ -59,9 +59,9 @@ QVariant EventListModel::headerData(int section, Qt::Orientation orientation, if (orientation == Qt::Horizontal) { switch (section) { case 0: - return QString("Timestamp"); + return QString(tr("Timestamp")); case 1: - return QString("Message"); + return QString(tr("Message")); default: return QVariant(); } |