Merge branch 'Plasma/5.19'

wilder-portage-prov
Aleix Pol 6 years ago
commit 065c3c3961
  1. 1
      components/shellprivate/wallpaperplugin/wallpaperplugin.knsrc
  2. 2
      kcms/feedback/kcm_feedback.desktop
  3. 6
      runners/appstream/appstreamrunner.cpp

@ -14,6 +14,7 @@ Name[fi]=Taustakuvaliitännäiset
Name[fr]=Modules externes de fonds d'écran
Name[gl]=Complementos de fondo de escritorio
Name[hu]=Háttérképmodulok
Name[ia]=Plugind de tapete de papiro
Name[id]=Plugin-plugin Wallpaper
Name[it]=Estensioni per lo sfondo
Name[ko]=배경 그림 플러그인

@ -23,6 +23,7 @@ Name[fi]=Käyttäjäpalaute
Name[fr]=Retours des utilisateurs
Name[gl]=Achegas de usuario
Name[hu]=Felhasználói visszajelzés
Name[ia]=Responsa del usator
Name[id]=Tanggapan Pengguna
Name[it]=Segnalazioni dell'utente
Name[ja]=ユーザ フィードバック
@ -54,6 +55,7 @@ Comment[fi]=Käyttäjäpalautteen asetukset
Comment[fr]=Configurer les paramètres des retours des utilisateurs
Comment[gl]=Configurar as achegas de usuario
Comment[hu]=A felhasználói visszajelzések beállításai
Comment[ia]=Configura preferentias de retorno de usator
Comment[id]=Konfigurasikan pengaturan tanggapan pengguna
Comment[it]=Configura le impostazioni di segnalazione dell'utente
Comment[ko]=사용자 피드백 설정

@ -93,15 +93,15 @@ void InstallerRunner::match(Plasma::RunnerContext &context)
if (service->exec().isEmpty())
return false;
if (service->desktopEntryName() == componentId)
if (service->desktopEntryName().compare(componentId, Qt::CaseInsensitive) == 0)
return true;
const auto idWithoutDesktop = QString(componentId).remove(".desktop");
if (service->desktopEntryName() == idWithoutDesktop)
if (service->desktopEntryName().compare(idWithoutDesktop, Qt::CaseInsensitive) == 0)
return true;
const auto renamedFrom = service->property("X-Flatpak-RenamedFrom").toStringList();
if (renamedFrom.contains(componentId) || renamedFrom.contains(idWithoutDesktop))
if (renamedFrom.contains(componentId, Qt::CaseInsensitive) || renamedFrom.contains(idWithoutDesktop, Qt::CaseInsensitive))
return true;
return false;

Loading…
Cancel
Save