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:
parent
6047ffe9e7
commit
fb5ed1c6b7
|
@ -420,7 +420,7 @@ QString FileTransferInstance::draw2ButtonsForm(const QString &type, const QImage
|
||||||
content += "<table cellspacing=\"0\"><tr>";
|
content += "<table cellspacing=\"0\"><tr>";
|
||||||
content += "<td>" + size + "</td>";
|
content += "<td>" + size + "</td>";
|
||||||
content += "<td align=center>" + speed + "</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 += "</tr><tr><td colspan=3>";
|
||||||
content += progrBar;
|
content += progrBar;
|
||||||
content += "</td></tr></table>";
|
content += "</td></tr></table>";
|
||||||
|
|
|
@ -122,7 +122,7 @@ void ChatForm::onAttachClicked()
|
||||||
continue;
|
continue;
|
||||||
if (file.isSequential())
|
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();
|
file.close();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,7 @@ GeneralForm::GeneralForm(SettingsWidget *myParent) :
|
||||||
if(QStyleFactory::keys().contains(Settings::getInstance().getStyle()))
|
if(QStyleFactory::keys().contains(Settings::getInstance().getStyle()))
|
||||||
bodyUI->styleBrowser->setCurrentText(Settings::getInstance().getStyle());
|
bodyUI->styleBrowser->setCurrentText(Settings::getInstance().getStyle());
|
||||||
else
|
else
|
||||||
bodyUI->styleBrowser->setCurrentText("None");
|
bodyUI->styleBrowser->setCurrentText(tr("None"));
|
||||||
|
|
||||||
bodyUI->autoAwaySpinBox->setValue(Settings::getInstance().getAutoAwayTime());
|
bodyUI->autoAwaySpinBox->setValue(Settings::getInstance().getAutoAwayTime());
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ NetCamView::NetCamView(QWidget* parent)
|
||||||
, mainLayout(new QHBoxLayout())
|
, mainLayout(new QHBoxLayout())
|
||||||
{
|
{
|
||||||
setLayout(mainLayout);
|
setLayout(mainLayout);
|
||||||
setWindowTitle("Tox video");
|
setWindowTitle(tr("Tox video"));
|
||||||
setMinimumSize(320,240);
|
setMinimumSize(320,240);
|
||||||
|
|
||||||
videoSurface = new VideoSurface(this);
|
videoSurface = new VideoSurface(this);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user