add missing Norwegian language for linux platform

This commit is contained in:
Maciej Czerniak 2013-06-11 16:39:33 +02:00
parent ef319da264
commit eb79c01003
1 changed files with 4 additions and 0 deletions

View File

@ -160,6 +160,10 @@ ccLanguageType CCApplication::getCurrentLanguage()
{
ret = kLanguageArabic;
}
else if (0 == strcmp("nb", pLanguageName))
{
ret = kLanguageNorwegian;
}
return ret;
}