polkit-kde also in kdereview
Albert Astals Cid
aacid at kde.org
Fri Nov 27 17:19:56 GMT 2009
A Dijous, 26 de novembre de 2009, Radek Novacek va escriure:
> Hi,
>
> I've already send an email to this list early this week about moving
> polkit- qt-1 to the kdereview. I also moved the Authentication agent to
> the kdereview. It was called PolicyKit-kde, but we decide to rename it to
> polkit-kde to be more consistent with upstream polkit and polkit-gnome
> naming.
>
> Radek Novacek
>
foreach(QString key, details->getKeys()) {
should be
foreach(const QString &key, details->getKeys()) {
keyLabel->setText(key + ":");
should be
keyLabel->setText(i18nc("some context about what %1 is", "%1:", key);
Albert
More information about the kde-core-devel
mailing list