~neon/juk/master

« back to all changes in this revision

Viewing changes to tagrenameroptions.cpp

  • Committer: Michael Pyne
  • Date: 2011-04-26 00:55:51 UTC
  • Revision ID: git-v1:61b2e1deb11a186f67e44b0954efb6fb2f316f50
Properly translate tag editor messages with context.

Probably related to some of the other tag editor bugs that were noted, since
the effect of "untranslated" strings caused a bug which was noticed. It turns
out there /were/ translations available for those strings, but JuK was not
using them properly.

Noted and fixed by Giorgos Kylafas. I will backport to KDE SC 4.6.3.

CCMAIL:gekylafas@gmail.com

svn path=/trunk/KDE/kdemultimedia/juk/; revision=1229135

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
    }
128
128
 
129
129
    if(translate)
130
 
        return context ? i18n(msg) : i18nc(context, msg);
 
130
        return context ? i18nc(context, msg) : i18n(msg);
131
131
    else
132
132
        return msg;
133
133
}