GUI: mux: correct tooltip for "stretch by" inputs wrt. fractions

Part of the implementation of #3002.
This commit is contained in:
Moritz Bunkus 2021-01-15 19:59:28 +01:00
parent f3ee29d7d5
commit c72501416e
No known key found for this signature in database
GPG Key ID: 74AF00ADF2E32C85
2 changed files with 2 additions and 2 deletions

View File

@ -475,7 +475,7 @@ Tab::setupInputToolTips() {
Util::setToolTip(p.ui->stretchBy,
Q("<p>%1 %2</p><p>%3</p>")
.arg(QYH("Multiply this track's timestamps with a factor."))
.arg(QYH("The value can be given either as a floating point number (e.g. 12.345) or a fraction of integer values (e.g. 123/456)."))
.arg(QYH("The value can be given either as a floating point number (e.g. 12.345) or a fraction of numbers (e.g. 123/456.78)."))
.arg(QYH("This works well for video and subtitle tracks but should not be used with audio tracks.")));
Util::setToolTip(p.ui->defaultDuration,
Q("%1 %2 %3 %4")

View File

@ -226,7 +226,7 @@ Tab::setupOutputToolTips() {
Util::setToolTip(p.ui->chapterStretchBy,
Q("%1 %2")
.arg(QYH("Multiply the chapters' timestamps with a factor."))
.arg(QYH("The value can be given either as a floating point number (e.g. 12.345) or a fraction of integer values (e.g. 123/456).")));
.arg(QYH("The value can be given either as a floating point number (e.g. 12.345) or a fraction of numbers (e.g. 123/456.78).")));
Util::setToolTip(p.ui->chapterGenerationMode,
Q("<p>%1 %2</p><ol><li>%3</li><li>%4</li></ol><p>%5</p>")
.arg(QYH("mkvmerge can generate chapters automatically."))