Version: (using KDE ) The Division names in the 'Division by flag' result view are not translated. This is certainly an error in kgeography and not an error in the translation as i have personally done the translation. Here is a screenshot: http://img211.imageshack.us/img211/5282/skjermbilde1by2.png Notice how it says "Western Sahara" instead of the translated "Vestsahara".
SVN commit 620012 by pino: Use the right translated form. BUG: 139616 M +1 -1 divisionflagasker.cpp --- branches/KDE/3.5/kdeedu/kgeography/src/divisionflagasker.cpp #620011:620012 @@ -41,7 +41,7 @@ setQuestion(i18n(p_map -> getFileName().utf8(), s.utf8())); } p_currentAnswer.setCorrectAnswer(im); - p_currentAnswer.setQuestion(division); + p_currentAnswer.setQuestion(i18n(p_map -> getFileName().utf8(), division.utf8())); } return true; }