Bug#1107813: unblock: kdeconnect/25.04.2-1
Package: release.debian.org
Severity: normal
X-Debbugs-Cc: kdeconnect@packages.debian.org, Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Control: affects -1 + src:kdeconnect
User: release.debian.org@packages.debian.org
Usertags: unblock
Dear Release Team,
please unblock package kdeconnect.
[ Reason ]
It contains the following changes:
* New upstream release (25.04.2).
- Change qtdbus-qt5 to qtdbus-qt6 in the sample commands logic to find the
qdbus executable name.
- Kcm: fix memory leak in devicesRemoved().
- Fix mpris sessions changed event handler.
- Add plugin settings dep.
- Make KF6DocTools optional.
- Sendnotifications: Add missing qRegisterMetaType<>().
* Update build-deps and deps with the info from cmake.
The complete debdiff is quite big due to translation updates so I’m
attaching a simple diff trimmed from these for your conveninence:
diff -ur --exclude=po --exclude=*.desktop --exclude=*.json kdeconnect-25.04.0+git20250504.28fb9142 kdeconnect-25.04.2
[ Tests ]
[ Risks ]
Only backport of upstream commits that apply cleanly. Further fixes can
easily be backported or the changes reverted.
[ Checklist ]
[x] all changes are documented in the d/changelog
[x] I reviewed all changes and I approve them
[x] attach debdiff against the package in testing
Thanks!
unblock kdeconnect/25.04.2-1
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/app/CMakeLists.txt kdeconnect-25.04.2/app/CMakeLists.txt
--- kdeconnect-25.04.0+git20250504.28fb9142/app/CMakeLists.txt 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/app/CMakeLists.txt 2025-06-03 05:21:10.000000000 +0200
@@ -43,7 +43,7 @@
qml/WelcomePage.qml
)
-target_link_libraries(kdeconnect-app PRIVATE Qt::Quick Qt::QuickControls2 Qt::Widgets KF6::CoreAddons KF6::I18n KF6::KCMUtils KF6::Crash)
+target_link_libraries(kdeconnect-app PRIVATE Qt::Quick Qt::QuickControls2 Qt::Widgets KF6::CoreAddons KF6::I18n KF6::KCMUtils KF6::Crash KF6::ItemModels)
install(TARGETS kdeconnect-app ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
install(PROGRAMS org.kde.kdeconnect.app.desktop DESTINATION ${KDE_INSTALL_APPDIR})
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/app/org.kde.kdeconnect.app.desktop kdeconnect-25.04.2/app/org.kde.kdeconnect.app.desktop
--- kdeconnect-25.04.0+git20250504.28fb9142/app/org.kde.kdeconnect.app.desktop 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/app/org.kde.kdeconnect.app.desktop 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,6 @@
[Desktop Entry]
Name=KDE Connect
-Name[ar]=كِيدِي المتّصل
+Name[ar]=جسر كِيدِي
Name[ast]=KDE Connect
Name[az]=KDE Connect
Name[bg]=KDE Connect
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/CMakeLists.txt kdeconnect-25.04.2/CMakeLists.txt
--- kdeconnect-25.04.0+git20250504.28fb9142/CMakeLists.txt 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/CMakeLists.txt 2025-06-03 05:21:10.000000000 +0200
@@ -3,7 +3,7 @@
# KDE Release Service Version, managed by release script
set (RELEASE_SERVICE_VERSION_MAJOR "25")
set (RELEASE_SERVICE_VERSION_MINOR "04")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
project(kdeconnect VERSION ${RELEASE_SERVICE_VERSION})
@@ -102,7 +102,13 @@
endif()
find_package(KF6 ${KF_MIN_VERSION} REQUIRED COMPONENTS I18n ConfigWidgets DBusAddons IconThemes Notifications
- KIO KCMUtils Service Solid Kirigami People WindowSystem GuiAddons DocTools Crash)
+ KIO KCMUtils Service Solid Kirigami People WindowSystem GuiAddons Crash ItemModels)
+
+find_package(KF6DocTools ${KF_MIN_VERSION})
+set_package_properties(KF6DocTools PROPERTIES DESCRIPTION
+ "Tools to generate documentation"
+ TYPE OPTIONAL
+)
if (WIN32)
get_filename_component(WINDOWS_KITS_DIR
@@ -141,10 +147,11 @@
add_subdirectory(plasmoid)
endif()
-add_subdirectory(doc)
-kdoctools_install(po)
-
ki18n_install(po)
+if(KF6DocTools_FOUND)
+ kdoctools_install(po)
+ add_subdirectory(doc)
+endif()
if(BUILD_TESTING)
add_subdirectory(tests)
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/daemon/org.kde.kdeconnect.daemon.desktop.cmake kdeconnect-25.04.2/daemon/org.kde.kdeconnect.daemon.desktop.cmake
--- kdeconnect-25.04.0+git20250504.28fb9142/daemon/org.kde.kdeconnect.daemon.desktop.cmake 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/daemon/org.kde.kdeconnect.daemon.desktop.cmake 2025-06-03 05:21:10.000000000 +0200
@@ -8,7 +8,7 @@
Icon=kdeconnect
Name=KDE Connect
-Name[ar]=كِيدِي المتّصل
+Name[ar]=جسر كِيدِي
Name[ast]=KDE Connect
Name[az]=KDE Connect
Name[bg]=KDE Connect
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/data/kdeconnect-dde.desktop kdeconnect-25.04.2/data/kdeconnect-dde.desktop
--- kdeconnect-25.04.0+git20250504.28fb9142/data/kdeconnect-dde.desktop 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/data/kdeconnect-dde.desktop 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
Exec=kdeconnect-handler %F
Icon=kdeconnect
Name=Send via KDE Connect
-Name[ar]=أرسل عبر خدمة «كِيدِي المتّصل»
+Name[ar]=أرسل عبر خدمة «جسر كِيدِي»
Name[az]=KDE Connect ilə göndərin
Name[bg]=Изпратете чрез KDE Connect
Name[ca]=Envia a través del KDE Connect
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/data/kdeconnect-thunar.desktop kdeconnect-25.04.2/data/kdeconnect-thunar.desktop
--- kdeconnect-25.04.0+git20250504.28fb9142/data/kdeconnect-thunar.desktop 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/data/kdeconnect-thunar.desktop 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
Exec=kdeconnect-handler %F
Icon=kdeconnect
Name=Send via KDE Connect
-Name[ar]=أرسل عبر خدمة «كِيدِي المتّصل»
+Name[ar]=أرسل عبر خدمة «جسر كِيدِي»
Name[az]=KDE Connect ilə göndərin
Name[bg]=Изпратете чрез KDE Connect
Name[ca]=Envia a través del KDE Connect
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/data/org.kde.kdeconnect.metainfo.xml kdeconnect-25.04.2/data/org.kde.kdeconnect.metainfo.xml
--- kdeconnect-25.04.0+git20250504.28fb9142/data/org.kde.kdeconnect.metainfo.xml 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/data/org.kde.kdeconnect.metainfo.xml 2025-06-03 05:21:10.000000000 +0200
@@ -4,7 +4,7 @@
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-2.0+</project_license>
<name>KDE Connect</name>
- <name xml:lang="ar">كِيدِي المتّصل</name>
+ <name xml:lang="ar">جسر كِيدِي</name>
<name xml:lang="ast">KDE Connect</name>
<name xml:lang="az">KDE Connect</name>
<name xml:lang="bg">KDE Connect</name>
@@ -111,7 +111,7 @@
<description>
<p>KDE Connect makes your phone and computer work better together: share your clipboard and access files across devices, turn your phone into a remote control for your computer, find your phone when it has slipped down the back of your couch, see your phone notifications from your computer, and much more!
</p>
- <p xml:lang="ar">يجعل كيدي المتصل هاتفك والحاسوب يعملان معًا بشكل أفضل: شارك حافظتك وقم بالوصول إلى الملفات عبر الأجهزة، وحول هاتفك إلى جهاز تحكم عن بعد لحاسوبك وابحث عن هاتفك عندما ينزلق إلى أسفل الأريكة، وشاهد إشعارات هاتفك من حاسوبك، وأكثر من ذلك بكثير!</p>
+ <p xml:lang="ar">يجعل جسر كِيدِي هاتفك والحاسوب يعملان معًا بشكل أفضل: شارك حافظتك وقم بالوصول إلى الملفات عبر الأجهزة، وحول هاتفك إلى جهاز تحكم عن بعد لحاسوبك وابحث عن هاتفك عندما ينزلق أسفل الأريكة، وشاهد إشعارات هاتفك من حاسوبك، وأكثر من ذلك بكثير!</p>
<p xml:lang="bg">KDE Connect подобрява връзката между телефона и компютъра с допълнителни функции като: споделяне на вашите данни от клипборда и достъп до файлове на различни устройства, превръщане на телефона в дистанционно за вашия компютър, намиране на телефона (например, когато се е плъзнал зад дивана), възможност за преглед на телефонните известия на вашия компютър и много други!</p>
<p xml:lang="ca">El KDE Connect fa que el telèfon i l'ordinador funcionin millor junts: compartiu el porta-retalls i accediu a fitxers entre els dispositius, convertiu el telèfon en un control remot de l'ordinador, trobeu el telèfon quan s'escoli per la part posterior del sofà, vegeu les notificacions del telèfon des de l'ordinador i molt més!</p>
<p xml:lang="ca-valencia">KDE Connect fa que el telèfon i l'ordinador funcionen millor junts: compartiu el porta-retalls i accediu a fitxers entre els dispositius, convertiu el telèfon en un control remot de l'ordinador, trobeu el telèfon quan s'escoli per la part posterior del sofà, vegeu les notificacions del telèfon des de l'ordinador i molt més!</p>
@@ -188,6 +188,7 @@
<value key="KDE::supporters">[fat_malama](https://www.instagram.com/fat_malama/); Alexandru Traistaru; Neeko iko; Daniel Lloyd-Miller; [mdPlusPlus](https://github.com/mdPlusPlus)</value>
</custom>
<releases>
+ <release version="25.04.2" date="2025-06-05"/>
<release version="25.04.1" date="2025-05-08"/>
<release version="25.04.0" date="2025-04-17"/>
<release version="24.12.3" date="2025-03-06"/>
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/debian/changelog kdeconnect-25.04.2/debian/changelog
--- kdeconnect-25.04.0+git20250504.28fb9142/debian/changelog 2025-05-04 18:39:07.000000000 +0200
+++ kdeconnect-25.04.2/debian/changelog 2025-06-07 01:20:50.000000000 +0200
@@ -1,3 +1,18 @@
+kdeconnect (25.04.2-1) unstable; urgency=medium
+
+ [ Aurélien COUDERC ]
+ * New upstream release (25.04.2).
+ - Change qtdbus-qt5 to qtdbus-qt6 in the sample commands logic to find the
+ qdbus executable name.
+ - Kcm: fix memory leak in devicesRemoved().
+ - Fix mpris sessions changed event handler.
+ - Add plugin settings dep.
+ - Make KF6DocTools optional.
+ - Sendnotifications: Add missing qRegisterMetaType<>().
+ * Update build-deps and deps with the info from cmake.
+
+ -- Aurélien COUDERC <coucouf@debian.org> Sat, 07 Jun 2025 01:20:50 +0200
+
kdeconnect (25.04.0+git20250504.28fb9142-1) unstable; urgency=medium
[ Aurélien COUDERC ]
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/debian/control kdeconnect-25.04.2/debian/control
--- kdeconnect-25.04.0+git20250504.28fb9142/debian/control 2025-04-17 19:00:02.000000000 +0200
+++ kdeconnect-25.04.2/debian/control 2025-06-07 01:20:50.000000000 +0200
@@ -23,6 +23,7 @@
libkf6guiaddons-dev (>= 6.0.0~),
libkf6i18n-dev (>= 6.0.0~),
libkf6iconthemes-dev (>= 6.0.0~),
+ libkf6itemmodels-dev (>= 6.0.0~),
libkf6kcmutils-dev (>= 6.0.0~),
libkf6kio-dev (>= 6.0.0~),
libkf6modemmanagerqt-dev (>= 6.0.0~),
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/fileitemactionplugin/kdeconnectsendfile.json kdeconnect-25.04.2/fileitemactionplugin/kdeconnectsendfile.json
--- kdeconnect-25.04.0+git20250504.28fb9142/fileitemactionplugin/kdeconnectsendfile.json 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/fileitemactionplugin/kdeconnectsendfile.json 2025-06-03 05:21:10.000000000 +0200
@@ -1,7 +1,7 @@
{
"KPlugin": {
"Description": "Send file to other device using KDE Connect",
- "Description[ar]": "أرسل ملف إلى جهاز أخر باستعمال كِيدِي المتصل",
+ "Description[ar]": "أرسل ملف إلى جهاز أخر باستعمال جسر كِيدِي",
"Description[az]": "Digər cihazlara KDE Connect ilə fayl göndərin",
"Description[bg]": "Изпращане на файл до друго устройство чрез KDE Connect",
"Description[ca@valencia]": "Envia fitxers a un altre dispositiu mitjançant KDE Connect",
@@ -54,7 +54,7 @@
"application/octet-stream"
],
"Name": "Send file via KDE Connect",
- "Name[ar]": "أرسل ملف عبر كِيدِي المتصل",
+ "Name[ar]": "أرسل ملف عبر جسر كِيدِي",
"Name[az]": "Faylı KDE Connect ilə göndərin",
"Name[bg]": "Изпращане на файл чрез KDE Connect",
"Name[ca@valencia]": "Envia el fitxer a través de KDE Connect",
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/.gitlab-ci.yml kdeconnect-25.04.2/.gitlab-ci.yml
--- kdeconnect-25.04.0+git20250504.28fb9142/.gitlab-ci.yml 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/.gitlab-ci.yml 2025-06-03 05:21:10.000000000 +0200
@@ -16,7 +16,13 @@
- /gitlab-templates/clang-format.yml
- /gitlab-templates/craft-windows-x86-64-qt6.yml
- /gitlab-templates/craft-windows-appx-qt6.yml
- - /gitlab-templates/craft-macos-x86-64-qt6.yml
- - /gitlab-templates/craft-macos-arm64-qt6.yml
- /gitlab-templates/xml-lint.yml
- /gitlab-templates/yaml-lint.yml
+ - project: sysadmin/ci-utilities
+ file:
+ - /gitlab-templates/craft-macos-x86-64-qt6.yml
+ - /gitlab-templates/craft-macos-arm64-qt6.yml
+ rules:
+ - if: $CI_COMMIT_BRANCH =~ /^release\//
+ when: never
+ - when: always
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/indicator/org.kde.kdeconnect.nonplasma.desktop kdeconnect-25.04.2/indicator/org.kde.kdeconnect.nonplasma.desktop
--- kdeconnect-25.04.0+git20250504.28fb9142/indicator/org.kde.kdeconnect.nonplasma.desktop 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/indicator/org.kde.kdeconnect.nonplasma.desktop 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,6 @@
[Desktop Entry]
Name=KDE Connect Indicator
-Name[ar]=مؤشر «كِيدِي المتّصل»
+Name[ar]=مؤشر «جسر كِيدِي»
Name[az]=KDE Connect göstəricisi
Name[bg]=Индикатор за свързване на KDE
Name[ca]=Indicador del KDE Connect
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/kcm/kcm.cpp kdeconnect-25.04.2/kcm/kcm.cpp
--- kdeconnect-25.04.0+git20250504.28fb9142/kcm/kcm.cpp 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/kcm/kcm.cpp 2025-06-03 05:21:10.000000000 +0200
@@ -234,9 +234,9 @@
}
// If current device no longer exists, unselect it
if (devicesModel->rowForDevice(currentDevice->id()) == -1) {
+ delete currentDevice;
currentDevice = nullptr;
kcmUi.deviceInfo->setVisible(false);
- delete currentDevice;
}
}
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/kcm/kcm_kdeconnect.json kdeconnect-25.04.2/kcm/kcm_kdeconnect.json
--- kdeconnect-25.04.0+git20250504.28fb9142/kcm/kcm_kdeconnect.json 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/kcm/kcm_kdeconnect.json 2025-06-03 05:21:10.000000000 +0200
@@ -31,6 +31,7 @@
"Description[pt_BR]": "Configurar sincronização do dispositivo",
"Description[ru]": "Настройка синхронизации устройства",
"Description[sa]": "उपकरणसमन्वयनं विन्यस्यताम्",
+ "Description[sk]": "Konfigurácia synchronizácie zariadenia",
"Description[sl]": "Konfiguriraj sinhronizacijo naprave",
"Description[sv]": "Anpassa enhetssynkronisering",
"Description[ta]": "சாதன ஒத்திசைவு அமைப்புகள்",
@@ -41,7 +42,7 @@
"Description[zh_TW]": "設定裝置同步",
"Icon": "preferences-kde-connect",
"Name": "KDE Connect",
- "Name[ar]": "كِيدِي المتّصل",
+ "Name[ar]": "جسر كِيدِي",
"Name[az]": "KDE Connect",
"Name[bg]": "KDE Connect",
"Name[ca@valencia]": "KDE Connect",
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plasmoid/package/metadata.json kdeconnect-25.04.2/plasmoid/package/metadata.json
--- kdeconnect-25.04.0+git20250504.28fb9142/plasmoid/package/metadata.json 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plasmoid/package/metadata.json 2025-06-03 05:21:10.000000000 +0200
@@ -80,6 +80,7 @@
"Description[pt_BR]": "Gerenciar dispositivos conectados",
"Description[ru]": "Управление подключёнными устройствами",
"Description[sa]": "संयोजितयन्त्राणां प्रबन्धनं कुर्वन्तु",
+ "Description[sk]": "Spravovať pripojené zariadenia",
"Description[sl]": "Upravljaj povezane naprave",
"Description[sv]": "Hantera anslutna apparater",
"Description[ta]": "இணைந்துள்ள சாதனங்களை நிர்வகிக்க விடும்",
@@ -93,7 +94,7 @@
"Id": "org.kde.kdeconnect",
"License": "GPL",
"Name": "KDE Connect",
- "Name[ar]": "كِيدِي المتّصل",
+ "Name[ar]": "جسر كِيدِي",
"Name[az]": "KDE Connect",
"Name[bg]": "KDE Connect",
"Name[ca@valencia]": "KDE Connect",
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/bigscreen/kdeconnect_bigscreen.json kdeconnect-25.04.2/plugins/bigscreen/kdeconnect_bigscreen.json
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/bigscreen/kdeconnect_bigscreen.json 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/bigscreen/kdeconnect_bigscreen.json 2025-06-03 05:21:10.000000000 +0200
@@ -90,6 +90,7 @@
"Description[ro]": "Trimite comenzi vocale spre televizorul ce rulează Plasma Bigscreen",
"Description[ru]": "Передача голосовых команд на телевизор под управлением Plasma Bigscreen",
"Description[sa]": "Plasma Bigscreen चालयन्तं स्वस्य टीवीं प्रति स्वर-आदेशं प्रेषयन्तु",
+ "Description[sk]": "Odosielanie hlasových príkazov do televízora Plasma Bigscreen",
"Description[sl]": "Pošljite glasovne ukaze vašemu televizorju, kjer teče Plasma Bigscreen",
"Description[sv]": "Skicka röstkommandon till en tv-apparat som kör Plasma storbildsskärm",
"Description[ta]": "பிளாஸ்மா பெருந்திரையைப் பயன்படுத்தும் தொலைக்காட்சிக்கு குரல்வழி கட்டளைகளை அனுப்பும்",
@@ -137,6 +138,7 @@
"Name[ro]": "Control vocal pentru ecranul mare",
"Name[ru]": "Голосовое управление Bigscreen",
"Name[sa]": "बिगस्क्रीन् स्वरनियन्त्रणम्",
+ "Name[sk]": "Hlasové ovládanie na veľkej obrazovke",
"Name[sl]": "Glasovni nadzor velikega zaslona",
"Name[sv]": "Röstkontroll av storskärm",
"Name[ta]": "பெருந்திரை குரல்வழி கட்டுப்பாடு",
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/contacts/kdeconnect_contacts.json kdeconnect-25.04.2/plugins/contacts/kdeconnect_contacts.json
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/contacts/kdeconnect_contacts.json 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/contacts/kdeconnect_contacts.json 2025-06-03 05:21:10.000000000 +0200
@@ -90,6 +90,7 @@
"Description[ro]": "Sincronizare contacte de pe dispozitivul conectat pe calculator",
"Description[ru]": "Синхронизация контактов с подключённого устройства на компьютер",
"Description[sa]": "संयोजितयन्त्रात् डेस्कटॉप् प्रति सम्पर्कं समन्वययन्तु",
+ "Description[sk]": "Synchronizácia kontaktov z pripojeného zariadenia na počítač",
"Description[sl]": "Uskladi stike iz povezane naprave na namizje",
"Description[sv]": "Synkronisera kontakter från ansluten enhet till skrivbordet",
"Description[ta]": "இணைந்துள்ள சாதனத்திலுள்ள தொடர்புகளை கணினியுடன் பகிரும்",
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/findmyphone/kdeconnect_findmyphone.json kdeconnect-25.04.2/plugins/findmyphone/kdeconnect_findmyphone.json
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/findmyphone/kdeconnect_findmyphone.json 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/findmyphone/kdeconnect_findmyphone.json 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
{
"Email": "apparle@gmail.com",
"Name": "Apoorv Parle",
- "Name[ar]": "Apoorv Parle",
+ "Name[ar]": "أبورف بارلي",
"Name[az]": "Apoorv Parle",
"Name[bg]": "Apoorv Parle",
"Name[ca@valencia]": "Apoorv Parle",
@@ -167,7 +167,7 @@
"Icon": "edit-find",
"License": "GPL",
"Name": "Ring my phone",
- "Name[ar]": "رنّ هاتفي",
+ "Name[ar]": "رنّ على هاتفي",
"Name[az]": "Telfonuma zəng göndərmək",
"Name[bg]": "Позвъняване на моя телефон",
"Name[ca@valencia]": "Fes sonar el meu telèfon",
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/kdeconnect.notifyrc kdeconnect-25.04.2/plugins/kdeconnect.notifyrc
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/kdeconnect.notifyrc 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/kdeconnect.notifyrc 2025-06-03 05:21:10.000000000 +0200
@@ -1,7 +1,7 @@
[Global]
IconName=kdeconnect
Name=KDE Connect
-Name[ar]=كِيدِي المتّصل
+Name[ar]=جسر كِيدِي
Name[ast]=KDE Connect
Name[az]=KDE Connect
Name[bg]=KDE Connect
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/mmtelephony/kdeconnect_mmtelephony.json kdeconnect-25.04.2/plugins/mmtelephony/kdeconnect_mmtelephony.json
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/mmtelephony/kdeconnect_mmtelephony.json 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/mmtelephony/kdeconnect_mmtelephony.json 2025-06-03 05:21:10.000000000 +0200
@@ -135,6 +135,7 @@
"Name[ro]": "Integrare telefonie prin ModemManager",
"Name[ru]": "Интеграция телефонии ModemManager",
"Name[sa]": "ModemManager दूरभाष एकीकरण",
+ "Name[sk]": "Integrácia ModemManager Telephony",
"Name[sl]": "Upravljalnik modema integracija telefonije",
"Name[sv]": "Integrering av modemhanteraren Telephony",
"Name[tr]": "ModemManager Telephony tümleştirmesi",
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/mpriscontrol/mpriscontrolplugin-win.cpp kdeconnect-25.04.2/plugins/mpriscontrol/mpriscontrolplugin-win.cpp
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/mpriscontrol/mpriscontrolplugin-win.cpp 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/plugins/mpriscontrol/mpriscontrolplugin-win.cpp 2025-06-03 05:21:10.000000000 +0200
@@ -30,12 +30,17 @@
MprisControlPlugin::MprisControlPlugin(QObject *parent, const QVariantList &args)
: KdeConnectPlugin(parent, args)
+ , sessionManager(NULL)
{
try {
- auto sessionManager = GlobalSystemMediaTransportControlsSessionManager::RequestAsync().get();
- sessionManager.SessionsChanged([this](GlobalSystemMediaTransportControlsSessionManager, SessionsChangedEventArgs) {
- this->updatePlayerList();
- });
+ sessionManager = GlobalSystemMediaTransportControlsSessionManager::RequestAsync().get();
+ if (sessionManager) {
+ sessionManager.SessionsChanged([this](GlobalSystemMediaTransportControlsSessionManager, SessionsChangedEventArgs) {
+ this->updatePlayerList();
+ });
+ } else {
+ qCWarning(KDECONNECT_PLUGIN_MPRISCONTROL) << "Failed to obtain Session Manager.";
+ }
} catch (winrt::hresult_error e) {
qCWarning(KDECONNECT_PLUGIN_MPRISCONTROL) << "Failed to register mediaSessionsChanged listener";
}
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/mpriscontrol/mpriscontrolplugin-win.h kdeconnect-25.04.2/plugins/mpriscontrol/mpriscontrolplugin-win.h
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/mpriscontrol/mpriscontrolplugin-win.h 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/mpriscontrol/mpriscontrolplugin-win.h 2025-06-03 05:21:10.000000000 +0200
@@ -40,7 +40,7 @@
private:
QHash<QString, GlobalSystemMediaTransportControlsSession> playerList;
-
+ GlobalSystemMediaTransportControlsSessionManager sessionManager;
std::vector<GlobalSystemMediaTransportControlsSession::PlaybackInfoChanged_revoker> playbackInfoChangedHandlers;
std::vector<GlobalSystemMediaTransportControlsSession::MediaPropertiesChanged_revoker> mediaPropertiesChangedHandlers;
std::vector<GlobalSystemMediaTransportControlsSession::TimelinePropertiesChanged_revoker> timelinePropertiesChangedHandlers;
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/runcommand/runcommand_config.cpp kdeconnect-25.04.2/plugins/runcommand/runcommand_config.cpp
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/runcommand/runcommand_config.cpp 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/runcommand/runcommand_config.cpp 2025-06-03 05:21:10.000000000 +0200
@@ -30,7 +30,7 @@
: KdeConnectPluginKcm(parent, data, args)
{
// The qdbus executable name is different on some systems
- QString qdbusExe = QStringLiteral("qdbus-qt5");
+ QString qdbusExe = QStringLiteral("qdbus-qt6");
if (QStandardPaths::findExecutable(qdbusExe).isEmpty()) {
qdbusExe = QStringLiteral("qdbus");
}
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/screensaver-inhibit/kdeconnect_screensaver_inhibit.json kdeconnect-25.04.2/plugins/screensaver-inhibit/kdeconnect_screensaver_inhibit.json
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/screensaver-inhibit/kdeconnect_screensaver_inhibit.json 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/screensaver-inhibit/kdeconnect_screensaver_inhibit.json 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
{
"Email": "pmdematagoda@mykolab.ch",
"Name": "Pramod Dematagoda",
- "Name[ar]": "Pramod Dematagoda",
+ "Name[ar]": "برامود ديماتاجودا",
"Name[az]": "Pramod Dematagoda",
"Name[bg]": "Pramod Dematagoda",
"Name[ca@valencia]": "Pramod Dematagoda",
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/sendnotifications/notifyingapplicationmodel.cpp kdeconnect-25.04.2/plugins/sendnotifications/notifyingapplicationmodel.cpp
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/sendnotifications/notifyingapplicationmodel.cpp 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/sendnotifications/notifyingapplicationmodel.cpp 2025-06-03 05:21:10.000000000 +0200
@@ -19,6 +19,7 @@
NotifyingApplicationModel::NotifyingApplicationModel(QObject *parent)
: QAbstractTableModel(parent)
{
+ qRegisterMetaType<NotifyingApplication>("NotifyingApplication");
}
QVector<NotifyingApplication> NotifyingApplicationModel::apps()
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/sendnotifications/sendnotificationsplugin.cpp kdeconnect-25.04.2/plugins/sendnotifications/sendnotificationsplugin.cpp
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/sendnotifications/sendnotificationsplugin.cpp 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/sendnotifications/sendnotificationsplugin.cpp 2025-06-03 05:21:10.000000000 +0200
@@ -5,6 +5,7 @@
*/
#include "sendnotificationsplugin.h"
+#include "notifyingapplication.h"
#if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN)
#include "dbusnotificationslistener.h"
@@ -21,6 +22,7 @@
SendNotificationsPlugin::SendNotificationsPlugin(QObject *parent, const QVariantList &args)
: KdeConnectPlugin(parent, args)
{
+ qRegisterMetaType<NotifyingApplication>("NotifyingApplication");
#if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN)
notificationsListener = new DBusNotificationsListener(this);
#elif defined(Q_OS_WIN)
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/plugins/virtualmonitor/kdeconnect_virtualmonitor.json kdeconnect-25.04.2/plugins/virtualmonitor/kdeconnect_virtualmonitor.json
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/virtualmonitor/kdeconnect_virtualmonitor.json 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/virtualmonitor/kdeconnect_virtualmonitor.json 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
{
"Email": "aleixpol@kde.org",
"Name": "Aleix Pol i Gonzalez",
- "Name[ar]": "Aleix Pol i Gonzalez",
+ "Name[ar]": "ألكس بول غنزالز",
"Name[az]": "Aleix Pol i Gonzalez",
"Name[bg]": "Aleix Pol i Gonzalez",
"Name[ca@valencia]": "Aleix Pol i Gonzalez",
@@ -84,6 +84,7 @@
"Name[ro]": "Fabian Arndt",
"Name[ru]": "Fabian Arndt",
"Name[sa]": "फबियन आर्न्ड्ट्",
+ "Name[sk]": "Fabian Arndt",
"Name[sl]": "Fabian Arndt",
"Name[sv]": "Fabian Arndt",
"Name[tr]": "Fabian Arndt",
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-app.po kdeconnect-25.04.2/po/ar/kdeconnect-app.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-app.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-app.po 2025-06-03 05:21:10.000000000 +0200
@@ -8,7 +8,7 @@
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2025-03-02 10:45+0400\n"
+"PO-Revision-Date: 2025-05-31 18:06+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -22,7 +22,7 @@
#: main.cpp:29 main.cpp:31
#, kde-format
msgid "KDE Connect"
-msgstr "كِيدِي المتّصل"
+msgstr "جسر كِيدِي"
#: main.cpp:33
#, kde-format
@@ -37,7 +37,7 @@
#: main.cpp:34
#, kde-format
msgid "Maintainer"
-msgstr "المصين"
+msgstr "الصائن"
#: main.cpp:35
#, kde-format
@@ -182,13 +182,13 @@
#, kde-format
msgctxt "@action:button"
msgid "Refresh"
-msgstr "أنعش"
+msgstr "حدّث"
#: qml/Main.qml:76
#, kde-format
msgctxt "@action:button accessible"
msgid "Refresh Devices"
-msgstr "أنعش الأجهزة"
+msgstr "حدّث الأجهزة"
#: qml/Main.qml:112
#, kde-format
@@ -321,7 +321,7 @@
#: qml/Settings.qml:73
#, kde-format
msgid "About KDE Connect"
-msgstr "عن كِيدِي المتّصل"
+msgstr "عن جسر كِيدِي"
#: qml/Settings.qml:81
#, kde-format
@@ -338,13 +338,13 @@
#, kde-format
msgctxt "@info"
msgid "Make sure to install KDE Connect on your other devices."
-msgstr "تأكد من تثبيت برنامج كيدي المتصل على أجهزتك الأخرى."
+msgstr "تأكد من تثبيت برنامج جسر كِيدِي على أجهزتك الأخرى."
#: qml/WelcomePage.qml:42
#, kde-format
msgctxt "@title:context"
msgid "KDE Connect Android App"
-msgstr "تطبيق كِيدِي المتّصل لأندرويد"
+msgstr "تطبيق جسر كِيدِي لأندرويد"
#: qml/WelcomePage.qml:49
#, kde-format
@@ -362,7 +362,7 @@
#, kde-format
msgctxt "@title:context"
msgid "KDE Connect iOS App"
-msgstr "تطبيق كِيدِي المتّصل لاي أو أس"
+msgstr "تطبيق جسر كِيدِي لاي أو أس"
#: qml/WelcomePage.qml:67
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-cli.po kdeconnect-25.04.2/po/ar/kdeconnect-cli.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-cli.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-cli.po 2025-06-03 05:21:10.000000000 +0200
@@ -8,7 +8,7 @@
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2024-12-23 00:40+0000\n"
-"PO-Revision-Date: 2024-12-26 09:10+0400\n"
+"PO-Revision-Date: 2025-05-31 17:32+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -32,22 +32,22 @@
#: kdeconnect-cli.cpp:32
#, kde-format
msgid "KDE Connect CLI tool"
-msgstr "أداة سطر أوامر ل«كِيدِي المتّصل»"
+msgstr "أداة سطر أوامر لـ«جسر كِيدِي»"
#: kdeconnect-cli.cpp:34
#, kde-format
msgid "(C) 2015 Aleix Pol Gonzalez"
-msgstr "© 2015 Aleix Pol Gonzalez"
+msgstr "(©) 2015 أليكس بول غونزاليس"
#: kdeconnect-cli.cpp:39
#, kde-format
msgid "Aleix Pol Gonzalez"
-msgstr "Aleix Pol Gonzalez"
+msgstr "أليكس بول غونزاليس"
#: kdeconnect-cli.cpp:40
#, kde-format
msgid "Albert Vaca Cintora"
-msgstr "Albert Vaca Cintora"
+msgstr "ألبرت فاكا سينتورا"
#: kdeconnect-cli.cpp:42
#, kde-format
@@ -261,7 +261,7 @@
#: kdeconnect-cli.cpp:136
#, kde-format
msgid "No devices found"
-msgstr "لا أجهزة"
+msgstr "لا يوجد أجهزة"
#: kdeconnect-cli.cpp:154
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-core.po kdeconnect-25.04.2/po/ar/kdeconnect-core.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-core.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-core.po 2025-06-03 05:21:10.000000000 +0200
@@ -8,7 +8,7 @@
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-02-24 00:41+0000\n"
-"PO-Revision-Date: 2025-03-02 10:45+0400\n"
+"PO-Revision-Date: 2025-05-31 17:33+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -126,7 +126,7 @@
#: kdeconnectconfig.cpp:348 kdeconnectconfig.cpp:382
#, kde-format
msgid "KDE Connect failed to start"
-msgstr "فشل بدء «كِيدِي المتّصل»"
+msgstr "فشل بدء «جسر كِيدِي»"
#: kdeconnectconfig.cpp:348
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-fileitemaction.po kdeconnect-25.04.2/po/ar/kdeconnect-fileitemaction.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-fileitemaction.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-fileitemaction.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,13 +1,13 @@
-# Copyright (C) YEAR This file is copyright:
+# Copyright (C) 2025 This file is copyright:
# This file is distributed under the same license as the kdeconnect-kde package.
+# SPDX-FileCopyrightText: 2022, 2025 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
#
-# Zayed Al-Saidi <zayed.alsaidi@gmail.com>, 2022.
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2023-11-05 12:32+0000\n"
-"PO-Revision-Date: 2022-09-12 22:27+0400\n"
+"PO-Revision-Date: 2025-05-31 17:33+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -16,13 +16,14 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+"X-Generator: Lokalize 23.08.5\n"
#: sendfileitemaction.cpp:72
#, kde-format
msgid "Send via KDE Connect"
-msgstr "أرسل عبر كِيدِي المتّصل"
+msgstr "أرسل عبر جسر كِيدِي"
#: sendfileitemaction.cpp:79
#, kde-format
msgid "Send to '%1' via KDE Connect"
-msgstr "أرسل إلى '%1' عبر كِيدِي المتّصل"
+msgstr "أرسل إلى '%1' عبر جسر كِيدِي"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-indicator.po kdeconnect-25.04.2/po/ar/kdeconnect-indicator.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-indicator.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-indicator.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-07-28 12:23+0400\n"
+"PO-Revision-Date: 2025-05-31 17:34+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -67,7 +67,7 @@
#: indicatorhelper_mac.cpp:47 indicatorhelper_mac.cpp:58
#, kde-format
msgid "KDE Connect"
-msgstr "كِيدِي المتّصل"
+msgstr "جسر كِيدِي"
#: indicatorhelper_mac.cpp:48
#, kde-format
@@ -86,12 +86,12 @@
#: main.cpp:57
#, kde-format
msgid "KDE Connect Indicator"
-msgstr "مؤشر كِيدِي المتّصل"
+msgstr "مؤشر جسر كِيدِي"
#: main.cpp:59
#, kde-format
msgid "KDE Connect Indicator tool"
-msgstr "أداة مؤشر كِيدِي المتّصل"
+msgstr "أداة مؤشر جسر كِيدِي"
#: main.cpp:61
#, kde-format
@@ -101,7 +101,7 @@
#: main.cpp:102
#, kde-format
msgid "Configure..."
-msgstr "اضبط..."
+msgstr "اضبط…"
#: main.cpp:128
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-kcm.po kdeconnect-25.04.2/po/ar/kdeconnect-kcm.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-kcm.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-kcm.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,14 +1,14 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
-#
# Safa Alfulaij <safa1996alfulaij@gmail.com>, 2015, 2016, 2017.
-# SPDX-FileCopyrightText: 2021, 2023, 2024 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
+# SPDX-FileCopyrightText: 2021, 2023, 2024, 2025 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
+#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-12-26 09:12+0400\n"
+"PO-Revision-Date: 2025-05-31 17:55+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -32,7 +32,7 @@
#: kcm.cpp:110
#, kde-format
msgid "Error: KDE Connect is not running"
-msgstr "خطأ: كيدي متصل لا يعمل"
+msgstr "خطأ: جسر كِيدِي لا يعمل"
#: kcm.cpp:134
#, kde-format
@@ -97,7 +97,7 @@
#: kcm.ui:58
#, kde-format
msgid "KDE Connect"
-msgstr "كِيدِي المتّصل"
+msgstr "جسر كِيدِي"
#. i18n: ectx: property (text), widget (QToolButton, renameShow_button)
#: kcm.ui:81
@@ -196,16 +196,16 @@
msgstr ""
"<html><head/><body><p>لم يحدد أي جهاز.<br><br>إن كنت تملك جهاز أندرويد، تأكّد "
"من تثبيت <a href=\"https://play.google.com/store/apps/details?id=org.kde."
-"kdeconnect_tp\"><span style=\" text-decoration: underline;\">تطبيق «كِيدِي "
-"المتّصل» لأندويد</span></a> (متوفّر أيضًا <a href=\"https://f-droid.org/"
+"kdeconnect_tp\"><span style=\" text-decoration: underline;\">تطبيق «جسر "
+"كِيدِي» لأندويد</span></a> (متوفّر أيضًا <a href=\"https://f-droid.org/"
"repository/browse/?fdid=org.kde.kdeconnect_tp\"><span style=\" text-"
"decoration: underline; color:#cba;\">في F-Droid</span></a>) وسيظهر الجهاز في "
"القائمة. إذا كنت تملك هاتف أيفون، تأكد من تثبيت <a href=\"https://apps."
"apple.com/us/app/kde-connect/id1580245991\"><span style=\" text-decoration: "
-"underline;\">KDE Connect iOS app</span></a> <br><br>إذا واجهتك مشكلة فزر <a "
-"href=\"https://userbase.kde.org/KDEConnect\"><span style=\" text-decoration: "
-"underline; color:#cba;\">ويكي كِيدِي المتصل</span></a> للمساعدة.</p></body></"
-"html>"
+"underline;\">تطبيق جسر كِيدِي أي أوس</span></a> <br><br>إذا واجهتك مشكلة فزر "
+"<a href=\"https://userbase.kde.org/KDEConnect\"><span style=\" text-"
+"decoration: underline; color:#cba;\">ويكي جسر كِيدِي</span></a> للمساعدة.</p></"
+"body></html>"
#: list.qml:52
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-kded.po kdeconnect-25.04.2/po/ar/kdeconnect-kded.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-kded.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-kded.po 2025-06-03 05:21:10.000000000 +0200
@@ -8,7 +8,7 @@
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-05-25 16:29+0400\n"
+"PO-Revision-Date: 2025-05-31 17:37+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -56,7 +56,7 @@
#: kdeconnectd.cpp:71 kdeconnectd.cpp:73
#, kde-format
msgid "KDE Connect Daemon"
-msgstr "عفريت كِيدِي المتصل"
+msgstr "عفريت جسر كِيدِي"
#: kdeconnectd.cpp:100
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-kio.po kdeconnect-25.04.2/po/ar/kdeconnect-kio.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-kio.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-kio.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,14 +1,14 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# Safa Alfulaij <safa1996alfulaij@gmail.com>, 2015.
-# SPDX-FileCopyrightText: 2021, 2024 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
+# SPDX-FileCopyrightText: 2021, 2024, 2025 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2024-12-24 00:40+0000\n"
-"PO-Revision-Date: 2024-12-26 09:09+0400\n"
+"PO-Revision-Date: 2025-05-31 17:37+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -22,12 +22,12 @@
#: kiokdeconnect.cpp:75
#, kde-format
msgid "Listing devices..."
-msgstr "يسرد الأجهزة..."
+msgstr "يسرد الأجهزة…"
#: kiokdeconnect.cpp:120
#, kde-format
msgid "Accessing device..."
-msgstr "ينفذ إلى الجهاز..."
+msgstr "ينفذ إلى الجهاز…"
#: kiokdeconnect.cpp:135
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-nautilus-extension.po kdeconnect-25.04.2/po/ar/kdeconnect-nautilus-extension.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-nautilus-extension.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-nautilus-extension.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,13 +1,13 @@
-# Copyright (C) YEAR This file is copyright:
+# Copyright (C) 2025 This file is copyright:
# This file is distributed under the same license as the kdeconnect-kde package.
+# SPDX-FileCopyrightText: 2022, 2025 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
#
-# Zayed Al-Saidi <zayed.alsaidi@gmail.com>, 2022.
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2023-11-05 12:32+0000\n"
-"PO-Revision-Date: 2022-09-12 22:33+0400\n"
+"PO-Revision-Date: 2025-05-31 17:37+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -16,12 +16,13 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+"X-Generator: Lokalize 23.08.5\n"
#: kdeconnect-share.py:105
#, python-format
msgid "Send to %s via KDE Connect"
-msgstr "أرسل إلى %s عبر كِيدِي المتّصل"
+msgstr "أرسل إلى %s عبر جسر كِيدِي"
#: kdeconnect-share.py:112
msgid "Send via KDE Connect"
-msgstr "أرسِل عبر كِيدِي المتّصل"
+msgstr "أرسِل عبر جسر كِيدِي"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-plugins.po kdeconnect-25.04.2/po/ar/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,8 +7,8 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-01-17 17:21+0400\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
+"PO-Revision-Date: 2025-05-31 17:38+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -249,7 +249,7 @@
msgstr "استورد"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "الاسم"
@@ -274,22 +274,22 @@
msgid "Phone is connected"
msgstr "الهاتف متصل"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "ممنوع"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "اسم التّطبيق المُخطر."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "أأزامن إخطارات التّطبيق؟"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
@@ -396,7 +396,7 @@
#: sftp/sftpplugin-win.cpp:79
#, kde-format
msgid "KDE Connect"
-msgstr "كِيدِي المتّصل"
+msgstr "جسر كِيدِي"
#: sftp/sftpplugin-win.cpp:80
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-settings.po kdeconnect-25.04.2/po/ar/kdeconnect-settings.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-settings.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-settings.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2022-09-12 22:34+0400\n"
+"PO-Revision-Date: 2025-05-31 17:38+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -31,7 +31,7 @@
#: main.cpp:27 main.cpp:29
#, kde-format
msgid "KDE Connect Settings"
-msgstr "إعدادات كِيدِي المتّصل"
+msgstr "إعدادات جسر كِيدِي"
#: main.cpp:31
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-sms.po kdeconnect-25.04.2/po/ar/kdeconnect-sms.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-sms.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-sms.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2025-03-03 22:34+0400\n"
+"PO-Revision-Date: 2025-05-31 17:39+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -66,7 +66,7 @@
#: main.cpp:50 qml/Main.qml:73
#, kde-format
msgid "KDE Connect SMS"
-msgstr "رسائل نصية لكِيدِي المتّصل"
+msgstr "رسائل نصية لجسر كِيدِي"
#: main.cpp:52
#, kde-format
@@ -76,7 +76,7 @@
#: main.cpp:54
#, kde-format
msgid "(C) 2018-2022, KDE Connect Team"
-msgstr "(©) 2018-2022 فريق كِيدِي المتّصل"
+msgstr "(©) 2018-2022 فريق جسر كِيدِي"
#: main.cpp:55
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-urlhandler.po kdeconnect-25.04.2/po/ar/kdeconnect-urlhandler.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/kdeconnect-urlhandler.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/kdeconnect-urlhandler.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2022-11-21 19:12+0400\n"
+"PO-Revision-Date: 2025-05-31 17:39+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -55,7 +55,7 @@
#: kdeconnect-handler.cpp:44
#, kde-format
msgid "KDE Connect URL handler"
-msgstr "معالج عناوين «كِيدِي المتّصل»"
+msgstr "معالج عناوين «جسر كِيدِي»"
#: kdeconnect-handler.cpp:50
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ar/plasma_applet_org.kde.kdeconnect.po kdeconnect-25.04.2/po/ar/plasma_applet_org.kde.kdeconnect.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ar/plasma_applet_org.kde.kdeconnect.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/ar/plasma_applet_org.kde.kdeconnect.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,14 +1,14 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
-#
# Safa Alfulaij <safa1996alfulaij@gmail.com>, 2016.
-# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
+# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
+#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2024-07-13 00:39+0000\n"
-"PO-Revision-Date: 2024-07-28 12:24+0400\n"
+"PO-Revision-Date: 2025-05-31 17:40+0400\n"
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
"Language-Team: ar\n"
"Language: ar\n"
@@ -67,7 +67,7 @@
#: package/contents/ui/DeviceDelegate.qml:124
#, kde-format
msgid "Ring my phone"
-msgstr "رنّ هاتفي"
+msgstr "رنّ على هاتفي"
#: package/contents/ui/DeviceDelegate.qml:135
#, kde-format
@@ -185,7 +185,7 @@
#: package/contents/ui/FullRepresentation.qml:67
#, kde-format
msgid "Install KDE Connect on your Android device to integrate it with Plasma!"
-msgstr "قم بتثبيت KDE Connect على جهاز أندرويد الخاص بك لدمجه مع بلازما!"
+msgstr "قم بتثبيت جسر كِيدِي على جهاز أندرويد الخاص بك لدمجه مع بلازما!"
#: package/contents/ui/FullRepresentation.qml:71
#, kde-format
@@ -205,7 +205,7 @@
#: package/contents/ui/main.qml:55
#, kde-format
msgid "KDE Connect Settings…"
-msgstr "إعدادات «كِيدِي المتّصل»…"
+msgstr "إعدادات «جسر كِيدِي»…"
#~ msgid "Save As"
#~ msgstr "احفظ كَ"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ast/kdeconnect-plugins.po kdeconnect-25.04.2/po/ast/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ast/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ast/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-03-27 23:45+0100\n"
"Last-Translator: Enol P. <enolp@softastur.org>\n"
"Language-Team: Asturian <alministradores@softastur.org>\n"
@@ -247,7 +247,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr ""
@@ -272,22 +272,22 @@
msgid "Phone is connected"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/az/kdeconnect-plugins.po kdeconnect-25.04.2/po/az/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/az/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/az/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-10-11 18:10+0400\n"
"Last-Translator: Kheyyam <xxmn77@gmail.com>\n"
"Language-Team: Azerbaijani <kde-i18n-doc@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "İdxal et"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Adı"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Telefon qoşulub"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Qara siyahıda"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Bildiriş verən tətbiqin adı."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Tətbiqin bildirişləri eyniləşdirilsin?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/bg/kdeconnect-plugins.po kdeconnect-25.04.2/po/bg/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/bg/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/bg/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-11-09 20:04+0100\n"
"Last-Translator: Mincho Kondarev <mkondarev@yahoo.de>\n"
"Language-Team: Bulgarian <kde-i18n-doc@kde.org>\n"
@@ -249,7 +249,7 @@
msgstr "Импортиране"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Име"
@@ -274,22 +274,22 @@
msgid "Phone is connected"
msgstr "Телефонът е свързан"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Блокиран"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Име на приложението за известяване."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Да се синхронизира с приложението за известяване?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/bs/kdeconnect-plugins.po kdeconnect-25.04.2/po/bs/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/bs/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/bs/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: bosnianuniversetranslation\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2015-02-22 23:17+0100\n"
"Last-Translator: Samir Ribić <megaribi@epn.ba>\n"
"Language-Team: Bosnian <bs@li.org>\n"
@@ -252,7 +252,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr ""
@@ -277,22 +277,22 @@
msgid "Phone is connected"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ca/kdeconnect-plugins.po kdeconnect-25.04.2/po/ca/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ca/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ca/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-08-29 12:27+0200\n"
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -251,7 +251,7 @@
msgstr "Importa"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nom"
@@ -276,22 +276,22 @@
msgid "Phone is connected"
msgstr "El telèfon està connectat"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Es troba a la llista negra"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nom d'una aplicació amb notificacions."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sincronitzo les notificacions d'una aplicació?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ca@valencia/kdeconnect-plugins.po kdeconnect-25.04.2/po/ca@valencia/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ca@valencia/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ca@valencia/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-08-29 12:27+0200\n"
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -251,7 +251,7 @@
msgstr "Importa"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nom"
@@ -276,22 +276,22 @@
msgid "Phone is connected"
msgstr "El telèfon està connectat"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Es troba en la llista negra"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nom d'una aplicació amb notificacions."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sincronitze les notificacions d'una aplicació?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ca@valencia/kdeconnect-sms.po kdeconnect-25.04.2/po/ca@valencia/kdeconnect-sms.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ca@valencia/kdeconnect-sms.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ca@valencia/kdeconnect-sms.po 2025-06-03 05:21:10.000000000 +0200
@@ -141,7 +141,7 @@
"your device and then click Refresh."
msgstr ""
"S'estan carregant les converses del dispositiu. Si açò tarda massa, "
-"desperteu el dispositiu i feu clic en Actualitza."
+"desperteu el dispositiu i cliqueu damunt «Actualitza»."
#: qml/ConversationList.qml:56
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/cs/kdeconnect-plugins.po kdeconnect-25.04.2/po/cs/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/cs/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/cs/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-10-12 16:38+0200\n"
"Last-Translator: Vit Pelcak <vit@pelcak.org>\n"
"Language-Team: Czech <kde-i18n-doc@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "Importovat"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Název"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Telefon je připojen"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Na černé listině"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Název upozorňující aplikace."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Synchronizovat oznámení aplikace?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/da/kdeconnect-plugins.po kdeconnect-25.04.2/po/da/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/da/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/da/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-07-17 13:53+0200\n"
"Last-Translator: rasmus rosendahl-kaa <rasmus@rosendahl-kaa.name>\n"
"Language-Team: Danish <kde-i18n-doc@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "Importér"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Navn"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Telefonen er tilsluttet"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Sortlistet"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Navn på et program der bekendtgør noget."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Synkronisér bekendtgørelser fra et program?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/de/kdeconnect-plugins.po kdeconnect-25.04.2/po/de/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/de/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/de/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-12-28 17:05+0100\n"
"Last-Translator: Johannes Obermayr <johannesobermayr@gmx.de>\n"
"Language-Team: German <kde-i18n-de@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "Importieren"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Name"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Telefon ist verbunden"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Sperrliste"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Name der benachrichtigenden Anwendung."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Benachrichtigungen einer Anwendung abgleichen?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/el/kdeconnect-plugins.po kdeconnect-25.04.2/po/el/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/el/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/el/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-09-19 21:43+0300\n"
"Last-Translator: Antonis Geralis <capoiosct@gmail.com>\n"
"Language-Team: Greek <kde-i18n-el@kde.org>\n"
@@ -249,7 +249,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Όνομα"
@@ -276,22 +276,22 @@
msgid "Phone is connected"
msgstr "Το τηλέφωνο είναι συνδεδεμένο"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Σε μαύρη λίστα"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Όνομα εφαρμογής της ειδοποίησης."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Συγχρονισμός των ειδοποιήσεων κάποιας εφαρμογής;"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/en_GB/kdeconnect-plugins.po kdeconnect-25.04.2/po/en_GB/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/en_GB/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/en_GB/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-05-21 19:32+0100\n"
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
"Language-Team: British English\n"
@@ -247,7 +247,7 @@
msgstr "Import"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Name"
@@ -272,22 +272,22 @@
msgid "Phone is connected"
msgstr "Phone is connected"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Blacklisted"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Name of a notifying application."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Synchronise notifications of an application?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/eo/kdeconnect-plugins.po kdeconnect-25.04.2/po/eo/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/eo/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/eo/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-05-10 11:33+0100\n"
"Last-Translator: Oliver Kellogg <olivermkellogg@gmail.com>\n"
"Language-Team: Esperanto <kde-i18n-eo@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "Importi"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nomo"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Telefono estas konektita"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Nigrolistigita"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nomo de sciiga aplikaĵo."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Ĉu sinkronigi sciigojn pri aplikaĵo?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/es/kdeconnect-plugins.po kdeconnect-25.04.2/po/es/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/es/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/es/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-09-02 17:30+0200\n"
"Last-Translator: Víctor Rodrigo Córdoba <vrcordoba@gmail.com>\n"
"Language-Team: Spanish <kde-l10n-es@kde.org>\n"
@@ -250,7 +250,7 @@
msgstr "Importar"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nombre"
@@ -275,22 +275,22 @@
msgid "Phone is connected"
msgstr "El teléfono está conectado"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Excluida"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nombre de una aplicación que notifica."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "¿Sincronizar las notificaciones de una aplicación?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/et/kdeconnect-plugins.po kdeconnect-25.04.2/po/et/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/et/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/et/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2020-10-11 01:31+0200\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <>\n"
@@ -251,7 +251,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nimi"
@@ -278,22 +278,22 @@
msgid "Phone is connected"
msgstr "Telefon on ühendatud"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Mustas nimekirjas"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Märguanderakenduse ni8mi."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Kas sünkroonida rakenduse märguanded?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/eu/kdeconnect-plugins.po kdeconnect-25.04.2/po/eu/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/eu/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/eu/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-10-26 17:47+0200\n"
"Last-Translator: Iñigo Salvador Azurmendi <xalba@ni.eus>\n"
"Language-Team: Basque <kde-i18n-eu@kde.org>\n"
@@ -252,7 +252,7 @@
msgstr "Inportatu"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Izena"
@@ -277,22 +277,22 @@
msgid "Phone is connected"
msgstr "Telefonoa konektatuta dago"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Zerrenda beltzean"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Jakinarazteko aplikazio baten izena."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sinkronizatu aplikazio baten jakinarazpenak?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/fa/kdeconnect-app.po kdeconnect-25.04.2/po/fa/kdeconnect-app.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/fa/kdeconnect-app.po 1970-01-01 01:00:00.000000000 +0100
+++ kdeconnect-25.04.2/po/fa/kdeconnect-app.po 2025-06-03 05:21:10.000000000 +0200
@@ -0,0 +1,380 @@
+# Copyright (C) 2025 This file is copyright:
+# This file is distributed under the same license as the kdeconnect-kde package.
+#
+# SPDX-FileCopyrightText: 2025 Sohrab Behdani <behdanisohrab@gmail.com>
+# SPDX-FileCopyrightText: 2025 Alireza Rashidi <injaneb@dock.com>
+msgid ""
+msgstr ""
+"Project-Id-Version: kdeconnect-kde\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
+"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"PO-Revision-Date: 2025-05-27 14:36+0330\n"
+"Last-Translator: Sohrab Behdani <behdanisohrab@gmail.com>\n"
+"Language-Team: fa\n"
+"Language: fa\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"X-Generator: Lokalize 25.04.1\n"
+
+#: main.cpp:29 main.cpp:31
+#, kde-format
+msgid "KDE Connect"
+msgstr "کیدیای کانکت"
+
+#: main.cpp:33
+#, kde-format
+msgid "(c) 2015, Aleix Pol Gonzalez"
+msgstr "(C) 2015 Aleix Pol Gonzalez"
+
+#: main.cpp:34
+#, kde-format
+msgid "Aleix Pol Gonzalez"
+msgstr "Aleix Pol Gonzalez"
+
+#: main.cpp:34
+#, kde-format
+msgid "Maintainer"
+msgstr "نگهدارنده"
+
+#: main.cpp:35
+#, kde-format
+msgctxt "NAME OF TRANSLATORS"
+msgid "Your names"
+msgstr "علیرضا رشیدی"
+
+#: main.cpp:35
+#, kde-format
+msgctxt "EMAIL OF TRANSLATORS"
+msgid "Your emails"
+msgstr "injaneb@duck.com"
+
+#: main.cpp:63
+#, kde-format
+msgid "URL to share"
+msgstr "پیوند برای همرسانی"
+
+#: qml/DevicePage.qml:28
+#, kde-format
+msgid "Unpair"
+msgstr "جداسازی"
+
+#: qml/DevicePage.qml:33
+#, kde-format
+msgid "Send Ping"
+msgstr "صدا زدن"
+
+#: qml/DevicePage.qml:41 qml/PluginSettings.qml:20
+#, kde-format
+msgid "Plugin Settings"
+msgstr "تنظیمات افزونه"
+
+#: qml/DevicePage.qml:60
+#, kde-format
+msgctxt "@title:group device page section header"
+msgid "Actions"
+msgstr "کنشها"
+
+#: qml/DevicePage.qml:62
+#, kde-format
+msgctxt "@title:group device page section header"
+msgid "Controls"
+msgstr "کنترلها"
+
+#: qml/DevicePage.qml:108
+#, kde-format
+msgid "Multimedia control"
+msgstr "کنترل رسانه"
+
+#: qml/DevicePage.qml:116
+#, kde-format
+msgid "Remote input"
+msgstr "ورودی دوردست"
+
+#: qml/DevicePage.qml:124 qml/runcommand.qml:16
+#, kde-format
+msgid "Run command"
+msgstr "اجرای دستور"
+
+#: qml/DevicePage.qml:132 qml/presentationRemote.qml:15
+#, kde-format
+msgid "Presentation Remote"
+msgstr "کنترل نمایش"
+
+#: qml/DevicePage.qml:140 qml/volume.qml:16
+#, kde-format
+msgid "Volume control"
+msgstr "کنترل صدا"
+
+#: qml/DevicePage.qml:150 qml/mousepad.qml:44
+#, kde-format
+msgid "Lock"
+msgstr "قفل"
+
+#: qml/DevicePage.qml:150
+#, kde-format
+msgid "Unlock"
+msgstr "قفلگشایی"
+
+#: qml/DevicePage.qml:158
+#, kde-format
+msgid "Find Device"
+msgstr "یافتن دستگاه"
+
+#: qml/DevicePage.qml:166
+#, kde-format
+msgid "Send Clipboard"
+msgstr "فرستادن بریدهدان"
+
+#: qml/DevicePage.qml:173
+#, kde-format
+msgid "Share File"
+msgstr "همرسانی پرونده"
+
+#: qml/DevicePage.qml:183
+#, kde-format
+msgid "This device is not paired."
+msgstr "این دستگاه جفت نشده است."
+
+#: qml/DevicePage.qml:187
+#, kde-format
+msgctxt "Request pairing with a given device"
+msgid "Pair"
+msgstr "جفت کردن"
+
+#: qml/DevicePage.qml:194 qml/DevicePage.qml:203
+#, kde-format
+msgid ""
+"Pair requested\n"
+"Key: "
+msgstr ""
+"درخواست جفتسازی\n"
+"کلید: "
+
+#: qml/DevicePage.qml:209
+#, kde-format
+msgid "Accept"
+msgstr "پذیرش"
+
+#: qml/DevicePage.qml:215
+#, kde-format
+msgid "Reject"
+msgstr "رد"
+
+#: qml/DevicePage.qml:226
+#, kde-format
+msgid "This device is not reachable"
+msgstr "این دستگاه در دسترس نیست"
+
+#: qml/DevicePage.qml:234
+#, kde-format
+msgid "Please choose a file"
+msgstr "پروندهای برگزینید"
+
+#: qml/Main.qml:66
+#, kde-format
+msgid "Devices"
+msgstr "دستگاهها"
+
+#: qml/Main.qml:74
+#, kde-format
+msgctxt "@action:button"
+msgid "Refresh"
+msgstr "نوسازی"
+
+#: qml/Main.qml:76
+#, kde-format
+msgctxt "@action:button accessible"
+msgid "Refresh Devices"
+msgstr "نوسازی دستگاهها"
+
+#: qml/Main.qml:112
+#, kde-format
+msgid "Remembered"
+msgstr "شناخته شده"
+
+#: qml/Main.qml:114
+#, kde-format
+msgid "Available"
+msgstr "در دسترس"
+
+#: qml/Main.qml:116
+#, kde-format
+msgid "Connected"
+msgstr "پیوسته"
+
+#: qml/Main.qml:121
+#, kde-format
+msgid "No devices found"
+msgstr "دستگاهی یافت نشد"
+
+#: qml/Main.qml:193 qml/Main.qml:208
+#, kde-format
+msgid "Settings"
+msgstr "تنظیمات"
+
+#: qml/mousepad.qml:16
+#, kde-format
+msgid "Remote Control"
+msgstr "کنترل دوردست"
+
+#: qml/mousepad.qml:61
+#, kde-format
+msgid "Press %1 or the left and right mouse buttons at the same time to unlock"
+msgstr "برای گشودن قفل، %1 یا دکمههای چپ و راست موشواره را همزمان فشار دهید"
+
+#: qml/mousepad.qml:213
+#, kde-format
+msgctxt "@action:button accessible"
+msgid "Left Click"
+msgstr "کلیک چپ"
+
+#: qml/mousepad.qml:222
+#, kde-format
+msgctxt "@action:button accessible"
+msgid "Middle Click"
+msgstr "کلیک میانی"
+
+#: qml/mousepad.qml:231
+#, kde-format
+msgctxt "@action:button accessible"
+msgid "Right Click"
+msgstr "کلیک راست"
+
+#: qml/mpris.qml:20
+#, kde-format
+msgid "Multimedia Controls"
+msgstr "کنترلهای رسانه"
+
+#: qml/mpris.qml:68
+#, kde-format
+msgid "No players available"
+msgstr "پخشکنندهای در دسترس نیست"
+
+#: qml/mpris.qml:111
+#, kde-format
+msgid "%1 - %2"
+msgstr "%1 - %2"
+
+#: qml/PluginSettings.qml:121
+#, kde-format
+msgid "Configure plugin"
+msgstr "پیکربندی افزونه"
+
+#: qml/presentationRemote.qml:22
+#, kde-format
+msgid "Enable Full-Screen"
+msgstr "فعالسازی تمامصفحه"
+
+#: qml/runcommand.qml:23
+#, kde-format
+msgid "Edit commands"
+msgstr "ویرایش دستورها"
+
+#: qml/runcommand.qml:26
+#, kde-format
+msgid "You can edit commands on the connected device"
+msgstr "میتوانید دستورها را در دستگاه پیوسته ویرایش کنید"
+
+#: qml/runcommand.qml:53
+#, kde-format
+msgid "No commands defined"
+msgstr "دستوری تعریف نشده"
+
+#: qml/Settings.qml:13
+#, kde-format
+msgctxt "@title:window"
+msgid "Settings"
+msgstr "تنظیمات"
+
+#: qml/Settings.qml:21
+#, kde-format
+msgid "Device name"
+msgstr "نام دستگاه"
+
+#: qml/Settings.qml:33
+#, kde-format
+msgctxt "@title:group"
+msgid "Backends"
+msgstr "پشتوانهها"
+
+#: qml/Settings.qml:54
+#, kde-format
+msgctxt "@info KDE Connect provider name"
+msgid "Bluetooth"
+msgstr "بلوتوث"
+
+#: qml/Settings.qml:56
+#, kde-format
+msgctxt "@info KDE Connect provider name"
+msgid "Loopback"
+msgstr "محلی"
+
+#: qml/Settings.qml:58
+#, kde-format
+msgctxt "@info KDE Connect provider name"
+msgid "Network"
+msgstr "شبکه"
+
+#: qml/Settings.qml:73
+#, kde-format
+msgid "About KDE Connect"
+msgstr "درباره کیدیای کانکت"
+
+#: qml/Settings.qml:81
+#, kde-format
+msgid "About KDE"
+msgstr "درباره کیدیای"
+
+#: qml/WelcomePage.qml:27
+#, kde-format
+msgctxt "@title"
+msgid "No Device Selected"
+msgstr "دستگاهی برگزیده نشده"
+
+#: qml/WelcomePage.qml:35
+#, kde-format
+msgctxt "@info"
+msgid "Make sure to install KDE Connect on your other devices."
+msgstr "مطمئن شوید که کیدیای کانکت را روی دستگاههای دیگرتان نصب کردهاید."
+
+#: qml/WelcomePage.qml:42
+#, kde-format
+msgctxt "@title:context"
+msgid "KDE Connect Android App"
+msgstr "برنامه کیدیای کانکت برای اندروید"
+
+#: qml/WelcomePage.qml:49
+#, kde-format
+msgctxt "Android Application Store"
+msgid "F-Droid"
+msgstr "افدروید"
+
+#: qml/WelcomePage.qml:56
+#, kde-format
+msgctxt "Android Application Store"
+msgid "Play Store"
+msgstr "فروشگاه پلی"
+
+#: qml/WelcomePage.qml:62
+#, kde-format
+msgctxt "@title:context"
+msgid "KDE Connect iOS App"
+msgstr "برنامه کیدیای کانکت برای آیاواس"
+
+#: qml/WelcomePage.qml:67
+#, kde-format
+msgid "Apple Store"
+msgstr "فروشگاه اپل"
+
+#: qml/WelcomePage.qml:73
+#, kde-format
+msgid ""
+"If you are having problems, visit the <a href=\"https://userbase.kde.org/"
+"KDEConnect\"><span style=\" text-decoration: underline;\">KDE Connect "
+"Community wiki</span></a> for help."
+msgstr ""
+"اگر به مشکل خوردید، برای راهنمایی به <a href=\"https://userbase.kde.org/"
+"KDEConnect\"><span style=\" text-decoration: underline;\">ویکی جامعه KDE "
+"Connect</span></a> بروید."
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/fa/kdeconnect-cli.po kdeconnect-25.04.2/po/fa/kdeconnect-cli.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/fa/kdeconnect-cli.po 1970-01-01 01:00:00.000000000 +0100
+++ kdeconnect-25.04.2/po/fa/kdeconnect-cli.po 2025-06-03 05:21:10.000000000 +0200
@@ -0,0 +1,341 @@
+# Copyright (C) 2025 This file is copyright:
+# This file is distributed under the same license as the kdeconnect-kde package.
+#
+# SPDX-FileCopyrightText: 2025 Sohrab Behdani <behdanisohrab@gmail.com>
+# SPDX-FileCopyrightText: 2025 Alireza Rashidi <injaneb@dock.com>
+msgid ""
+msgstr ""
+"Project-Id-Version: kdeconnect-kde\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
+"POT-Creation-Date: 2024-12-23 00:40+0000\n"
+"PO-Revision-Date: 2025-05-27 13:55+0330\n"
+"Last-Translator: Alireza Rashidi <injaneb@dock.com>\n"
+"Language-Team: Persian\n"
+"Language: fa\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"X-Generator: Lokalize 25.04.0\n"
+
+#, kde-format
+msgctxt "NAME OF TRANSLATORS"
+msgid "Your names"
+msgstr "علیرضا رشیدی"
+
+#, kde-format
+msgctxt "EMAIL OF TRANSLATORS"
+msgid "Your emails"
+msgstr "injaneb@duck.com"
+
+#: kdeconnect-cli.cpp:32
+#, kde-format
+msgid "KDE Connect CLI tool"
+msgstr "ابزار خط فرمان کیدیای کانکت"
+
+#: kdeconnect-cli.cpp:34
+#, kde-format
+msgid "(C) 2015 Aleix Pol Gonzalez"
+msgstr "(C) 2015 Aleix Pol Gonzalez"
+
+#: kdeconnect-cli.cpp:39
+#, kde-format
+msgid "Aleix Pol Gonzalez"
+msgstr "Aleix Pol Gonzalez"
+
+#: kdeconnect-cli.cpp:40
+#, kde-format
+msgid "Albert Vaca Cintora"
+msgstr "Albert Vaca Cintora"
+
+#: kdeconnect-cli.cpp:42
+#, kde-format
+msgid "List all devices"
+msgstr "فهرست همه دستگاهها"
+
+#: kdeconnect-cli.cpp:44
+#, kde-format
+msgid "List available (paired and reachable) devices"
+msgstr "فهرست دستگاههای در دسترس (جفتشده و قابل دسترسی)"
+
+#: kdeconnect-cli.cpp:45
+#, kde-format
+msgid "List all backends and status"
+msgstr "فهرست همه پشتوانهها و وضعیت آنها"
+
+#: kdeconnect-cli.cpp:46
+#, kde-format
+msgid "Enable the specified backend"
+msgstr "بهکارگیری پشتوانه مشخصشده"
+
+#: kdeconnect-cli.cpp:46 kdeconnect-cli.cpp:47
+#, kde-format
+msgid "backend"
+msgstr "پشتوانه"
+
+#: kdeconnect-cli.cpp:47
+#, kde-format
+msgid "Disable the specified backend"
+msgstr "از کار انداختن پشتوانه مشخصشده"
+
+#: kdeconnect-cli.cpp:49
+#, kde-format
+msgid ""
+"Make --list-devices or --list-available print only the devices id, to ease "
+"scripting"
+msgstr ""
+"چاپ تنها شناسه دستگاهها با --list-devices یا --list-available برای سادهسازی "
+"اسکریپتنویسی"
+
+#: kdeconnect-cli.cpp:51
+#, kde-format
+msgid ""
+"Make --list-devices or --list-available print only the devices name, to ease "
+"scripting"
+msgstr ""
+"چاپ تنها نام دستگاهها با --list-devices یا --list-available برای سادهسازی "
+"اسکریپتنویسی"
+
+#: kdeconnect-cli.cpp:53
+#, kde-format
+msgid ""
+"Make --list-devices or --list-available print only the devices id and name, "
+"to ease scripting"
+msgstr ""
+"چاپ تنها شناسه و نام دستگاهها با --list-devices یا --list-available برای "
+"سادهسازی اسکریپتنویسی"
+
+#: kdeconnect-cli.cpp:54
+#, kde-format
+msgid "Search for devices in the network and re-establish connections"
+msgstr "جستجوی دستگاهها در شبکه و بازسازی پیوندشان"
+
+#: kdeconnect-cli.cpp:55
+#, kde-format
+msgid "Request pairing to a said device"
+msgstr "درخواست جفتسازی با دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:56
+#, kde-format
+msgid "Find the said device by ringing it."
+msgstr "یافتن دستگاه مشخصشده با زنگ زدن به آن"
+
+#: kdeconnect-cli.cpp:57
+#, kde-format
+msgid "Stop pairing to a said device"
+msgstr "توقف جفتسازی با دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:58
+#, kde-format
+msgid "Sends a ping to said device"
+msgstr "صدا زدن دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:59
+#, kde-format
+msgid "Same as ping but you can set the message to display"
+msgstr "مشابه صدا زدن اما با امکان تنظیم پیام برای نمایش"
+
+#: kdeconnect-cli.cpp:59 kdeconnect-cli.cpp:66
+#, kde-format
+msgid "message"
+msgstr "پیام"
+
+#: kdeconnect-cli.cpp:60
+#, kde-format
+msgid "Sends the current clipboard to said device"
+msgstr "ارسال بریدهدان کنونی به دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:61
+#, kde-format
+msgid "Share a file/URL to a said device"
+msgstr "همرسانی پرونده/نشانی اینترنتی به دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:62
+#, kde-format
+msgid "Share text to a said device"
+msgstr "همرسانی متن به دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:63
+#, kde-format
+msgid "Display the notifications on a said device"
+msgstr "نمایش آگاهسازها در دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:64
+#, kde-format
+msgid "Lock the specified device"
+msgstr "قفل کردن دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:65
+#, kde-format
+msgid "Unlock the specified device"
+msgstr "باز کردن دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:66
+#, kde-format
+msgid "Sends an SMS. Requires destination"
+msgstr "ارسال پیامک. نیاز به مقصد دارد"
+
+#: kdeconnect-cli.cpp:67
+#, kde-format
+msgid "Phone number to send the message"
+msgstr "شماره تلفن برای ارسال پیام"
+
+#: kdeconnect-cli.cpp:67
+#, kde-format
+msgid "phone number"
+msgstr "شماره تلفن"
+
+#: kdeconnect-cli.cpp:69
+#, kde-format
+msgid ""
+"File urls to send attachments with the message (can be passed multiple times)"
+msgstr "نشانیهای پرونده برای ارسال پیوست با پیام (میتواند چند بار فرستاده شود)"
+
+#: kdeconnect-cli.cpp:70
+#, kde-format
+msgid "file urls"
+msgstr "نشانیهای پرونده"
+
+#: kdeconnect-cli.cpp:71
+#, kde-format
+msgid "Device ID"
+msgstr "شناسه دستگاه"
+
+#: kdeconnect-cli.cpp:72
+#, kde-format
+msgid "Device Name"
+msgstr "نام دستگاه"
+
+#: kdeconnect-cli.cpp:73
+#, kde-format
+msgid "Get encryption info about said device"
+msgstr "دریافت اطلاعات رمزنگاری درباره دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:74
+#, kde-format
+msgid "Lists remote commands and their ids"
+msgstr "فهرست دستورهای دوردست و شناسههای آنها"
+
+#: kdeconnect-cli.cpp:75
+#, kde-format
+msgid "Executes a remote command by id"
+msgstr "اجرای دستور دوردست با شناسه"
+
+#: kdeconnect-cli.cpp:77
+#, kde-format
+msgid "Sends keys to a said device"
+msgstr "ارسال کلیدها به دستگاه مشخصشده"
+
+#: kdeconnect-cli.cpp:78
+#, kde-format
+msgid "Display this device's id and exit"
+msgstr "نمایش شناسه این دستگاه و خروج"
+
+#: kdeconnect-cli.cpp:124
+#, kde-format
+msgid "(paired and reachable)"
+msgstr "(جفتشده و قابل دسترسی)"
+
+#: kdeconnect-cli.cpp:126
+#, kde-format
+msgid "(reachable)"
+msgstr "(قابل دسترسی)"
+
+#: kdeconnect-cli.cpp:128 kdeconnect-cli.cpp:152
+#, kde-format
+msgid "(paired)"
+msgstr "(جفتشده)"
+
+#: kdeconnect-cli.cpp:134
+#, kde-format
+msgid "1 device found"
+msgid_plural "%1 devices found"
+msgstr[0] "یک دستگاه یافت شد"
+msgstr[1] "%1 دستگاه یافت شد"
+
+#: kdeconnect-cli.cpp:136
+#, kde-format
+msgid "No devices found"
+msgstr "هیچ دستگاهی یافت نشد"
+
+#: kdeconnect-cli.cpp:154
+#, kde-format
+msgid "(unpaired)"
+msgstr "(جفتنشده)"
+
+#: kdeconnect-cli.cpp:197
+#, kde-format
+msgid ""
+"No device specified: Use -d <Device ID> or -n <Device Name> to specify a "
+"device. \n"
+"Device ID's and names may be found using \"kdeconnect-cli -l\" \n"
+"View complete help with --help option"
+msgstr ""
+"دستگاهی مشخص نشده است: از -d <شناسه دستگاه> یا -n <نام دستگاه> برای مشخص "
+"کردن دستگاه استفاده کنید. \n"
+"شناسهها و نامهای دستگاهها را میتوان با \"kdeconnect-cli -l\" یافت. \n"
+"برای راهنما کامل از گزینه --help استفاده کنید"
+
+#: kdeconnect-cli.cpp:232
+#, kde-format
+msgid "Shared %1"
+msgstr "%1 همرسانی شد"
+
+#: kdeconnect-cli.cpp:241
+#, kde-format
+msgid "Shared text: %1"
+msgstr "متن همرسانیشده: %1"
+
+#: kdeconnect-cli.cpp:248
+#, kde-format
+msgctxt "device has requested to lock peer device"
+msgid "Requested to lock %1."
+msgstr "درخواست قفل کردن %1."
+
+#: kdeconnect-cli.cpp:250
+#, kde-format
+msgctxt "device has requested to unlock peer device"
+msgid "Requested to unlock %1."
+msgstr "درخواست باز کردن %1."
+
+#: kdeconnect-cli.cpp:257
+#, kde-format
+msgid "waiting for device..."
+msgstr "در انتظار دستگاه..."
+
+#: kdeconnect-cli.cpp:270
+#, kde-format
+msgid "Device not found"
+msgstr "دستگاه یافت نشد"
+
+#: kdeconnect-cli.cpp:272
+#, kde-format
+msgid "Already paired"
+msgstr "از پیش جفتشده"
+
+#: kdeconnect-cli.cpp:274
+#, kde-format
+msgid "Pair requested"
+msgstr "جفتسازی درخواست شد"
+
+#: kdeconnect-cli.cpp:280
+#, kde-format
+msgid "Already not paired"
+msgstr "از پیش جفتنشده"
+
+#: kdeconnect-cli.cpp:282
+#, kde-format
+msgid "Unpaired"
+msgstr "جفتنشده"
+
+#: kdeconnect-cli.cpp:328
+#, kde-format
+msgid ""
+"error: should specify the SMS's recipient by passing --destination <phone "
+"number>"
+msgstr "خطا: باید گیرنده پیامک را با --destination <شماره تلفن> مشخص کنید"
+
+#: kdeconnect-cli.cpp:382
+#, kde-format
+msgid "Nothing to be done"
+msgstr "کاری برای انجام دادن نیست"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/fa/kdeconnect-core.po kdeconnect-25.04.2/po/fa/kdeconnect-core.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/fa/kdeconnect-core.po 1970-01-01 01:00:00.000000000 +0100
+++ kdeconnect-25.04.2/po/fa/kdeconnect-core.po 2025-06-03 05:21:10.000000000 +0200
@@ -0,0 +1,152 @@
+# Copyright (C) 2025 This file is copyright:
+# This file is distributed under the same license as the kdeconnect-kde package.
+#
+# SPDX-FileCopyrightText: 2025 Sohrab Behdani <behdanisohrab@gmail.com>
+# SPDX-FileCopyrightText: 2025 Alireza Rashidi <injaneb@dock.com>
+msgid ""
+msgstr ""
+"Project-Id-Version: kdeconnect-kde\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
+"POT-Creation-Date: 2025-02-24 00:41+0000\n"
+"PO-Revision-Date: 2025-05-27 13:56+0330\n"
+"Last-Translator: Alireza Rashidi <injaneb@dock.com>\n"
+"Language-Team: Persian\n"
+"Language: fa\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"X-Generator: Lokalize 25.04.0\n"
+
+#: backends/lan/compositeuploadjob.cpp:78
+#, kde-format
+msgid "Couldn't find an available port"
+msgstr "هیچ درگاه در دسترسی پیدا نشد"
+
+#: backends/lan/compositeuploadjob.cpp:110
+#, kde-format
+msgid "Failed to send packet to %1"
+msgstr "فرستادن بسته به %1 ناموفق بود"
+
+#: backends/lan/compositeuploadjob.cpp:256
+#, kde-format
+msgid "Sending to %1"
+msgstr "در حال فرستادن به %1"
+
+#: backends/lan/compositeuploadjob.cpp:256
+#, kde-format
+msgid "File"
+msgstr "پرونده"
+
+#: backends/pairinghandler.cpp:61
+#, kde-format
+msgid "Device clocks are out of sync"
+msgstr "ساعتهای دستگاه همزمان نیستند"
+
+#: backends/pairinghandler.cpp:80
+#, kde-format
+msgid "Canceled by other peer"
+msgstr "توسط همتا رد شد"
+
+#: backends/pairinghandler.cpp:96
+#, kde-format
+msgid "%1: Already paired"
+msgstr "%1: از پیش جفتشده"
+
+#: backends/pairinghandler.cpp:105 backends/pairinghandler.cpp:124
+#, kde-format
+msgid "%1: Device not reachable"
+msgstr "%1: دستگاه قابل دسترسی نیست"
+
+#: backends/pairinghandler.cpp:139
+#, kde-format
+msgid "Device not reachable"
+msgstr "دستگاه قابل دسترسی نیست"
+
+#: backends/pairinghandler.cpp:150
+#, kde-format
+msgid "Cancelled by user"
+msgstr "توسط کاربر رد شد"
+
+#: backends/pairinghandler.cpp:166
+#, kde-format
+msgid "Timed out"
+msgstr "زمان به پایان رسید"
+
+#: compositefiletransferjob.cpp:47
+#, kde-format
+msgctxt "@title job"
+msgid "Receiving file"
+msgid_plural "Receiving files"
+msgstr[0] "در حال دریافت پرونده"
+msgstr[1] "در حال دریافت پروندهها"
+
+#: compositefiletransferjob.cpp:48
+#, kde-format
+msgctxt "The source of a file operation"
+msgid "Source"
+msgstr "منبع"
+
+#: compositefiletransferjob.cpp:49
+#, kde-format
+msgctxt "The destination of a file operation"
+msgid "Destination"
+msgstr "مقصد"
+
+#: device.cpp:461
+#, kde-format
+msgid "SHA256 fingerprint of your device certificate is: %1\n"
+msgstr "اثر انگشت SHA256 گواهینامه دستگاه شما: %1\n"
+
+#: device.cpp:467
+#, kde-format
+msgid "SHA256 fingerprint of remote device certificate is: %1\n"
+msgstr "اثر انگشت SHA256 گواهینامه دستگاه از راه دور: %1\n"
+
+#: device.cpp:469
+#, kde-format
+msgid "Protocol version: %1\n"
+msgstr "نگارش قرارداد: %1\n"
+
+#: filetransferjob.cpp:53
+#, kde-format
+msgid "Filename already present"
+msgstr "نام پرونده از پیش موجود است"
+
+#: filetransferjob.cpp:116
+#, kde-format
+msgid "Received incomplete file from: %1"
+msgstr "پرونده ناتمام از %1 دریافت شد"
+
+#: kdeconnectconfig.cpp:348 kdeconnectconfig.cpp:382
+#, kde-format
+msgid "KDE Connect failed to start"
+msgstr "کیدیای کانکت نتوانست آغاز شود"
+
+#: kdeconnectconfig.cpp:348
+#, kde-format
+msgid "Could not generate the private key."
+msgstr "نتوانست کلید خصوصی را تولید کند."
+
+#: kdeconnectconfig.cpp:367
+#, kde-format
+msgid "Could not store private key file: %1"
+msgstr "نتوانست پرونده کلید خصوصی را نگهداری کند: %1"
+
+#: kdeconnectconfig.cpp:382
+#, kde-format
+msgid "Could not generate the device certificate."
+msgstr "نتوانست گواهینامه دستگاه را تولید کند."
+
+#: kdeconnectconfig.cpp:398
+#, kde-format
+msgid "Could not store certificate file: %1"
+msgstr "نتوانست پرونده گواهینامه را نگهداری کند: %1"
+
+#~ msgctxt "NAME OF TRANSLATORS"
+#~ msgid "Your names"
+#~ msgstr "علیرضا رشیدی"
+
+#~ msgctxt "EMAIL OF TRANSLATORS"
+#~ msgid "Your emails"
+#~ msgstr "injaneb@duck..com"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/fi/kdeconnect-indicator.po kdeconnect-25.04.2/po/fi/kdeconnect-indicator.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/fi/kdeconnect-indicator.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/fi/kdeconnect-indicator.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,6 @@
# Copyright (C) 2024 This file is copyright:
# This file is distributed under the same license as the kdeconnect-kde package.
-# SPDX-FileCopyrightText: 2020, 2021, 2023, 2024 Tommi Nieminen <translator@legisign.org>
+# SPDX-FileCopyrightText: 2020, 2021, 2023, 2024, 2025 Tommi Nieminen <translator@legisign.org>
#
msgid ""
msgstr ""
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/fi/kdeconnect-kded.po kdeconnect-25.04.2/po/fi/kdeconnect-kded.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/fi/kdeconnect-kded.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/fi/kdeconnect-kded.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,6 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
-# SPDX-FileCopyrightText: 2014, 2019, 2020, 2021, 2022, 2024 Tommi Nieminen <translator@legisign.org>
+# SPDX-FileCopyrightText: 2014, 2019, 2020, 2021, 2022, 2024, 2025 Tommi Nieminen <translator@legisign.org>
# Lasse Liehu <lasse.liehu@gmail.com>, 2015.
#
msgid ""
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/fi/kdeconnect-plugins.po kdeconnect-25.04.2/po/fi/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/fi/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/fi/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,13 +1,13 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
-# Tommi Nieminen <translator@legisign.org>, 2014, 2018, 2019, 2020, 2021, 2022, 2023.
+# SPDX-FileCopyrightText: 2014, 2018, 2019, 2020, 2021, 2022, 2023, 2025 Tommi Nieminen <translator@legisign.org>
# Lasse Liehu <lasse.liehu@gmail.com>, 2015, 2016.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-09-26 10:45+0300\n"
"Last-Translator: Tommi Nieminen <translator@legisign.org>\n"
"Language-Team: Finnish <kde-i18n-doc@kde.org>\n"
@@ -16,6 +16,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 23.08.5\n"
#: battery/batteryplugin.cpp:119
#, kde-format
@@ -248,7 +249,7 @@
msgstr "Tuo"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nimi"
@@ -275,22 +276,22 @@
msgid "Phone is connected"
msgstr "Puhelin on kytketty"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Estetty"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Ilmoittavan sovelluksen nimi."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Synkronoidaanko sovelluksen ilmoitukset?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/fi/kdeconnect-settings.po kdeconnect-25.04.2/po/fi/kdeconnect-settings.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/fi/kdeconnect-settings.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/fi/kdeconnect-settings.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,6 @@
-# Copyright (C) YEAR This file is copyright:
+# Copyright (C) 2025 This file is copyright:
# This file is distributed under the same license as the kdeconnect-kde package.
-# Tommi Nieminen <translator@legisign.org>, 2020.
+# SPDX-FileCopyrightText: 2020, 2025 Tommi Nieminen <translator@legisign.org>
#
msgid ""
msgstr ""
@@ -15,6 +15,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 23.08.5\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/fi/kdeconnect-urlhandler.po kdeconnect-25.04.2/po/fi/kdeconnect-urlhandler.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/fi/kdeconnect-urlhandler.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/fi/kdeconnect-urlhandler.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,6 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
-# Tommi Nieminen <translator@legisign.org>, 2018, 2019, 2020, 2021, 2023.
+# SPDX-FileCopyrightText: 2018, 2019, 2020, 2021, 2023, 2025 Tommi Nieminen <translator@legisign.org>
#
msgid ""
msgstr ""
@@ -15,6 +15,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 23.08.5\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/fr/kdeconnect-indicator.po kdeconnect-25.04.2/po/fr/kdeconnect-indicator.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/fr/kdeconnect-indicator.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/fr/kdeconnect-indicator.po 2025-06-03 05:21:10.000000000 +0200
@@ -13,7 +13,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 24.12.3\n"
+"X-Generator: Lokalize 25.04.1\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/fr/kdeconnect-plugins.po kdeconnect-25.04.2/po/fr/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/fr/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/fr/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-04-26 15:50+0200\n"
"Last-Translator: Xavier Besnard <xavier.besnard@kde.org>\n"
"Language-Team: French <French <kde-francophone@kde.org>>\n"
@@ -256,7 +256,7 @@
msgstr "Importer"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nom "
@@ -281,22 +281,22 @@
msgid "Phone is connected"
msgstr "Le téléphone est connecté"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Sur liste noire"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nom d'une application fournissant des notifications."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Synchroniser les notifications d'une application ?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-app.po kdeconnect-25.04.2/po/gl/kdeconnect-app.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-app.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/gl/kdeconnect-app.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2025-02-28 07:17+0100\n"
+"PO-Revision-Date: 2025-05-03 07:08+0200\n"
"Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.gal>\n"
"Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n"
"Language: gl\n"
@@ -25,12 +25,12 @@
#: main.cpp:33
#, kde-format
msgid "(c) 2015, Aleix Pol Gonzalez"
-msgstr "© 2015 Aleix Pol Gonzalez"
+msgstr "© 2015 Aleix Pol i Gonzàlez"
#: main.cpp:34
#, kde-format
msgid "Aleix Pol Gonzalez"
-msgstr "Aleix Pol Gonzalez"
+msgstr "Aleix Pol i Gonzàlez"
#: main.cpp:34
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-cli.po kdeconnect-25.04.2/po/gl/kdeconnect-cli.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-cli.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/gl/kdeconnect-cli.po 2025-06-03 05:21:10.000000000 +0200
@@ -36,12 +36,12 @@
#: kdeconnect-cli.cpp:34
#, kde-format
msgid "(C) 2015 Aleix Pol Gonzalez"
-msgstr "© 2015 Aleix Pol Gonzalez"
+msgstr "© 2015 Aleix Pol i Gonzàlez"
#: kdeconnect-cli.cpp:39
#, kde-format
msgid "Aleix Pol Gonzalez"
-msgstr "Aleix Pol Gonzalez"
+msgstr "Aleix Pol i Gonzàlez"
#: kdeconnect-cli.cpp:40
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-indicator.po kdeconnect-25.04.2/po/gl/kdeconnect-indicator.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-indicator.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/gl/kdeconnect-indicator.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,21 +1,21 @@
# Copyright (C) 2024 This file is copyright:
# This file is distributed under the same license as the kdeconnect-kde package.
-# SPDX-FileCopyrightText: 2024 Adrián Chaves (Gallaecio)
+# SPDX-FileCopyrightText: 2024, 2025 Adrián Chaves (Gallaecio)
#
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-07-23 18:20+0200\n"
-"Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.io>\n"
+"PO-Revision-Date: 2025-05-04 13:32+0200\n"
+"Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.gal>\n"
"Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 24.05.2\n"
+"X-Generator: Lokalize 25.04.1\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
@@ -95,7 +95,7 @@
#: main.cpp:61
#, kde-format
msgid "(C) 2016 Aleix Pol Gonzalez"
-msgstr "© 2016 Aleix Pol Gonzalez"
+msgstr "© 2016 Aleix Pol i Gonzàlez"
#: main.cpp:102
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-plugins.po kdeconnect-25.04.2/po/gl/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/gl/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-09-03 11:24+0200\n"
"Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.io>\n"
"Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n"
@@ -248,7 +248,7 @@
msgstr "Importar"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nome"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "O teléfono está conectado"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Na lista negra"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nome da aplicación que notifica."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sincronizar as notificacións dunha aplicación?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-sms.po kdeconnect-25.04.2/po/gl/kdeconnect-sms.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-sms.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/gl/kdeconnect-sms.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2025-03-03 07:02+0100\n"
+"PO-Revision-Date: 2025-05-03 07:02+0200\n"
"Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.gal>\n"
"Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n"
"Language: gl\n"
@@ -85,7 +85,7 @@
#: main.cpp:56
#, kde-format
msgid "Aleix Pol Gonzalez"
-msgstr "Aleix Pol Gonzalez"
+msgstr "Aleix Pol i Gonzàlez"
#: main.cpp:57
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-urlhandler.po kdeconnect-25.04.2/po/gl/kdeconnect-urlhandler.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/gl/kdeconnect-urlhandler.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/gl/kdeconnect-urlhandler.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,21 +1,21 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
-# Adrián Chaves (Gallaecio) <adrian@chaves.io>, 2017, 2018, 2020, 2023.
+# SPDX-FileCopyrightText: 2025 Adrián Chaves (Gallaecio)
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2023-06-17 08:37+0200\n"
-"Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.io>\n"
-"Language-Team: Galician <proxecto@trasno.gal>\n"
+"PO-Revision-Date: 2025-05-04 13:32+0200\n"
+"Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.gal>\n"
+"Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 23.04.2\n"
+"X-Generator: Lokalize 25.04.0\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
@@ -59,7 +59,7 @@
#: kdeconnect-handler.cpp:50
#, kde-format
msgid "(C) 2017 Aleix Pol Gonzalez"
-msgstr "© 2017 Aleix Pol Gonzalez"
+msgstr "© 2017 Aleix Pol i Gonzàlez"
#: kdeconnect-handler.cpp:83
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/he/kdeconnect-app.po kdeconnect-25.04.2/po/he/kdeconnect-app.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/he/kdeconnect-app.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/he/kdeconnect-app.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,14 +7,14 @@
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2025-02-28 11:43+0200\n"
+"PO-Revision-Date: 2025-05-13 20:59+0300\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: צוות התרגום של KDE ישראל\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.12.2\n"
+"X-Generator: Lokalize 25.04.0\n"
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
"n % 10 == 0) ? 2 : 3));\n"
@@ -187,7 +187,7 @@
#, kde-format
msgctxt "@action:button accessible"
msgid "Refresh Devices"
-msgstr "רענון מכשירים"
+msgstr "ריענון מכשירים"
#: qml/Main.qml:112
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/he/kdeconnect-plugins.po kdeconnect-25.04.2/po/he/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/he/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/he/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-10-20 16:21+0300\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Hebrew <kde-i18n-doc@kde.org>\n"
@@ -249,7 +249,7 @@
msgstr "ייבוא"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "שם"
@@ -274,22 +274,22 @@
msgid "Phone is connected"
msgstr "הטלפון מחובר"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "ברשימת החסימה"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "שם היישום שהודיע."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "לסנכרן התראות של יישום?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/hi/kdeconnect-plugins.po kdeconnect-25.04.2/po/hi/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/hi/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/hi/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-12-15 15:58+0530\n"
"Last-Translator: Kali <EMAIL@ADDRESS>\n"
"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
@@ -247,7 +247,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr ""
@@ -272,22 +272,22 @@
msgid "Phone is connected"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/hu/kdeconnect-plugins.po kdeconnect-25.04.2/po/hu/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/hu/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/hu/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-01-18 09:57+0100\n"
"Last-Translator: Kristof Kiszel <ulysses@fsf.hu>\n"
"Language-Team: Hungarian <kde-l10n-hu@kde.org>\n"
@@ -247,7 +247,7 @@
msgstr "Importálás"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Név"
@@ -272,22 +272,22 @@
msgid "Phone is connected"
msgstr "Telefon csatlakoztatva"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Feketelistázott"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Az értesítő alkalmazás neve."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Szinkronizálja egy alkalmazás értesítéseit?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ia/kdeconnect-plugins.po kdeconnect-25.04.2/po/ia/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ia/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ia/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-12-18 17:53+0100\n"
"Last-Translator: giovanni <g.sora@tiscali.it>\n"
"Language-Team: Interlingua <kde-i18n-doc@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "Importa"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nomine"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Telephono es connectite"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Ponite inlista nigre"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nomine de un application notificante."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Synchronisa notificationes de un application?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/id/kdeconnect-plugins.po kdeconnect-25.04.2/po/id/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/id/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/id/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2022-08-26 23:44+0700\n"
"Last-Translator: Wantoyèk <wantoyek@gmail.com>\n"
"Language-Team: https://t.me/Localizations_KDE_Indonesia\n"
@@ -249,7 +249,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nama"
@@ -276,22 +276,22 @@
msgid "Phone is connected"
msgstr "Ponsel telah terkoneksi"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Didaftarhitamkan"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nama pada aplikasi yang memberitahu."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Menyinkronkan notifikasi dari sebuah aplikasi?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/is/kdeconnect-plugins.po kdeconnect-25.04.2/po/is/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/is/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/is/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-12-30 19:09+0000\n"
"Last-Translator: Guðmundur Erlingsson <gudmundure@gmail.com>\n"
"Language-Team: Icelandic <kde-i18n-doc@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "Flytja inn"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nafn"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Sími er tengdur"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Á bannlista"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Heiti forrits sem birtir tilkynningu."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Samstilla tilkynningar forrits?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/it/kdeconnect-indicator.po kdeconnect-25.04.2/po/it/kdeconnect-indicator.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/it/kdeconnect-indicator.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/it/kdeconnect-indicator.po 2025-06-03 05:21:10.000000000 +0200
@@ -15,7 +15,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 25.04.0\n"
+"X-Generator: Lokalize 25.04.1\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/it/kdeconnect-plugins.po kdeconnect-25.04.2/po/it/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/it/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/it/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-08-30 19:19+0200\n"
"Last-Translator: Vincenzo Reale <smart2128vr@gmail.com>\n"
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "Importa"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nome"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Il telefono è connesso"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Nella lista nera"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nome di un'applicazione di notifica."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Vuoi sincronizzare le notifiche di un'applicazione?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ja/kdeconnect-plugins.po kdeconnect-25.04.2/po/ja/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ja/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ja/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-01-30 19:50+0900\n"
"Last-Translator: Ryuichi Yamada <ryuichi_ya220@outlook.jp>\n"
"Language-Team: Japanese <kde-jp@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "インポート"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "名前"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "スマートフォンが接続済み"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "ブラックリスト"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "通知中のアプリケーション名"
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "アプリケーションの通知を同期しますか?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ka/kdeconnect-plugins.po kdeconnect-25.04.2/po/ka/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ka/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ka/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-08-30 07:52+0200\n"
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>\n"
"Language-Team: Georgian <kde-i18n-doc@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "შემოტანა"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "სახელი"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "ტელეფონი დაკავშირებულია"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "შავ სიაშია"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "შემტყობინებელი აპლიკაციის სახელი."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "გნებავთ აპლიკაციის გაფრთხილებების სინქრონიზაცია?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ko/kdeconnect-plugins.po kdeconnect-25.04.2/po/ko/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ko/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ko/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-10-08 22:54+0200\n"
"Last-Translator: Shinjo Park <kde@peremen.name>\n"
"Language-Team: Korean <kde-kr@kde.org>\n"
@@ -247,7 +247,7 @@
msgstr "가져오기"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "이름"
@@ -272,22 +272,22 @@
msgid "Phone is connected"
msgstr "휴대폰이 연결됨"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "차단됨"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "알림을 보내는 앱의 이름입니다."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "앱 알림을 동기화하시겠습니까?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/lt/kdeconnect-plugins.po kdeconnect-25.04.2/po/lt/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/lt/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/lt/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdeconnect\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-02-02 21:15+0200\n"
"Last-Translator: Moo <<>>\n"
"Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
@@ -249,7 +249,7 @@
msgstr "Importuoti"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Pavadinimas"
@@ -274,22 +274,22 @@
msgid "Phone is connected"
msgstr "Telefonas prijungtas"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Įtrauktas į juodąjį sąrašą"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Pranešančios programos pavadinimas."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sinchronizuoti programos pranešimus?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/lv/kdeconnect-plugins.po kdeconnect-25.04.2/po/lv/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/lv/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/lv/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-01-11 20:45+0200\n"
"Last-Translator: Toms Trasuns <toms.trasuns@posteo.net>\n"
"Language-Team: Latvian <kde-i18n-doc@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "Importēt"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nosaukums"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Tālrunis ir savienots"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Ievietots melnajā sarakstā"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Paziņojošās programmas nosaukums."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sinhronizēt programmas paziņojumus?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ml/kdeconnect-plugins.po kdeconnect-25.04.2/po/ml/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ml/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ml/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2020-03-22 10:50+0000\n"
"Last-Translator: Subin Siby <subins2000@gmail.com>\n"
"Language-Team: SMC <smc.org.in>\n"
@@ -248,7 +248,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "പേര്"
@@ -275,22 +275,22 @@
msgid "Phone is connected"
msgstr "ഫോൺ ബന്ധപ്പെടുത്തിയിരിക്കുന്നു"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "ബ്ലാക്ക്ലിസ്റ്റ് ചെയ്തിരിക്കുന്നു"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nl/kdeconnect-plugins.po kdeconnect-25.04.2/po/nl/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nl/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/nl/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-08-29 18:10+0200\n"
"Last-Translator: Freek de Kruijf <freekdekruijf@kde.nl>\n"
"Language-Team: \n"
@@ -247,7 +247,7 @@
msgstr "Importeren"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Naam"
@@ -272,22 +272,22 @@
msgid "Phone is connected"
msgstr "Telefoon is verbonden"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Op zwarte lijst"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Naam van een toepassing met meldingen."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Meldingen synchroniseren van een toepassing?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-app.po kdeconnect-25.04.2/po/nn/kdeconnect-app.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-app.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-app.po 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-07-06 14:27+0200\n"
+"PO-Revision-Date: 2025-06-01 14:57+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 24.05.1\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
@@ -74,13 +74,13 @@
#, kde-format
msgctxt "@title:group device page section header"
msgid "Actions"
-msgstr ""
+msgstr "Handlingar"
#: qml/DevicePage.qml:62
-#, fuzzy, kde-format
+#, kde-format
msgctxt "@title:group device page section header"
msgid "Controls"
-msgstr "Fjernstyring"
+msgstr "Styring"
#: qml/DevicePage.qml:108
#, kde-format
@@ -133,11 +133,9 @@
msgstr "Del fil"
#: qml/DevicePage.qml:183
-#, fuzzy, kde-format
+#, kde-format
msgid "This device is not paired."
-msgstr ""
-"Eininga er ikkje para.\n"
-"Nøkkel: %1"
+msgstr "Eininga er ikkje para."
#: qml/DevicePage.qml:187
#, kde-format
@@ -175,7 +173,7 @@
msgstr "Vel ei fil"
#: qml/Main.qml:66
-#, fuzzy, kde-format
+#, kde-format
msgid "Devices"
msgstr "Einingar"
@@ -183,13 +181,13 @@
#, kde-format
msgctxt "@action:button"
msgid "Refresh"
-msgstr ""
+msgstr "Oppdater"
#: qml/Main.qml:76
-#, fuzzy, kde-format
+#, kde-format
msgctxt "@action:button accessible"
msgid "Refresh Devices"
-msgstr "Einingar"
+msgstr "Oppdater einingar"
#: qml/Main.qml:112
#, kde-format
@@ -230,19 +228,19 @@
#, kde-format
msgctxt "@action:button accessible"
msgid "Left Click"
-msgstr ""
+msgstr "Venstreklikk"
#: qml/mousepad.qml:222
#, kde-format
msgctxt "@action:button accessible"
msgid "Middle Click"
-msgstr ""
+msgstr "Midtklikk"
#: qml/mousepad.qml:231
#, kde-format
msgctxt "@action:button accessible"
msgid "Right Click"
-msgstr ""
+msgstr "Høgreklikk"
#: qml/mpris.qml:20
#, kde-format
@@ -299,25 +297,25 @@
#, kde-format
msgctxt "@title:group"
msgid "Backends"
-msgstr ""
+msgstr "Motorar"
#: qml/Settings.qml:54
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Bluetooth"
-msgstr ""
+msgstr "Bluetooth"
#: qml/Settings.qml:56
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Loopback"
-msgstr ""
+msgstr "Loopback"
#: qml/Settings.qml:58
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Network"
-msgstr ""
+msgstr "Nettverk"
#: qml/Settings.qml:73
#, kde-format
@@ -333,42 +331,42 @@
#, kde-format
msgctxt "@title"
msgid "No Device Selected"
-msgstr ""
+msgstr "Inga eining er vald"
#: qml/WelcomePage.qml:35
#, kde-format
msgctxt "@info"
msgid "Make sure to install KDE Connect on your other devices."
-msgstr ""
+msgstr "Sjå til at KDE Connect er installert på dei andre einingane."
#: qml/WelcomePage.qml:42
-#, fuzzy, kde-format
+#, kde-format
msgctxt "@title:context"
msgid "KDE Connect Android App"
-msgstr "KDE Connect"
+msgstr "KDE Connect Android-app"
#: qml/WelcomePage.qml:49
#, kde-format
msgctxt "Android Application Store"
msgid "F-Droid"
-msgstr ""
+msgstr "F-Droid"
#: qml/WelcomePage.qml:56
#, kde-format
msgctxt "Android Application Store"
msgid "Play Store"
-msgstr ""
+msgstr "Play Store"
#: qml/WelcomePage.qml:62
-#, fuzzy, kde-format
+#, kde-format
msgctxt "@title:context"
msgid "KDE Connect iOS App"
-msgstr "KDE Connect"
+msgstr "KDE Connect iOS-app"
#: qml/WelcomePage.qml:67
#, kde-format
msgid "Apple Store"
-msgstr ""
+msgstr "Apple Store"
#: qml/WelcomePage.qml:73
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-cli.po kdeconnect-25.04.2/po/nn/kdeconnect-cli.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-cli.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-cli.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,13 +1,12 @@
# Translation of kdeconnect-cli to Norwegian Nynorsk
#
-# Karl Ove Hufthammer <karl@huftis.org>, 2016, 2017, 2018, 2019, 2020, 2023.
# Øystein Steffensen-Alværvik <oysteins.omsetting@protonmail.com>, 2018.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2024-12-23 00:40+0000\n"
-"PO-Revision-Date: 2023-07-15 14:22+0200\n"
+"PO-Revision-Date: 2025-06-01 15:00+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
"Language: nn\n"
@@ -15,7 +14,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 23.04.3\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
@@ -63,22 +62,22 @@
#: kdeconnect-cli.cpp:45
#, kde-format
msgid "List all backends and status"
-msgstr ""
+msgstr "Vis tilgjengelege motorar og status."
#: kdeconnect-cli.cpp:46
-#, fuzzy, kde-format
+#, kde-format
msgid "Enable the specified backend"
-msgstr "Lås opp den valde eininga."
+msgstr "Slå på den valde motoren."
#: kdeconnect-cli.cpp:46 kdeconnect-cli.cpp:47
#, kde-format
msgid "backend"
-msgstr ""
+msgstr "motor"
#: kdeconnect-cli.cpp:47
-#, fuzzy, kde-format
+#, kde-format
msgid "Disable the specified backend"
-msgstr "Lås opp den valde eininga."
+msgstr "Slå av den valde motoren."
#: kdeconnect-cli.cpp:49
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-core.po kdeconnect-25.04.2/po/nn/kdeconnect-core.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-core.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-core.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,13 +1,12 @@
# Translation of kdeconnect-core to Norwegian Nynorsk
#
-# Karl Ove Hufthammer <karl@huftis.org>, 2015, 2016, 2018, 2019, 2020, 2021, 2023.
# Øystein Steffensen-Alværvik <oysteins.omsetting@protonmail.com>, 2018.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-02-24 00:41+0000\n"
-"PO-Revision-Date: 2023-07-31 21:12+0200\n"
+"PO-Revision-Date: 2025-06-01 14:58+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
"Language: nn\n"
@@ -15,7 +14,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 23.04.3\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
@@ -43,7 +42,7 @@
#: backends/pairinghandler.cpp:61
#, kde-format
msgid "Device clocks are out of sync"
-msgstr ""
+msgstr "Einingsklokkene er ikkje synkroniserte"
#: backends/pairinghandler.cpp:80
#, kde-format
@@ -108,7 +107,7 @@
#: device.cpp:469
#, kde-format
msgid "Protocol version: %1\n"
-msgstr ""
+msgstr "Protokoll-versjon: %1\n"
#: filetransferjob.cpp:53
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-indicator.po kdeconnect-25.04.2/po/nn/kdeconnect-indicator.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-indicator.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-indicator.po 2025-06-03 05:21:10.000000000 +0200
@@ -13,7 +13,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 24.11.70\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-kcm.po kdeconnect-25.04.2/po/nn/kdeconnect-kcm.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-kcm.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-kcm.po 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-10-27 14:43+0100\n"
+"PO-Revision-Date: 2025-06-01 15:00+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 24.11.70\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
@@ -37,25 +37,25 @@
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Bluetooth"
-msgstr ""
+msgstr "Bluetooth"
#: kcm.cpp:136
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Loopback"
-msgstr ""
+msgstr "Loopback"
#: kcm.cpp:138
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Network"
-msgstr ""
+msgstr "Nettverk"
#: kcm.cpp:141
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Unknown"
-msgstr ""
+msgstr "Ukjend"
#: kcm.cpp:340
#, kde-format
@@ -120,7 +120,7 @@
#: kcm.ui:134
#, kde-format
msgid "Backends:"
-msgstr ""
+msgstr "Motorar:"
#. i18n: ectx: property (text), widget (QLabel, name_label)
#: kcm.ui:216
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-kded.po kdeconnect-25.04.2/po/nn/kdeconnect-kded.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-kded.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-kded.po 2025-06-03 05:21:10.000000000 +0200
@@ -13,7 +13,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 24.05.1\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-kio.po kdeconnect-25.04.2/po/nn/kdeconnect-kio.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-kio.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-kio.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,12 +1,11 @@
# Translation of kdeconnect-kio to Norwegian Nynorsk
#
-# Karl Ove Hufthammer <karl@huftis.org>, 2015, 2016, 2019.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2024-12-24 00:40+0000\n"
-"PO-Revision-Date: 2019-03-22 21:20+0100\n"
+"PO-Revision-Date: 2025-06-01 14:58+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
"Language: nn\n"
@@ -14,7 +13,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
@@ -57,4 +56,4 @@
#: kiokdeconnect.cpp:235
#, kde-format
msgid "Failed to get mount point: %1"
-msgstr ""
+msgstr "Fekk ikkje tilgang til monteringspunkt: %1"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-plugins.po kdeconnect-25.04.2/po/nn/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-03-17 10:06+0100\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
@@ -14,7 +14,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 24.02.0\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
@@ -249,7 +249,7 @@
msgstr "Importer"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Namn"
@@ -274,22 +274,22 @@
msgid "Phone is connected"
msgstr "Telefonen er kopla til"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Svartelista"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Namn på program med varsling."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Vil du synkronisera programvarslingar?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-settings.po kdeconnect-25.04.2/po/nn/kdeconnect-settings.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-settings.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-settings.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,5 @@
# Translation of kdeconnect-settings to Norwegian Nynorsk
#
-# Karl Ove Hufthammer <karl@huftis.org>, 2020.
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
@@ -14,7 +13,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 19.12.3\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-sms.po kdeconnect-25.04.2/po/nn/kdeconnect-sms.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-sms.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-sms.po 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-05-15 20:36+0200\n"
+"PO-Revision-Date: 2025-06-01 15:00+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 24.02.2\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
@@ -191,9 +191,9 @@
msgstr "Om"
#: qml/Main.qml:115
-#, fuzzy, kde-format
+#, kde-format
msgid "About KDE"
-msgstr "Om"
+msgstr "Om KDE"
#: qml/MessageAttachments.qml:114
#, kde-format
@@ -211,24 +211,24 @@
msgstr "Over grensa for meldingsstorleik."
#: qml/SendingArea.qml:63
-#, fuzzy, kde-format
+#, kde-format
msgid "Send a message…"
-msgstr "Send ei melding"
+msgstr "Send ei melding …"
#: qml/SendingArea.qml:119
#, kde-format
msgctxt "@info:tooltip"
msgid "Attach an image or file"
-msgstr ""
+msgstr "Legg ved bilete eller fil"
#: qml/SendingArea.qml:144
#, kde-format
msgctxt "@info:tooltip"
msgid "Clear attachments"
-msgstr ""
+msgstr "Fjern vedlegg"
#: qml/SendingArea.qml:173
-#, fuzzy, kde-format
+#, kde-format
msgctxt "@info:tooltip"
msgid "Send message"
-msgstr "Send ei melding"
+msgstr "Send meldinga"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-urlhandler.po kdeconnect-25.04.2/po/nn/kdeconnect-urlhandler.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/nn/kdeconnect-urlhandler.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/nn/kdeconnect-urlhandler.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,5 @@
# Translation of kdeconnect-urlhandler to Norwegian Nynorsk
#
-# Karl Ove Hufthammer <karl@huftis.org>, 2017, 2018, 2019, 2020, 2022, 2023.
msgid ""
msgstr ""
"Project-Id-Version: \n"
@@ -14,7 +13,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 22.12.1\n"
+"X-Generator: Lokalize 25.07.70\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pa/kdeconnect-plugins.po kdeconnect-25.04.2/po/pa/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pa/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/pa/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-10-25 21:54-0500\n"
"Last-Translator: A S Alam <aman@punlinux.org>\n"
"Language-Team: pa\n"
@@ -247,7 +247,7 @@
msgstr "ਇੰਪੋਰਟ"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "ਨਾਂ"
@@ -272,22 +272,22 @@
msgid "Phone is connected"
msgstr "ਫ਼ੋਨ ਕਨੈਕਟ ਹੈ"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "ਪਾਬੰਦੀ-ਸੂਚੀ"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "ਨੋਟੀਫਾਈ ਕਰਨ ਵਾਲੀ ਐਪਲੀਕੇਸ਼ਨ ਦਾ ਨਾਂ।"
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "ਐਪਲੀਕੇਸ਼ਨ ਲਈ ਨੋਟੀਫਿਕੇਸ਼ਨਾਂ ਨੂੰ ਸੈਕਰੋਨਾਈਜ਼ ਕਰਨਾ ਹੈ?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-cli.po kdeconnect-25.04.2/po/pl/kdeconnect-cli.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-cli.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/pl/kdeconnect-cli.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,6 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
-# SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2023, 2024 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
+# SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2023, 2024, 2025 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
#
msgid ""
msgstr ""
@@ -16,7 +16,7 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Lokalize 24.12.0\n"
+"X-Generator: Lokalize 24.12.3\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-core.po kdeconnect-25.04.2/po/pl/kdeconnect-core.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-core.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/pl/kdeconnect-core.po 2025-06-03 05:21:10.000000000 +0200
@@ -16,7 +16,6 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Lokalize 24.12.3\n"
#: backends/lan/compositeuploadjob.cpp:78
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-indicator.po kdeconnect-25.04.2/po/pl/kdeconnect-indicator.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-indicator.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/pl/kdeconnect-indicator.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,13 +1,13 @@
# Copyright (C) 2024 This file is copyright:
# This file is distributed under the same license as the kdeconnect-kde package.
-# SPDX-FileCopyrightText: 2021, 2023, 2024 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
+# SPDX-FileCopyrightText: 2021, 2023, 2024, 2025 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
#
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-07-27 09:16+0200\n"
+"PO-Revision-Date: 2025-05-24 08:34+0200\n"
"Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>\n"
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
"Language: pl\n"
@@ -16,7 +16,7 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Lokalize 23.08.5\n"
+"X-Generator: Lokalize 24.12.3\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
@@ -101,7 +101,7 @@
#: main.cpp:102
#, kde-format
msgid "Configure..."
-msgstr "Ustawienia..."
+msgstr "Ustawienia…"
#: main.cpp:128
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-kcm.po kdeconnect-25.04.2/po/pl/kdeconnect-kcm.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-kcm.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/pl/kdeconnect-kcm.po 2025-06-03 05:21:10.000000000 +0200
@@ -16,7 +16,6 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Lokalize 24.12.0\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-kded.po kdeconnect-25.04.2/po/pl/kdeconnect-kded.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-kded.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/pl/kdeconnect-kded.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,7 +1,7 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
+# SPDX-FileCopyrightText: 2014, 2019, 2020, 2021, 2022, 2024, 2025 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
#
-# SPDX-FileCopyrightText: 2014, 2019, 2020, 2021, 2022, 2024 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: \n"
@@ -16,6 +16,7 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
+"X-Generator: Lokalize 24.12.3\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-kio.po kdeconnect-25.04.2/po/pl/kdeconnect-kio.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-kio.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/pl/kdeconnect-kio.po 2025-06-03 05:21:10.000000000 +0200
@@ -17,7 +17,6 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Lokalize 24.12.0\n"
#: kiokdeconnect.cpp:75
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-plugins.po kdeconnect-25.04.2/po/pl/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/pl/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,13 +1,13 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
+# SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2019, 2020, 2021, 2022, 2023, 2025 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
#
-# Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>, 2014, 2015, 2016, 2017, 2019, 2020, 2021, 2022, 2023.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2023-09-24 08:26+0200\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
+"PO-Revision-Date: 2025-05-24 08:34+0200\n"
"Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>\n"
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
"Language: pl\n"
@@ -16,6 +16,7 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
+"X-Generator: Lokalize 24.12.3\n"
#: battery/batteryplugin.cpp:119
#, kde-format
@@ -100,7 +101,7 @@
#, kde-format
msgctxt "@info:placeholder"
msgid "Reply to %1..."
-msgstr "Odpowiedź do %1..."
+msgstr "Odpowiedź do %1…"
#: notifications/sendreplydialog.cpp:29
#, kde-format
@@ -247,7 +248,7 @@
msgstr "Zaimportuj"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nazwa"
@@ -272,22 +273,22 @@
msgid "Phone is connected"
msgstr "Telefon jest podłączony"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Zablokowany"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nazwa aplikacji powiadamiającej."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Czy synchronizować powiadomienia z aplikacji?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-settings.po kdeconnect-25.04.2/po/pl/kdeconnect-settings.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-settings.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/pl/kdeconnect-settings.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,7 +1,7 @@
-# Copyright (C) YEAR This file is copyright:
+# Copyright (C) 2025 This file is copyright:
# This file is distributed under the same license as the kdeconnect-kde package.
+# SPDX-FileCopyrightText: 2021, 2025 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
#
-# Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>, 2021.
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
@@ -16,6 +16,7 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
+"X-Generator: Lokalize 24.12.3\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-urlhandler.po kdeconnect-25.04.2/po/pl/kdeconnect-urlhandler.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pl/kdeconnect-urlhandler.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/pl/kdeconnect-urlhandler.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,7 +1,7 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
+# SPDX-FileCopyrightText: 2017, 2018, 2019, 2020, 2021, 2022, 2025 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
#
-# Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>, 2017, 2018, 2019, 2020, 2021, 2022.
msgid ""
msgstr ""
"Project-Id-Version: \n"
@@ -16,6 +16,7 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
+"X-Generator: Lokalize 24.12.3\n"
#, kde-format
msgctxt "NAME OF TRANSLATORS"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pl/plasma_applet_org.kde.kdeconnect.po kdeconnect-25.04.2/po/pl/plasma_applet_org.kde.kdeconnect.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pl/plasma_applet_org.kde.kdeconnect.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/pl/plasma_applet_org.kde.kdeconnect.po 2025-06-03 05:21:10.000000000 +0200
@@ -16,7 +16,6 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Lokalize 23.08.5\n"
#: package/contents/ui/Battery.qml:33
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pt/kdeconnect-plugins.po kdeconnect-25.04.2/po/pt/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pt/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/pt/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-06-09 03:03+0100\n"
"Last-Translator: José Nuno Coelho Pires <zepires@gmail.com>\n"
"Language-Team: Portuguese <kde-i18n-pt@kde.org>\n"
@@ -249,7 +249,7 @@
msgstr "Importar"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nome"
@@ -274,22 +274,22 @@
msgid "Phone is connected"
msgstr "O telefone está ligado"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Proibido"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nome de uma aplicação com notificações."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sincronizar as notificações de uma aplicação?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/pt_BR/kdeconnect-plugins.po kdeconnect-25.04.2/po/pt_BR/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/pt_BR/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/pt_BR/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-09-18 09:40-0300\n"
"Last-Translator: Luiz Fernando Ranghetti <elchevive@opensuse.org>\n"
"Language-Team: Brazilian Portuguese <kde-i18n-pt_BR@kde.org>\n"
@@ -249,7 +249,7 @@
msgstr "Importar"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Nome"
@@ -274,22 +274,22 @@
msgid "Phone is connected"
msgstr "O celular está conectado"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Na lista de proibições"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Nome de um aplicativo com notificações."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sincronizar as notificações de um aplicativo?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ro/kdeconnect-plugins.po kdeconnect-25.04.2/po/ro/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ro/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ro/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-01-07 13:14+0000\n"
"Last-Translator: Sergiu Bivol <sergiu@cip.md>\n"
"Language-Team: Romanian <kde-i18n-ro@kde.org>\n"
@@ -249,7 +249,7 @@
msgstr "Importă"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Denumire"
@@ -274,22 +274,22 @@
msgid "Phone is connected"
msgstr "Telefonul e conectat"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "În lista neagră"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Denumirea aplicației ce notifică."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sincronizați notificările unei aplicații?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ru/kdeconnect-plugins.po kdeconnect-25.04.2/po/ru/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ru/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ru/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-02-18 10:12+0300\n"
"Last-Translator: Alexander Yavorsky <kekcuha@gmail.com>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
@@ -254,7 +254,7 @@
msgstr "Импорт"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Название"
@@ -279,22 +279,22 @@
msgid "Phone is connected"
msgstr "Телефон подключён"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "В чёрном списке"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Имя уведомляющего приложения."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Синхронизировать уведомления приложения?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sa/kdeconnect-plugins.po kdeconnect-25.04.2/po/sa/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sa/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sa/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-12-20 21:51+0530\n"
"Last-Translator: kali <skkalwar999@gmail.com>\n"
"Language-Team: Sanskrit <kde-i18n-doc@kde.org>\n"
@@ -249,7 +249,7 @@
msgstr "आयात"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "नामः"
@@ -274,22 +274,22 @@
msgid "Phone is connected"
msgstr "दूरभाषः सम्बद्धः अस्ति"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "कृष्णसूचीकृतम्"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "सूचनादातृ-अनुप्रयोगस्य नाम ।"
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "अनुप्रयोगस्य सूचनानां समन्वयनं कुर्वन्तु?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-app.po kdeconnect-25.04.2/po/sk/kdeconnect-app.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-app.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sk/kdeconnect-app.po 2025-06-03 05:21:10.000000000 +0200
@@ -2,19 +2,20 @@
# Roman Paholik <wizzardsk@gmail.com>, 2020, 2021.
# SPDX-FileCopyrightText: 2020, 2024 Matej Mrenica <matejm98mthw@gmail.com>
# Dusan Kazik <prescott66@gmail.com>, 2020.
+# SPDX-FileCopyrightText: 2025 Lucia Mrenica <lucia.mrenica@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-app\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-04-27 16:45+0200\n"
-"Last-Translator: Matej Mrenica <matejm98mthw@gmail.com>\n"
+"PO-Revision-Date: 2025-05-25 12:30+0200\n"
+"Last-Translator: Lucia Mrenica <lucia.mrenica@gmail.com>\n"
"Language-Team: Slovak <kde-i18n-doc@kde.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.02.2\n"
+"X-Generator: Lokalize 25.04.1\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: main.cpp:29 main.cpp:31
@@ -73,14 +74,13 @@
#, kde-format
msgctxt "@title:group device page section header"
msgid "Actions"
-msgstr ""
+msgstr "Akcie"
#: qml/DevicePage.qml:62
-#, fuzzy, kde-format
-#| msgid "Remote Control"
+#, kde-format
msgctxt "@title:group device page section header"
msgid "Controls"
-msgstr "Diaľkové ovládanie"
+msgstr "Ovládanie"
#: qml/DevicePage.qml:108
#, kde-format
@@ -133,10 +133,9 @@
msgstr "Zdieľať súbor"
#: qml/DevicePage.qml:183
-#, fuzzy, kde-format
-#| msgid "This device is not paired"
+#, kde-format
msgid "This device is not paired."
-msgstr "Toto zariadenie nie je spárované"
+msgstr "Toto zariadenie nie je spárované."
#: qml/DevicePage.qml:187
#, kde-format
@@ -145,12 +144,13 @@
msgstr "Spárovať"
#: qml/DevicePage.qml:194 qml/DevicePage.qml:203
-#, fuzzy, kde-format
-#| msgid "Pair requested"
+#, kde-format
msgid ""
"Pair requested\n"
"Key: "
-msgstr "Žiadosť o párovanie"
+msgstr ""
+"Žiadosť o párovanie.\n"
+"Kľúč: "
#: qml/DevicePage.qml:209
#, kde-format
@@ -173,9 +173,7 @@
msgstr "Prosím, vyberte súbor"
#: qml/Main.qml:66
-#, fuzzy, kde-format
-#| msgctxt "Title of the page listing the devices"
-#| msgid "Devices"
+#, kde-format
msgid "Devices"
msgstr "Zariadenia"
@@ -183,15 +181,13 @@
#, kde-format
msgctxt "@action:button"
msgid "Refresh"
-msgstr ""
+msgstr "Obnoviť"
#: qml/Main.qml:76
-#, fuzzy, kde-format
-#| msgctxt "Title of the page listing the devices"
-#| msgid "Devices"
+#, kde-format
msgctxt "@action:button accessible"
msgid "Refresh Devices"
-msgstr "Zariadenia"
+msgstr "Obnoviť zariadenia"
#: qml/Main.qml:112
#, kde-format
@@ -232,19 +228,19 @@
#, kde-format
msgctxt "@action:button accessible"
msgid "Left Click"
-msgstr ""
+msgstr "Ľavý klik"
#: qml/mousepad.qml:222
#, kde-format
msgctxt "@action:button accessible"
msgid "Middle Click"
-msgstr ""
+msgstr "Kliknutie stredného tlačidla"
#: qml/mousepad.qml:231
#, kde-format
msgctxt "@action:button accessible"
msgid "Right Click"
-msgstr ""
+msgstr "Pravý klik"
#: qml/mpris.qml:20
#, kde-format
@@ -301,25 +297,25 @@
#, kde-format
msgctxt "@title:group"
msgid "Backends"
-msgstr ""
+msgstr "Backendy"
#: qml/Settings.qml:54
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Bluetooth"
-msgstr ""
+msgstr "Bluetooth"
#: qml/Settings.qml:56
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Loopback"
-msgstr ""
+msgstr "Loopback"
#: qml/Settings.qml:58
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Network"
-msgstr ""
+msgstr "Sieť"
#: qml/Settings.qml:73
#, kde-format
@@ -335,44 +331,42 @@
#, kde-format
msgctxt "@title"
msgid "No Device Selected"
-msgstr ""
+msgstr "Žiadne zariadenie nie je vybrané"
#: qml/WelcomePage.qml:35
#, kde-format
msgctxt "@info"
msgid "Make sure to install KDE Connect on your other devices."
-msgstr ""
+msgstr "Nezabudnite nainštalovať aplikáciu KDE Connect do ostatných zariadení."
#: qml/WelcomePage.qml:42
-#, fuzzy, kde-format
-#| msgid "KDE Connect"
+#, kde-format
msgctxt "@title:context"
msgid "KDE Connect Android App"
-msgstr "KDE Connect"
+msgstr "KDE Connect Android Aplikácia"
#: qml/WelcomePage.qml:49
#, kde-format
msgctxt "Android Application Store"
msgid "F-Droid"
-msgstr ""
+msgstr "F-Droid"
#: qml/WelcomePage.qml:56
#, kde-format
msgctxt "Android Application Store"
msgid "Play Store"
-msgstr ""
+msgstr "Play Store"
#: qml/WelcomePage.qml:62
-#, fuzzy, kde-format
-#| msgid "KDE Connect"
+#, kde-format
msgctxt "@title:context"
msgid "KDE Connect iOS App"
-msgstr "KDE Connect"
+msgstr "KDE Connect iOS Aplikácia"
#: qml/WelcomePage.qml:67
#, kde-format
msgid "Apple Store"
-msgstr ""
+msgstr "Apple Store"
#: qml/WelcomePage.qml:73
#, kde-format
@@ -381,6 +375,9 @@
"KDEConnect\"><span style=\" text-decoration: underline;\">KDE Connect "
"Community wiki</span></a> for help."
msgstr ""
+"Ak máte problémy, navštívte <a href=\"https://userbase.kde.org/"
+"KDEConnect“><span style=\"text-decoration: underline;“>KDE Connect Community "
+"wiki</span></a>, kde nájdete pomoc."
#~ msgid "Find devices..."
#~ msgstr "Nájsť zariadenia..."
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-cli.po kdeconnect-25.04.2/po/sk/kdeconnect-cli.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-cli.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sk/kdeconnect-cli.po 2025-06-03 05:21:10.000000000 +0200
@@ -2,19 +2,20 @@
# Roman Paholik <wizzardsk@gmail.com>, 2014, 2015, 2016, 2019.
# Mthw <jari_45@hotmail.com>, 2019.
# SPDX-FileCopyrightText: 2019, 2020, 2021, 2024 Matej Mrenica <matejm98mthw@gmail.com>
+# SPDX-FileCopyrightText: 2025 Lucia Mrenica <lucia.mrenica@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-cli\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2024-12-23 00:40+0000\n"
-"PO-Revision-Date: 2024-04-27 16:45+0200\n"
-"Last-Translator: Matej Mrenica <matejm98mthw@gmail.com>\n"
+"PO-Revision-Date: 2025-05-25 12:31+0200\n"
+"Last-Translator: Lucia Mrenica <lucia.mrenica@gmail.com>\n"
"Language-Team: Slovak <kde-i18n-doc@kde.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.02.2\n"
+"X-Generator: Lokalize 25.04.1\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#, kde-format
@@ -60,24 +61,22 @@
#: kdeconnect-cli.cpp:45
#, kde-format
msgid "List all backends and status"
-msgstr ""
+msgstr "Zoznam všetkých backendov a stav"
#: kdeconnect-cli.cpp:46
-#, fuzzy, kde-format
-#| msgid "Unlock the specified device"
+#, kde-format
msgid "Enable the specified backend"
-msgstr "Odomknúť dané zariadenie"
+msgstr "Povoliť zadaný backend"
#: kdeconnect-cli.cpp:46 kdeconnect-cli.cpp:47
#, kde-format
msgid "backend"
-msgstr ""
+msgstr "backend"
#: kdeconnect-cli.cpp:47
-#, fuzzy, kde-format
-#| msgid "Unlock the specified device"
+#, kde-format
msgid "Disable the specified backend"
-msgstr "Odomknúť dané zariadenie"
+msgstr "Zakázať zadaný backend"
#: kdeconnect-cli.cpp:49
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-core.po kdeconnect-25.04.2/po/sk/kdeconnect-core.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-core.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/sk/kdeconnect-core.po 2025-06-03 05:21:10.000000000 +0200
@@ -3,19 +3,20 @@
# Mthw <jari_45@hotmail.com>, 2019.
# SPDX-FileCopyrightText: 2019, 2021, 2024 Matej Mrenica <matejm98mthw@gmail.com>
# Dusan Kazik <prescott66@gmail.com>, 2020.
+# SPDX-FileCopyrightText: 2025 Lucia Mrenica <lucia.mrenica@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-core\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-02-24 00:41+0000\n"
-"PO-Revision-Date: 2024-04-27 16:46+0200\n"
-"Last-Translator: Matej Mrenica <matejm98mthw@gmail.com>\n"
+"PO-Revision-Date: 2025-05-25 12:31+0200\n"
+"Last-Translator: Lucia Mrenica <lucia.mrenica@gmail.com>\n"
"Language-Team: Slovak <kde-i18n-doc@kde.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.02.2\n"
+"X-Generator: Lokalize 25.04.1\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: backends/lan/compositeuploadjob.cpp:78
@@ -41,7 +42,7 @@
#: backends/pairinghandler.cpp:61
#, kde-format
msgid "Device clocks are out of sync"
-msgstr ""
+msgstr "Hodiny zariadení nie sú synchronizované"
#: backends/pairinghandler.cpp:80
#, kde-format
@@ -107,7 +108,7 @@
#: device.cpp:469
#, kde-format
msgid "Protocol version: %1\n"
-msgstr ""
+msgstr "Verzia protokolu: %1\n"
#: filetransferjob.cpp:53
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-indicator.po kdeconnect-25.04.2/po/sk/kdeconnect-indicator.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-indicator.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sk/kdeconnect-indicator.po 2025-06-03 05:21:10.000000000 +0200
@@ -2,19 +2,20 @@
# Roman Paholik <wizzardsk@gmail.com>, 2020.
# SPDX-FileCopyrightText: 2020, 2021, 2024 Matej Mrenica <matejm98mthw@gmail.com>
# Dusan Kazik <prescott66@gmail.com>, 2020.
+# SPDX-FileCopyrightText: 2025 Lucia Mrenica <lucia.mrenica@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-indicator\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-04-27 16:46+0200\n"
-"Last-Translator: Matej Mrenica <matejm98mthw@gmail.com>\n"
+"PO-Revision-Date: 2025-05-25 12:31+0200\n"
+"Last-Translator: Lucia Mrenica <lucia.mrenica@gmail.com>\n"
"Language-Team: Slovak <kde-i18n-doc@kde.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.02.2\n"
+"X-Generator: Lokalize 25.04.1\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#, kde-format
@@ -44,10 +45,9 @@
msgstr "Prezvoniť zariadenie"
#: deviceindicator.cpp:95
-#, fuzzy, kde-format
-#| msgid "Send a file/URL"
+#, kde-format
msgid "Send files"
-msgstr "Odoslať súbor/URL"
+msgstr "Odoslať súbory"
#: deviceindicator.cpp:117
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-kcm.po kdeconnect-25.04.2/po/sk/kdeconnect-kcm.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-kcm.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sk/kdeconnect-kcm.po 2025-06-03 05:21:10.000000000 +0200
@@ -3,19 +3,20 @@
# Mthw <jari_45@hotmail.com>, 2019.
# Dusan Kazik <prescott66@gmail.com>, 2020.
# SPDX-FileCopyrightText: 2020, 2024 Matej Mrenica <matejm98mthw@gmail.com>
+# SPDX-FileCopyrightText: 2025 Lucia Mrenica <lucia.mrenica@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-kcm\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-04-27 16:46+0200\n"
-"Last-Translator: Matej Mrenica <matejm98mthw@gmail.com>\n"
+"PO-Revision-Date: 2025-05-25 12:36+0200\n"
+"Last-Translator: Lucia Mrenica <lucia.mrenica@gmail.com>\n"
"Language-Team: Slovak <kde-i18n-doc@kde.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.02.2\n"
+"X-Generator: Lokalize 25.04.1\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#, kde-format
@@ -29,34 +30,33 @@
msgstr "wizzardsk@gmail.com,prescott66@gmail.com"
#: kcm.cpp:110
-#, fuzzy, kde-format
-#| msgid "KDE Connect Settings"
+#, kde-format
msgid "Error: KDE Connect is not running"
-msgstr "Nastavenia aplikácie KDE Connect"
+msgstr "Chyba: KDE Connect nie je spustené"
#: kcm.cpp:134
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Bluetooth"
-msgstr ""
+msgstr "Bluetooth"
#: kcm.cpp:136
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Loopback"
-msgstr ""
+msgstr "Loopback"
#: kcm.cpp:138
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Network"
-msgstr ""
+msgstr "Sieť"
#: kcm.cpp:141
#, kde-format
msgctxt "@info KDE Connect provider name"
msgid "Unknown"
-msgstr ""
+msgstr "Neznáme"
#: kcm.cpp:340
#, kde-format
@@ -121,7 +121,7 @@
#: kcm.ui:134
#, kde-format
msgid "Backends:"
-msgstr ""
+msgstr "Backendy:"
#. i18n: ectx: property (text), widget (QLabel, name_label)
#: kcm.ui:216
@@ -139,7 +139,7 @@
#: kcm.ui:255
#, kde-format
msgid "KSqueezedTextLabel"
-msgstr ""
+msgstr "KSqueezedTextLabel"
#. i18n: ectx: property (text), widget (QPushButton, cancel_button)
#: kcm.ui:286
@@ -220,25 +220,22 @@
#: list.qml:52
#, kde-format
msgid "Remembered"
-msgstr ""
+msgstr "Zapamätané"
#: list.qml:54
-#, fuzzy, kde-format
-#| msgid "Available plugins"
+#, kde-format
msgid "Available"
-msgstr "Dostupné zásuvné moduly"
+msgstr "Dostupný"
#: list.qml:56
-#, fuzzy, kde-format
-#| msgid "KDE Connect"
+#, kde-format
msgid "Connected"
-msgstr "KDE Connect"
+msgstr "Pripojené"
#: list.qml:61
-#, fuzzy, kde-format
-#| msgid "No device selected."
+#, kde-format
msgid "No devices found"
-msgstr "Nie je vybrané zariadenie."
+msgstr "Nenašli sa žiadne zariadenia"
#~ msgid "🔑 abababab"
#~ msgstr "🔑 abababab"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-kded.po kdeconnect-25.04.2/po/sk/kdeconnect-kded.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-kded.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sk/kdeconnect-kded.po 2025-06-03 05:21:10.000000000 +0200
@@ -2,19 +2,20 @@
# Roman Paholik <wizzardsk@gmail.com>, 2013, 2014, 2015, 2022.
# Matej Mrenica <matejm98mthw@gmail.com>, 2019, 2020, 2021.
# Dusan Kazik <prescott66@gmail.com>, 2020.
+# SPDX-FileCopyrightText: 2025 Lucia Mrenica <lucia.mrenica@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-kded\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2022-04-18 17:36+0200\n"
-"Last-Translator: Roman Paholik <wizzardsk@gmail.com>\n"
-"Language-Team: Slovak <kde-sk@linux.sk>\n"
+"PO-Revision-Date: 2025-05-25 12:31+0200\n"
+"Last-Translator: Lucia Mrenica <lucia.mrenica@gmail.com>\n"
+"Language-Team: Slovak <kde-i18n-doc@kde.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 21.12.3\n"
+"X-Generator: Lokalize 25.04.1\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#, kde-format
@@ -28,16 +29,13 @@
msgstr "wizzardsk@gmail.com,prescott66@gmail.com"
#: desktop_daemon.cpp:37
-#, fuzzy, kde-format
-#| msgid ""
-#| "Pairing request from %1\n"
-#| "Key: %2..."
+#, kde-format
msgid ""
"Pairing request from %1\n"
"Key: %2"
msgstr ""
"Požiadavka na spárovanie z %1\n"
-"Kľúč: %2..."
+"Kľúč: %2"
#: desktop_daemon.cpp:45
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-kio.po kdeconnect-25.04.2/po/sk/kdeconnect-kio.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-kio.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/sk/kdeconnect-kio.po 2025-06-03 05:21:10.000000000 +0200
@@ -1,19 +1,20 @@
# translation of kdeconnect-kio.po to Slovak
# Roman Paholik <wizzardsk@gmail.com>, 2014, 2019.
# Dusan Kazik <prescott66@gmail.com>, 2020.
+# SPDX-FileCopyrightText: 2025 Lucia Mrenica <lucia.mrenica@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-kio\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2024-12-24 00:40+0000\n"
-"PO-Revision-Date: 2020-04-06 09:22+0200\n"
-"Last-Translator: Dusan Kazik <prescott66@gmail.com>\n"
+"PO-Revision-Date: 2025-05-25 12:31+0200\n"
+"Last-Translator: Lucia Mrenica <lucia.mrenica@gmail.com>\n"
"Language-Team: Slovak <kde-i18n-doc@kde.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.12.3\n"
+"X-Generator: Lokalize 25.04.1\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: kiokdeconnect.cpp:75
@@ -54,7 +55,7 @@
#: kiokdeconnect.cpp:235
#, kde-format
msgid "Failed to get mount point: %1"
-msgstr ""
+msgstr "Nepodarilo sa získať prípojný bod: %1"
#~ msgid "Could not mount device filesystem"
#~ msgstr "Nemôžem pripojiť súborový systém zariadenia"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-plugins.po kdeconnect-25.04.2/po/sk/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sk/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -3,19 +3,20 @@
# Mthw <jari_45@hotmail.com>, 2019.
# SPDX-FileCopyrightText: 2019, 2020, 2021, 2024 Matej Mrenica <matejm98mthw@gmail.com>
# Dusan Kazik <prescott66@gmail.com>, 2020.
+# SPDX-FileCopyrightText: 2025 Lucia Mrenica <lucia.mrenica@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-04-27 16:46+0200\n"
-"Last-Translator: Matej Mrenica <matejm98mthw@gmail.com>\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
+"PO-Revision-Date: 2025-05-25 12:38+0200\n"
+"Last-Translator: Lucia Mrenica <lucia.mrenica@gmail.com>\n"
"Language-Team: Slovak <kde-i18n-doc@kde.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.02.2\n"
+"X-Generator: Lokalize 25.04.1\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: battery/batteryplugin.cpp:119
@@ -33,25 +34,25 @@
#: clipboard/clipboard_config.ui:17
#, kde-format
msgid "Clipboard plugin"
-msgstr ""
+msgstr "Zásuvný modul schránky"
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_1)
#: clipboard/clipboard_config.ui:32
#, kde-format
msgid "Automatic synchronization"
-msgstr ""
+msgstr "Automatická synchronizácia"
#. i18n: ectx: property (text), widget (QCheckBox, check_autoshare)
#: clipboard/clipboard_config.ui:38
#, kde-format
msgid "Automatically share the clipboard from this device"
-msgstr ""
+msgstr "Automatické zdieľanie schránky z tohto zariadenia"
#. i18n: ectx: property (text), widget (QCheckBox, check_password)
#: clipboard/clipboard_config.ui:45
#, kde-format
msgid "Including passwords (as marked by password managers)"
-msgstr ""
+msgstr "Vrátane hesiel (označených správcami hesiel)"
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: findthisdevice/findthisdevice_config.ui:17
@@ -248,7 +249,7 @@
msgstr "Importovať"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Názov"
@@ -273,22 +274,22 @@
msgid "Phone is connected"
msgstr "Telefón je pripojený"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Na čiernom zozname"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Názov upozorňovanej aplikácie."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Synchronizovať upozornenia aplikácie?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
@@ -442,7 +443,7 @@
#, kde-format
msgctxt "@info Some piece of text was received from a connected device"
msgid "Shared text from %1 copied to clipboard"
-msgstr ""
+msgstr "Spoločný text z %1 skopírovaný do schránky"
#: share/shareplugin.cpp:191
#, kde-format
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-sms.po kdeconnect-25.04.2/po/sk/kdeconnect-sms.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sk/kdeconnect-sms.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sk/kdeconnect-sms.po 2025-06-03 05:21:10.000000000 +0200
@@ -2,19 +2,20 @@
# Roman Paholik <wizzardsk@gmail.com>, 2020, 2022.
# SPDX-FileCopyrightText: 2020, 2021, 2024 Matej Mrenica <matejm98mthw@gmail.com>
# Dusan Kazik <prescott66@gmail.com>, 2020.
+# SPDX-FileCopyrightText: 2025 Lucia Mrenica <lucia.mrenica@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: kdeconnect-sms\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2025-04-19 02:34+0000\n"
-"PO-Revision-Date: 2024-04-27 16:45+0200\n"
-"Last-Translator: Matej Mrenica <matejm98mthw@gmail.com>\n"
+"PO-Revision-Date: 2025-05-25 12:34+0200\n"
+"Last-Translator: Lucia Mrenica <lucia.mrenica@gmail.com>\n"
"Language-Team: Slovak <kde-i18n-doc@kde.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.02.2\n"
+"X-Generator: Lokalize 25.04.1\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#, kde-format
@@ -190,10 +191,9 @@
msgstr "O"
#: qml/Main.qml:115
-#, fuzzy, kde-format
-#| msgid "About"
+#, kde-format
msgid "About KDE"
-msgstr "O"
+msgstr "Informácie o KDE"
#: qml/MessageAttachments.qml:114
#, kde-format
@@ -211,29 +211,27 @@
msgstr "Bol prekročený limit maximálnej veľkosti správy."
#: qml/SendingArea.qml:63
-#, fuzzy, kde-format
-#| msgid "Send a message"
+#, kde-format
msgid "Send a message…"
-msgstr "Odoslať správu"
+msgstr "Odoslať správu…"
#: qml/SendingArea.qml:119
#, kde-format
msgctxt "@info:tooltip"
msgid "Attach an image or file"
-msgstr ""
+msgstr "Pripojiť obrázok alebo súbor"
#: qml/SendingArea.qml:144
#, kde-format
msgctxt "@info:tooltip"
msgid "Clear attachments"
-msgstr ""
+msgstr "Vyčistiť prílohy"
#: qml/SendingArea.qml:173
-#, fuzzy, kde-format
-#| msgid "Send a message"
+#, kde-format
msgctxt "@info:tooltip"
msgid "Send message"
-msgstr "Odoslať správu"
+msgstr "Odoslať správu..."
#~ msgid "Copy Message"
#~ msgstr "Kopírovať správu"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sk/plasma_applet_org.kde.kdeconnect.po kdeconnect-25.04.2/po/sk/plasma_applet_org.kde.kdeconnect.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sk/plasma_applet_org.kde.kdeconnect.po 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/po/sk/plasma_applet_org.kde.kdeconnect.po 2025-06-03 05:21:10.000000000 +0200
@@ -3,19 +3,20 @@
# Mthw <jari_45@hotmail.com>, 2019.
# SPDX-FileCopyrightText: 2020, 2021, 2022, 2024 Matej Mrenica <matejm98mthw@gmail.com>
# Dusan Kazik <prescott66@gmail.com>, 2020.
+# SPDX-FileCopyrightText: 2025 Lucia Mrenica <lucia.mrenica@gmail.com>
msgid ""
msgstr ""
"Project-Id-Version: plasma_applet_org.kde.kdeconnect\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2024-07-13 00:39+0000\n"
-"PO-Revision-Date: 2024-04-27 16:44+0200\n"
-"Last-Translator: Matej Mrenica <matejm98mthw@gmail.com>\n"
+"PO-Revision-Date: 2025-05-25 12:38+0200\n"
+"Last-Translator: Lucia Mrenica <lucia.mrenica@gmail.com>\n"
"Language-Team: Slovak <kde-i18n-doc@kde.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.02.2\n"
+"X-Generator: Lokalize 25.04.1\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: package/contents/ui/Battery.qml:33
@@ -44,11 +45,9 @@
msgstr "Žiadny signál"
#: package/contents/ui/DeviceDelegate.qml:82
-#, fuzzy, kde-format
-#| msgid "Paired device is unavailable"
-#| msgid_plural "All paired devices are unavailable"
+#, kde-format
msgid "Virtual Monitor is not available"
-msgstr "Spárované zariadenie nie je dostupné"
+msgstr "Virtuálny monitor nie je k dispozícii"
#: package/contents/ui/DeviceDelegate.qml:87
#, kde-format
@@ -98,17 +97,17 @@
#: package/contents/ui/DeviceDelegate.qml:197
#, kde-format
msgid "Remote device does not have a VNC client (eg. krdc) installed."
-msgstr ""
+msgstr "Vzdialené zariadenie nemá nainštalovaného klienta VNC (napr. krdc)."
#: package/contents/ui/DeviceDelegate.qml:201
#, kde-format
msgid "The krfb package is required on the local device."
-msgstr ""
+msgstr "V miestnom zariadení sa vyžaduje balík krfb."
#: package/contents/ui/DeviceDelegate.qml:208
#, kde-format
msgid "Failed to create the virtual monitor."
-msgstr ""
+msgstr "Nepodarilo sa vytvoriť virtuálny monitor."
#: package/contents/ui/DeviceDelegate.qml:259
#, kde-format
@@ -187,10 +186,9 @@
"Nainštalujte KDE Connect na vašom Android zariadení na integráciu s Plasmou!"
#: package/contents/ui/FullRepresentation.qml:71
-#, fuzzy, kde-format
-#| msgid "Pair a Device..."
+#, kde-format
msgid "Pair a Device…"
-msgstr "Spárovať zariadenie..."
+msgstr "Spárovať zariadenie…"
#: package/contents/ui/FullRepresentation.qml:83
#, kde-format
@@ -203,8 +201,7 @@
msgstr "Nainštalovať z F-Droid"
#: package/contents/ui/main.qml:55
-#, fuzzy, kde-format
-#| msgid "KDE Connect Settings..."
+#, kde-format
msgid "KDE Connect Settings…"
msgstr "Nastavenia KDE Connect..."
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sl/kdeconnect-plugins.po kdeconnect-25.04.2/po/sl/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sl/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sl/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-08-29 09:39+0200\n"
"Last-Translator: Matjaž Jeran <matjaz.jeran@amis.net>\n"
"Language-Team: Slovenian <lugos-slo@lugos.si>\n"
@@ -248,7 +248,7 @@
msgstr "Uvoz"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Ime"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Telefon je povezan"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Na črnem seznamu"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Ime aplikacije, ki obvešča."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Naj uskladim obvestila aplikacije?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sr/kdeconnect-plugins.po kdeconnect-25.04.2/po/sr/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sr/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sr/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2017-09-28 17:57+0200\n"
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
"Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
@@ -251,7 +251,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Назив"
@@ -278,22 +278,22 @@
msgid "Phone is connected"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "На црној листи"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Назив обавештавајућег програма."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Синхронизовати обавештења програма?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sr@ijekavian/kdeconnect-plugins.po kdeconnect-25.04.2/po/sr@ijekavian/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sr@ijekavian/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sr@ijekavian/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2017-09-28 17:57+0200\n"
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
"Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
@@ -251,7 +251,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Назив"
@@ -278,22 +278,22 @@
msgid "Phone is connected"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "На црној листи"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Назив обавештавајућег програма."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Синхронизовати обавештења програма?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sr@ijekavianlatin/kdeconnect-plugins.po kdeconnect-25.04.2/po/sr@ijekavianlatin/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sr@ijekavianlatin/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sr@ijekavianlatin/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2017-09-28 17:57+0200\n"
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
"Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
@@ -251,7 +251,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Naziv"
@@ -278,22 +278,22 @@
msgid "Phone is connected"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Na crnoj listi"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Naziv obaveštavajućeg programa."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sinhronizovati obaveštenja programa?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sr@latin/kdeconnect-plugins.po kdeconnect-25.04.2/po/sr@latin/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sr@latin/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sr@latin/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2017-09-28 17:57+0200\n"
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
"Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
@@ -251,7 +251,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Naziv"
@@ -278,22 +278,22 @@
msgid "Phone is connected"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Na crnoj listi"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Naziv obaveštavajućeg programa."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Sinhronizovati obaveštenja programa?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/sv/kdeconnect-plugins.po kdeconnect-25.04.2/po/sv/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/sv/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/sv/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-08-29 20:18+0200\n"
"Last-Translator: Stefan Asserhäll <stefan.asserhall@gmail.com>\n"
"Language-Team: Swedish <kde-i18n-doc@kde.org>\n"
@@ -247,7 +247,7 @@
msgstr "Importera"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Namn"
@@ -272,22 +272,22 @@
msgid "Phone is connected"
msgstr "Telefon är ansluten"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Svartlistade"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Namn på underrättande program."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Synkronisera underrättelser från ett program?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/ta/kdeconnect-plugins.po kdeconnect-25.04.2/po/ta/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/ta/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/ta/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-04-07 17:37+0530\n"
"Last-Translator: Kishore G <kishore96@gmail.com>\n"
"Language-Team: Tamil <kde-i18n-doc@kde.org>\n"
@@ -247,7 +247,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr ""
@@ -272,22 +272,22 @@
msgid "Phone is connected"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/tg/kdeconnect-plugins.po kdeconnect-25.04.2/po/tg/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/tg/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/tg/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-kde\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2020-10-06 15:33+0500\n"
"Last-Translator: Victor Ibragimov <victor.ibragimov@gmail.com>\n"
"Language-Team: English <kde-i18n-doc@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr ""
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Ном"
@@ -275,22 +275,22 @@
msgid "Phone is connected"
msgstr "Телефон пайваст шуд"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr ""
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/tr/kdeconnect-plugins.po kdeconnect-25.04.2/po/tr/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/tr/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/tr/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2025-02-04 18:28+0300\n"
"Last-Translator: Emir SARI <emir_sari@icloud.com>\n"
"Language-Team: Turkish <kde-l10n-tr@kde.org>\n"
@@ -248,7 +248,7 @@
msgstr "İçe Aktar"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Ad"
@@ -273,22 +273,22 @@
msgid "Phone is connected"
msgstr "Telefon bağlandı"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Kara listeye alındı"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Bildiren uygulamanın bir adı."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Uygulamaların bildirimleri eşzamanlansın mı?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/uk/kdeconnect-plugins.po kdeconnect-25.04.2/po/uk/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/uk/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/uk/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-08-29 09:19+0300\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Ukrainian <kde-i18n-uk@kde.org>\n"
@@ -250,7 +250,7 @@
msgstr "Імпорт"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "Назва"
@@ -275,22 +275,22 @@
msgid "Phone is connected"
msgstr "З'єднано телефон"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "Заборонені"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "Назва програми походження сповіщення."
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "Синхронізувати сповіщення програми?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/zh_CN/kdeconnect-plugins.po kdeconnect-25.04.2/po/zh_CN/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/zh_CN/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/zh_CN/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: kdeorg\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2024-04-22 15:59\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
@@ -247,7 +247,7 @@
msgstr "导入"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "名称"
@@ -272,22 +272,22 @@
msgid "Phone is connected"
msgstr "手机未连接"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "已加入黑名单的"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "通知应用程序的名称。"
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "要同步应用程序的通知吗?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/po/zh_TW/kdeconnect-plugins.po kdeconnect-25.04.2/po/zh_TW/kdeconnect-plugins.po
--- kdeconnect-25.04.0+git20250504.28fb9142/po/zh_TW/kdeconnect-plugins.po 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/po/zh_TW/kdeconnect-plugins.po 2025-06-03 05:21:10.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: kdeconnect-plugins\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-04-19 02:34+0000\n"
+"POT-Creation-Date: 2025-05-12 02:31+0000\n"
"PO-Revision-Date: 2023-12-09 17:28+0900\n"
"Last-Translator: Kisaragi Hiu <mail@kisaragi-hiu.com>\n"
"Language-Team: Traditional Chinese <zh-l10n@lists.slat.org>\n"
@@ -251,7 +251,7 @@
msgstr "匯入"
#: runcommand/runcommand_config.cpp:93
-#: sendnotifications/notifyingapplicationmodel.cpp:177
+#: sendnotifications/notifyingapplicationmodel.cpp:178
#, kde-format
msgid "Name"
msgstr "名字"
@@ -276,22 +276,22 @@
msgid "Phone is connected"
msgstr "手機已連線"
-#: sendnotifications/notifyingapplicationmodel.cpp:181
+#: sendnotifications/notifyingapplicationmodel.cpp:182
#, kde-format
msgid "Blacklisted"
msgstr "黑名單"
-#: sendnotifications/notifyingapplicationmodel.cpp:185
+#: sendnotifications/notifyingapplicationmodel.cpp:186
#, kde-format
msgid "Name of a notifying application."
msgstr "通知應用程式的名稱。"
-#: sendnotifications/notifyingapplicationmodel.cpp:187
+#: sendnotifications/notifyingapplicationmodel.cpp:188
#, kde-format
msgid "Synchronize notifications of an application?"
msgstr "同步應用程式的通知?"
-#: sendnotifications/notifyingapplicationmodel.cpp:190
+#: sendnotifications/notifyingapplicationmodel.cpp:191
#, kde-format
msgid ""
"Regular expression defining which notifications should not be sent.\n"
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/settings/org.kde.kdeconnect-settings.desktop kdeconnect-25.04.2/settings/org.kde.kdeconnect-settings.desktop
--- kdeconnect-25.04.0+git20250504.28fb9142/settings/org.kde.kdeconnect-settings.desktop 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/settings/org.kde.kdeconnect-settings.desktop 2025-06-03 05:21:10.000000000 +0200
@@ -4,7 +4,7 @@
Terminal=false
Exec=kdeconnect-settings
Name=KDE Connect Settings
-Name[ar]=إعدادات كِيدِي المتّصل
+Name[ar]=إعدادات جسر كِيدِي
Name[az]=KDE Connect Ayarları
Name[bg]=Настройки на KDE Connect
Name[ca]=Arranjament del KDE Connect
@@ -85,6 +85,7 @@
GenericName[pt_BR]=Configurações da sincronização de dispositivo
GenericName[ru]=Параметры синхронизации с мобильным устройством
GenericName[sa]=उपकरण समन्वयन सेटिंग्स्
+GenericName[sk]=Nastavenia synchronizácie zariadenia
GenericName[sl]=Nastavitve sinhronizacijenaprav
GenericName[sv]=Inställning av enhetssynkronisering
GenericName[ta]=சாதன ஒத்திசைவு அமைப்புகள்
@@ -123,6 +124,7 @@
Comment[pt_BR]=Configurar sincronização de dispositivo
Comment[ru]=Настройка синхронизации с мобильным устройством
Comment[sa]=उपकरणसमन्वयनं विन्यस्यताम्
+Comment[sk]=Konfigurácia synchronizácie zariadenia
Comment[sl]=Konfiguriraj sinhronizacijo naprav
Comment[sv]=Anpassa enhetssynkronisering
Comment[ta]=சாதன ஒத்திசைவை அமைக்க விடும்
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/smsapp/org.kde.kdeconnect.sms.desktop kdeconnect-25.04.2/smsapp/org.kde.kdeconnect.sms.desktop
--- kdeconnect-25.04.0+git20250504.28fb9142/smsapp/org.kde.kdeconnect.sms.desktop 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/smsapp/org.kde.kdeconnect.sms.desktop 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,6 @@
[Desktop Entry]
Name=KDE Connect SMS
-Name[ar]=رسائل نصية لكِيدِي المتّصل
+Name[ar]=رسائل نصية لجسر كِيدِي
Name[az]=KDE Connect SMS
Name[bg]=KDE Connect SMS
Name[ca]=SMS del KDE Connect
@@ -78,6 +78,7 @@
GenericName[pt_BR]=Mensagem de texto
GenericName[ru]=Обмен текстовыми сообщениями
GenericName[sa]=पाठसन्देशः
+GenericName[sk]=Posielanie textových správ
GenericName[sl]=Sporočanje besedil
GenericName[sv]=Textmeddelanden
GenericName[ta]=குறுஞ்செய்தி சேவை
@@ -116,6 +117,7 @@
Comment[pt_BR]=Ler e executar comandos nos dispositivos conectados
Comment[ru]=Чтение и отправка SMS-сообщений на подключённых устройствах
Comment[sa]=सम्बद्धेषु उपकरणेषु एस.एम.एस.सन्देशान् पठन्तु प्रेषयन्तु च
+Comment[sk]=Čítanie a odosielanie správ SMS na pripojených zariadeniach
Comment[sl]=Beri in pošiljaj SMS na povezanih napravah
Comment[sv]=Läs och skicka meddelanden via SMS på anslutna apparater
Comment[ta]=இணைந்துள்ள சாதனங்களில் குறுஞ்செய்திகளை படிக்கவும் அனுப்பவும் விடும்
diff -Nru kdeconnect-25.04.0+git20250504.28fb9142/urlhandler/org.kde.kdeconnect.handler.desktop kdeconnect-25.04.2/urlhandler/org.kde.kdeconnect.handler.desktop
--- kdeconnect-25.04.0+git20250504.28fb9142/urlhandler/org.kde.kdeconnect.handler.desktop 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/urlhandler/org.kde.kdeconnect.handler.desktop 2025-06-03 05:21:10.000000000 +0200
@@ -1,6 +1,6 @@
[Desktop Entry]
Name=KDE Connect
-Name[ar]=كِيدِي المتّصل
+Name[ar]=جسر كِيدِي
Name[ast]=KDE Connect
Name[az]=KDE Connect
Name[bg]=KDE Connect
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/app/CMakeLists.txt kdeconnect-25.04.2/app/CMakeLists.txt
--- kdeconnect-25.04.0+git20250504.28fb9142/app/CMakeLists.txt 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/app/CMakeLists.txt 2025-06-03 05:21:10.000000000 +0200
@@ -43,7 +43,7 @@
qml/WelcomePage.qml
)
-target_link_libraries(kdeconnect-app PRIVATE Qt::Quick Qt::QuickControls2 Qt::Widgets KF6::CoreAddons KF6::I18n KF6::KCMUtils KF6::Crash)
+target_link_libraries(kdeconnect-app PRIVATE Qt::Quick Qt::QuickControls2 Qt::Widgets KF6::CoreAddons KF6::I18n KF6::KCMUtils KF6::Crash KF6::ItemModels)
install(TARGETS kdeconnect-app ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
install(PROGRAMS org.kde.kdeconnect.app.desktop DESTINATION ${KDE_INSTALL_APPDIR})
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/CMakeLists.txt kdeconnect-25.04.2/CMakeLists.txt
--- kdeconnect-25.04.0+git20250504.28fb9142/CMakeLists.txt 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/CMakeLists.txt 2025-06-03 05:21:10.000000000 +0200
@@ -3,7 +3,7 @@
# KDE Release Service Version, managed by release script
set (RELEASE_SERVICE_VERSION_MAJOR "25")
set (RELEASE_SERVICE_VERSION_MINOR "04")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
project(kdeconnect VERSION ${RELEASE_SERVICE_VERSION})
@@ -102,7 +102,13 @@
endif()
find_package(KF6 ${KF_MIN_VERSION} REQUIRED COMPONENTS I18n ConfigWidgets DBusAddons IconThemes Notifications
- KIO KCMUtils Service Solid Kirigami People WindowSystem GuiAddons DocTools Crash)
+ KIO KCMUtils Service Solid Kirigami People WindowSystem GuiAddons Crash ItemModels)
+
+find_package(KF6DocTools ${KF_MIN_VERSION})
+set_package_properties(KF6DocTools PROPERTIES DESCRIPTION
+ "Tools to generate documentation"
+ TYPE OPTIONAL
+)
if (WIN32)
get_filename_component(WINDOWS_KITS_DIR
@@ -141,10 +147,11 @@
add_subdirectory(plasmoid)
endif()
-add_subdirectory(doc)
-kdoctools_install(po)
-
ki18n_install(po)
+if(KF6DocTools_FOUND)
+ kdoctools_install(po)
+ add_subdirectory(doc)
+endif()
if(BUILD_TESTING)
add_subdirectory(tests)
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/daemon/org.kde.kdeconnect.daemon.desktop.cmake kdeconnect-25.04.2/daemon/org.kde.kdeconnect.daemon.desktop.cmake
--- kdeconnect-25.04.0+git20250504.28fb9142/daemon/org.kde.kdeconnect.daemon.desktop.cmake 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/daemon/org.kde.kdeconnect.daemon.desktop.cmake 2025-06-03 05:21:10.000000000 +0200
@@ -8,7 +8,7 @@
Icon=kdeconnect
Name=KDE Connect
-Name[ar]=كِيدِي المتّصل
+Name[ar]=جسر كِيدِي
Name[ast]=KDE Connect
Name[az]=KDE Connect
Name[bg]=KDE Connect
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/data/org.kde.kdeconnect.metainfo.xml kdeconnect-25.04.2/data/org.kde.kdeconnect.metainfo.xml
--- kdeconnect-25.04.0+git20250504.28fb9142/data/org.kde.kdeconnect.metainfo.xml 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/data/org.kde.kdeconnect.metainfo.xml 2025-06-03 05:21:10.000000000 +0200
@@ -4,7 +4,7 @@
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-2.0+</project_license>
<name>KDE Connect</name>
- <name xml:lang="ar">كِيدِي المتّصل</name>
+ <name xml:lang="ar">جسر كِيدِي</name>
<name xml:lang="ast">KDE Connect</name>
<name xml:lang="az">KDE Connect</name>
<name xml:lang="bg">KDE Connect</name>
@@ -111,7 +111,7 @@
<description>
<p>KDE Connect makes your phone and computer work better together: share your clipboard and access files across devices, turn your phone into a remote control for your computer, find your phone when it has slipped down the back of your couch, see your phone notifications from your computer, and much more!
</p>
- <p xml:lang="ar">يجعل كيدي المتصل هاتفك والحاسوب يعملان معًا بشكل أفضل: شارك حافظتك وقم بالوصول إلى الملفات عبر الأجهزة، وحول هاتفك إلى جهاز تحكم عن بعد لحاسوبك وابحث عن هاتفك عندما ينزلق إلى أسفل الأريكة، وشاهد إشعارات هاتفك من حاسوبك، وأكثر من ذلك بكثير!</p>
+ <p xml:lang="ar">يجعل جسر كِيدِي هاتفك والحاسوب يعملان معًا بشكل أفضل: شارك حافظتك وقم بالوصول إلى الملفات عبر الأجهزة، وحول هاتفك إلى جهاز تحكم عن بعد لحاسوبك وابحث عن هاتفك عندما ينزلق أسفل الأريكة، وشاهد إشعارات هاتفك من حاسوبك، وأكثر من ذلك بكثير!</p>
<p xml:lang="bg">KDE Connect подобрява връзката между телефона и компютъра с допълнителни функции като: споделяне на вашите данни от клипборда и достъп до файлове на различни устройства, превръщане на телефона в дистанционно за вашия компютър, намиране на телефона (например, когато се е плъзнал зад дивана), възможност за преглед на телефонните известия на вашия компютър и много други!</p>
<p xml:lang="ca">El KDE Connect fa que el telèfon i l'ordinador funcionin millor junts: compartiu el porta-retalls i accediu a fitxers entre els dispositius, convertiu el telèfon en un control remot de l'ordinador, trobeu el telèfon quan s'escoli per la part posterior del sofà, vegeu les notificacions del telèfon des de l'ordinador i molt més!</p>
<p xml:lang="ca-valencia">KDE Connect fa que el telèfon i l'ordinador funcionen millor junts: compartiu el porta-retalls i accediu a fitxers entre els dispositius, convertiu el telèfon en un control remot de l'ordinador, trobeu el telèfon quan s'escoli per la part posterior del sofà, vegeu les notificacions del telèfon des de l'ordinador i molt més!</p>
@@ -188,6 +188,7 @@
<value key="KDE::supporters">[fat_malama](https://www.instagram.com/fat_malama/); Alexandru Traistaru; Neeko iko; Daniel Lloyd-Miller; [mdPlusPlus](https://github.com/mdPlusPlus)</value>
</custom>
<releases>
+ <release version="25.04.2" date="2025-06-05"/>
<release version="25.04.1" date="2025-05-08"/>
<release version="25.04.0" date="2025-04-17"/>
<release version="24.12.3" date="2025-03-06"/>
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/debian/changelog kdeconnect-25.04.2/debian/changelog
--- kdeconnect-25.04.0+git20250504.28fb9142/debian/changelog 2025-05-04 18:39:07.000000000 +0200
+++ kdeconnect-25.04.2/debian/changelog 2025-06-07 01:20:50.000000000 +0200
@@ -1,3 +1,18 @@
+kdeconnect (25.04.2-1) unstable; urgency=medium
+
+ [ Aurélien COUDERC ]
+ * New upstream release (25.04.2).
+ - Change qtdbus-qt5 to qtdbus-qt6 in the sample commands logic to find the
+ qdbus executable name.
+ - Kcm: fix memory leak in devicesRemoved().
+ - Fix mpris sessions changed event handler.
+ - Add plugin settings dep.
+ - Make KF6DocTools optional.
+ - Sendnotifications: Add missing qRegisterMetaType<>().
+ * Update build-deps and deps with the info from cmake.
+
+ -- Aurélien COUDERC <coucouf@debian.org> Sat, 07 Jun 2025 01:20:50 +0200
+
kdeconnect (25.04.0+git20250504.28fb9142-1) unstable; urgency=medium
[ Aurélien COUDERC ]
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/debian/control kdeconnect-25.04.2/debian/control
--- kdeconnect-25.04.0+git20250504.28fb9142/debian/control 2025-04-17 19:00:02.000000000 +0200
+++ kdeconnect-25.04.2/debian/control 2025-06-07 01:20:50.000000000 +0200
@@ -23,6 +23,7 @@
libkf6guiaddons-dev (>= 6.0.0~),
libkf6i18n-dev (>= 6.0.0~),
libkf6iconthemes-dev (>= 6.0.0~),
+ libkf6itemmodels-dev (>= 6.0.0~),
libkf6kcmutils-dev (>= 6.0.0~),
libkf6kio-dev (>= 6.0.0~),
libkf6modemmanagerqt-dev (>= 6.0.0~),
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/.gitlab-ci.yml kdeconnect-25.04.2/.gitlab-ci.yml
--- kdeconnect-25.04.0+git20250504.28fb9142/.gitlab-ci.yml 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/.gitlab-ci.yml 2025-06-03 05:21:10.000000000 +0200
@@ -16,7 +16,13 @@
- /gitlab-templates/clang-format.yml
- /gitlab-templates/craft-windows-x86-64-qt6.yml
- /gitlab-templates/craft-windows-appx-qt6.yml
- - /gitlab-templates/craft-macos-x86-64-qt6.yml
- - /gitlab-templates/craft-macos-arm64-qt6.yml
- /gitlab-templates/xml-lint.yml
- /gitlab-templates/yaml-lint.yml
+ - project: sysadmin/ci-utilities
+ file:
+ - /gitlab-templates/craft-macos-x86-64-qt6.yml
+ - /gitlab-templates/craft-macos-arm64-qt6.yml
+ rules:
+ - if: $CI_COMMIT_BRANCH =~ /^release\//
+ when: never
+ - when: always
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/kcm/kcm.cpp kdeconnect-25.04.2/kcm/kcm.cpp
--- kdeconnect-25.04.0+git20250504.28fb9142/kcm/kcm.cpp 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/kcm/kcm.cpp 2025-06-03 05:21:10.000000000 +0200
@@ -234,9 +234,9 @@
}
// If current device no longer exists, unselect it
if (devicesModel->rowForDevice(currentDevice->id()) == -1) {
+ delete currentDevice;
currentDevice = nullptr;
kcmUi.deviceInfo->setVisible(false);
- delete currentDevice;
}
}
Seulement dans kdeconnect-25.04.0+git20250504.28fb9142: .pc
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/plugins/kdeconnect.notifyrc kdeconnect-25.04.2/plugins/kdeconnect.notifyrc
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/kdeconnect.notifyrc 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/kdeconnect.notifyrc 2025-06-03 05:21:10.000000000 +0200
@@ -1,7 +1,7 @@
[Global]
IconName=kdeconnect
Name=KDE Connect
-Name[ar]=كِيدِي المتّصل
+Name[ar]=جسر كِيدِي
Name[ast]=KDE Connect
Name[az]=KDE Connect
Name[bg]=KDE Connect
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/plugins/mpriscontrol/mpriscontrolplugin-win.cpp kdeconnect-25.04.2/plugins/mpriscontrol/mpriscontrolplugin-win.cpp
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/mpriscontrol/mpriscontrolplugin-win.cpp 2025-05-04 18:36:42.000000000 +0200
+++ kdeconnect-25.04.2/plugins/mpriscontrol/mpriscontrolplugin-win.cpp 2025-06-03 05:21:10.000000000 +0200
@@ -30,12 +30,17 @@
MprisControlPlugin::MprisControlPlugin(QObject *parent, const QVariantList &args)
: KdeConnectPlugin(parent, args)
+ , sessionManager(NULL)
{
try {
- auto sessionManager = GlobalSystemMediaTransportControlsSessionManager::RequestAsync().get();
- sessionManager.SessionsChanged([this](GlobalSystemMediaTransportControlsSessionManager, SessionsChangedEventArgs) {
- this->updatePlayerList();
- });
+ sessionManager = GlobalSystemMediaTransportControlsSessionManager::RequestAsync().get();
+ if (sessionManager) {
+ sessionManager.SessionsChanged([this](GlobalSystemMediaTransportControlsSessionManager, SessionsChangedEventArgs) {
+ this->updatePlayerList();
+ });
+ } else {
+ qCWarning(KDECONNECT_PLUGIN_MPRISCONTROL) << "Failed to obtain Session Manager.";
+ }
} catch (winrt::hresult_error e) {
qCWarning(KDECONNECT_PLUGIN_MPRISCONTROL) << "Failed to register mediaSessionsChanged listener";
}
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/plugins/mpriscontrol/mpriscontrolplugin-win.h kdeconnect-25.04.2/plugins/mpriscontrol/mpriscontrolplugin-win.h
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/mpriscontrol/mpriscontrolplugin-win.h 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/mpriscontrol/mpriscontrolplugin-win.h 2025-06-03 05:21:10.000000000 +0200
@@ -40,7 +40,7 @@
private:
QHash<QString, GlobalSystemMediaTransportControlsSession> playerList;
-
+ GlobalSystemMediaTransportControlsSessionManager sessionManager;
std::vector<GlobalSystemMediaTransportControlsSession::PlaybackInfoChanged_revoker> playbackInfoChangedHandlers;
std::vector<GlobalSystemMediaTransportControlsSession::MediaPropertiesChanged_revoker> mediaPropertiesChangedHandlers;
std::vector<GlobalSystemMediaTransportControlsSession::TimelinePropertiesChanged_revoker> timelinePropertiesChangedHandlers;
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/plugins/runcommand/runcommand_config.cpp kdeconnect-25.04.2/plugins/runcommand/runcommand_config.cpp
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/runcommand/runcommand_config.cpp 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/runcommand/runcommand_config.cpp 2025-06-03 05:21:10.000000000 +0200
@@ -30,7 +30,7 @@
: KdeConnectPluginKcm(parent, data, args)
{
// The qdbus executable name is different on some systems
- QString qdbusExe = QStringLiteral("qdbus-qt5");
+ QString qdbusExe = QStringLiteral("qdbus-qt6");
if (QStandardPaths::findExecutable(qdbusExe).isEmpty()) {
qdbusExe = QStringLiteral("qdbus");
}
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/plugins/sendnotifications/notifyingapplicationmodel.cpp kdeconnect-25.04.2/plugins/sendnotifications/notifyingapplicationmodel.cpp
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/sendnotifications/notifyingapplicationmodel.cpp 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/sendnotifications/notifyingapplicationmodel.cpp 2025-06-03 05:21:10.000000000 +0200
@@ -19,6 +19,7 @@
NotifyingApplicationModel::NotifyingApplicationModel(QObject *parent)
: QAbstractTableModel(parent)
{
+ qRegisterMetaType<NotifyingApplication>("NotifyingApplication");
}
QVector<NotifyingApplication> NotifyingApplicationModel::apps()
diff -ur '--exclude=po' '--exclude=*.desktop' '--exclude=*.json' kdeconnect-25.04.0+git20250504.28fb9142/plugins/sendnotifications/sendnotificationsplugin.cpp kdeconnect-25.04.2/plugins/sendnotifications/sendnotificationsplugin.cpp
--- kdeconnect-25.04.0+git20250504.28fb9142/plugins/sendnotifications/sendnotificationsplugin.cpp 2025-05-04 18:36:29.000000000 +0200
+++ kdeconnect-25.04.2/plugins/sendnotifications/sendnotificationsplugin.cpp 2025-06-03 05:21:10.000000000 +0200
@@ -5,6 +5,7 @@
*/
#include "sendnotificationsplugin.h"
+#include "notifyingapplication.h"
#if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN)
#include "dbusnotificationslistener.h"
@@ -21,6 +22,7 @@
SendNotificationsPlugin::SendNotificationsPlugin(QObject *parent, const QVariantList &args)
: KdeConnectPlugin(parent, args)
{
+ qRegisterMetaType<NotifyingApplication>("NotifyingApplication");
#if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN)
notificationsListener = new DBusNotificationsListener(this);
#elif defined(Q_OS_WIN)
Reply to: