Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ksanecore for openSUSE:Factory 
checked in at 2023-04-23 22:44:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ksanecore (Old)
 and      /work/SRC/openSUSE:Factory/.ksanecore.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ksanecore"

Sun Apr 23 22:44:31 2023 rev:9 rq:1080675 version:23.04.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ksanecore/ksanecore.changes      2023-03-03 
22:26:41.846988562 +0100
+++ /work/SRC/openSUSE:Factory/.ksanecore.new.1533/ksanecore.changes    
2023-04-23 22:45:54.442183884 +0200
@@ -1,0 +2,20 @@
+Sat Apr 15 08:46:16 UTC 2023 - Christophe Marin <christo...@krop.fr>
+
+- Update to 23.04.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.04.0/
+
+-------------------------------------------------------------------
+Fri Mar 31 16:42:24 UTC 2023 - Christophe Marin <christo...@krop.fr>
+
+- Update to 23.03.90
+  * New feature release
+
+-------------------------------------------------------------------
+Fri Mar 17 20:44:03 UTC 2023 - Christophe Marin <christo...@krop.fr>
+
+- Update to 23.03.80
+  * New feature release
+
+-------------------------------------------------------------------

Old:
----
  ksanecore-22.12.3.tar.xz
  ksanecore-22.12.3.tar.xz.sig

New:
----
  ksanecore-23.04.0.tar.xz
  ksanecore-23.04.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ksanecore.spec ++++++
--- /var/tmp/diff_new_pack.JCgR4q/_old  2023-04-23 22:45:54.902186483 +0200
+++ /var/tmp/diff_new_pack.JCgR4q/_new  2023-04-23 22:45:54.906186505 +0200
@@ -18,11 +18,9 @@
 
 %define _so 1
 %define lname libKSaneCore
-# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
-%{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:           ksanecore
-Version:        22.12.3
+Version:        23.04.0
 Release:        0
 Summary:        Qt interface for the SANE library for scanner hardware
 License:        LGPL-2.1-only OR LGPL-3.0-only


++++++ ksanecore-22.12.3.tar.xz -> ksanecore-23.04.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/.kde-ci.yml 
new/ksanecore-23.04.0/.kde-ci.yml
--- old/ksanecore-22.12.3/.kde-ci.yml   2023-02-26 04:35:34.000000000 +0100
+++ new/ksanecore-23.04.0/.kde-ci.yml   2023-04-13 05:35:05.000000000 +0200
@@ -2,7 +2,15 @@
 # SPDX-License-Identifier: CC0-1.0
 
 Dependencies:
-- 'on': ['@all']
+- 'on': ['Linux/Qt6', 'FreeBSD/Qt6']
+  'require':
+    'frameworks/extra-cmake-modules': '@latest-kf6'
+    'frameworks/ki18n': '@latest-kf6'
+
+- 'on': ['Linux/Qt5', 'FreeBSD/Qt5']
   'require':
     'frameworks/extra-cmake-modules': '@stable'
     'frameworks/ki18n': '@stable'
+
+Options:
+  require-passing-tests-on: [ '@all' ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/CMakeLists.txt 
new/ksanecore-23.04.0/CMakeLists.txt
--- old/ksanecore-22.12.3/CMakeLists.txt        2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/CMakeLists.txt        2023-04-13 05:35:05.000000000 
+0200
@@ -5,9 +5,9 @@
 cmake_minimum_required(VERSION 3.16.0)
 
 # KDE Applications version, managed by release script.
-set(RELEASE_SERVICE_VERSION_MAJOR "22")
-set(RELEASE_SERVICE_VERSION_MINOR "12")
-set(RELEASE_SERVICE_VERSION_MICRO "3")
+set(RELEASE_SERVICE_VERSION_MAJOR "23")
+set(RELEASE_SERVICE_VERSION_MINOR "04")
+set(RELEASE_SERVICE_VERSION_MICRO "0")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(KSaneCore VERSION ${RELEASE_SERVICE_VERSION})
@@ -32,6 +32,14 @@
 include(ECMQtDeclareLoggingCategory)
 include(KDEGitCommitHooks)
 include(KDEClangFormat)
+include(ECMDeprecationSettings)
+if (QT_MAJOR_VERSION STREQUAL "6")
+    set(QT_REQUIRED_VERSION "6.4.0")
+    set(KF_MIN_VERSION "5.240.0")
+    set(KF_MAJOR_VERSION "6")
+else()
+    set(KF_MAJOR_VERSION "5")
+endif()
 
 ecm_setup_version(
     ${RELEASE_SERVICE_VERSION}
@@ -46,7 +54,7 @@
 # Required Qt5 components to build this framework
 find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED 
Core Gui)
 # Required KF5 frameworks
-find_package(KF5I18n ${KF5_VERSION} REQUIRED)
+find_package(KF${KF_MAJOR_VERSION}I18n ${KF5_VERSION} REQUIRED)
 
 # Check if sane API is available.
 find_package(Sane REQUIRED)
@@ -54,6 +62,10 @@
 message(STATUS "SANE_INCLUDE_DIR: ${SANE_INCLUDE_DIR}")
 message(STATUS "SANE_LIBRARY:     ${SANE_LIBRARY}")
 
+ecm_set_disabled_deprecation_versions(QT 6.4
+    KF 5.101
+)
+
 add_subdirectory(src)
 if (BUILD_TESTING)
     add_subdirectory(autotests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/ar/ksanecore.po 
new/ksanecore-23.04.0/po/ar/ksanecore.po
--- old/ksanecore-22.12.3/po/ar/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/ar/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-02-07 09:20+0400\n"
 "Last-Translator: Zayed Al-Saidi <zayed.alsa...@gmail.com>\n"
 "Language-Team: ar\n"
@@ -60,12 +60,12 @@
 msgid "Landscape %1"
 msgstr "بالعرض %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "امسح حجم المنطقة"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "حدد حجم صفحة محدد مسبقًا لمنطقة المسح."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/bg/ksanecore.po 
new/ksanecore-23.04.0/po/bg/ksanecore.po
--- old/ksanecore-22.12.3/po/bg/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/bg/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-07-18 22:47+0200\n"
 "Last-Translator: Mincho Kondarev <mkonda...@yahoo.de>\n"
 "Language-Team: Bulgarian <kde-i18n-...@kde.org>\n"
@@ -65,12 +65,12 @@
 msgid "Landscape %1"
 msgstr "Пейзаж %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Размер за областта за сканиране"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/ca/ksanecore.po 
new/ksanecore-23.04.0/po/ca/ksanecore.po
--- old/ksanecore-22.12.3/po/ca/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/ca/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2021-11-07 11:43+0100\n"
 "Last-Translator: Josep M. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
@@ -67,12 +67,405 @@
 msgid "Landscape %1"
 msgstr "Apaïsada %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Mida de l'àrea d'escaneig"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Selecciona una mida de pàgina predefinida per a l'àrea d'escaneig."
+
+#~ msgid "Open scan dialog"
+#~ msgstr "Obre el diàleg d'escaneig"
+
+#~ msgid "None"
+#~ msgstr "Cap"
+
+#~ msgid "MH"
+#~ msgstr "MH"
+
+#~ msgid "MR"
+#~ msgstr "MR"
+
+#~ msgid "MMR"
+#~ msgstr "MMR"
+
+#~ msgid "JPEG"
+#~ msgstr "JPEG"
+
+#~ msgid "Auto"
+#~ msgstr "Auto"
+
+#~ msgid "Flatbed"
+#~ msgstr "De superfície plana"
+
+#~ msgid "ADF"
+#~ msgstr "ADF"
+
+#~ msgid "Advanced"
+#~ msgstr "Avançat"
+
+#~ msgid "Compression"
+#~ msgstr "Compressió"
+
+#~ msgid ""
+#~ "Selects the scanner compression method for faster scans, possibly at the "
+#~ "expense of image quality."
+#~ msgstr ""
+#~ "Selecciona el mètode de compressió per a accelerar els escaneigs, "
+#~ "possiblement a expenses de la qualitat de la imatge."
+
+#~ msgid "JPEG compression factor"
+#~ msgstr "Factor de compressió del JPEG"
+
+#~ msgid ""
+#~ "Sets the scanner JPEG compression factor. Larger numbers mean better "
+#~ "compression, and smaller numbers mean better image quality."
+#~ msgstr ""
+#~ "Defineix el factor de compressió del JPEG de l'escàner. Els números 
més "
+#~ "grans indiquen una compressió millor, els números més petits indiquen 
una "
+#~ "millor qualitat de la imatge."
+
+#~ msgid "Batch scan"
+#~ msgstr "Escaneig per lots"
+
+#~ msgid "Enables continuous scanning with automatic document feeder (ADF)."
+#~ msgstr ""
+#~ "Habilita l'escaneig continu amb un alimentador automàtic de documents "
+#~ "(ADF, en anglès)."
+
+#~ msgid "Duplex"
+#~ msgstr "Doble cara"
+
+#~ msgid "Enables scanning on both sides of the page."
+#~ msgstr "Habilita l'escaneig de les dues cares de la pàgina."
+
+#~ msgid "Geometry"
+#~ msgstr "Geometria"
+
+#~ msgid "Length measurement"
+#~ msgstr "Mesura de la longitud"
+
+#~ msgid ""
+#~ "Selects how the scanned image length is measured and reported, which is "
+#~ "impossible to know in advance for scrollfed scans."
+#~ msgstr ""
+#~ "Selecciona com s'ha de mesurar i informar la longitud de la imatge "
+#~ "escanejada, la qual és impossible de conèixer per avançat en els escà
ners "
+#~ "d'alimentació per desplaçament."
+
+#~ msgid "Unknown"
+#~ msgstr "Desconegut"
+
+#~ msgid "Unlimited"
+#~ msgstr "Sense límit"
+
+#~ msgid "Approximate"
+#~ msgstr "Aproximat"
+
+#~ msgid "Padded"
+#~ msgstr "Per farciment"
+
+#~ msgid "Exact"
+#~ msgstr "Exacte"
+
+#~ msgid "???"
+#~ msgstr "???"
+
+#~ msgid ""
+#~ "<html>The SANE (Scanner Access Now Easy) system could not find any device."
+#~ "<br>Check that the scanner is plugged in and turned on<br>or check your "
+#~ "systems scanner setup.<br>For details about SANE see the <a href='http://";
+#~ "www.sane-project.org/'>SANE homepage</a>.</html>"
+#~ msgstr ""
+#~ "<html>El sistema de SANE (Scanner Access Now Easy) no ha pogut trobar cap "
+#~ "dispositiu.<br>Verifiqueu que l'escàner estigui connectat i encès<br>o "
+#~ "verifiqueu la configuració de l'escàner en el sistema.<br>Per als 
detalls "
+#~ "quant al SANE, vegeu la <a href='http://www.sane-project.org/'>pàgina web 
"
+#~ "de SANE</a>.</html>"
+
+#~ msgid "Reload devices list"
+#~ msgstr "Actualitza la llista de dispositius"
+
+#~ msgid "Looking for devices. Please wait."
+#~ msgstr "S'estan cercant dispositius. Espereu, si us plau."
+
+#~ msgid "Sorry. No devices found."
+#~ msgstr "No s'ha trobat cap dispositiu."
+
+#~ msgid "Found devices:"
+#~ msgstr "Dispositius trobats:"
+
+#~ msgid "Zoom In"
+#~ msgstr "Apropa"
+
+#~ msgid "Zoom Out"
+#~ msgstr "Allunya"
+
+#~ msgid "Zoom to Selection"
+#~ msgstr "Zoom a la selecció"
+
+#~ msgid "Zoom to Fit"
+#~ msgstr "Zoom fins que ajusti"
+
+#~ msgid "Clear Selections"
+#~ msgstr "Neteja les seleccions"
+
+#~ msgid "Waiting for the scan to start."
+#~ msgstr "S'està esperant que s'iniciï l'escaneig."
+
+#~ msgid "Cancel current scan operation"
+#~ msgstr "Cancel·la l'operació actual d'escaneig"
+
+#~ msgid "Scan Preview Image (%1)"
+#~ msgstr "Escaneja una vista prèvia de la imatge (%1)"
+
+#~ msgctxt "Preview button text"
+#~ msgid "Preview"
+#~ msgstr "Vista prèvia"
+
+#~ msgid "Scan Final Image (%1)"
+#~ msgstr "Escaneja la imatge final (%1)"
+
+#~ msgctxt "Final scan button text"
+#~ msgid "Scan"
+#~ msgstr "Escaneja"
+
+#~ msgid "Basic Options"
+#~ msgstr "Opcions bàsiques"
+
+#~ msgid "Advanced Options"
+#~ msgstr "Opcions avançades"
+
+#~ msgid "Scanner Specific Options"
+#~ msgstr "Opcions específiques de l'escàner"
+
+#~ msgid "Authentication required for resource: %1"
+#~ msgstr "Es requereix autenticació per al recurs: %1"
+
+#~ msgid ""
+#~ "The image data contained 16 bits per color, but the color depth has been "
+#~ "truncated to 8 bits per color."
+#~ msgstr ""
+#~ "Les dades de la imatge tenien 16 bits per color, però la profunditat de "
+#~ "color s'ha truncat a 8 bits per color."
+
+#~ msgid "Scan Area Size"
+#~ msgstr "Mida de l'àrea d'escaneig"
+
+#~ msgid " mm"
+#~ msgstr " mm"
+
+#~ msgid " inch"
+#~ msgstr " polzada"
+
+#~ msgid "Width"
+#~ msgstr "Amplada"
+
+#~ msgid "Height"
+#~ msgstr "Alçada"
+
+#~ msgid "X Offset"
+#~ msgstr "Desplaçament X"
+
+#~ msgid "Y Offset"
+#~ msgstr "Desplaçament Y"
+
+#~ msgid "Image intensity"
+#~ msgstr "Intensitat de la imatge"
+
+#~ msgid ""
+#~ "Gamma-correction table. In color mode this option equally affects the "
+#~ "red, green, and blue channels simultaneously (i.e., it is an intensity "
+#~ "gamma table)."
+#~ msgstr ""
+#~ "Taula de la correcció gamma. En el mode de color aquesta opció afecta "
+#~ "igualment els canals vermell, verd i blau simultàniament (és a dir, és "
+#~ "una taula d'intensitat de la gamma)."
+
+#~ msgid "Separate color intensity tables"
+#~ msgstr "Separa les taules d'intensitat del color"
+
+#~ msgctxt "This is compared to the option string returned by sane"
+#~ msgid "Transparency"
+#~ msgstr "Transparència"
+
+#~ msgctxt "This is compared to the option string returned by sane"
+#~ msgid "Negative"
+#~ msgstr "Negatiu"
+
+#~ msgid "Next scan starts in %1 s."
+#~ msgstr "L'escaneig següent comença dintre de %1 s."
+
+#~ msgctxt "@title:window"
+#~ msgid "General Error"
+#~ msgstr "Error general"
+
+#~ msgctxt "@title:window"
+#~ msgid "Information"
+#~ msgstr "Informació"
+
+#~ msgid "Custom"
+#~ msgstr "Personalitzat"
+
+#~ msgctxt "Page size landscape"
+#~ msgid " Landscape"
+#~ msgstr " Apaïsat"
+
+#~ msgctxt "Label for a scanner option"
+#~ msgid "%1:"
+#~ msgstr "%1:"
+
+#~ msgctxt "Parameter and Unit"
+#~ msgid "%1 Pixel"
+#~ msgid_plural "%1 Pixels"
+#~ msgstr[0] "%1 píxel"
+#~ msgstr[1] "%1 píxels"
+
+#~ msgctxt "Parameter and Unit"
+#~ msgid "%1 Bit"
+#~ msgid_plural "%1 Bits"
+#~ msgstr[0] "%1 bit"
+#~ msgstr[1] "%1 bits"
+
+#~ msgctxt "Parameter and Unit (Millimeter)"
+#~ msgid "%1 mm"
+#~ msgstr "%1 mm"
+
+#~ msgctxt "Parameter and Unit (Dots Per Inch)"
+#~ msgid "%1 DPI"
+#~ msgstr "%1 PPP"
+
+#~ msgctxt "Parameter and Unit (Percentage)"
+#~ msgid "%1 %"
+#~ msgstr "%1%"
+
+#~ msgctxt "Parameter and Unit (Microseconds)"
+#~ msgid "%1 µs"
+#~ msgstr "%1 µs"
+
+#~ msgctxt "Parameter and Unit (seconds)"
+#~ msgid "%1 s"
+#~ msgstr "%1 s"
+
+#~ msgid "%1"
+#~ msgstr "%1"
+
+#~ msgctxt "Label for button to reset text in a KLineEdit"
+#~ msgid "Reset"
+#~ msgstr "Reinicialitza"
+
+#~ msgctxt "Label for button to write text in a KLineEdit to sane"
+#~ msgid "Set"
+#~ msgstr "Defineix"
+
+#~ msgctxt "Double numbers. SpinBox parameter unit"
+#~ msgid " Pixels"
+#~ msgstr " píxels"
+
+#~ msgctxt "Double numbers. SpinBox parameter unit"
+#~ msgid " Bits"
+#~ msgstr " bits"
+
+#~ msgctxt "Double numbers. SpinBox parameter unit (Millimeter)"
+#~ msgid " mm"
+#~ msgstr " mm"
+
+#~ msgctxt "Double numbers. SpinBox parameter unit (Dots Per Inch)"
+#~ msgid " DPI"
+#~ msgstr " PPP"
+
+#~ msgctxt "Double numbers. SpinBox parameter unit (Percentage)"
+#~ msgid " %"
+#~ msgstr " %"
+
+#~ msgctxt "Double numbers. SpinBox parameter unit (Microseconds)"
+#~ msgid " µs"
+#~ msgstr " µs"
+
+#~ msgctxt "SpinBox parameter unit (seconds), float"
+#~ msgid " s"
+#~ msgstr " s"
+
+#~ msgid "Brightness"
+#~ msgstr "Lluminositat"
+
+#~ msgid "Contrast"
+#~ msgstr "Contrast"
+
+#~ msgid "Gamma"
+#~ msgstr "Gamma"
+
+#~ msgctxt "SpinBox parameter unit"
+#~ msgid " Pixel"
+#~ msgid_plural " Pixels"
+#~ msgstr[0] " píxel"
+#~ msgstr[1] " píxels"
+
+#~ msgctxt "SpinBox parameter unit"
+#~ msgid " Bit"
+#~ msgid_plural " Bits"
+#~ msgstr[0] " bit"
+#~ msgstr[1] " bits"
+
+#~ msgctxt "SpinBox parameter unit (Millimeter)"
+#~ msgid " mm"
+#~ msgid_plural " mm"
+#~ msgstr[0] " mm"
+#~ msgstr[1] " mm"
+
+#~ msgctxt "SpinBox parameter unit (Dots Per Inch)"
+#~ msgid " DPI"
+#~ msgid_plural " DPI"
+#~ msgstr[0] " PPP"
+#~ msgstr[1] " PPP"
+
+#~ msgctxt "SpinBox parameter unit (Percentage)"
+#~ msgid " %"
+#~ msgid_plural " %"
+#~ msgstr[0] " %"
+#~ msgstr[1] " %"
+
+#~ msgctxt "SpinBox parameter unit (Microseconds)"
+#~ msgid " µs"
+#~ msgid_plural " µs"
+#~ msgstr[0] " µs"
+#~ msgstr[1] " µs"
+
+#~ msgctxt "SpinBox parameter unit (seconds)"
+#~ msgid " s"
+#~ msgid_plural " s"
+#~ msgstr[0] " s"
+#~ msgstr[1] " s"
+
+#~ msgid "%1 Pixel"
+#~ msgid_plural "%1 Pixels"
+#~ msgstr[0] "%1 píxel"
+#~ msgstr[1] "%1 píxels"
+
+#~ msgid "%1 Bit"
+#~ msgid_plural "%1 Bits"
+#~ msgstr[0] "%1 bit"
+#~ msgstr[1] "%1 bits"
+
+#~ msgid "%1 mm"
+#~ msgid_plural "%1 mm"
+#~ msgstr[0] "%1 mm"
+#~ msgstr[1] "%1 mm"
+
+#~ msgid "%1 DPI"
+#~ msgid_plural "%1 DPI"
+#~ msgstr[0] "%1 PPP"
+#~ msgstr[1] "%1 PPP"
+
+#~ msgid "%1 %"
+#~ msgid_plural "%1 %"
+#~ msgstr[0] "%1 %"
+#~ msgstr[1] "%1 %"
+
+#~ msgid "%1 µs"
+#~ msgid_plural "%1 µs"
+#~ msgstr[0] "%1 µs"
+#~ msgstr[1] "%1 µs"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/ca@valencia/ksanecore.po 
new/ksanecore-23.04.0/po/ca@valencia/ksanecore.po
--- old/ksanecore-22.12.3/po/ca@valencia/ksanecore.po   2023-02-26 
04:35:34.000000000 +0100
+++ new/ksanecore-23.04.0/po/ca@valencia/ksanecore.po   2023-04-13 
05:35:05.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2021-11-07 11:43+0100\n"
 "Last-Translator: Josep M. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
@@ -67,12 +67,12 @@
 msgid "Landscape %1"
 msgstr "Apaïsada %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Mida de l'àrea d'escaneig"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Selecciona una mida de pàgina predefinida per a l'àrea d'escaneig."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/cs/ksanecore.po 
new/ksanecore-23.04.0/po/cs/ksanecore.po
--- old/ksanecore-22.12.3/po/cs/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/cs/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-11 19:19+0100\n"
 "Last-Translator: Vit Pelcak <vpel...@suse.cz>\n"
 "Language-Team: Czech <kde-i18n-...@kde.org>\n"
@@ -59,12 +59,12 @@
 msgid "Landscape %1"
 msgstr "Na šířku %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Velikost oblasti skenování"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Vyberte předurčenou velikost stránky pro oblast skenování."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/de/ksanecore.po 
new/ksanecore-23.04.0/po/de/ksanecore.po
--- old/ksanecore-22.12.3/po/de/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/de/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -1,23 +1,23 @@
 # German translations for ksanecore package.
 # Copyright (C) 2022 This file is copyright:
 # This file is distributed under the same license as the ksanecore package.
-# Frederik Schwarzer <schwar...@kde.org>, 2022.
+# Frederik Schwarzer <schwar...@kde.org>, 2022, 2023.
 #
 # Automatically generated, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
-"PO-Revision-Date: 2022-01-03 22:27+0100\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
+"PO-Revision-Date: 2023-03-24 19:43+0100\n"
 "Last-Translator: Frederik Schwarzer <schwar...@kde.org>\n"
-"Language-Team: German <kde-i18n-...@kde.org>\n"
+"Language-Team: German <kde-i18n...@kde.org>\n"
 "Language: de\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 21.08.0\n"
+"X-Generator: Lokalize 22.12.3\n"
 
 #: interface.cpp:221
 #, kde-format
@@ -48,12 +48,12 @@
 #: options/invertoption.cpp:58
 #, kde-format
 msgid "Invert colors"
-msgstr "Farben invertieren"
+msgstr "Farben umkehren"
 
 #: options/invertoption.cpp:63
 #, kde-format
 msgid "Invert the colors of the scanned image."
-msgstr "Invertiert die Farben des gescannten Bildes."
+msgstr "Die Farben des gescannten Bildes umkehren."
 
 #: options/pagesizeoption.cpp:98
 #, kde-format
@@ -61,12 +61,12 @@
 msgid "Landscape %1"
 msgstr "Querformat %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Größe des Scanbereichs"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Wählen Sie eine vordefinierte Seitengröße für den Scanbereich."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/en_GB/ksanecore.po 
new/ksanecore-23.04.0/po/en_GB/ksanecore.po
--- old/ksanecore-22.12.3/po/en_GB/ksanecore.po 2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/en_GB/ksanecore.po 2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-01 15:41+0000\n"
 "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n"
 "Language-Team: British English <kde-l10n-en...@kde.org>\n"
@@ -61,12 +61,12 @@
 msgid "Landscape %1"
 msgstr "Landscape %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Scan area size"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Select a predefined page size for the scanning area."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/es/ksanecore.po 
new/ksanecore-23.04.0/po/es/ksanecore.po
--- old/ksanecore-22.12.3/po/es/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/es/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-03 00:51+0100\n"
 "Last-Translator: Eloy Cuadra <ecua...@eloihr.net>\n"
 "Language-Team: Spanish <kde-l10n...@kde.org>\n"
@@ -65,12 +65,12 @@
 msgid "Landscape %1"
 msgstr "Apaisado %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Tamaño del área de escaneo"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Seleccione un tamaño de página predefinido para el área a escanear."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/eu/ksanecore.po 
new/ksanecore-23.04.0/po/eu/ksanecore.po
--- old/ksanecore-22.12.3/po/eu/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/eu/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-07-30 23:20+0200\n"
 "Last-Translator: Iñigo Salvador Azurmendi <xa...@ni.eus>\n"
 "Language-Team: Basque <kde-i18n...@kde.org>\n"
@@ -64,12 +64,12 @@
 msgid "Landscape %1"
 msgstr "Paisaia %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Eskaneatze eremuaren tamaina"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Hautatu eskaneatze-eremurako aurrez definitutako orri-tamaina bat."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/fi/ksanecore.po 
new/ksanecore-23.04.0/po/fi/ksanecore.po
--- old/ksanecore-22.12.3/po/fi/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/fi/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-06-05 19:39+0300\n"
 "Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
 "Language-Team: Finnish <kde-i18n-...@kde.org>\n"
@@ -61,12 +61,12 @@
 msgid "Landscape %1"
 msgstr "Vaaka-%1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Tutkittavan alueen koko"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Aseta tutkittavaksi alueeksi esiasetettu paperikoko."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/fr/ksanecore.po 
new/ksanecore-23.04.0/po/fr/ksanecore.po
--- old/ksanecore-22.12.3/po/fr/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/fr/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-02 10:43+0100\n"
 "Last-Translator: Xavier Besnard <xavier.besn...@neuf.fr>\n"
 "Language-Team: French <kde-francoph...@kde.org>\n"
@@ -60,12 +60,12 @@
 msgid "Landscape %1"
 msgstr "Paysage %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Taille de la zone de numérisation"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/hi/ksanecore.po 
new/ksanecore-23.04.0/po/hi/ksanecore.po
--- old/ksanecore-22.12.3/po/hi/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/hi/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-15 20:12+0530\n"
 "Last-Translator: Raghavendra Kamath <ra...@raghukamath.com>\n"
 "Language-Team: Hindi <kde-l10n...@kde.org>\n"
@@ -59,12 +59,12 @@
 msgid "Landscape %1"
 msgstr "आड़ा %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "स्कैन क्षेत्र का आकार"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "स्कैनिंग क्षेत्र के लिए एक 
पूर्वनिर्धारित पृष्ठ आकार का 
चयन करें।"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/it/ksanecore.po 
new/ksanecore-23.04.0/po/it/ksanecore.po
--- old/ksanecore-22.12.3/po/it/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/it/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-02 01:34+0100\n"
 "Last-Translator: Luigi Toscano <luigi.tosc...@tiscali.it>\n"
 "Language-Team: Italian <kde-i18n...@kde.org>\n"
@@ -63,12 +63,12 @@
 msgid "Landscape %1"
 msgstr "%1 orizzontale"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Dimensione area di scansione"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/ja/ksanecore.po 
new/ksanecore-23.04.0/po/ja/ksanecore.po
--- old/ksanecore-22.12.3/po/ja/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/ja/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-02 23:13-0800\n"
 "Last-Translator: Japanese KDE translation team <kde...@kde.org>\n"
 "Language-Team: Japanese <kde...@kde.org>\n"
@@ -56,12 +56,12 @@
 msgid "Landscape %1"
 msgstr ""
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr ""
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/ka/ksanecore.po 
new/ksanecore-23.04.0/po/ka/ksanecore.po
--- old/ksanecore-22.12.3/po/ka/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/ka/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-05-16 14:13+0200\n"
 "Last-Translator: Temuri Doghonadze <temuri.doghona...@gmail.com>\n"
 "Language-Team: Georgian <kde-i18n-...@kde.org>\n"
@@ -62,12 +62,12 @@
 msgid "Landscape %1"
 msgstr "ლანდშაფტი %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "სკანირების ფართობის ზომა"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "აირჩიეთ სკანირების ფარ
თობის გვერდის ზომა."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/ko/ksanecore.po 
new/ksanecore-23.04.0/po/ko/ksanecore.po
--- old/ksanecore-22.12.3/po/ko/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/ko/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-02-20 22:55+0100\n"
 "Last-Translator: Shinjo Park <k...@peremen.name>\n"
 "Language-Team: Korean <kde...@kde.org>\n"
@@ -61,12 +61,12 @@
 msgid "Landscape %1"
 msgstr "가로 %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "스캔 영역 크기"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "사전 정의된 스캔 영역 크기를 선택합니다."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/lt/ksanecore.po 
new/ksanecore-23.04.0/po/lt/ksanecore.po
--- old/ksanecore-22.12.3/po/lt/ksanecore.po    1970-01-01 01:00:00.000000000 
+0100
+++ new/ksanecore-23.04.0/po/lt/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -0,0 +1,71 @@
+# Lithuanian translations for ksanecore package.
+# Copyright (C) 2023 This file is copyright:
+# This file is distributed under the same license as the ksanecore package.
+# Automatically generated, 2023.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: ksanecore\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
+"PO-Revision-Date: 2023-02-01 00:55+0000\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: lt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n"
+"%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n"
+
+#: interface.cpp:221
+#, kde-format
+msgid "Scanning stopped by user."
+msgstr ""
+
+#: options/batchdelayoption.cpp:31
+#, kde-format
+msgid "Batch mode time delay"
+msgstr ""
+
+#: options/batchdelayoption.cpp:36
+#, kde-format
+msgid "Specify the time delay between each scan when batch mode is enabled."
+msgstr ""
+
+#: options/batchmodeoption.cpp:31
+#, kde-format
+msgid "Batch mode with time delay"
+msgstr ""
+
+#: options/batchmodeoption.cpp:36
+#, kde-format
+msgid ""
+"Enables batch mode scanning. Continues scanning after a delay until canceled."
+msgstr ""
+
+#: options/invertoption.cpp:58
+#, kde-format
+msgid "Invert colors"
+msgstr ""
+
+#: options/invertoption.cpp:63
+#, kde-format
+msgid "Invert the colors of the scanned image."
+msgstr ""
+
+#: options/pagesizeoption.cpp:98
+#, kde-format
+msgctxt "Page size landscape"
+msgid "Landscape %1"
+msgstr ""
+
+#: options/pagesizeoption.cpp:177
+#, kde-format
+msgid "Scan area size"
+msgstr ""
+
+#: options/pagesizeoption.cpp:182
+#, kde-format
+msgid "Select a predefined page size for the scanning area."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/nl/ksanecore.po 
new/ksanecore-23.04.0/po/nl/ksanecore.po
--- old/ksanecore-22.12.3/po/nl/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/nl/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-01 12:37+0100\n"
 "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n"
 "Language-Team: \n"
@@ -63,12 +63,12 @@
 msgid "Landscape %1"
 msgstr "Landschap %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Scangebiedgrootte"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Een voorgedefinieerde paginagrootte selecteren voor het scangebied."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/nn/ksanecore.po 
new/ksanecore-23.04.0/po/nn/ksanecore.po
--- old/ksanecore-22.12.3/po/nn/ksanecore.po    1970-01-01 01:00:00.000000000 
+0100
+++ new/ksanecore-23.04.0/po/nn/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -0,0 +1,74 @@
+# Translation of ksanecore to Norwegian Nynorsk
+#
+# Karl Ove Hufthammer <k...@huftis.org>, 2023.
+msgid ""
+msgstr ""
+"Project-Id-Version: ksanecore\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
+"PO-Revision-Date: 2023-03-20 19:54+0100\n"
+"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <l10n...@lister.huftis.org>\n"
+"Language: nn\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 22.12.3\n"
+"X-Environment: kde\n"
+"X-Accelerator-Marker: &\n"
+"X-Text-Markup: kde4\n"
+
+#: interface.cpp:221
+#, kde-format
+msgid "Scanning stopped by user."
+msgstr "Skanning avbroten av brukaren."
+
+#: options/batchdelayoption.cpp:31
+#, kde-format
+msgid "Batch mode time delay"
+msgstr "Pausetid ved fleirskanning"
+
+#: options/batchdelayoption.cpp:36
+#, kde-format
+msgid "Specify the time delay between each scan when batch mode is enabled."
+msgstr "Vel lengda på pausen mellom kvar skanning i fleirskanningsmodus."
+
+#: options/batchmodeoption.cpp:31
+#, kde-format
+msgid "Batch mode with time delay"
+msgstr "Fleirskanningsmodus med pausar"
+
+#: options/batchmodeoption.cpp:36
+#, kde-format
+msgid ""
+"Enables batch mode scanning. Continues scanning after a delay until canceled."
+msgstr ""
+"Slår på fleirskanningsmodus. Skannar til han vert avbroten, med med ein "
+"pause mellom kvar innskanning."
+
+#: options/invertoption.cpp:58
+#, kde-format
+msgid "Invert colors"
+msgstr "Omvende fargar"
+
+#: options/invertoption.cpp:63
+#, kde-format
+msgid "Invert the colors of the scanned image."
+msgstr "Snu fargane på det innskanna biletet."
+
+#: options/pagesizeoption.cpp:98
+#, kde-format
+msgctxt "Page size landscape"
+msgid "Landscape %1"
+msgstr "Liggjande %1"
+
+#: options/pagesizeoption.cpp:177
+#, kde-format
+msgid "Scan area size"
+msgstr "Storleik på skanneområde"
+
+#: options/pagesizeoption.cpp:182
+#, kde-format
+msgid "Select a predefined page size for the scanning area."
+msgstr "Vel ein ferdig sidestorleik for skanneområdet."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/pl/ksanecore.po 
new/ksanecore-23.04.0/po/pl/ksanecore.po
--- old/ksanecore-22.12.3/po/pl/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/pl/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-27 19:35+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-...@kde.org>\n"
@@ -62,12 +62,12 @@
 msgid "Landscape %1"
 msgstr "W poziomie %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Rozmiar obszaru skanowania"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Wybierz jeden z rozmiarów strony dla obszaru skanowania."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/pt/ksanecore.po 
new/ksanecore-23.04.0/po/pt/ksanecore.po
--- old/ksanecore-22.12.3/po/pt/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/pt/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-03-23 17:48+0000\n"
 "Last-Translator: José Nuno Coelho Pires <zepi...@gmail.com>\n"
 "Language-Team: Portuguese <kde-i18n...@kde.org>\n"
@@ -63,12 +63,12 @@
 msgid "Landscape %1"
 msgstr "Paisagem %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Tamanho da área de digitalização"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/pt_BR/ksanecore.po 
new/ksanecore-23.04.0/po/pt_BR/ksanecore.po
--- old/ksanecore-22.12.3/po/pt_BR/ksanecore.po 2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/pt_BR/ksanecore.po 2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-07-13 14:58-0300\n"
 "Last-Translator: Luiz Fernando Ranghetti <elchev...@opensuse.org>\n"
 "Language-Team: Portuguese <kde-i18n-pt...@kde.org>\n"
@@ -63,12 +63,12 @@
 msgid "Landscape %1"
 msgstr "Paisagem %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Tamanho da área de digitalização"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/ro/ksanecore.po 
new/ksanecore-23.04.0/po/ro/ksanecore.po
--- old/ksanecore-22.12.3/po/ro/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/ro/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-02-05 19:57+0000\n"
 "Last-Translator: Sergiu Bivol <ser...@cip.md>\n"
 "Language-Team: Romanian\n"
@@ -60,12 +60,12 @@
 msgid "Landscape %1"
 msgstr "Peisaj %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Dimensiunea zonei scanate"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Alegeți o dimensiune de pagină predefinită pentru zona scanării."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/ru/ksanecore.po 
new/ksanecore-23.04.0/po/ru/ksanecore.po
--- old/ksanecore-22.12.3/po/ru/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/ru/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-10-03 12:17+0300\n"
 "Last-Translator: Olesya Gerasimenko <translation-t...@basealt.ru>\n"
 "Language-Team: Basealt Translation Team\n"
@@ -64,12 +64,12 @@
 msgid "Landscape %1"
 msgstr "Альбомная %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Размер области сканирования"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Выберите предустановленный размер 
страницы для области сканирования."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/sk/ksanecore.po 
new/ksanecore-23.04.0/po/sk/ksanecore.po
--- old/ksanecore-22.12.3/po/sk/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/sk/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-08 11:52+0100\n"
 "Last-Translator: Roman Paholik <wizzar...@gmail.com>\n"
 "Language-Team: Slovak <kde...@linux.sk>\n"
@@ -61,12 +61,12 @@
 msgid "Landscape %1"
 msgstr "Krajinka %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Veľkosť oblasti skenovania"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Vyberte preddefinovanú veľkosť strany pre oblasť skenovania."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/sl/ksanecore.po 
new/ksanecore-23.04.0/po/sl/ksanecore.po
--- old/ksanecore-22.12.3/po/sl/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/sl/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-02 09:32+0100\n"
 "Last-Translator: Matjaž Jeran <matjaz.je...@amis.net>\n"
 "Language-Team: Slovenian <lugos-...@lugos.si>\n"
@@ -63,12 +63,12 @@
 msgid "Landscape %1"
 msgstr "Ležeče %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Velikost skeniranega področja"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Določi prej določeno velikost skeniranega področja."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/sv/ksanecore.po 
new/ksanecore-23.04.0/po/sv/ksanecore.po
--- old/ksanecore-22.12.3/po/sv/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/sv/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-01 10:13+0100\n"
 "Last-Translator: Stefan Asserhäll <stefan.asserh...@bredband.net>\n"
 "Language-Team: Swedish <kde-i18n-...@kde.org>\n"
@@ -62,12 +62,12 @@
 msgid "Landscape %1"
 msgstr "Liggande %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Läs in områdesstorlek"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Välj en fördefinierad sidstorlek för inläsningsområdet."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/tr/ksanecore.po 
new/ksanecore-23.04.0/po/tr/ksanecore.po
--- old/ksanecore-22.12.3/po/tr/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/tr/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-04-26 11:18+0300\n"
 "Last-Translator: Emir SARI <emir_s...@icloud.com>\n"
 "Language-Team: Turkish <kde-l10n...@kde.org>\n"
@@ -63,12 +63,12 @@
 msgid "Landscape %1"
 msgstr "Yatay %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Tarama alanı boyutu"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Tarama alanı için önceden tanımlanmış bir sayfa boyutu seçin."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/uk/ksanecore.po 
new/ksanecore-23.04.0/po/uk/ksanecore.po
--- old/ksanecore-22.12.3/po/uk/ksanecore.po    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/uk/ksanecore.po    2023-04-13 05:35:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-01-01 09:25+0200\n"
 "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n"
 "Language-Team: Ukrainian <kde-i18n...@kde.org>\n"
@@ -64,12 +64,12 @@
 msgid "Landscape %1"
 msgstr "Альбомна %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "Розмір області сканування"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "Виберіть попередньо визначений 
розмір сторінки для області сканування."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/zh_CN/ksanecore.po 
new/ksanecore-23.04.0/po/zh_CN/ksanecore.po
--- old/ksanecore-22.12.3/po/zh_CN/ksanecore.po 2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/zh_CN/ksanecore.po 2023-04-13 05:35:05.000000000 
+0200
@@ -2,8 +2,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
-"PO-Revision-Date: 2023-02-24 12:59\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
+"PO-Revision-Date: 2023-04-10 14:13\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -59,12 +59,12 @@
 msgid "Landscape %1"
 msgstr "横向 %1"
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr "扫描区域大小"
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr "选择扫描区域的预设页面大小。"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/po/zh_TW/ksanecore.po 
new/ksanecore-23.04.0/po/zh_TW/ksanecore.po
--- old/ksanecore-22.12.3/po/zh_TW/ksanecore.po 2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/po/zh_TW/ksanecore.po 2023-04-13 05:35:05.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ksanecore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-17 00:43+0000\n"
+"POT-Creation-Date: 2023-02-01 00:55+0000\n"
 "PO-Revision-Date: 2022-04-12 00:42+0000\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -60,12 +60,12 @@
 msgid "Landscape %1"
 msgstr ""
 
-#: options/pagesizeoption.cpp:173
+#: options/pagesizeoption.cpp:177
 #, kde-format
 msgid "Scan area size"
 msgstr ""
 
-#: options/pagesizeoption.cpp:178
+#: options/pagesizeoption.cpp:182
 #, kde-format
 msgid "Select a predefined page size for the scanning area."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/src/CMakeLists.txt 
new/ksanecore-23.04.0/src/CMakeLists.txt
--- old/ksanecore-22.12.3/src/CMakeLists.txt    2023-02-26 04:35:34.000000000 
+0100
+++ new/ksanecore-23.04.0/src/CMakeLists.txt    2023-04-13 05:35:05.000000000 
+0200
@@ -52,7 +52,7 @@
         Qt${QT_MAJOR_VERSION}::Gui
     PRIVATE
         Sane::Sane
-        KF5::I18n
+        KF${KF_MAJOR_VERSION}::I18n
 )
 
 set_target_properties(KSaneCore
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/src/options/gammaoption.cpp 
new/ksanecore-23.04.0/src/options/gammaoption.cpp
--- old/ksanecore-22.12.3/src/options/gammaoption.cpp   2023-02-26 
04:35:34.000000000 +0100
+++ new/ksanecore-23.04.0/src/options/gammaoption.cpp   2023-04-13 
05:35:05.000000000 +0200
@@ -27,8 +27,11 @@
     if (state() == Option::StateHidden) {
         return false;
     }
-
+#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
     if (static_cast<QMetaType::Type>(value.type()) == QMetaType::QString) {
+#else
+    if (value.userType() == QMetaType::QString) {
+#endif
         const QString stringValue = value.toString();
         QStringList gammaValues;
         int brightness;
@@ -56,10 +59,18 @@
         }
         return true;
     }
+#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
     if (static_cast<QMetaType::Type>(value.type()) == QMetaType::QVariantList) 
{
+#else
+    if (value.userType() == QMetaType::QVariantList) {
+#endif
         QVariantList copy = value.toList();
+#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
         if (copy.size() != 3 || 
static_cast<QMetaType::Type>(copy.at(0).type()) != QMetaType::Int
             || static_cast<QMetaType::Type>(copy.at(1).type()) != 
QMetaType::Int || static_cast<QMetaType::Type>(copy.at(2).type()) != 
QMetaType::Int) {
+#else
+        if (copy.size() != 3 || copy.at(0).userType() != QMetaType::Int || 
copy.at(1).userType() != QMetaType::Int || copy.at(2).userType() != 
QMetaType::Int) {
+#endif
             return false;
         }
         if (m_brightness != copy.at(0).toInt() || m_contrast != 
copy.at(1).toInt() || m_gamma != copy.at(2).toInt() ) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/src/options/listoption.cpp 
new/ksanecore-23.04.0/src/options/listoption.cpp
--- old/ksanecore-22.12.3/src/options/listoption.cpp    2023-02-26 
04:35:34.000000000 +0100
+++ new/ksanecore-23.04.0/src/options/listoption.cpp    2023-04-13 
05:35:05.000000000 +0200
@@ -128,7 +128,11 @@
 bool ListOption::setValue(const QVariant &value)
 {
     bool success = false;
+#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
     if (static_cast<QMetaType::Type>(value.type()) == QMetaType::QString) {
+#else
+    if (value.userType() == QMetaType::QString) {
+#endif
         success = setValue(value.toString());
     } else {
         success = setValue(value.toDouble());
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.12.3/src/options/pagesizeoption.cpp 
new/ksanecore-23.04.0/src/options/pagesizeoption.cpp
--- old/ksanecore-22.12.3/src/options/pagesizeoption.cpp        2023-02-26 
04:35:34.000000000 +0100
+++ new/ksanecore-23.04.0/src/options/pagesizeoption.cpp        2023-04-13 
05:35:05.000000000 +0200
@@ -110,7 +110,11 @@
 
 bool PageSizeOption::setValue(const QVariant &value)
 {
+#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
     if (static_cast<QMetaType::Type>(value.type()) == QMetaType::QString) {
+#else
+    if (value.userType() == QMetaType::QString) {
+#endif
         QString newValue = value.toString();
         if (newValue == m_availableSizesListNames.at(m_currentIndex)) {
             return true;

Reply via email to