This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Check for some sort of english locale and if not found, include
// translate this for us message
if ( !lang.contains( "en_" ) )
if ( !lang.startsWith( "en_" ) )
{
// try en_US version if localized version is unavailable
if ( !file.exists() )
{
helpContents = missingError;
}
helpContents = tr( "(Showing English version as there was no help available in your language (%1). If you would like to create it, contact the QGIS translation team).<br>" ).arg( lang );
missingError += tr( "It was neither available in your language (%1) nor English." ).arg( lang );