diff -pruN 25.04.0-2/.clang-format-pre-commit 25.08.2-0ubuntu1/.clang-format-pre-commit
--- 25.04.0-2/.clang-format-pre-commit	1970-01-01 00:00:00.000000000 +0000
+++ 25.08.2-0ubuntu1/.clang-format-pre-commit	2025-09-30 21:42:27.000000000 +0000
@@ -0,0 +1,95 @@
+---
+# SPDX-FileCopyrightText: 2019 Christoph Cullmann <cullmann@kde.org>
+# SPDX-FileCopyrightText: 2019 Gernot Gebhard <gebhard@absint.com>
+#
+# SPDX-License-Identifier: MIT
+
+# This file got automatically created by ECM, do not edit
+# See https://clang.llvm.org/docs/ClangFormatStyleOptions.html for the config options
+# and https://community.kde.org/Policies/Frameworks_Coding_Style#Clang-format_automatic_code_formatting
+# for clang-format tips & tricks
+---
+Language: JavaScript
+DisableFormat: true
+---
+Language: Json
+DisableFormat: false
+IndentWidth: 4
+---
+
+# Style for C++
+Language: Cpp
+
+# base is WebKit coding style: https://webkit.org/code-style-guidelines/
+# below are only things set that diverge from this style!
+BasedOnStyle: WebKit
+
+# enforce C++11 (e.g. for std::vector<std::vector<lala>>
+Standard: Cpp11
+
+# 4 spaces indent
+TabWidth: 4
+
+# 2 * 80 wide lines
+ColumnLimit: 160
+
+# sort includes inside line separated groups
+SortIncludes: true
+
+# break before braces on function, namespace and class definitions.
+BreakBeforeBraces: Linux
+
+# CrlInstruction *a;
+PointerAlignment: Right
+
+# horizontally aligns arguments after an open bracket.
+AlignAfterOpenBracket: Align
+
+# don't move all parameters to new line
+AllowAllParametersOfDeclarationOnNextLine: false
+
+# no single line functions
+AllowShortFunctionsOnASingleLine: None
+
+# no single line enums
+AllowShortEnumsOnASingleLine: false
+
+# always break before you encounter multi line strings
+AlwaysBreakBeforeMultilineStrings: true
+
+# don't move arguments to own lines if they are not all on the same
+BinPackArguments: false
+
+# don't move parameters to own lines if they are not all on the same
+BinPackParameters: false
+
+# In case we have an if statement with multiple lines the operator should be at the beginning of the line
+# but we do not want to break assignments
+BreakBeforeBinaryOperators: NonAssignment
+
+# format C++11 braced lists like function calls
+Cpp11BracedListStyle: true
+
+# do not put a space before C++11 braced lists
+SpaceBeforeCpp11BracedList: false
+
+# remove empty lines
+KeepEmptyLinesAtTheStartOfBlocks: false
+
+# no namespace indentation to keep indent level low
+NamespaceIndentation: None
+
+# we use template< without space.
+SpaceAfterTemplateKeyword: false
+
+# Always break after template declaration
+AlwaysBreakTemplateDeclarations: true
+
+# macros for which the opening brace stays attached.
+ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH, forever, Q_FOREVER, QBENCHMARK, QBENCHMARK_ONCE , wl_resource_for_each, wl_resource_for_each_safe ]
+
+# keep lambda formatting multi-line if not empty
+AllowShortLambdasOnASingleLine: Empty
+
+# We do not want clang-format to put all arguments on a new line
+AllowAllArgumentsOnNextLine: false
diff -pruN 25.04.0-2/.flatpak-manifest.json 25.08.2-0ubuntu1/.flatpak-manifest.json
--- 25.04.0-2/.flatpak-manifest.json	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/.flatpak-manifest.json	2025-09-30 21:42:27.000000000 +0000
@@ -2,12 +2,18 @@
     "id": "org.kde.kdebugsettings",
     "branch": "master",
     "runtime": "org.kde.Platform",
-    "runtime-version": "6.8",
+    "runtime-version": "6.9",
     "sdk": "org.kde.Sdk",
     "command": "kdebugsettings",
-    "tags": ["nightly"],
+    "tags": [
+        "nightly"
+    ],
     "desktop-file-name-suffix": " (Nightly)",
-    "finish-args": ["--share=ipc", "--socket=fallback-x11", "--socket=wayland" ],
+    "finish-args": [
+        "--share=ipc",
+        "--socket=fallback-x11",
+        "--socket=wayland"
+    ],
     "rename-icon": "debug-run",
     "modules": [
         {
diff -pruN 25.04.0-2/.gitlab-ci.yml 25.08.2-0ubuntu1/.gitlab-ci.yml
--- 25.04.0-2/.gitlab-ci.yml	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/.gitlab-ci.yml	2025-09-30 21:42:27.000000000 +0000
@@ -8,15 +8,12 @@ include:
       # - /gitlab-templates/freebsd-qt6.yml
       - /gitlab-templates/windows-qt6.yml
       - /gitlab-templates/reuse-lint.yml
-      - /gitlab-templates/flatpak.yml
+      # - /gitlab-templates/flatpak.yml
       - /gitlab-templates/cppcheck.yml
       - /gitlab-templates/craft-windows-x86-64-qt6.yml
       - /gitlab-templates/craft-windows-appx-qt6.yml
       - /gitlab-templates/craft-macos-arm64-qt6.yml
       - /gitlab-templates/craft-macos-x86-64-qt6.yml
       - /gitlab-templates/alpine-qt6.yml
-      - /gitlab-templates/clang-format.yml
-      - /gitlab-templates/json-validation.yml
       - /gitlab-templates/linux-qt6-next.yml
-      - /gitlab-templates/xml-lint.yml
-      - /gitlab-templates/yaml-lint.yml
+      - /gitlab-templates/pre-commit.yml
diff -pruN 25.04.0-2/.kde-ci.yml 25.08.2-0ubuntu1/.kde-ci.yml
--- 25.04.0-2/.kde-ci.yml	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/.kde-ci.yml	2025-09-30 21:42:27.000000000 +0000
@@ -22,3 +22,4 @@ Dependencies:
 Options:
  require-passing-tests-on: ['Linux', 'FreeBSD', 'Windows']
  cppcheck-arguments: '--enable=warning,style,performance --inline-suppr --suppress=passedByValue --suppress=nullPointer'
+ tests-run-in-parallel: True
diff -pruN 25.04.0-2/.pre-commit-config.yaml 25.08.2-0ubuntu1/.pre-commit-config.yaml
--- 25.04.0-2/.pre-commit-config.yaml	1970-01-01 00:00:00.000000000 +0000
+++ 25.08.2-0ubuntu1/.pre-commit-config.yaml	2025-09-30 21:42:27.000000000 +0000
@@ -0,0 +1,59 @@
+# SPDX-FileCopyrightText: none
+# SPDX-License-Identifier: CC0-1.0
+# See https://pre-commit.com for more information
+# See https://pre-commit.com/hooks.html for more hooks
+
+exclude: (^po/|.desktop|Messages.sh)
+repos:
+ - repo: https://github.com/pre-commit/pre-commit-hooks
+   rev: v5.0.0
+   hooks:
+    - id: trailing-whitespace
+    #- id: end-of-file-fixer
+    - id: check-added-large-files
+    - id: check-case-conflict
+    - id: check-xml
+    - id: check-yaml
+      args: [--allow-multiple-documents]
+      exclude: ^(.clang-tidy)
+    - id: check-json
+    - id: check-symlinks
+    - id: destroyed-symlinks
+    - id: check-executables-have-shebangs
+ - repo: https://github.com/pre-commit/mirrors-clang-format
+   rev: v20.1.4
+   hooks:
+    - id: clang-format
+    # force using this project's configuration rather
+    # than the one provided by CI
+      args: ["--style=file:.clang-format-pre-commit"]
+ - repo: https://github.com/astral-sh/ruff-pre-commit
+  # Ruff version.
+   rev: v0.11.9
+   hooks:
+    # Run the linter.
+    - id: ruff
+    # Run the formatter.
+    - id: ruff-format
+ - repo: https://github.com/codespell-project/codespell
+   rev: v2.4.1
+   hooks:
+    - id: codespell
+      exclude: (textemoticons/core/data/emoji.json|textgrammarcheck/grammalecte/autotests/data/result1.json|texttranslator/translator/plugins/bergamot/autotests/data/modellanguages/models.json|textgrammarcheck/languagetool/autotests/data/test2.json|textautocorrection/core/autotests/data/custom-fr-ref.xml|textgrammarcheck/common/autotests/grammarresultutiltest.cpp|textautocorrection/core/autotests/data/custom-fr.xml)
+ - repo: https://github.com/BlankSpruce/gersemi
+   rev: 0.19.3
+   hooks:
+    - id: gersemi
+ - repo: https://github.com/DavidAnson/markdownlint-cli2
+   rev: v0.18.1
+   hooks:
+    - id: markdownlint-cli2
+      files: \.(md|mdown|markdown)$
+ - repo: https://github.com/scop/pre-commit-shfmt
+   rev: v3.11.0-1
+   hooks:
+    - id: shfmt
+ - repo: https://github.com/shellcheck-py/shellcheck-py
+   rev: v0.10.0.1
+   hooks:
+    - id: shellcheck
diff -pruN 25.04.0-2/CMakeLists.txt 25.08.2-0ubuntu1/CMakeLists.txt
--- 25.04.0-2/CMakeLists.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/CMakeLists.txt	2025-09-30 21:42:27.000000000 +0000
@@ -3,22 +3,37 @@
 # KDE Application Version, managed by release script
 cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR)
 set(RELEASE_SERVICE_VERSION_MAJOR "25")
-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}")
+set(RELEASE_SERVICE_VERSION_MINOR "08")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
+set(RELEASE_SERVICE_VERSION
+    "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}"
+)
 project(kdebugsettings VERSION ${RELEASE_SERVICE_VERSION})
 
 set(QT_REQUIRED_VERSION "6.8.0")
-set(KF_MIN_VERSION "6.10.0")
+set(KF_MIN_VERSION "6.14.0")
 
 set(ECM_VERSION ${KF_MIN_VERSION})
 find_package(ECM ${ECM_VERSION} REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH})
 include(FeatureSummary)
-include(KDEGitCommitHooks)
-include(KDEClangFormat)
 file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h *.c)
-kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
+set(PRE_COMMIT_INSTALLED FALSE)
+if(${CMAKE_SOURCE_DIR} STREQUAL ${PROJECT_SOURCE_DIR})
+    if(EXISTS "${PROJECT_SOURCE_DIR}/.git/hooks/pre-commit")
+        file(READ "${PROJECT_SOURCE_DIR}/.git/hooks/pre-commit" FILE_CONTENTS)
+        string(FIND "${FILE_CONTENTS}" "File generated by pre-commit" INDEX)
+        if(${INDEX} GREATER_EQUAL 0)
+            set(PRE_COMMIT_INSTALLED TRUE)
+        endif()
+    endif()
+endif()
+if(NOT ${PRE_COMMIT_INSTALLED})
+    include(KDEGitCommitHooks)
+    include(KDEClangFormat)
+    kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
+endif()
+
 include(ECMAddAppIcon)
 include(ECMInstallIcons)
 include(KDEInstallDirs)
@@ -31,15 +46,19 @@ include(ECMDeprecationSettings)
 include(ECMCheckOutboundLicense)
 
 find_package(Qt6 ${QT_REQUIRED_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets)
-find_package(KF6 ${KF_MIN_VERSION} REQUIRED COMPONENTS
-    CoreAddons 
-    Config
-    I18n 
-    WidgetsAddons
-    Completion
-    XmlGui
-    IconThemes
-    Crash
+find_package(
+    KF6
+    ${KF_MIN_VERSION}
+    REQUIRED
+    COMPONENTS
+        CoreAddons
+        Config
+        I18n
+        WidgetsAddons
+        Completion
+        XmlGui
+        IconThemes
+        Crash
 )
 
 # shall we use DBus?
@@ -49,33 +68,47 @@ if(UNIX AND NOT APPLE AND NOT HAIKU)
     set(USE_DBUS_DEFAULT ON)
 endif()
 
-
 option(USE_DBUS "Build components using DBus" ${USE_DBUS_DEFAULT})
 if(USE_DBUS)
-   set(WITH_DBUS TRUE)
-   find_package(KF6DBusAddons ${KF_MIN_VERSION} CONFIG REQUIRED)
+    set(WITH_DBUS TRUE)
+    find_package(KF6DBusAddons ${KF_MIN_VERSION} CONFIG REQUIRED)
 else()
-   find_package(KDSingleApplication-qt6 CONFIG REQUIRED)
+    find_package(KDSingleApplication-qt6 CONFIG REQUIRED)
 endif()
 
 add_definitions(-DTRANSLATION_DOMAIN="kdebugsettings")
 add_definitions(-DQT_NO_CONTEXTLESS_CONNECT)
 ecm_set_disabled_deprecation_versions(QT 6.9.0
-    KF 6.12.0
+    KF 6.15.0
 )
 
 if(OPTION_SELENIUMWEBDRIVER_SUPPORT)
     find_package(SeleniumWebDriverATSPI)
-    set_package_properties(SeleniumWebDriverATSPI PROPERTIES PURPOSE "Needed for GUI tests" URL "https://invent.kde.org/sdk/selenium-webdriver-at-spi" TYPE OPTIONAL)
-endif()
-configure_file(config-kdebugsettings.h.in ${CMAKE_CURRENT_BINARY_DIR}/config-kdebugsettings.h)
+    set_package_properties(
+        SeleniumWebDriverATSPI
+        PROPERTIES
+            PURPOSE "Needed for GUI tests"
+            URL "https://invent.kde.org/sdk/selenium-webdriver-at-spi"
+            TYPE OPTIONAL
+    )
+endif()
+configure_file(
+    config-kdebugsettings.h.in
+    ${CMAKE_CURRENT_BINARY_DIR}/config-kdebugsettings.h
+)
 
 set(KDEBUGSETTINGS_LIB_VERSION "${RELEASE_SERVICE_VERSION}")
 set(KDEBUGSETTINGS_LIB_SOVERSION "6")
 
 option(BUILD_QUICK_VERSION "Experimental (in progress)" FALSE)
 if(BUILD_QUICK_VERSION)
-    find_package(Qt6 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Quick QuickControls2)
+    find_package(
+        Qt6
+        ${QT_MIN_VERSION}
+        REQUIRED
+        NO_MODULE
+        COMPONENTS Quick QuickControls2
+    )
     if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
         add_definitions(-DQT_QML_DEBUG)
     endif()
@@ -84,7 +117,11 @@ if(BUILD_TESTING)
     add_definitions(-DBUILD_TESTING)
 endif()
 
-option(USE_UNITY_CMAKE_SUPPORT "Use UNITY cmake support (speedup compile time)" OFF)
+option(
+    USE_UNITY_CMAKE_SUPPORT
+    "Use UNITY cmake support (speedup compile time)"
+    OFF
+)
 
 set(COMPILE_WITH_UNITY_CMAKE_SUPPORT OFF)
 if(USE_UNITY_CMAKE_SUPPORT)
@@ -94,17 +131,30 @@ if(BUILD_TESTING)
     find_package(Qt6 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Test)
 endif()
 
-add_subdirectory( src )
+add_subdirectory(src)
 
 ecm_qt_install_logging_categories(EXPORT KDEBUGSETTINGS FILE kdebugsettings.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR})
 add_subdirectory(data/groups)
 
-install(FILES data/kde.renamecategories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR} )
-kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
+install(
+    FILES data/kde.renamecategories
+    DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}
+)
+if(DEFINED kde_configure_git_pre_commit_hook)
+    kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
+endif()
 ki18n_install(po)
 feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
-
-file(GLOB_RECURSE ALL_SOURCE_FILES src/quickapps/*.cpp src/quickapps/*.h src/core/*.cpp src/core/*.h src/apps/*.h src/apps/*.cpp src/widgets/*.cpp src/widgets/*.h)
+file(
+    GLOB_RECURSE ALL_SOURCE_FILES
+    src/quickapps/*.cpp
+    src/quickapps/*.h
+    src/core/*.cpp
+    src/core/*.h
+    src/apps/*.h
+    src/apps/*.cpp
+    src/widgets/*.cpp
+    src/widgets/*.h
+)
 ecm_check_outbound_license(LICENSES GPL-2.0-only  FILES ${ALL_SOURCE_FILES})
-
diff -pruN 25.04.0-2/CMakePresets.json 25.08.2-0ubuntu1/CMakePresets.json
--- 25.04.0-2/CMakePresets.json	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/CMakePresets.json	2025-09-30 21:42:27.000000000 +0000
@@ -40,7 +40,7 @@
             "displayName": "Build with Asan support.",
             "cacheVariables": {
                 "CMAKE_BUILD_TYPE": "Debug",
-                "ECM_ENABLE_SANITIZERS" : "'address;undefined'"
+                "ECM_ENABLE_SANITIZERS": "'address;undefined'"
             },
             "inherits": [
                 "base"
@@ -191,35 +191,55 @@
             "name": "clazy",
             "configurePreset": "clazy",
             "environment": {
-                "CLAZY_CHECKS" : "level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo",
-                "CCACHE_DISABLE" : "ON"
+                "CLAZY_CHECKS": "level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo",
+                "CCACHE_DISABLE": "ON"
             }
         }
     ],
     "testPresets": [
-    {
-      "name": "dev",
-      "configurePreset": "dev",
-      "output": {"outputOnFailure": true},
-      "execution": {"noTestsAction": "error", "stopOnFailure": false}
-    },
-    {
-      "name": "asan",
-      "configurePreset": "asan",
-      "output": {"outputOnFailure": true},
-      "execution": {"noTestsAction": "error", "stopOnFailure": true}
-    },
-    {
-      "name": "unity",
-      "configurePreset": "unity",
-      "output": {"outputOnFailure": true},
-      "execution": {"noTestsAction": "error", "stopOnFailure": true}
-    },
-    {
-      "name": "coverage",
-      "configurePreset": "coverage",
-      "output": {"outputOnFailure": true},
-      "execution": {"noTestsAction": "error", "stopOnFailure": true}
-    }
-  ]
+        {
+            "name": "dev",
+            "configurePreset": "dev",
+            "output": {
+                "outputOnFailure": true
+            },
+            "execution": {
+                "noTestsAction": "error",
+                "stopOnFailure": false
+            }
+        },
+        {
+            "name": "asan",
+            "configurePreset": "asan",
+            "output": {
+                "outputOnFailure": true
+            },
+            "execution": {
+                "noTestsAction": "error",
+                "stopOnFailure": true
+            }
+        },
+        {
+            "name": "unity",
+            "configurePreset": "unity",
+            "output": {
+                "outputOnFailure": true
+            },
+            "execution": {
+                "noTestsAction": "error",
+                "stopOnFailure": true
+            }
+        },
+        {
+            "name": "coverage",
+            "configurePreset": "coverage",
+            "output": {
+                "outputOnFailure": true
+            },
+            "execution": {
+                "noTestsAction": "error",
+                "stopOnFailure": true
+            }
+        }
+    ]
 }
diff -pruN 25.04.0-2/LICENSES/MIT.txt 25.08.2-0ubuntu1/LICENSES/MIT.txt
--- 25.04.0-2/LICENSES/MIT.txt	1970-01-01 00:00:00.000000000 +0000
+++ 25.08.2-0ubuntu1/LICENSES/MIT.txt	2025-09-30 21:42:27.000000000 +0000
@@ -0,0 +1,19 @@
+MIT License Copyright (c) <year> <copyright holders>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is furnished
+to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice (including the next
+paragraph) shall be included in all copies or substantial portions of the
+Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
+OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff -pruN 25.04.0-2/data/groups/CMakeLists.txt 25.08.2-0ubuntu1/data/groups/CMakeLists.txt
--- 25.04.0-2/data/groups/CMakeLists.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/data/groups/CMakeLists.txt	2025-09-30 21:42:27.000000000 +0000
@@ -1,3 +1,6 @@
 # SPDX-FileCopyrightText: 2015-2025 Laurent Montel <montel@kde.org>
 # SPDX-License-Identifier: BSD-3-Clause
-install(FILES "Full Debug Ruqola" DESTINATION ${KDE_INSTALL_DATADIR}/kdebugsettings/groups)
+install(
+    FILES "Full Debug Ruqola"
+    DESTINATION ${KDE_INSTALL_DATADIR}/kdebugsettings/groups
+)
diff -pruN "25.04.0-2/data/groups/Full Debug Ruqola" "25.08.2-0ubuntu1/data/groups/Full Debug Ruqola"
--- "25.04.0-2/data/groups/Full Debug Ruqola"	2025-04-07 21:09:03.000000000 +0000
+++ "25.08.2-0ubuntu1/data/groups/Full Debug Ruqola"	2025-09-30 21:42:27.000000000 +0000
@@ -3236,4 +3236,3 @@ kwin_wayland_hwcomposer.debug=false
 kwin_wayland_hwcomposer.critical=true
 
 quantitative.qitissue.crashreport=true
-
diff -pruN 25.04.0-2/debian/changelog 25.08.2-0ubuntu1/debian/changelog
--- 25.04.0-2/debian/changelog	2025-05-04 16:30:35.000000000 +0000
+++ 25.08.2-0ubuntu1/debian/changelog	2025-10-17 10:43:21.000000000 +0000
@@ -1,29 +1,105 @@
-kdebugsettings (25.04.0-2) unstable; urgency=medium
+kdebugsettings (25.08.2-0ubuntu1) resolute; urgency=medium
 
-  [ Aurélien COUDERC ]
-  * Mark test suite as failing on s390x.
+  * New upstream release (25.08.2)
 
- -- Aurélien COUDERC <coucouf@debian.org>  Sun, 04 May 2025 18:30:35 +0200
+ -- Rik Mills <rikmills@kde.org>  Fri, 17 Oct 2025 11:43:21 +0100
 
-kdebugsettings (25.04.0-1) unstable; urgency=medium
+kdebugsettings (25.08.1-0ubuntu1) questing; urgency=medium
 
-  [ Aurélien COUDERC ]
-  * New upstream release (25.04.0).
-  * Update build-deps and deps with the info from cmake.
-  * Bump Standards-Version to 4.7.2, no change required.
-  * Update project homepage.
-  * Remove inactive uploaders.
+  * New upstream release (25.08.1)
 
- -- Aurélien COUDERC <coucouf@debian.org>  Thu, 17 Apr 2025 18:59:58 +0200
+ -- Rik Mills <rikmills@kde.org>  Thu, 11 Sep 2025 06:52:44 +0100
 
-kdebugsettings (24.12.0-1) unstable; urgency=medium
+kdebugsettings (25.08.0-0ubuntu1) questing; urgency=medium
 
-  [ Aurélien COUDERC ]
-  * New upstream release (24.12.0).
-  * Update build-deps and deps with the info from cmake.
-  * Release to unstable.
+  * New upstream release (25.08.0)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 14 Aug 2025 11:22:41 +0100
+
+kdebugsettings (25.07.90-0ubuntu1) questing; urgency=medium
+
+  * New upstream (RC) release (25.07.90)
+
+ -- Rik Mills <rikmills@kde.org>  Fri, 25 Jul 2025 17:42:27 +0100
+
+kdebugsettings (25.07.80-0ubuntu1) questing; urgency=medium
+
+  * New upstream (beta) release (25.07.80)
+
+ -- Rik Mills <rikmills@kde.org>  Sat, 12 Jul 2025 18:08:09 +0100
+
+kdebugsettings (25.04.3-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 03 Jul 2025 07:40:53 +0100
+
+kdebugsettings (25.04.2-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 05 Jun 2025 11:42:32 +0100
+
+kdebugsettings (25.04.1-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.1)
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 07 May 2025 22:04:39 +0100
+
+kdebugsettings (25.04.0-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.0)
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 30 Apr 2025 19:46:49 +0100
+
+kdebugsettings (24.12.3-0ubuntu1) plucky; urgency=medium
+
+  * New upstream release (24.12.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 06 Mar 2025 08:39:59 +0000
+
+kdebugsettings (24.12.2-0ubuntu1) plucky; urgency=medium
+
+  * New upstream release (24.12.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 06 Feb 2025 14:14:34 +0000
+
+kdebugsettings (24.12.1-0ubuntu1) plucky; urgency=medium
+
+  * New upstream release (24.12.1)
+
+ -- Rik Mills <rikmills@kde.org>  Sat, 11 Jan 2025 14:29:23 +0000
+
+kdebugsettings (24.12.0-0ubuntu1) plucky; urgency=medium
+
+  * New upstream release (24.12.0)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 12 Dec 2024 17:09:56 +0000
+
+kdebugsettings (24.11.90-0ubuntu1) plucky; urgency=medium
+
+  * New upstream (RC) release (24.11.90)
+
+ -- Rik Mills <rikmills@kde.org>  Fri, 29 Nov 2024 14:06:23 +0000
+
+kdebugsettings (24.11.80-0ubuntu1) plucky; urgency=medium
+
+  * New upstream (beta) release (24.11.80)
+  * New build depend on libkf6crash-dev
+
+ -- Rik Mills <rikmills@kde.org>  Fri, 22 Nov 2024 14:50:59 +0000
+
+kdebugsettings (24.08.3-0ubuntu1) plucky; urgency=medium
+
+  * New upstream release (24.08.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 07 Nov 2024 11:39:10 +0000
+
+kdebugsettings (24.08.2-1ubuntu1) plucky; urgency=medium
 
- -- Aurélien COUDERC <coucouf@debian.org>  Sat, 21 Dec 2024 23:36:35 +0100
+  * Merge from Debian Experimental.
+
+ -- Simon Quigley <tsimonq2@ubuntu.com>  Sat, 02 Nov 2024 17:53:53 -0500
 
 kdebugsettings (24.08.2-1) experimental; urgency=medium
 
@@ -39,6 +115,36 @@ kdebugsettings (24.08.2-1) experimental;
 
  -- Aurélien COUDERC <coucouf@debian.org>  Mon, 14 Oct 2024 22:31:29 +0200
 
+kdebugsettings (23.08.5-0ubuntu3) noble; urgency=medium
+
+  * No-change rebuild for CVE-2024-3094
+
+ -- William Grant <wgrant@ubuntu.com>  Mon, 01 Apr 2024 16:58:41 +1100
+
+kdebugsettings (23.08.5-0ubuntu2) noble; urgency=medium
+
+  * No-change rebuild against libqt5core5t64
+
+ -- Steve Langasek <steve.langasek@ubuntu.com>  Fri, 15 Mar 2024 04:49:44 +0000
+
+kdebugsettings (23.08.5-0ubuntu1) noble; urgency=medium
+
+  * New upstream release (23.08.5)
+
+ -- Scarlett Moore <sgmoore@debian.org>  Thu, 22 Feb 2024 09:41:13 -0700
+
+kdebugsettings (23.08.4-0ubuntu1) noble; urgency=medium
+
+  * New upstream release (23.08.4)
+
+ -- José Manuel Santamaría Lema <panfaust@gmail.com>  Wed, 13 Dec 2023 10:13:55 +0000
+
+kdebugsettings (23.08.3-0ubuntu1) noble; urgency=medium
+
+  * New upstream release (23.08.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 09 Nov 2023 11:33:23 +0000
+
 kdebugsettings (23.08.2-1) unstable; urgency=medium
 
   * Team upload.
@@ -49,6 +155,50 @@ kdebugsettings (23.08.2-1) unstable; urg
 
  -- Jesse Rhodes <jesse@sney.ca>  Sun, 05 Nov 2023 17:11:15 -0500
 
+kdebugsettings (23.08.2-0ubuntu1) noble; urgency=medium
+
+  * New upstream release (23.08.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 26 Oct 2023 12:29:39 +0100
+
+kdebugsettings (23.08.1-0ubuntu1) mantic; urgency=medium
+
+  * New upstream release (23.08.1)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 14 Sep 2023 11:57:44 +0100
+
+kdebugsettings (23.08.0-0ubuntu1) mantic; urgency=medium
+
+  * New upstream release (23.08.0)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 24 Aug 2023 12:52:38 +0100
+
+kdebugsettings (23.07.90-0ubuntu1) mantic; urgency=medium
+
+  [ Rik Mills ]
+  * New upstream (beta) release (23.07.80)
+  * New upstream (RC) release (23.07.90)
+
+  [ José Manuel Santamaría Lema ]
+  * Update lintian overrides
+
+ -- Rik Mills <rikmills@kde.org>  Tue, 15 Aug 2023 02:32:31 +0100
+
+kdebugsettings (23.04.3-0ubuntu1) mantic; urgency=medium
+
+  * New upstream release (23.04.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 06 Jul 2023 14:45:08 +0100
+
+kdebugsettings (23.04.2-0ubuntu1) mantic; urgency=medium
+
+  * New upstream release (23.04.1)
+  * Add libkf5xmlgui-dev to Build-Depends
+  * Disable build tests with -DBUILD_TESTING=OF
+  * New upstream release (23.04.2)
+
+ -- José Manuel Santamaría Lema <panfaust@gmail.com>  Sat, 10 Jun 2023 11:55:47 +0100
+
 kdebugsettings (22.12.3-1) unstable; urgency=medium
 
   [ Aurélien COUDERC ]
@@ -57,6 +207,18 @@ kdebugsettings (22.12.3-1) unstable; urg
 
  -- Aurélien COUDERC <coucouf@debian.org>  Wed, 01 Mar 2023 11:57:49 +0100
 
+kdebugsettings (22.12.3-0ubuntu1) lunar; urgency=medium
+
+  * New upstream release (22.12.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 02 Mar 2023 00:36:40 +0000
+
+kdebugsettings (22.12.2-0ubuntu1) lunar; urgency=medium
+
+  * New upstream release (22.12.2)
+
+ -- Simon Quigley <tsimonq2@kubuntu.org>  Sat, 11 Feb 2023 14:14:30 -0600
+
 kdebugsettings (22.12.1-1) unstable; urgency=medium
 
   [ Aurélien COUDERC ]
@@ -66,6 +228,20 @@ kdebugsettings (22.12.1-1) unstable; urg
 
  -- Aurélien COUDERC <coucouf@debian.org>  Fri, 06 Jan 2023 23:05:16 +0100
 
+kdebugsettings (22.12.1-0ubuntu1) lunar; urgency=medium
+
+  * New upstream release (22.12.1)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 05 Jan 2023 11:13:34 +0000
+
+kdebugsettings (22.12.0-2ubuntu1) lunar; urgency=medium
+
+  * Merge from Debian unstable. Remaining changes:
+    - Kubuntu Vcs and maintainer fields.
+    - Update upstream signing key.
+
+ -- Rik Mills <rikmills@kde.org>  Sat, 31 Dec 2022 19:52:57 +0000
+
 kdebugsettings (22.12.0-2) unstable; urgency=medium
 
   * Upload with a correctly released changelog.
@@ -84,6 +260,68 @@ kdebugsettings (22.12.0-1) unstable; urg
 
  -- Aurélien COUDERC <coucouf@debian.org>  Sat, 10 Dec 2022 00:12:53 +0100
 
+kdebugsettings (22.12.0-0ubuntu1) lunar; urgency=medium
+
+  * New upstream release (22.12.0)
+
+ -- Rik Mills <rikmills@kde.org>  Fri, 09 Dec 2022 19:07:44 +0000
+
+kdebugsettings (22.11.90-0ubuntu1) lunar; urgency=medium
+
+  * New upstream (RC) release (22.11.90)
+
+ -- Rik Mills <rikmills@kde.org>  Fri, 25 Nov 2022 16:04:05 +0000
+
+kdebugsettings (22.11.80-0ubuntu1) lunar; urgency=medium
+
+  * New upstream (beta) release (22.11.80)
+
+ -- Rik Mills <rikmills@kde.org>  Mon, 14 Nov 2022 10:49:30 +0000
+
+kdebugsettings (22.08.3-0ubuntu1) lunar; urgency=medium
+
+  * New upstream release (22.08.2)
+  * New upstream release (22.08.3)
+
+ -- Rik Mills <rikmills@kde.org>  Mon, 07 Nov 2022 11:07:37 +0000
+
+kdebugsettings (22.08.1-0ubuntu1) kinetic; urgency=medium
+
+  * New upstream release (22.08.1)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 08 Sep 2022 07:38:32 +0100
+
+kdebugsettings (22.08.0-0ubuntu1) kinetic; urgency=medium
+
+  * New upstream release (22.08.0)
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 24 Aug 2022 09:48:35 +0100
+
+kdebugsettings (22.04.3-0ubuntu1) kinetic; urgency=medium
+
+  * New upstream release (22.04.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 07 Jul 2022 09:26:00 +0100
+
+kdebugsettings (22.04.2-0ubuntu1) kinetic; urgency=medium
+
+  * New upstream release (22.04.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 09 Jun 2022 07:59:59 +0100
+
+kdebugsettings (22.04.1-0ubuntu1) kinetic; urgency=medium
+
+  * New upstream release (22.04.1)
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 11 May 2022 20:57:21 +0100
+
+kdebugsettings (22.04.0-0ubuntu1) kinetic; urgency=medium
+
+  * New upstream release (22.04.0)
+  * Update lintian overrides.
+
+ -- Rik Mills <rikmills@kde.org>  Mon, 02 May 2022 06:46:29 +0100
+
 kdebugsettings (21.12.3-1) unstable; urgency=medium
 
   [ Aurélien COUDERC ]
@@ -92,6 +330,73 @@ kdebugsettings (21.12.3-1) unstable; urg
 
  -- Aurélien COUDERC <coucouf@debian.org>  Sun, 06 Mar 2022 22:38:07 +0100
 
+kdebugsettings (21.12.3-0ubuntu1) jammy; urgency=medium
+
+  * New upstream release (21.12.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 03 Mar 2022 10:09:04 +0000
+
+kdebugsettings (21.12.2-0ubuntu1) jammy; urgency=medium
+
+  [ José Manuel Santamaría Lema ]
+  * Update upstream signing key
+
+  [ Rik Mills ]
+  * New upstream release (21.12.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 03 Feb 2022 07:15:32 +0000
+
+kdebugsettings (21.12.1-0ubuntu1) jammy; urgency=medium
+
+  * New upstream release (21.12.1)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 06 Jan 2022 10:23:23 +0000
+
+kdebugsettings (21.12.0-0ubuntu1) jammy; urgency=medium
+
+  [ Rik Mills ]
+  * New upstream release (21.12.0)
+  * Set maintainer to Kubuntu Developers.
+
+  [ José Manuel Santamaría Lema ]
+  * Update upstream signing key
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 09 Dec 2021 11:20:25 +0000
+
+kdebugsettings (21.11.90-0ubuntu2) jammy; urgency=medium
+
+  * Add Kubuntu Vcs fields.
+
+ -- Rik Mills <rikmills@kde.org>  Sun, 28 Nov 2021 19:04:35 +0000
+
+kdebugsettings (21.11.90-0ubuntu1) jammy; urgency=medium
+
+  * New upstream (RC) release (21.11.90)
+
+ -- Rik Mills <rikmills@kde.org>  Fri, 26 Nov 2021 13:15:44 +0000
+
+kdebugsettings (21.11.80-0ubuntu1) jammy; urgency=medium
+
+  * New upstream (beta) release (21.11.80)
+
+ -- Rik Mills <rikmills@kde.org>  Sun, 21 Nov 2021 18:24:55 +0000
+
+kdebugsettings (21.08.3-0ubuntu1) jammy; urgency=medium
+
+  [ José Manuel Santamaría Lema ]
+  * New upstream release (21.08.2)
+
+  [ Rik Mills ]
+  * New upstream release (21.08.3)
+
+ -- Rik Mills <rikmills@kde.org>  Mon, 15 Nov 2021 09:38:42 +0000
+
+kdebugsettings (21.08.1-0ubuntu1) impish; urgency=medium
+
+  * New upstream release (21.08.1)
+
+ -- José Manuel Santamaría Lema <panfaust@gmail.com>  Thu, 09 Sep 2021 22:32:24 +0100
+
 kdebugsettings (21.08.0-1) unstable; urgency=medium
 
   [ Norbert Preining ]
@@ -99,6 +404,42 @@ kdebugsettings (21.08.0-1) unstable; urg
 
  -- Norbert Preining <norbert@preining.info>  Mon, 16 Aug 2021 15:54:11 +0900
 
+kdebugsettings (21.08.0-0ubuntu1) impish; urgency=medium
+
+  * New upstream release (21.08.0)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 12 Aug 2021 09:00:51 +0100
+
+kdebugsettings (21.07.90-0ubuntu1) impish; urgency=medium
+
+  * New upstream (RC) release (21.07.90)
+
+ -- Rik Mills <rikmills@kde.org>  Mon, 02 Aug 2021 12:53:50 +0100
+
+kdebugsettings (21.07.80-0ubuntu1) impish; urgency=medium
+
+  * New upstream (beta) release (21.07.80)
+
+ -- Rik Mills <rikmills@kde.org>  Sun, 18 Jul 2021 20:32:43 +0100
+
+kdebugsettings (21.04.3-0ubuntu1) impish; urgency=medium
+
+  * New upstream release (21.04.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 08 Jul 2021 11:41:44 +0100
+
+kdebugsettings (21.04.2-0ubuntu1) impish; urgency=medium
+
+  * New upstream release (21.04.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 10 Jun 2021 10:38:15 +0100
+
+kdebugsettings (21.04.1-0ubuntu1) impish; urgency=medium
+
+  * New upstream release (21.04.1)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 13 May 2021 09:04:56 +0100
+
 kdebugsettings (21.04.0-1) experimental; urgency=medium
 
   [ Norbert Preining ]
@@ -109,6 +450,30 @@ kdebugsettings (21.04.0-1) experimental;
 
  -- Norbert Preining <norbert@preining.info>  Wed, 28 Apr 2021 10:00:52 +0900
 
+kdebugsettings (21.04.0-0ubuntu1) impish; urgency=medium
+
+  * New upstream release (21.04.0)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 29 Apr 2021 01:33:35 +0100
+
+kdebugsettings (20.12.3-0ubuntu1) hirsute; urgency=medium
+
+  * New upstream release (20.12.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 04 Mar 2021 15:18:21 +0000
+
+kdebugsettings (20.12.2-0ubuntu1) hirsute; urgency=medium
+
+  * New upstream release (20.12.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 04 Feb 2021 09:52:37 +0000
+
+kdebugsettings (20.12.1-0ubuntu1) hirsute; urgency=medium
+
+  * New upstream release (20.12.1)
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 20 Jan 2021 23:09:08 +0000
+
 kdebugsettings (20.12.0-1) unstable; urgency=medium
 
   * New upstream release (20.12.0).
diff -pruN 25.04.0-2/debian/control 25.08.2-0ubuntu1/debian/control
--- 25.04.0-2/debian/control	2025-04-17 21:00:11.000000000 +0000
+++ 25.08.2-0ubuntu1/debian/control	2025-10-17 10:43:21.000000000 +0000
@@ -1,33 +1,35 @@
 Source: kdebugsettings
 Section: kde
 Priority: optional
-Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
+Maintainer: Kubuntu Developers <kubuntu-devel@lists.ubuntu.com>
+XSBC-Original-Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
 Uploaders: Aurélien COUDERC <coucouf@debian.org>,
-Build-Depends: debhelper-compat (= 13),
+           Norbert Preining <norbert@preining.info>,
+Build-Depends: cmake (>= 3.16.0~),
+               debhelper-compat (= 13),
                dh-sequence-kf6,
-               cmake (>= 3.16.0~),
-               extra-cmake-modules (>= 6.10.0~),
+               extra-cmake-modules (>= 6.3.0~),
                gettext,
-               libkf6completion-dev (>= 6.10.0~),
-               libkf6config-dev (>= 6.10.0~),
-               libkf6coreaddons-dev (>= 6.10.0~),
-               libkf6crash-dev (>= 6.10.0~),
-               libkf6dbusaddons-dev (>= 6.10.0~),
-               libkf6i18n-dev (>= 6.10.0~),
-               libkf6iconthemes-dev (>= 6.10.0~),
-               libkf6widgetsaddons-dev (>= 6.10.0~),
-               libkf6xmlgui-dev (>= 6.10.0~),
+               libkf6completion-dev (>= 6.3.0~),
+               libkf6config-dev (>= 6.3.0~),
+               libkf6coreaddons-dev (>= 6.3.0~),
+               libkf6crash-dev,
+               libkf6dbusaddons-dev (>= 6.3.0~),
+               libkf6i18n-dev (>= 6.3.0~),
+               libkf6iconthemes-dev (>= 6.3.0~),
+               libkf6widgetsaddons-dev (>= 6.3.0~),
+               libkf6xmlgui-dev (>= 6.3.0~),
                libxkbcommon-dev,
                pkgconf,
-               qt6-base-dev (>= 6.8.0~),
+               qt6-base-dev,
                qt6-declarative-dev,
                xauth <!nocheck>,
                xvfb <!nocheck>,
-Standards-Version: 4.7.2
+Standards-Version: 4.7.0
 Rules-Requires-Root: no
-Homepage: https://apps.kde.org/kdebugsettings/
-Vcs-Browser: https://salsa.debian.org/qt-kde-team/kde/kdebugsettings
-Vcs-Git: https://salsa.debian.org/qt-kde-team/kde/kdebugsettings.git
+Homepage: https://projects.kde.org/projects/kde/kdeutils/kdebugsettings
+Vcs-Browser: https://code.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/kdebugsettings
+Vcs-Git: https://git.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/kdebugsettings
 
 Package: kdebugsettings
 Architecture: any
diff -pruN 25.04.0-2/debian/kdebugsettings.lintian-overrides 25.08.2-0ubuntu1/debian/kdebugsettings.lintian-overrides
--- 25.04.0-2/debian/kdebugsettings.lintian-overrides	2024-12-21 22:36:27.000000000 +0000
+++ 25.08.2-0ubuntu1/debian/kdebugsettings.lintian-overrides	2025-10-17 10:43:21.000000000 +0000
@@ -2,3 +2,5 @@
 kdebugsettings: package-name-doesnt-match-sonames libkdebugsettings6 libkdebugsettingscore6
 # private library
 kdebugsettings: no-symbols-control-file
+# ignore
+kdebugsettings: desktop-entry-contains-unknown-key usr/share/applications/org.kde.kdebugsettings.desktop:123 SingleMainWindow
diff -pruN 25.04.0-2/debian/rules 25.08.2-0ubuntu1/debian/rules
--- 25.04.0-2/debian/rules	2025-05-04 16:29:53.000000000 +0000
+++ 25.08.2-0ubuntu1/debian/rules	2025-10-17 10:43:21.000000000 +0000
@@ -2,13 +2,11 @@
 
 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 
-testsuite_failing_archs := s390x
-ifneq (,$(filter $(DEB_HOST_ARCH),$(testsuite_failing_archs)))
-  fail_param := || true
-endif
-
 %:
 	dh $@
 
+override_dh_auto_configure:
+	dh_auto_configure -Skf5 -- -DBUILD_TESTING=OFF
+
 override_dh_auto_test:
-	-xvfb-run -a dh_auto_test -Skf6 $(fail_param)
+	#xvfb-run -a dh_auto_test
diff -pruN 25.04.0-2/debian/upstream/signing-key.asc 25.08.2-0ubuntu1/debian/upstream/signing-key.asc
--- 25.04.0-2/debian/upstream/signing-key.asc	2023-01-31 14:32:02.000000000 +0000
+++ 25.08.2-0ubuntu1/debian/upstream/signing-key.asc	2025-10-17 10:43:21.000000000 +0000
@@ -1,5 +1,56 @@
 -----BEGIN PGP PUBLIC KEY BLOCK-----
 
+mQINBFfNZD4BEACo0YKCUEhTY7v8VZVw3csAtnsRSFQ18G8xfYIt7mJEBrtfiGG4
+g28EjNeWQfN8wGIaAeRGl5nb7s9RRpxXStUu719jGX1Z9Sr8p/JOmBS5kdfAtYId
+9Cl3VsGRvf4Smg1ClrEv6tQ97j+d1FY8QfgW/GS46YBOEeOFVQRtfi7Yv9lZkiBF
+rzP0Nr7JV9u1GkBsFgNkVuYs/3RDYULItBwGFerduOyQCOt819QvHHSZkXqJWwNR
+OA6lc8gW36lKbDHoZ1jSkDnDV0bW0cX1/6WJSzWYdcPiceA1vj/VDg0Kr23SVQ1P
+yPvBirT7ToirQm6KrIiKHWLSg156ht8/K2C1Dgypf+YMseMbHQxVLrI2p4zpmxu3
+B2SrSj3ImM5FO0XGd1gxn/qywNVJDQBfcYnndksD2i/9/Es8I/F6OymBZl4HWBvx
+7ixm2JPXkmwVPEC/lJn3eCBb1fAaJSlroHtaAEteCWuE5/Mg/uYEh1UeAstP47N3
+P0B3l1E4Ccw1ne2/O1BdsnXeUaI3YVYz9aZkVlL7ywda3h/goRKxc1b18bmgu/Ed
+QmcTEMj29B3szMpetWNt1ZbaMJzfDw+z+SiQ3toOTUiqMuWq+l+JK0dVUzOvpGhG
+VHv5m9CtJFP671ivEc4it0hJRH5kdW9aNbeG0g9TxHQqQMJIpeLvRq5WKwARAQAB
+tCFBbGJlcnQgQXN0YWxzIENpZCA8YWFjaWRAa2RlLm9yZz6JAj0EEwEIACcFAlfN
+ZD4CGwMFCQPCZwAFCwkIBwIGFQgJCgsCBBYCAwECHgECF4AACgkQOmpNuDnqptfE
+2w/8CdIZ2FOY2UCcdtEzAQCRL125ffU1l5E9nl60vjx/0c/kkNtt77iVOl35waHQ
+wYzzF90+PX9CDEODtfZowhEBIwQZxHfwmyp6dCqTDczyeL8QbUDNE+RAKSaBesiP
+FLU+598QLwvTr0F7iePAAf4uLMN9u69NhJD+f1KystM9GiaB3T4xqzv2cQ8NIX1N
+f68NOxbG5C2CtrUbx/Meb0eFBAHkwWtU/sLFcksi5AEI2Q0ZPTdjS3+rIUeSHKnk
+/gtzgq/PS2wSxlwtztA/xnS2u+wvwnX3zuSObPiz3UMlKv9lH/f4MBjCAqZiv6Ci
+JLwaHggG+Z7eonlqACKQkZFDRrfSyiQ6yeyYDJErVy+LMu4Ea5mo9tmo0cda/q9N
+7Rj/fpyVQW0/Fc1r3pB17/v1u2oeVwwkHqBPQUe5c/HUtzICWa0Vf0lxnsarOLVM
+nEemORRlOCgxcTDIiYqpUpfQ7iuQ6+Ydyid6JCaDn5ubOLvBjfc6MWylaNKkFZn7
+LgP2DSis8Ci3w+7OGtyDllJ9GvWdmhC6T4iWUds7vFudA4DKE0EiNFXjcdcMbXHN
+GmbWm/EBdGKsWtgABXHJowMn7IBlyp2hBmtVEXr7+pBA/fg3m1UH2QqYQUyfGwIp
+VRDt67xEMg+V55raPzhNqOmeLB+ViD5XRzD7PvmZKrcVXSW5Ag0EV81kPgEQAL17
+eQdH3CEDUgBg5ETli9+99/VP66bEPCKCzGD6f6/OUXbLVBXs03GzDJzBr6b8ysaW
+MR7c0WXCKFf7U5+3QI4s9TBlcsnHxq59343nJh2WsE5cc75WHlfKwse77zT3tujd
+s2MjSBj2324skw9RHSm4mkc7esbN8GCQRAM4gUjwEo76SXvVwuUKYaStNLW8DKLa
+HBxNNclk3v/k7YVmVo07uf/u8vIGeUvql/l2XBlWWhxkgaG+UnRwNcpMh0iuVkrJ
+Yn04FQtOV20EREVITG1tWHMQ4KznqdgdvbEWnFkkbHvj2c6rGylSJShQba9pE1LA
+bNhF6hbEip2nq6uKsQT0Az2/ZWuP83GH4yDHbJCDoT8lf2xcawz+yfd2q9QF8QeI
+ObLCNt09dJNceTbjU3h3BEAvD6gGdqzHDPPfmf0UVji1576PEmheMu25/zbh1mvq
+nsV2YHZsGXVpbBB1PHzrKM1DH3PfqFTFQ5elrvkuxhgRrSKaiWBuaGD7DWMiEIV2
+QKmYutxYS0FJ57lFRaKo0AiVvtDLVh0edjkLvkgufxs6oAPnLt5kuo/na/tgWJjY
+20Eu63dQtIbpPYPrALm2+OMK8eAn3tOg7HsUMXQS5hAqRvH/8aMVoW7qjMldgthk
+5EXTplylkNCCPz9dTqT/g8RBmKxelnRfgj3Cxy4dABEBAAGJAiUEGAEIAA8FAlfN
+ZD4CGwwFCQPCZwAACgkQOmpNuDnqpteDGw/+Pp0s5ItKy6eUpaLZgIjGEUOdvVsj
+/2ui2VGl1BzZLe4ocwHaAouIhAsUmJ7ZciGSW1OSTGQ5Qw8jQ1EDCC2k4RZ2AfYJ
+4S8R2og4jov9s08O6qnTKJfBYpa7fSr38b4o7eecu021orx0pKyiet3ZUs5Luw9U
+3sN/PMelHAkjZMkR35DnL3Tl93ySM/YB9VR85bLBcF3Tf3XZYi8MXyD4B1FNf+BW
+ARyxhQhs/S4Dw4cufC9DKjzyUXwPfLMENUtWcbuxae6kdfSV05EQcZSqmF+dAFMB
+SkMz+3aXIH95d6/hrXhq/eYqWgEJrxZB55ycdUcfn23L7/r10gVMRq7ZkSExSgD5
+DJdeNvFrWOOJa2NDiZ/MCfCSoKG79O+0IQfMeuK1LPsj3AHGTGOWh6OgALKVfgOH
+kwVh/CFP5+aLQTTUU7lSthPd/jwvqwXUFYFvAwdg8VjQSX0kT62ZI5UZrqejEJXD
+puYyBQN5BZUgqwoy3oTy0Ktao3Td9SUDEpFaKbt1YWWmYHLrscVtI6yiKLMIusHU
+XMa+dB7iKGK1BjU2Z2PE4Ow7DXqnaEJwSNElgkhftnT3lIq0qFTDSkeEvfZg3fMt
+IpdIiYngrZo+vxq7NOYQ6RLHtDLXtgYECZrQX6Obl+3jfXFVb8Ethtl1mhpAAi+V
+hC+sXh0NMOq4pxE=
+=Wqdv
+-----END PGP PUBLIC KEY BLOCK-----
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+
 mQENBFlRpEYBCACecX3F5xzF6wzeXiuBAuHq74bVHON7I89U+ROloEWYUYMRNTz2
 l1BkNHWRTTqfmPO7LhMY6g4gOPeQVCwgTGVjI8bn6sJd3SFdeiRvvaFBpmn7SjBd
 s1rkKKJIjeMUl1w8dFnmf22V0PnhSSepmNwmd8RQnl1umCTSihDJydGxixw6ZNhr
diff -pruN 25.04.0-2/po/ar/kdebugsettings.po 25.08.2-0ubuntu1/po/ar/kdebugsettings.po
--- 25.04.0-2/po/ar/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/ar/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
-"PO-Revision-Date: 2025-02-18 21:24+0400\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
+"PO-Revision-Date: 2025-08-03 23:13+0400\n"
 "Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
 "Language-Team: ar\n"
 "Language: ar\n"
@@ -16,36 +16,36 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "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"
+"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
 "X-Generator: Lokalize 23.08.5\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "إعدادات تنقيح ك"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "اضبط إعدادات التّنقيح"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(ج) 2015-%1 مؤلفو إعدادات تنقيح ك"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "لوران مونتال"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
-msgstr "المصين"
+msgstr "الصائن"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -53,30 +53,30 @@ msgstr ""
 "مكّن وضع اختبار QStandardPaths، أي إعدادات القراءة/الكتابة المستخدمة بواسطة "
 "اختبارات الوحدات"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "فعّل التنقيح الكامل لجميع الوحدات."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "عطّل التنقيح الكامل لجميع الوحدات النمطية."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "غيّر وضع التنقيح كوحدة تحكم (في وحدة التحكم)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr "حدد اسم فئة التسجيل التي تريد تغيير وضع التنقيح فيها (في وحدة التحكم)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "من المستحيل تغيير وضع التنقيح"
@@ -124,7 +124,7 @@ msgstr "المعرف: %1"
 #: src/core/loggingcategory.cpp:119
 #, kde-format
 msgid "Default Severity: %1"
-msgstr "الخطورة الافتراضية: %1"
+msgstr "الخطورة المبدئية: %1"
 
 #: src/core/loggingcategory.cpp:128
 #, kde-format
@@ -156,7 +156,7 @@ msgstr "رسائل الحرج"
 msgid "No Debug Messages"
 msgstr "لا رسائل تنقيح"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(ج) %1 مؤلفو إعدادات تنقيح ك"
@@ -186,7 +186,7 @@ msgstr "حرّر القاعدة المخ
 #, kde-format
 msgctxt "@option:check"
 msgid "Enable"
-msgstr "فعّل"
+msgstr "مكّن"
 
 #: src/widgets/configurecustomsettingwidget.cpp:28
 #, kde-format
@@ -212,8 +212,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "حرر القاعدة"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
@@ -224,7 +224,7 @@ msgstr[3] "أزل..."
 msgstr[4] "أزل..."
 msgstr[5] "أزل..."
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -353,7 +353,7 @@ msgstr "أزل المجموعة"
 #, kde-format
 msgctxt "@action:button"
 msgid "Enable All Debug"
-msgstr "فعّل كل التّنقيحات"
+msgstr "مكّن كل التّنقيحات"
 
 #: src/widgets/kdeapplicationdebugsettingpage.cpp:24
 #, kde-format
@@ -382,7 +382,7 @@ msgstr "قواعد مخصّصة"
 msgid "Rules Settings With Environment Variable"
 msgstr "إعدادات القواعد مع متغير البيئة"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "احفظ ك‍…"
@@ -398,65 +398,65 @@ msgstr "أدرج…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "تعذّر فتح '%1'. فضلًا تحقّق منه."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "أدرج فئات"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "فئات الملفات"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "أدرجت الفئات من الملف '%1'."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "أدرج فئات"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "اسم المجموعة"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "الاسم:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr ""
-"استُخدم <b>'%1'</b> بالفعل كاسم للمجموعة.\n"
+"استُخدم <b>'%1'</b> فعلًا كاسم للمجموعة.\n"
 "يرجى الحفظ باسم آخر."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "لا يمكن الحفظ باسم فارغ. يرجى استخدام اسم جديد."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "احفظ ك‍"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "ملف إعدادات تنقيح ك (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -484,13 +484,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "حمّل من ملفّ…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "احفظ كملفّ…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/ast/kdebugsettings.po 25.08.2-0ubuntu1/po/ast/kdebugsettings.po
--- 25.04.0-2/po/ast/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/ast/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2023-11-07 21:26+0100\n"
 "Last-Translator: Enol P. <enolp@softastur.org>\n"
 "Language-Team: \n"
@@ -17,62 +17,62 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 23.08.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr ""
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr ""
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr ""
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr ""
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr ""
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr ""
@@ -152,7 +152,7 @@ msgstr ""
 msgid "No Debug Messages"
 msgstr ""
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr ""
@@ -206,15 +206,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr ""
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -366,7 +366,7 @@ msgstr ""
 msgid "Rules Settings With Environment Variable"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr ""
@@ -382,63 +382,63 @@ msgstr ""
 msgid "'%1' cannot be opened. Please verify it."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 #| msgid "KDebugSettings"
 msgctxt "@title:window"
@@ -467,13 +467,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr ""
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr ""
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/az/kdebugsettings.po 25.08.2-0ubuntu1/po/az/kdebugsettings.po
--- 25.04.0-2/po/az/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/az/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2023-06-30 11:52+0400\n"
 "Last-Translator: Kheyyam <xxmn77@gmail.com>\n"
 "Language-Team: Azerbaijani <kde-i18n-doc@kde.org>\n"
@@ -17,34 +17,34 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 23.04.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Sazlama ayarlarını tənzimləmək"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 kdebugsettings müəllifləri"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, fuzzy, kde-format
 #| msgid "Laurent Montel"
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Müşayətçi"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,22 +52,22 @@ msgstr ""
 "QStandardPaths sınaq rejimini aktiv etmək, məs., unittests tərəfindən "
 "istifadə olunan oxuma/yazma ayarları"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Bütün modullar üçün tam sazlamanı aktivləşdirmək"
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Bütün modullar üçün tam sazlamanı söndürmək"
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Sazlama rejimini konsoldan dəyişmək"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -75,9 +75,9 @@ msgstr ""
 "Konsoldan dəyişdiriləcək sazlama rejimi jurnalının kateqoriyasının adını "
 "göstərin"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Sazlama rejimini dəyişdirmək mümkün deyil"
@@ -157,7 +157,7 @@ msgstr "Kritik ismarıclar"
 msgid "No Debug Messages"
 msgstr "Sazlama ismarıcları yoxdur"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 kdebugsettings müəllifləri"
@@ -221,15 +221,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Qaydanı dəyişmək"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Qaydanı silin"
 msgstr[1] "Qaydaları silin"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -393,7 +393,7 @@ msgstr "İstifadəçi Qaydaları"
 msgid "Rules Settings With Environment Variable"
 msgstr "Mühit dəyişəni ilə qaydaların ayarlanması"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgid "Save As…"
@@ -411,41 +411,41 @@ msgstr "Daxil etmək..."
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "\"%1\" açıla bilmir. Lütfən, icazə verin."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Kateqoriyalar daxil etmək"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Kateqoriya faylları"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "\"%1\" faylından kateqoriyalar əlavə edildi."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, fuzzy, kde-format
 #| msgid "Insert Categories"
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Kateqoriyalar daxil etmək"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, fuzzy, kde-format
 #| msgid "Group Name"
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Qrup adı"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Adı:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -454,25 +454,25 @@ msgstr ""
 "<b>\"%1\"</b> artıq qrup adı kimi istifadə olunur.\n"
 "Lütfən başqa adla saxlayın."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Ad boş saxlanıla bilməz. Yenisini istifadə edin."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Belə Saxlayın"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings tətbiqi faylı (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 #| msgid "Load Debug Settings Files"
 msgctxt "@title:window"
@@ -503,14 +503,14 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Fayldan yükləmək..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, fuzzy, kde-format
 #| msgid "Save As File..."
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Fayl kimi saxlamaq..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, fuzzy, kde-format
 #| msgid "Save As Group..."
 msgctxt "@action"
diff -pruN 25.04.0-2/po/ca/kdebugsettings.po 25.08.2-0ubuntu1/po/ca/kdebugsettings.po
--- 25.04.0-2/po/ca/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/ca/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-30 10:06+0200\n"
 "Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -21,33 +21,33 @@ msgstr ""
 "X-Accelerator-Marker: &\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configura els paràmetres de la depuració"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1, Els autors del kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Mantenidor"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -55,22 +55,22 @@ msgstr ""
 "Activa el mode de prova «QStandardPaths», és a dir, la configuració de "
 "lectura/escriptura usada per a les proves unitàries"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Activa la depuració completa per a tots els mòduls."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Desactiva la depuració completa per a tots els mòduls."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Canvia el mode de depuració com a consola (a la consola)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -78,9 +78,9 @@ msgstr ""
 "Especifica el nom de la categoria de registre que es vol canviar en el mode "
 "depuració (a la consola)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Impossible canviar el mode de depuració"
@@ -160,7 +160,7 @@ msgstr "Missatges crítics"
 msgid "No Debug Messages"
 msgstr "No missatges de depuració"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1, els autors del «kdebugsettings»"
@@ -216,15 +216,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Edita la regla"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Elimina la regla"
 msgstr[1] "Elimina les regles"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -378,7 +378,7 @@ msgstr "Regles personalitzades"
 msgid "Rules Settings With Environment Variable"
 msgstr "Paràmetres de regles amb variables d'entorn"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Desa com a…"
@@ -394,39 +394,39 @@ msgstr "Insereix…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "No s'ha pogut obrir «%1». Si us plau, verifiqueu-ho."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Insereix categories"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Fitxers de categories"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Categories des del fitxer inserit «%1»."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Inserció de categories"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Nom del grup"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nom:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -435,24 +435,24 @@ msgstr ""
 "<b>«%1»</b> ja s'està emprant com a un nom de grup.\n"
 "Si us plau, deseu-lo amb un altre nom."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "No es pot desar com a nom buit. Empreu-ne un de nou."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Desa com a"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Fitxer del KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -480,14 +480,32 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Carrega des d'un fitxer…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Desa com a fitxer…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
 msgstr "Desa com a grup…"
+
+#~ msgid "Edit..."
+#~ msgstr "Edita..."
+
+#~ msgid "Add..."
+#~ msgstr "Afegeix..."
+
+#~ msgid "Rename Group..."
+#~ msgstr "Reanomena un grup..."
+
+#~ msgid "Export Group..."
+#~ msgstr "Exporta un grup..."
+
+#~ msgid "Save As..."
+#~ msgstr "Desa com a..."
+
+#~ msgid "Load..."
+#~ msgstr "Carrega..."
diff -pruN 25.04.0-2/po/ca@valencia/kdebugsettings.po 25.08.2-0ubuntu1/po/ca@valencia/kdebugsettings.po
--- 25.04.0-2/po/ca@valencia/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/ca@valencia/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-30 10:06+0200\n"
 "Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -21,33 +21,33 @@ msgstr ""
 "X-Accelerator-Marker: &\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configura els paràmetres de la depuració"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1, Els autors de kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Mantenidor"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -55,22 +55,22 @@ msgstr ""
 "Activa el mode de prova «QStandardPaths», és a dir, la configuració de "
 "lectura/escriptura utilitzada per a les proves unitàries"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Activa la depuració completa per a tots els mòduls."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Desactiva la depuració completa per a tots els mòduls."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Canvia el mode de depuració com a consola (en la consola)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -78,9 +78,9 @@ msgstr ""
 "Especifica el nom de la categoria de registre que es vol canviar en el mode "
 "depuració (en la consola)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Impossible canviar el mode de depuració"
@@ -160,7 +160,7 @@ msgstr "Missatges crítics"
 msgid "No Debug Messages"
 msgstr "No missatges de depuració"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1, els autors de «kdebugsettings»"
@@ -216,15 +216,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Edita la regla"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Elimina la regla"
 msgstr[1] "Elimina les regles"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -378,7 +378,7 @@ msgstr "Regles personalitzades"
 msgid "Rules Settings With Environment Variable"
 msgstr "Paràmetres de regles amb variables d'entorn"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Anomena i guarda…"
@@ -394,39 +394,39 @@ msgstr "Inserix…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "No s'ha pogut obrir «%1». Verifiqueu-ho."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Inserix categories"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Fitxers de categories"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Categories des del fitxer inserit «%1»."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Inserció de categories"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Nom del grup"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nom:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -435,24 +435,24 @@ msgstr ""
 "<b>«%1»</b> ja s'està emprant com a un nom de grup.\n"
 "Guardeu-lo amb un altre nom."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "No es pot guardar com a nom buit. Utilitzeu-ne un de nou."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Anomena i guarda"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Fitxer de KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -480,13 +480,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Carrega des d'un fitxer…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Anomena i guarda com a fitxer…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/cs/kdebugsettings.po 25.08.2-0ubuntu1/po/cs/kdebugsettings.po
--- 25.04.0-2/po/cs/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/cs/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-08-08 10:08+0200\n"
 "Last-Translator: Vit Pelcak <vit@pelcak.org>\n"
 "Language-Team: Czech <kde-i18n-doc@kde.org>\n"
@@ -18,62 +18,62 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "Nastavení KDebug"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Nastavit možnosti ladění"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 autoři kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Správce"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr ""
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Aktivovat plné ladění pro všechny moduly."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Deaktivovat plné ladění pro všechny moduly."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Změnit režim ladění jako konzole (v konzoli)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Nelze změnit režim ladění"
@@ -153,7 +153,7 @@ msgstr "Kritické zprávy"
 msgid "No Debug Messages"
 msgstr "Žádné ladicí zprávy"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 autoři kdebugsettings"
@@ -207,8 +207,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Upravit pravidlo"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
@@ -216,7 +216,7 @@ msgstr[0] "Odstranit pravidlo"
 msgstr[1] "Odstranit pravidla"
 msgstr[2] "Odstranit pravidla"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -369,7 +369,7 @@ msgstr "Vlastní pravidla"
 msgid "Rules Settings With Environment Variable"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Uložit jako…"
@@ -385,39 +385,39 @@ msgstr "Vložit…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Vložit kategorie"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Soubory kategorií "
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Vložit kategorie"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Název skupiny"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Název:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -426,24 +426,24 @@ msgstr ""
 "<b>'%1'</b> je již použito pro název skupiny.\n"
 "Prosím, použijte jiný název."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Nelze uložit s prázdným názvem. Prosím použijte nový."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Uložit jako"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -471,13 +471,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Načíst ze souboru…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Uložit jako soubor…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/da/kdebugsettings.po 25.08.2-0ubuntu1/po/da/kdebugsettings.po
--- 25.04.0-2/po/da/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/da/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-10-29 10:41+0100\n"
 "Last-Translator: rasmus rosendahl-kaa <rasmus@rosendahl-kaa.name>\n"
 "Language-Team: Danish <kde-i18n-doc@kde.org>\n"
@@ -18,33 +18,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 24.08.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Indstil fejlsøgningsindstillinger"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 kdebugsettings-forfattere"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Vedligeholder"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,22 +52,22 @@ msgstr ""
 "Aktivér QStandardPaths testtilstand, dvs. læse-/skrive-indstillinger som "
 "bruges af unittests"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Aktivér fuld fejlsøgning for alle moduler."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Deaktivér fuld fejlsøgning for alle moduler."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Skift fejlsøgningstilstand som konsol (i konsol)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -75,9 +75,9 @@ msgstr ""
 "Angiv navn på logningskategori som du vil skifte fejlsøgningstilstand for (i "
 "konsol)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Kan ikke skifte fejlsøgningstilstand"
@@ -157,7 +157,7 @@ msgstr "Kritiske meddelelser"
 msgid "No Debug Messages"
 msgstr "Ingen fejlsøgningsmeddelelser"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 kdebugsettings-forfattere"
@@ -213,15 +213,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Redigér regel"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Fjern regel"
 msgstr[1] "Fjern regler"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -376,7 +376,7 @@ msgstr "Tilpassede regler"
 msgid "Rules Settings With Environment Variable"
 msgstr "Regelindstillinger med miljøvariabel"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Gem som…"
@@ -392,39 +392,39 @@ msgstr "Indsæt…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1' kan ikke åbnes. Bekræft den venligst."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Indsæt kategorier"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Kategorifiler"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Kategorier fra fil '%1' indsat."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Indsæt kategorier"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Gruppenavn"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Navn:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -433,24 +433,24 @@ msgstr ""
 "<b>'%1'</b> bruges allerede som et gruppenavn.\n"
 "Gem venligst som et andet navn."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Kan ikke gemme som tomt navn. Brug venligst et nyt et."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Gem som"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings-fil (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -478,13 +478,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Indlæs fra fil…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Gem som fil…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/de/kdebugsettings.po 25.08.2-0ubuntu1/po/de/kdebugsettings.po
--- 25.04.0-2/po/de/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/de/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-08-28 21:39+0200\n"
 "Last-Translator: Johannes Obermayr <johannesobermayr@gmx.de>\n"
 "Language-Team: German <kde-i18n-de@kde.org>\n"
@@ -16,33 +16,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 24.11.70\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Einstellungen für Fehleranalyse"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "Copyright 2015-%1 kdebugsettings-Autoren"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Betreuer"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -50,22 +50,22 @@ msgstr ""
 "Aktiviert den QStandardPaths-Testmodus, d. h. Einstellungen für Lesen/"
 "Schreiben die von Unittests verwendet werden"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Vollständiges Debuggen für alle Module aktivieren."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Vollständiges Debuggen für alle Module deaktivieren."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Ändern des Debug-Modus auf Konsole (im Terminal)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -73,9 +73,9 @@ msgstr ""
 "Geben Sie den Namen der Protokollkategorie ein, für die der Debug-Modus "
 "geändert werden soll (im Terminal)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Debug-Modus kann nicht geändert werden"
@@ -155,7 +155,7 @@ msgstr "Kritische Meldungen"
 msgid "No Debug Messages"
 msgstr "Keine Debug-Meldungen"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "Copyright %1 kdebugsettings-Autoren"
@@ -211,15 +211,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Regel bearbeiten"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Regel entfernen"
 msgstr[1] "Regeln entfernen"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -374,7 +374,7 @@ msgstr "Benutzerdefinierte Regeln"
 msgid "Rules Settings With Environment Variable"
 msgstr "Regeleinstellung mit Umgebungsvariablen"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Speichern unter …"
@@ -390,39 +390,39 @@ msgstr "Einfügen …"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "„%1“ kann nicht geöffnet werden. Bitte überprüfen Sie es."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Kategorien einfügen"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Kategorie-Dateien"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Kategorien aus Datei „%1“ wurden eingefügt."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Kategorien einfügen"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Gruppenname"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Name:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -431,24 +431,24 @@ msgstr ""
 "<b>%1</b> wird bereits als Gruppenname verwendet.\n"
 "Bitte speichern Sie unter einem anderen Namen."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Der Name darf nicht leer sein Bitte geben Sie einen neuen Namen ein."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Speichern unter"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings-Datei (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -476,13 +476,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Aus Datei laden …"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "In Datei speichern …"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/el/kdebugsettings.po 25.08.2-0ubuntu1/po/el/kdebugsettings.po
--- 25.04.0-2/po/el/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/el/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2023-01-06 17:46+0200\n"
 "Last-Translator: Stelios <sstavra@gmail.com>\n"
 "Language-Team: Greek <kde-i18n-el@kde.org>\n"
@@ -18,33 +18,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 21.12.3\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KdebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Διαμόρφωση ρυθμίσεων αποσφαλμάτωσης"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 οι συγγραφείς του kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Συντηρητής"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,22 +52,22 @@ msgstr ""
 "Ενεργοποίηση δοκιμαστικής λειτουργίας QStandardPaths, δηλ. ρυθμίσεις "
 "ανάγνωσης/εγγραφής σε unittests"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Να ενεργοποιηθεί η πλήρης αποσφαλμάτωση για όλα τα αρθρώματα."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Να απενεργοποιηθεί η πλήρης αποσφαλμάτωση για όλα τα αρθρώματα."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Αλλαγή λειτουργίας αποσφαλμάτωσης από την κονσόλα (στην κονσόλα)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -75,9 +75,9 @@ msgstr ""
 "Καθορισμός ονόματος κατηγορίας καταγραφής για το οποίο θέλετε να αλλάξετε τη "
 "λειτουργία αποσφαλμάτωσης (στην κονσόλα)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Αδυναμία αλλαγής της λειτουργίας αποσφαλμάτωσης"
@@ -157,7 +157,7 @@ msgstr "Κρίσιμα μηνύματα"
 msgid "No Debug Messages"
 msgstr "Χωρίς μηνύματα αποσφαλμάτωσης"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, fuzzy, kde-format
 #| msgid "(c) 2015-%1 kdebugsettings authors"
 msgid "(c) %1 kdebugsettings authors"
@@ -217,15 +217,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Επεξεργασία κανόνα"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Αφαίρεση κανόνα"
 msgstr[1] "Αφαίρεση κανόνων"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -383,7 +383,7 @@ msgstr "Προσαρμοσμένο κα
 msgid "Rules Settings With Environment Variable"
 msgstr "Ρυθμίσεις κανόνων με Μεταβλητή Περιβάλλοντος"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Αποθήκευση ως…"
@@ -399,39 +399,39 @@ msgstr "Εισαγωγή…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1' δεν μπορεί να ανοιχτεί.Παρακαλώ επαληθεύστε το."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Εισαγωγή Κατηγοριών"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Αρχεία Κατηγοριών"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Οι κατηγορίες από το αρχείο '%1' εισήχθησαν."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Εισαγωγή Κατηγοριών"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Όνομα ομάδας"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Όνομα:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, fuzzy, kde-format
 #| msgid ""
 #| "'%1' is already used as a group name.\n"
@@ -443,24 +443,24 @@ msgstr ""
 "Το '%1' χρησιμοποιείται ήδη ως όνομα ομάδας.\n"
 "Αποθηκεύστε με άλλο όνομα."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Αδυναμία αποθήκευσης με κενό όνομα. Χρησιμοποιήστε ένα νέο."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Αποθήκευση ως"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Αρχείο KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -488,13 +488,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Φόρτωση από αρχείο…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Αποθήκευση ως αρχείο…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/en_GB/kdebugsettings.po 25.08.2-0ubuntu1/po/en_GB/kdebugsettings.po
--- 25.04.0-2/po/en_GB/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/en_GB/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-08-03 12:48+0100\n"
 "Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
 "Language-Team: British English\n"
@@ -17,64 +17,64 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configure debug settings"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 kdebugsettings authors"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Maintainer"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unit tests"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Activate full debug for all modules."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Disable full debug for all modules."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Change debug mode as console (in console)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 "Specify logging category name that you want to change debug mode (in console)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Impossible to change debug mode"
@@ -154,7 +154,7 @@ msgstr "Critical Messages"
 msgid "No Debug Messages"
 msgstr "No Debug Messages"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 kdebugsettings authors"
@@ -210,15 +210,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Edit Rule"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Remove Rule"
 msgstr[1] "Remove Rule"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -373,7 +373,7 @@ msgstr "Custom Rules"
 msgid "Rules Settings With Environment Variable"
 msgstr "Rules Settings With Environment Variable"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Save As…"
@@ -389,39 +389,39 @@ msgstr "Insert…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1' cannot be opened. Please verify it."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Insert Categories"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Categories Files"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Categories from file '%1' inserted."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Insert Categories"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Group Name"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Name:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -430,24 +430,24 @@ msgstr ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Can not save as empty name. Please use a new one."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Save As"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings File (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -475,13 +475,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Load From File…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Save As File…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/eo/kdebugsettings.po 25.08.2-0ubuntu1/po/eo/kdebugsettings.po
--- 25.04.0-2/po/eo/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/eo/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-30 21:06+0200\n"
 "Last-Translator: Oliver Kellogg <olivermkellogg@gmail.com>\n"
 "Language-Team: Esperanto <kde-i18n-eo@kde.org>\n"
@@ -18,33 +18,33 @@ msgstr ""
 "X-Generator: translate-po (https://github.com/zcribe/translate-po)\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Agordi sencimigajn agordojn"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 aŭtoroj de kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Prizorganto"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,22 +52,22 @@ msgstr ""
 "Ebligi QStandardPaths-testreĝimon, t.e. legi/skribi agordojn uzatajn de "
 "unutestoj"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Aktivigi plenan sencimigon por ĉiuj moduloj."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Malebligi plenan sencimigon por ĉiuj moduloj."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Ŝanĝi sencimigan reĝimon kiel konzolon (en konzolo)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -75,9 +75,9 @@ msgstr ""
 "Specifu la nomon de la kategorio de protokolo, kiun vi volas ŝanĝi "
 "sencimigan reĝimon (en konzolo)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Neeble ŝanĝi sencimigan reĝimon"
@@ -157,7 +157,7 @@ msgstr "Kritikaj Mesaĝoj"
 msgid "No Debug Messages"
 msgstr "Neniuj Sencimigaj Mesaĝoj"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 aŭtoroj de kdebugsettings"
@@ -213,15 +213,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Redakti Regulon"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Forigi Regulon"
 msgstr[1] "Forigi Regulojn"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -376,7 +376,7 @@ msgstr "Propraj Reguloj"
 msgid "Rules Settings With Environment Variable"
 msgstr "Reguloj Agordoj Kun Media Variablo"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Konservi kiel…"
@@ -392,39 +392,39 @@ msgstr "Enmeti…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1' ne povas esti malfermita. Bonvolu konfirmi ĝin."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Enmeti Kategoriojn"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Kategorioj Dosieroj"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Kategorioj de dosiero '%1' enmetitaj."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Enmeti Kategoriojn"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Grupa Nomo"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nomo:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -433,24 +433,24 @@ msgstr ""
 "<b>'%1'</b> jam estas uzata kiel grupnomo.\n"
 "Bonvolu konservi kiel alia nomo."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Ne povas konservi kiel malplena nomo. Bonvolu uzi novan."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Konservi kiel"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Dosiero de KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -478,13 +478,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Ŝargi El Dosiero…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Konservi Kiel Dosiero…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/es/kdebugsettings.po 25.08.2-0ubuntu1/po/es/kdebugsettings.po
--- 25.04.0-2/po/es/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/es/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -1,15 +1,15 @@
 # Spanish translations for kdebugsettings.po package.
-# Copyright (C) 2015 This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
-#
+# Copyright (C) 2015-2025 This file is copyright:
+# This file is distributed under the same license as the kdebugsettings package.
 # Automatically generated, 2015.
-# SPDX-FileCopyrightText: 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Eloy Cuadra <ecuadra@eloihr.net>
+#
+# SPDX-FileCopyrightText: 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025 Eloy Cuadra <ecuadra@eloihr.net>
 msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
-"PO-Revision-Date: 2024-07-30 16:27+0200\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
+"PO-Revision-Date: 2025-05-12 14:10+0100\n"
 "Last-Translator: Eloy Cuadra <ecuadra@eloihr.net>\n"
 "Language-Team: Spanish <kde-l10n-es@kde.org>\n"
 "Language: es\n"
@@ -19,33 +19,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configurar las preferencias de depuración"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015-%1 los autores de kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Responsable"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -53,22 +53,22 @@ msgstr ""
 "Activar el modo de pruebas de QStandardPaths (es decir, preferencias de "
 "lectura/escritura usadas por la pruebas unitarias)"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Activar la depuración completa para todos los módulos."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Desactivar la depuración completa para todos los módulos."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Cambiar el modo de depuración como en consola (en la consola)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -76,9 +76,9 @@ msgstr ""
 "Indique el nombre de la categoría de registro a la que quiera cambiar el "
 "modo de depuración (en la consola)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "No se ha podido cambiar el modo de depuración"
@@ -158,7 +158,7 @@ msgstr "Mensajes de errores críticos"
 msgid "No Debug Messages"
 msgstr "Sin mensajes de depuración"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "© %1 los autores de kdebugsettings"
@@ -206,7 +206,7 @@ msgstr "Tipo:"
 #, kde-format
 msgctxt "@action"
 msgid "Add Rule…"
-msgstr "Añadir regla..."
+msgstr "Añadir regla…"
 
 #: src/widgets/customdebuglistview.cpp:46
 #, kde-format
@@ -214,15 +214,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Editar regla"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Eliminar regla"
 msgstr[1] "Eliminar reglas"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -233,26 +233,26 @@ msgstr[1] "¿Desea eliminar estas %1 reg
 #, kde-format
 msgctxt "@action:button"
 msgid "Edit…"
-msgstr "Editar..."
+msgstr "Editar…"
 
 #: src/widgets/customdebugsettingspage.cpp:24
 #, kde-format
 msgctxt "@action:button"
 msgid "Remove…"
-msgstr "Eliminar..."
+msgstr "Eliminar…"
 
 #: src/widgets/customdebugsettingspage.cpp:40
 #: src/widgets/kdeapplicationdebugsettingpage.cpp:33
 #, kde-format
 msgctxt "@info:placeholder"
 msgid "Search…"
-msgstr "Buscar..."
+msgstr "Buscar…"
 
 #: src/widgets/customdebugsettingspage.cpp:48
 #, kde-format
 msgctxt "@action:button"
 msgid "Add…"
-msgstr "Añadir..."
+msgstr "Añadir…"
 
 #: src/widgets/environmentplaintextedit.cpp:42
 #, kde-format
@@ -319,13 +319,13 @@ msgstr "No se ha podido cambiar el nombr
 #, kde-format
 msgctxt "@action"
 msgid "Rename Group…"
-msgstr "Cambiar nombre del grupo..."
+msgstr "Cambiar nombre del grupo…"
 
 #: src/widgets/groupmanagementwidget.cpp:92
 #, kde-format
 msgctxt "@action"
 msgid "Export Group…"
-msgstr "Exportar grupo..."
+msgstr "Exportar grupo…"
 
 #: src/widgets/groupmanagementwidget.cpp:97
 #, kde-format
@@ -377,55 +377,55 @@ msgstr "Reglas personalizadas"
 msgid "Rules Settings With Environment Variable"
 msgstr "Preferencias de las reglas con variables de entorno"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
-msgstr "Guardar como..."
+msgstr "Guardar como…"
 
 #: src/widgets/kdebugsettingsdialog.cpp:89
 #, kde-format
 msgctxt "@action:button"
 msgid "Insert…"
-msgstr "Insertar..."
+msgstr "Insertar…"
 
 #: src/widgets/kdebugsettingsdialog.cpp:162
 #, kde-format
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "No se puede abrir «%1». Compruébelo."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Insertar categorías"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Archivos de categorías"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Categorías del archivo «%1» insertadas."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Insertar categorías"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Nombre del grupo"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nombre:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -434,24 +434,24 @@ msgstr ""
 "<b>«%1»</b> ya se está usando como nombre de grupo.\n"
 "Escoja otro nombre."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "No se puede guardar con un nombre vacío. Use uno nuevo."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Guardar como"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Archivo de KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -471,55 +471,22 @@ msgstr "Gestión del grupo"
 #: src/widgets/loadtoolbutton.cpp:19
 #, kde-format
 msgid "Load…"
-msgstr "Cargar..."
+msgstr "Cargar…"
 
 #: src/widgets/loadtoolbutton.cpp:23
 #, kde-format
 msgctxt "@action"
 msgid "Load From File…"
-msgstr "Cargar de archivo..."
+msgstr "Cargar de archivo…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
-msgstr "Guardar como archivo..."
+msgstr "Guardar como archivo…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
-msgstr "Guardar como grupo..."
-
-#~ msgid "Edit..."
-#~ msgstr "Editar..."
-
-#~ msgid "Add..."
-#~ msgstr "Añadir..."
-
-#~ msgid "Rename Group..."
-#~ msgstr "Cambiar nombre del grupo..."
-
-#~ msgid "Export Group..."
-#~ msgstr "Exportar grupo..."
-
-#~ msgid "Save As..."
-#~ msgstr "Guardar como..."
-
-#~ msgid "Load..."
-#~ msgstr "Cargar..."
-
-#~ msgid "Rules:"
-#~ msgstr "Reglas:"
-
-#~ msgid "Rename Groups"
-#~ msgstr "Cambiar nombre de los grupos"
-
-#~ msgid "All"
-#~ msgstr "Todo"
-
-#~ msgid "Select All"
-#~ msgstr "Seleccionar todo"
-
-#~ msgid "Deselect All"
-#~ msgstr "Desmarcar todo"
+msgstr "Guardar como grupo…"
diff -pruN 25.04.0-2/po/et/kdebugsettings.po 25.08.2-0ubuntu1/po/et/kdebugsettings.po
--- 25.04.0-2/po/et/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/et/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2020-05-04 11:03+0300\n"
 "Last-Translator: Marek Laane <qiilaq69@gmail.com>\n"
 "Language-Team: Estonian <kde-et@lists.linux.ee>\n"
@@ -17,35 +17,35 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 19.12.3\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Silumisseadistuste seadistamine"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2020 kdebugsettings authors"
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-2020: kdebugsettingsi autorid"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, fuzzy, kde-format
 #| msgid "Laurent Montel"
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Hooldaja"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -53,22 +53,22 @@ msgstr ""
 "QStandardsPaths'i testrežiimi lubamine, s.t. ühiktestide seadistuste "
 "lugemine/kirjutamine"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Täieliku silumise aktiveerimine kõigis moodulites."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Täieliku silumise keelamine kõigis moodulites."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Silumisrežiimiks määratakse konsool (konsoolis)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -76,9 +76,9 @@ msgstr ""
 "Logimiskategooria määramine, milliseks soovid muuta silumisrežiimi "
 "(konsoolis)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Silumisrežiimi ei saa muuta"
@@ -158,7 +158,7 @@ msgstr "Kriitilised teated"
 msgid "No Debug Messages"
 msgstr "Silumisteated puuduvad"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2020 kdebugsettings authors"
 msgid "(c) %1 kdebugsettings authors"
@@ -225,8 +225,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Kohandatud reegli muutmine"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, fuzzy, kde-format
 #| msgid "Remove..."
 msgid "Remove Rule"
@@ -234,7 +234,7 @@ msgid_plural "Remove Rules"
 msgstr[0] "Eemalda..."
 msgstr[1] "Eemalda..."
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -402,7 +402,7 @@ msgstr "Kohandatud reeglid"
 msgid "Rules Settings With Environment Variable"
 msgstr "Reeglite seadistused keskkonnamuutujaga"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgid "Save As…"
@@ -420,65 +420,65 @@ msgstr "Lisa..."
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "\"%1\" avamine nurjus. Palun kontrolli seda."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Kategooriate lisamine"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Kategooriafailid"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, fuzzy, kde-format
 #| msgid "Insert Categories"
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Kategooriate lisamine"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Salvestamine"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettingsi fail (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 #| msgid "Load Debug Settings Files"
 msgctxt "@title:window"
@@ -510,14 +510,14 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Salvesta kui..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Salvesta kui..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
diff -pruN 25.04.0-2/po/eu/kdebugsettings.po 25.08.2-0ubuntu1/po/eu/kdebugsettings.po
--- 25.04.0-2/po/eu/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/eu/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-08-06 01:10+0200\n"
 "Last-Translator: Iñigo Salvador Azurmendi <xalba@ni.eus>\n"
 "Language-Team: Basque <kde-i18n-eu@kde.org>\n"
@@ -20,33 +20,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Konfiguratu arazteko ezarpenak"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 kdebugsettings-en egileak"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Mantentzailea"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -54,22 +54,22 @@ msgstr ""
 "Gaitu «QStandardPaths» proba-modua, adib. «unittests»ek erabilitako  "
 "irakurri/idatzi ezarpenak"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Gaitu arazte osoa modulu guztietarako."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Ezgaitu arazte osoa modulu guztietarako."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Aldatu arazte modua kontsola (kontsolan)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -77,9 +77,9 @@ msgstr ""
 "Zehaztu arazte modua aldatu nahi duzun egunkariratze kategoriaren izena "
 "(kontsolan)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Ezinezkoa da arazte modua aldatzea"
@@ -159,7 +159,7 @@ msgstr "Mezu larriak"
 msgid "No Debug Messages"
 msgstr "Arazte mezurik ez"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 «kdebugsettings»en egileak"
@@ -215,15 +215,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Editatu araua"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Kendu araua"
 msgstr[1] "Kendu arauak"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -377,7 +377,7 @@ msgstr "Arau pertsonalizatuak"
 msgid "Rules Settings With Environment Variable"
 msgstr "Arau ezarpenak ingurune-aldagaiekin"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Gorde honela..."
@@ -393,39 +393,39 @@ msgstr "Txertatu..."
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1' ezin da ireki. Egiaztatu ezazu."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Txertatu kategoriak"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Kategoria fitxategiak"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "'%1' fitxategiko kategoriak sartu dira."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Txertatu kategoriak"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Taldearen izena"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Izena:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -434,24 +434,24 @@ msgstr ""
 "<b>%1</b> talde-izen gisa erabilita dago.\n"
 "Mesedez, gorde beste izen batekin."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Ezin da gorde izen huts gisa. Mesedez, erabili izen berri bat."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Gorde honela"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings fitxategia (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -479,13 +479,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Zamatu fitxategitik..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Gorde ... fitxategi gisa"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/fi/kdebugsettings.po 25.08.2-0ubuntu1/po/fi/kdebugsettings.po
--- 25.04.0-2/po/fi/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/fi/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-10-28 20:43+0200\n"
 "Last-Translator: Tommi Nieminen <translator@legisign.org>\n"
 "Language-Team: Finnish <kde-i18n-doc@kde.org>\n"
@@ -19,33 +19,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 23.08.5\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Muokkaa virheenpaikannusasetuksia"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015–%1 kdebugsettingsin tekijät"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Ylläpitäjä"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -53,22 +53,22 @@ msgstr ""
 "Käytä QStandardPaths-testitilaa, ts. yksikkötestien käyttämät luku- ja "
 "kirjoitusasetukset"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Aktivoi kaikille moduuleille täysi virheenpaikannus."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Poista virheenpaikannus käytöstä kaikilta moduuleilta."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Vaihda virheenpaikannustilaksi konsoli (konsolissa)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -76,9 +76,9 @@ msgstr ""
 "Määritä lokiluokan nimi, jolle haluat vaihtaa virheenpaikannustilaa "
 "(konsolissa)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Mahdotonta vaihtaa virheenpaikannustilaa"
@@ -158,7 +158,7 @@ msgstr "Kriittiset viestit"
 msgid "No Debug Messages"
 msgstr "Ei virheenpaikannusviestejä"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "© %1 kdebugsettingsin tekijät"
@@ -214,15 +214,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Muokkaa sääntöä"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Poista sääntö"
 msgstr[1] "Poista säännöt"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -377,7 +377,7 @@ msgstr "Omat säännöt"
 msgid "Rules Settings With Environment Variable"
 msgstr "Ympäristömuuttujassa määritetyt säännöt"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Tallenna nimellä…"
@@ -393,39 +393,39 @@ msgstr "Lisää…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "”%1” ei voitu avata. Tarkista se."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Lisää luokkia"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Luokkatiedostot"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Tiedoston ”%1” luokat lisätty."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Lisää luokkia"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Ryhmän nimi"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nimi:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -434,24 +434,24 @@ msgstr ""
 "<b>%1</b> on jo käytössä ryhmän nimenä.\n"
 "Tallenna toisella nimellä."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Tyhjälle nimelle ei voi tallentaa. Käytä uutta nimeä."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Tallenna nimellä"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings-tiedosto (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -479,13 +479,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Lataa tiedostosta…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Tallenna tiedostoksi…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/fr/kdebugsettings.po 25.08.2-0ubuntu1/po/fr/kdebugsettings.po
--- 25.04.0-2/po/fr/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/fr/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2025-04-02 20:55+0200\n"
 "Last-Translator: Xavier Besnard <xavier.besnard@kde.org>\n"
 "Language-Team: French <French <kde-francophone@kde.org>>\n"
@@ -24,33 +24,33 @@ msgstr ""
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configurer les paramètres de débogage"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015 - %1 Les auteurs de KDebugSettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Mainteneur"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -58,22 +58,22 @@ msgstr ""
 "Activer le mode de test QStandardPaths, autrement dit lire et écrire les "
 "paramètres utilisés par les tests unitaires"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Activer le débogage complet pour tous les modules."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Désactiver le débogage complet pour tous les modules."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Basculer en mode de débogage console (dans la console)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -81,9 +81,9 @@ msgstr ""
 "Préciser le nom de la catégorie de journal pour laquelle vous souhaitez "
 "changer de mode de débogage (dans la console)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Impossible de changer le mode de débogage"
@@ -163,7 +163,7 @@ msgstr "Messages critiques"
 msgid "No Debug Messages"
 msgstr "Aucun message de débogage"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 Les auteurs de KDebugSettings"
@@ -220,15 +220,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Modifier une règle"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Supprimer une règle..."
 msgstr[1] "Supprimer des règles..."
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -383,7 +383,7 @@ msgstr "Règles personnalisées"
 msgid "Rules Settings With Environment Variable"
 msgstr "Configuration des règles par variable d'environnement"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Enregistrer sous..."
@@ -399,40 +399,40 @@ msgstr "Insérer..."
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "Impossible d'ouvrir « %1 ». Merci de le vérifier."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Insérer des catégories"
 
 # unreviewed-context
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Fichier de catégories"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Les catégories ont été insérées à partir du fichier « %1 »."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Insérer des catégories"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Nom du groupe"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nom :"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -441,24 +441,24 @@ msgstr ""
 "<b> « %1 » </b>est déjà utilisé comme nom de groupe.\n"
 "Veuillez l'enregistrer sous un autre nom."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Impossible d'enregistrer avec un nom vide. Veuillez en choisir un."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Enregistrer sous"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Fichier KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -486,13 +486,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Charger depuis un fichier..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Enregistrer comme un fichier..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/gl/kdebugsettings.po 25.08.2-0ubuntu1/po/gl/kdebugsettings.po
--- 25.04.0-2/po/gl/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/gl/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-30 17:32+0200\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.io>\n"
 "Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n"
@@ -18,33 +18,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configurar as opcións de depuración"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015-%1 Persoas autoras de kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Mantemento."
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,22 +52,22 @@ msgstr ""
 "Activar o modo de probas de QStandardPaths, é dicir, a configuración de "
 "lectura e escritura que usan as probas unitarias"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Activar a depuración completa para todos os módulos."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Desactivar a depuración completa para todos os módulos."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Cambiar o modo de depuración a consola (na consola)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -75,9 +75,9 @@ msgstr ""
 "Indique o nome da categoría de rexistro para a que quere cambiar o modo de "
 "depuración (na consola)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Non é posíbel cambiar o modo de depuración"
@@ -157,7 +157,7 @@ msgstr "Mensaxes críticas"
 msgid "No Debug Messages"
 msgstr "Non hai mensaxes de depuración"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "© %1 Persoas autoras de kdebugsettings"
@@ -213,15 +213,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Editar a regra"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Retirar a regra"
 msgstr[1] "Retirar as regras"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -376,7 +376,7 @@ msgstr "Regras personalizadas"
 msgid "Rules Settings With Environment Variable"
 msgstr "Configuración de regras mediante unha variábel de contorno"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Gardar como…"
@@ -392,39 +392,39 @@ msgstr "Inserir…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "Non é posíbel abrir «%1». Verifíqueo."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Inserir categorías"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Ficheiros de categorías"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Inseríronse as categorías do ficheiro «%1»."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Inserir categorías"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Nome do grupo"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nome:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -433,24 +433,24 @@ msgstr ""
 "Xa hai un grupo chamado «<b>%1</b>».\n"
 "Use outro nome."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Non é posíbel gardar cun nome baleiro, use outro."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Gardar como"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Ficheiro de KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -478,13 +478,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Cargar dun ficheiro…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Gardar como ficheiro…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/he/kdebugsettings.po 25.08.2-0ubuntu1/po/he/kdebugsettings.po
--- 25.04.0-2/po/he/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/he/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-30 10:05+0300\n"
 "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
 "Language-Team: צוות התרגום של KDE ישראל\n"
@@ -18,33 +18,33 @@ msgstr ""
 "n % 10 == 0) ? 2 : 3));\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "הגדרת תצורת ניפוי שגיאות"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015‏-%1 יוצרי kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "לורנט מונטל"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "מתחזק"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,30 +52,30 @@ msgstr ""
 "הפעלת מצב בדיקה של QStandardPaths, כלומר: הגדרות קריאה/כתיבה שמשמשות את "
 "בדיקות היחידה"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "הפעלת ניפוי שגיאות מלא לכל המודולים."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "השבתת ניפוי שגיאות מלא לכל המודולים."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "שינוי מצב ניפוי שגיאות כמסוף (במסוף)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr "נא לציין שם קטגוריית תיעוד לשינוי מצב ניפוי השגיאות שלה (במסוף)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "אי אפשר לשנות את מצב ניפוי השגיאות"
@@ -155,7 +155,7 @@ msgstr "הודעות משמעותיות"
 msgid "No Debug Messages"
 msgstr "ללא הודעות ניפוי שגיאות"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 יוצרי kdebugsettings"
@@ -211,8 +211,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "עריכת כלל"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
@@ -221,7 +221,7 @@ msgstr[1] "הסרת כללים"
 msgstr[2] "הסרת כללים"
 msgstr[3] "הסרת כללים"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -377,7 +377,7 @@ msgstr "כללים מותאמים איש
 msgid "Rules Settings With Environment Variable"
 msgstr "הגדרות כללים עם משתנה סביבה"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "שמירה בשם…"
@@ -393,39 +393,39 @@ msgstr "הוספה…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "אי אפשר לפתוח את ‚%1’. נא לוודא שהוא תקין."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "הוספת קטגוריות"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "קובצי קטגוריות"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "נוספו קטגוריות מהקובץ ‚%1’."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "הוספת קטגוריות"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "שם הקבוצה"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "שם:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -434,24 +434,24 @@ msgstr ""
 "<b>‚%1’</b> כבר מכהן כשם של קבוצה.\n"
 "נא לשמור בשם אחר."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "אי אפשר לשמור כשם ריק. נא להשתמש בשם חדש."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "שמירה בשם"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "קובץ KDebugSettings‏ (‎*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -479,13 +479,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "טעינה מקובץ…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "שמירה כקובץ…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/hi/kdebugsettings.po 25.08.2-0ubuntu1/po/hi/kdebugsettings.po
--- 25.04.0-2/po/hi/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/hi/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-12-15 19:32+0530\n"
 "Last-Translator: kali <skkalwar999@gmail.com>\n"
 "Language-Team: Hindi <kde-i18n-doc@kde.org>\n"
@@ -19,33 +19,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Generator: Lokalize 24.08.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "केडीबगसेटिंग्स"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "डिबग सेटिंग्स कॉन्फ़िगर करें"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 kdebugsettings लेखक"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "लॉरेंट मोंटेल"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "मेंटेनर"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -53,31 +53,31 @@ msgstr ""
 "QStandardPaths परीक्षण मोड सक्षम करें, अर्थात यूनिट टेस्ट द्वारा उपयोग की जाने वाली "
 "पठन/लेखन सेटिंग्स"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "सभी मॉड्यूल के लिए पूर्ण डिबग सक्रिय करें।"
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "सभी मॉड्यूल के लिए पूर्ण डिबग अक्षम करें."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "कंसोल के रूप में डिबग मोड बदलें (कंसोल में)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 "उस लॉगिंग श्रेणी का नाम निर्दिष्ट करें जिसे आप डिबग मोड में बदलना चाहते हैं (कंसोल में)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "डिबग मोड को बदलना असंभव"
@@ -157,7 +157,7 @@ msgstr "महत्वपूर्ण 
 msgid "No Debug Messages"
 msgstr "कोई डीबग संदेश नहीं"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 kdebugsettings लेखक"
@@ -213,15 +213,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "नियम संपादित करें"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "नियम हटाएँ"
 msgstr[1] "नियम हटाएँ"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -375,7 +375,7 @@ msgstr "कस्टम नियम"
 msgid "Rules Settings With Environment Variable"
 msgstr "पर्यावरण चर के साथ नियम सेटिंग"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "के रूप रक्षित करें…"
@@ -391,39 +391,39 @@ msgstr "डालना…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1' खोला नहीं जा सकता। कृपया इसे सत्यापित करें।"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "श्रेणियाँ डालें"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "श्रेणियाँ फ़ाइलें"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "फ़ाइल '%1' से श्रेणियाँ सम्मिलित की गईं."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "श्रेणियाँ डालें"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "समूह नाम"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "नाम:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -432,24 +432,24 @@ msgstr ""
 "<b>&#39;%1&#39;</b> पहले से ही समूह नाम के रूप में उपयोग किया जा रहा है। कृपया इसे "
 "किसी अन्य नाम के रूप में सहेजें।"
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "खाली नाम के रूप में सहेजा नहीं जा सकता। कृपया नया नाम इस्तेमाल करें।"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "के रूप रक्षित करें"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings फ़ाइल (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -477,13 +477,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "फ़ाइल से लोड करें…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "फ़ाइल के रूप में सहेजें…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/hu/kdebugsettings.po 25.08.2-0ubuntu1/po/hu/kdebugsettings.po
--- 25.04.0-2/po/hu/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/hu/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-10-03 21:39+0200\n"
 "Last-Translator: Kristof Kiszel <ulysses@fsf.hu>\n"
 "Language-Team: Hungarian <kde-l10n-hu@kde.org>\n"
@@ -18,33 +18,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 24.08.0\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Hibakeresési beállítások módosítása"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© A kdebugsettings szerzői, 2015-%1."
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Karbantartó"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,22 +52,22 @@ msgstr ""
 "A QStandardPaths teszt mód bekapcsolása, például az egységtesztek olvasási/"
 "írási beállításaihoz"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Teljes hibakeresés aktiválása minden modulban."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Teljes hibakeresés kikapcsolása minden modulban."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Hibakeresési mód megváltoztatása konzolként (konzolban)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -75,9 +75,9 @@ msgstr ""
 "Adja meg a naplózási kategória nevét, amelynek a hibakeresési módját "
 "módosítani szeretné (konzolban)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Lehetetlen módosítani a hibakeresési módot"
@@ -157,7 +157,7 @@ msgstr "Kritikus üzenetek"
 msgid "No Debug Messages"
 msgstr "Nincsenek hibakeresési üzenetek"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "© A kdebugsettings szerzői, %1."
@@ -213,15 +213,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Szabály szerkesztése"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Szabály eltávolítása"
 msgstr[1] "Szabályok eltávolítása"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -375,7 +375,7 @@ msgstr "Saját szabályok"
 msgid "Rules Settings With Environment Variable"
 msgstr "Szabálybeállítások környezeti változóval"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Mentés másként…"
@@ -391,39 +391,39 @@ msgstr "Beszúrás…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "A(z) „%1” nem nyitható meg. Kérjük, ellenőrizze."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Kategóriák beszúrása"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Kategóriafájlok"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Kategóriák a(z) „%1” fájlból beszúrva."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Kategóriák beszúrása"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Csoportnév"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Név:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -432,24 +432,24 @@ msgstr ""
 "A(z) <b>„%1”</b> csoportnév már foglalt.\n"
 "Kérjük, használjon másikat."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Nem lehet menteni üres névvel. Kérjük, adjon meg másikat."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Mentés másként"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings fájl (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -477,13 +477,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Betöltés fájlból…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Mentés fájlként…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/ia/kdebugsettings.po 25.08.2-0ubuntu1/po/ia/kdebugsettings.po
--- 25.04.0-2/po/ia/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/ia/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-31 10:12+0200\n"
 "Last-Translator: giovanni <g.sora@tiscali.it>\n"
 "Language-Team: Interlingua <kde-i18n-doc@kde.org>\n"
@@ -17,33 +17,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 23.08.5\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configura preferentias de debug"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 autores de  kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Mantenitor"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -51,22 +51,22 @@ msgstr ""
 "Habilita modo de essayar QStandardPath,i.e. preferentias de leger/scriber "
 "per unittests"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Activa debug complete  per omne modulos."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Deactiva debug complete per omne modulos."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Cambia modo de debug (cribrar) como console (in console)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -74,9 +74,9 @@ msgstr ""
 "Specifica  nomine de categoria de registrar que tu vole cambiar modo de "
 "debug (in console)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Impossibile cambiar modo de debug"
@@ -156,7 +156,7 @@ msgstr "Messages Critic"
 msgid "No Debug Messages"
 msgstr "Nulle messages de debug"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 autores de  kdebugsettings"
@@ -212,15 +212,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Modifica regula"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Remove regula"
 msgstr[1] "Remove regulas"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -376,7 +376,7 @@ msgstr "Regulas personalisate"
 msgid "Rules Settings With Environment Variable"
 msgstr "Preferentias de regulas con variabile de ambiente"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Salveguarda como…"
@@ -392,39 +392,39 @@ msgstr "Inserta…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1' non pote esser aperite. Pro favor tu verifica lo."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Inserta categorias"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Files de categorias"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Categorias ab file '%1' insertate."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Inserta categorias"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Nomine de gruppo"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nomine:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -433,24 +433,24 @@ msgstr ""
 "<b>'%1'</b> ja es usate como un nomine de gruppo.\n"
 "Pro favor tu salveguarda con un altere nomine."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Non pote  salveguardar como nmine vacue. Pro favor usa un nove nomine."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Salveguarda como"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "File de KDebugSettings  (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -478,13 +478,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Carga ex file …"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Salveguarda como File..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/it/kdebugsettings.po 25.08.2-0ubuntu1/po/it/kdebugsettings.po
--- 25.04.0-2/po/it/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/it/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-31 01:26+0200\n"
 "Last-Translator: Vincenzo Reale <smart2128vr@gmail.com>\n"
 "Language-Team: Italian <kde-i18n-it@kde.org>\n"
@@ -18,33 +18,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configura le impostazioni di debug"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015-%1 Gli autori di kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Responsabile"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,22 +52,22 @@ msgstr ""
 "Abilita modalità di prova QStandardPaths, cioè impostazioni di lettura/"
 "scrittura utilizzate da unittests"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Attiva il debug completo per tutti i moduli."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Disabilita il debug completo per tutti i moduli."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Cambia la modalità di debug come console (in console)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -75,9 +75,9 @@ msgstr ""
 "Specifica il nome della categoria di registrazione dei log per la quale "
 "desideri cambiare la modalità di debug (in console)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Impossibile cambiare la modalità di debug"
@@ -157,7 +157,7 @@ msgstr "Messaggi critici"
 msgid "No Debug Messages"
 msgstr "Nessun messaggio di debug"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "© %1 Gli autori di kdebugsettings"
@@ -213,15 +213,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Modifica regola"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Rimuovi regola"
 msgstr[1] "Rimuovi regole"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -377,7 +377,7 @@ msgstr "Regole personalizzate"
 msgid "Rules Settings With Environment Variable"
 msgstr "Impostazioni regole con variabile d'ambiente"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Salva come…"
@@ -393,39 +393,39 @@ msgstr "Inserisci…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "«%1» non può essere aperto. Verificalo."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Inserisci categorie"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "File delle categorie"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Categorie inserite dal file «%1»."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Inserisci categorie"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Nome del gruppo"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nome:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -434,24 +434,24 @@ msgstr ""
 "<b>«%1»</b> è già utilizzato come nome di un gruppo.\n"
 "Salva con un altro nome."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Impossibile salvare come nome vuoto. Usane uno nuovo."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Salva come"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "File di KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -479,13 +479,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Carica da file…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Salva come file…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/ja/kdebugsettings.po 25.08.2-0ubuntu1/po/ja/kdebugsettings.po
--- 25.04.0-2/po/ja/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/ja/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2015-03-08 20:04-0700\n"
 "Last-Translator: Japanese KDE translation team <kde-jp@kde.org>\n"
 "Language-Team: Japanese <kde-jp@kde.org>\n"
@@ -14,62 +14,62 @@ msgstr ""
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr ""
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr ""
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr ""
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr ""
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr ""
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr ""
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr ""
@@ -149,7 +149,7 @@ msgstr ""
 msgid "No Debug Messages"
 msgstr ""
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr ""
@@ -203,14 +203,14 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr ""
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] ""
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -361,7 +361,7 @@ msgstr ""
 msgid "Rules Settings With Environment Variable"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr ""
@@ -377,63 +377,63 @@ msgstr ""
 msgid "'%1' cannot be opened. Please verify it."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -461,13 +461,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr ""
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr ""
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/ka/kdebugsettings.po 25.08.2-0ubuntu1/po/ka/kdebugsettings.po
--- 25.04.0-2/po/ka/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/ka/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-30 06:34+0200\n"
 "Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>\n"
 "Language-Team: Georgian <kde-i18n-doc@kde.org>\n"
@@ -18,33 +18,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Poedit 3.3.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "გამართვის მორგება"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 kdebugsettings -ის ავტორები"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "წამყვანი პროგრამისტი"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,22 +52,22 @@ msgstr ""
 "QStandardPaths -ის ტესტირების ჩართვა. ანუ unittests-ის მიერ გამოყენებული "
 "პარამეტრების ჩაწერა/წაკითხვა"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "ყველა მოდულის გამართვის ჩართვა."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "ყველა მოდულის გამართვის გამორთვა."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "გამართვის რეჟიმის კონსოლზე გადართვა (კონსოლში)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -75,9 +75,9 @@ msgstr ""
 "მიუთითეთ ჟურნალის კატეგორია, რომლის გამართვის რეჟიმის შეცვლაც გნებავთ "
 "(კონსოლში)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "გამართვის რეჟიმის შეცვლა შეუძლებელია"
@@ -125,7 +125,7 @@ msgstr "იდენტიფიკა
 #: src/core/loggingcategory.cpp:119
 #, kde-format
 msgid "Default Severity: %1"
-msgstr "ნაგულისხმები სიმძიმე: %1"
+msgstr "ნაგულისხმევი სიმძიმე: %1"
 
 #: src/core/loggingcategory.cpp:128
 #, kde-format
@@ -157,7 +157,7 @@ msgstr "კრიტიკული შ
 msgid "No Debug Messages"
 msgstr "გამართვის შეტყობინებების გარეშე"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 kdebugsettings -ის ავტორები"
@@ -213,15 +213,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "წესის ჩასწორება"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "წესის წაშლა"
 msgstr[1] "წესის წაშლა"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -375,7 +375,7 @@ msgstr "ხელით მითით
 msgid "Rules Settings With Environment Variable"
 msgstr "წესების დაყენება გარემოს ცვლადით"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "შენახვა, როგორც…"
@@ -391,39 +391,39 @@ msgstr "ჩასმა…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1'-ის გახსნა შეუძლებელია. გადაამოწმეთ."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "კატეგორიების ჩასმა"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "კატეგორიის ფაილები"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "ფაილიდან '%1' კატეგორიების ჩასმა წარმატებულია."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "კატეგორიების ჩასმა"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "ჯგუფის სახელი"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "სახელი:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -432,24 +432,24 @@ msgstr ""
 "<b>'%1'</b>უკვე გამოიყენება, როგორც ჯგუფის სახელი.\n"
 "შეინახეთ სხვა სახელით."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "ცარიელი სახელით ვერ შეინახავთ.აირჩიეთ ახალისახელი."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "შენახვა როგორც"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings -ის ფაილი (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -477,13 +477,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "ფაილიდან ჩატვირთვა…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "ფაილად შენახვა…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/ko/kdebugsettings.po 25.08.2-0ubuntu1/po/ko/kdebugsettings.po
--- 25.04.0-2/po/ko/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/ko/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-08-20 23:34+0200\n"
 "Last-Translator: Shinjo Park <kde@peremen.name>\n"
 "Language-Team: Korean <kde-kr@kde.org>\n"
@@ -17,63 +17,63 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Lokalize 23.08.5\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "디버그 설정"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 kdebugsettings authors"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "관리자"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr ""
 "QStandardPaths 테스트 모드 활성화, 유닛 테스트에서 사용하는 읽기/쓰기 설정"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "모든 모듈에 전체 디버그를 활성화합니다."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "모든 모듈에 전체 디버그를 비활성화합니다."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "콘솔로 디버그 모드 전환(콘솔에서)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr "디버그 모드를 전환할 로그 분류 이름 지정(콘솔에서)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "디버그 모드를 변경할 수 없음"
@@ -153,7 +153,7 @@ msgstr "치명적 메시지"
 msgid "No Debug Messages"
 msgstr "디버그 메시지 없음"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 kdebugsettings authors"
@@ -209,14 +209,14 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "규칙 편집"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "규칙 삭제"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -369,7 +369,7 @@ msgstr "사용자 정의 규칙"
 msgid "Rules Settings With Environment Variable"
 msgstr "환경 변수를 통한 규칙 설정"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "다른 이름으로 저장…"
@@ -385,39 +385,39 @@ msgstr "삽입…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1'을(를) 열 수 없습니다. 확인하십시오."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "분류 삽입"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "분류 파일"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "'%1' 파일의 분류를 삽입했습니다."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "분류 삽입"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "그룹 이름"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "이름:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -426,24 +426,24 @@ msgstr ""
 "이름이 <b>'%1'</b>인 그룹이 이미 있습니다.\n"
 "다른 이름으로 저장하십시오."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "빈 이름으로 저장할 수 없습니다. 다른 이름을 지정하십시오."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "다른 이름으로 저장"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings 파일 (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -471,13 +471,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "파일에서 불러오기…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "파일로 저장…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/lt/kdebugsettings.po 25.08.2-0ubuntu1/po/lt/kdebugsettings.po
--- 25.04.0-2/po/lt/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/lt/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: trunk-kf 5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2015-07-30 08:57+0000\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: lt\n"
@@ -18,62 +18,62 @@ msgstr ""
 "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"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr ""
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr ""
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr ""
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr ""
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr ""
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr ""
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr ""
@@ -153,7 +153,7 @@ msgstr ""
 msgid "No Debug Messages"
 msgstr ""
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr ""
@@ -207,8 +207,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr ""
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
@@ -217,7 +217,7 @@ msgstr[1] ""
 msgstr[2] ""
 msgstr[3] ""
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Rules Settings With Environment Variable"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr ""
@@ -387,63 +387,63 @@ msgstr ""
 msgid "'%1' cannot be opened. Please verify it."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -471,13 +471,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr ""
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr ""
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/nl/kdebugsettings.po 25.08.2-0ubuntu1/po/nl/kdebugsettings.po
--- 25.04.0-2/po/nl/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/nl/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-30 13:04+0200\n"
 "Last-Translator: Freek de Kruijf <freekdekruijf@kde.nl>\n"
 "Language-Team: \n"
@@ -17,33 +17,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Debug-instellingen configureren"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 auteurs van kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Onderhouder"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -51,22 +51,22 @@ msgstr ""
 "Testmodus van QStandardPaths inschakelen, d.w.z. instellingen voor lezen/"
 "schrijven gebruikt door unittesten"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Volledig debuggen voor alle modulen activeren."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Volledig debuggen voor alle modulen uitschakelen."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Debugmodus als console wijzigen (in console)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -74,9 +74,9 @@ msgstr ""
 "Naam van loggingcategorie specificeren die u wilt om debugmodus te wijzigen "
 "(in console)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Debugmodus wijzigen is onmogelijk"
@@ -156,7 +156,7 @@ msgstr "Kritiekeberichten"
 msgid "No Debug Messages"
 msgstr "Geen debugberichten"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 auteurs van kdebugsettings"
@@ -212,15 +212,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Regel bewerken"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Regel verwijderen"
 msgstr[1] "Regels verwijderen"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -375,7 +375,7 @@ msgstr "Eigen regels"
 msgid "Rules Settings With Environment Variable"
 msgstr "Instellen van regels met omgevingsvariabele"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Opslaan als…"
@@ -391,39 +391,39 @@ msgstr "Invoegen…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1'' kan niet geopend worden. Controleer dit."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Categorieën invoegen"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Bestanden met categorieën"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Categorieën uit bestand '%1' ingevoegd."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Categorieën invoegen"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Groepsnaam"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Naam:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -432,24 +432,24 @@ msgstr ""
 "<b>'%1'</b> is al gebruikt als een groepsnaam.\n"
 "Opslaan met een andere naam."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Kan niet opslaan als lege naam. Gebruik een nieuwe."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Opslaan als"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings-bestand (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -477,13 +477,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Uit bestand laden…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Naar bestand opslaan…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/nn/kdebugsettings.po 25.08.2-0ubuntu1/po/nn/kdebugsettings.po
--- 25.04.0-2/po/nn/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/nn/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2023-07-29 12:32+0200\n"
 "Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
@@ -20,33 +20,33 @@ msgstr ""
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Set opp feilsøkingsinnstillingar"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015–%1 kdebugsettings-utviklarane"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, fuzzy, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Vedlikehaldar"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -54,32 +54,32 @@ msgstr ""
 "Slå på QStandardPaths-testmodus, dvs. lese- og skriveinnstillingane brukt av "
 "einingstestar."
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Slå på full feilsøking for alle modular."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Slå av full feilsøking for alle modular."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Byt feilsøkingsmodus som konsoll (i konsoll)."
 
 # Dårleg engelsk grammatikk, men det ser ut til at det er dette som er meint.
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 "Vel namn på loggkategorien som du vil endra feilsøkingsmodus for (i konsoll)."
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Kan ikkje endra feilsøkingsmodus"
@@ -159,7 +159,7 @@ msgstr "Kritiske meldingar"
 msgid "No Debug Messages"
 msgstr "Ingen feilsøkingsmeldingar"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "© %1 kdebugsettings-utviklarane"
@@ -215,15 +215,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Rediger regel"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Fjern regel"
 msgstr[1] "Fjern reglar"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -377,7 +377,7 @@ msgstr "Tilpassa reglar"
 msgid "Rules Settings With Environment Variable"
 msgstr "Regeldefinisjonar med miljøvariabel"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, fuzzy, kde-format
 msgid "Save As…"
 msgstr "Lagra som"
@@ -393,39 +393,39 @@ msgstr "Set inn …"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "Klarte ikkje opna «%1». Sjå til at alt er rett."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Set inn kategoriar"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Kategorifiler:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Sette inn kategoriar frå fila «%1»."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, fuzzy, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Set inn kategoriar"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, fuzzy, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Gruppenamn"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Namn:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -434,24 +434,24 @@ msgstr ""
 "<b>«%1»</b> er alt brukt som gruppenamn.\n"
 "Du må lagra under eit anna namn."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Kan ikkje lagra med tomt namn. Vel eit namn."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, fuzzy, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Lagra som"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings-fil (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -479,13 +479,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Hent frå fil …"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, fuzzy, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Lagra som fil …"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, fuzzy, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/pl/kdebugsettings.po 25.08.2-0ubuntu1/po/pl/kdebugsettings.po
--- 25.04.0-2/po/pl/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/pl/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-08-03 11:49+0200\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-doc@kde.org>\n"
@@ -16,35 +16,34 @@ msgstr ""
 "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"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Ustawienia diagnostyki"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 Autorzy kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Opiekun"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,22 +51,22 @@ msgstr ""
 "Włącz tryb próbny QStandardPaths, tj odczyt/zapis ustawień wykorzystywanych "
 "przez unittests"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Włącz pełną diagnostykę dla wszystkich modułów."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Wyłącz pełną diagnostykę dla wszystkich modułów."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Zmień tryb diagnostyki jako konsola (w konsoli)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -75,9 +74,9 @@ msgstr ""
 "Podaj nazwę kategorii logowania, na którą chcesz zmienić tryb diagnostyki (w "
 "konsoli)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Nie można zmienić trybu diagnostyki"
@@ -157,7 +156,7 @@ msgstr "Krytyczne wiadomości"
 msgid "No Debug Messages"
 msgstr "Brak wiadomości"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 Autorzy kdebugsettings"
@@ -213,8 +212,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Zmień zasadę"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
@@ -222,7 +221,7 @@ msgstr[0] "Usuń zasadę"
 msgstr[1] "Usuń zasady"
 msgstr[2] "Usuń zasady"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -377,7 +376,7 @@ msgstr "Własne zasady"
 msgid "Rules Settings With Environment Variable"
 msgstr "Ustawienia zasad przy użyciu zmiennych środowiskowych"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Zapisz jako…"
@@ -393,39 +392,39 @@ msgstr "Wstaw…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "Nie można otworzyć %1. Sprawdź to."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Wstaw kategorie"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Pliki kategorii"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Wstawiono kategorie z pliku '%1'."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Wstaw kategorie"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Nazwa grupy"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nazwa:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -434,24 +433,24 @@ msgstr ""
 "<b>%1</b> jest już używana jako nazwa grupy.\n"
 "Zapisz pod inną nazwą."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Nie można zapisać bez nazwy. Wpisz jakąś nazwę."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Zapisz jako"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Plik KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -479,13 +478,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Wczytaj z pliku…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Zapisz jako plik…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/pt/kdebugsettings.po 25.08.2-0ubuntu1/po/pt/kdebugsettings.po
--- 25.04.0-2/po/pt/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/pt/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2023-05-31 10:59+0100\n"
 "Last-Translator: José Nuno Coelho Pires <zepires@gmail.com>\n"
 "Language-Team: Portuguese <kde-i18n-pt@kde.org>\n"
@@ -15,34 +15,34 @@ msgstr ""
 "X-POFile-SpellExtra: QTLOGGINGRULES false true qtlogging Criticidade\n"
 "X-POFile-SpellExtra: QStandardPaths KDebugSettings kdebugsettingsrules\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configurar as definições de depuração"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 dos autores do kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, fuzzy, kde-format
 #| msgid "Laurent Montel"
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Manutenção"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -50,22 +50,22 @@ msgstr ""
 "Activa o modo de testes do QStandardPaths, i.e. as configurações de leitura/"
 "escrita usadas nos testes unitários"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Activar a depuração completa de todos os módulos."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Desactivar a depuração completa de todos os módulos."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Mudar o modo de depuração para consola (na consola)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -73,9 +73,9 @@ msgstr ""
 "Indique o nome da categoria de registo onde deseja mudar o modo de depuração "
 "(na consola)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Não é possível modificar o modo de depuração"
@@ -155,7 +155,7 @@ msgstr "Mensagens Críticas"
 msgid "No Debug Messages"
 msgstr "Sem Mensagens de Depuração"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 dos autores do kdebugsettings"
@@ -219,15 +219,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Editar a Regra"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Remover a Regra"
 msgstr[1] "Remover as Regras"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -392,7 +392,7 @@ msgstr "Regras Personalizadas"
 msgid "Rules Settings With Environment Variable"
 msgstr "Configuração das Regras com uma Variável de Ambiente"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgid "Save As…"
@@ -410,41 +410,41 @@ msgstr "Inserir..."
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "Não é possível abrir o '%1'. Verifique-o, por favor."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Inserir as Categorias"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Ficheiros de Categorias"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Foram inseridas as categorias do ficheiro '%1'."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, fuzzy, kde-format
 #| msgid "Insert Categories"
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Inserir as Categorias"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, fuzzy, kde-format
 #| msgid "Group Name"
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Nome do Grupo"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nome:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -453,25 +453,25 @@ msgstr ""
 "O <b>'%1'</b> já está a ser usado como nome do grupo.\n"
 "Por favor, grave com outro nome."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Não é possível gravar com um nome vazio. Por favor, use um novo."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Gravar Como"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Ficheiro do KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 #| msgid "Load Debug Settings Files"
 msgctxt "@title:window"
@@ -502,14 +502,14 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Carregar do Ficheiro..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, fuzzy, kde-format
 #| msgid "Save As File..."
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Gravar como um Ficheiro..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, fuzzy, kde-format
 #| msgid "Save As Group..."
 msgctxt "@action"
diff -pruN 25.04.0-2/po/pt_BR/kdebugsettings.po 25.08.2-0ubuntu1/po/pt_BR/kdebugsettings.po
--- 25.04.0-2/po/pt_BR/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/pt_BR/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -4,49 +4,49 @@
 #
 # André Marcelo Alvarenga <alvarenga@kde.org>, 2015, 2018, 2019, 2020.
 # Luiz Fernando Ranghetti <elchevive@opensuse.org>, 2018, 2019, 2020, 2021, 2022, 2023.
+# SPDX-FileCopyrightText: 2025 Marcus Gama <marcus.gama@gmail.com>
 msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
-"PO-Revision-Date: 2023-07-04 14:24-0300\n"
-"Last-Translator: Luiz Fernando Ranghetti <elchevive@opensuse.org>\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
+"PO-Revision-Date: 2025-08-06 20:57-0300\n"
+"Last-Translator: Marcus Gama <marcus.gama@gmail.com>\n"
 "Language-Team: Brazilian Portuguese <kde-i18n-pt_BR@kde.org>\n"
 "Language: pt_BR\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-Generator: Lokalize 25.04.3\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configura as definições de depuração"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 Autores do kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
-#, fuzzy, kde-format
-#| msgid "Laurent Montel"
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
+#, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Mantenedor"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -54,22 +54,22 @@ msgstr ""
 "Habilita o modo de testes QStandardPaths, por ex. as configurações de "
 "leitura/escrita usadas nos testes unitários"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Ativar a depuração completa para todos os módulos."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Desabilitar a depuração completa para todos os módulos."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Alterar modo de depuração como console (no console)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -77,9 +77,9 @@ msgstr ""
 "Especifique o nome da categoria de log que você quer alterar para modo de "
 "depuração (no console)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Não foi possível alterar o modo de depuração"
@@ -159,22 +159,19 @@ msgstr "Mensagens críticas"
 msgid "No Debug Messages"
 msgstr "Sem mensagens de depuração"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 Autores do kdebugsettings"
 
 #: src/widgets/categorywarning.cpp:16
-#, fuzzy, kde-format
-#| msgid ""
-#| "You have a rule as '*=true' or '*=false' which will override all your "
-#| "specific rule. Better to remove it."
+#, kde-format
 msgid ""
 "A custom rule '*=true' or '*=false' is present, which may override more "
 "specific rules. It is better to remove it."
 msgstr ""
-"Você tem uma regra do tipo '*=true' ou '*=false', que irá substituir todas "
-"as suas regras específicas. É melhor removê-la."
+"Você tem uma regra personalizada do tipo '*=true' ou '*=false', que pode "
+"substituir todas as suas regras específicas. É melhor removê-la."
 
 #: src/widgets/configurecustomsettingdialog.cpp:23
 #, kde-format
@@ -189,49 +186,44 @@ msgid "Edit custom rule"
 msgstr "Editar regra personalizada"
 
 #: src/widgets/configurecustomsettingwidget.cpp:23
-#, fuzzy, kde-format
-#| msgid "Enable"
+#, kde-format
 msgctxt "@option:check"
 msgid "Enable"
 msgstr "Ativar"
 
 #: src/widgets/configurecustomsettingwidget.cpp:28
-#, fuzzy, kde-format
-#| msgid "Category:"
+#, kde-format
 msgctxt "@label:textbox"
 msgid "Category:"
 msgstr "Categoria:"
 
 #: src/widgets/configurecustomsettingwidget.cpp:39
-#, fuzzy, kde-format
-#| msgid "Type:"
+#, kde-format
 msgctxt "@label:textbox"
 msgid "Type:"
 msgstr "Tipo:"
 
 #: src/widgets/customdebuglistview.cpp:44
-#, fuzzy, kde-format
-#| msgid "Add Rule..."
+#, kde-format
 msgctxt "@action"
 msgid "Add Rule…"
 msgstr "Adicionar regra..."
 
 #: src/widgets/customdebuglistview.cpp:46
-#, fuzzy, kde-format
-#| msgid "Edit Rule"
+#, kde-format
 msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Editar regra"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Remover regra"
 msgstr[1] "Remover regras"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -242,19 +234,17 @@ msgstr[1] "Deseja remover estas %1 regra
 #, kde-format
 msgctxt "@action:button"
 msgid "Edit…"
-msgstr ""
+msgstr "Editar…"
 
 #: src/widgets/customdebugsettingspage.cpp:24
-#, fuzzy, kde-format
-#| msgid "Remove..."
+#, kde-format
 msgctxt "@action:button"
 msgid "Remove…"
 msgstr "Remover..."
 
 #: src/widgets/customdebugsettingspage.cpp:40
 #: src/widgets/kdeapplicationdebugsettingpage.cpp:33
-#, fuzzy, kde-format
-#| msgid "Search..."
+#, kde-format
 msgctxt "@info:placeholder"
 msgid "Search…"
 msgstr "Pesquisar..."
@@ -263,7 +253,7 @@ msgstr "Pesquisar..."
 #, kde-format
 msgctxt "@action:button"
 msgid "Add…"
-msgstr ""
+msgstr "Adicionar…"
 
 #: src/widgets/environmentplaintextedit.cpp:42
 #, kde-format
@@ -311,8 +301,7 @@ msgstr "Não foi possível exportar o gr
 
 #: src/widgets/groupmanagementwidget.cpp:67
 #: src/widgets/groupmanagementwidget.cpp:72
-#, fuzzy, kde-format
-#| msgid "Rename Group"
+#, kde-format
 msgctxt "@title:window"
 msgid "Rename Group"
 msgstr "Renomear grupo"
@@ -328,22 +317,19 @@ msgid "Impossible to rename group as '%1
 msgstr "Não foi possível renomear o grupo como '%1'."
 
 #: src/widgets/groupmanagementwidget.cpp:88
-#, fuzzy, kde-format
-#| msgid "Rename Group"
+#, kde-format
 msgctxt "@action"
 msgid "Rename Group…"
-msgstr "Renomear grupo"
+msgstr "Renomear grupo..."
 
 #: src/widgets/groupmanagementwidget.cpp:92
-#, fuzzy, kde-format
-#| msgid "Export Group"
+#, kde-format
 msgctxt "@action"
 msgid "Export Group…"
-msgstr "Exportar grupo"
+msgstr "Exportar grupo..."
 
 #: src/widgets/groupmanagementwidget.cpp:97
-#, fuzzy, kde-format
-#| msgid "Remove Groups"
+#, kde-format
 msgctxt "@action"
 msgid "Remove Groups"
 msgstr "Remover grupos"
@@ -354,29 +340,25 @@ msgid "Impossible to remove '%1'"
 msgstr "Não foi possível remover '%1'"
 
 #: src/widgets/groupmanagementwidget.cpp:102
-#, fuzzy, kde-format
-#| msgid "Remove Group"
+#, kde-format
 msgctxt "@title:window"
 msgid "Remove Group"
 msgstr "Remover grupo"
 
 #: src/widgets/kdeapplicationdebugsettingpage.cpp:23
-#, fuzzy, kde-format
-#| msgid "Enable All Debug"
+#, kde-format
 msgctxt "@action:button"
 msgid "Enable All Debug"
 msgstr "Habilitar todas as depurações"
 
 #: src/widgets/kdeapplicationdebugsettingpage.cpp:24
-#, fuzzy, kde-format
-#| msgid "Turn Off Debug"
+#, kde-format
 msgctxt "@action:button"
 msgid "Turn Off Debug"
 msgstr "Desligar depuração"
 
 #: src/widgets/kdeapplicationdebugsettingpage.cpp:25
-#, fuzzy, kde-format
-#| msgid "Turn Off All Messages"
+#, kde-format
 msgctxt "@action:button"
 msgid "Turn Off All Messages"
 msgstr "Desligar todas as mensagens"
@@ -396,15 +378,13 @@ msgstr "Regras personalizadas"
 msgid "Rules Settings With Environment Variable"
 msgstr "Configuração das regras com variável de ambiente"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
-#, fuzzy, kde-format
-#| msgid "Save As"
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
+#, kde-format
 msgid "Save As…"
-msgstr "Salvar como"
+msgstr "Salvar como..."
 
 #: src/widgets/kdebugsettingsdialog.cpp:89
-#, fuzzy, kde-format
-#| msgid "Insert..."
+#, kde-format
 msgctxt "@action:button"
 msgid "Insert…"
 msgstr "Inserir..."
@@ -414,41 +394,39 @@ msgstr "Inserir..."
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "Não é possível abrir o '%1'. Verifique."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Inserir categorias"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Arquivos de categorias"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Categorias do arquivo '%1' inseridas."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
-#, fuzzy, kde-format
-#| msgid "Insert Categories"
+#: src/widgets/kdebugsettingsdialog.cpp:201
+#, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Inserir categorias"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
-#, fuzzy, kde-format
-#| msgid "Group Name"
+#: src/widgets/kdebugsettingsdialog.cpp:209
+#, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Nome do grupo"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Nome:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -457,27 +435,25 @@ msgstr ""
 "<b>'%1'</b> já está em uso como nome de grupo.\n"
 "Salve com outro nome."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Não foi possível salvar como nome vazio. Use um outro nome."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#, fuzzy, kde-format
-#| msgid "Save As"
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Salvar como"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Arquivo do KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
-#, fuzzy, kde-format
-#| msgid "Load Debug Settings Files"
+#: src/widgets/kdebugsettingsdialog.cpp:239
+#, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
 msgstr "Carregar arquivos de configurações de depuração"
@@ -488,8 +464,7 @@ msgid "Load Group"
 msgstr "Carregar grupo"
 
 #: src/widgets/loadgroupmenu.cpp:70
-#, fuzzy, kde-format
-#| msgid "Manage Group"
+#, kde-format
 msgctxt "@action"
 msgid "Manage Group"
 msgstr "Gerenciar grupo"
@@ -497,25 +472,22 @@ msgstr "Gerenciar grupo"
 #: src/widgets/loadtoolbutton.cpp:19
 #, kde-format
 msgid "Load…"
-msgstr ""
+msgstr "Carregar…"
 
 #: src/widgets/loadtoolbutton.cpp:23
-#, fuzzy, kde-format
-#| msgid "Load From File..."
+#, kde-format
 msgctxt "@action"
 msgid "Load From File…"
 msgstr "Carregar do arquivo..."
 
-#: src/widgets/savetoolbutton.cpp:20
-#, fuzzy, kde-format
-#| msgid "Save As File..."
+#: src/widgets/savetoolbutton.cpp:22
+#, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Salvar como arquivo..."
 
-#: src/widgets/savetoolbutton.cpp:23
-#, fuzzy, kde-format
-#| msgid "Save As Group..."
+#: src/widgets/savetoolbutton.cpp:25
+#, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
 msgstr "Salvar como grupo..."
diff -pruN 25.04.0-2/po/ro/kdebugsettings.po 25.08.2-0ubuntu1/po/ro/kdebugsettings.po
--- 25.04.0-2/po/ro/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/ro/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2020-09-27 13:02+0100\n"
 "Last-Translator: Sergiu Bivol <sergiu@cip.md>\n"
 "Language-Team: Romanian\n"
@@ -18,35 +18,35 @@ msgstr ""
 "20)) ? 1 : 2;\n"
 "X-Generator: Lokalize 19.12.3\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Configurează opțiuni de depanare"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2020 kdebugsettings authors"
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-2020 Autorii kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, fuzzy, kde-format
 #| msgid "Laurent Montel"
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Responsabil"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -54,22 +54,22 @@ msgstr ""
 "Activează regimul de testare QStandardPaths, adică citește/scrie configurări "
 "folosite în testele de unitate"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Activează depanarea completă pentru toate modulele."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Dezactivează depanarea completă pentru toate modulele."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Schimbă regimul de depanare ca consolă (în consolă)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -77,9 +77,9 @@ msgstr ""
 "Specifică denumirea categoriei de jurnalizare pentru care schimbați regimul "
 "de depanare (în consolă)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Nu se poate schimba regimul de depanare"
@@ -159,7 +159,7 @@ msgstr "Mesaje critice"
 msgid "No Debug Messages"
 msgstr "Fără mesaje de depanare"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2020 kdebugsettings authors"
 msgid "(c) %1 kdebugsettings authors"
@@ -226,8 +226,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Modifică regula personalizată"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, fuzzy, kde-format
 #| msgid "Remove..."
 msgid "Remove Rule"
@@ -236,7 +236,7 @@ msgstr[0] "Elimină..."
 msgstr[1] "Elimină..."
 msgstr[2] "Elimină..."
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -405,7 +405,7 @@ msgstr "Reguli personalizate"
 msgid "Rules Settings With Environment Variable"
 msgstr "Configurări reguli cu variabilă de mediu"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgid "Save As…"
@@ -423,65 +423,65 @@ msgstr "Inserează..."
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "„%1” nu poate fi deschis. Verificați-l."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Inserează categorii"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Fișiere cu categorii"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, fuzzy, kde-format
 #| msgid "Insert Categories"
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Inserează categorii"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Salvează ca"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Fișier KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 #| msgid "Load Debug Settings Files"
 msgctxt "@title:window"
@@ -513,14 +513,14 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Salvează ca..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Salvează ca..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
diff -pruN 25.04.0-2/po/ru/kdebugsettings.po 25.08.2-0ubuntu1/po/ru/kdebugsettings.po
--- 25.04.0-2/po/ru/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/ru/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-12-10 12:36+0300\n"
 "Last-Translator: Olesya Gerasimenko <translation-team@basealt.ru>\n"
 "Language-Team: Basealt Translation Team\n"
@@ -21,33 +21,33 @@ msgstr ""
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Lokalize 23.08.5\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Настройка отладки"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© Авторы kdebugsettings, 2015–%1"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Сопровождающий"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -55,22 +55,22 @@ msgstr ""
 "Включить тестовый режим QStandardPaths, то есть параметры чтения/записи, "
 "используемые unittests."
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Включить полную отладочную информацию для всех модулей."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Отключить полную отладочную информацию для всех модулей."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Изменить режим отладки из консоли."
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -78,9 +78,9 @@ msgstr ""
 "Укажите название категории ведения журнала, для которой будет изменён режим "
 "отладки из консоли."
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Невозможно изменить режим отладки"
@@ -160,7 +160,7 @@ msgstr "Критические сооб
 msgid "No Debug Messages"
 msgstr "Без сообщений отладки"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "© Авторы kdebugsettings, %1"
@@ -216,8 +216,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Изменить правило"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
@@ -226,7 +226,7 @@ msgstr[1] "Удалить правила
 msgstr[2] "Удалить правила"
 msgstr[3] "Удалить правило"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -384,7 +384,7 @@ msgid "Rules Settings With Environment V
 msgstr "Настройка правил через переменную среды"
 
 # BUGME: please add @title:window --aspotashev
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Сохранить как…"
@@ -401,40 +401,40 @@ msgid "'%1' cannot be opened. Please ver
 msgstr "Не удалось открыть файл «%1»."
 
 # BUGME: please add @title:window --aspotashev
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Вставка категорий"
 
 # BUGME: please add @title:window --aspotashev
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Файлы категорий"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Категории из файла «%1» вставлены."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Вставка категорий"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Название группы"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Название:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -443,24 +443,24 @@ msgstr ""
 "<b>«%1»</b> уже используется в качестве названия группы.\n"
 "Выберите другое название."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Название не может быть пустым. Используйте новое название."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Сохранение в файл"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Файл приложения KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -489,13 +489,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Загрузить из файла…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Сохранить как файл…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/sa/kdebugsettings.po 25.08.2-0ubuntu1/po/sa/kdebugsettings.po
--- 25.04.0-2/po/sa/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/sa/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+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"
@@ -19,33 +19,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n>2);\n"
 "X-Generator: Lokalize 24.08.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings इति"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "त्रुटिनिवारणसेटिंग्स् विन्यस्यताम्"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(ग) 2015-%1 kdebugsettings लेखक"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "लॉरेण्ट् मोंटेल्"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "परिपालकः"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -53,31 +53,31 @@ msgstr ""
 "QStandardPaths परीक्षणविधिं सक्षमं कुर्वन्तु, अर्थात् unittests द्वारा उपयुज्यमानाः पठन/"
 "लेखनसेटिंग्स्"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "सर्वेषां मॉड्यूलानां कृते पूर्णं त्रुटिनिवारणं सक्रियं कुर्वन्तु ।"
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "सर्वेषां मॉड्यूलानां कृते पूर्णं त्रुटिनिवारणं निष्क्रियं कुर्वन्तु ।"
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "console (console मध्ये) इति रूपेण debug mode परिवर्तयन्तु ।"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 "लॉगिंग् श्रेणीनाम निर्दिशतु यत् भवान् त्रुटिनिवारणविधिं परिवर्तयितुम् इच्छति (कन्सोल् मध्ये) ।"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "त्रुटिनिवारणविधिं परिवर्तयितुं असम्भवम्"
@@ -157,7 +157,7 @@ msgstr "आलोचनात्मक 
 msgid "No Debug Messages"
 msgstr "न त्रुटिनिवारणसन्देशाः"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(ग) %1 kdebugsettings लेखकाः"
@@ -213,15 +213,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "सम्पादन नियम"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "नियमं निष्कासयतु"
 msgstr[1] "नियमाः निष्कासयन्तु"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -375,7 +375,7 @@ msgstr "कस्टम नियम"
 msgid "Rules Settings With Environment Variable"
 msgstr "पर्यावरणचरसहितं नियमसेटिंग्स्"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Save As…"
@@ -391,63 +391,63 @@ msgstr "युज्…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1' उद्घाटयितुं न शक्यते। कृपया सत्यापित करें।"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "श्रेणियाँ सम्मिलित करें"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "श्रेणयः सञ्चिकाः"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "'%1' सञ्चिकातः श्रेणयः सम्मिलिताः ।"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "श्रेणियाँ सम्मिलित करें"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "समूहनाम"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "नामः:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr "<b>&#39;%1&#39;</b> पूर्वमेव समूहनामरूपेण उपयुज्यते । अन्यनामरूपेण रक्षन्तु ।"
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "रिक्तनामरूपेण रक्षितुं न शक्यते। कृपया नूतनस्य उपयोगं कुर्वन्तु।"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "यथा रक्षतु"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings सञ्चिका (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -475,13 +475,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "सञ्चिकातः लोड् कुर्वन्तु…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "सञ्चिकारूपेण रक्षन्तु…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/sk/kdebugsettings.po 25.08.2-0ubuntu1/po/sk/kdebugsettings.po
--- 25.04.0-2/po/sk/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/sk/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2022-04-09 19:24+0200\n"
 "Last-Translator: Roman Paholik <wizzardsk@gmail.com>\n"
 "Language-Team: Slovak <kde-sk@linux.sk>\n"
@@ -17,34 +17,34 @@ msgstr ""
 "X-Generator: Lokalize 21.12.3\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Nastaviť nastavenie ladenia"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 autori kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, fuzzy, kde-format
 #| msgid "Laurent Montel"
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Správca"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -52,22 +52,22 @@ msgstr ""
 "Povoliť testovací režim QStandardPaths, t.j. nastavenia čítania/zápisu "
 "používané unittestami"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Aktivovať úplné ladenie pre všetky moduly."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Zakázať úplné ladenie pre všetky moduly."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Zmena režimu ladenia na konzolu (v konzole)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -75,9 +75,9 @@ msgstr ""
 "Zadajte názov kategórie protokolovania, ktorú chcete zmeniť v režime ladenia "
 "(v konzole)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Nie je možné zmeniť režim ladenia"
@@ -157,7 +157,7 @@ msgstr "Kritické správy"
 msgid "No Debug Messages"
 msgstr "Žiadne správy ladenia"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, fuzzy, kde-format
 #| msgid "(c) 2015-%1 kdebugsettings authors"
 msgid "(c) %1 kdebugsettings authors"
@@ -222,8 +222,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Upraviť pravidlo"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, fuzzy, kde-format
 #| msgid "Remove Rule"
 msgid "Remove Rule"
@@ -232,7 +232,7 @@ msgstr[0] "Odstrániť pravidlo"
 msgstr[1] "Odstrániť pravidlo"
 msgstr[2] "Odstrániť pravidlo"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -402,7 +402,7 @@ msgstr "Vlastné pravidlá"
 msgid "Rules Settings With Environment Variable"
 msgstr "Nastavenia pravidiel s premennou prostredia"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgid "Save As…"
@@ -420,41 +420,41 @@ msgstr "Vložiť..."
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1' nie je možné otvoriť. Prosím, skontrolujte ho."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Vložiť kategórie"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Súbory kategórií"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Kategórie zo súboru '%1' boli vložené."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, fuzzy, kde-format
 #| msgid "Insert Categories"
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Vložiť kategórie"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, fuzzy, kde-format
 #| msgid "Group Name"
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Názov skupiny"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Názov:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, fuzzy, kde-format
 #| msgid ""
 #| "'%1' is already used as a group name.\n"
@@ -466,25 +466,25 @@ msgstr ""
 "'%1' sa už používa ako názov skupiny.\n"
 "Prosím vložte nový názov."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Nemožno uložiť ako prázdny názov. Použite nový názov."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Uložiť ako"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Súbor KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 #| msgid "Load Debug Settings Files"
 msgctxt "@title:window"
@@ -516,14 +516,14 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Načítať zo súboru..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, fuzzy, kde-format
 #| msgid "Save As File..."
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Uložiť ako súbor..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, fuzzy, kde-format
 #| msgid "Save As Group..."
 msgctxt "@action"
diff -pruN 25.04.0-2/po/sl/kdebugsettings.po 25.08.2-0ubuntu1/po/sl/kdebugsettings.po
--- 25.04.0-2/po/sl/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/sl/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-30 09:21+0200\n"
 "Last-Translator: Matjaž Jeran <matjaz.jeran@amis.net>\n"
 "Language-Team: Slovenian <lugos-slo@lugos.si>\n"
@@ -20,33 +20,33 @@ msgstr ""
 "Translator: Andrej Mernik <andrejm@ubuntu.si>\n"
 "X-Generator: Poedit 3.4.4\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugsSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Nastavi možnosti za razhroščevanje"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 avtorji kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Vzdrževalec"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -54,22 +54,22 @@ msgstr ""
 "Omogoči testni način QStandardPaths, to je npr. nastavitve branja/pisanja, "
 "ki jih uporabljajo testi enot"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Aktivirajte popolno odkrivanje napak za vse module."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Onemogočite popolno odkrivanje napak za vse module."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Spremeni način za odkrivanje napak s konzolo (v konzoli)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -77,9 +77,9 @@ msgstr ""
 "Določite ime kategorije beleženja, ki ga želite spremeniti v načinu za "
 "odkrivanje napak (v konzoli)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Ni mogoče spremeniti načina za odkrivanje napak"
@@ -159,7 +159,7 @@ msgstr "Kritična sporočila"
 msgid "No Debug Messages"
 msgstr "Brez sporočil o napakah"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 avtorji kdebugsettings"
@@ -215,8 +215,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Uredi pravilo"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
@@ -225,7 +225,7 @@ msgstr[1] "Odstrani pravili"
 msgstr[2] "Odstrani pravila"
 msgstr[3] "Odstrani pravila"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -381,7 +381,7 @@ msgstr "Pravila po meri"
 msgid "Rules Settings With Environment Variable"
 msgstr "Nastavitev pravil z okoljsko spremenljivko"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Shrani kot…"
@@ -397,39 +397,39 @@ msgstr "Vstavi…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "'%1' ni mogoče odpreti."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Vstavi kategorije"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Datoteke s kategorijami"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Kategorije iz datoteke '%1' vstavljene."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Vstavi kategorije"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Ime grupe"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Ime:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -438,24 +438,24 @@ msgstr ""
 "<b>'%1'</b> je že uporabljeno kot ime grupe.\n"
 "Shranite jo pod drugim imenom."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Ni mogoče shraniti s praznim imenom. Prosim uporabite novo ime."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Shrani kot"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings File (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -483,13 +483,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Naloži iz datoteke…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Shrani kot datoteko…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/sr/kdebugsettings.po 25.08.2-0ubuntu1/po/sr/kdebugsettings.po
--- 25.04.0-2/po/sr/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/sr/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -4,7 +4,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2017-12-31 22:42+0100\n"
 "Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
@@ -18,65 +18,65 @@ msgstr ""
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, fuzzy, kde-format
 #| msgid "kdebugssettings"
 msgid "KDebugSettings"
 msgstr "К‑исправљачке-поставке"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Подесите исправљачке поставке"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2017 kdebugsettings authors"
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015–2017, аутори К‑исправљачких-поставки"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, fuzzy, kde-format
 #| msgid "Laurent Montel"
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Лорен Монтел"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Одржавалац"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr ""
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr ""
@@ -167,7 +167,7 @@ msgstr "критично"
 msgid "No Debug Messages"
 msgstr ""
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2017 kdebugsettings authors"
 msgid "(c) %1 kdebugsettings authors"
@@ -238,8 +238,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Уређивање посебног правила"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, fuzzy, kde-format
 #| msgid "Remove..."
 msgid "Remove Rule"
@@ -249,7 +249,7 @@ msgstr[1] "Уклони..."
 msgstr[2] "Уклони..."
 msgstr[3] "Уклони..."
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -418,7 +418,7 @@ msgid "Rules Settings With Environment V
 msgstr "Правила задата променљивом окружења"
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgid "Save As…"
@@ -437,69 +437,69 @@ msgid "'%1' cannot be opened. Please ver
 msgstr "„%1“ не може да се отвори. Проверите то."
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Уметање категорија"
 
 # >> @item
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "фајлови категорија"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, fuzzy, kde-format
 #| msgid "Insert Categories"
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Уметање категорија"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Уписивање као"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 #| msgid "Load Debug Settings Files"
 msgctxt "@title:window"
@@ -529,14 +529,14 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Сачувај као..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Сачувај као..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
diff -pruN 25.04.0-2/po/sr@ijekavian/kdebugsettings.po 25.08.2-0ubuntu1/po/sr@ijekavian/kdebugsettings.po
--- 25.04.0-2/po/sr@ijekavian/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/sr@ijekavian/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -4,7 +4,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2017-12-31 22:42+0100\n"
 "Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
@@ -18,65 +18,65 @@ msgstr ""
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, fuzzy, kde-format
 #| msgid "kdebugssettings"
 msgid "KDebugSettings"
 msgstr "К‑исправљачке-поставке"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Подесите исправљачке поставке"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2017 kdebugsettings authors"
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015–2017, аутори К‑исправљачких-поставки"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, fuzzy, kde-format
 #| msgid "Laurent Montel"
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Лорен Монтел"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Одржавалац"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr ""
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr ""
@@ -167,7 +167,7 @@ msgstr "критично"
 msgid "No Debug Messages"
 msgstr ""
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2017 kdebugsettings authors"
 msgid "(c) %1 kdebugsettings authors"
@@ -238,8 +238,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Уређивање посебног правила"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, fuzzy, kde-format
 #| msgid "Remove..."
 msgid "Remove Rule"
@@ -249,7 +249,7 @@ msgstr[1] "Уклони..."
 msgstr[2] "Уклони..."
 msgstr[3] "Уклони..."
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -418,7 +418,7 @@ msgid "Rules Settings With Environment V
 msgstr "Правила задата променљивом окружења"
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgid "Save As…"
@@ -437,69 +437,69 @@ msgid "'%1' cannot be opened. Please ver
 msgstr "„%1“ не може да се отвори. Проверите то."
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Уметање категорија"
 
 # >> @item
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "фајлови категорија"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, fuzzy, kde-format
 #| msgid "Insert Categories"
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Уметање категорија"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Уписивање као"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 #| msgid "Load Debug Settings Files"
 msgctxt "@title:window"
@@ -529,14 +529,14 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Сачувај као..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Сачувај као..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
diff -pruN 25.04.0-2/po/sr@ijekavianlatin/kdebugsettings.po 25.08.2-0ubuntu1/po/sr@ijekavianlatin/kdebugsettings.po
--- 25.04.0-2/po/sr@ijekavianlatin/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/sr@ijekavianlatin/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -4,7 +4,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2017-12-31 22:42+0100\n"
 "Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
@@ -18,65 +18,65 @@ msgstr ""
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, fuzzy, kde-format
 #| msgid "kdebugssettings"
 msgid "KDebugSettings"
 msgstr "K‑ispravljačke-postavke"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Podesite ispravljačke postavke"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2017 kdebugsettings authors"
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015–2017, autori K‑ispravljačkih-postavki"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, fuzzy, kde-format
 #| msgid "Laurent Montel"
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Loren Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Održavalac"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr ""
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr ""
@@ -167,7 +167,7 @@ msgstr "kritično"
 msgid "No Debug Messages"
 msgstr ""
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2017 kdebugsettings authors"
 msgid "(c) %1 kdebugsettings authors"
@@ -238,8 +238,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Uređivanje posebnog pravila"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, fuzzy, kde-format
 #| msgid "Remove..."
 msgid "Remove Rule"
@@ -249,7 +249,7 @@ msgstr[1] "Ukloni..."
 msgstr[2] "Ukloni..."
 msgstr[3] "Ukloni..."
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -419,7 +419,7 @@ msgid "Rules Settings With Environment V
 msgstr "Pravila zadata promenljivom okruženja"
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgid "Save As…"
@@ -438,69 +438,69 @@ msgid "'%1' cannot be opened. Please ver
 msgstr "„%1“ ne može da se otvori. Proverite to."
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Umetanje kategorija"
 
 # >> @item
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "fajlovi kategorija"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, fuzzy, kde-format
 #| msgid "Insert Categories"
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Umetanje kategorija"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Upisivanje kao"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 #| msgid "Load Debug Settings Files"
 msgctxt "@title:window"
@@ -530,14 +530,14 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Sačuvaj kao..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Sačuvaj kao..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
diff -pruN 25.04.0-2/po/sr@latin/kdebugsettings.po 25.08.2-0ubuntu1/po/sr@latin/kdebugsettings.po
--- 25.04.0-2/po/sr@latin/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/sr@latin/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -4,7 +4,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2017-12-31 22:42+0100\n"
 "Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
@@ -18,65 +18,65 @@ msgstr ""
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, fuzzy, kde-format
 #| msgid "kdebugssettings"
 msgid "KDebugSettings"
 msgstr "K‑ispravljačke-postavke"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Podesite ispravljačke postavke"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2017 kdebugsettings authors"
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015–2017, autori K‑ispravljačkih-postavki"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, fuzzy, kde-format
 #| msgid "Laurent Montel"
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Loren Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Održavalac"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr ""
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr ""
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr ""
@@ -167,7 +167,7 @@ msgstr "kritično"
 msgid "No Debug Messages"
 msgstr ""
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, fuzzy, kde-format
 #| msgid "(c) 2015-2017 kdebugsettings authors"
 msgid "(c) %1 kdebugsettings authors"
@@ -238,8 +238,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Uređivanje posebnog pravila"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, fuzzy, kde-format
 #| msgid "Remove..."
 msgid "Remove Rule"
@@ -249,7 +249,7 @@ msgstr[1] "Ukloni..."
 msgstr[2] "Ukloni..."
 msgstr[3] "Ukloni..."
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -419,7 +419,7 @@ msgid "Rules Settings With Environment V
 msgstr "Pravila zadata promenljivom okruženja"
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgid "Save As…"
@@ -438,69 +438,69 @@ msgid "'%1' cannot be opened. Please ver
 msgstr "„%1“ ne može da se otvori. Proverite to."
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Umetanje kategorija"
 
 # >> @item
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "fajlovi kategorija"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, fuzzy, kde-format
 #| msgid "Insert Categories"
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Umetanje kategorija"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
 "Please save as another name."
 msgstr ""
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, fuzzy, kde-format
 #| msgid "Save As"
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Upisivanje kao"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr ""
 
 # >> @title:window
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, fuzzy, kde-format
 #| msgid "Load Debug Settings Files"
 msgctxt "@title:window"
@@ -530,14 +530,14 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Sačuvaj kao..."
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Sačuvaj kao..."
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, fuzzy, kde-format
 #| msgid "Save As..."
 msgctxt "@action"
diff -pruN 25.04.0-2/po/sv/kdebugsettings.po 25.08.2-0ubuntu1/po/sv/kdebugsettings.po
--- 25.04.0-2/po/sv/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/sv/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-30 06:51+0200\n"
 "Last-Translator: Stefan Asserhäll <stefan.asserhall@gmail.com>\n"
 "Language-Team: Swedish <kde-i18n-doc@kde.org>\n"
@@ -17,33 +17,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 24.05.2\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Anpassa felsökningsinställningar"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015-%1 Upphovsmännen till kdebugsettings"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Underhåll"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -51,31 +51,31 @@ msgstr ""
 "Aktivera QStandardPaths testläge, dvs. läs- och skrivinställningar använda "
 "av enhetstester"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Aktivera fullständig felsökning för alla moduler."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Inaktivera fullständig felsökning för alla moduler."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Ändra felsökningsläge som terminal (i terminal)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr ""
 "Ange loggningskategorinamn som felsökningsläge ska ändras för (i terminal)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Omöjligt att ändra felsökningsläge"
@@ -155,7 +155,7 @@ msgstr "Kritiska meddelanden"
 msgid "No Debug Messages"
 msgstr "Inga felsökningsmeddelanden"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "© %1 Upphovsmännen till kdebugsettings"
@@ -211,15 +211,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Redigera regel"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Ta bort regel"
 msgstr[1] "Ta bort regler"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -373,7 +373,7 @@ msgstr "Egna regler"
 msgid "Rules Settings With Environment Variable"
 msgstr "Regelinställningar med miljövariabel"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Spara som…"
@@ -389,39 +389,39 @@ msgstr "Infoga…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "Kan inte öppna \"%1\". Kontrollera det."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Infoga kategorier"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Kategorifiler"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Kategorier från filen '%1' infogade."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Infoga kategorier"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Gruppnamn"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Namn:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -430,24 +430,24 @@ msgstr ""
 "<b>'%1'</b> används redan som ett gruppnamn.\n"
 "Spara med ett annat namn."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Kan inte spara med tomt namn. Använd ett nytt."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Spara som"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "Kdebugsettings-fil (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -475,13 +475,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Läs in från fil…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Spara som fil…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/tr/kdebugsettings.po 25.08.2-0ubuntu1/po/tr/kdebugsettings.po
--- 25.04.0-2/po/tr/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/tr/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-12-19 16:55+0300\n"
 "Last-Translator: Emir SARI <emir_sari@icloud.com>\n"
 "Language-Team: Turkish <kde-l10n-tr@kde.org>\n"
@@ -17,33 +17,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Lokalize 25.03.70\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "K Hata Ayıklama Ayarları"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Hata ayıklama ayarlarını yapılandır"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© 2015–%1 K Hata Ayıklama Ayarları yazarları"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Bakımcı"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -51,22 +51,22 @@ msgstr ""
 "QStandardPaths sınama kipini etkinleştir; örneğin birim sınamaları "
 "tarafından kullanılan okuma/yazma ayarları"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Tüm modüller için tam hata ayıklamayı etkinleştir."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Tüm modüller için tam hata ayıklamayı devre dışı bırak."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Hata ayıklama kipini konsol olarak değiştir (konsolda)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -74,9 +74,9 @@ msgstr ""
 "Hata ayıklama kipini değiştirmek istediğiniz günlükleme kategori adını "
 "belirtin (konsolda)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Hata ayıklama kipi değiştirilemiyor"
@@ -156,7 +156,7 @@ msgstr "Kritik İletiler"
 msgid "No Debug Messages"
 msgstr "Hata Ayıklama İletisi Yok"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "© %1 K Hata Ayıklama Ayarları yazarları"
@@ -212,15 +212,15 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Kuralı Düzenle"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "Kuralı Kaldır"
 msgstr[1] "Kuralları Kaldır"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -374,7 +374,7 @@ msgstr "Özel Kurallar"
 msgid "Rules Settings With Environment Variable"
 msgstr "Çevre Değişkeni İle Kural Ayarları"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Farklı Kaydet…"
@@ -390,39 +390,39 @@ msgstr "Gir…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "“%1” açılamıyor. Lütfen doğrulayın."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Kategoriler Ekle"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Kategoriler Dosyaları"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "“%1” dosyasından kategoriler eklendi."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Kategoriler Ekle"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Grup Adı"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Ad:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -431,24 +431,24 @@ msgstr ""
 "<b>“%1”</b>, grup adı olarak halihazırda kullanılıyor.\n"
 "Lütfen başka bir adla kaydedin."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Boş adla kaydedilemiyor. Lütfen yeni bir tane girin."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Farklı Kaydet"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "K Hata Ayıklama Ayarları Dosyası (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -476,13 +476,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Dosyadan Yükle…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Dosya Olarak Farklı Kaydet…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/uk/kdebugsettings.po 25.08.2-0ubuntu1/po/uk/kdebugsettings.po
--- 25.04.0-2/po/uk/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/uk/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdebugsettings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-07-30 09:51+0300\n"
 "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
 "Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
@@ -20,33 +20,33 @@ msgstr ""
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Lokalize 23.04.3\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "Налаштовування параметрів діагностики"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "© Автори kdebugsettings, 2015–%1"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "Супровідник"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
@@ -54,22 +54,22 @@ msgstr ""
 "Увімкнути режим перевірки QStandardPaths, тобто параметрів читання та "
 "запису, які використовуються у перевірках модулів"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "Увімкнути повну діагностику для усіх модулів."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "Вимкнути повну діагностику для усіх модулів."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "Змінити режим діагностики як консолі (у консолі)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
@@ -77,9 +77,9 @@ msgstr ""
 "Вкажіть назву категорії журналу, для якої ви хочете змінити режим "
 "діагностики (у консолі)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "Неможливо змінити режим діагностики"
@@ -159,7 +159,7 @@ msgstr "Критичні повідом
 msgid "No Debug Messages"
 msgstr "Без діагностичних повідомлень"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "© Автори kdebugsettings, %1"
@@ -215,8 +215,8 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "Змінити правило"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
@@ -225,7 +225,7 @@ msgstr[1] "Вилучити правил
 msgstr[2] "Вилучити правила"
 msgstr[3] "Вилучити правило"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -381,7 +381,7 @@ msgstr "Нетипові правила"
 msgid "Rules Settings With Environment Variable"
 msgstr "Параметри правил зі змінною середовища"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "Зберегти як…"
@@ -397,39 +397,39 @@ msgstr "Вставити…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "Не вдалося відкрити «%1». Будь ласка, перевірте."
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "Вставити категорії"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "Файли категорій"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "Вставлено категорії з файла «%1»."
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "Вставлення категорій"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "Назва групи"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "Назва:"
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -438,24 +438,24 @@ msgstr ""
 "<b>%1</b> вже використано як назву групи.\n"
 "Будь ласка, виберіть іншу назву."
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "Неможливо зберегти з порожньою назвою. Будь ласка, вкажіть нову назву."
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Зберегти як"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "файл KDebugSettings (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -483,13 +483,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "Завантажити з файла…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "Зберегти як файл…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/zh_CN/kdebugsettings.po 25.08.2-0ubuntu1/po/zh_CN/kdebugsettings.po
--- 25.04.0-2/po/zh_CN/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/zh_CN/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-04-22 15:58\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
@@ -17,62 +17,62 @@ msgstr ""
 "X-Crowdin-File: /kf6-stable/messages/kdebugsettings/kdebugsettings.pot\n"
 "X-Crowdin-File-ID: 51958\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "配置调试设置"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 kdebugsettings authors"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "维护者"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr "启用 QStandardPaths 测试模式，即读写被unitests使用的设置"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "激活所有模块的完整调试."
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "禁用所有模块的完整调试."
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "将调试模式更改为命令行终端模式 (在命令行终端内)"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr "指定你想更改调试模式的日志分类名称 (在命令行终端内)"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "无法更改调试模式"
@@ -152,7 +152,7 @@ msgstr "严重消息"
 msgid "No Debug Messages"
 msgstr "无调试消息"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 kdebugsettings authors"
@@ -208,14 +208,14 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "编辑规则"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "移除规则"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -368,7 +368,7 @@ msgstr "自定义规则"
 msgid "Rules Settings With Environment Variable"
 msgstr "环境变量和规则设置"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "另存为…"
@@ -384,39 +384,39 @@ msgstr "插入…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "“%1”无法打开。请检查。"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "插入类别"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "分类文件"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "已插入来自文件“%1”的类别。"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "插入类别"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "分组名称"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "名称："
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -425,24 +425,24 @@ msgstr ""
 "<b>“%1”</b>已被用作分组名称。\n"
 "请另存为其他名称。"
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "无法保存为空名称。请使用新名称。"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "另存为"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings 文件 (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -470,13 +470,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "加载文件…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "另存为文件…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/po/zh_TW/kdebugsettings.po 25.08.2-0ubuntu1/po/zh_TW/kdebugsettings.po
--- 25.04.0-2/po/zh_TW/kdebugsettings.po	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/po/zh_TW/kdebugsettings.po	2025-09-30 21:42:27.000000000 +0000
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-11-27 00:43+0000\n"
+"POT-Creation-Date: 2025-06-24 00:45+0000\n"
 "PO-Revision-Date: 2024-08-03 14:37+0900\n"
 "Last-Translator: Kisaragi Hiu <mail@kisaragi-hiu.com>\n"
 "Language-Team: Traditional Chinese <zh-l10n@lists.slat.org>\n"
@@ -20,62 +20,62 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Lokalize 24.04.70\n"
 
-#: src/apps/main.cpp:40 src/quickapps/main.cpp:60
+#: src/apps/main.cpp:41 src/quickapps/main.cpp:62
 #, kde-format
 msgid "KDebugSettings"
 msgstr "KDebugSettings"
 
-#: src/apps/main.cpp:42 src/quickapps/main.cpp:62
+#: src/apps/main.cpp:43 src/quickapps/main.cpp:64
 #, kde-format
 msgid "Configure debug settings"
 msgstr "調整除錯設定"
 
-#: src/apps/main.cpp:44
+#: src/apps/main.cpp:45
 #, kde-format
 msgid "(c) 2015-%1 kdebugsettings authors"
 msgstr "(c) 2015-%1 kdebugsettings 作者群"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgctxt "@info:credit"
 msgid "Laurent Montel"
 msgstr "Laurent Montel"
 
-#: src/apps/main.cpp:45 src/quickapps/main.cpp:65
+#: src/apps/main.cpp:46 src/quickapps/main.cpp:67
 #, kde-format
 msgid "Maintainer"
 msgstr "維護者"
 
-#: src/apps/main.cpp:54 src/quickapps/main.cpp:71
+#: src/apps/main.cpp:55 src/quickapps/main.cpp:73
 #, kde-format
 msgid ""
 "Enable QStandardPaths test mode, i.e. read/write settings used by unittests"
 msgstr "開啟 QStandardPaths 測試模式，即讀取 / 寫入用於 unittests 的設定"
 
-#: src/apps/main.cpp:57 src/quickapps/main.cpp:74
+#: src/apps/main.cpp:58 src/quickapps/main.cpp:76
 #, kde-format
 msgid "Activate full debug for all modules."
 msgstr "對所有模組啟用完整偵錯。"
 
-#: src/apps/main.cpp:59 src/quickapps/main.cpp:76
+#: src/apps/main.cpp:60 src/quickapps/main.cpp:78
 #, kde-format
 msgid "Disable full debug for all modules."
 msgstr "對所有模組停用完整偵錯。"
 
-#: src/apps/main.cpp:63 src/quickapps/main.cpp:80
+#: src/apps/main.cpp:63 src/quickapps/main.cpp:81
 #, kde-format
 msgid "Change debug mode as console (in console)"
 msgstr "變更除錯模式成終端機（在終端機偵錯）"
 
-#: src/apps/main.cpp:67 src/quickapps/main.cpp:84
+#: src/apps/main.cpp:65 src/quickapps/main.cpp:83
 #, kde-format
 msgid ""
 "Specify logging category name that you want to change debug mode (in console)"
 msgstr "指定（在終端機）要變更除錯模式的記錄分類名稱"
 
-#: src/apps/main.cpp:81 src/apps/main.cpp:91 src/apps/main.cpp:101
-#: src/quickapps/main.cpp:98 src/quickapps/main.cpp:108
-#: src/quickapps/main.cpp:118
+#: src/apps/main.cpp:79 src/apps/main.cpp:89 src/apps/main.cpp:99
+#: src/quickapps/main.cpp:97 src/quickapps/main.cpp:107
+#: src/quickapps/main.cpp:117
 #, kde-format
 msgid "Impossible to change debug mode"
 msgstr "無法變更偵錯模式"
@@ -155,7 +155,7 @@ msgstr "嚴重錯誤訊息"
 msgid "No Debug Messages"
 msgstr "無偵錯訊息"
 
-#: src/quickapps/main.cpp:64
+#: src/quickapps/main.cpp:66
 #, kde-format
 msgid "(c) %1 kdebugsettings authors"
 msgstr "(c) %1 kdebugsettings 作者群"
@@ -211,14 +211,14 @@ msgctxt "@action"
 msgid "Edit Rule"
 msgstr "編輯規則"
 
-#: src/widgets/customdebuglistview.cpp:53
-#: src/widgets/customdebuglistview.cpp:93
+#: src/widgets/customdebuglistview.cpp:52
+#: src/widgets/customdebuglistview.cpp:90
 #, kde-format
 msgid "Remove Rule"
 msgid_plural "Remove Rules"
 msgstr[0] "移除規則"
 
-#: src/widgets/customdebuglistview.cpp:88
+#: src/widgets/customdebuglistview.cpp:85
 #, kde-format
 msgid "Do you want to remove this rule?"
 msgid_plural "Do you want to remove these %1 rules?"
@@ -369,7 +369,7 @@ msgstr "自訂規則"
 msgid "Rules Settings With Environment Variable"
 msgstr "用環境變數設定的規則"
 
-#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:15
+#: src/widgets/kdebugsettingsdialog.cpp:76 src/widgets/savetoolbutton.cpp:17
 #, kde-format
 msgid "Save As…"
 msgstr "另存為…"
@@ -385,39 +385,39 @@ msgstr "插入…"
 msgid "'%1' cannot be opened. Please verify it."
 msgstr "無法開啟  %1。請檢查。"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Insert Categories"
 msgstr "插入類別"
 
-#: src/widgets/kdebugsettingsdialog.cpp:188
+#: src/widgets/kdebugsettingsdialog.cpp:187
 #, kde-format
 msgid "Categories Files"
 msgstr "類別檔案"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgid "Categories from file '%1' inserted."
 msgstr "已插入來自檔案 '%1' 的分類。"
 
-#: src/widgets/kdebugsettingsdialog.cpp:202
+#: src/widgets/kdebugsettingsdialog.cpp:201
 #, kde-format
 msgctxt "@title:window"
 msgid "Insert Categories"
 msgstr "插入類別"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgctxt "@title:window"
 msgid "Group Name"
 msgstr "群組名稱"
 
-#: src/widgets/kdebugsettingsdialog.cpp:210
+#: src/widgets/kdebugsettingsdialog.cpp:209
 #, kde-format
 msgid "Name:"
 msgstr "名稱："
 
-#: src/widgets/kdebugsettingsdialog.cpp:215
+#: src/widgets/kdebugsettingsdialog.cpp:214
 #, kde-format
 msgid ""
 "<b>'%1'</b> is already used as a group name.\n"
@@ -426,24 +426,24 @@ msgstr ""
 "<b>'%1'</b> 與既存的群組名稱衝突。\n"
 "請另存為其他名稱。"
 
-#: src/widgets/kdebugsettingsdialog.cpp:224
+#: src/widgets/kdebugsettingsdialog.cpp:223
 #, kde-format
 msgid "Can not save as empty name. Please use a new one."
 msgstr "無法另存為空白名稱。請選擇一個新的。"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
+#: src/widgets/kdebugsettingsdialog.cpp:230
 #, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "另存為"
 
-#: src/widgets/kdebugsettingsdialog.cpp:231
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:230
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgid "KDebugSettings File (*.kdebugsettingsrules)"
 msgstr "KDebugSettings 檔案 (*.kdebugsettingsrules)"
 
-#: src/widgets/kdebugsettingsdialog.cpp:240
+#: src/widgets/kdebugsettingsdialog.cpp:239
 #, kde-format
 msgctxt "@title:window"
 msgid "Load Debug Settings Files"
@@ -471,13 +471,13 @@ msgctxt "@action"
 msgid "Load From File…"
 msgstr "從檔案載入…"
 
-#: src/widgets/savetoolbutton.cpp:20
+#: src/widgets/savetoolbutton.cpp:22
 #, kde-format
 msgctxt "@action"
 msgid "Save As File…"
 msgstr "另存為檔案…"
 
-#: src/widgets/savetoolbutton.cpp:23
+#: src/widgets/savetoolbutton.cpp:25
 #, kde-format
 msgctxt "@action"
 msgid "Save As Group…"
diff -pruN 25.04.0-2/readme-build-ftime.txt 25.08.2-0ubuntu1/readme-build-ftime.txt
--- 25.04.0-2/readme-build-ftime.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/readme-build-ftime.txt	2025-09-30 21:42:27.000000000 +0000
@@ -23,4 +23,3 @@ ClangBuildAnalyzer --analyze build-ftime
 
 
 see https://aras-p.info/blog/2019/09/28/Clang-Build-Analyzer/
-
diff -pruN 25.04.0-2/snapcraft.yaml 25.08.2-0ubuntu1/snapcraft.yaml
--- 25.04.0-2/snapcraft.yaml	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/snapcraft.yaml	2025-09-30 21:42:27.000000000 +0000
@@ -1,11 +1,11 @@
-# SPDX-FileCopyrightText: 2024 Scarlett Moore <sgmoore@kde.org>
+# SPDX-FileCopyrightText: 2024-2025 Scarlett Moore <sgmoore@kde.org>
 #
 # SPDX-License-Identifier: CC0-1.0
 ---
 name: kdebugsettings
 confinement: strict
 grade: stable
-base: core22
+base: core24
 adopt-info: kdebugsettings
 apps:
   kdebugsettings:
@@ -15,7 +15,6 @@ apps:
     desktop: usr/share/applications/org.kde.kdebugsettings.desktop
     command: usr/bin/kdebugsettings
     plugs:
-      - audio-record
       - home
 slots:
   session-dbus-interface:
@@ -27,15 +26,6 @@ plugs:
     interface: personal-files
     write:
       - $HOME/.config/QtProject/qtlogging.ini
-package-repositories:
-  - type: apt
-    components:
-      - main
-    suites:
-      - jammy
-    key-id: 444DABCF3667D0283F894EDDE6D4736255751E5D
-    url: http://origin.archive.neon.kde.org/user
-    key-server: keyserver.ubuntu.com
 parts:
   kdebugsettings:
     parse-info:
@@ -47,19 +37,10 @@ parts:
       - -DCMAKE_INSTALL_PREFIX=/usr
       - -DCMAKE_BUILD_TYPE=Release
       - -DQT_MAJOR_VERSION=6
-      - -DBUILD_WITH_QT6=ON
       - -DBUILD_TESTING=OFF
-      - -DCMAKE_INSTALL_SYSCONFDIR=/etc
-      - -DCMAKE_INSTALL_LOCALSTATEDIR=/var
-      - -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON
-      - -DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF
-      - -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON
-      - -DCMAKE_INSTALL_RUNSTATEDIR=/run
-      - -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON
-      - -DCMAKE_VERBOSE_MAKEFILE=ON
-      - -DCMAKE_INSTALL_LIBDIR=lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR
-      - --log-level=STATUS
-      - -DCMAKE_LIBRARY_PATH=lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR
+    build-environment:
+      - LD_LIBRARY_PATH: >
+         "/snap/mesa-2404/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR:$CRAFT_STAGE/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR:/snap/kde-qt6-core24-sdk/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/libproxy:/snap/kf6-core24-sdk/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR:$LD_LIBRARY_PATH"
     prime:
       - -usr/lib/*/cmake/*
       - -usr/include/*
@@ -69,16 +50,24 @@ parts:
       - -usr/lib/gcc/$CRAFT_ARCH_TRIPLET_BUILD_FOR/6.0.0
       - -usr/lib/aspell/*
       - -usr/share/lintian
+  gpu-2404:
+    after: [kdebugsettings]
+    source: https://github.com/canonical/gpu-snap.git
+    plugin: dump
+    override-prime: |
+      craftctl default
+      ${CRAFT_PART_SRC}/bin/gpu-2404-cleanup mesa-2404
+    prime:
+      - bin/gpu-2404-wrapper
   cleanup:
     after:
       - kdebugsettings
     plugin: nil
     build-snaps:
-      - core22
-      - kf6-core22
-      - qt-common-themes
+      - core24
+      - kf6-core24
     override-prime: |
       set -eux
-      for snap in "core22" "kf6-core22" "qt-common-themes"; do
+      for snap in "core24" "kf6-core24"; do
           cd "/snap/$snap/current" && find . -type f,l -exec rm -rf "${CRAFT_PRIME}/{}" \;
       done
diff -pruN 25.04.0-2/src/apps/CMakeLists.txt 25.08.2-0ubuntu1/src/apps/CMakeLists.txt
--- 25.04.0-2/src/apps/CMakeLists.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/apps/CMakeLists.txt	2025-09-30 21:42:27.000000000 +0000
@@ -5,7 +5,8 @@ if(COMPILE_WITH_UNITY_CMAKE_SUPPORT)
     set_target_properties(kdebugsettings PROPERTIES UNITY_BUILD ON)
 endif()
 
-target_link_libraries(kdebugsettings
+target_link_libraries(
+    kdebugsettings
     Qt::Widgets
     KF6::I18n
     libkdebugsettings
@@ -20,15 +21,19 @@ else()
 endif()
 
 if(APPLE)
-    set_target_properties(kdebugsettings PROPERTIES
-        MACOSX_BUNDLE_DISPLAY_NAME "KDebugsettings"
-        MACOSX_BUNDLE_BUNDLE_NAME "KDebugsettings"
-        MACOSX_BUNDLE_LONG_VERSION_STRING "KDebugsettings ${RELEASE_SERVICE_VERSION}"
-        MACOSX_BUNDLE_SHORT_VERSION_STRING "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}"
-        MACOSX_BUNDLE_BUNDLE_VERSION "${RELEASE_SERVICE_VERSION}"
-        MACOSX_BUNDLE_GUI_IDENTIFIER "org.kde.kdebugsettings"
-        MACOSX_BUNDLE_COPYRIGHT "2020-2024 The KDebugsettings Developers")
+    set_target_properties(
+        kdebugsettings
+        PROPERTIES
+            MACOSX_BUNDLE_DISPLAY_NAME "KDebugsettings"
+            MACOSX_BUNDLE_BUNDLE_NAME "KDebugsettings"
+            MACOSX_BUNDLE_LONG_VERSION_STRING
+                "KDebugsettings ${RELEASE_SERVICE_VERSION}"
+            MACOSX_BUNDLE_SHORT_VERSION_STRING
+                "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}"
+            MACOSX_BUNDLE_BUNDLE_VERSION "${RELEASE_SERVICE_VERSION}"
+            MACOSX_BUNDLE_GUI_IDENTIFIER "org.kde.kdebugsettings"
+            MACOSX_BUNDLE_COPYRIGHT "2020-2024 The KDebugsettings Developers"
+    )
 endif()
 
-
-install(TARGETS kdebugsettings  ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
+install(TARGETS kdebugsettings ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
diff -pruN 25.04.0-2/src/apps/main.cpp 25.08.2-0ubuntu1/src/apps/main.cpp
--- 25.04.0-2/src/apps/main.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/apps/main.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,7 @@
 */
 
 #include "config-kdebugsettings.h"
+
 #include <QApplication>
 
 #include "jobs/changedebugmodejob.h"
@@ -27,7 +28,7 @@
 #include <KIconTheme>
 
 #include <KStyleManager>
-
+using namespace Qt::Literals::StringLiterals;
 int main(int argc, char **argv)
 {
     KIconTheme::initTheme();
@@ -36,35 +37,32 @@ int main(int argc, char **argv)
     KDSingleApplication sapp;
 #endif
 
-    KAboutData aboutData(QStringLiteral("kdebugsettings"),
+    KAboutData aboutData(u"kdebugsettings"_s,
                          i18n("KDebugSettings"),
                          QStringLiteral(KDEBUGSETTINGS_VERSION),
                          i18n("Configure debug settings"),
                          KAboutLicense::GPL_V2,
-                         i18n("(c) 2015-%1 kdebugsettings authors", QStringLiteral("2025")));
-    aboutData.addAuthor(i18nc("@info:credit", "Laurent Montel"), i18n("Maintainer"), QStringLiteral("montel@kde.org"));
+                         i18n("(c) 2015-%1 kdebugsettings authors", u"2025"_s));
+    aboutData.addAuthor(i18nc("@info:credit", "Laurent Montel"), i18n("Maintainer"), u"montel@kde.org"_s);
     KStyleManager::initStyle();
-    QApplication::setWindowIcon(QIcon::fromTheme(QStringLiteral("debug-run")));
+    QApplication::setWindowIcon(QIcon::fromTheme(u"debug-run"_s));
     KAboutData::setApplicationData(aboutData);
     KCrash::initialize();
 
     QCommandLineParser parser;
     aboutData.setupCommandLine(&parser);
 
-    const QCommandLineOption testModeOption(QStringLiteral("test-mode"), i18n("Enable QStandardPaths test mode, i.e. read/write settings used by unittests"));
+    const QCommandLineOption testModeOption(u"test-mode"_s, i18n("Enable QStandardPaths test mode, i.e. read/write settings used by unittests"));
     parser.addOption(testModeOption);
 
-    const QCommandLineOption switchFullDebugOption(QStringLiteral("enable-full-debug"), i18n("Activate full debug for all modules."));
+    const QCommandLineOption switchFullDebugOption(u"enable-full-debug"_s, i18n("Activate full debug for all modules."));
     parser.addOption(switchFullDebugOption);
-    const QCommandLineOption switchOffDebugOption(QStringLiteral("disable-full-debug"), i18n("Disable full debug for all modules."));
+    const QCommandLineOption switchOffDebugOption(u"disable-full-debug"_s, i18n("Disable full debug for all modules."));
     parser.addOption(switchOffDebugOption);
 
-    const QCommandLineOption changeDebugSettingOption(QStringLiteral("debug-mode"),
-                                                      i18n("Change debug mode as console (in console)"),
-                                                      QStringLiteral("Full|Info|Warning|Critical|Off"));
+    const QCommandLineOption changeDebugSettingOption(u"debug-mode"_s, i18n("Change debug mode as console (in console)"), u"Full|Info|Warning|Critical|Off"_s);
     parser.addOption(changeDebugSettingOption);
-    parser.addPositionalArgument(QStringLiteral("logging category name"),
-                                 i18n("Specify logging category name that you want to change debug mode (in console)"));
+    parser.addPositionalArgument(u"logging category name"_s, i18n("Specify logging category name that you want to change debug mode (in console)"));
 
     parser.process(app);
     aboutData.processCommandLine(&parser);
@@ -75,7 +73,7 @@ int main(int argc, char **argv)
 
     if (parser.isSet(switchFullDebugOption)) {
         ChangeDebugModeJob job;
-        job.setDebugMode(QStringLiteral("Full"));
+        job.setDebugMode(u"Full"_s);
         job.setWithoutArguments(true);
         if (!job.start()) {
             std::cout << i18n("Impossible to change debug mode").toLocal8Bit().data() << std::endl;
@@ -85,7 +83,7 @@ int main(int argc, char **argv)
     }
     if (parser.isSet(switchOffDebugOption)) {
         ChangeDebugModeJob job;
-        job.setDebugMode(QStringLiteral("Off"));
+        job.setDebugMode(u"Off"_s);
         job.setWithoutArguments(true);
         if (!job.start()) {
             std::cout << i18n("Impossible to change debug mode").toLocal8Bit().data() << std::endl;
diff -pruN 25.04.0-2/src/core/CMakeLists.txt 25.08.2-0ubuntu1/src/core/CMakeLists.txt
--- 25.04.0-2/src/core/CMakeLists.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/CMakeLists.txt	2025-09-30 21:42:27.000000000 +0000
@@ -5,65 +5,61 @@ include_directories(${CMAKE_BINARY_DIR})
 add_library(libkdebugsettingscore SHARED)
 
 ecm_qt_declare_logging_category(libkdebugsettingscore HEADER kdebugsettingscore_debug.h IDENTIFIER KDEBUGSETTINGSCORE_LOG CATEGORY_NAME log_kdebugsettingscore DESCRIPTION "kdebugsettings core" EXPORT KDEBUGSETTINGS)
-target_sources(libkdebugsettingscore PRIVATE
-    jobs/changedebugmodejob.cpp
-    jobs/changedebugmodejob.h
-    jobs/loadcategoriesjob.cpp
-    jobs/loadcategoriesjob.h
-    jobs/saverulesjob.cpp
-    jobs/saverulesjob.h
-
-    model/customloggingcategorymodel.h
-    model/customloggingcategorymodel.cpp
-
-    model/customloggingcategoryproxymodel.h
-    model/customloggingcategoryproxymodel.cpp
-
-    model/kdeapplicationloggingcategorymodel.h
-    model/kdeapplicationloggingcategorymodel.cpp
-
-    model/kdeapplicationloggingcategoryproxymodel.h
-    model/kdeapplicationloggingcategoryproxymodel.cpp
-
-    model/categorytypemodel.h
-    model/categorytypemodel.cpp
-    model/categorytypeproxymodel.h
-    model/categorytypeproxymodel.cpp
-
-    loggingcategory.cpp
-    loggingcategory.h
-    kdebugsettingsutil.cpp
-    kdebugsettingsutil.h
-    renamecategory.cpp
-    renamecategory.h
-
-    kdeloggingcategory.cpp
-    kdeloggingcategory.h
-    kdebugsettingsloadingcategories.cpp
-    kdebugsettingsloadingcategories.h
-
-    libkdebugsettingscore_private_export.h
-
-
-    loggingmanager.h loggingmanager.cpp
+target_sources(
+    libkdebugsettingscore
+    PRIVATE
+        jobs/changedebugmodejob.cpp
+        jobs/changedebugmodejob.h
+        jobs/loadcategoriesjob.cpp
+        jobs/loadcategoriesjob.h
+        jobs/saverulesjob.cpp
+        jobs/saverulesjob.h
+        model/customloggingcategorymodel.h
+        model/customloggingcategorymodel.cpp
+        model/customloggingcategoryproxymodel.h
+        model/customloggingcategoryproxymodel.cpp
+        model/kdeapplicationloggingcategorymodel.h
+        model/kdeapplicationloggingcategorymodel.cpp
+        model/kdeapplicationloggingcategoryproxymodel.h
+        model/kdeapplicationloggingcategoryproxymodel.cpp
+        model/categorytypemodel.h
+        model/categorytypemodel.cpp
+        model/categorytypeproxymodel.h
+        model/categorytypeproxymodel.cpp
+        loggingcategory.cpp
+        loggingcategory.h
+        kdebugsettingsutil.cpp
+        kdebugsettingsutil.h
+        renamecategory.cpp
+        renamecategory.h
+        kdeloggingcategory.cpp
+        kdeloggingcategory.h
+        kdebugsettingsloadingcategories.cpp
+        kdebugsettingsloadingcategories.h
+        libkdebugsettingscore_private_export.h
+        loggingmanager.h
+        loggingmanager.cpp
 )
 
 if(COMPILE_WITH_UNITY_CMAKE_SUPPORT)
     set_target_properties(libkdebugsettingscore PROPERTIES UNITY_BUILD ON)
 endif()
 generate_export_header(libkdebugsettingscore BASE_NAME libkdebugsettingscore)
-target_link_libraries(libkdebugsettingscore
-    Qt::Core
-    KF6::I18n
-)
+target_link_libraries(libkdebugsettingscore Qt::Core KF6::I18n)
 
-set_target_properties(libkdebugsettingscore
-    PROPERTIES OUTPUT_NAME kdebugsettingscore VERSION ${KDEBUGSETTINGS_LIB_VERSION} SOVERSION ${KDEBUGSETTINGS_LIB_SOVERSION}
-    )
+set_target_properties(
+    libkdebugsettingscore
+    PROPERTIES
+        OUTPUT_NAME kdebugsettingscore
+        VERSION ${KDEBUGSETTINGS_LIB_VERSION}
+        SOVERSION ${KDEBUGSETTINGS_LIB_SOVERSION}
+)
 
-install(TARGETS libkdebugsettingscore ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} LIBRARY NAMELINK_SKIP)
+install(
+    TARGETS libkdebugsettingscore ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}
+    LIBRARY NAMELINK_SKIP
+)
 
 if(BUILD_TESTING)
-    add_subdirectory( autotests )
+    add_subdirectory(autotests)
 endif()
-
diff -pruN 25.04.0-2/src/core/autotests/CMakeLists.txt 25.08.2-0ubuntu1/src/core/autotests/CMakeLists.txt
--- 25.04.0-2/src/core/autotests/CMakeLists.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/CMakeLists.txt	2025-09-30 21:42:27.000000000 +0000
@@ -1,18 +1,17 @@
 # SPDX-FileCopyrightText: 2015-2025 Laurent Montel <montel@kde.org>
 # SPDX-License-Identifier: BSD-3-Clause
 
-add_definitions(-DKDEBUGSETTINGS_DATA_DIR="${CMAKE_CURRENT_SOURCE_DIR}/data" )
-add_definitions(-DKDEBUGSETTINGS_BINARY_DATA_DIR="${CMAKE_CURRENT_BINARY_DIR}/data" )
+add_definitions(-DKDEBUGSETTINGS_DATA_DIR="${CMAKE_CURRENT_SOURCE_DIR}/data")
+add_definitions(
+    -DKDEBUGSETTINGS_BINARY_DATA_DIR="${CMAKE_CURRENT_BINARY_DIR}/data"
+)
 macro(add_kdebugsettingscore_unittest _source)
     set(_test ${_source})
     get_filename_component(_name ${_source} NAME_WE)
     add_executable(${_name} ${_test} ${_name}.h)
     add_test(NAME ${_name} COMMAND ${_name})
     ecm_mark_as_test(kdebugsettings-${_name})
-    target_link_libraries(${_name}
-        Qt::Test
-        libkdebugsettingscore
-        )
+    target_link_libraries(${_name} Qt::Test libkdebugsettingscore)
 endmacro()
 
 add_kdebugsettingscore_unittest(kdebugsettingutiltest.cpp)
@@ -22,4 +21,3 @@ add_kdebugsettingscore_unittest(renameca
 add_kdebugsettingscore_unittest(saverulesjobtest.cpp)
 add_kdebugsettingscore_unittest(changedebugmodejobtest.cpp)
 add_kdebugsettingscore_unittest(categorytypemodeltest.cpp)
-
diff -pruN 25.04.0-2/src/core/autotests/changedebugmodejobtest.cpp 25.08.2-0ubuntu1/src/core/autotests/changedebugmodejobtest.cpp
--- 25.04.0-2/src/core/autotests/changedebugmodejobtest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/changedebugmodejobtest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "changedebugmodejobtest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "jobs/changedebugmodejob.h"
 #include <QTest>
 QTEST_GUILESS_MAIN(ChangeDebugModeJobTest)
@@ -27,11 +29,11 @@ void ChangeDebugModeJobTest::shouldHaveD
 void ChangeDebugModeJobTest::shouldBeAbleToStart()
 {
     ChangeDebugModeJob job;
-    job.setDebugMode(QStringLiteral("foo"));
+    job.setDebugMode(u"foo"_s);
     QVERIFY(!job.debugMode().isEmpty());
     QVERIFY(job.loggingCategoriesName().isEmpty());
     QVERIFY(!job.canStart());
-    job.setLoggingCategoriesName({QStringLiteral("foo")});
+    job.setLoggingCategoriesName({u"foo"_s});
     QVERIFY(!job.debugMode().isEmpty());
     QVERIFY(!job.loggingCategoriesName().isEmpty());
     QVERIFY(job.canStart());
@@ -43,21 +45,21 @@ void ChangeDebugModeJobTest::shouldBeAbl
     QVERIFY(!job.canStart());
     job.setWithoutArguments(true);
     QVERIFY(job.canStart());
-    job.setDebugMode(QStringLiteral("foo"));
+    job.setDebugMode(u"foo"_s);
     QVERIFY(job.canStart());
 }
 
 void ChangeDebugModeJobTest::shouldConvertToLoggingType()
 {
     ChangeDebugModeJob job;
-    QCOMPARE(job.convertDebugModeToLoggingType(QStringLiteral("bla")), LoggingCategory::LoggingType::Undefined);
+    QCOMPARE(job.convertDebugModeToLoggingType(u"bla"_s), LoggingCategory::LoggingType::Undefined);
     QCOMPARE(job.convertDebugModeToLoggingType(QString()), LoggingCategory::LoggingType::Undefined);
 
-    QCOMPARE(job.convertDebugModeToLoggingType(QStringLiteral("Full")), LoggingCategory::LoggingType::All);
-    QCOMPARE(job.convertDebugModeToLoggingType(QStringLiteral("Info")), LoggingCategory::LoggingType::Info);
-    QCOMPARE(job.convertDebugModeToLoggingType(QStringLiteral("Warning")), LoggingCategory::LoggingType::Warning);
-    QCOMPARE(job.convertDebugModeToLoggingType(QStringLiteral("Critical")), LoggingCategory::LoggingType::Critical);
-    QCOMPARE(job.convertDebugModeToLoggingType(QStringLiteral("Off")), LoggingCategory::LoggingType::Off);
+    QCOMPARE(job.convertDebugModeToLoggingType(u"Full"_s), LoggingCategory::LoggingType::All);
+    QCOMPARE(job.convertDebugModeToLoggingType(u"Info"_s), LoggingCategory::LoggingType::Info);
+    QCOMPARE(job.convertDebugModeToLoggingType(u"Warning"_s), LoggingCategory::LoggingType::Warning);
+    QCOMPARE(job.convertDebugModeToLoggingType(u"Critical"_s), LoggingCategory::LoggingType::Critical);
+    QCOMPARE(job.convertDebugModeToLoggingType(u"Off"_s), LoggingCategory::LoggingType::Off);
 }
 
 #include "moc_changedebugmodejobtest.cpp"
diff -pruN 25.04.0-2/src/core/autotests/data/comments.categories 25.08.2-0ubuntu1/src/core/autotests/data/comments.categories
--- 25.04.0-2/src/core/autotests/data/comments.categories	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/data/comments.categories	2025-09-30 21:42:27.000000000 +0000
@@ -9,4 +9,3 @@ kf5.kauth KAuth
 #org.kde.kurifilter-shorturi KUriFilter Shorturi (KIO)
 #BluezQt BluezQt
 kf5.kauthss KAuth
-
diff -pruN 25.04.0-2/src/core/autotests/data/correct.categories 25.08.2-0ubuntu1/src/core/autotests/data/correct.categories
--- 25.04.0-2/src/core/autotests/data/correct.categories	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/data/correct.categories	2025-09-30 21:42:27.000000000 +0000
@@ -3,4 +3,3 @@ org.kde.kurifilter-ikws KUriFilter IKWS
 org.kde.kurifilter-shorturi KUriFilter Shorturi (KIO)
 BluezQt BluezQt
 kf5.kauth KAuth
-
diff -pruN 25.04.0-2/src/core/autotests/data/duplicates.categories 25.08.2-0ubuntu1/src/core/autotests/data/duplicates.categories
--- 25.04.0-2/src/core/autotests/data/duplicates.categories	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/data/duplicates.categories	2025-09-30 21:42:27.000000000 +0000
@@ -9,4 +9,3 @@ org.kde.kurifilter-ikws KUriFilter IKWS
 org.kde.kurifilter-shorturi KUriFilter Shorturi (KIO)
 BluezQt BluezQt
 kf5.kauth KAuth
-
diff -pruN 25.04.0-2/src/core/autotests/data/newline.renamecategories 25.08.2-0ubuntu1/src/core/autotests/data/newline.renamecategories
--- 25.04.0-2/src/core/autotests/data/newline.renamecategories	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/data/newline.renamecategories	2025-09-30 21:42:27.000000000 +0000
@@ -5,4 +5,3 @@
 # test
 foo_log org.kde.org.pim
 bla org.kde.org.bla
-
diff -pruN 25.04.0-2/src/core/autotests/kdebugsettingutiltest.cpp 25.08.2-0ubuntu1/src/core/autotests/kdebugsettingutiltest.cpp
--- 25.04.0-2/src/core/autotests/kdebugsettingutiltest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/kdebugsettingutiltest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "kdebugsettingutiltest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "kdebugsettingsutil.h"
 #include <QDebug>
 #include <QTest>
@@ -30,94 +32,75 @@ void KDebugSettingUtilTest::shouldParseK
     // Old format
     QTest::newRow("empty") << QString() << QString() << QString() << QString() << QString() << false;
 
-    QTest::newRow("validLine") << QStringLiteral("log linux") << QStringLiteral("linux") << QStringLiteral("log") << QString() << QString() << true;
-    QTest::newRow("validLinewithspace") << QStringLiteral(" log linux  ") << QStringLiteral("linux") << QStringLiteral("log") << QString() << QString() << true;
-    QTest::newRow("comment") << QStringLiteral("#log linux  ") << QString() << QString() << QString() << QString() << false;
-    QTest::newRow("commentWithSpace") << QStringLiteral("   #log linux  ") << QString() << QString() << QString() << QString() << false;
-    QTest::newRow("badline") << QStringLiteral("log") << QString() << QString() << QString() << QString() << false;
-    QTest::newRow("comment-2") << QStringLiteral("#log linux") << QString() << QString() << QString() << QString() << false;
-    QTest::newRow("validLineWithParentheses") << QStringLiteral("log linux (foo)") << QStringLiteral("linux (foo)") << QStringLiteral("log") << QString()
-                                              << QString() << true;
-
-    QTest::newRow("validLineWithParenthesesAndCategories") << QStringLiteral("log linux (foo) [WARNING]") << QStringLiteral("linux (foo)")
-                                                           << QStringLiteral("log") << QStringLiteral("WARNING") << QString() << true;
-
-    QTest::newRow("validLineCategoriesWarning") << QStringLiteral("log linux [WARNING]") << QStringLiteral("linux") << QStringLiteral("log")
-                                                << QStringLiteral("WARNING") << QString() << true;
-    QTest::newRow("validLineCategoriesWarning2") << QStringLiteral("log linux [WARNING]    ") << QStringLiteral("linux") << QStringLiteral("log")
-                                                 << QStringLiteral("WARNING") << QString() << true;
-    QTest::newRow("validLineCategoriesWarning3") << QStringLiteral("log linux      [WARNING]    ") << QStringLiteral("linux") << QStringLiteral("log")
-                                                 << QStringLiteral("WARNING") << QString() << true;
-    QTest::newRow("validLineBadCategories") << QStringLiteral("log linux      [FOO]    ") << QStringLiteral("linux [FOO]") << QStringLiteral("log") << QString()
-                                            << QString() << true;
-    QTest::newRow("linewithcomment") << QStringLiteral("log linux#comment about linux") << QStringLiteral("linux") << QStringLiteral("log") << QString()
-                                     << QString() << true;
-
-    QTest::newRow("validLineCategoriesInfo") << QStringLiteral("log linux [INFO]") << QStringLiteral("linux") << QStringLiteral("log") << QStringLiteral("INFO")
-                                             << QString() << true;
-    QTest::newRow("validLineCategoriesInfo2") << QStringLiteral("log linux [INFO]    ") << QStringLiteral("linux") << QStringLiteral("log")
-                                              << QStringLiteral("INFO") << QString() << true;
-    QTest::newRow("validLineCategoriesInfo3") << QStringLiteral("log linux      [INFO]    ") << QStringLiteral("linux") << QStringLiteral("log")
-                                              << QStringLiteral("INFO") << QString() << true;
-
-    QTest::newRow("validLineCategoriesDEBUG") << QStringLiteral("log linux [DEBUG]") << QStringLiteral("linux") << QStringLiteral("log")
-                                              << QStringLiteral("DEBUG") << QString() << true;
-    QTest::newRow("validLineCategoriesDEBUG2") << QStringLiteral("log linux [DEBUG]    ") << QStringLiteral("linux") << QStringLiteral("log")
-                                               << QStringLiteral("DEBUG") << QString() << true;
-    QTest::newRow("validLineCategoriesDEBUG3") << QStringLiteral("log linux      [DEBUG]    ") << QStringLiteral("linux") << QStringLiteral("log")
-                                               << QStringLiteral("DEBUG") << QString() << true;
-
-    QTest::newRow("validLineCategoriesCRITICAL") << QStringLiteral("log linux [CRITICAL]") << QStringLiteral("linux") << QStringLiteral("log")
-                                                 << QStringLiteral("CRITICAL") << QString() << true;
-    QTest::newRow("validLineCategoriesCRITICAL2") << QStringLiteral("log linux [CRITICAL]    ") << QStringLiteral("linux") << QStringLiteral("log")
-                                                  << QStringLiteral("CRITICAL") << QString() << true;
-    QTest::newRow("validLineCategoriesCRITICAL3") << QStringLiteral("log linux      [CRITICAL]    ") << QStringLiteral("linux") << QStringLiteral("log")
-                                                  << QStringLiteral("CRITICAL") << QString() << true;
+    QTest::newRow("validLine") << u"log linux"_s << u"linux"_s << QStringLiteral("log") << QString() << QString() << true;
+    QTest::newRow("validLinewithspace") << u" log linux  "_s << u"linux"_s << QStringLiteral("log") << QString() << QString() << true;
+    QTest::newRow("comment") << u"#log linux  "_s << QString() << QString() << QString() << QString() << false;
+    QTest::newRow("commentWithSpace") << u"   #log linux  "_s << QString() << QString() << QString() << QString() << false;
+    QTest::newRow("badline") << u"log"_s << QString() << QString() << QString() << QString() << false;
+    QTest::newRow("comment-2") << u"#log linux"_s << QString() << QString() << QString() << QString() << false;
+    QTest::newRow("validLineWithParentheses") << u"log linux (foo)"_s << u"linux (foo)"_s << QStringLiteral("log") << QString() << QString() << true;
+
+    QTest::newRow("validLineWithParenthesesAndCategories")
+        << u"log linux (foo) [WARNING]"_s << u"linux (foo)"_s << u"log"_s << u"WARNING"_s << QString() << true;
+
+    QTest::newRow("validLineCategoriesWarning") << u"log linux [WARNING]"_s << u"linux"_s << QStringLiteral("log") << u"WARNING"_s << QString() << true;
+    QTest::newRow("validLineCategoriesWarning2") << u"log linux [WARNING]    "_s << u"linux"_s << QStringLiteral("log") << u"WARNING"_s << QString() << true;
+    QTest::newRow("validLineCategoriesWarning3") << u"log linux      [WARNING]    "_s << u"linux"_s << QStringLiteral("log") << u"WARNING"_s << QString()
+                                                 << true;
+    QTest::newRow("validLineBadCategories") << u"log linux      [FOO]    "_s << u"linux [FOO]"_s << QStringLiteral("log") << QString() << QString() << true;
+    QTest::newRow("linewithcomment") << u"log linux#comment about linux"_s << u"linux"_s << QStringLiteral("log") << QString() << QString() << true;
+
+    QTest::newRow("validLineCategoriesInfo") << u"log linux [INFO]"_s << u"linux"_s << QStringLiteral("log") << QStringLiteral("INFO") << QString() << true;
+    QTest::newRow("validLineCategoriesInfo2") << u"log linux [INFO]    "_s << u"linux"_s << QStringLiteral("log") << u"INFO"_s << QString() << true;
+    QTest::newRow("validLineCategoriesInfo3") << u"log linux      [INFO]    "_s << u"linux"_s << QStringLiteral("log") << u"INFO"_s << QString() << true;
+
+    QTest::newRow("validLineCategoriesDEBUG") << u"log linux [DEBUG]"_s << u"linux"_s << QStringLiteral("log") << u"DEBUG"_s << QString() << true;
+    QTest::newRow("validLineCategoriesDEBUG2") << u"log linux [DEBUG]    "_s << u"linux"_s << QStringLiteral("log") << u"DEBUG"_s << QString() << true;
+    QTest::newRow("validLineCategoriesDEBUG3") << u"log linux      [DEBUG]    "_s << u"linux"_s << QStringLiteral("log") << u"DEBUG"_s << QString() << true;
+
+    QTest::newRow("validLineCategoriesCRITICAL") << u"log linux [CRITICAL]"_s << u"linux"_s << QStringLiteral("log") << u"CRITICAL"_s << QString() << true;
+    QTest::newRow("validLineCategoriesCRITICAL2") << u"log linux [CRITICAL]    "_s << u"linux"_s << QStringLiteral("log") << u"CRITICAL"_s << QString() << true;
+    QTest::newRow("validLineCategoriesCRITICAL3") << u"log linux      [CRITICAL]    "_s << u"linux"_s << QStringLiteral("log") << u"CRITICAL"_s << QString()
+                                                  << true;
 
     // New Format
-    QTest::newRow("validLineCategoriesWarning-newformat") << QStringLiteral("log linux DEFAULT_SEVERITY [WARNING]") << QStringLiteral("linux")
-                                                          << QStringLiteral("log") << QStringLiteral("WARNING") << QString() << true;
-    QTest::newRow("validLineCategoriesWarning-newformat2") << QStringLiteral("log linux DEFAULT_SEVERITY [WARNING]    ") << QStringLiteral("linux")
-                                                           << QStringLiteral("log") << QStringLiteral("WARNING") << QString() << true;
-    QTest::newRow("validLineCategoriesWarning-newformat3") << QStringLiteral("log linux  DEFAULT_SEVERITY     [WARNING]    ") << QStringLiteral("linux")
-                                                           << QStringLiteral("log") << QStringLiteral("WARNING") << QString() << true;
-    QTest::newRow("validLineBadCategories-newformat") << QStringLiteral("log linux   DEFAULT_SEVERITY    [FOO]    ")
-                                                      << QStringLiteral("linux DEFAULT_SEVERITY [FOO]") << QStringLiteral("log") << QString() << QString()
-                                                      << true;
-    QTest::newRow("linewithcomment-newformat") << QStringLiteral("log linux#comment about linux") << QStringLiteral("linux") << QStringLiteral("log")
-                                               << QString() << QString() << true;
-
-    QTest::newRow("validLineCategoriesInfo-newformat") << QStringLiteral("log linux DEFAULT_SEVERITY [INFO]") << QStringLiteral("linux")
-                                                       << QStringLiteral("log") << QStringLiteral("INFO") << QString() << true;
-    QTest::newRow("validLineCategoriesInfo-newformat2") << QStringLiteral("log linux DEFAULT_SEVERITY [INFO]    ") << QStringLiteral("linux")
-                                                        << QStringLiteral("log") << QStringLiteral("INFO") << QString() << true;
-    QTest::newRow("validLineCategoriesInfo-newformat3") << QStringLiteral("log linux   DEFAULT_SEVERITY    [INFO]    ") << QStringLiteral("linux")
-                                                        << QStringLiteral("log") << QStringLiteral("INFO") << QString() << true;
-
-    QTest::newRow("validLineCategoriesDEBUG-newformat") << QStringLiteral("log linux DEFAULT_SEVERITY [DEBUG]") << QStringLiteral("linux")
-                                                        << QStringLiteral("log") << QStringLiteral("DEBUG") << QString() << true;
-    QTest::newRow("validLineCategoriesDEBUG-newformat2") << QStringLiteral("log linux DEFAULT_SEVERITY [DEBUG]    ") << QStringLiteral("linux")
-                                                         << QStringLiteral("log") << QStringLiteral("DEBUG") << QString() << true;
-    QTest::newRow("validLineCategoriesDEBUG-newformat3") << QStringLiteral("log linux   DEFAULT_SEVERITY    [DEBUG]    ") << QStringLiteral("linux")
-                                                         << QStringLiteral("log") << QStringLiteral("DEBUG") << QString() << true;
-
-    QTest::newRow("validLineCategoriesCRITICAL-newformat") << QStringLiteral("log linux DEFAULT_SEVERITY [CRITICAL]") << QStringLiteral("linux")
-                                                           << QStringLiteral("log") << QStringLiteral("CRITICAL") << QString() << true;
-    QTest::newRow("validLineCategoriesCRITICAL-newformat2") << QStringLiteral("log linux DEFAULT_SEVERITY [CRITICAL]    ") << QStringLiteral("linux")
-                                                            << QStringLiteral("log") << QStringLiteral("CRITICAL") << QString() << true;
-    QTest::newRow("validLineCategoriesCRITICAL-newformat3") << QStringLiteral("log linux  DEFAULT_SEVERITY     [CRITICAL]    ") << QStringLiteral("linux")
-                                                            << QStringLiteral("log") << QStringLiteral("CRITICAL") << QString() << true;
+    QTest::newRow("validLineCategoriesWarning-newformat")
+        << u"log linux DEFAULT_SEVERITY [WARNING]"_s << u"linux"_s << u"log"_s << u"WARNING"_s << QString() << true;
+    QTest::newRow("validLineCategoriesWarning-newformat2")
+        << u"log linux DEFAULT_SEVERITY [WARNING]    "_s << u"linux"_s << u"log"_s << u"WARNING"_s << QString() << true;
+    QTest::newRow("validLineCategoriesWarning-newformat3")
+        << u"log linux  DEFAULT_SEVERITY     [WARNING]    "_s << u"linux"_s << u"log"_s << u"WARNING"_s << QString() << true;
+    QTest::newRow("validLineBadCategories-newformat") << u"log linux   DEFAULT_SEVERITY    [FOO]    "_s << u"linux DEFAULT_SEVERITY [FOO]"_s << u"log"_s
+                                                      << QString() << QString() << true;
+    QTest::newRow("linewithcomment-newformat") << u"log linux#comment about linux"_s << u"linux"_s << QStringLiteral("log") << QString() << QString() << true;
+
+    QTest::newRow("validLineCategoriesInfo-newformat") << u"log linux DEFAULT_SEVERITY [INFO]"_s << u"linux"_s << u"log"_s << u"INFO"_s << QString() << true;
+    QTest::newRow("validLineCategoriesInfo-newformat2")
+        << u"log linux DEFAULT_SEVERITY [INFO]    "_s << u"linux"_s << u"log"_s << u"INFO"_s << QString() << true;
+    QTest::newRow("validLineCategoriesInfo-newformat3")
+        << u"log linux   DEFAULT_SEVERITY    [INFO]    "_s << u"linux"_s << u"log"_s << u"INFO"_s << QString() << true;
+
+    QTest::newRow("validLineCategoriesDEBUG-newformat") << u"log linux DEFAULT_SEVERITY [DEBUG]"_s << u"linux"_s << u"log"_s << u"DEBUG"_s << QString() << true;
+    QTest::newRow("validLineCategoriesDEBUG-newformat2")
+        << u"log linux DEFAULT_SEVERITY [DEBUG]    "_s << u"linux"_s << u"log"_s << u"DEBUG"_s << QString() << true;
+    QTest::newRow("validLineCategoriesDEBUG-newformat3")
+        << u"log linux   DEFAULT_SEVERITY    [DEBUG]    "_s << u"linux"_s << u"log"_s << u"DEBUG"_s << QString() << true;
+
+    QTest::newRow("validLineCategoriesCRITICAL-newformat")
+        << u"log linux DEFAULT_SEVERITY [CRITICAL]"_s << u"linux"_s << u"log"_s << u"CRITICAL"_s << QString() << true;
+    QTest::newRow("validLineCategoriesCRITICAL-newformat2")
+        << u"log linux DEFAULT_SEVERITY [CRITICAL]    "_s << u"linux"_s << u"log"_s << u"CRITICAL"_s << QString() << true;
+    QTest::newRow("validLineCategoriesCRITICAL-newformat3")
+        << u"log linux  DEFAULT_SEVERITY     [CRITICAL]    "_s << u"linux"_s << u"log"_s << u"CRITICAL"_s << QString() << true;
 
     // Identifier
-    QTest::newRow("validLineIdentifier1") << QStringLiteral("log linux IDENTIFIER [foo]") << QStringLiteral("linux") << QStringLiteral("log") << QString()
+    QTest::newRow("validLineIdentifier1") << u"log linux IDENTIFIER [foo]"_s << u"linux"_s << QStringLiteral("log") << QString() << u"foo"_s << true;
+    QTest::newRow("validLineIdentifier2") << u"log linux DEFAULT_SEVERITY     [CRITICAL] IDENTIFIER [foo]"_s << u"linux"_s << u"log"_s << u"CRITICAL"_s
                                           << QStringLiteral("foo") << true;
-    QTest::newRow("validLineIdentifier2") << QStringLiteral("log linux DEFAULT_SEVERITY     [CRITICAL] IDENTIFIER [foo]") << QStringLiteral("linux")
-                                          << QStringLiteral("log") << QStringLiteral("CRITICAL") << QStringLiteral("foo") << true;
-    QTest::newRow("validLineIdentifier3") << QStringLiteral("log linux fli DEFAULT_SEVERITY     [INFO] IDENTIFIER [bla;bli;ss]") << QStringLiteral("linux fli")
-                                          << QStringLiteral("log") << QStringLiteral("INFO") << QStringLiteral("bla;bli;ss") << true;
-    QTest::newRow("validLineIdentifier4") << QStringLiteral("log linux (fli) DEFAULT_SEVERITY     [INFO] IDENTIFIER [bla;bli;ss]")
-                                          << QStringLiteral("linux (fli)") << QStringLiteral("log") << QStringLiteral("INFO") << QStringLiteral("bla;bli;ss")
-                                          << true;
+    QTest::newRow("validLineIdentifier3") << u"log linux fli DEFAULT_SEVERITY     [INFO] IDENTIFIER [bla;bli;ss]"_s << u"linux fli"_s << u"log"_s << u"INFO"_s
+                                          << QStringLiteral("bla;bli;ss") << true;
+    QTest::newRow("validLineIdentifier4") << u"log linux (fli) DEFAULT_SEVERITY     [INFO] IDENTIFIER [bla;bli;ss]"_s << u"linux (fli)"_s << u"log"_s
+                                          << QStringLiteral("INFO") << QStringLiteral("bla;bli;ss") << true;
 }
 
 void KDebugSettingUtilTest::shouldParseKdeLoggingLine()
@@ -150,27 +133,23 @@ void KDebugSettingUtilTest::shouldParseQ
     QTest::addColumn<bool>("enabled");
     QTest::addColumn<bool>("valid");
     QTest::newRow("empty") << QString() << QString() << KDebugSettingsUtil::LineLoggingQtCategory::Unknown << false << false;
-    QTest::newRow("valid") << QStringLiteral("toto=true") << QStringLiteral("toto") << KDebugSettingsUtil::LineLoggingQtCategory::All << true << true;
-    QTest::newRow("validdisabled") << QStringLiteral("toto=false") << QStringLiteral("toto") << KDebugSettingsUtil::LineLoggingQtCategory::All << false << true;
+    QTest::newRow("valid") << u"toto=true"_s << u"toto"_s << KDebugSettingsUtil::LineLoggingQtCategory::All << true << true;
+    QTest::newRow("validdisabled") << u"toto=false"_s << u"toto"_s << KDebugSettingsUtil::LineLoggingQtCategory::All << false << true;
 
-    QTest::newRow("validdisabledwithtypewarning") << QStringLiteral("toto.warning=false") << QStringLiteral("toto")
-                                                  << KDebugSettingsUtil::LineLoggingQtCategory::Warning << false << true;
-    QTest::newRow("validenabledwithtypewarning") << QStringLiteral("toto.warning=true") << QStringLiteral("toto")
-                                                 << KDebugSettingsUtil::LineLoggingQtCategory::Warning << true << true;
-
-    QTest::newRow("validdisabledwithtypecritical") << QStringLiteral("toto.critical=false") << QStringLiteral("toto")
-                                                   << KDebugSettingsUtil::LineLoggingQtCategory::Critical << false << true;
-    QTest::newRow("validenabledwithtypecritical") << QStringLiteral("toto.critical=true") << QStringLiteral("toto")
-                                                  << KDebugSettingsUtil::LineLoggingQtCategory::Critical << true << true;
-
-    QTest::newRow("validdisabledwithtypedebug") << QStringLiteral("toto.debug=false") << QStringLiteral("toto")
-                                                << KDebugSettingsUtil::LineLoggingQtCategory::Debug << false << true;
-    QTest::newRow("validenabledwithtypedebug") << QStringLiteral("toto.debug=true") << QStringLiteral("toto")
-                                               << KDebugSettingsUtil::LineLoggingQtCategory::Debug << true << true;
+    QTest::newRow("validdisabledwithtypewarning") << u"toto.warning=false"_s << u"toto"_s << KDebugSettingsUtil::LineLoggingQtCategory::Warning << false
+                                                  << true;
+    QTest::newRow("validenabledwithtypewarning") << u"toto.warning=true"_s << u"toto"_s << KDebugSettingsUtil::LineLoggingQtCategory::Warning << true << true;
 
-    QTest::newRow("invalid") << QStringLiteral("dd") << QString() << KDebugSettingsUtil::LineLoggingQtCategory::Unknown << false << false;
-    QTest::newRow("invalidWithoutEnabledDisabled") << QStringLiteral("dd=") << QStringLiteral("dd") << KDebugSettingsUtil::LineLoggingQtCategory::All << false
+    QTest::newRow("validdisabledwithtypecritical") << u"toto.critical=false"_s << u"toto"_s << KDebugSettingsUtil::LineLoggingQtCategory::Critical << false
                                                    << true;
+    QTest::newRow("validenabledwithtypecritical") << u"toto.critical=true"_s << u"toto"_s << KDebugSettingsUtil::LineLoggingQtCategory::Critical << true
+                                                  << true;
+
+    QTest::newRow("validdisabledwithtypedebug") << u"toto.debug=false"_s << u"toto"_s << KDebugSettingsUtil::LineLoggingQtCategory::Debug << false << true;
+    QTest::newRow("validenabledwithtypedebug") << u"toto.debug=true"_s << u"toto"_s << KDebugSettingsUtil::LineLoggingQtCategory::Debug << true << true;
+
+    QTest::newRow("invalid") << u"dd"_s << QString() << KDebugSettingsUtil::LineLoggingQtCategory::Unknown << false << false;
+    QTest::newRow("invalidWithoutEnabledDisabled") << u"dd="_s << u"dd"_s << KDebugSettingsUtil::LineLoggingQtCategory::All << false << true;
 }
 
 void KDebugSettingUtilTest::shouldParseQtLoggingLine()
@@ -193,17 +172,17 @@ void KDebugSettingUtilTest::shouldReadLo
 {
     QTest::addColumn<QString>("filename");
     QTest::addColumn<int>("numberofcategories");
-    QTest::newRow("empty") << QStringLiteral("empty.categories") << 0;
-    QTest::newRow("correctlist") << QStringLiteral("correct.categories") << 5;
-    QTest::newRow("withduplicate") << QStringLiteral("duplicates.categories") << 5;
-    QTest::newRow("withcomment") << QStringLiteral("comments.categories") << 6;
+    QTest::newRow("empty") << u"empty.categories"_s << 0;
+    QTest::newRow("correctlist") << u"correct.categories"_s << 5;
+    QTest::newRow("withduplicate") << u"duplicates.categories"_s << 5;
+    QTest::newRow("withcomment") << u"comments.categories"_s << 6;
 }
 
 void KDebugSettingUtilTest::shouldReadLoadKdeCategories()
 {
     QFETCH(QString, filename);
     QFETCH(int, numberofcategories);
-    const QString path = QString(QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + QLatin1Char('/') + filename);
+    const QString path = QString(QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + u'/' + filename);
     QFile file(path);
     QVERIFY(file.exists());
     KdeLoggingCategory::List lst;
@@ -215,16 +194,16 @@ void KDebugSettingUtilTest::shouldReadRe
 {
     QTest::addColumn<QString>("filename");
     QTest::addColumn<int>("numberofrenamecategories");
-    QTest::newRow("empty") << QStringLiteral("empty.renamecategories") << 0;
-    QTest::newRow("2renamed") << QStringLiteral("tworename.renamecategories") << 2;
-    QTest::newRow("withnewline") << QStringLiteral("newline.renamecategories") << 2;
+    QTest::newRow("empty") << u"empty.renamecategories"_s << 0;
+    QTest::newRow("2renamed") << u"tworename.renamecategories"_s << 2;
+    QTest::newRow("withnewline") << u"newline.renamecategories"_s << 2;
 }
 
 void KDebugSettingUtilTest::shouldReadRenameCategories()
 {
     QFETCH(QString, filename);
     QFETCH(int, numberofrenamecategories);
-    const QString path = QString(QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + QLatin1Char('/') + filename);
+    const QString path = QString(QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + u'/' + filename);
     QFile file(path);
     QVERIFY(file.exists());
     const RenameCategory::List lst = KDebugSettingsUtil::readRenameCategories(path);
@@ -236,11 +215,11 @@ void KDebugSettingUtilTest::shouldConver
     QTest::addColumn<QString>("input");
     QTest::addColumn<LoggingCategory::LoggingType>("loggingType");
     QTest::newRow("empty") << QString() << LoggingCategory::LoggingType::Info;
-    QTest::newRow("WARNING") << QStringLiteral("WARNING") << LoggingCategory::LoggingType::Warning;
-    QTest::newRow("Info") << QStringLiteral("INFO") << LoggingCategory::LoggingType::Info;
-    QTest::newRow("Debug") << QStringLiteral("DEBUG") << LoggingCategory::LoggingType::Debug;
-    QTest::newRow("Critical") << QStringLiteral("CRITICAL") << LoggingCategory::LoggingType::Critical;
-    QTest::newRow("unknown") << QStringLiteral("foo") << LoggingCategory::LoggingType::Info;
+    QTest::newRow("WARNING") << u"WARNING"_s << LoggingCategory::LoggingType::Warning;
+    QTest::newRow("Info") << u"INFO"_s << LoggingCategory::LoggingType::Info;
+    QTest::newRow("Debug") << u"DEBUG"_s << LoggingCategory::LoggingType::Debug;
+    QTest::newRow("Critical") << u"CRITICAL"_s << LoggingCategory::LoggingType::Critical;
+    QTest::newRow("unknown") << u"foo"_s << LoggingCategory::LoggingType::Info;
 }
 
 void KDebugSettingUtilTest::shouldConvertCategoryTypeFromString()
diff -pruN 25.04.0-2/src/core/autotests/loadcategoriesjobtest.cpp 25.08.2-0ubuntu1/src/core/autotests/loadcategoriesjobtest.cpp
--- 25.04.0-2/src/core/autotests/loadcategoriesjobtest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/loadcategoriesjobtest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "loadcategoriesjobtest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "jobs/loadcategoriesjob.h"
 #include "kdebugsettingsutil.h"
 
@@ -35,146 +37,119 @@ void LoadCategoriesJobTest::shouldReadRu
     QTest::addColumn<bool>("foundoverriderules");
     QTest::addColumn<LoggingCategory::List>("customcategories");
     QTest::addColumn<LoggingCategory::List>("qtkdecategories");
-    QTest::newRow("empty") << QStringLiteral("emptyrulefiles.ini") << QString() << false << LoggingCategory::List() << LoggingCategory::List();
-    QTest::newRow("commentedlines") << QStringLiteral("commentedrulefiles.ini") << QString() << false << LoggingCategory::List() << LoggingCategory::List();
-    QTest::newRow("rulesbeforesection") << QStringLiteral("rulebeforerulessectionfiles.ini") << QString() << false << LoggingCategory::List()
-                                        << LoggingCategory::List();
-
-    const LoggingCategory ikwsInfo(QStringLiteral("KUriFilter IKWS (KIO)"), QStringLiteral("org.kde.kurifilter-ikws"), LoggingCategory::Info, QString(), true);
-    const LoggingCategory shorturiInfo(QStringLiteral("KUriFilter Shorturi (KIO)"),
-                                       QStringLiteral("org.kde.kurifilter-shorturi"),
-                                       LoggingCategory::Info,
-                                       QString(),
-                                       true);
-    const LoggingCategory bluezQtInfo(QStringLiteral("BluezQt"), QStringLiteral("BluezQt"), LoggingCategory::Info, QString(), true);
-    const LoggingCategory kauthInfo(QStringLiteral("KAuth"), QStringLiteral("kf5.kauth"), LoggingCategory::Info, QString(), true);
+    QTest::newRow("empty") << u"emptyrulefiles.ini"_s << QString() << false << LoggingCategory::List() << LoggingCategory::List();
+    QTest::newRow("commentedlines") << u"commentedrulefiles.ini"_s << QString() << false << LoggingCategory::List() << LoggingCategory::List();
+    QTest::newRow("rulesbeforesection") << u"rulebeforerulessectionfiles.ini"_s << QString() << false << LoggingCategory::List() << LoggingCategory::List();
+
+    const LoggingCategory ikwsInfo(u"KUriFilter IKWS (KIO)"_s, u"org.kde.kurifilter-ikws"_s, LoggingCategory::Info, QString(), true);
+    const LoggingCategory shorturiInfo(u"KUriFilter Shorturi (KIO)"_s, u"org.kde.kurifilter-shorturi"_s, LoggingCategory::Info, QString(), true);
+    const LoggingCategory bluezQtInfo(u"BluezQt"_s, u"BluezQt"_s, LoggingCategory::Info, QString(), true);
+    const LoggingCategory kauthInfo(u"KAuth"_s, u"kf5.kauth"_s, LoggingCategory::Info, QString(), true);
 
     LoggingCategory::List qtKdeCategories;
-    qtKdeCategories.append(
-        LoggingCategory(QStringLiteral("KPasswdServer (KIO)"), QStringLiteral("org.kde.kio.kpasswdserver"), LoggingCategory::Info, QString(), true));
+    qtKdeCategories.append(LoggingCategory(u"KPasswdServer (KIO)"_s, u"org.kde.kio.kpasswdserver"_s, LoggingCategory::Info, QString(), true));
     qtKdeCategories.append(ikwsInfo);
     qtKdeCategories.append(shorturiInfo);
     qtKdeCategories.append(bluezQtInfo);
     qtKdeCategories.append(kauthInfo);
 
     QTest::newRow("emptywithlistkdeloggingcategories")
-        << QStringLiteral("rulebeforerulessectionfiles.ini") << QStringLiteral("correct.categories") << false << LoggingCategory::List() << qtKdeCategories;
+        << u"rulebeforerulessectionfiles.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
-    qtKdeCategories[0] =
-        LoggingCategory(QStringLiteral("KPasswdServer (KIO)"), QStringLiteral("org.kde.kio.kpasswdserver"), LoggingCategory::Off, QString(), false);
+    qtKdeCategories[0] = LoggingCategory(u"KPasswdServer (KIO)"_s, u"org.kde.kio.kpasswdserver"_s, LoggingCategory::Off, QString(), false);
 
-    QTest::newRow("oneelementoff") << QStringLiteral("oneelementoff.ini") << QStringLiteral("correct.categories") << false << LoggingCategory::List()
-                                   << qtKdeCategories;
+    QTest::newRow("oneelementoff") << u"oneelementoff.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
-    QTest::newRow("oneelementonelineoff") << QStringLiteral("oneelementonelineoff.ini") << QStringLiteral("correct.categories") << false
-                                          << LoggingCategory::List() << qtKdeCategories;
+    QTest::newRow("oneelementonelineoff") << u"oneelementonelineoff.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
-    qtKdeCategories[0] =
-        LoggingCategory(QStringLiteral("KPasswdServer (KIO)"), QStringLiteral("org.kde.kio.kpasswdserver"), LoggingCategory::All, QString(), true);
+    qtKdeCategories[0] = LoggingCategory(u"KPasswdServer (KIO)"_s, u"org.kde.kio.kpasswdserver"_s, LoggingCategory::All, QString(), true);
 
-    QTest::newRow("oneelementall") << QStringLiteral("oneelementall.ini") << QStringLiteral("correct.categories") << false << LoggingCategory::List()
-                                   << qtKdeCategories;
+    QTest::newRow("oneelementall") << u"oneelementall.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
-    QTest::newRow("oneelementonelineall") << QStringLiteral("oneelementonelineall.ini") << QStringLiteral("correct.categories") << false
-                                          << LoggingCategory::List() << qtKdeCategories;
+    QTest::newRow("oneelementonelineall") << u"oneelementonelineall.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
-    qtKdeCategories[0] =
-        LoggingCategory(QStringLiteral("KPasswdServer (KIO)"), QStringLiteral("org.kde.kio.kpasswdserver"), LoggingCategory::Info, QString(), true);
+    qtKdeCategories[0] = LoggingCategory(u"KPasswdServer (KIO)"_s, u"org.kde.kio.kpasswdserver"_s, LoggingCategory::Info, QString(), true);
 
-    QTest::newRow("oneelementinfo") << QStringLiteral("oneelementinfo.ini") << QStringLiteral("correct.categories") << false << LoggingCategory::List()
-                                    << qtKdeCategories;
+    QTest::newRow("oneelementinfo") << u"oneelementinfo.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
-    QTest::newRow("oneelementinfo") << QStringLiteral("oneelementinfobis.ini") << QStringLiteral("correct.categories") << false << LoggingCategory::List()
-                                    << qtKdeCategories;
+    QTest::newRow("oneelementinfo") << u"oneelementinfobis.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
-    qtKdeCategories[0] =
-        LoggingCategory(QStringLiteral("KPasswdServer (KIO)"), QStringLiteral("org.kde.kio.kpasswdserver"), LoggingCategory::Warning, QString(), true);
+    qtKdeCategories[0] = LoggingCategory(u"KPasswdServer (KIO)"_s, u"org.kde.kio.kpasswdserver"_s, LoggingCategory::Warning, QString(), true);
 
-    QTest::newRow("oneelementwarning") << QStringLiteral("oneelementwarning.ini") << QStringLiteral("correct.categories") << false << LoggingCategory::List()
-                                       << qtKdeCategories;
+    QTest::newRow("oneelementwarning") << u"oneelementwarning.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
-    qtKdeCategories[0] =
-        LoggingCategory(QStringLiteral("KPasswdServer (KIO)"), QStringLiteral("org.kde.kio.kpasswdserver"), LoggingCategory::Critical, QString(), true);
+    qtKdeCategories[0] = LoggingCategory(u"KPasswdServer (KIO)"_s, u"org.kde.kio.kpasswdserver"_s, LoggingCategory::Critical, QString(), true);
 
-    QTest::newRow("oneelementcritical") << QStringLiteral("oneelementcritical.ini") << QStringLiteral("correct.categories") << false << LoggingCategory::List()
-                                        << qtKdeCategories;
+    QTest::newRow("oneelementcritical") << u"oneelementcritical.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
-    QTest::newRow("oneelementonelinecritical") << QStringLiteral("oneelementonelinecritical.ini") << QStringLiteral("correct.categories") << false
-                                               << LoggingCategory::List() << qtKdeCategories;
-    QTest::newRow("oneelementtwolinecritical") << QStringLiteral("oneelementtwolinecritical.ini") << QStringLiteral("correct.categories") << false
-                                               << LoggingCategory::List() << qtKdeCategories;
+    QTest::newRow("oneelementonelinecritical") << u"oneelementonelinecritical.ini"_s << u"correct.categories"_s << false << LoggingCategory::List()
+                                               << qtKdeCategories;
+    QTest::newRow("oneelementtwolinecritical") << u"oneelementtwolinecritical.ini"_s << u"correct.categories"_s << false << LoggingCategory::List()
+                                               << qtKdeCategories;
 
-    qtKdeCategories[0] =
-        LoggingCategory(QStringLiteral("KPasswdServer (KIO)"), QStringLiteral("org.kde.kio.kpasswdserver"), LoggingCategory::Warning, QString(), true);
+    qtKdeCategories[0] = LoggingCategory(u"KPasswdServer (KIO)"_s, u"org.kde.kio.kpasswdserver"_s, LoggingCategory::Warning, QString(), true);
 
-    QTest::newRow("oneelementdebug") << QStringLiteral("oneelementdebug.ini") << QStringLiteral("correct.categories") << false << LoggingCategory::List()
-                                     << qtKdeCategories;
+    QTest::newRow("oneelementdebug") << u"oneelementdebug.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
     // Duplicate entries
-    qtKdeCategories[0] =
-        LoggingCategory(QStringLiteral("KPasswdServer (KIO)"), QStringLiteral("org.kde.kio.kpasswdserver"), LoggingCategory::All, QString(), true);
-    QTest::newRow("duplicates") << QStringLiteral("duplicates.ini") << QStringLiteral("correct.categories") << false << LoggingCategory::List()
-                                << qtKdeCategories;
+    qtKdeCategories[0] = LoggingCategory(u"KPasswdServer (KIO)"_s, u"org.kde.kio.kpasswdserver"_s, LoggingCategory::All, QString(), true);
+    QTest::newRow("duplicates") << u"duplicates.ini"_s << u"correct.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
     // Duplicate entries with duplicate categories
-    qtKdeCategories[0] =
-        LoggingCategory(QStringLiteral("KPasswdServer (KIO)"), QStringLiteral("org.kde.kio.kpasswdserver"), LoggingCategory::All, QString(), true);
-    QTest::newRow("duplicates") << QStringLiteral("duplicates.ini") << QStringLiteral("duplicates.categories") << false << LoggingCategory::List()
-                                << qtKdeCategories;
+    qtKdeCategories[0] = LoggingCategory(u"KPasswdServer (KIO)"_s, u"org.kde.kio.kpasswdserver"_s, LoggingCategory::All, QString(), true);
+    QTest::newRow("duplicates") << u"duplicates.ini"_s << u"duplicates.categories"_s << false << LoggingCategory::List() << qtKdeCategories;
 
     // Test with extract elements
     LoggingCategory::List customCategories;
     LoggingCategory customTmp;
-    customTmp.categoryName = QStringLiteral("toto");
+    customTmp.categoryName = u"toto"_s;
     customTmp.loggingType = LoggingCategory::Critical;
     customTmp.enabled = true;
     customCategories.append(customTmp);
-    qtKdeCategories[0] =
-        LoggingCategory(QStringLiteral("KPasswdServer (KIO)"), QStringLiteral("org.kde.kio.kpasswdserver"), LoggingCategory::Warning, QString(), true);
+    qtKdeCategories[0] = LoggingCategory(u"KPasswdServer (KIO)"_s, u"org.kde.kio.kpasswdserver"_s, LoggingCategory::Warning, QString(), true);
 
-    QTest::newRow("oneelementdebugandanextract") << QStringLiteral("oneelementdebugandanextract.ini") << QStringLiteral("correct.categories") << false
-                                                 << customCategories << qtKdeCategories;
+    QTest::newRow("oneelementdebugandanextract") << u"oneelementdebugandanextract.ini"_s << u"correct.categories"_s << false << customCategories
+                                                 << qtKdeCategories;
 
     // Test with extract elements
     customCategories.clear();
-    customTmp.categoryName = QStringLiteral("toto");
+    customTmp.categoryName = u"toto"_s;
     customTmp.loggingType = LoggingCategory::Critical;
     customTmp.enabled = false;
     customCategories.append(customTmp);
 
-    QTest::newRow("oneelementdebugandanextractfalse") << QStringLiteral("oneelementdebugandanextractfalse.ini") << QStringLiteral("correct.categories") << false
-                                                      << customCategories << qtKdeCategories;
+    QTest::newRow("oneelementdebugandanextractfalse") << u"oneelementdebugandanextractfalse.ini"_s << u"correct.categories"_s << false << customCategories
+                                                      << qtKdeCategories;
 
     // Test without categories
     qtKdeCategories.clear();
     customCategories.clear();
-    customTmp.categoryName = QStringLiteral("toto");
+    customTmp.categoryName = u"toto"_s;
     customTmp.loggingType = LoggingCategory::Info;
     customTmp.enabled = false;
     customCategories.append(customTmp);
-    customTmp.categoryName = QStringLiteral("toto");
+    customTmp.categoryName = u"toto"_s;
     customTmp.loggingType = LoggingCategory::Warning;
     customTmp.enabled = false;
     customCategories.append(customTmp);
-    customTmp.categoryName = QStringLiteral("toto");
+    customTmp.categoryName = u"toto"_s;
     customTmp.loggingType = LoggingCategory::Debug;
     customTmp.enabled = false;
     customCategories.append(customTmp);
 
-    customTmp.categoryName = QStringLiteral("toto");
+    customTmp.categoryName = u"toto"_s;
     customTmp.loggingType = LoggingCategory::Critical;
     customTmp.enabled = false;
     customCategories.append(customTmp);
 
-    QTest::newRow("testwithoutcategories") << QStringLiteral("testwithoutcategories.ini") << QString() << false << customCategories << qtKdeCategories;
+    QTest::newRow("testwithoutcategories") << u"testwithoutcategories.ini"_s << QString() << false << customCategories << qtKdeCategories;
 
     qtKdeCategories.clear();
     customCategories.clear();
-    customTmp.categoryName = QStringLiteral("toto");
+    customTmp.categoryName = u"toto"_s;
     customTmp.loggingType = LoggingCategory::Warning;
     customTmp.enabled = false;
     customCategories.append(customTmp);
-    QTest::newRow("testwithoutcategorieswarning") << QStringLiteral("testwithoutcategorieswarning.ini") << QString() << false << customCategories
-                                                  << qtKdeCategories;
+    QTest::newRow("testwithoutcategorieswarning") << u"testwithoutcategorieswarning.ini"_s << QString() << false << customCategories << qtKdeCategories;
 }
 
 void LoadCategoriesJobTest::shouldReadRules()
@@ -187,11 +162,11 @@ void LoadCategoriesJobTest::shouldReadRu
     LoadCategoriesJob job;
     KdeLoggingCategory::List listKdeLoggingCategories;
     if (!filenamelistKdeLoggingCategories.isEmpty()) {
-        const QString kdeLoggingCategoriesPath = QString(QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + QLatin1Char('/') + filenamelistKdeLoggingCategories);
+        const QString kdeLoggingCategoriesPath = QString(QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + u'/' + filenamelistKdeLoggingCategories);
         KDebugSettingsUtil::readLoggingCategories(kdeLoggingCategoriesPath, listKdeLoggingCategories, true);
     }
 
-    const QString path = QString(QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + QLatin1Char('/') + filename);
+    const QString path = QString(QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + u'/' + filename);
     QFile file(path);
     QVERIFY(file.exists());
     job.setFileName(path);
diff -pruN 25.04.0-2/src/core/autotests/loggingcategorytest.cpp 25.08.2-0ubuntu1/src/core/autotests/loggingcategorytest.cpp
--- 25.04.0-2/src/core/autotests/loggingcategorytest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/loggingcategorytest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "loggingcategorytest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "loggingcategory.h"
 #include <QTest>
 
@@ -31,9 +33,9 @@ void LoggingCategoryTest::shouldBeEqual(
 {
     LoggingCategory log;
     log.enabled = false;
-    log.description = QStringLiteral("foo");
-    log.categoryName = QStringLiteral("bla");
-    log.identifierName = QStringLiteral("blu");
+    log.description = u"foo"_s;
+    log.categoryName = u"bla"_s;
+    log.identifierName = u"blu"_s;
     log.loggingType = LoggingCategory::All;
     LoggingCategory log2;
     log2 = log;
@@ -46,17 +48,12 @@ void LoggingCategoryTest::shouldCreateRu
     QTest::addColumn<LoggingCategory::LoggingType>("loggingType");
     QTest::addColumn<QString>("result");
 
-    QTest::newRow("all") << QStringLiteral("foo") << LoggingCategory::All << QStringLiteral("foo=true\n");
-    QTest::newRow("debug") << QStringLiteral("foo") << LoggingCategory::Debug
-                           << QStringLiteral("foo.info=false\nfoo.debug=true\nfoo.warning=true\nfoo.critical=true\n");
-    QTest::newRow("info") << QStringLiteral("foo") << LoggingCategory::Info
-                          << QStringLiteral("foo.info=true\nfoo.warning=true\nfoo.critical=true\nfoo.debug=false\n");
-    QTest::newRow("critical") << QStringLiteral("foo") << LoggingCategory::Critical
-                              << QStringLiteral("foo.info=false\nfoo.debug=false\nfoo.warning=false\nfoo.critical=true\n");
-    QTest::newRow("warning") << QStringLiteral("foo") << LoggingCategory::Warning
-                             << QStringLiteral("foo.info=false\nfoo.debug=false\nfoo.warning=true\nfoo.critical=true\n");
-    QTest::newRow("off") << QStringLiteral("foo") << LoggingCategory::Off
-                         << QStringLiteral("foo.info=false\nfoo.debug=false\nfoo.warning=false\nfoo.critical=false\n");
+    QTest::newRow("all") << u"foo"_s << LoggingCategory::All << u"foo=true\n"_s;
+    QTest::newRow("debug") << u"foo"_s << LoggingCategory::Debug << u"foo.info=false\nfoo.debug=true\nfoo.warning=true\nfoo.critical=true\n"_s;
+    QTest::newRow("info") << u"foo"_s << LoggingCategory::Info << u"foo.info=true\nfoo.warning=true\nfoo.critical=true\nfoo.debug=false\n"_s;
+    QTest::newRow("critical") << u"foo"_s << LoggingCategory::Critical << u"foo.info=false\nfoo.debug=false\nfoo.warning=false\nfoo.critical=true\n"_s;
+    QTest::newRow("warning") << u"foo"_s << LoggingCategory::Warning << u"foo.info=false\nfoo.debug=false\nfoo.warning=true\nfoo.critical=true\n"_s;
+    QTest::newRow("off") << u"foo"_s << LoggingCategory::Off << u"foo.info=false\nfoo.debug=false\nfoo.warning=false\nfoo.critical=false\n"_s;
 }
 
 void LoggingCategoryTest::shouldCreateRules()
diff -pruN 25.04.0-2/src/core/autotests/renamecategorytest.cpp 25.08.2-0ubuntu1/src/core/autotests/renamecategorytest.cpp
--- 25.04.0-2/src/core/autotests/renamecategorytest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/renamecategorytest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -5,6 +5,8 @@
 
 */
 #include "renamecategorytest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "kdebugsettingsutil.h"
 #include "renamecategory.h"
 #include <QTest>
@@ -23,14 +25,14 @@ void RenameCategoryTest::shouldParseRena
     QTest::addColumn<QString>("original");
     QTest::addColumn<bool>("valid");
     QTest::newRow("empty") << QString() << QString() << QString() << false;
-    QTest::newRow("validLine") << QStringLiteral("log linux") << QStringLiteral("linux") << QStringLiteral("log") << true;
-    QTest::newRow("validLinewithspace") << QStringLiteral(" log linux  ") << QStringLiteral("linux") << QStringLiteral("log") << true;
-    QTest::newRow("comment") << QStringLiteral("#log linux  ") << QString() << QString() << false;
-    QTest::newRow("commentWithSpace") << QStringLiteral("   #log linux  ") << QString() << QString() << false;
-    QTest::newRow("badline") << QStringLiteral("log") << QString() << QString() << false;
-    QTest::newRow("comment-2") << QStringLiteral("#log linux") << QString() << QString() << false;
+    QTest::newRow("validLine") << u"log linux"_s << u"linux"_s << QStringLiteral("log") << true;
+    QTest::newRow("validLinewithspace") << u" log linux  "_s << u"linux"_s << QStringLiteral("log") << true;
+    QTest::newRow("comment") << u"#log linux  "_s << QString() << QString() << false;
+    QTest::newRow("commentWithSpace") << u"   #log linux  "_s << QString() << QString() << false;
+    QTest::newRow("badline") << u"log"_s << QString() << QString() << false;
+    QTest::newRow("comment-2") << u"#log linux"_s << QString() << QString() << false;
 
-    QTest::newRow("linewithcomment") << QStringLiteral("log linux#comment about linux") << QStringLiteral("linux") << QStringLiteral("log") << true;
+    QTest::newRow("linewithcomment") << u"log linux#comment about linux"_s << u"linux"_s << QStringLiteral("log") << true;
 }
 
 void RenameCategoryTest::shouldParseRenameLine()
diff -pruN 25.04.0-2/src/core/autotests/saverulesjobtest.cpp 25.08.2-0ubuntu1/src/core/autotests/saverulesjobtest.cpp
--- 25.04.0-2/src/core/autotests/saverulesjobtest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/autotests/saverulesjobtest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "saverulesjobtest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "jobs/loadcategoriesjob.h"
 #include "jobs/saverulesjob.h"
 
@@ -14,17 +16,16 @@
 
 QTEST_GUILESS_MAIN(SaveRulesJobTest)
 
-void compareFile(const QString &name)
+static void compareFile(const QString &name)
 {
-    const QString refFile = QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + QLatin1Char('/') + name + QStringLiteral(".ref");
-    const QString generatedFile = QLatin1StringView(KDEBUGSETTINGS_BINARY_DATA_DIR) + QLatin1Char('/') + name + QStringLiteral("-generated.ref");
+    const QString refFile = QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + u'/' + name + u".ref"_s;
+    const QString generatedFile = QLatin1StringView(KDEBUGSETTINGS_BINARY_DATA_DIR) + u'/' + name + u"-generated.ref"_s;
     QProcess proc;
 
 #ifdef _WIN32
-    QStringList args = QStringList() << QStringLiteral("Compare-Object") << QString(QStringLiteral("(Get-Content %1)")).arg(refFile)
-                                     << QString(QStringLiteral("(Get-Content %1)")).arg(generatedFile);
+    QStringList args = QStringList() << u"Compare-Object"_s << QString(u"(Get-Content %1)"_s).arg(refFile) << QString(u"(Get-Content %1)"_s).arg(generatedFile);
 
-    proc.start(QStringLiteral("powershell"), args);
+    proc.start(u"powershell"_s, args);
     QVERIFY(proc.waitForFinished());
 
     auto pStdOut = proc.readAllStandardOutput();
@@ -35,10 +36,10 @@ void compareFile(const QString &name)
     QCOMPARE(pStdOut.size(), 0);
 #else
     // compare to reference file
-    const QStringList args = QStringList() << QStringLiteral("-u") << refFile << generatedFile;
+    const QStringList args = QStringList() << u"-u"_s << refFile << generatedFile;
 
     proc.setProcessChannelMode(QProcess::ForwardedChannels);
-    proc.start(QStringLiteral("diff"), args);
+    proc.start(u"diff"_s, args);
     QVERIFY(proc.waitForFinished());
     QCOMPARE(proc.exitCode(), 0);
 #endif
@@ -52,18 +53,18 @@ SaveRulesJobTest::SaveRulesJobTest(QObje
 void SaveRulesJobTest::shouldSaveLoadRules_data()
 {
     QTest::addColumn<QString>("filename");
-    QTest::newRow("oneelementwarning.ini") << QStringLiteral("oneelementwarning");
-    QTest::newRow("oneelementall.ini") << QStringLiteral("oneelementall");
-    QTest::newRow("oneelementinfo.ini") << QStringLiteral("oneelementinfo");
-    QTest::newRow("oneelementonelineoff.ini") << QStringLiteral("oneelementonelineoff");
-    QTest::newRow("oneelementonelinecritical.ini") << QStringLiteral("oneelementonelinecritical");
+    QTest::newRow("oneelementwarning.ini") << u"oneelementwarning"_s;
+    QTest::newRow("oneelementall.ini") << u"oneelementall"_s;
+    QTest::newRow("oneelementinfo.ini") << u"oneelementinfo"_s;
+    QTest::newRow("oneelementonelineoff.ini") << u"oneelementonelineoff"_s;
+    QTest::newRow("oneelementonelinecritical.ini") << u"oneelementonelinecritical"_s;
 }
 
 void SaveRulesJobTest::shouldSaveLoadRules()
 {
     QFETCH(QString, filename);
     LoadCategoriesJob job;
-    job.setFileName(QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + QLatin1Char('/') + filename + QStringLiteral(".ini"));
+    job.setFileName(QLatin1StringView(KDEBUGSETTINGS_DATA_DIR) + u'/' + filename + u".ini"_s);
     job.start();
 
     const LoggingCategory::List customCategories = job.customCategories();
@@ -72,7 +73,7 @@ void SaveRulesJobTest::shouldSaveLoadRul
 
     SaveRulesJob saveJob;
     QDir().mkpath(QLatin1StringView(KDEBUGSETTINGS_BINARY_DATA_DIR));
-    saveJob.setFileName(QLatin1StringView(KDEBUGSETTINGS_BINARY_DATA_DIR) + QLatin1Char('/') + filename + QStringLiteral("-generated.ref"));
+    saveJob.setFileName(QLatin1StringView(KDEBUGSETTINGS_BINARY_DATA_DIR) + u'/' + filename + u"-generated.ref"_s);
     qDebug() << " save " << saveJob.fileName();
     saveJob.setListCustom(customCategories);
     saveJob.setListKde(qtKdeCategories);
diff -pruN 25.04.0-2/src/core/jobs/loadcategoriesjob.cpp 25.08.2-0ubuntu1/src/core/jobs/loadcategoriesjob.cpp
--- 25.04.0-2/src/core/jobs/loadcategoriesjob.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/jobs/loadcategoriesjob.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -22,15 +22,7 @@ bool LoadCategoriesJob::foundOverrideRul
     return mFoundOverrideRule;
 }
 
-LoggingCategory::LoggingType updateLoggingType(const LoggingCategory &cat)
-{
-    if (!cat.enabled) {
-        return LoggingCategory::Off;
-    }
-    return cat.loggingType;
-}
-
-LoggingCategory::LoggingType
+static LoggingCategory::LoggingType
 canDisplayType(const QMap<KDebugSettingsUtil::LoadLoggingCategory::LogType, KDebugSettingsUtil::LoadLoggingCategory::Status> &types)
 {
     KDebugSettingsUtil::LoadLoggingCategory::Status warning = types.value(KDebugSettingsUtil::LoadLoggingCategory::Warning);
diff -pruN 25.04.0-2/src/core/jobs/saverulesjob.cpp 25.08.2-0ubuntu1/src/core/jobs/saverulesjob.cpp
--- 25.04.0-2/src/core/jobs/saverulesjob.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/jobs/saverulesjob.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -48,15 +48,15 @@ bool SaveRulesJob::start()
     for (const LoggingCategory &cat : std::as_const(mListCustom)) {
         const QString rule = cat.createCustomRule();
         if (rule.startsWith(QLatin1StringView("*="))) {
-            out << rule + QLatin1Char('\n');
+            out << rule + u'\n';
         } else {
-            listExcludeRules << rule + QLatin1Char('\n');
+            listExcludeRules << rule + u'\n';
         }
     }
 
     // Then the configured KDE rules.
     for (const LoggingCategory &cat : std::as_const(mListKde)) {
-        out << cat.createRule() + QLatin1Char('\n');
+        out << cat.createRule() + u'\n';
     }
 
     // Finally the user's custom rules which will not override
diff -pruN 25.04.0-2/src/core/kdebugsettingsloadingcategories.cpp 25.08.2-0ubuntu1/src/core/kdebugsettingsloadingcategories.cpp
--- 25.04.0-2/src/core/kdebugsettingsloadingcategories.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/kdebugsettingsloadingcategories.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -21,11 +21,11 @@ KDebugSettingsLoadingCategories::~KDebug
 void KDebugSettingsLoadingCategories::readQtLoggingFile()
 {
     mCategoriesList.clear();
-    const QString envPath = QStandardPaths::locate(QStandardPaths::GenericConfigLocation, QStringLiteral("QtProject/qtlogging.ini"));
+    const QString envPath = QStandardPaths::locate(QStandardPaths::GenericConfigLocation, u"QtProject/qtlogging.ini"_s);
     if (!envPath.isEmpty()) {
         readCategoriesFiles(envPath);
     } else {
-        const QString dataPath = QDir(QLibraryInfo::path(QLibraryInfo::DataPath)).absoluteFilePath(QStringLiteral("qtlogging.ini"));
+        const QString dataPath = QDir(QLibraryInfo::path(QLibraryInfo::DataPath)).absoluteFilePath(u"qtlogging.ini"_s);
         readCategoriesFiles(dataPath);
     }
 }
@@ -33,7 +33,7 @@ void KDebugSettingsLoadingCategories::re
 void KDebugSettingsLoadingCategories::readCategoriesFiles(const QString &path)
 {
     // KDE debug categories area
-    const QString confAreasFile = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("qlogging-categories6/kde.categories"));
+    const QString confAreasFile = QStandardPaths::locate(QStandardPaths::GenericDataLocation, u"qlogging-categories6/kde.categories"_s);
     if (!confAreasFile.isEmpty()) {
         KDebugSettingsUtil::readLoggingCategories(confAreasFile, mCategoriesList, false);
     }
@@ -41,19 +41,18 @@ void KDebugSettingsLoadingCategories::re
     mRenameCategoriesList.clear();
     // Load *.renamecategories file in QStandardPaths::ConfigLocation for kde apps.
     const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::ConfigLocation, QString(), QStandardPaths::LocateDirectory)
-        + QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("qlogging-categories6/"), QStandardPaths::LocateDirectory);
+        + QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, u"qlogging-categories6/"_s, QStandardPaths::LocateDirectory);
     for (const QString &dir : dirs) {
-        const QStringList fileNames = QDir(dir).entryList(QStringList() << QStringLiteral("*.renamecategories"));
+        const QStringList fileNames = QDir(dir).entryList(QStringList() << u"*.renamecategories"_s);
         for (const QString &file : fileNames) {
             mRenameCategoriesList.append(KDebugSettingsUtil::readRenameCategories(dir + file));
         }
     }
     // TODO add load rename file from external kde apps.
-    const QStringList dirs2 =
-        QStandardPaths::locateAll(QStandardPaths::GenericConfigLocation, QStringLiteral("qdebug.categories/"), QStandardPaths::LocateDirectory);
+    const QStringList dirs2 = QStandardPaths::locateAll(QStandardPaths::GenericConfigLocation, u"qdebug.categories/"_s, QStandardPaths::LocateDirectory);
     // qDebug() << " dirs 2 " << dirs2;
     for (const QString &dir : dirs2) {
-        const QStringList fileNames = QDir(dir).entryList(QStringList() << QStringLiteral("*.renamecategories"));
+        const QStringList fileNames = QDir(dir).entryList(QStringList() << u"*.renamecategories"_s);
         for (const QString &file : fileNames) {
             mRenameCategoriesList.append(KDebugSettingsUtil::readRenameCategories(dir + file));
         }
@@ -61,7 +60,7 @@ void KDebugSettingsLoadingCategories::re
 
     // Load *.categories file in QStandardPaths::ConfigLocation for kde apps.
     for (const QString &dir : dirs) {
-        const QStringList fileNames = QDir(dir).entryList(QStringList() << QStringLiteral("*.categories"));
+        const QStringList fileNames = QDir(dir).entryList(QStringList() << u"*.categories"_s);
         for (const QString &file : fileNames) {
             if (file != "kde.categories"_L1) {
                 KDebugSettingsUtil::readLoggingCategories(dir + file, mCategoriesList, true);
@@ -71,9 +70,9 @@ void KDebugSettingsLoadingCategories::re
 
     // Load *.categories files in qdebug.categories for external KDE apps.
     for (const QString &dir : dirs2) {
-        const QStringList fileNames = QDir(dir).entryList(QStringList() << QStringLiteral("*.categories"));
+        const QStringList fileNames = QDir(dir).entryList(QStringList() << u"*.categories"_s);
         for (const QString &file : fileNames) {
-            KDebugSettingsUtil::readLoggingCategories(dir + QLatin1Char('/') + file, mCategoriesList, true);
+            KDebugSettingsUtil::readLoggingCategories(dir + u'/' + file, mCategoriesList, true);
         }
     }
 
diff -pruN 25.04.0-2/src/core/kdebugsettingsutil.cpp 25.08.2-0ubuntu1/src/core/kdebugsettingsutil.cpp
--- 25.04.0-2/src/core/kdebugsettingsutil.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/kdebugsettingsutil.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -18,7 +18,7 @@ using namespace Qt::Literals::StringLite
 RenameCategory KDebugSettingsUtil::parseRenameCategory(QString line, const QString &filename)
 {
     RenameCategory category;
-    int pos = line.indexOf(QLatin1Char('#'));
+    int pos = line.indexOf(u'#');
     if (pos != -1) {
         line.truncate(pos);
         line = line.simplified();
@@ -28,7 +28,7 @@ RenameCategory KDebugSettingsUtil::parse
         return category;
     }
     line = line.simplified();
-    const int space = line.indexOf(QLatin1Char(' '));
+    const int space = line.indexOf(u' ');
     if (space == -1) {
         qCWarning(KDEBUGSETTINGSCORE_LOG) << "Invalid categories file. Missing space. Syntax is logname<space>description + optional element. Line: " << line
                                           << " from file:" << filename << Qt::endl;
@@ -68,7 +68,7 @@ RenameCategory::List KDebugSettingsUtil:
 KdeLoggingCategory KDebugSettingsUtil::parseLineKdeLoggingCategory(QString line, const QString &filename)
 {
     KdeLoggingCategory category;
-    const int pos = line.indexOf(QLatin1Char('#'));
+    const int pos = line.indexOf(u'#');
     if (pos != -1) {
         line.truncate(pos);
         line = line.simplified();
@@ -78,7 +78,7 @@ KdeLoggingCategory KDebugSettingsUtil::p
         return category;
     }
     line = line.simplified();
-    const int space = line.indexOf(QLatin1Char(' '));
+    const int space = line.indexOf(u' ');
     if (space == -1) {
         qCWarning(KDEBUGSETTINGSCORE_LOG) << "Invalid categories file. Missing space. Syntax is logname<space>description + optional element. Line: " << line
                                           << " from file:" << filename << Qt::endl;
@@ -91,7 +91,7 @@ KdeLoggingCategory KDebugSettingsUtil::p
 
     // TODO create an unique regularexpression
 
-    static const QRegularExpression regularExpressionUser(QStringLiteral("^([\\w._-]+)\\s*(.*)$"));
+    static const QRegularExpression regularExpressionUser(u"^([\\w._-]+)\\s*(.*)$"_s);
     QRegularExpressionMatch match = regularExpressionUser.match(line);
     if (match.hasMatch()) {
         logName = match.captured(1);
@@ -100,7 +100,7 @@ KdeLoggingCategory KDebugSettingsUtil::p
 
     bool newFormatFound = false;
     static const QRegularExpression regularExpressionDefaultSeverityNewFormat(
-        QStringLiteral("^(.*)\\s+DEFAULT_SEVERITY\\s+\\[(DEBUG|INFO|WARNING|CRITICAL)\\](?:\\s+(.*))?"));
+        u"^(.*)\\s+DEFAULT_SEVERITY\\s+\\[(DEBUG|INFO|WARNING|CRITICAL)\\](?:\\s+(.*))?"_s);
     QRegularExpressionMatch match3 = regularExpressionDefaultSeverityNewFormat.match(description);
     QString defaultSeverityCaptured;
     QString potentialIdentifier;
@@ -118,7 +118,7 @@ KdeLoggingCategory KDebugSettingsUtil::p
     }
 
     if (potentialIdentifier.isEmpty()) {
-        static const QRegularExpression regularExpressionDefaultIdentifierNewFormat(QStringLiteral("^(.*)\\s+IDENTIFIER\\s+\\[(.*)\\]"));
+        static const QRegularExpression regularExpressionDefaultIdentifierNewFormat(u"^(.*)\\s+IDENTIFIER\\s+\\[(.*)\\]"_s);
         QRegularExpressionMatch match4 = regularExpressionDefaultIdentifierNewFormat.match(description);
         if (match4.hasMatch()) {
             newFormatFound = true;
@@ -132,7 +132,7 @@ KdeLoggingCategory KDebugSettingsUtil::p
             }
         }
     } else {
-        static const QRegularExpression regularExpressionDefaultIdentifierNewFormat2(QStringLiteral("IDENTIFIER\\s+\\[(.*)\\]"));
+        static const QRegularExpression regularExpressionDefaultIdentifierNewFormat2(u"IDENTIFIER\\s+\\[(.*)\\]"_s);
         QRegularExpressionMatch match4 = regularExpressionDefaultIdentifierNewFormat2.match(potentialIdentifier);
         if (match4.hasMatch()) {
             newFormatFound = true;
@@ -145,7 +145,7 @@ KdeLoggingCategory KDebugSettingsUtil::p
 
     if (!newFormatFound) {
         // Old format.
-        static const QRegularExpression regularExpressionDefaultSeverityOldFormat(QStringLiteral("^(.*)\\s+\\[(DEBUG|INFO|WARNING|CRITICAL)\\]"));
+        static const QRegularExpression regularExpressionDefaultSeverityOldFormat(u"^(.*)\\s+\\[(DEBUG|INFO|WARNING|CRITICAL)\\]"_s);
         QRegularExpressionMatch match2 = regularExpressionDefaultSeverityOldFormat.match(description);
         if (match2.hasMatch()) {
             const QString descriptionCaptured = match2.captured(1);
@@ -243,8 +243,8 @@ void KDebugSettingsUtil::readLoggingCate
 KDebugSettingsUtil::LineLoggingQtCategory KDebugSettingsUtil::parseLineLoggingQtCategory(const QString &line)
 {
     LineLoggingQtCategory lineCategory;
-    int equalPos = line.indexOf(QLatin1Char('='));
-    if ((equalPos != -1) && (line.lastIndexOf(QLatin1Char('=')) == equalPos)) {
+    int equalPos = line.indexOf(u'=');
+    if ((equalPos != -1) && (line.lastIndexOf(u'=') == equalPos)) {
         const QString pattern = line.left(equalPos);
         const QString valueStr = line.mid(equalPos + 1);
         if (valueStr == "true"_L1) {
@@ -298,14 +298,14 @@ QList<KDebugSettingsUtil::LoadLoggingCat
 
             // Remove all whitespace from line
             line = line.simplified();
-            line.remove(QLatin1Char(' '));
+            line.remove(u' ');
 
             // comment
-            if (line.startsWith(QLatin1Char(';'))) {
+            if (line.startsWith(u';')) {
                 continue;
             }
 
-            if (line.startsWith(QLatin1Char('[')) && line.endsWith(QLatin1Char(']'))) {
+            if (line.startsWith(u'[') && line.endsWith(u']')) {
                 // new section
                 _section = line.mid(1, line.size() - 2);
                 rulesSections = (_section == "Rules"_L1);
@@ -431,7 +431,7 @@ QString KDebugSettingsUtil::qtFileName()
 {
     const QString envPath = QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + "/QtProject"_L1;
     QDir().mkpath(envPath);
-    const QString qtloggingFileName = envPath + QStringLiteral("/qtlogging.ini");
+    const QString qtloggingFileName = envPath + u"/qtlogging.ini"_s;
     return qtloggingFileName;
 }
 
@@ -495,24 +495,24 @@ QString KDebugSettingsUtil::generateDisp
         case LoggingCategory::All:
             break;
         case LoggingCategory::Info:
-            ruleStr += QStringLiteral(".info");
+            ruleStr += u".info"_s;
             break;
         case LoggingCategory::Warning:
-            ruleStr += QStringLiteral(".warning");
+            ruleStr += u".warning"_s;
             break;
         case LoggingCategory::Debug:
-            ruleStr += QStringLiteral(".debug");
+            ruleStr += u".debug"_s;
             break;
         case LoggingCategory::Critical:
-            ruleStr += QStringLiteral(".critical");
+            ruleStr += u".critical"_s;
             break;
         case LoggingCategory::Off:
             break;
         }
         if (state) {
-            ruleStr += QStringLiteral("=true");
+            ruleStr += u"=true"_s;
         } else {
-            ruleStr += QStringLiteral("=false");
+            ruleStr += u"=false"_s;
         }
     }
     return ruleStr;
diff -pruN 25.04.0-2/src/core/loggingcategory.cpp 25.08.2-0ubuntu1/src/core/loggingcategory.cpp
--- 25.04.0-2/src/core/loggingcategory.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/core/loggingcategory.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -29,19 +29,19 @@ QString LoggingCategory::createCustomRul
     QString str;
     switch (loggingType) {
     case All:
-        str = categoryName + (enabled ? QStringLiteral("=true\n") : QStringLiteral("=false\n"));
+        str = categoryName + (enabled ? u"=true\n"_s : u"=false\n"_s);
         break;
     case Info:
-        str = categoryName + QStringLiteral(".info=%1\n").arg(enabled ? QStringLiteral("true") : QStringLiteral("false"));
+        str = categoryName + u".info=%1\n"_s.arg(enabled ? u"true"_s : QStringLiteral("false"));
         break;
     case Warning:
-        str = categoryName + QStringLiteral(".warning=%1\n").arg(enabled ? QStringLiteral("true") : QStringLiteral("false"));
+        str = categoryName + u".warning=%1\n"_s.arg(enabled ? u"true"_s : QStringLiteral("false"));
         break;
     case Debug:
-        str = categoryName + QStringLiteral(".debug=%1\n").arg(enabled ? QStringLiteral("true") : QStringLiteral("false"));
+        str = categoryName + u".debug=%1\n"_s.arg(enabled ? u"true"_s : QStringLiteral("false"));
         break;
     case Critical:
-        str = categoryName + QStringLiteral(".critical=%1\n").arg(enabled ? QStringLiteral("true") : QStringLiteral("false"));
+        str = categoryName + u".critical=%1\n"_s.arg(enabled ? u"true"_s : QStringLiteral("false"));
         break;
     case Undefined:
     case Off:
@@ -112,12 +112,12 @@ QDebug operator<<(QDebug d, const Loggin
 
 QString LoggingCategory::generateToolTip() const
 {
-    QString toopTip = i18n("Category name: %1", categoryName);
+    QString tooltip = i18n("Category name: %1", categoryName);
     if (!identifierName.isEmpty()) {
-        toopTip += QLatin1Char('\n') + i18n("Identifier: %1", identifierName);
+        tooltip += u'\n' + i18n("Identifier: %1", identifierName);
     }
-    toopTip += QLatin1Char('\n') + i18n("Default Severity: %1", convertCategoryTypeToString(defaultSeverityType));
-    return toopTip;
+    tooltip += u'\n' + i18n("Default Severity: %1", convertCategoryTypeToString(defaultSeverityType));
+    return tooltip;
 }
 
 QString LoggingCategory::convertCategoryTypeToString(LoggingCategory::LoggingType type) const
diff -pruN 25.04.0-2/src/data/CMakeLists.txt 25.08.2-0ubuntu1/src/data/CMakeLists.txt
--- 25.04.0-2/src/data/CMakeLists.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/data/CMakeLists.txt	2025-09-30 21:42:27.000000000 +0000
@@ -3,5 +3,11 @@
 
 ########### install files ###############
 
-install(PROGRAMS org.kde.kdebugsettings.desktop  DESTINATION  ${KDE_INSTALL_APPDIR} )
-install(FILES org.kde.kdebugsettings.appdata.xml DESTINATION  ${KDE_INSTALL_METAINFODIR})
+install(
+    PROGRAMS org.kde.kdebugsettings.desktop
+    DESTINATION ${KDE_INSTALL_APPDIR}
+)
+install(
+    FILES org.kde.kdebugsettings.appdata.xml
+    DESTINATION ${KDE_INSTALL_METAINFODIR}
+)
diff -pruN 25.04.0-2/src/data/org.kde.kdebugsettings.appdata.xml 25.08.2-0ubuntu1/src/data/org.kde.kdebugsettings.appdata.xml
--- 25.04.0-2/src/data/org.kde.kdebugsettings.appdata.xml	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/data/org.kde.kdebugsettings.appdata.xml	2025-09-30 21:42:27.000000000 +0000
@@ -49,7 +49,6 @@
   <name xml:lang="sv">KDebugSettings</name>
   <name xml:lang="tr">K Hata Ayıklama Ayarları</name>
   <name xml:lang="uk">Параметри KDebug</name>
-  <name xml:lang="x-test">xxKDebugSettingsxx</name>
   <name xml:lang="zh-CN">KDebugSettings</name>
   <name xml:lang="zh-TW">KDebugSettings</name>
   <summary>Set which debug messages are shown</summary>
@@ -90,7 +89,6 @@
   <summary xml:lang="sv">Ställ in vilka felsökningsmeddelanden som visas</summary>
   <summary xml:lang="tr">Hangi hata ayıklama iletilerinin gösterileceğini ayarlayın</summary>
   <summary xml:lang="uk">Визначення того, які з діагностичних повідомлень буде показано</summary>
-  <summary xml:lang="x-test">xxSet which debug messages are shownxx</summary>
   <summary xml:lang="zh-CN">设置显示哪些调试消息</summary>
   <summary xml:lang="zh-TW">設定要顯示哪些除錯訊息</summary>
   <description>
@@ -133,7 +131,6 @@
     <p xml:lang="sv">KDebugSettings redigerar vilka kategorier i QLoggingCategory som visas. QLoggingCategory skriver ut meddelanden på terminalen åt program, och du kan definiera vilka program som visar meddelanden såsom information, varningar eller kritiska fel för att hjälpa till att felsöka Qt-program.</p>
     <p xml:lang="tr">K Hata Ayıklama Ayarları, hangi QLoggingCategory’nin görüntüleneceğini düzenler. QLoggingCategory, uygulamalar için konsolda iletiler yazdırır ve hangi uygulamaların Qt uygulamalarında hata ayıklamaya yardımcı olmak için bilgi, uyarı veya kritik hatalar için iletiler görüntüleyeceğini tanımlayabilirsiniz.</p>
     <p xml:lang="uk">За допомогою програми «Параметри KDebug» можна визначити, які дані з QLoggingCategory буде показано. QLoggingCategory виводить повідомлення до консолі для програм, а ви можете визначити, для яких програм слід показувати повідомлення з відомостями, попередженнями або критичними помилками. Ці повідомлення допоможуть вам діагностувати причини проблем із програмами на основі Qt.</p>
-    <p xml:lang="x-test">xxKDebugSettings edits which QLoggingCategory are displayed. QLoggingCategory prints messages on the console for applications and you can define which applications display messages for information, warning or critical errors to help debugging Qt applications.xx</p>
     <p xml:lang="zh-CN">KDebugSettings 用于编辑显示的 QLoggingCategory 项。QLoggingCategory 在命令行终端中输出应用程序消息，你可以指定哪些应用程序显示信息、警告、关键错误等消息，以便对 Qt 应用程序进行调试。</p>
     <p xml:lang="zh-TW">KDebugSettings 編輯哪些 QLoggingCategory 紀錄分類要被顯示。QLoggingCategory 為應用程式在主控台顯示訊息，而您可以定義應用程式是否顯示資訊、警告或嚴重錯誤，來幫助除錯 Qt 應用程式。</p>
   </description>
@@ -182,7 +179,6 @@
       <caption xml:lang="sv">KDebugSettings huvudfönster</caption>
       <caption xml:lang="tr">K Hata Ayıklama Ayarları ana penceresi.</caption>
       <caption xml:lang="uk">Головне вікно KDebugSettings.</caption>
-      <caption xml:lang="x-test">xxThe main window of KDebugSettings.xx</caption>
       <caption xml:lang="zh-CN">KDebugSettings 的主窗口。</caption>
       <caption xml:lang="zh-TW">KDebugSettings 的主視窗。</caption>
       <image>https://cdn.kde.org/screenshots/kdebugsettings/kdebugsettings.png</image>
@@ -193,6 +189,12 @@
     <binary>kdebugsettings</binary>
   </provides>
   <releases>
+    <release version="25.08.2" date="2025-10-09"/>
+    <release version="25.08.1" date="2025-09-11"/>
+    <release version="25.08.0" date="2025-08-14"/>
+    <release version="25.04.3" date="2025-07-03"/>
+    <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"/>
     <release version="24.12.2" date="2025-02-06"/>
diff -pruN 25.04.0-2/src/data/org.kde.kdebugsettings.desktop 25.08.2-0ubuntu1/src/data/org.kde.kdebugsettings.desktop
--- 25.04.0-2/src/data/org.kde.kdebugsettings.desktop	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/data/org.kde.kdebugsettings.desktop	2025-09-30 21:42:27.000000000 +0000
@@ -43,7 +43,6 @@ GenericName[sr@latin]=Ispravljačke post
 GenericName[sv]=Felsökningsinställningar
 GenericName[tr]=Hata Ayıklama Ayarları
 GenericName[uk]=Параметри діагностики
-GenericName[x-test]=xxDebug settingsxx
 GenericName[zh_CN]=调试设置
 GenericName[zh_TW]=除錯設定
 Name=KDebugSettings
@@ -88,7 +87,6 @@ Name[sr@latin]=Postavke KDE ispravljanja
 Name[sv]=Inställning av KDebug
 Name[tr]=K Hata Ayıklama Ayarları
 Name[uk]=KDebugSettings
-Name[x-test]=xxKDebugSettingsxx
 Name[zh_CN]=KDebugSettings
 Name[zh_TW]=KDebug 設定
 Comment=Configure debug output from Qt applications
@@ -132,7 +130,6 @@ Comment[sr@latin]=Podešavanje ispravlja
 Comment[sv]=Anpassa felsökningsutmatning från Qt-program
 Comment[tr]=Qt uygulamalarının hata ayıklama çıktılarını yapılandır
 Comment[uk]=Налаштовування діагностичних повідомлень програм Qt
-Comment[x-test]=xxConfigure debug output from Qt applicationsxx
 Comment[zh_CN]=配置 Qt 应用程序的调试输出
 Comment[zh_TW]=配置來自 Qt 應用程式的偵錯輸出
 Keywords=log;logging;category;categories;journal;logging levels;debug
@@ -169,7 +166,6 @@ Keywords[sl]=dnevnik;pisanje dnevnika;ka
 Keywords[sv]=logg;loggning;kategori;kategorier;journal;loggningsnivåer;felsökning
 Keywords[tr]=günlük;günlükleme;kategori;kategoriler;jurnal;günlükleme düzeyleri;hata ayıklama;günce
 Keywords[uk]=log;logging;category;categories;journal;logging levels;debug;журнал;журналювання;категорія;категорії;рівні журналювання;діагностика
-Keywords[x-test]=xxlogxx;xxloggingxx;xxcategoryxx;xxcategoriesxx;xxjournalxx;xxlogging levelsxx;xxdebugxx
 Keywords[zh_CN]=log;logging;category;categories;journal;logging levels;debug;日志;记录;分类;类别;日志级别;调试;rizhi;jilu;fenlei;rizhijibie;tiaoshi
 Keywords[zh_TW]=log;logging;category;categories;journal;logging levels;debug;除錯
 Icon=debug-run
diff -pruN 25.04.0-2/src/quickapps/CMakeLists.txt 25.08.2-0ubuntu1/src/quickapps/CMakeLists.txt
--- 25.04.0-2/src/quickapps/CMakeLists.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/quickapps/CMakeLists.txt	2025-09-30 21:42:27.000000000 +0000
@@ -7,7 +7,8 @@ if(COMPILE_WITH_UNITY_CMAKE_SUPPORT)
     set_target_properties(kdebugsettingsquick PROPERTIES UNITY_BUILD ON)
 endif()
 
-target_link_libraries(kdebugsettingsquick
+target_link_libraries(
+    kdebugsettingsquick
     KF6::I18n
     KF6::CoreAddons
     libkdebugsettingscore
@@ -25,4 +26,3 @@ endif()
 target_link_libraries(kdebugsettingsquick KF6::I18nQml)
 
 install(TARGETS kdebugsettingsquick ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
-
diff -pruN 25.04.0-2/src/quickapps/contents/ui/CustomRulesPage.qml 25.08.2-0ubuntu1/src/quickapps/contents/ui/CustomRulesPage.qml
--- 25.04.0-2/src/quickapps/contents/ui/CustomRulesPage.qml	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/quickapps/contents/ui/CustomRulesPage.qml	2025-09-30 21:42:27.000000000 +0000
@@ -50,4 +50,3 @@ Kirigami.ScrollablePage {
         }
     }
 }
-
diff -pruN 25.04.0-2/src/quickapps/contents/ui/EnvironmentVariableRulesPage.qml 25.08.2-0ubuntu1/src/quickapps/contents/ui/EnvironmentVariableRulesPage.qml
--- 25.04.0-2/src/quickapps/contents/ui/EnvironmentVariableRulesPage.qml	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/quickapps/contents/ui/EnvironmentVariableRulesPage.qml	2025-09-30 21:42:27.000000000 +0000
@@ -23,4 +23,3 @@ Kirigami.Page {
         }
     }
 }
-
diff -pruN 25.04.0-2/src/quickapps/contents/ui/KDEApplicationRulesPage.qml 25.08.2-0ubuntu1/src/quickapps/contents/ui/KDEApplicationRulesPage.qml
--- 25.04.0-2/src/quickapps/contents/ui/KDEApplicationRulesPage.qml	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/quickapps/contents/ui/KDEApplicationRulesPage.qml	2025-09-30 21:42:27.000000000 +0000
@@ -58,4 +58,3 @@ Kirigami.ScrollablePage {
         }
     }
 }
-
diff -pruN 25.04.0-2/src/quickapps/main.cpp 25.08.2-0ubuntu1/src/quickapps/main.cpp
--- 25.04.0-2/src/quickapps/main.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/quickapps/main.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "ki18n_version.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include <KLocalizedQmlContext>
 #include <QApplication>
 
@@ -50,38 +52,35 @@ int main(int argc, char **argv)
 #endif
     // Default to org.kde.desktop style unless the user forces another style
     if (qEnvironmentVariableIsEmpty("QT_QUICK_CONTROLS_STYLE")) {
-        QQuickStyle::setStyle(QStringLiteral("org.kde.desktop"));
+        QQuickStyle::setStyle(u"org.kde.desktop"_s);
     }
 
     KStyleManager::initStyle();
 
     KLocalizedString::setApplicationDomain(QByteArrayLiteral("kdebugsettings"));
-    KAboutData aboutData(QStringLiteral("kdebugsettingsquick"),
+    KAboutData aboutData(u"kdebugsettingsquick"_s,
                          i18n("KDebugSettings"),
                          QStringLiteral(KDEBUGSETTINGS_VERSION),
                          i18n("Configure debug settings"),
                          KAboutLicense::GPL_V2,
-                         i18n("(c) %1 kdebugsettings authors", QStringLiteral("2023")));
-    aboutData.addAuthor(i18nc("@info:credit", "Laurent Montel"), i18n("Maintainer"), QStringLiteral("montel@kde.org"));
+                         i18n("(c) %1 kdebugsettings authors", u"2023"_s));
+    aboutData.addAuthor(i18nc("@info:credit", "Laurent Montel"), i18n("Maintainer"), u"montel@kde.org"_s);
     KAboutData::setApplicationData(aboutData);
 
     QCommandLineParser parser;
     aboutData.setupCommandLine(&parser);
 
-    const QCommandLineOption testModeOption(QStringLiteral("test-mode"), i18n("Enable QStandardPaths test mode, i.e. read/write settings used by unittests"));
+    const QCommandLineOption testModeOption(u"test-mode"_s, i18n("Enable QStandardPaths test mode, i.e. read/write settings used by unittests"));
     parser.addOption(testModeOption);
 
-    const QCommandLineOption switchFullDebugOption(QStringLiteral("enable-full-debug"), i18n("Activate full debug for all modules."));
+    const QCommandLineOption switchFullDebugOption(u"enable-full-debug"_s, i18n("Activate full debug for all modules."));
     parser.addOption(switchFullDebugOption);
-    const QCommandLineOption switchOffDebugOption(QStringLiteral("disable-full-debug"), i18n("Disable full debug for all modules."));
+    const QCommandLineOption switchOffDebugOption(u"disable-full-debug"_s, i18n("Disable full debug for all modules."));
     parser.addOption(switchOffDebugOption);
 
-    const QCommandLineOption changeDebugSettingOption(QStringLiteral("debug-mode"),
-                                                      i18n("Change debug mode as console (in console)"),
-                                                      QStringLiteral("Full|Info|Warning|Critical|Off"));
+    const QCommandLineOption changeDebugSettingOption(u"debug-mode"_s, i18n("Change debug mode as console (in console)"), u"Full|Info|Warning|Critical|Off"_s);
     parser.addOption(changeDebugSettingOption);
-    parser.addPositionalArgument(QStringLiteral("logging category name"),
-                                 i18n("Specify logging category name that you want to change debug mode (in console)"));
+    parser.addPositionalArgument(u"logging category name"_s, i18n("Specify logging category name that you want to change debug mode (in console)"));
 
     parser.process(app);
     aboutData.processCommandLine(&parser);
@@ -92,7 +91,7 @@ int main(int argc, char **argv)
 
     if (parser.isSet(switchFullDebugOption)) {
         ChangeDebugModeJob job;
-        job.setDebugMode(QStringLiteral("Full"));
+        job.setDebugMode(u"Full"_s);
         job.setWithoutArguments(true);
         if (!job.start()) {
             std::cout << i18n("Impossible to change debug mode").toLocal8Bit().data() << std::endl;
@@ -102,7 +101,7 @@ int main(int argc, char **argv)
     }
     if (parser.isSet(switchOffDebugOption)) {
         ChangeDebugModeJob job;
-        job.setDebugMode(QStringLiteral("Off"));
+        job.setDebugMode(u"Off"_s);
         job.setWithoutArguments(true);
         if (!job.start()) {
             std::cout << i18n("Impossible to change debug mode").toLocal8Bit().data() << std::endl;
@@ -139,7 +138,7 @@ int main(int argc, char **argv)
             return engine->toScriptValue(KAboutData::applicationData());
         });
         engine.rootContext()->setContextObject(new KLocalizedQmlContext(&engine));
-        engine.load(QUrl(QStringLiteral("qrc:///main.qml")));
+        engine.load(QUrl(u"qrc:///main.qml"_s));
         // Exit on QML load error.
         if (engine.rootObjects().isEmpty()) {
             qDebug() << " Error during loading main.qml";
diff -pruN 25.04.0-2/src/seleniumtests/kdebugsettings.py 25.08.2-0ubuntu1/src/seleniumtests/kdebugsettings.py
--- 25.04.0-2/src/seleniumtests/kdebugsettings.py	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/seleniumtests/kdebugsettings.py	2025-09-30 21:42:27.000000000 +0000
@@ -10,12 +10,13 @@ from appium.webdriver.common.appiumby im
 
 
 class SmokeTests(unittest.TestCase):
-
     @classmethod
     def setUpClass(cls):
         options = AppiumOptions()
         options.set_capability("app", "org.kde.kdebugsettings.desktop")
-        cls.driver = webdriver.Remote(command_executor='http://127.0.0.1:4723', options=options)
+        cls.driver = webdriver.Remote(
+            command_executor="http://127.0.0.1:4723", options=options
+        )
 
     @classmethod
     def tearDownClass(self):
@@ -25,8 +26,11 @@ class SmokeTests(unittest.TestCase):
         pass
 
     def test_addTrainTrip(self):
-        self.driver.find_element(by=AppiumBy.ACCESSIBILITY_ID, value="QApplication.KDebugSettingsDialog.buttonbox.insert_button").click()
+        self.driver.find_element(
+            by=AppiumBy.ACCESSIBILITY_ID,
+            value="QApplication.KDebugSettingsDialog.buttonbox.insert_button",
+        ).click()
 
 
-if __name__ == '__main__':
+if __name__ == "__main__":
     unittest.main()
diff -pruN 25.04.0-2/src/widgets/CMakeLists.txt 25.08.2-0ubuntu1/src/widgets/CMakeLists.txt
--- 25.04.0-2/src/widgets/CMakeLists.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/CMakeLists.txt	2025-09-30 21:42:27.000000000 +0000
@@ -6,52 +6,52 @@ add_library(libkdebugsettings SHARED)
 
 ecm_qt_declare_logging_category(libkdebugsettings HEADER kdebugsettings_debug.h IDENTIFIER KDEBUGSETTINGS_LOG CATEGORY_NAME log_kdebugsettings DESCRIPTION "kdebugsettings" EXPORT KDEBUGSETTINGS)
 
-target_sources(libkdebugsettings PRIVATE
-    categorytypecombobox.cpp
-    categorytypecombobox.h
-    categorywarning.cpp
-    categorywarning.h
-    configurecustomsettingdialog.cpp
-    configurecustomsettingdialog.h
-    configurecustomsettingwidget.cpp
-    configurecustomsettingwidget.h
-    customdebugsettingspage.cpp
-    customdebugsettingspage.h
-    environmentplaintextedit.cpp
-    environmentplaintextedit.h
-    environmentsettingsrulespage.cpp
-    environmentsettingsrulespage.h
-    groupmanagementdialog.cpp
-    groupmanagementdialog.h
-    groupmanagementwidget.cpp
-    groupmanagementwidget.h
-    kdeapplicationdebugsettingpage.cpp
-    kdeapplicationdebugsettingpage.h
-    kdebugsettingsdialog.cpp
-    kdebugsettingsdialog.h
-    libkdebugsettings_private_export.h
-    loadgroupmenu.cpp
-    loadgroupmenu.h
-    loadtoolbutton.cpp
-    loadtoolbutton.h
-    savetoolbutton.cpp
-    savetoolbutton.h
-
-    customdebuglistview.h
-    customdebuglistview.cpp
-
-
-    kdeapplicationtreeview.h
-    kdeapplicationtreeview.cpp
-    kdeapplicationlistviewdelegate.h
-    kdeapplicationlistviewdelegate.cpp
-    )
+target_sources(
+    libkdebugsettings
+    PRIVATE
+        categorytypecombobox.cpp
+        categorytypecombobox.h
+        categorywarning.cpp
+        categorywarning.h
+        configurecustomsettingdialog.cpp
+        configurecustomsettingdialog.h
+        configurecustomsettingwidget.cpp
+        configurecustomsettingwidget.h
+        customdebugsettingspage.cpp
+        customdebugsettingspage.h
+        environmentplaintextedit.cpp
+        environmentplaintextedit.h
+        environmentsettingsrulespage.cpp
+        environmentsettingsrulespage.h
+        groupmanagementdialog.cpp
+        groupmanagementdialog.h
+        groupmanagementwidget.cpp
+        groupmanagementwidget.h
+        kdeapplicationdebugsettingpage.cpp
+        kdeapplicationdebugsettingpage.h
+        kdebugsettingsdialog.cpp
+        kdebugsettingsdialog.h
+        libkdebugsettings_private_export.h
+        loadgroupmenu.cpp
+        loadgroupmenu.h
+        loadtoolbutton.cpp
+        loadtoolbutton.h
+        savetoolbutton.cpp
+        savetoolbutton.h
+        customdebuglistview.h
+        customdebuglistview.cpp
+        kdeapplicationtreeview.h
+        kdeapplicationtreeview.cpp
+        kdeapplicationlistviewdelegate.h
+        kdeapplicationlistviewdelegate.cpp
+)
 
 if(COMPILE_WITH_UNITY_CMAKE_SUPPORT)
     set_target_properties(libkdebugsettings PROPERTIES UNITY_BUILD ON)
 endif()
 generate_export_header(libkdebugsettings BASE_NAME libkdebugsettings)
-target_link_libraries(libkdebugsettings
+target_link_libraries(
+    libkdebugsettings
     Qt::Core
     KF6::Completion
     KF6::ConfigCore
@@ -64,14 +64,20 @@ target_link_libraries(libkdebugsettings
     libkdebugsettingscore
 )
 
-set_target_properties(libkdebugsettings
-    PROPERTIES OUTPUT_NAME kdebugsettings VERSION ${KDEBUGSETTINGS_LIB_VERSION} SOVERSION ${KDEBUGSETTINGS_LIB_SOVERSION}
-    )
+set_target_properties(
+    libkdebugsettings
+    PROPERTIES
+        OUTPUT_NAME kdebugsettings
+        VERSION ${KDEBUGSETTINGS_LIB_VERSION}
+        SOVERSION ${KDEBUGSETTINGS_LIB_SOVERSION}
+)
 
-install(TARGETS libkdebugsettings ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} LIBRARY NAMELINK_SKIP)
+install(
+    TARGETS libkdebugsettings ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}
+    LIBRARY NAMELINK_SKIP
+)
 
 if(BUILD_TESTING)
-    add_subdirectory( autotests )
-    add_subdirectory( tests )
+    add_subdirectory(autotests)
+    add_subdirectory(tests)
 endif()
-
diff -pruN 25.04.0-2/src/widgets/autotests/CMakeLists.txt 25.08.2-0ubuntu1/src/widgets/autotests/CMakeLists.txt
--- 25.04.0-2/src/widgets/autotests/CMakeLists.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/CMakeLists.txt	2025-09-30 21:42:27.000000000 +0000
@@ -8,7 +8,8 @@ macro(add_kdebugsettings_unittest _sourc
     add_executable(${_name} ${_test} ${_name}.h)
     add_test(NAME ${_name} COMMAND ${_name})
     ecm_mark_as_test(kdebugsettings-${_name})
-    target_link_libraries( ${_name}
+    target_link_libraries(
+        ${_name}
         Qt::Test
         KF6::I18n
         Qt::Widgets
@@ -16,7 +17,7 @@ macro(add_kdebugsettings_unittest _sourc
         KF6::WidgetsAddons
         KF6::Completion
         libkdebugsettings
-        )
+    )
 endmacro()
 
 add_kdebugsettings_unittest(kdebugsettingsdialogtest.cpp)
diff -pruN 25.04.0-2/src/widgets/autotests/categorytypecomboboxtest.cpp 25.08.2-0ubuntu1/src/widgets/autotests/categorytypecomboboxtest.cpp
--- 25.04.0-2/src/widgets/autotests/categorytypecomboboxtest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/categorytypecomboboxtest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "categorytypecomboboxtest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "categorytypecombobox.h"
 #include <QTest>
 
@@ -25,7 +27,7 @@ void CategoryTypeComboBoxTest::shouldHav
     QCOMPARE(w2.count(), 5);
 
     auto proxy = w.model();
-    QCOMPARE(proxy->objectName(), QStringLiteral("proxy"));
+    QCOMPARE(proxy->objectName(), u"proxy"_s);
 
     QCOMPARE(w.defaultCategories(), LoggingCategory::Info);
 }
diff -pruN 25.04.0-2/src/widgets/autotests/configurecustomsettingdialogtest.cpp 25.08.2-0ubuntu1/src/widgets/autotests/configurecustomsettingdialogtest.cpp
--- 25.04.0-2/src/widgets/autotests/configurecustomsettingdialogtest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/configurecustomsettingdialogtest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "configurecustomsettingdialogtest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "configurecustomsettingdialog.h"
 #include "configurecustomsettingwidget.h"
 #include <QDialogButtonBox>
@@ -21,10 +23,10 @@ ConfigureCustomSettingDialogTest::~Confi
 void ConfigureCustomSettingDialogTest::shouldHaveDefaultValue()
 {
     ConfigureCustomSettingDialog dlg;
-    auto buttonBox = dlg.findChild<QDialogButtonBox *>(QStringLiteral("buttonbox"));
+    auto buttonBox = dlg.findChild<QDialogButtonBox *>(u"buttonbox"_s);
     QVERIFY(buttonBox);
     QVERIFY(!buttonBox->button(QDialogButtonBox::Ok)->isEnabled());
-    auto widget = dlg.findChild<ConfigureCustomSettingWidget *>(QStringLiteral("customsettingwidget"));
+    auto widget = dlg.findChild<ConfigureCustomSettingWidget *>(u"customsettingwidget"_s);
     QVERIFY(widget);
 }
 
diff -pruN 25.04.0-2/src/widgets/autotests/configurecustomsettingwidgettest.cpp 25.08.2-0ubuntu1/src/widgets/autotests/configurecustomsettingwidgettest.cpp
--- 25.04.0-2/src/widgets/autotests/configurecustomsettingwidgettest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/configurecustomsettingwidgettest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "configurecustomsettingwidgettest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "configurecustomsettingwidget.h"
 #include <KLineEdit>
 #include <QCheckBox>
@@ -24,20 +26,20 @@ ConfigureCustomSettingWidgetTest::~Confi
 void ConfigureCustomSettingWidgetTest::shouldHaveDefaultValue()
 {
     ConfigureCustomSettingWidget w;
-    auto lab = w.findChild<QLabel *>(QStringLiteral("category_label"));
+    auto lab = w.findChild<QLabel *>(u"category_label"_s);
     QVERIFY(lab);
 
-    auto categoryLineEdit = w.findChild<KLineEdit *>(QStringLiteral("category_lineedit"));
+    auto categoryLineEdit = w.findChild<KLineEdit *>(u"category_lineedit"_s);
     QVERIFY(categoryLineEdit);
     QVERIFY(categoryLineEdit->trapReturnKey());
     QVERIFY(categoryLineEdit->isClearButtonEnabled());
 
-    auto enableCategory = w.findChild<QCheckBox *>(QStringLiteral("enable_category"));
+    auto enableCategory = w.findChild<QCheckBox *>(u"enable_category"_s);
     QVERIFY(enableCategory);
 
-    lab = w.findChild<QLabel *>(QStringLiteral("categorytype_label"));
+    lab = w.findChild<QLabel *>(u"categorytype_label"_s);
     QVERIFY(lab);
-    auto categoryType = w.findChild<QComboBox *>(QStringLiteral("categorytype_combobox"));
+    auto categoryType = w.findChild<QComboBox *>(u"categorytype_combobox"_s);
     QVERIFY(categoryType);
     QCOMPARE(categoryType->count(), 4);
 }
@@ -47,10 +49,10 @@ void ConfigureCustomSettingWidgetTest::s
     QTest::addColumn<QString>("input");
 
     QTest::newRow("empty") << QString();
-    QTest::newRow("validrule") << QStringLiteral("foo.warning=true");
-    QTest::newRow("validrule2") << QStringLiteral("foo=true");
-    QTest::newRow("validrule3") << QStringLiteral("foo=false");
-    QTest::newRow("validrule3*") << QStringLiteral("*.warning=false");
+    QTest::newRow("validrule") << u"foo.warning=true"_s;
+    QTest::newRow("validrule2") << u"foo=true"_s;
+    QTest::newRow("validrule3") << u"foo=false"_s;
+    QTest::newRow("validrule3*") << u"*.warning=false"_s;
 }
 
 void ConfigureCustomSettingWidgetTest::shouldRestoreRules()
@@ -64,17 +66,17 @@ void ConfigureCustomSettingWidgetTest::s
 void ConfigureCustomSettingWidgetTest::shouldEmitSignalWhenWeChangeLogName()
 {
     ConfigureCustomSettingWidget w;
-    auto categoryLineEdit = w.findChild<KLineEdit *>(QStringLiteral("category_lineedit"));
+    auto categoryLineEdit = w.findChild<KLineEdit *>(u"category_lineedit"_s);
     QVERIFY(categoryLineEdit);
     QSignalSpy spy(&w, &ConfigureCustomSettingWidget::enableButton);
-    categoryLineEdit->setText(QStringLiteral("bla"));
+    categoryLineEdit->setText(u"bla"_s);
     QCOMPARE(spy.count(), 1);
     QCOMPARE(spy.at(0).at(0).toBool(), true);
     categoryLineEdit->clear();
     QCOMPARE(spy.count(), 2);
     QCOMPARE(spy.at(1).at(0).toBool(), false);
 
-    categoryLineEdit->setText(QStringLiteral(" "));
+    categoryLineEdit->setText(u" "_s);
     QCOMPARE(spy.count(), 3);
     QCOMPARE(spy.at(2).at(0).toBool(), false);
 }
diff -pruN 25.04.0-2/src/widgets/autotests/customdebugsettingspagetest.cpp 25.08.2-0ubuntu1/src/widgets/autotests/customdebugsettingspagetest.cpp
--- 25.04.0-2/src/widgets/autotests/customdebugsettingspagetest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/customdebugsettingspagetest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "customdebugsettingspagetest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "customdebuglistview.h"
 #include "customdebugsettingspage.h"
 #include <QLineEdit>
@@ -23,22 +25,22 @@ void CustomDebugSettingsPageTest::should
 {
     CustomDebugSettingsPage page;
 
-    auto mCustomDebugListView = page.findChild<CustomDebugListView *>(QStringLiteral("mCustomDebugListView"));
+    auto mCustomDebugListView = page.findChild<CustomDebugListView *>(u"mCustomDebugListView"_s);
     QVERIFY(mCustomDebugListView);
 
-    auto mSearchLineEdit = page.findChild<QLineEdit *>(QStringLiteral("mSearchLineEdit"));
+    auto mSearchLineEdit = page.findChild<QLineEdit *>(u"mSearchLineEdit"_s);
     QVERIFY(mSearchLineEdit);
     QVERIFY(!mSearchLineEdit->placeholderText().isEmpty());
 
-    auto addButton = page.findChild<QPushButton *>(QStringLiteral("add_rule"));
+    auto addButton = page.findChild<QPushButton *>(u"add_rule"_s);
     QVERIFY(addButton);
     QVERIFY(addButton->isEnabled());
 
-    auto editButton = page.findChild<QPushButton *>(QStringLiteral("edit_rule"));
+    auto editButton = page.findChild<QPushButton *>(u"edit_rule"_s);
     QVERIFY(editButton);
     QVERIFY(!editButton->isEnabled());
 
-    auto removeButton = page.findChild<QPushButton *>(QStringLiteral("remove_rule"));
+    auto removeButton = page.findChild<QPushButton *>(u"remove_rule"_s);
     QVERIFY(removeButton);
     QVERIFY(!removeButton->isEnabled());
 }
diff -pruN 25.04.0-2/src/widgets/autotests/environmentsettingsrulespagetest.cpp 25.08.2-0ubuntu1/src/widgets/autotests/environmentsettingsrulespagetest.cpp
--- 25.04.0-2/src/widgets/autotests/environmentsettingsrulespagetest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/environmentsettingsrulespagetest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "environmentsettingsrulespagetest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "environmentplaintextedit.h"
 #include "environmentsettingsrulespage.h"
 #include <QTest>
@@ -20,7 +22,7 @@ void EnvironmentSettingsRulesPageTest::s
 {
     EnvironmentSettingsRulesPage w;
 
-    auto plainText = w.findChild<EnvironmentPlainTextEdit *>(QStringLiteral("richtext"));
+    auto plainText = w.findChild<EnvironmentPlainTextEdit *>(u"richtext"_s);
     QVERIFY(plainText);
     QVERIFY(plainText->toPlainText().isEmpty());
     QVERIFY(plainText->isReadOnly());
@@ -29,8 +31,8 @@ void EnvironmentSettingsRulesPageTest::s
 void EnvironmentSettingsRulesPageTest::shouldSetRules()
 {
     EnvironmentSettingsRulesPage w;
-    auto plainText = w.findChild<EnvironmentPlainTextEdit *>(QStringLiteral("richtext"));
-    QString rules = QStringLiteral("Rules for qt\ntest");
+    auto plainText = w.findChild<EnvironmentPlainTextEdit *>(u"richtext"_s);
+    QString rules = u"Rules for qt\ntest"_s;
     w.setRules(rules);
     QVERIFY(plainText->toPlainText().endsWith(rules));
 }
diff -pruN 25.04.0-2/src/widgets/autotests/groupmanagementdialogtest.cpp 25.08.2-0ubuntu1/src/widgets/autotests/groupmanagementdialogtest.cpp
--- 25.04.0-2/src/widgets/autotests/groupmanagementdialogtest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/groupmanagementdialogtest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "groupmanagementdialogtest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "groupmanagementdialog.h"
 #include "groupmanagementwidget.h"
 #include <QDialogButtonBox>
@@ -23,13 +25,13 @@ void GroupManagementDialogTest::shouldHa
 {
     GroupManagementDialog w;
     QVERIFY(!w.windowTitle().isEmpty());
-    auto mainLayout = w.findChild<QVBoxLayout *>(QStringLiteral("mainLayout"));
+    auto mainLayout = w.findChild<QVBoxLayout *>(u"mainLayout"_s);
     QVERIFY(mainLayout);
 
-    auto mGroupManagementWidget = w.findChild<GroupManagementWidget *>(QStringLiteral("mGroupManagementWidget"));
+    auto mGroupManagementWidget = w.findChild<GroupManagementWidget *>(u"mGroupManagementWidget"_s);
     QVERIFY(mGroupManagementWidget);
 
-    auto buttonBox = w.findChild<QDialogButtonBox *>(QStringLiteral("buttonBox"));
+    auto buttonBox = w.findChild<QDialogButtonBox *>(u"buttonBox"_s);
     QVERIFY(buttonBox);
 }
 
diff -pruN 25.04.0-2/src/widgets/autotests/groupmanagementwidgettest.cpp 25.08.2-0ubuntu1/src/widgets/autotests/groupmanagementwidgettest.cpp
--- 25.04.0-2/src/widgets/autotests/groupmanagementwidgettest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/groupmanagementwidgettest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "groupmanagementwidgettest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "groupmanagementwidget.h"
 #include <QListWidget>
 #include <QTest>
@@ -20,11 +22,11 @@ GroupManagementWidgetTest::GroupManageme
 void GroupManagementWidgetTest::shouldHaveDefaultValues()
 {
     GroupManagementWidget w;
-    auto mainLayout = w.findChild<QVBoxLayout *>(QStringLiteral("mainLayout"));
+    auto mainLayout = w.findChild<QVBoxLayout *>(u"mainLayout"_s);
     QVERIFY(mainLayout);
     QCOMPARE(mainLayout->contentsMargins(), QMargins{});
 
-    auto mListWidget = w.findChild<QListWidget *>(QStringLiteral("mListWidget"));
+    auto mListWidget = w.findChild<QListWidget *>(u"mListWidget"_s);
     QVERIFY(mListWidget);
     QCOMPARE(mListWidget->selectionMode(), QAbstractItemView::ExtendedSelection);
 }
diff -pruN 25.04.0-2/src/widgets/autotests/kdeapplicationdebugsettingpagetest.cpp 25.08.2-0ubuntu1/src/widgets/autotests/kdeapplicationdebugsettingpagetest.cpp
--- 25.04.0-2/src/widgets/autotests/kdeapplicationdebugsettingpagetest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/kdeapplicationdebugsettingpagetest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "kdeapplicationdebugsettingpagetest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "kdeapplicationdebugsettingpage.h"
 #include "kdeapplicationtreeview.h"
 #include <QHeaderView>
@@ -26,28 +28,28 @@ KDEApplicationDebugSettingPageTest::~KDE
 void KDEApplicationDebugSettingPageTest::shouldHaveDefaultValue()
 {
     KDEApplicationDebugSettingPage page;
-    auto mKdeApplicationTreeView = page.findChild<KDEApplicationTreeView *>(QStringLiteral("mKdeApplicationTreeView"));
+    auto mKdeApplicationTreeView = page.findChild<KDEApplicationTreeView *>(u"mKdeApplicationTreeView"_s);
     QVERIFY(mKdeApplicationTreeView);
     QVERIFY(!mKdeApplicationTreeView->rootIsDecorated());
     QVERIFY(mKdeApplicationTreeView->header()->isHidden());
     QVERIFY(mKdeApplicationTreeView->uniformRowHeights());
 
-    auto mainLayout = page.findChild<QVBoxLayout *>(QStringLiteral("mainLayout"));
+    auto mainLayout = page.findChild<QVBoxLayout *>(u"mainLayout"_s);
     QVERIFY(mainLayout);
 
-    auto selectAll = page.findChild<QPushButton *>(QStringLiteral("selectall"));
+    auto selectAll = page.findChild<QPushButton *>(u"selectall"_s);
     QVERIFY(selectAll);
     QVERIFY(selectAll->isEnabled());
 
-    auto deselectAll = page.findChild<QPushButton *>(QStringLiteral("deselectall"));
+    auto deselectAll = page.findChild<QPushButton *>(u"deselectall"_s);
     QVERIFY(deselectAll);
     QVERIFY(deselectAll->isEnabled());
 
-    auto mTurnOffAllMessages = page.findChild<QPushButton *>(QStringLiteral("deselectallmessage"));
+    auto mTurnOffAllMessages = page.findChild<QPushButton *>(u"deselectallmessage"_s);
     QVERIFY(mTurnOffAllMessages);
     QVERIFY(mTurnOffAllMessages->isEnabled());
 
-    auto mSearchLineEdit = page.findChild<QLineEdit *>(QStringLiteral("mSearchLineEdit"));
+    auto mSearchLineEdit = page.findChild<QLineEdit *>(u"mSearchLineEdit"_s);
     QVERIFY(mSearchLineEdit);
     QVERIFY(mSearchLineEdit->text().isEmpty());
     QVERIFY(mSearchLineEdit->isClearButtonEnabled());
diff -pruN 25.04.0-2/src/widgets/autotests/kdebugsettingsdialogtest.cpp 25.08.2-0ubuntu1/src/widgets/autotests/kdebugsettingsdialogtest.cpp
--- 25.04.0-2/src/widgets/autotests/kdebugsettingsdialogtest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/kdebugsettingsdialogtest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "kdebugsettingsdialogtest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "categorywarning.h"
 #include "kdebugsettingsdialog.h"
 #include "loadtoolbutton.h"
@@ -27,11 +29,11 @@ KDebugSettingsDialogTest::~KDebugSetting
 void KDebugSettingsDialogTest::shouldHaveDefaultValue()
 {
     KDebugSettingsDialog dlg;
-    auto buttonBox = dlg.findChild<QDialogButtonBox *>(QStringLiteral("buttonbox"));
+    auto buttonBox = dlg.findChild<QDialogButtonBox *>(u"buttonbox"_s);
     QVERIFY(buttonBox);
     QCOMPARE(buttonBox->standardButtons(),
              QDialogButtonBox::RestoreDefaults | QDialogButtonBox::Ok | QDialogButtonBox::Cancel | QDialogButtonBox::Help | QDialogButtonBox::Apply);
-    auto tab = dlg.findChild<QTabWidget *>(QStringLiteral("tabwidget"));
+    auto tab = dlg.findChild<QTabWidget *>(u"tabwidget"_s);
     QVERIFY(tab);
     for (int i = 0; i < tab->count(); ++i) {
         const QString objName = tab->widget(i)->objectName();
@@ -39,14 +41,14 @@ void KDebugSettingsDialogTest::shouldHav
             || (objName == QLatin1StringView("environmentsettingsrulespage"));
         QVERIFY(hasCorrectName);
     }
-    auto saveAs = buttonBox->findChild<SaveToolButton *>(QStringLiteral("saveas_button"));
+    auto saveAs = buttonBox->findChild<SaveToolButton *>(u"saveas_button"_s);
     QVERIFY(saveAs);
-    auto load = buttonBox->findChild<LoadToolButton *>(QStringLiteral("load_button"));
+    auto load = buttonBox->findChild<LoadToolButton *>(u"load_button"_s);
     QVERIFY(load);
     QVERIFY(load->menu());
-    auto insertCategories = buttonBox->findChild<QPushButton *>(QStringLiteral("insert_button"));
+    auto insertCategories = buttonBox->findChild<QPushButton *>(u"insert_button"_s);
     QVERIFY(insertCategories);
-    auto categoryWarning = dlg.findChild<CategoryWarning *>(QStringLiteral("categorywarning"));
+    auto categoryWarning = dlg.findChild<CategoryWarning *>(u"categorywarning"_s);
     QVERIFY(categoryWarning);
     QVERIFY(!categoryWarning->isVisible());
 }
diff -pruN 25.04.0-2/src/widgets/autotests/savetoolbuttontest.cpp 25.08.2-0ubuntu1/src/widgets/autotests/savetoolbuttontest.cpp
--- 25.04.0-2/src/widgets/autotests/savetoolbuttontest.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/autotests/savetoolbuttontest.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "savetoolbuttontest.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "savetoolbutton.h"
 #include <QTest>
 QTEST_MAIN(SaveToolButtonTest)
diff -pruN 25.04.0-2/src/widgets/customdebuglistview.cpp 25.08.2-0ubuntu1/src/widgets/customdebuglistview.cpp
--- 25.04.0-2/src/widgets/customdebuglistview.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/customdebuglistview.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -41,20 +41,17 @@ void CustomDebugListView::slotCustomCont
     QMenu menu(this);
     const QModelIndexList selectedIndexes = selectionModel()->selectedRows();
     const auto selectedItemCount{selectedIndexes.count()};
-    menu.addAction(QIcon::fromTheme(QStringLiteral("list-add")), i18nc("@action", "Add Rule…"), this, &CustomDebugListView::slotAddRule);
+    menu.addAction(QIcon::fromTheme(u"list-add"_s), i18nc("@action", "Add Rule…"), this, &CustomDebugListView::slotAddRule);
     if (index.isValid() && selectedItemCount == 1) {
-        menu.addAction(QIcon::fromTheme(QStringLiteral("document-edit")), i18nc("@action", "Edit Rule"), this, [this, index]() {
+        menu.addAction(QIcon::fromTheme(u"document-edit"_s), i18nc("@action", "Edit Rule"), this, [this, index]() {
             slotEditRule(index);
         });
     }
     if (selectedItemCount > 0) {
         menu.addSeparator();
-        menu.addAction(QIcon::fromTheme(QStringLiteral("list-remove")),
-                       i18np("Remove Rule", "Remove Rules", selectedItemCount),
-                       this,
-                       [this, selectedIndexes]() {
-                           slotRemoveRules(selectedIndexes);
-                       });
+        menu.addAction(QIcon::fromTheme(u"list-remove"_s), i18np("Remove Rule", "Remove Rules", selectedItemCount), this, [this, selectedIndexes]() {
+            slotRemoveRules(selectedIndexes);
+        });
     }
     menu.exec(viewport()->mapToGlobal(pos));
 }
diff -pruN 25.04.0-2/src/widgets/environmentsettingsrulespage.cpp 25.08.2-0ubuntu1/src/widgets/environmentsettingsrulespage.cpp
--- 25.04.0-2/src/widgets/environmentsettingsrulespage.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/environmentsettingsrulespage.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -30,7 +30,7 @@ void EnvironmentSettingsRulesPage::setRu
     const QString information =
         "<qt><b>"_L1 + i18n("These rules cannot be edited with this application. You need to set them in QT_LOGGING_RULES variable directly.") + "</b><qt>"_L1;
     QString newRules = rules;
-    mRichTextEdit->setHtml(information + i18n("Current rules:") + QStringLiteral("<br>") + newRules.replace(QLatin1Char('\n'), "<br>"_L1));
+    mRichTextEdit->setHtml(information + i18n("Current rules:") + u"<br>"_s + newRules.replace(u'\n', "<br>"_L1));
 }
 
 #include "moc_environmentsettingsrulespage.cpp"
diff -pruN 25.04.0-2/src/widgets/groupmanagementwidget.cpp 25.08.2-0ubuntu1/src/widgets/groupmanagementwidget.cpp
--- 25.04.0-2/src/widgets/groupmanagementwidget.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/groupmanagementwidget.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -46,7 +46,7 @@ void GroupManagementWidget::exportGroup(
     }
     const QString fullPath = item->data(FullPathRole).toString();
     QFile f(fullPath);
-    const QString newPath = QFileDialog::getSaveFileName(this, i18n("Export Group"), QDir::homePath() + QStringLiteral("/%1").arg(item->text()));
+    const QString newPath = QFileDialog::getSaveFileName(this, i18n("Export Group"), QDir::homePath() + u"/%1"_s.arg(item->text()));
     if (!newPath.isEmpty()) {
         if (f.copy(newPath)) {
             KMessageBox::information(this, i18n("Group exported to %1", newPath), i18n("Export Group"));
@@ -67,7 +67,7 @@ void GroupManagementWidget::renameGroup(
     const QString newName = QInputDialog::getText(this, i18nc("@title:window", "Rename Group"), i18n("New Name:"));
     const QString newNameTrimmed = newName.trimmed();
     if (!newNameTrimmed.isEmpty() && (currentName != newNameTrimmed)) {
-        const QString newFullPath{KDebugSettingsUtil::defaultWritableGroupPath() + QLatin1Char('/') + newNameTrimmed};
+        const QString newFullPath{KDebugSettingsUtil::defaultWritableGroupPath() + u'/' + newNameTrimmed};
         if (!f.rename(newFullPath)) {
             KMessageBox::error(this, i18n("Impossible to rename group as \'%1\'.", newNameTrimmed), i18nc("@title:window", "Rename Group"));
         } else {
@@ -85,16 +85,16 @@ void GroupManagementWidget::slotCustomCo
         QMenu menu(this);
         if (mListWidget->selectedItems().count() == 1) {
             const auto item = items.at(0);
-            menu.addAction(QIcon::fromTheme(QStringLiteral("edit")), i18nc("@action", "Rename Group…"), this, [this, item]() {
+            menu.addAction(QIcon::fromTheme(u"edit"_s), i18nc("@action", "Rename Group…"), this, [this, item]() {
                 renameGroup(item);
             });
             menu.addSeparator();
-            menu.addAction(QIcon::fromTheme(QStringLiteral("document-export")), i18nc("@action", "Export Group…"), this, [this, item]() {
+            menu.addAction(QIcon::fromTheme(u"document-export"_s), i18nc("@action", "Export Group…"), this, [this, item]() {
                 exportGroup(item);
             });
             menu.addSeparator();
         }
-        menu.addAction(QIcon::fromTheme(QStringLiteral("edit-delete")), i18nc("@action", "Remove Groups"), this, [this, items]() {
+        menu.addAction(QIcon::fromTheme(u"edit-delete"_s), i18nc("@action", "Remove Groups"), this, [this, items]() {
             for (auto item : items) {
                 const QString fullPath = item->data(FullPathRole).toString();
                 QFile f(fullPath);
@@ -116,7 +116,7 @@ void GroupManagementWidget::init()
         const QString groupPath = KDebugSettingsUtil::defaultWritableGroupPath();
         for (const QString &file : groups) {
             auto item = new QListWidgetItem(file, mListWidget);
-            const QString fullPath = groupPath + QLatin1Char('/') + file;
+            const QString fullPath = groupPath + u'/' + file;
             item->setData(FullPathRole, fullPath);
         }
     }
diff -pruN 25.04.0-2/src/widgets/kdebugsettingsdialog.cpp 25.08.2-0ubuntu1/src/widgets/kdebugsettingsdialog.cpp
--- 25.04.0-2/src/widgets/kdebugsettingsdialog.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/kdebugsettingsdialog.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -184,8 +184,7 @@ void KDebugSettingsDialog::slotApply()
 
 void KDebugSettingsDialog::slotInsertCategories()
 {
-    const QString path =
-        QFileDialog::getOpenFileName(this, i18n("Insert Categories"), QString(), QStringLiteral("%1 (*.categories)").arg(i18n("Categories Files")));
+    const QString path = QFileDialog::getOpenFileName(this, i18n("Insert Categories"), QString(), u"%1 (*.categories)"_s.arg(i18n("Categories Files")));
     if (!path.isEmpty()) {
         const KdeLoggingCategory::List insertCategoriesList = KDebugSettingsUtil::readLoggingCategoriesForInserting(path, mCategoriesList);
         LoggingCategory::List newCategories;
@@ -217,7 +216,7 @@ void KDebugSettingsDialog::slotSaveAsGro
                 if (!QDir().mkpath(groupPath)) {
                     qCWarning(KDEBUGSETTINGS_LOG) << "Unable to create folder: " << groupPath;
                 }
-                saveRules(groupPath + QLatin1Char('/') + trimmedName, true);
+                saveRules(groupPath + u'/' + trimmedName, true);
                 Q_EMIT updateLoadGroupMenu();
             }
         } else {
diff -pruN 25.04.0-2/src/widgets/loadgroupmenu.cpp 25.08.2-0ubuntu1/src/widgets/loadgroupmenu.cpp
--- 25.04.0-2/src/widgets/loadgroupmenu.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/loadgroupmenu.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -37,7 +37,7 @@ QString LoadGroupMenu::defaultWritableGr
 
 QStringList LoadGroupMenu::defaultReadableGroupPath() const
 {
-    return QStandardPaths::locateAll(QStandardPaths::AppLocalDataLocation, QStringLiteral("/groups/"), QStandardPaths::LocateDirectory);
+    return QStandardPaths::locateAll(QStandardPaths::AppLocalDataLocation, u"/groups/"_s, QStandardPaths::LocateDirectory);
 }
 
 void LoadGroupMenu::init()
@@ -55,7 +55,7 @@ void LoadGroupMenu::init()
         mGroupNames += dirNameList;
         for (const QString &file : dirNameList) {
             QAction *act = addAction(file);
-            const QString fullPath = dirName + QLatin1Char('/') + file;
+            const QString fullPath = dirName + u'/' + file;
             connect(act, &QAction::triggered, this, [this, fullPath] {
                 Q_EMIT loadGroupRequested(fullPath);
             });
diff -pruN 25.04.0-2/src/widgets/savetoolbutton.cpp 25.08.2-0ubuntu1/src/widgets/savetoolbutton.cpp
--- 25.04.0-2/src/widgets/savetoolbutton.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/savetoolbutton.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -5,6 +5,8 @@
 
 */
 #include "savetoolbutton.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include <KLocalizedString>
 #include <QAction>
 #include <QMenu>
diff -pruN 25.04.0-2/src/widgets/tests/CMakeLists.txt 25.08.2-0ubuntu1/src/widgets/tests/CMakeLists.txt
--- 25.04.0-2/src/widgets/tests/CMakeLists.txt	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/tests/CMakeLists.txt	2025-09-30 21:42:27.000000000 +0000
@@ -1,18 +1,18 @@
 # SPDX-FileCopyrightText: 2023-2025 Laurent Montel <montel@kde.org>
 # SPDX-License-Identifier: BSD-3-Clause
 add_executable(customdebuglistviewgui)
-target_sources(customdebuglistviewgui PRIVATE
-    customdebuglistviewgui.h customdebuglistviewgui.cpp)
-
-target_link_libraries(customdebuglistviewgui
-    libkdebugsettings
+target_sources(
+    customdebuglistviewgui
+    PRIVATE customdebuglistviewgui.h customdebuglistviewgui.cpp
 )
 
+target_link_libraries(customdebuglistviewgui libkdebugsettings)
+
 ######
 add_executable(kdeapplicationtreeviewgui)
-target_sources(kdeapplicationtreeviewgui PRIVATE
-    kdeapplicationtreeviewgui.h kdeapplicationtreeviewgui.cpp)
-
-target_link_libraries(kdeapplicationtreeviewgui
-    libkdebugsettings
+target_sources(
+    kdeapplicationtreeviewgui
+    PRIVATE kdeapplicationtreeviewgui.h kdeapplicationtreeviewgui.cpp
 )
+
+target_link_libraries(kdeapplicationtreeviewgui libkdebugsettings)
diff -pruN 25.04.0-2/src/widgets/tests/customdebuglistviewgui.cpp 25.08.2-0ubuntu1/src/widgets/tests/customdebuglistviewgui.cpp
--- 25.04.0-2/src/widgets/tests/customdebuglistviewgui.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/tests/customdebuglistviewgui.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "customdebuglistviewgui.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "customdebuglistview.h"
 #include "model/customloggingcategorymodel.h"
 
@@ -21,9 +23,9 @@ CustomDebugListViewGui::CustomDebugListV
     LoggingCategory::List lst;
     for (int i = 0; i < 5; ++i) {
         LoggingCategory cat;
-        cat.categoryName = QStringLiteral("foo-%1").arg(i);
-        cat.identifierName = QStringLiteral("ident-%1").arg(i);
-        cat.description = QStringLiteral("desc-%1").arg(i);
+        cat.categoryName = u"foo-%1"_s.arg(i);
+        cat.identifierName = u"ident-%1"_s.arg(i);
+        cat.description = u"desc-%1"_s.arg(i);
         cat.enabled = (i % 2);
         lst.append(cat);
     }
diff -pruN 25.04.0-2/src/widgets/tests/kdeapplicationtreeviewgui.cpp 25.08.2-0ubuntu1/src/widgets/tests/kdeapplicationtreeviewgui.cpp
--- 25.04.0-2/src/widgets/tests/kdeapplicationtreeviewgui.cpp	2025-04-07 21:09:03.000000000 +0000
+++ 25.08.2-0ubuntu1/src/widgets/tests/kdeapplicationtreeviewgui.cpp	2025-09-30 21:42:27.000000000 +0000
@@ -6,6 +6,8 @@
 */
 
 #include "kdeapplicationtreeviewgui.h"
+using namespace Qt::Literals::StringLiterals;
+
 #include "kdeapplicationtreeview.h"
 #include "model/kdeapplicationloggingcategorymodel.h"
 
@@ -21,9 +23,9 @@ KDEApplicationTreeViewGui::KDEApplicatio
     LoggingCategory::List lst;
     for (int i = 0; i < 5; ++i) {
         LoggingCategory cat;
-        cat.categoryName = QStringLiteral("foo-%1").arg(i);
-        cat.identifierName = QStringLiteral("ident-%1").arg(i);
-        cat.description = QStringLiteral("desc-%1").arg(i);
+        cat.categoryName = u"foo-%1"_s.arg(i);
+        cat.identifierName = u"ident-%1"_s.arg(i);
+        cat.description = u"desc-%1"_s.arg(i);
         cat.loggingType = static_cast<LoggingCategory::LoggingType>(i);
         cat.enabled = (i % 2);
         lst.append(cat);
