Skip to content

Commit

Permalink
fix capitalisation
Browse files Browse the repository at this point in the history
  • Loading branch information
rduivenvoorde authored and m-kuhn committed Sep 8, 2017
1 parent f0e021c commit 7a62746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/pluginmanager/qgspluginmanager.cpp
Expand Up @@ -900,7 +900,7 @@ void QgsPluginManager::showPluginDetails( QStandardItem *item )
if ( ! metadata->value( QStringLiteral( "changelog" ) ).isEmpty() )
{
html += QLatin1String( "<br/>" );
QString changelog = tr( "changelog:<br/>%1 <br/>" ).arg( metadata->value( QStringLiteral( "changelog" ) ) );
QString changelog = tr( "Changelog:<br/>%1 <br/>" ).arg( metadata->value( QStringLiteral( "changelog" ) ) );
html += changelog.replace( '\n', QLatin1String( "<br/>" ) );
}

Expand Down

0 comments on commit 7a62746

Please sign in to comment.