forked from teamnwah/openmw-tes3coop
[Browser] Mark few strings translatable
This commit is contained in:
parent
15723adb9a
commit
01a5196a92
1 changed files with 2 additions and 1 deletions
|
@ -142,7 +142,8 @@ void MainWindow::play()
|
||||||
if (sm->myData[sourceId].GetPassword() == 1)
|
if (sm->myData[sourceId].GetPassword() == 1)
|
||||||
{
|
{
|
||||||
bool ok;
|
bool ok;
|
||||||
QString passw = QInputDialog::getText(this, "Connecting to: " + sm->myData[sourceId].addr, "Password: ", QLineEdit::Password, "", &ok);
|
QString passw = QInputDialog::getText(this, tr("Connecting to: ") + sm->myData[sourceId].addr, tr("Password: "),
|
||||||
|
QLineEdit::Password, "", &ok);
|
||||||
if (!ok)
|
if (!ok)
|
||||||
return;
|
return;
|
||||||
arguments.append(QLatin1String("--password=") + passw.toLatin1());
|
arguments.append(QLatin1String("--password=") + passw.toLatin1());
|
||||||
|
|
Loading…
Reference in a new issue