Bug 135290

Summary: Mistake in kbabel string - "The file is not a XML"
Product: kbabel Reporter: Hobbsee <hobbsee>
Component: generalAssignee: Stanislav Visnovsky <visnovsky>
Status: RESOLVED UNMAINTAINED    
Severity: normal CC: shafff
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description Hobbsee 2006-10-08 14:49:24 UTC
Version:           unknown (using KDE 3.5.5, Kubuntu (edgy) 4:3.5.5-0ubuntu1)
Compiler:          Target: i486-linux-gnu
OS:                Linux (i686) release 2.6.17-10-generic

"The file is not a XML"
should be
"The file is not an XML"

Patch at http://librarian.launchpad.net/4704669/kbabel-string.patch

More info at https://launchpad.net/distros/ubuntu/+source/kdesdk/+bug/64681
Comment 1 Stephan Johach 2006-11-08 17:31:11 UTC
SVN commit 603352 by johach:

Fix spelling error. This is trunk (KDE 4)!
CCBUG:135290


 M  +1 -1      main.cc  


--- trunk/KDE/kdesdk/kbabel/datatools/regexp/main.cc #603351:603352
@@ -120,7 +120,7 @@
 	}
 	if ( ! doc.setContent( &file ) ) {
 		kDebug() << "Could not set content of xml file" << endl;
-		_error = i18n( "The file is not a XML" );
+		_error = i18n( "The file is not an XML" );
 		return;
 	}
 	file.close();