Bug 139616

Summary: Division names in 'Division by flag' result view not translated
Product: [Applications] kgeography Reporter: Marius <mariusst>
Component: generalAssignee: Albert Astals Cid <aacid>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description Marius 2007-01-05 00:48:42 UTC
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".
Comment 1 Pino Toscano 2007-01-05 01:33:18 UTC
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;
 }