[dummyqml] Make prettyName() return a sentence with .

This commit is contained in:
Adriaan de Groot 2020-01-10 17:47:02 +01:00
parent ce6d54ad95
commit 04615b251c
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ QString
QmlViewStep::prettyName() const
{
// TODO: query the QML itself
return tr( "QML Step <i>%1</i>" ).arg( m_name );
return tr( "QML Step <i>%1</i>." ).arg( m_name );
}

View File

@ -28,7 +28,7 @@ DummyQmlViewStep::~DummyQmlViewStep() {}
QString
DummyQmlViewStep::prettyName() const
{
return tr( "Example QML page" );
return tr( "Example QML page." );
}