Bug 135290 - Mistake in kbabel string - "The file is not a XML"
Summary: Mistake in kbabel string - "The file is not a XML"
Status: RESOLVED UNMAINTAINED
Alias: None
Product: kbabel
Classification: Miscellaneous
Component: general (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Stanislav Visnovsky
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-08 14:49 UTC by Hobbsee
Modified: 2009-05-09 22:19 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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();