[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#329390: Simple bug in kcm_kcmlirc + patch



Package: kdelirc
Version: 3.4.2
All versions above 3.3


Hi, I found bug in newest kdelirc, the same like in:
http://bugs.kde.org/show_bug.cgi?id=75656

BUG is not resolved. I have Polish KDE and when I swich to English, everything is all right. Changing:
if(!QString(*i).find(i18n( "anonymous" ))) continue;
to
if(!QString(*i).find( "anonymous" )) continue;
in file addaction.cpp in void AddAction::updateObjects() at the end of file.
Compiling module again resolves my problem. Probably it is because Polish translation is not complite or some anonymouse processes are not using i18n :)
maybe it should be:

if(!QString(*i).find(i18n( "anonymous" ))) continue;
if(!QString(*i).find( "anonymous" )) continue;

?? This would be the best idea for English and non-english users.

--
With regards:
Konrad Materka




Reply to: