diff --git a/src/filetransferinstance.cpp b/src/filetransferinstance.cpp
index 74a37504f..1706ccdd8 100644
--- a/src/filetransferinstance.cpp
+++ b/src/filetransferinstance.cpp
@@ -420,7 +420,7 @@ QString FileTransferInstance::draw2ButtonsForm(const QString &type, const QImage
content += "
";
content += "" + size + " | ";
content += "" + speed + " | ";
- content += "ETA: " + eta + " | ";
+ content += "" + tr("ETA") + ": " + eta + " | ";
content += "
";
content += progrBar;
content += " |
";
diff --git a/src/widget/form/chatform.cpp b/src/widget/form/chatform.cpp
index 46e5087ce..54aea2309 100644
--- a/src/widget/form/chatform.cpp
+++ b/src/widget/form/chatform.cpp
@@ -122,7 +122,7 @@ void ChatForm::onAttachClicked()
continue;
if (file.isSequential())
{
- QMessageBox::critical(0, "Bad Idea", "You're trying to send a special (sequential) file, that's not going to work!");
+ QMessageBox::critical(0, tr("Bad Idea"), tr("You're trying to send a special (sequential) file, that's not going to work!"));
file.close();
continue;
}
diff --git a/src/widget/form/settings/generalform.cpp b/src/widget/form/settings/generalform.cpp
index 4c3dfa298..fbc500156 100644
--- a/src/widget/form/settings/generalform.cpp
+++ b/src/widget/form/settings/generalform.cpp
@@ -58,7 +58,7 @@ GeneralForm::GeneralForm(SettingsWidget *myParent) :
if(QStyleFactory::keys().contains(Settings::getInstance().getStyle()))
bodyUI->styleBrowser->setCurrentText(Settings::getInstance().getStyle());
else
- bodyUI->styleBrowser->setCurrentText("None");
+ bodyUI->styleBrowser->setCurrentText(tr("None"));
bodyUI->autoAwaySpinBox->setValue(Settings::getInstance().getAutoAwayTime());
diff --git a/src/widget/netcamview.cpp b/src/widget/netcamview.cpp
index c38e47c61..b6bb6c5d8 100644
--- a/src/widget/netcamview.cpp
+++ b/src/widget/netcamview.cpp
@@ -25,7 +25,7 @@ NetCamView::NetCamView(QWidget* parent)
, mainLayout(new QHBoxLayout())
{
setLayout(mainLayout);
- setWindowTitle("Tox video");
+ setWindowTitle(tr("Tox video"));
setMinimumSize(320,240);
videoSurface = new VideoSurface(this);