Skip to content
Permalink
Browse files
-update locale/userLocal when default locale is use as well as when -…
…-lang= option is used so that thirdparty plugins can be in the same language as the rest of QGIS

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8497 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
ersts committed May 23, 2008
1 parent 07d7e10 commit 05c7ae3
Showing 1 changed file with 3 additions and 1 deletion.
@@ -431,7 +431,6 @@ int main(int argc, char *argv[])
/* Translation file for QGIS.
*/
QSettings mySettings;
QString mySystemLocale = QLocale::languageToString(QLocale::system().language());
QString myUserLocale = mySettings.value("locale/userLocale", "").toString();
bool myLocaleOverrideFlag = mySettings.value("locale/overrideFlag",false).toBool();
QString myLocale;
@@ -453,6 +452,9 @@ int main(int argc, char *argv[])
if (!myLocaleOverrideFlag || myUserLocale.isEmpty())
{
myTranslationCode = QLocale::system().name();
//setting the locale/userLocale when the --lang= option is not set will allow third party
//plugins to always use the same locale as the QGIS, otherwise they can be out of sync
mySettings.setValue("locale/userLocale", myTranslationCode);
}
else
{

0 comments on commit 05c7ae3

Please sign in to comment.