summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Darmochwal2010-10-09 11:55:15 +0200
committerJan Darmochwal2010-10-09 11:55:15 +0200
commit030410da651e7df07352c85cc11fdc6ab2a75d45 (patch)
tree83c0f7f3994dc0f0980a137d63795e24d12e5c54 /src
parentFix for bugs in build.sh (diff)
downloadvmchooser-030410da651e7df07352c85cc11fdc6ab2a75d45.tar.gz
vmchooser-030410da651e7df07352c85cc11fdc6ab2a75d45.tar.xz
vmchooser-030410da651e7df07352c85cc11fdc6ab2a75d45.zip
Support for Utf8 in translations
use trUtf8() instead of tr()
Diffstat (limited to 'src')
-rw-r--r--src/dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialog.cpp b/src/dialog.cpp
index d359c75..2d6fecf 100644
--- a/src/dialog.cpp
+++ b/src/dialog.cpp
@@ -14,7 +14,7 @@ Dialog::Dialog(QWidget *parent)
if (ifaceDBus_->isValid()) {
// PVS is running
QStringList accessOptions;
- accessOptions << tr("None") << tr("View Only") << tr("Full");
+ accessOptions << trUtf8("None") << trUtf8("View Only") << trUtf8("Full");
ui->comboBoxLecturer->insertItems(0, accessOptions);
ui->comboBoxOthers->insertItems(0, accessOptions);