some translation changes, german ts file - version 1 incomplete.
--HG-- branch : develop
This commit is contained in:
parent
ecdbaebcba
commit
b7c60fc31e
2538
share/translations/valentina_de.ts
Normal file
2538
share/translations/valentina_de.ts
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -135,10 +135,10 @@ void MainWindow::ActionNewDraw()
|
||||||
QString nameDraw;
|
QString nameDraw;
|
||||||
bool bOk;
|
bool bOk;
|
||||||
qint32 index;
|
qint32 index;
|
||||||
QString nDraw = QString(tr("Drawing %1")).arg(comboBoxDraws->count()+1);
|
QString nDraw = QString(tr("Pattern piece %1")).arg(comboBoxDraws->count()+1);
|
||||||
QInputDialog *dlg = new QInputDialog(this);
|
QInputDialog *dlg = new QInputDialog(this);
|
||||||
dlg->setInputMode( QInputDialog::TextInput );
|
dlg->setInputMode( QInputDialog::TextInput );
|
||||||
dlg->setLabelText(tr("Drawing:"));
|
dlg->setLabelText(tr("Pattern piece:"));
|
||||||
dlg->setTextEchoMode(QLineEdit::Normal);
|
dlg->setTextEchoMode(QLineEdit::Normal);
|
||||||
dlg->setWindowTitle(tr("Enter a label for the pattern piece."));
|
dlg->setWindowTitle(tr("Enter a label for the pattern piece."));
|
||||||
dlg->resize(300, 100);
|
dlg->resize(300, 100);
|
||||||
|
@ -639,7 +639,7 @@ void MainWindow::ToolBarOption()
|
||||||
void MainWindow::ToolBarDraws()
|
void MainWindow::ToolBarDraws()
|
||||||
{
|
{
|
||||||
QLabel * labelNameDraw = new QLabel;
|
QLabel * labelNameDraw = new QLabel;
|
||||||
labelNameDraw ->setText(tr("Drawing: "));
|
labelNameDraw ->setText(tr("Pattern Piece: "));
|
||||||
ui->toolBarDraws->addWidget(labelNameDraw);
|
ui->toolBarDraws->addWidget(labelNameDraw);
|
||||||
|
|
||||||
comboBoxDraws = new QComboBox;
|
comboBoxDraws = new QComboBox;
|
||||||
|
@ -792,7 +792,7 @@ void MainWindow::CanselTool()
|
||||||
currentScene->clearSelection();
|
currentScene->clearSelection();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
qWarning()<<"Get wrong tool type. Ignore.";
|
qWarning()<<"Got wrong tool type. Ignored.";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1213,7 +1213,7 @@ void MainWindow::OpenPattern(const QString &fileName)
|
||||||
{
|
{
|
||||||
if (fileName.isEmpty())
|
if (fileName.isEmpty())
|
||||||
{
|
{
|
||||||
qWarning()<<tr("Can't open pattern file. File name empty")<<Q_FUNC_INFO;
|
qWarning()<<tr("Can't open pattern file. File name is empty")<<Q_FUNC_INFO;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
QFile file(fileName);
|
QFile file(fileName);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user