Skip to content
Snippets Groups Projects
Commit 272c6b1d authored by Frank Meerkoetter's avatar Frank Meerkoetter Committed by Mark Kretschmann
Browse files

Bug 313504: Check validity of i18n calls

Check validity of i18n calls

    See:
    [...]
    Check validity of i18n calls [i18ncheckarg]...OOPS! 4 issues found!

        src/widgets/FilenameLayoutWidget.cpp: wrong argument count, have 1 need 0 line# 93 (1)
    [...]

The other issues reported in that section are false positives.
        src/playlistgenerator/constraints/Checkpoint.cpp: wrong argument count, have 0 need 1 line# 170 (1)
        src/playlistgenerator/constraints/TagMatch.cpp: wrong argument count, have 0 need 1 line# 184 (1)
        src/playlistgenerator/constraints/TagMatch.cpp: wrong argument count, have 0 need 4 line# 170 (1)
    [...]

REVIEW: 112141
BUG: 313504
parent 9f5d7ba3
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ FilenameLayoutWidget::FilenameLayoutWidget( QWidget *parent )
// - the preset buttons
m_addPresetButton = new QPushButton( i18n("Add preset"), this );
m_addPresetButton->setToolTip( i18n("Saves the current scheme/format above as a preset.", 0));
m_addPresetButton->setToolTip( i18n("Saves the current scheme/format above as a preset.") );
presetLayout1->addWidget( m_addPresetButton, 0 );
m_updatePresetButton = new QPushButton( i18n("Update preset"), this );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment