1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

more strings for translation

This commit is contained in:
X-NicON 2014-10-29 19:25:47 +03:00
parent 6047ffe9e7
commit fb5ed1c6b7
4 changed files with 4 additions and 4 deletions

View File

@ -420,7 +420,7 @@ QString FileTransferInstance::draw2ButtonsForm(const QString &type, const QImage
content += "<table cellspacing=\"0\"><tr>";
content += "<td>" + size + "</td>";
content += "<td align=center>" + speed + "</td>";
content += "<td align=right>ETA: " + eta + "</td>";
content += "<td align=right>" + tr("ETA") + ": " + eta + "</td>";
content += "</tr><tr><td colspan=3>";
content += progrBar;
content += "</td></tr></table>";

View File

@ -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;
}

View File

@ -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());

View File

@ -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);