Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
translation string fixes
  • Loading branch information
jef-n committed Jul 24, 2018
1 parent 845e87a commit 1f1fcfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/auth/oauth2/qgsauthoauth2method.cpp
Expand Up @@ -454,7 +454,7 @@ void QgsAuthOAuth2Method::onRefreshFinished( QNetworkReply::NetworkError err )
QNetworkReply *reply = qobject_cast<QNetworkReply *>( sender() );
if ( err != QNetworkReply::NoError )
{
QgsMessageLog::logMessage( tr( "Token fefresh error: %1" ).arg( reply->errorString() ),
QgsMessageLog::logMessage( tr( "Token refresh error: %1" ).arg( reply->errorString() ),
AUTH_METHOD_KEY, Qgis::MessageLevel::Warning );
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/quickgui/qgsquickidentifykit.cpp
Expand Up @@ -180,7 +180,7 @@ QgsFeatureList QgsQuickIdentifyKit::identifyVectorLayer( QgsVectorLayer *layer,
}
catch ( QgsCsException &cse )
{
QgsDebugMsg( tr( "Invalid point and proceed with no features found." ) );
QgsDebugMsg( QStringLiteral( "Invalid point, proceed without a found features." ) );
Q_UNUSED( cse );
}

Expand Down

0 comments on commit 1f1fcfd

Please sign in to comment.